src/share/vm/memory/freeList.cpp

Tue, 24 Dec 2013 11:48:39 -0800

author
mikael
date
Tue, 24 Dec 2013 11:48:39 -0800
changeset 6198
55fb97c4c58d
parent 5941
bdfbb1fb19ca
child 6402
191174b49bec
permissions
-rw-r--r--

8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
Summary: Copyright year updated for files modified during 2013
Reviewed-by: twisti, iveresov

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

mercurial