freeList.cpp 11.0 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
22 23 24
 *
 */

25
#include "precompiled.hpp"
26 27
#include "memory/freeBlockDictionary.hpp"
#include "memory/freeList.hpp"
28
#include "memory/metachunk.hpp"
29 30 31 32
#include "memory/sharedHeap.hpp"
#include "runtime/globals.hpp"
#include "runtime/mutex.hpp"
#include "runtime/vmThread.hpp"
33
#include "utilities/macros.hpp"
D
duke 已提交
34

35
#if INCLUDE_ALL_GCS
36
#include "gc_implementation/concurrentMarkSweep/freeChunk.hpp"
37
#endif // INCLUDE_ALL_GCS
38

D
duke 已提交
39 40 41 42 43 44
// Free list.  A FreeList is used to access a linked list of chunks
// of space in the heap.  The head and tail are maintained so that
// items can be (as in the current implementation) added at the
// at the tail of the list and removed from the head of the list to
// maintain a FIFO queue.

45 46
template <class Chunk>
FreeList<Chunk>::FreeList() :
D
duke 已提交
47 48 49 50 51 52 53 54 55
  _head(NULL), _tail(NULL)
#ifdef ASSERT
  , _protecting_lock(NULL)
#endif
{
  _size         = 0;
  _count        = 0;
}

56
template <class Chunk>
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
void FreeList<Chunk>::link_head(Chunk* v) {
  assert_proper_lock_protection();
  set_head(v);
  // If this method is not used (just set the head instead),
  // this check can be avoided.
  if (v != NULL) {
    v->link_prev(NULL);
  }
}



template <class Chunk>
void FreeList<Chunk>::reset() {
  // Don't set the _size to 0 because this method is
  // used with a existing list that has a size but which has
  // been emptied.
  // Don't clear the _protecting_lock of an existing list.
D
duke 已提交
75 76 77 78 79
  set_count(0);
  set_head(NULL);
  set_tail(NULL);
}

80
template <class Chunk>
81 82 83 84 85 86 87
void FreeList<Chunk>::initialize() {
#ifdef ASSERT
  // Needed early because it might be checked in other initializing code.
  set_protecting_lock(NULL);
#endif
  reset();
  set_size(0);
D
duke 已提交
88 89
}

90 91
template <class Chunk_t>
Chunk_t* FreeList<Chunk_t>::get_chunk_at_head() {
D
duke 已提交
92 93 94
  assert_proper_lock_protection();
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
95
  Chunk_t* fc = head();
D
duke 已提交
96
  if (fc != NULL) {
97
    Chunk_t* nextFC = fc->next();
D
duke 已提交
98 99 100
    if (nextFC != NULL) {
      // The chunk fc being removed has a "next".  Set the "next" to the
      // "prev" of fc.
101
      nextFC->link_prev(NULL);
D
duke 已提交
102 103 104 105 106 107 108 109 110 111 112 113
    } else { // removed tail of list
      link_tail(NULL);
    }
    link_head(nextFC);
    decrement_count();
  }
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
  return fc;
}


114 115
template <class Chunk>
void FreeList<Chunk>::getFirstNChunksFromList(size_t n, FreeList<Chunk>* fl) {
D
duke 已提交
116 117 118 119 120
  assert_proper_lock_protection();
  assert(fl->count() == 0, "Precondition");
  if (count() > 0) {
    int k = 1;
    fl->set_head(head()); n--;
121
    Chunk* tl = head();
D
duke 已提交
122 123 124 125 126 127
    while (tl->next() != NULL && n > 0) {
      tl = tl->next(); n--; k++;
    }
    assert(tl != NULL, "Loop Inv.");

    // First, fix up the list we took from.
128
    Chunk* new_head = tl->next();
D
duke 已提交
129 130 131 132 133
    set_head(new_head);
    set_count(count() - k);
    if (new_head == NULL) {
      set_tail(NULL);
    } else {
134
      new_head->link_prev(NULL);
D
duke 已提交
135 136
    }
    // Now we can fix up the tail.
137
    tl->link_next(NULL);
D
duke 已提交
138 139 140 141 142 143 144
    // And return the result.
    fl->set_tail(tl);
    fl->set_count(k);
  }
}

