hotspot/src/share/vm/memory/freeList.cpp
author mikael
Tue, 09 Oct 2012 10:09:34 -0700
changeset 13963 e5b53c306fb5
parent 12509 6228e2085074
child 14123 944e56f74fba
permissions -rw-r--r--
7197424: update copyright year to match last edit in jdk8 hotspot repository Summary: Update copyright year to 2012 for relevant files Reviewed-by: dholmes, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13963
e5b53c306fb5 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 12509
diff changeset
     2
 * Copyright (c) 2001, 2012, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6447
diff changeset
    25
#include "precompiled.hpp"
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    26
#include "memory/freeBlockDictionary.hpp"
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    27
#include "memory/freeList.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6447
diff changeset
    28
#include "memory/sharedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6447
diff changeset
    29
#include "runtime/globals.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6447
diff changeset
    30
#include "runtime/mutex.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6447
diff changeset
    31
#include "runtime/vmThread.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    33
#ifndef SERIALGC
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    34
#include "gc_implementation/concurrentMarkSweep/freeChunk.hpp"
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    35
#endif // SERIALGC
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    36
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Free list.  A FreeList is used to access a linked list of chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// of space in the heap.  The head and tail are maintained so that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// items can be (as in the current implementation) added at the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// at the tail of the list and removed from the head of the list to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// maintain a FIFO queue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    43
template <class Chunk>
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    44
FreeList<Chunk>::FreeList() :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  _head(NULL), _tail(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  , _protecting_lock(NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  _size         = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  _count        = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  _hint         = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  init_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    56
template <class Chunk>
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    57
FreeList<Chunk>::FreeList(Chunk* fc) :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  _head(fc), _tail(fc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  , _protecting_lock(NULL)
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
  _size         = fc->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  _count        = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  _hint         = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  init_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
#ifndef PRODUCT
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
    68
  _allocation_stats.set_returned_bytes(size() * HeapWordSize);
1
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
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    72
template <class Chunk>
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    73
void FreeList<Chunk>::reset(size_t hint) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  set_count(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  set_head(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  set_tail(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  set_hint(hint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    80
template <class Chunk>
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    81
void FreeList<Chunk>::init_statistics(bool split_birth) {
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
    82
  _allocation_stats.initialize(split_birth);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    85
template <class Chunk>
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
    86
Chunk* FreeList<Chunk>::get_chunk_at_head() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    90
  Chunk* fc = head();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  if (fc != NULL) {
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
    92
    Chunk* nextFC = fc->next();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    if (nextFC != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      // The chunk fc being removed has a "next".  Set the "next" to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      // "prev" of fc.
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
    96
      nextFC->link_prev(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    } else { // removed tail of list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      link_tail(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    link_head(nextFC);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    decrement_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  return fc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   109
template <class Chunk>
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   110
void FreeList<Chunk>::getFirstNChunksFromList(size_t n, FreeList<Chunk>* fl) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  assert(fl->count() == 0, "Precondition");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  if (count() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    int k = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    fl->set_head(head()); n--;
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   116
    Chunk* tl = head();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    while (tl->next() != NULL && n > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      tl = tl->next(); n--; k++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    assert(tl != NULL, "Loop Inv.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    // First, fix up the list we took from.
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   123
    Chunk* new_head = tl->next();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    set_head(new_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    set_count(count() - k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    if (new_head == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      set_tail(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    } else {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   129
      new_head->link_prev(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    // Now we can fix up the tail.
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   132
    tl->link_next(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    // And return the result.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    fl->set_tail(tl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    fl->set_count(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
// Remove this chunk from the list
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   140
template <class Chunk>
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   141
void FreeList<Chunk>::remove_chunk(Chunk*fc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
   assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
   assert(head() != NULL, "Remove from empty list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
   assert(fc != NULL, "Remove a NULL chunk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
   assert(size() == fc->size(), "Wrong list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
   assert(head() == NULL || head()->prev() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
   assert(tail() == NULL || tail()->next() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   149
   Chunk* prevFC = fc->prev();
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   150
   Chunk* nextFC = fc->next();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
   if (nextFC != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
     // The chunk fc being removed has a "next".  Set the "next" to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
     // "prev" of fc.
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   154
     nextFC->link_prev(prevFC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
   } else { // removed tail of list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
     link_tail(prevFC);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
   if (prevFC == NULL) { // removed head of list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
     link_head(nextFC);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
     assert(nextFC == NULL || nextFC->prev() == NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
       "Prev of head should be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
   } else {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   163
     prevFC->link_next(nextFC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
     assert(tail() != prevFC || prevFC->next() == NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
       "Next of tail should be NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
   decrement_count();
6447
32cc5cad7fa6 6983930: CMS: Various small cleanups ca September 2010
ysr
parents: 5547
diff changeset
   168
   assert(((head() == NULL) + (tail() == NULL) + (count() == 0)) % 3 == 0,
32cc5cad7fa6 6983930: CMS: Various small cleanups ca September 2010
ysr
parents: 5547
diff changeset
   169
          "H/T/C Inconsistency");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
   // clear next and prev fields of fc, debug only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
   NOT_PRODUCT(
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   172
     fc->link_prev(NULL);
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   173
     fc->link_next(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
   )
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   175
   assert(fc->is_free(), "Should still be a free chunk");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
   assert(head() == NULL || head()->prev() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
   assert(tail() == NULL || tail()->next() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
   assert(head() == NULL || head()->size() == size(), "wrong item on list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
   assert(tail() == NULL || tail()->size() == size(), "wrong item on list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
// Add this chunk at the head of the list.
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   183
template <class Chunk>
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   184
void FreeList<Chunk>::return_chunk_at_head(Chunk* chunk, bool record_return) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  assert(chunk != NULL, "insert a NULL chunk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  assert(size() == chunk->size(), "Wrong size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   191
  Chunk* oldHead = head();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  assert(chunk != oldHead, "double insertion");
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   193
  chunk->link_after(oldHead);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  link_head(chunk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  if (oldHead == NULL) { // only chunk in list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    assert(tail() == NULL, "inconsistent FreeList");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    link_tail(chunk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  increment_count(); // of # of chunks in list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  DEBUG_ONLY(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    if (record_return) {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   202
      increment_returned_bytes_by(size()*HeapWordSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  assert(head() == NULL || head()->size() == size(), "wrong item on list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  assert(tail() == NULL || tail()->size() == size(), "wrong item on list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   211
template <class Chunk>
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   212
void FreeList<Chunk>::return_chunk_at_head(Chunk* chunk) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  assert_proper_lock_protection();
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   214
  return_chunk_at_head(chunk, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
// Add this chunk at the tail of the list.
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   218
template <class Chunk>
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   219
void FreeList<Chunk>::return_chunk_at_tail(Chunk* chunk, bool record_return) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  assert(chunk != NULL, "insert a NULL chunk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  assert(size() == chunk->size(), "wrong size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   226
  Chunk* oldTail = tail();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  assert(chunk != oldTail, "double insertion");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  if (oldTail != NULL) {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   229
    oldTail->link_after(chunk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  } else { // only chunk in list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    assert(head() == NULL, "inconsistent FreeList");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    link_head(chunk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  link_tail(chunk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  increment_count();  // of # of chunks in list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  DEBUG_ONLY(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    if (record_return) {
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   238
      increment_returned_bytes_by(size()*HeapWordSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  assert(head() == NULL || head()->size() == size(), "wrong item on list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  assert(tail() == NULL || tail()->size() == size(), "wrong item on list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   247
template <class Chunk>
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   248
void FreeList<Chunk>::return_chunk_at_tail(Chunk* chunk) {
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   249
  return_chunk_at_tail(chunk, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   252
template <class Chunk>
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   253
void FreeList<Chunk>::prepend(FreeList<Chunk>* fl) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  assert_proper_lock_protection();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  if (fl->count() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    if (count() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      set_head(fl->head());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      set_tail(fl->tail());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      set_count(fl->count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      // Both are non-empty.
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   262
      Chunk* fl_tail = fl->tail();
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   263
      Chunk* this_head = head();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      assert(fl_tail->next() == NULL, "Well-formedness of fl");
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   265
      fl_tail->link_next(this_head);
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   266
      this_head->link_prev(fl_tail);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
      set_head(fl->head());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      set_count(count() + fl->count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    fl->set_head(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    fl->set_tail(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    fl->set_count(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   276
// verify_chunk_in_free_list() is used to verify that an item is in this free list.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
// It is used as a debugging aid.
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   278
template <class Chunk>
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   279
bool FreeList<Chunk>::verify_chunk_in_free_list(Chunk* fc) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // This is an internal consistency check, not part of the check that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // chunk is in the free lists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  guarantee(fc->size() == size(), "Wrong list is being searched");
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   283
  Chunk* curFC = head();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  while (curFC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    // This is an internal consistency check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    guarantee(size() == curFC->size(), "Chunk is in wrong list.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    if (fc == curFC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    curFC = curFC->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
#ifndef PRODUCT
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   296
template <class Chunk>
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   297
void FreeList<Chunk>::verify_stats() const {
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   298
  // The +1 of the LH comparand is to allow some "looseness" in
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   299
  // checking: we usually call this interface when adding a block
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   300
  // and we'll subsequently update the stats; we cannot update the
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   301
  // stats beforehand because in the case of the large-block BT
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   302
  // dictionary for example, this might be the first block and
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   303
  // in that case there would be no place that we could record
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   304
  // the stats (which are kept in the block itself).
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   305
  assert((_allocation_stats.prev_sweep() + _allocation_stats.split_births()
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   306
          + _allocation_stats.coal_births() + 1)   // Total Production Stock + 1
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   307
         >= (_allocation_stats.split_deaths() + _allocation_stats.coal_deaths()
9998
f5cb52083a7c 6916968: CMS: freeList.cpp:304 assert(_allocation_stats.prevSweep() + ..., "Conservation Principle")
ysr
parents: 7397
diff changeset
   308
             + (ssize_t)count()),                // Total Current Stock + depletion
f5cb52083a7c 6916968: CMS: freeList.cpp:304 assert(_allocation_stats.prevSweep() + ..., "Conservation Principle")
ysr
parents: 7397
diff changeset
   309
         err_msg("FreeList " PTR_FORMAT " of size " SIZE_FORMAT
f5cb52083a7c 6916968: CMS: freeList.cpp:304 assert(_allocation_stats.prevSweep() + ..., "Conservation Principle")
ysr
parents: 7397
diff changeset
   310
                 " violates Conservation Principle: "
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   311
                 "prev_sweep(" SIZE_FORMAT ")"
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   312
                 " + split_births(" SIZE_FORMAT ")"
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   313
                 " + coal_births(" SIZE_FORMAT ") + 1 >= "
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   314
                 " split_deaths(" SIZE_FORMAT ")"
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   315
                 " coal_deaths(" SIZE_FORMAT ")"
9998
f5cb52083a7c 6916968: CMS: freeList.cpp:304 assert(_allocation_stats.prevSweep() + ..., "Conservation Principle")
ysr
parents: 7397
diff changeset
   316
                 " + count(" SSIZE_FORMAT ")",
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   317
                 this, _size, _allocation_stats.prev_sweep(), _allocation_stats.split_births(),
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   318
                 _allocation_stats.split_births(), _allocation_stats.split_deaths(),
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   319
                 _allocation_stats.coal_deaths(), count()));
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   320
}
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   321
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   322
template <class Chunk>
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   323
void FreeList<Chunk>::assert_proper_lock_protection_work() const {
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   324
  assert(_protecting_lock != NULL, "Don't call this directly");
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   325
  assert(ParallelGCThreads > 0, "Don't call this directly");
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   326
  Thread* thr = Thread::current();
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   327
  if (thr->is_VM_thread() || thr->is_ConcurrentGC_thread()) {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   328
    // assert that we are holding the freelist lock
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   329
  } else if (thr->is_GC_task_thread()) {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   330
    assert(_protecting_lock->owned_by_self(), "FreeList RACE DETECTED");
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   331
  } else if (thr->is_Java_thread()) {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   332
    assert(!SafepointSynchronize::is_at_safepoint(), "Should not be executing");
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   333
  } else {
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   334
    ShouldNotReachHere();  // unaccounted thread type?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
#endif
185
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   338
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   339
// Print the "label line" for free list stats.
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   340
template <class Chunk>
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   341
void FreeList<Chunk>::print_labels_on(outputStream* st, const char* c) {
185
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   342
  st->print("%16s\t", c);
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   343
  st->print("%14s\t"    "%14s\t"    "%14s\t"    "%14s\t"    "%14s\t"
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   344
            "%14s\t"    "%14s\t"    "%14s\t"    "%14s\t"    "%14s\t"    "\n",
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   345
            "bfrsurp", "surplus", "desired", "prvSwep", "bfrSwep",
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   346
            "count",   "cBirths", "cDeaths", "sBirths", "sDeaths");
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   347
}
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   348
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   349
// Print the AllocationStats for the given free list. If the second argument
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   350
// to the call is a non-null string, it is printed in the first column;
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   351
// otherwise, if the argument is null (the default), then the size of the
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   352
// (free list) block is printed in the first column.
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   353
template <class Chunk>
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   354
void FreeList<Chunk>::print_on(outputStream* st, const char* c) const {
185
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   355
  if (c != NULL) {
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   356
    st->print("%16s", c);
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   357
  } else {
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   358
    st->print(SIZE_FORMAT_W(16), size());
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   359
  }
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   360
  st->print("\t"
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   361
           SSIZE_FORMAT_W(14) "\t" SSIZE_FORMAT_W(14) "\t" SSIZE_FORMAT_W(14) "\t" SSIZE_FORMAT_W(14) "\t" SSIZE_FORMAT_W(14) "\t"
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   362
           SSIZE_FORMAT_W(14) "\t" SSIZE_FORMAT_W(14) "\t" SSIZE_FORMAT_W(14) "\t" SSIZE_FORMAT_W(14) "\t" SSIZE_FORMAT_W(14) "\n",
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   363
           bfr_surp(),             surplus(),             desired(),             prev_sweep(),           before_sweep(),
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   364
           count(),               coal_births(),          coal_deaths(),          split_births(),         split_deaths());
185
cda2a1eb4be5 6668743: CMS: Consolidate block statistics reporting code
ysr
parents: 1
diff changeset
   365
}
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   366
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   367
#ifndef SERIALGC
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   368
// Needs to be after the definitions have been seen.
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   369
template class FreeList<FreeChunk>;
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 9998
diff changeset
   370
#endif // SERIALGC