src/share/vm/memory/freeList.cpp

Wed, 23 Jan 2013 13:02:39 -0500

author
jprovino
date
Wed, 23 Jan 2013 13:02:39 -0500
changeset 4542
db9981fd3124
parent 4196
685df3c6f84b
child 5166
7c5a1b62f53d
permissions
-rw-r--r--

8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
Summary: Rename INCLUDE_ALTERNATE_GCS to INCLUDE_ALL_GCS and replace SERIALGC with INCLUDE_ALL_GCS.
Reviewed-by: coleenp, stefank

duke@435 1 /*
mikael@4153 2 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
jmasa@3730 26 #include "memory/freeBlockDictionary.hpp"
jmasa@3730 27 #include "memory/freeList.hpp"
jmasa@4196 28 #include "memory/metablock.hpp"
jmasa@4196 29 #include "memory/metachunk.hpp"
stefank@2314 30 #include "memory/sharedHeap.hpp"
stefank@2314 31 #include "runtime/globals.hpp"
stefank@2314 32 #include "runtime/mutex.hpp"
stefank@2314 33 #include "runtime/vmThread.hpp"
jprovino@4542 34 #include "utilities/macros.hpp"
duke@435 35
jprovino@4542 36 #if INCLUDE_ALL_GCS
jmasa@3730 37 #include "gc_implementation/concurrentMarkSweep/freeChunk.hpp"
jprovino@4542 38 #endif // INCLUDE_ALL_GCS
jmasa@3730 39
duke@435 40 // Free list. A FreeList is used to access a linked list of chunks
duke@435 41 // of space in the heap. The head and tail are maintained so that
duke@435 42 // items can be (as in the current implementation) added at the
duke@435 43 // at the tail of the list and removed from the head of the list to
duke@435 44 // maintain a FIFO queue.
duke@435 45
jmasa@3730 46 template <class Chunk>
jmasa@3730 47 FreeList<Chunk>::FreeList() :
duke@435 48 _head(NULL), _tail(NULL)
duke@435 49 #ifdef ASSERT
duke@435 50 , _protecting_lock(NULL)
duke@435 51 #endif
duke@435 52 {
duke@435 53 _size = 0;
duke@435 54 _count = 0;
duke@435 55 }
duke@435 56
jmasa@3730 57 template <class Chunk>
jmasa@3730 58 FreeList<Chunk>::FreeList(Chunk* fc) :
duke@435 59 _head(fc), _tail(fc)
duke@435 60 #ifdef ASSERT
duke@435 61 , _protecting_lock(NULL)
duke@435 62 #endif
duke@435 63 {
duke@435 64 _size = fc->size();
duke@435 65 _count = 1;
duke@435 66 }
duke@435 67
jmasa@3730 68 template <class Chunk>
jmasa@4196 69 void FreeList<Chunk>::link_head(Chunk* v) {
jmasa@4196 70 assert_proper_lock_protection();
jmasa@4196 71 set_head(v);
jmasa@4196 72 // If this method is not used (just set the head instead),
jmasa@4196 73 // this check can be avoided.
jmasa@4196 74 if (v != NULL) {
jmasa@4196 75 v->link_prev(NULL);
jmasa@4196 76 }
jmasa@4196 77 }
jmasa@4196 78
jmasa@4196 79
jmasa@4196 80
jmasa@4196 81 template <class Chunk>
jmasa@4196 82 void FreeList<Chunk>::reset() {
jmasa@4196 83 // Don't set the _size to 0 because this method is
jmasa@4196 84 // used with a existing list that has a size but which has
jmasa@4196 85 // been emptied.
jmasa@4196 86 // Don't clear the _protecting_lock of an existing list.
duke@435 87 set_count(0);
duke@435 88 set_head(NULL);
duke@435 89 set_tail(NULL);
duke@435 90 }
duke@435 91
jmasa@3730 92 template <class Chunk>
jmasa@4196 93 void FreeList<Chunk>::initialize() {
jmasa@4196 94 #ifdef ASSERT
jmasa@4196 95 // Needed early because it might be checked in other initializing code.
jmasa@4196 96 set_protecting_lock(NULL);
jmasa@4196 97 #endif
jmasa@4196 98 reset();
jmasa@4196 99 set_size(0);
duke@435 100 }
duke@435 101
jmasa@4196 102 template <class Chunk_t>
jmasa@4196 103 Chunk_t* FreeList<Chunk_t>::get_chunk_at_head() {
duke@435 104 assert_proper_lock_protection();
duke@435 105 assert(head() == NULL || head()->prev() == NULL, "list invariant");
duke@435 106 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
jmasa@4196 107 Chunk_t* fc = head();
duke@435 108 if (fc != NULL) {
jmasa@4196 109 Chunk_t* nextFC = fc->next();
duke@435 110 if (nextFC != NULL) {
duke@435 111 // The chunk fc being removed has a "next". Set the "next" to the
duke@435 112 // "prev" of fc.
jmasa@3732 113 nextFC->link_prev(NULL);
duke@435 114 } else { // removed tail of list
duke@435 115 link_tail(NULL);
duke@435 116 }
duke@435 117 link_head(nextFC);
duke@435 118 decrement_count();
duke@435 119 }
duke@435 120 assert(head() == NULL || head()->prev() == NULL, "list invariant");
duke@435 121 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
duke@435 122 return fc;
duke@435 123 }
duke@435 124
duke@435 125
jmasa@3730 126 template <class Chunk>
jmasa@3730 127 void FreeList<Chunk>::getFirstNChunksFromList(size_t n, FreeList<Chunk>* fl) {
duke@435 128 assert_proper_lock_protection();
duke@435 129 assert(fl->count() == 0, "Precondition");
duke@435 130 if (count() > 0) {
duke@435 131 int k = 1;
duke@435 132 fl->set_head(head()); n--;
jmasa@3730 133 Chunk* tl = head();
duke@435 134 while (tl->next() != NULL && n > 0) {
duke@435 135 tl = tl->next(); n--; k++;
duke@435 136 }
duke@435 137 assert(tl != NULL, "Loop Inv.");
duke@435 138
duke@435 139 // First, fix up the list we took from.
jmasa@3730 140 Chunk* new_head = tl->next();
duke@435 141 set_head(new_head);
duke@435 142 set_count(count() - k);
duke@435 143 if (new_head == NULL) {
duke@435 144 set_tail(NULL);
duke@435 145 } else {
jmasa@3732 146 new_head->link_prev(NULL);
duke@435 147 }
duke@435 148 // Now we can fix up the tail.
jmasa@3732 149 tl->link_next(NULL);
duke@435 150 // And return the result.
duke@435 151 fl->set_tail(tl);
duke@435 152 fl->set_count(k);
duke@435 153 }
duke@435 154 }
duke@435 155
duke@435 156 // Remove this chunk from the list
jmasa@3730 157 template <class Chunk>
jmasa@3732 158 void FreeList<Chunk>::remove_chunk(Chunk*fc) {
duke@435 159 assert_proper_lock_protection();
duke@435 160 assert(head() != NULL, "Remove from empty list");
duke@435 161 assert(fc != NULL, "Remove a NULL chunk");
duke@435 162 assert(size() == fc->size(), "Wrong list");
duke@435 163 assert(head() == NULL || head()->prev() == NULL, "list invariant");
duke@435 164 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
duke@435 165
jmasa@3730 166 Chunk* prevFC = fc->prev();
jmasa@3730 167 Chunk* nextFC = fc->next();
duke@435 168 if (nextFC != NULL) {
duke@435 169 // The chunk fc being removed has a "next". Set the "next" to the
duke@435 170 // "prev" of fc.
jmasa@3732 171 nextFC->link_prev(prevFC);
duke@435 172 } else { // removed tail of list
duke@435 173 link_tail(prevFC);
duke@435 174 }
duke@435 175 if (prevFC == NULL) { // removed head of list
duke@435 176 link_head(nextFC);
duke@435 177 assert(nextFC == NULL || nextFC->prev() == NULL,
duke@435 178 "Prev of head should be NULL");
duke@435 179 } else {
jmasa@3732 180 prevFC->link_next(nextFC);
duke@435 181 assert(tail() != prevFC || prevFC->next() == NULL,
duke@435 182 "Next of tail should be NULL");
duke@435 183 }
duke@435 184 decrement_count();
ysr@2132 185 assert(((head() == NULL) + (tail() == NULL) + (count() == 0)) % 3 == 0,
ysr@2132 186 "H/T/C Inconsistency");
duke@435 187 // clear next and prev fields of fc, debug only
duke@435 188 NOT_PRODUCT(
jmasa@3732 189 fc->link_prev(NULL);
jmasa@3732 190 fc->link_next(NULL);
duke@435 191 )
jmasa@3732 192 assert(fc->is_free(), "Should still be a free chunk");
duke@435 193 assert(head() == NULL || head()->prev() == NULL, "list invariant");
duke@435 194 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
duke@435 195 assert(head() == NULL || head()->size() == size(), "wrong item on list");
duke@435 196 assert(tail() == NULL || tail()->size() == size(), "wrong item on list");
duke@435 197 }
duke@435 198
duke@435 199 // Add this chunk at the head of the list.
jmasa@3730 200 template <class Chunk>
jmasa@3732 201 void FreeList<Chunk>::return_chunk_at_head(Chunk* chunk, bool record_return) {
duke@435 202 assert_proper_lock_protection();
duke@435 203 assert(chunk != NULL, "insert a NULL chunk");
duke@435 204 assert(size() == chunk->size(), "Wrong size");
duke@435 205 assert(head() == NULL || head()->prev() == NULL, "list invariant");
duke@435 206 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
duke@435 207
jmasa@3730 208 Chunk* oldHead = head();
duke@435 209 assert(chunk != oldHead, "double insertion");
jmasa@3732 210 chunk->link_after(oldHead);
duke@435 211 link_head(chunk);
duke@435 212 if (oldHead == NULL) { // only chunk in list
duke@435 213 assert(tail() == NULL, "inconsistent FreeList");
duke@435 214 link_tail(chunk);
duke@435 215 }
duke@435 216 increment_count(); // of # of chunks in list
duke@435 217 assert(head() == NULL || head()->prev() == NULL, "list invariant");
duke@435 218 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
duke@435 219 assert(head() == NULL || head()->size() == size(), "wrong item on list");
duke@435 220 assert(tail() == NULL || tail()->size() == size(), "wrong item on list");
duke@435 221 }
duke@435 222
jmasa@3730 223 template <class Chunk>
jmasa@3732 224 void FreeList<Chunk>::return_chunk_at_head(Chunk* chunk) {
duke@435 225 assert_proper_lock_protection();
jmasa@3732 226 return_chunk_at_head(chunk, true);
duke@435 227 }
duke@435 228
duke@435 229 // Add this chunk at the tail of the list.
jmasa@3730 230 template <class Chunk>
jmasa@3732 231 void FreeList<Chunk>::return_chunk_at_tail(Chunk* chunk, bool record_return) {
duke@435 232 assert_proper_lock_protection();
duke@435 233 assert(head() == NULL || head()->prev() == NULL, "list invariant");
duke@435 234 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
duke@435 235 assert(chunk != NULL, "insert a NULL chunk");
duke@435 236 assert(size() == chunk->size(), "wrong size");
duke@435 237
jmasa@3730 238 Chunk* oldTail = tail();
duke@435 239 assert(chunk != oldTail, "double insertion");
duke@435 240 if (oldTail != NULL) {
jmasa@3732 241 oldTail->link_after(chunk);
duke@435 242 } else { // only chunk in list
duke@435 243 assert(head() == NULL, "inconsistent FreeList");
duke@435 244 link_head(chunk);
duke@435 245 }
duke@435 246 link_tail(chunk);
duke@435 247 increment_count(); // of # of chunks in list
duke@435 248 assert(head() == NULL || head()->prev() == NULL, "list invariant");
duke@435 249 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
duke@435 250 assert(head() == NULL || head()->size() == size(), "wrong item on list");
duke@435 251 assert(tail() == NULL || tail()->size() == size(), "wrong item on list");
duke@435 252 }
duke@435 253
jmasa@3730 254 template <class Chunk>
jmasa@3732 255 void FreeList<Chunk>::return_chunk_at_tail(Chunk* chunk) {
jmasa@3732 256 return_chunk_at_tail(chunk, true);
duke@435 257 }
duke@435 258
jmasa@3730 259 template <class Chunk>
jmasa@3730 260 void FreeList<Chunk>::prepend(FreeList<Chunk>* fl) {
duke@435 261 assert_proper_lock_protection();
duke@435 262 if (fl->count() > 0) {
duke@435 263 if (count() == 0) {
duke@435 264 set_head(fl->head());
duke@435 265 set_tail(fl->tail());
duke@435 266 set_count(fl->count());
duke@435 267 } else {
duke@435 268 // Both are non-empty.
jmasa@3730 269 Chunk* fl_tail = fl->tail();
jmasa@3730 270 Chunk* this_head = head();
duke@435 271 assert(fl_tail->next() == NULL, "Well-formedness of fl");
jmasa@3732 272 fl_tail->link_next(this_head);
jmasa@3732 273 this_head->link_prev(fl_tail);
duke@435 274 set_head(fl->head());
duke@435 275 set_count(count() + fl->count());
duke@435 276 }
duke@435 277 fl->set_head(NULL);
duke@435 278 fl->set_tail(NULL);
duke@435 279 fl->set_count(0);
duke@435 280 }
duke@435 281 }
duke@435 282
jmasa@4196 283 // verify_chunk_in_free_lists() is used to verify that an item is in this free list.
duke@435 284 // It is used as a debugging aid.
jmasa@3730 285 template <class Chunk>
jmasa@3732 286 bool FreeList<Chunk>::verify_chunk_in_free_list(Chunk* fc) const {
duke@435 287 // This is an internal consistency check, not part of the check that the
duke@435 288 // chunk is in the free lists.
duke@435 289 guarantee(fc->size() == size(), "Wrong list is being searched");
jmasa@3730 290 Chunk* curFC = head();
duke@435 291 while (curFC) {
duke@435 292 // This is an internal consistency check.
duke@435 293 guarantee(size() == curFC->size(), "Chunk is in wrong list.");
duke@435 294 if (fc == curFC) {
duke@435 295 return true;
duke@435 296 }
duke@435 297 curFC = curFC->next();
duke@435 298 }
duke@435 299 return false;
duke@435 300 }
duke@435 301
duke@435 302 #ifndef PRODUCT
jmasa@3730 303 template <class Chunk>
jmasa@3730 304 void FreeList<Chunk>::assert_proper_lock_protection_work() const {
jmasa@4196 305 assert(protecting_lock() != NULL, "Don't call this directly");
ysr@1580 306 assert(ParallelGCThreads > 0, "Don't call this directly");
ysr@1580 307 Thread* thr = Thread::current();
ysr@1580 308 if (thr->is_VM_thread() || thr->is_ConcurrentGC_thread()) {
ysr@1580 309 // assert that we are holding the freelist lock
ysr@1580 310 } else if (thr->is_GC_task_thread()) {
jmasa@4196 311 assert(protecting_lock()->owned_by_self(), "FreeList RACE DETECTED");
ysr@1580 312 } else if (thr->is_Java_thread()) {
ysr@1580 313 assert(!SafepointSynchronize::is_at_safepoint(), "Should not be executing");
ysr@1580 314 } else {
ysr@1580 315 ShouldNotReachHere(); // unaccounted thread type?
duke@435 316 }
duke@435 317 }
duke@435 318 #endif
ysr@447 319
ysr@447 320 // Print the "label line" for free list stats.
jmasa@3730 321 template <class Chunk>
jmasa@3730 322 void FreeList<Chunk>::print_labels_on(outputStream* st, const char* c) {
ysr@447 323 st->print("%16s\t", c);
ysr@447 324 st->print("%14s\t" "%14s\t" "%14s\t" "%14s\t" "%14s\t"
ysr@447 325 "%14s\t" "%14s\t" "%14s\t" "%14s\t" "%14s\t" "\n",
ysr@447 326 "bfrsurp", "surplus", "desired", "prvSwep", "bfrSwep",
ysr@447 327 "count", "cBirths", "cDeaths", "sBirths", "sDeaths");
ysr@447 328 }
ysr@447 329
ysr@447 330 // Print the AllocationStats for the given free list. If the second argument
ysr@447 331 // to the call is a non-null string, it is printed in the first column;
ysr@447 332 // otherwise, if the argument is null (the default), then the size of the
ysr@447 333 // (free list) block is printed in the first column.
jmasa@4196 334 template <class Chunk_t>
jmasa@4196 335 void FreeList<Chunk_t>::print_on(outputStream* st, const char* c) const {
ysr@447 336 if (c != NULL) {
ysr@447 337 st->print("%16s", c);
ysr@447 338 } else {
ysr@447 339 st->print(SIZE_FORMAT_W(16), size());
ysr@447 340 }
ysr@447 341 }
jmasa@3730 342
jmasa@4196 343 template class FreeList<Metablock>;
jmasa@4196 344 template class FreeList<Metachunk>;
jprovino@4542 345 #if INCLUDE_ALL_GCS
jmasa@3730 346 template class FreeList<FreeChunk>;
jprovino@4542 347 #endif // INCLUDE_ALL_GCS

mercurial