// Remove this chunk from the list
145
template <class Chunk>
146
void FreeList<Chunk>::remove_chunk(Chunk*fc) {
D
duke 已提交
147 148 149 150 151 152 153
   assert_proper_lock_protection();
   assert(head() != NULL, "Remove from empty list");
   assert(fc != NULL, "Remove a NULL chunk");
   assert(size() == fc->size(), "Wrong list");
   assert(head() == NULL || head()->prev() == NULL, "list invariant");
   assert(tail() == NULL || tail()->next() == NULL, "list invariant");

154 155
   Chunk* prevFC = fc->prev();
   Chunk* nextFC = fc->next();
D
duke 已提交
156 157 158
   if (nextFC != NULL) {
     // The chunk fc being removed has a "next".  Set the "next" to the
     // "prev" of fc.
159
     nextFC->link_prev(prevFC);
D
duke 已提交
160 161 162 163 164 165 166 167
   } else { // removed tail of list
     link_tail(prevFC);
   }
   if (prevFC == NULL) { // removed head of list
     link_head(nextFC);
     assert(nextFC == NULL || nextFC->prev() == NULL,
       "Prev of head should be NULL");
   } else {
168
     prevFC->link_next(nextFC);
D
duke 已提交
169 170 171 172
     assert(tail() != prevFC || prevFC->next() == NULL,
       "Next of tail should be NULL");
   }
   decrement_count();
173 174
   assert(((head() == NULL) + (tail() == NULL) + (count() == 0)) % 3 == 0,
          "H/T/C Inconsistency");
D
duke 已提交
175 176
   // clear next and prev fields of fc, debug only
   NOT_PRODUCT(
177 178
     fc->link_prev(NULL);
     fc->link_next(NULL);
D
duke 已提交
179
   )
180
   assert(fc->is_free(), "Should still be a free chunk");
D
duke 已提交
181 182 183 184 185 186 187
   assert(head() == NULL || head()->prev() == NULL, "list invariant");
   assert(tail() == NULL || tail()->next() == NULL, "list invariant");
   assert(head() == NULL || head()->size() == size(), "wrong item on list");
   assert(tail() == NULL || tail()->size() == size(), "wrong item on list");
}

// Add this chunk at the head of the list.
188
template <class Chunk>
189
void FreeList<Chunk>::return_chunk_at_head(Chunk* chunk, bool record_return) {
D
duke 已提交
190 191 192 193 194 195
  assert_proper_lock_protection();
  assert(chunk != NULL, "insert a NULL chunk");
  assert(size() == chunk->size(), "Wrong size");
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");

196
  Chunk* oldHead = head();
D
duke 已提交
197
  assert(chunk != oldHead, "double insertion");
198
  chunk->link_after(oldHead);
D
duke 已提交
199 200 201 202 203 204 205 206 207 208 209 210
  link_head(chunk);
  if (oldHead == NULL) { // only chunk in list
    assert(tail() == NULL, "inconsistent FreeList");
    link_tail(chunk);
  }
  increment_count(); // of # of chunks in list
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
  assert(head() == NULL || head()->size() == size(), "wrong item on list");
  assert(tail() == NULL || tail()->size() == size(), "wrong item on list");
}

211
template <class Chunk>
212
void FreeList<Chunk>::return_chunk_at_head(Chunk* chunk) {
D
duke 已提交
213
  assert_proper_lock_protection();
214
  return_chunk_at_head(chunk, true);
D
duke 已提交
215 216 217
}

// Add this chunk at the tail of the list.
218
template <class Chunk>
219
void FreeList<Chunk>::return_chunk_at_tail(Chunk* chunk, bool record_return) {
D
duke 已提交
220 221 222 223 224 225
  assert_proper_lock_protection();
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
  assert(chunk != NULL, "insert a NULL chunk");
  assert(size() == chunk->size(), "wrong size");

226
  Chunk* oldTail = tail();
D
duke 已提交
227 228
  assert(chunk != oldTail, "double insertion");
  if (oldTail != NULL) {
229
    oldTail->link_after(chunk);
D
duke 已提交
230 231 232 233 234 235 236 237 238 239 240 241
  } else { // only chunk in list
    assert(head() == NULL, "inconsistent FreeList");
    link_head(chunk);
  }
  link_tail(chunk);
  increment_count();  // of # of chunks in list
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
  assert(head() == NULL || head()->size() == size(), "wrong item on list");
  assert(tail() == NULL || tail()->size() == size(), "wrong item on list");
}

