hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/freeList.hpp
author ysr
Thu, 21 Oct 2010 17:29:24 -0700
changeset 6984 c6718f921eb6
parent 5547 f4b087cbb361
child 7397 5b173b4ca846
permissions -rw-r--r--
6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent Summary: Closed a timing hole during which concurrent full gc requests can be missed. The hole can increase the latency of the response to a full gc request by up to the value of CMSWaitDuration. If CMSWaitDuration=0 is, as currently, interpreted as an unbounded wait, suitable in certain tuning scenarios, the application can potentially hang. Made two obscure tunables, including CMSWaitDuration, manageable. Reviewed-by: jcoomes, tonyp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
diff changeset
     2
 * Copyright (c) 2001, 2008, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class CompactibleFreeListSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// A class for maintaining a free list of FreeChunk's.  The FreeList
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// maintains a the structure of the list (head, tail, etc.) plus
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// statistics for allocations from the list.  The links between items
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// are not part of FreeList.  The statistics are
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// used to make decisions about coalescing FreeChunk's when they
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// are swept during collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// See the corresponding .cpp file for a description of the specifics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// for that implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class Mutex;
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    38
class TreeList;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class FreeList VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  friend class CompactibleFreeListSpace;
578
862a85ed20db 6670684: 4/5 SA command universe did not print out CMS space information
dcubed
parents: 185
diff changeset
    42
  friend class VMStructs;
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    43
  friend class PrintTreeCensusClosure;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    44
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    45
 protected:
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    46
  TreeList* _parent;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    47
  TreeList* _left;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    48
  TreeList* _right;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    49
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    50
 private:
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    51
  FreeChunk*    _head;          // Head of list of free chunks
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  FreeChunk*    _tail;          // Tail of list of free chunks
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    53
  size_t        _size;          // Size in Heap words of each chunk
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  ssize_t       _count;         // Number of entries in list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  size_t        _hint;          // next larger size list with a positive surplus
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    57
  AllocationStats _allocation_stats; // allocation-related statistics
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  Mutex*        _protecting_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // Asserts false if the protecting lock (if any) is not held.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  void assert_proper_lock_protection_work() const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  void assert_proper_lock_protection() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    if (_protecting_lock != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      assert_proper_lock_protection_work();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // Initialize the allocation statistics.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
 protected:
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    74
  void init_statistics(bool split_birth = false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void set_count(ssize_t v) { _count = v;}
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    76
  void increment_count()    {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    77
    _count++;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    78
  }
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    79
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  void decrement_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    _count--;
185
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
    82
    assert(_count >= 0, "Count should not be negative");
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
    83
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // Construct a list without any entries.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  FreeList();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Construct a list with "fc" as the first (and lone) entry in the list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  FreeList(FreeChunk* fc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // Construct a list which will have a FreeChunk at address "addr" and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // of size "size" as the first (and lone) entry in the list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  FreeList(HeapWord* addr, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Reset the head, tail, hint, and count of a free list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  void reset(size_t hint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Declare the current free list to be protected by the given lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  void set_protecting_lock(Mutex* protecting_lock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    _protecting_lock = protecting_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Accessors.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  FreeChunk* head() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    return _head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  void set_head(FreeChunk* v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    _head = v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    assert(!_head || _head->size() == _size, "bad chunk size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Set the head of the list and set the prev field of non-null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // values to NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  void link_head(FreeChunk* v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    set_head(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    // If this method is not used (just set the head instead),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    // this check can be avoided.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    if (v != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      v->linkPrev(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  FreeChunk* tail() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    return _tail;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  void set_tail(FreeChunk* v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    _tail = v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    assert(!_tail || _tail->size() == _size, "bad chunk size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Set the tail of the list and set the next field of non-null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // values to NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  void link_tail(FreeChunk* v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    set_tail(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    if (v != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      v->clearNext();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // No locking checks in read-accessors: lock-free reads (only) are benign.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Readers are expected to have the lock if they are doing work that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // requires atomicity guarantees in sections of code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  size_t size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    return _size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  void set_size(size_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    _size = v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  ssize_t count() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    return _count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  size_t hint() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    return _hint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  void set_hint(size_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    assert(v == 0 || _size < v, "Bad hint"); _hint = v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // Accessors for statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  AllocationStats* allocation_stats() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    return &_allocation_stats;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  ssize_t desired() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    return _allocation_stats.desired();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  }
185
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   176
  void set_desired(ssize_t v) {
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   177
    assert_proper_lock_protection();
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   178
    _allocation_stats.set_desired(v);
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   179
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  void compute_desired(float inter_sweep_current,
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   181
                       float inter_sweep_estimate,
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   182
                       float intra_sweep_estimate) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    _allocation_stats.compute_desired(_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
                                      inter_sweep_current,
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   186
                                      inter_sweep_estimate,
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   187
                                      intra_sweep_estimate);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  ssize_t coalDesired() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    return _allocation_stats.coalDesired();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  void set_coalDesired(ssize_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    _allocation_stats.set_coalDesired(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  ssize_t surplus() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    return _allocation_stats.surplus();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  void set_surplus(ssize_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    _allocation_stats.set_surplus(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  void increment_surplus() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    _allocation_stats.increment_surplus();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  void decrement_surplus() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    _allocation_stats.decrement_surplus();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  ssize_t bfrSurp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    return _allocation_stats.bfrSurp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  void set_bfrSurp(ssize_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    _allocation_stats.set_bfrSurp(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  ssize_t prevSweep() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    return _allocation_stats.prevSweep();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  void set_prevSweep(ssize_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    _allocation_stats.set_prevSweep(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  ssize_t beforeSweep() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    return _allocation_stats.beforeSweep();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  void set_beforeSweep(ssize_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    _allocation_stats.set_beforeSweep(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  ssize_t coalBirths() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    return _allocation_stats.coalBirths();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  void set_coalBirths(ssize_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    _allocation_stats.set_coalBirths(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void increment_coalBirths() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    _allocation_stats.increment_coalBirths();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  ssize_t coalDeaths() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    return _allocation_stats.coalDeaths();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  void set_coalDeaths(ssize_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    _allocation_stats.set_coalDeaths(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  void increment_coalDeaths() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    _allocation_stats.increment_coalDeaths();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  ssize_t splitBirths() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    return _allocation_stats.splitBirths();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  void set_splitBirths(ssize_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    _allocation_stats.set_splitBirths(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  void increment_splitBirths() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    _allocation_stats.increment_splitBirths();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  ssize_t splitDeaths() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    return _allocation_stats.splitDeaths();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  void set_splitDeaths(ssize_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    _allocation_stats.set_splitDeaths(v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  void increment_splitDeaths() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    _allocation_stats.increment_splitDeaths();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    // For debugging.  The "_returnedBytes" in all the lists are summed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    // and compared with the total number of bytes swept during a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    // collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    size_t returnedBytes() const { return _allocation_stats.returnedBytes(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    void set_returnedBytes(size_t v) { _allocation_stats.set_returnedBytes(v); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    void increment_returnedBytes_by(size_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      _allocation_stats.set_returnedBytes(_allocation_stats.returnedBytes() + v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  // Unlink head of list and return it.  Returns NULL if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // the list is empty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  FreeChunk* getChunkAtHead();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  // Remove the first "n" or "count", whichever is smaller, chunks from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // list, setting "fl", which is required to be empty, to point to them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  void getFirstNChunksFromList(size_t n, FreeList* fl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  // Unlink this chunk from it's free list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  void removeChunk(FreeChunk* fc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // Add this chunk to this free list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  void returnChunkAtHead(FreeChunk* fc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  void returnChunkAtTail(FreeChunk* fc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // Similar to returnChunk* but also records some diagnostic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  void returnChunkAtHead(FreeChunk* fc, bool record_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  void returnChunkAtTail(FreeChunk* fc, bool record_return);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  // Prepend "fl" (whose size is required to be the same as that of "this")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  // to the front of "this" list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  void prepend(FreeList* fl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  // Verify that the chunk is in the list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // found.  Return NULL if "fc" is not found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  bool verifyChunkInFreeLists(FreeChunk* fc) const;
185
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   321
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   322
  // Stats verification
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   323
  void verify_stats() const PRODUCT_RETURN;
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   324
185
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   325
  // Printing support
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   326
  static void print_labels_on(outputStream* st, const char* c);
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   327
  void print_on(outputStream* st, const char* c = NULL) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
};