242
template <class Chunk>
243 244
void FreeList<Chunk>::return_chunk_at_tail(Chunk* chunk) {
  return_chunk_at_tail(chunk, true);
D
duke 已提交
245 246
}

247 248
template <class Chunk>
void FreeList<Chunk>::prepend(FreeList<Chunk>* fl) {
D
duke 已提交
249 250 251 252 253 254 255 256
  assert_proper_lock_protection();
  if (fl->count() > 0) {
    if (count() == 0) {
      set_head(fl->head());
      set_tail(fl->tail());
      set_count(fl->count());
    } else {
      // Both are non-empty.
257 258
      Chunk* fl_tail = fl->tail();
      Chunk* this_head = head();
D
duke 已提交
259
      assert(fl_tail->next() == NULL, "Well-formedness of fl");
260 261
      fl_tail->link_next(this_head);
      this_head->link_prev(fl_tail);
D
duke 已提交
262 263 264 265 266 267 268 269 270
      set_head(fl->head());
      set_count(count() + fl->count());
    }
    fl->set_head(NULL);
    fl->set_tail(NULL);
    fl->set_count(0);
  }
}

271
// verify_chunk_in_free_lists() is used to verify that an item is in this free list.
D
duke 已提交
272
// It is used as a debugging aid.
273
template <class Chunk>
274
bool FreeList<Chunk>::verify_chunk_in_free_list(Chunk* fc) const {
D
duke 已提交
275 276 277
  // This is an internal consistency check, not part of the check that the
  // chunk is in the free lists.
  guarantee(fc->size() == size(), "Wrong list is being searched");
278
  Chunk* curFC = head();
D
duke 已提交
279 280 281 282 283 284 285 286 287 288 289 290
  while (curFC) {
    // This is an internal consistency check.
    guarantee(size() == curFC->size(), "Chunk is in wrong list.");
    if (fc == curFC) {
      return true;
    }
    curFC = curFC->next();
  }
  return false;
}

#ifndef PRODUCT
291 292
template <class Chunk>
void FreeList<Chunk>::assert_proper_lock_protection_work() const {
293
  assert(protecting_lock() != NULL, "Don't call this directly");
294 295 296 297 298
  assert(ParallelGCThreads > 0, "Don't call this directly");
  Thread* thr = Thread::current();
  if (thr->is_VM_thread() || thr->is_ConcurrentGC_thread()) {
    // assert that we are holding the freelist lock
  } else if (thr->is_GC_task_thread()) {
299
    assert(protecting_lock()->owned_by_self(), "FreeList RACE DETECTED");
300 301 302 303
  } else if (thr->is_Java_thread()) {
    assert(!SafepointSynchronize::is_at_safepoint(), "Should not be executing");
  } else {
    ShouldNotReachHere();  // unaccounted thread type?
D
duke 已提交
304 305 306
  }
}
#endif
307 308

// Print the "label line" for free list stats.
309 310
template <class Chunk>
void FreeList<Chunk>::print_labels_on(outputStream* st, const char* c) {
311 312 313 314 315 316 317 318 319 320 321
  st->print("%16s\t", c);
  st->print("%14s\t"    "%14s\t"    "%14s\t"    "%14s\t"    "%14s\t"
            "%14s\t"    "%14s\t"    "%14s\t"    "%14s\t"    "%14s\t"    "\n",
            "bfrsurp", "surplus", "desired", "prvSwep", "bfrSwep",
            "count",   "cBirths", "cDeaths", "sBirths", "sDeaths");
}

// Print the AllocationStats for the given free list. If the second argument
// to the call is a non-null string, it is printed in the first column;
// otherwise, if the argument is null (the default), then the size of the
// (free list) block is printed in the first column.
322 323
template <class Chunk_t>
void FreeList<Chunk_t>::print_on(outputStream* st, const char* c) const {
324 325 326 327 328 329
  if (c != NULL) {
    st->print("%16s", c);
  } else {
    st->print(SIZE_FORMAT_W(16), size());
  }
}
330

331 332
template class FreeList<Metablock>;
template class FreeList<Metachunk>;
333
#if INCLUDE_ALL_GCS
334
template class FreeList<FreeChunk>;
335
#endif // INCLUDE_ALL_GCS