binaryTreeDictionary.cpp 46.9 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 2001, 2012, 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 26
#include "precompiled.hpp"
#include "gc_implementation/shared/allocationStats.hpp"
27
#include "memory/binaryTreeDictionary.hpp"
28 29
#include "runtime/globals.hpp"
#include "utilities/ostream.hpp"
30 31 32 33
#ifndef SERIALGC
#include "gc_implementation/shared/spaceDecorator.hpp"
#include "gc_implementation/concurrentMarkSweep/freeChunk.hpp"
#endif // SERIALGC
D
duke 已提交
34 35 36 37 38 39

////////////////////////////////////////////////////////////////////////////////
// A binary tree based search structure for free blocks.
// This is currently used in the Concurrent Mark&Sweep implementation.
////////////////////////////////////////////////////////////////////////////////

40 41
template <class Chunk>
TreeChunk<Chunk>* TreeChunk<Chunk>::as_TreeChunk(Chunk* fc) {
D
duke 已提交
42
  // Do some assertion checking here.
43
  return (TreeChunk<Chunk>*) fc;
D
duke 已提交
44 45
}

46
template <class Chunk>
47
void TreeChunk<Chunk>::verify_tree_chunk_list() const {
48
  TreeChunk<Chunk>* nextTC = (TreeChunk<Chunk>*)next();
D
duke 已提交
49 50 51 52 53 54 55
  if (prev() != NULL) { // interior list node shouldn'r have tree fields
    guarantee(embedded_list()->parent() == NULL && embedded_list()->left() == NULL &&
              embedded_list()->right()  == NULL, "should be clear");
  }
  if (nextTC != NULL) {
    guarantee(as_TreeChunk(nextTC->prev()) == this, "broken chain");
    guarantee(nextTC->size() == size(), "wrong size");
56
    nextTC->verify_tree_chunk_list();
D
duke 已提交
57 58 59 60
  }
}


61 62
template <class Chunk>
TreeList<Chunk>* TreeList<Chunk>::as_TreeList(TreeChunk<Chunk>* tc) {
D
duke 已提交
63
  // This first free chunk in the list will be the tree list.
64 65
  assert(tc->size() >= BinaryTreeDictionary<Chunk>::min_tree_chunk_size, "Chunk is too small for a TreeChunk");
  TreeList<Chunk>* tl = tc->embedded_list();
D
duke 已提交
66 67 68 69 70 71 72 73 74
  tc->set_list(tl);
#ifdef ASSERT
  tl->set_protecting_lock(NULL);
#endif
  tl->set_hint(0);
  tl->set_size(tc->size());
  tl->link_head(tc);
  tl->link_tail(tc);
  tl->set_count(1);
75
  tl->init_statistics(true /* split_birth */);
76 77 78
  tl->set_parent(NULL);
  tl->set_left(NULL);
  tl->set_right(NULL);
D
duke 已提交
79 80
  return tl;
}
81

82 83 84 85
template <class Chunk>
TreeList<Chunk>* TreeList<Chunk>::as_TreeList(HeapWord* addr, size_t size) {
  TreeChunk<Chunk>* tc = (TreeChunk<Chunk>*) addr;
  assert(size >= BinaryTreeDictionary<Chunk>::min_tree_chunk_size, "Chunk is too small for a TreeChunk");
86 87 88 89 90 91 92 93 94
  // The space in the heap will have been mangled initially but
  // is not remangled when a free chunk is returned to the free list
  // (since it is used to maintain the chunk on the free list).
  assert((ZapUnusedHeapArea &&
          SpaceMangler::is_mangled((HeapWord*) tc->size_addr()) &&
          SpaceMangler::is_mangled((HeapWord*) tc->prev_addr()) &&
          SpaceMangler::is_mangled((HeapWord*) tc->next_addr())) ||
          (tc->size() == 0 && tc->prev() == NULL && tc->next() == NULL),
    "Space should be clear or mangled");
95 96 97
  tc->set_size(size);
  tc->link_prev(NULL);
  tc->link_next(NULL);
98
  TreeList<Chunk>* tl = TreeList<Chunk>::as_TreeList(tc);
D
duke 已提交
99 100 101
  return tl;
}

102
template <class Chunk>
103
TreeList<Chunk>* TreeList<Chunk>::remove_chunk_replace_if_needed(TreeChunk<Chunk>* tc) {
D
duke 已提交
104

105 106
  TreeList<Chunk>* retTL = this;
  Chunk* list = head();
D
duke 已提交
107 108 109 110
  assert(!list || list != list->next(), "Chunk on list twice");
  assert(tc != NULL, "Chunk being removed is NULL");
  assert(parent() == NULL || this == parent()->left() ||
    this == parent()->right(), "list is inconsistent");
111
  assert(tc->is_free(), "Header is not marked correctly");
D
duke 已提交
112 113 114
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");

115 116
  Chunk* prevFC = tc->prev();
  TreeChunk<Chunk>* nextTC = TreeChunk<Chunk>::as_TreeChunk(tc->next());
D
duke 已提交
117 118 119 120
  assert(list != NULL, "should have at least the target chunk");

  // Is this the first item on the list?
  if (tc == list) {
121
    // The "getChunk..." functions for a TreeList<Chunk> will not return the
D
duke 已提交
122 123 124 125 126 127 128 129
    // first chunk in the list unless it is the last chunk in the list
    // because the first chunk is also acting as the tree node.
    // When coalescing happens, however, the first chunk in the a tree
    // list can be the start of a free range.  Free ranges are removed
    // from the free lists so that they are not available to be
    // allocated when the sweeper yields (giving up the free list lock)
    // to allow mutator activity.  If this chunk is the first in the
    // list and is not the last in the list, do the work to copy the
130 131
    // TreeList<Chunk> from the first chunk to the next chunk and update all
    // the TreeList<Chunk> pointers in the chunks in the list.
D
duke 已提交
132
    if (nextTC == NULL) {
133
      assert(prevFC == NULL, "Not last chunk in the list");
D
duke 已提交
134 135 136 137 138 139 140 141 142 143
      set_tail(NULL);
      set_head(NULL);
    } else {
      // copy embedded list.
      nextTC->set_embedded_list(tc->embedded_list());
      retTL = nextTC->embedded_list();
      // Fix the pointer to the list in each chunk in the list.
      // This can be slow for a long list.  Consider having
      // an option that does not allow the first chunk on the
      // list to be coalesced.
144 145
      for (TreeChunk<Chunk>* curTC = nextTC; curTC != NULL;
          curTC = TreeChunk<Chunk>::as_TreeChunk(curTC->next())) {
D
duke 已提交
146 147
        curTC->set_list(retTL);
      }
148
      // Fix the parent to point to the new TreeList<Chunk>.
D
duke 已提交
149 150
      if (retTL->parent() != NULL) {
        if (this == retTL->parent()->left()) {
151
          retTL->parent()->set_left(retTL);
D
duke 已提交
152 153
        } else {
          assert(this == retTL->parent()->right(), "Parent is incorrect");
154
          retTL->parent()->set_right(retTL);
D
duke 已提交
155 156 157 158 159 160
        }
      }
      // Fix the children's parent pointers to point to the
      // new list.
      assert(right() == retTL->right(), "Should have been copied");
      if (retTL->right() != NULL) {
161
        retTL->right()->set_parent(retTL);
D
duke 已提交
162 163 164
      }
      assert(left() == retTL->left(), "Should have been copied");
      if (retTL->left() != NULL) {
165
        retTL->left()->set_parent(retTL);
D
duke 已提交
166 167
      }
      retTL->link_head(nextTC);
168
      assert(nextTC->is_free(), "Should be a free chunk");
D
duke 已提交
169 170 171 172 173 174 175
    }
  } else {
    if (nextTC == NULL) {
      // Removing chunk at tail of list
      link_tail(prevFC);
    }
    // Chunk is interior to the list
176
    prevFC->link_after(nextTC);
D
duke 已提交
177 178
  }

179
  // Below this point the embeded TreeList<Chunk> being used for the
D
duke 已提交
180
  // tree node may have changed. Don't use "this"
181
  // TreeList<Chunk>*.
D
duke 已提交
182 183 184 185
  // chunk should still be a free chunk (bit set in _prev)
  assert(!retTL->head() || retTL->size() == retTL->head()->size(),
    "Wrong sized chunk in list");
  debug_only(
186 187
    tc->link_prev(NULL);
    tc->link_next(NULL);
D
duke 已提交
188 189 190
    tc->set_list(NULL);
    bool prev_found = false;
    bool next_found = false;
191
    for (Chunk* curFC = retTL->head();
D
duke 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
         curFC != NULL; curFC = curFC->next()) {
      assert(curFC != tc, "Chunk is still in list");
      if (curFC == prevFC) {
        prev_found = true;
      }
      if (curFC == nextTC) {
        next_found = true;
      }
    }
    assert(prevFC == NULL || prev_found, "Chunk was lost from list");
    assert(nextTC == NULL || next_found, "Chunk was lost from list");
    assert(retTL->parent() == NULL ||
           retTL == retTL->parent()->left() ||
           retTL == retTL->parent()->right(),
           "list is inconsistent");
  )
  retTL->decrement_count();

210
  assert(tc->is_free(), "Should still be a free chunk");
D
duke 已提交
211 212 213 214 215 216
  assert(retTL->head() == NULL || retTL->head()->prev() == NULL,
    "list invariant");
  assert(retTL->tail() == NULL || retTL->tail()->next() == NULL,
    "list invariant");
  return retTL;
}
217 218

template <class Chunk>
219
void TreeList<Chunk>::return_chunk_at_tail(TreeChunk<Chunk>* chunk) {
D
duke 已提交
220 221 222 223
  assert(chunk != NULL, "returning NULL chunk");
  assert(chunk->list() == this, "list should be set for chunk");
  assert(tail() != NULL, "The tree list is embedded in the first chunk");
  // which means that the list can never be empty.
224
  assert(!verify_chunk_in_free_list(chunk), "Double entry");
D
duke 已提交
225 226 227
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");

228
  Chunk* fc = tail();
229
  fc->link_after(chunk);
D
duke 已提交
230 231 232
  link_tail(chunk);

  assert(!tail() || size() == tail()->size(), "Wrong sized chunk in list");
233
  increment_count();
234
  debug_only(increment_returned_bytes_by(chunk->size()*sizeof(HeapWord));)
D
duke 已提交
235 236 237 238 239 240
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
}

// Add this chunk at the head of the list.  "At the head of the list"
// is defined to be after the chunk pointer to by head().  This is
241 242 243
// because the TreeList<Chunk> is embedded in the first TreeChunk<Chunk> in the
// list.  See the definition of TreeChunk<Chunk>.
template <class Chunk>
244
void TreeList<Chunk>::return_chunk_at_head(TreeChunk<Chunk>* chunk) {
D
duke 已提交
245 246 247
  assert(chunk->list() == this, "list should be set for chunk");
  assert(head() != NULL, "The tree list is embedded in the first chunk");
  assert(chunk != NULL, "returning NULL chunk");
248
  assert(!verify_chunk_in_free_list(chunk), "Double entry");
D
duke 已提交
249 250 251
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");

252
  Chunk* fc = head()->next();
D
duke 已提交
253
  if (fc != NULL) {
254
    chunk->link_after(fc);
D
duke 已提交
255 256 257 258
  } else {
    assert(tail() == NULL, "List is inconsistent");
    link_tail(chunk);
  }
259
  head()->link_after(chunk);
D
duke 已提交
260
  assert(!head() || size() == head()->size(), "Wrong sized chunk in list");
261
  increment_count();
262
  debug_only(increment_returned_bytes_by(chunk->size()*sizeof(HeapWord));)
D
duke 已提交
263 264 265 266
  assert(head() == NULL || head()->prev() == NULL, "list invariant");
  assert(tail() == NULL || tail()->next() == NULL, "list invariant");
}

267 268 269
template <class Chunk>
TreeChunk<Chunk>* TreeList<Chunk>::head_as_TreeChunk() {
  assert(head() == NULL || TreeChunk<Chunk>::as_TreeChunk(head())->list() == this,
D
duke 已提交
270
    "Wrong type of chunk?");
271
  return TreeChunk<Chunk>::as_TreeChunk(head());
D
duke 已提交
272 273
}

274 275
template <class Chunk>
TreeChunk<Chunk>* TreeList<Chunk>::first_available() {
276
  assert(head() != NULL, "The head of the list cannot be NULL");
277 278
  Chunk* fc = head()->next();
  TreeChunk<Chunk>* retTC;
D
duke 已提交
279 280 281
  if (fc == NULL) {
    retTC = head_as_TreeChunk();
  } else {
282
    retTC = TreeChunk<Chunk>::as_TreeChunk(fc);
D
duke 已提交
283 284 285 286 287
  }
  assert(retTC->list() == this, "Wrong type of chunk.");
  return retTC;
}

288 289 290
// Returns the block with the largest heap address amongst
// those in the list for this size; potentially slow and expensive,
// use with caution!
291 292
template <class Chunk>
TreeChunk<Chunk>* TreeList<Chunk>::largest_address() {
293
  assert(head() != NULL, "The head of the list cannot be NULL");
294 295
  Chunk* fc = head()->next();
  TreeChunk<Chunk>* retTC;
296 297 298 299 300
  if (fc == NULL) {
    retTC = head_as_TreeChunk();
  } else {
    // walk down the list and return the one with the highest
    // heap address among chunks of this size.
301
    Chunk* last = fc;
302 303 304 305 306 307
    while (fc->next() != NULL) {
      if ((HeapWord*)last < (HeapWord*)fc) {
        last = fc;
      }
      fc = fc->next();
    }
308
    retTC = TreeChunk<Chunk>::as_TreeChunk(last);
309 310 311 312 313
  }
  assert(retTC->list() == this, "Wrong type of chunk.");
  return retTC;
}

314 315 316
template <class Chunk>
BinaryTreeDictionary<Chunk>::BinaryTreeDictionary(bool adaptive_freelists, bool splay) :
  _splay(splay), _adaptive_freelists(adaptive_freelists),
317
  _total_size(0), _total_free_blocks(0), _root(0) {}
318 319 320 321 322 323

template <class Chunk>
BinaryTreeDictionary<Chunk>::BinaryTreeDictionary(MemRegion mr,
                                           bool adaptive_freelists,
                                           bool splay):
  _adaptive_freelists(adaptive_freelists), _splay(splay)
D
duke 已提交
324
{
325
  assert(mr.word_size() >= BinaryTreeDictionary<Chunk>::min_tree_chunk_size, "minimum chunk size");
D
duke 已提交
326 327 328 329 330 331

  reset(mr);
  assert(root()->left() == NULL, "reset check failed");
  assert(root()->right() == NULL, "reset check failed");
  assert(root()->head()->next() == NULL, "reset check failed");
  assert(root()->head()->prev() == NULL, "reset check failed");
332 333
  assert(total_size() == root()->size(), "reset check failed");
  assert(total_free_blocks() == 1, "reset check failed");
D
duke 已提交
334 335
}

336
template <class Chunk>
337 338
void BinaryTreeDictionary<Chunk>::inc_total_size(size_t inc) {
  _total_size = _total_size + inc;
D
duke 已提交
339 340
}

341
template <class Chunk>
342 343
void BinaryTreeDictionary<Chunk>::dec_total_size(size_t dec) {
  _total_size = _total_size - dec;
D
duke 已提交
344 345
}

346 347 348 349
template <class Chunk>
void BinaryTreeDictionary<Chunk>::reset(MemRegion mr) {
  assert(mr.word_size() >= BinaryTreeDictionary<Chunk>::min_tree_chunk_size, "minimum chunk size");
  set_root(TreeList<Chunk>::as_TreeList(mr.start(), mr.word_size()));
350 351
  set_total_size(mr.word_size());
  set_total_free_blocks(1);
D
duke 已提交
352 353
}

354 355
template <class Chunk>
void BinaryTreeDictionary<Chunk>::reset(HeapWord* addr, size_t byte_size) {
D
duke 已提交
356 357 358 359
  MemRegion mr(addr, heap_word_size(byte_size));
  reset(mr);
}

360 361
template <class Chunk>
void BinaryTreeDictionary<Chunk>::reset() {
D
duke 已提交
362
  set_root(NULL);
363 364
  set_total_size(0);
  set_total_free_blocks(0);
D
duke 已提交
365 366 367 368 369 370 371 372 373 374
}

// Get a free block of size at least size from tree, or NULL.
// If a splay step is requested, the removal algorithm (only) incorporates
// a splay step as follows:
// . the search proceeds down the tree looking for a possible
//   match. At the (closest) matching location, an appropriate splay step is applied
//   (zig, zig-zig or zig-zag). A chunk of the appropriate size is then returned
//   if available, and if it's the last chunk, the node is deleted. A deteleted
//   node is replaced in place by its tree successor.
375 376
template <class Chunk>
TreeChunk<Chunk>*
377
BinaryTreeDictionary<Chunk>::get_chunk_from_tree(size_t size, enum FreeBlockDictionary<Chunk>::Dither dither, bool splay)
D
duke 已提交
378
{
379 380 381
  TreeList<Chunk> *curTL, *prevTL;
  TreeChunk<Chunk>* retTC = NULL;
  assert(size >= BinaryTreeDictionary<Chunk>::min_tree_chunk_size, "minimum chunk size");
D
duke 已提交
382
  if (FLSVerifyDictionary) {
383
    verify_tree();
D
duke 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
  }
  // starting at the root, work downwards trying to find match.
  // Remember the last node of size too great or too small.
  for (prevTL = curTL = root(); curTL != NULL;) {
    if (curTL->size() == size) {        // exact match
      break;
    }
    prevTL = curTL;
    if (curTL->size() < size) {        // proceed to right sub-tree
      curTL = curTL->right();
    } else {                           // proceed to left sub-tree
      assert(curTL->size() > size, "size inconsistency");
      curTL = curTL->left();
    }
  }
  if (curTL == NULL) { // couldn't find exact match
400 401 402

    if (dither == FreeBlockDictionary<Chunk>::exactly) return NULL;

D
duke 已提交
403 404 405 406 407 408 409 410 411 412
    // try and find the next larger size by walking back up the search path
    for (curTL = prevTL; curTL != NULL;) {
      if (curTL->size() >= size) break;
      else curTL = curTL->parent();
    }
    assert(curTL == NULL || curTL->count() > 0,
      "An empty list should not be in the tree");
  }
  if (curTL != NULL) {
    assert(curTL->size() >= size, "size inconsistency");
413
    if (adaptive_freelists()) {
D
duke 已提交
414 415 416 417 418 419

      // A candidate chunk has been found.  If it is already under
      // populated, get a chunk associated with the hint for this
      // chunk.
      if (curTL->surplus() <= 0) {
        /* Use the hint to find a size with a surplus, and reset the hint. */
420
        TreeList<Chunk>* hintTL = curTL;
D
duke 已提交
421 422 423
        while (hintTL->hint() != 0) {
          assert(hintTL->hint() == 0 || hintTL->hint() > hintTL->size(),
            "hint points in the wrong direction");
424
          hintTL = find_list(hintTL->hint());
D
duke 已提交
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
          assert(curTL != hintTL, "Infinite loop");
          if (hintTL == NULL ||
              hintTL == curTL /* Should not happen but protect against it */ ) {
            // No useful hint.  Set the hint to NULL and go on.
            curTL->set_hint(0);
            break;
          }
          assert(hintTL->size() > size, "hint is inconsistent");
          if (hintTL->surplus() > 0) {
            // The hint led to a list that has a surplus.  Use it.
            // Set the hint for the candidate to an overpopulated
            // size.
            curTL->set_hint(hintTL->size());
            // Change the candidate.
            curTL = hintTL;
            break;
          }
          // The evm code reset the hint of the candidate as
443
          // at an interim point.  Why?  Seems like this leaves
D
duke 已提交
444 445 446 447 448 449 450
          // the hint pointing to a list that didn't work.
          // curTL->set_hint(hintTL->size());
        }
      }
    }
    // don't waste time splaying if chunk's singleton
    if (splay && curTL->head()->next() != NULL) {
451
      semi_splay_step(curTL);
D
duke 已提交
452 453 454 455 456 457
    }
    retTC = curTL->first_available();
    assert((retTC != NULL) && (curTL->count() > 0),
      "A list in the binary tree should not be NULL");
    assert(retTC->size() >= size,
      "A chunk of the wrong size was found");
458 459
    remove_chunk_from_tree(retTC);
    assert(retTC->is_free(), "Header is not marked correctly");
D
duke 已提交
460 461 462 463 464 465 466 467
  }

  if (FLSVerifyDictionary) {
    verify();
  }
  return retTC;
}

468
template <class Chunk>
469
TreeList<Chunk>* BinaryTreeDictionary<Chunk>::find_list(size_t size) const {
470
  TreeList<Chunk>* curTL;
D
duke 已提交
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
  for (curTL = root(); curTL != NULL;) {
    if (curTL->size() == size) {        // exact match
      break;
    }

    if (curTL->size() < size) {        // proceed to right sub-tree
      curTL = curTL->right();
    } else {                           // proceed to left sub-tree
      assert(curTL->size() > size, "size inconsistency");
      curTL = curTL->left();
    }
  }
  return curTL;
}


487
template <class Chunk>
488
bool BinaryTreeDictionary<Chunk>::verify_chunk_in_free_list(Chunk* tc) const {
D
duke 已提交
489
  size_t size = tc->size();
490
  TreeList<Chunk>* tl = find_list(size);
D
duke 已提交
491 492 493
  if (tl == NULL) {
    return false;
  } else {
494
    return tl->verify_chunk_in_free_list(tc);
D
duke 已提交
495 496 497
  }
}

498
template <class Chunk>
499
Chunk* BinaryTreeDictionary<Chunk>::find_largest_dict() const {
500
  TreeList<Chunk> *curTL = root();
D
duke 已提交
501 502
  if (curTL != NULL) {
    while(curTL->right() != NULL) curTL = curTL->right();
503
    return curTL->largest_address();
D
duke 已提交
504 505 506 507 508 509 510 511 512
  } else {
    return NULL;
  }
}

// Remove the current chunk from the tree.  If it is not the last
// chunk in a list on a tree node, just unlink it.
// If it is the last chunk in the list (the next link is NULL),
// remove the node and repair the tree.
513 514
template <class Chunk>
TreeChunk<Chunk>*
515
BinaryTreeDictionary<Chunk>::remove_chunk_from_tree(TreeChunk<Chunk>* tc) {
D
duke 已提交
516
  assert(tc != NULL, "Should not call with a NULL chunk");
517
  assert(tc->is_free(), "Header is not marked correctly");
D
duke 已提交
518

519 520 521
  TreeList<Chunk> *newTL, *parentTL;
  TreeChunk<Chunk>* retTC;
  TreeList<Chunk>* tl = tc->list();
D
duke 已提交
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
  debug_only(
    bool removing_only_chunk = false;
    if (tl == _root) {
      if ((_root->left() == NULL) && (_root->right() == NULL)) {
        if (_root->count() == 1) {
          assert(_root->head() == tc, "Should only be this one chunk");
          removing_only_chunk = true;
        }
      }
    }
  )
  assert(tl != NULL, "List should be set");
  assert(tl->parent() == NULL || tl == tl->parent()->left() ||
         tl == tl->parent()->right(), "list is inconsistent");

537
  bool complicated_splice = false;
D
duke 已提交
538 539 540

  retTC = tc;
  // Removing this chunk can have the side effect of changing the node
541
  // (TreeList<Chunk>*) in the tree.  If the node is the root, update it.
542 543
  TreeList<Chunk>* replacementTL = tl->remove_chunk_replace_if_needed(tc);
  assert(tc->is_free(), "Chunk should still be free");
D
duke 已提交
544 545 546 547 548 549 550 551 552 553 554 555
  assert(replacementTL->parent() == NULL ||
         replacementTL == replacementTL->parent()->left() ||
         replacementTL == replacementTL->parent()->right(),
         "list is inconsistent");
  if (tl == root()) {
    assert(replacementTL->parent() == NULL, "Incorrectly replacing root");
    set_root(replacementTL);
  }
  debug_only(
    if (tl != replacementTL) {
      assert(replacementTL->head() != NULL,
        "If the tree list was replaced, it should not be a NULL list");
556 557
      TreeList<Chunk>* rhl = replacementTL->head_as_TreeChunk()->list();
      TreeList<Chunk>* rtl = TreeChunk<Chunk>::as_TreeChunk(replacementTL->tail())->list();
D
duke 已提交
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
      assert(rhl == replacementTL, "Broken head");
      assert(rtl == replacementTL, "Broken tail");
      assert(replacementTL->size() == tc->size(),  "Broken size");
    }
  )

  // Does the tree need to be repaired?
  if (replacementTL->count() == 0) {
    assert(replacementTL->head() == NULL &&
           replacementTL->tail() == NULL, "list count is incorrect");
    // Find the replacement node for the (soon to be empty) node being removed.
    // if we have a single (or no) child, splice child in our stead
    if (replacementTL->left() == NULL) {
      // left is NULL so pick right.  right may also be NULL.
      newTL = replacementTL->right();
573
      debug_only(replacementTL->clear_right();)
D
duke 已提交
574 575 576 577 578 579
    } else if (replacementTL->right() == NULL) {
      // right is NULL
      newTL = replacementTL->left();
      debug_only(replacementTL->clearLeft();)
    } else {  // we have both children, so, by patriarchal convention,
              // my replacement is least node in right sub-tree
580 581
      complicated_splice = true;
      newTL = remove_tree_minimum(replacementTL->right());
D
duke 已提交
582 583 584 585 586 587 588
      assert(newTL != NULL && newTL->left() == NULL &&
             newTL->right() == NULL, "sub-tree minimum exists");
    }
    // newTL is the replacement for the (soon to be empty) node.
    // newTL may be NULL.
    // should verify; we just cleanly excised our replacement
    if (FLSVerifyDictionary) {
589
      verify_tree();
D
duke 已提交
590 591 592 593 594 595 596
    }
    // first make newTL my parent's child
    if ((parentTL = replacementTL->parent()) == NULL) {
      // newTL should be root
      assert(tl == root(), "Incorrectly replacing root");
      set_root(newTL);
      if (newTL != NULL) {
597
        newTL->clear_parent();
D
duke 已提交
598 599 600
      }
    } else if (parentTL->right() == replacementTL) {
      // replacementTL is a right child
601
      parentTL->set_right(newTL);
D
duke 已提交
602 603
    } else {                                // replacementTL is a left child
      assert(parentTL->left() == replacementTL, "should be left child");
604
      parentTL->set_left(newTL);
D
duke 已提交
605
    }
606 607
    debug_only(replacementTL->clear_parent();)
    if (complicated_splice) {  // we need newTL to get replacementTL's
D
duke 已提交
608 609 610 611 612 613
                              // two children
      assert(newTL != NULL &&
             newTL->left() == NULL && newTL->right() == NULL,
            "newTL should not have encumbrances from the past");
      // we'd like to assert as below:
      // assert(replacementTL->left() != NULL && replacementTL->right() != NULL,
614
      //       "else !complicated_splice");
D
duke 已提交
615 616 617 618 619 620
      // ... however, the above assertion is too strong because we aren't
      // guaranteed that replacementTL->right() is still NULL.
      // Recall that we removed
      // the right sub-tree minimum from replacementTL.
      // That may well have been its right
      // child! So we'll just assert half of the above:
621 622 623
      assert(replacementTL->left() != NULL, "else !complicated_splice");
      newTL->set_left(replacementTL->left());
      newTL->set_right(replacementTL->right());
D
duke 已提交
624
      debug_only(
625
        replacementTL->clear_right();
D
duke 已提交
626 627 628 629 630 631 632 633 634
        replacementTL->clearLeft();
      )
    }
    assert(replacementTL->right() == NULL &&
           replacementTL->left() == NULL &&
           replacementTL->parent() == NULL,
        "delete without encumbrances");
  }

635 636 637 638
  assert(total_size() >= retTC->size(), "Incorrect total size");
  dec_total_size(retTC->size());     // size book-keeping
  assert(total_free_blocks() > 0, "Incorrect total count");
  set_total_free_blocks(total_free_blocks() - 1);
D
duke 已提交
639 640 641 642 643

  assert(retTC != NULL, "null chunk?");
  assert(retTC->prev() == NULL && retTC->next() == NULL,
         "should return without encumbrances");
  if (FLSVerifyDictionary) {
644
    verify_tree();
D
duke 已提交
645 646
  }
  assert(!removing_only_chunk || _root == NULL, "root should be NULL");
647
  return TreeChunk<Chunk>::as_TreeChunk(retTC);
D
duke 已提交
648 649 650 651 652
}

// Remove the leftmost node (lm) in the tree and return it.
// If lm has a right child, link it to the left node of
// the parent of lm.
653
template <class Chunk>
654
TreeList<Chunk>* BinaryTreeDictionary<Chunk>::remove_tree_minimum(TreeList<Chunk>* tl) {
D
duke 已提交
655 656
  assert(tl != NULL && tl->parent() != NULL, "really need a proper sub-tree");
  // locate the subtree minimum by walking down left branches
657
  TreeList<Chunk>* curTL = tl;
D
duke 已提交
658 659 660
  for (; curTL->left() != NULL; curTL = curTL->left());
  // obviously curTL now has at most one child, a right child
  if (curTL != root()) {  // Should this test just be removed?
661
    TreeList<Chunk>* parentTL = curTL->parent();
D
duke 已提交
662
    if (parentTL->left() == curTL) { // curTL is a left child
663
      parentTL->set_left(curTL->right());
D
duke 已提交
664 665 666 667
    } else {
      // If the list tl has no left child, then curTL may be
      // the right child of parentTL.
      assert(parentTL->right() == curTL, "should be a right child");
668
      parentTL->set_right(curTL->right());
D
duke 已提交
669 670 671 672 673 674 675 676 677
    }
  } else {
    // The only use of this method would not pass the root of the
    // tree (as indicated by the assertion above that the tree list
    // has a parent) but the specification does not explicitly exclude the
    // passing of the root so accomodate it.
    set_root(NULL);
  }
  debug_only(
678 679
    curTL->clear_parent();  // Test if this needs to be cleared
    curTL->clear_right();    // recall, above, left child is already null
D
duke 已提交
680 681 682
  )
  // we just excised a (non-root) node, we should still verify all tree invariants
  if (FLSVerifyDictionary) {
683
    verify_tree();
D
duke 已提交
684 685 686 687 688 689 690 691 692 693 694 695
  }
  return curTL;
}

// Based on a simplification of the algorithm by Sleator and Tarjan (JACM 1985).
// The simplifications are the following:
// . we splay only when we delete (not when we insert)
// . we apply a single spay step per deletion/access
// By doing such partial splaying, we reduce the amount of restructuring,
// while getting a reasonably efficient search tree (we think).
// [Measurements will be needed to (in)validate this expectation.]

696
template <class Chunk>
697
void BinaryTreeDictionary<Chunk>::semi_splay_step(TreeList<Chunk>* tc) {
D
duke 已提交
698 699 700 701 702 703 704 705 706
  // apply a semi-splay step at the given node:
  // . if root, norting needs to be done
  // . if child of root, splay once
  // . else zig-zig or sig-zag depending on path from grandparent
  if (root() == tc) return;
  warning("*** Splaying not yet implemented; "
          "tree operations may be inefficient ***");
}

707
template <class Chunk>
708
void BinaryTreeDictionary<Chunk>::insert_chunk_in_tree(Chunk* fc) {
709
  TreeList<Chunk> *curTL, *prevTL;
D
duke 已提交
710 711
  size_t size = fc->size();

712
  assert(size >= BinaryTreeDictionary<Chunk>::min_tree_chunk_size, "too small to be a TreeList<Chunk>");
D
duke 已提交
713
  if (FLSVerifyDictionary) {
714
    verify_tree();
D
duke 已提交
715 716
  }

717 718
  fc->clear_next();
  fc->link_prev(NULL);
D
duke 已提交
719 720 721 722 723 724 725 726 727 728 729 730 731

  // work down from the _root, looking for insertion point
  for (prevTL = curTL = root(); curTL != NULL;) {
    if (curTL->size() == size)  // exact match
      break;
    prevTL = curTL;
    if (curTL->size() > size) { // follow left branch
      curTL = curTL->left();
    } else {                    // follow right branch
      assert(curTL->size() < size, "size inconsistency");
      curTL = curTL->right();
    }
  }
732
  TreeChunk<Chunk>* tc = TreeChunk<Chunk>::as_TreeChunk(fc);
733
  // This chunk is being returned to the binary tree.  Its embedded
734
  // TreeList<Chunk> should be unused at this point.
D
duke 已提交
735 736 737
  tc->initialize();
  if (curTL != NULL) {          // exact match
    tc->set_list(curTL);
738
    curTL->return_chunk_at_tail(tc);
D
duke 已提交
739
  } else {                     // need a new node in tree
740 741
    tc->clear_next();
    tc->link_prev(NULL);
742 743
    TreeList<Chunk>* newTL = TreeList<Chunk>::as_TreeList(tc);
    assert(((TreeChunk<Chunk>*)tc)->list() == newTL,
D
duke 已提交
744 745 746 747 748 749 750
      "List was not initialized correctly");
    if (prevTL == NULL) {      // we are the only tree node
      assert(root() == NULL, "control point invariant");
      set_root(newTL);
    } else {                   // insert under prevTL ...
      if (prevTL->size() < size) {   // am right child
        assert(prevTL->right() == NULL, "control point invariant");
751
        prevTL->set_right(newTL);
D
duke 已提交
752 753
      } else {                       // am left child
        assert(prevTL->size() > size && prevTL->left() == NULL, "cpt pt inv");
754
        prevTL->set_left(newTL);
D
duke 已提交
755 756 757 758 759
      }
    }
  }
  assert(tc->list() != NULL, "Tree list should be set");

760 761
  inc_total_size(size);
  // Method 'total_size_in_tree' walks through the every block in the
D
duke 已提交
762 763
  // tree, so it can cause significant performance loss if there are
  // many blocks in the tree
764 765
  assert(!FLSVerifyDictionary || total_size_in_tree(root()) == total_size(), "_total_size inconsistency");
  set_total_free_blocks(total_free_blocks() + 1);
D
duke 已提交
766
  if (FLSVerifyDictionary) {
767
    verify_tree();
D
duke 已提交
768 769 770
  }
}

771
template <class Chunk>
772
size_t BinaryTreeDictionary<Chunk>::max_chunk_size() const {
773 774
  FreeBlockDictionary<Chunk>::verify_par_locked();
  TreeList<Chunk>* tc = root();
D
duke 已提交
775 776 777 778 779
  if (tc == NULL) return 0;
  for (; tc->right() != NULL; tc = tc->right());
  return tc->size();
}

780
template <class Chunk>
781
size_t BinaryTreeDictionary<Chunk>::total_list_length(TreeList<Chunk>* tl) const {
D
duke 已提交
782 783 784 785
  size_t res;
  res = tl->count();
#ifdef ASSERT
  size_t cnt;
786
  Chunk* tc = tl->head();
D
duke 已提交
787 788 789 790 791 792
  for (cnt = 0; tc != NULL; tc = tc->next(), cnt++);
  assert(res == cnt, "The count is not being maintained correctly");
#endif
  return res;
}

793
template <class Chunk>
794
size_t BinaryTreeDictionary<Chunk>::total_size_in_tree(TreeList<Chunk>* tl) const {
D
duke 已提交
795 796
  if (tl == NULL)
    return 0;
797 798 799
  return (tl->size() * total_list_length(tl)) +
         total_size_in_tree(tl->left())    +
         total_size_in_tree(tl->right());
D
duke 已提交
800 801
}

802 803
template <class Chunk>
double BinaryTreeDictionary<Chunk>::sum_of_squared_block_sizes(TreeList<Chunk>* const tl) const {
D
duke 已提交
804 805 806 807
  if (tl == NULL) {
    return 0.0;
  }
  double size = (double)(tl->size());
808
  double curr = size * size * total_list_length(tl);
D
duke 已提交
809 810 811 812 813
  curr += sum_of_squared_block_sizes(tl->left());
  curr += sum_of_squared_block_sizes(tl->right());
  return curr;
}

814
template <class Chunk>
815
size_t BinaryTreeDictionary<Chunk>::total_free_blocks_in_tree(TreeList<Chunk>* tl) const {
D
duke 已提交
816 817
  if (tl == NULL)
    return 0;
818 819 820
  return total_list_length(tl) +
         total_free_blocks_in_tree(tl->left()) +
         total_free_blocks_in_tree(tl->right());
D
duke 已提交
821 822
}

823
template <class Chunk>
824 825 826 827
size_t BinaryTreeDictionary<Chunk>::num_free_blocks() const {
  assert(total_free_blocks_in_tree(root()) == total_free_blocks(),
         "_total_free_blocks inconsistency");
  return total_free_blocks();
D
duke 已提交
828 829
}

830
template <class Chunk>
831
size_t BinaryTreeDictionary<Chunk>::tree_height_helper(TreeList<Chunk>* tl) const {
D
duke 已提交
832 833
  if (tl == NULL)
    return 0;
834 835
  return 1 + MAX2(tree_height_helper(tl->left()),
                  tree_height_helper(tl->right()));
D
duke 已提交
836 837
}

838 839
template <class Chunk>
size_t BinaryTreeDictionary<Chunk>::treeHeight() const {
840
  return tree_height_helper(root());
D
duke 已提交
841 842
}

843
template <class Chunk>
844
size_t BinaryTreeDictionary<Chunk>::total_nodes_helper(TreeList<Chunk>* tl) const {
D
duke 已提交
845 846 847
  if (tl == NULL) {
    return 0;
  }
848 849
  return 1 + total_nodes_helper(tl->left()) +
    total_nodes_helper(tl->right());
D
duke 已提交
850 851
}

852
template <class Chunk>
853 854
size_t BinaryTreeDictionary<Chunk>::total_nodes_in_tree(TreeList<Chunk>* tl) const {
  return total_nodes_helper(root());
D
duke 已提交
855 856
}

857
template <class Chunk>
858 859
void BinaryTreeDictionary<Chunk>::dict_census_udpate(size_t size, bool split, bool birth){
  TreeList<Chunk>* nd = find_list(size);
D
duke 已提交
860 861 862
  if (nd) {
    if (split) {
      if (birth) {
863
        nd->increment_split_births();
D
duke 已提交
864 865
        nd->increment_surplus();
      }  else {
866
        nd->increment_split_deaths();
D
duke 已提交
867 868 869 870
        nd->decrement_surplus();
      }
    } else {
      if (birth) {
871
        nd->increment_coal_births();
D
duke 已提交
872 873
        nd->increment_surplus();
      } else {
874
        nd->increment_coal_deaths();
D
duke 已提交
875 876 877 878 879 880 881 882 883 884 885
        nd->decrement_surplus();
      }
    }
  }
  // A list for this size may not be found (nd == 0) if
  //   This is a death where the appropriate list is now
  //     empty and has been removed from the list.
  //   This is a birth associated with a LinAB.  The chunk
  //     for the LinAB is not in the dictionary.
}

886
template <class Chunk>
887
bool BinaryTreeDictionary<Chunk>::coal_dict_over_populated(size_t size) {
888 889
  if (FLSAlwaysCoalesceLarge) return true;

890
  TreeList<Chunk>* list_of_size = find_list(size);
D
duke 已提交
891
  // None of requested size implies overpopulated.
892 893
  return list_of_size == NULL || list_of_size->coal_desired() <= 0 ||
         list_of_size->count() > list_of_size->coal_desired();
D
duke 已提交
894 895 896 897 898 899 900 901
}

// Closures for walking the binary tree.
//   do_list() walks the free list in a node applying the closure
//     to each free chunk in the list
//   do_tree() walks the nodes in the binary tree applying do_list()
//     to each list at each node.

902
template <class Chunk>
D
duke 已提交
903 904
class TreeCensusClosure : public StackObj {
 protected:
905
  virtual void do_list(FreeList<Chunk>* fl) = 0;
D
duke 已提交
906
 public:
907
  virtual void do_tree(TreeList<Chunk>* tl) = 0;
D
duke 已提交
908 909
};

910 911
template <class Chunk>
class AscendTreeCensusClosure : public TreeCensusClosure<Chunk> {
912
  using TreeCensusClosure<Chunk>::do_list;
D
duke 已提交
913
 public:
914
  void do_tree(TreeList<Chunk>* tl) {
D
duke 已提交
915 916 917 918 919 920 921 922
    if (tl != NULL) {
      do_tree(tl->left());
      do_list(tl);
      do_tree(tl->right());
    }
  }
};

923 924
template <class Chunk>
class DescendTreeCensusClosure : public TreeCensusClosure<Chunk> {
925
  using TreeCensusClosure<Chunk>::do_list;
D
duke 已提交
926
 public:
927
  void do_tree(TreeList<Chunk>* tl) {
D
duke 已提交
928 929 930 931 932 933 934 935 936 937
    if (tl != NULL) {
      do_tree(tl->right());
      do_list(tl);
      do_tree(tl->left());
    }
  }
};

// For each list in the tree, calculate the desired, desired
// coalesce, count before sweep, and surplus before sweep.
938 939
template <class Chunk>
class BeginSweepClosure : public AscendTreeCensusClosure<Chunk> {
D
duke 已提交
940 941 942
  double _percentage;
  float _inter_sweep_current;
  float _inter_sweep_estimate;
943
  float _intra_sweep_estimate;
D
duke 已提交
944 945 946

 public:
  BeginSweepClosure(double p, float inter_sweep_current,
947 948
                              float inter_sweep_estimate,
                              float intra_sweep_estimate) :
D
duke 已提交
949 950
   _percentage(p),
   _inter_sweep_current(inter_sweep_current),
951 952
   _inter_sweep_estimate(inter_sweep_estimate),
   _intra_sweep_estimate(intra_sweep_estimate) { }
D
duke 已提交
953

954
  void do_list(FreeList<Chunk>* fl) {
D
duke 已提交
955
    double coalSurplusPercent = _percentage;
956
    fl->compute_desired(_inter_sweep_current, _inter_sweep_estimate, _intra_sweep_estimate);
957 958 959
    fl->set_coal_desired((ssize_t)((double)fl->desired() * coalSurplusPercent));
    fl->set_before_sweep(fl->count());
    fl->set_bfr_surp(fl->surplus());
D
duke 已提交
960 961 962 963 964 965 966
  }
};

// Used to search the tree until a condition is met.
// Similar to TreeCensusClosure but searches the
// tree and returns promptly when found.

967
template <class Chunk>
D
duke 已提交
968 969
class TreeSearchClosure : public StackObj {
 protected:
970
  virtual bool do_list(FreeList<Chunk>* fl) = 0;
D
duke 已提交
971
 public:
972
  virtual bool do_tree(TreeList<Chunk>* tl) = 0;
D
duke 已提交
973 974 975
};

#if 0 //  Don't need this yet but here for symmetry.
976
template <class Chunk>
D
duke 已提交
977 978
class AscendTreeSearchClosure : public TreeSearchClosure {
 public:
979
  bool do_tree(TreeList<Chunk>* tl) {
D
duke 已提交
980 981 982 983 984 985 986 987 988 989
    if (tl != NULL) {
      if (do_tree(tl->left())) return true;
      if (do_list(tl)) return true;
      if (do_tree(tl->right())) return true;
    }
    return false;
  }
};
#endif

990 991
template <class Chunk>
class DescendTreeSearchClosure : public TreeSearchClosure<Chunk> {
992
  using TreeSearchClosure<Chunk>::do_list;
D
duke 已提交
993
 public:
994
  bool do_tree(TreeList<Chunk>* tl) {
D
duke 已提交
995 996 997 998 999 1000 1001 1002 1003 1004 1005
    if (tl != NULL) {
      if (do_tree(tl->right())) return true;
      if (do_list(tl)) return true;
      if (do_tree(tl->left())) return true;
    }
    return false;
  }
};

// Searches the tree for a chunk that ends at the
// specified address.
1006 1007
template <class Chunk>
class EndTreeSearchClosure : public DescendTreeSearchClosure<Chunk> {
D
duke 已提交
1008
  HeapWord* _target;
1009
  Chunk* _found;
D
duke 已提交
1010 1011 1012

 public:
  EndTreeSearchClosure(HeapWord* target) : _target(target), _found(NULL) {}
1013 1014
  bool do_list(FreeList<Chunk>* fl) {
    Chunk* item = fl->head();
D
duke 已提交
1015 1016 1017 1018 1019 1020 1021 1022 1023
    while (item != NULL) {
      if (item->end() == _target) {
        _found = item;
        return true;
      }
      item = item->next();
    }
    return false;
  }
1024
  Chunk* found() { return _found; }
D
duke 已提交
1025 1026
};

1027 1028 1029
template <class Chunk>
Chunk* BinaryTreeDictionary<Chunk>::find_chunk_ends_at(HeapWord* target) const {
  EndTreeSearchClosure<Chunk> etsc(target);
D
duke 已提交
1030 1031 1032 1033 1034 1035
  bool found_target = etsc.do_tree(root());
  assert(found_target || etsc.found() == NULL, "Consistency check");
  assert(!found_target || etsc.found() != NULL, "Consistency check");
  return etsc.found();
}

1036
template <class Chunk>
1037
void BinaryTreeDictionary<Chunk>::begin_sweep_dict_census(double coalSurplusPercent,
1038
  float inter_sweep_current, float inter_sweep_estimate, float intra_sweep_estimate) {
1039
  BeginSweepClosure<Chunk> bsc(coalSurplusPercent, inter_sweep_current,
1040 1041
                                            inter_sweep_estimate,
                                            intra_sweep_estimate);
D
duke 已提交
1042 1043 1044 1045 1046
  bsc.do_tree(root());
}

// Closures and methods for calculating total bytes returned to the
// free lists in the tree.
1047 1048 1049
#ifndef PRODUCT
template <class Chunk>
class InitializeDictReturnedBytesClosure : public AscendTreeCensusClosure<Chunk> {
D
duke 已提交
1050
   public:
1051
  void do_list(FreeList<Chunk>* fl) {
1052
    fl->set_returned_bytes(0);
D
duke 已提交
1053
  }
1054
};
D
duke 已提交
1055

1056
template <class Chunk>
1057
void BinaryTreeDictionary<Chunk>::initialize_dict_returned_bytes() {
1058 1059 1060
  InitializeDictReturnedBytesClosure<Chunk> idrb;
  idrb.do_tree(root());
}
D
duke 已提交
1061

1062 1063
template <class Chunk>
class ReturnedBytesClosure : public AscendTreeCensusClosure<Chunk> {
1064
  size_t _dict_returned_bytes;
1065
 public:
1066
  ReturnedBytesClosure() { _dict_returned_bytes = 0; }
1067
  void do_list(FreeList<Chunk>* fl) {
1068
    _dict_returned_bytes += fl->returned_bytes();
D
duke 已提交
1069
  }
1070
  size_t dict_returned_bytes() { return _dict_returned_bytes; }
1071
};
D
duke 已提交
1072

1073
template <class Chunk>
1074
size_t BinaryTreeDictionary<Chunk>::sum_dict_returned_bytes() {
1075 1076 1077
  ReturnedBytesClosure<Chunk> rbc;
  rbc.do_tree(root());

1078
  return rbc.dict_returned_bytes();
1079
}
D
duke 已提交
1080

1081 1082 1083 1084 1085 1086 1087 1088
// Count the number of entries in the tree.
template <class Chunk>
class treeCountClosure : public DescendTreeCensusClosure<Chunk> {
 public:
  uint count;
  treeCountClosure(uint c) { count = c; }
  void do_list(FreeList<Chunk>* fl) {
    count++;
D
duke 已提交
1089
  }
1090 1091 1092
};

template <class Chunk>
1093
size_t BinaryTreeDictionary<Chunk>::total_count() {
1094 1095 1096 1097 1098
  treeCountClosure<Chunk> ctc(0);
  ctc.do_tree(root());
  return ctc.count;
}
#endif // PRODUCT
D
duke 已提交
1099 1100

// Calculate surpluses for the lists in the tree.
1101 1102
template <class Chunk>
class setTreeSurplusClosure : public AscendTreeCensusClosure<Chunk> {
D
duke 已提交
1103 1104 1105
  double percentage;
 public:
  setTreeSurplusClosure(double v) { percentage = v; }
1106
  void do_list(FreeList<Chunk>* fl) {
D
duke 已提交
1107 1108 1109 1110 1111 1112
    double splitSurplusPercent = percentage;
    fl->set_surplus(fl->count() -
                   (ssize_t)((double)fl->desired() * splitSurplusPercent));
  }
};

1113
template <class Chunk>
1114
void BinaryTreeDictionary<Chunk>::set_tree_surplus(double splitSurplusPercent) {
1115
  setTreeSurplusClosure<Chunk> sts(splitSurplusPercent);
D
duke 已提交
1116 1117 1118 1119
  sts.do_tree(root());
}

// Set hints for the lists in the tree.
1120 1121
template <class Chunk>
class setTreeHintsClosure : public DescendTreeCensusClosure<Chunk> {
D
duke 已提交
1122 1123 1124
  size_t hint;
 public:
  setTreeHintsClosure(size_t v) { hint = v; }
1125
  void do_list(FreeList<Chunk>* fl) {
D
duke 已提交
1126 1127 1128 1129 1130 1131 1132 1133 1134
    fl->set_hint(hint);
    assert(fl->hint() == 0 || fl->hint() > fl->size(),
      "Current hint is inconsistent");
    if (fl->surplus() > 0) {
      hint = fl->size();
    }
  }
};

1135
template <class Chunk>
1136
void BinaryTreeDictionary<Chunk>::set_tree_hints(void) {
1137
  setTreeHintsClosure<Chunk> sth(0);
D
duke 已提交
1138 1139 1140 1141
  sth.do_tree(root());
}

// Save count before previous sweep and splits and coalesces.
1142 1143 1144
template <class Chunk>
class clearTreeCensusClosure : public AscendTreeCensusClosure<Chunk> {
  void do_list(FreeList<Chunk>* fl) {
1145 1146 1147 1148 1149
    fl->set_prev_sweep(fl->count());
    fl->set_coal_births(0);
    fl->set_coal_deaths(0);
    fl->set_split_births(0);
    fl->set_split_deaths(0);
D
duke 已提交
1150 1151 1152
  }
};

1153
template <class Chunk>
1154
void BinaryTreeDictionary<Chunk>::clear_tree_census(void) {
1155
  clearTreeCensusClosure<Chunk> ctc;
D
duke 已提交
1156 1157 1158 1159
  ctc.do_tree(root());
}

// Do reporting and post sweep clean up.
1160
template <class Chunk>
1161
void BinaryTreeDictionary<Chunk>::end_sweep_dict_census(double splitSurplusPercent) {
D
duke 已提交
1162
  // Does walking the tree 3 times hurt?
1163 1164
  set_tree_surplus(splitSurplusPercent);
  set_tree_hints();
D
duke 已提交
1165
  if (PrintGC && Verbose) {
1166
    report_statistics();
D
duke 已提交
1167
  }
1168
  clear_tree_census();
D
duke 已提交
1169 1170 1171
}

// Print summary statistics
1172
template <class Chunk>
1173
void BinaryTreeDictionary<Chunk>::report_statistics() const {
1174
  FreeBlockDictionary<Chunk>::verify_par_locked();
D
duke 已提交
1175 1176
  gclog_or_tty->print("Statistics for BinaryTreeDictionary:\n"
         "------------------------------------\n");
1177 1178 1179 1180 1181 1182 1183
  size_t total_size = total_chunk_size(debug_only(NULL));
  size_t    free_blocks = num_free_blocks();
  gclog_or_tty->print("Total Free Space: %d\n", total_size);
  gclog_or_tty->print("Max   Chunk Size: %d\n", max_chunk_size());
  gclog_or_tty->print("Number of Blocks: %d\n", free_blocks);
  if (free_blocks > 0) {
    gclog_or_tty->print("Av.  Block  Size: %d\n", total_size/free_blocks);
D
duke 已提交
1184 1185 1186 1187 1188 1189 1190
  }
  gclog_or_tty->print("Tree      Height: %d\n", treeHeight());
}

// Print census information - counts, births, deaths, etc.
// for each list in the tree.  Also print some summary
// information.
1191 1192
template <class Chunk>
class PrintTreeCensusClosure : public AscendTreeCensusClosure<Chunk> {
1193
  int _print_line;
1194
  size_t _total_free;
1195
  FreeList<Chunk> _total;
D
duke 已提交
1196 1197

 public:
1198
  PrintTreeCensusClosure() {
1199
    _print_line = 0;
1200
    _total_free = 0;
D
duke 已提交
1201
  }
1202
  FreeList<Chunk>* total() { return &_total; }
1203
  size_t total_free() { return _total_free; }
1204
  void do_list(FreeList<Chunk>* fl) {
1205
    if (++_print_line >= 40) {
1206
      FreeList<Chunk>::print_labels_on(gclog_or_tty, "size");
1207 1208 1209
      _print_line = 0;
    }
    fl->print_on(gclog_or_tty);
1210
    _total_free +=            fl->count()            * fl->size()        ;
1211
    total()->set_count(      total()->count()       + fl->count()      );
1212 1213
    total()->set_bfr_surp(    total()->bfr_surp()     + fl->bfr_surp()    );
    total()->set_surplus(    total()->split_deaths() + fl->surplus()    );
1214
    total()->set_desired(    total()->desired()     + fl->desired()    );
1215 1216 1217 1218 1219 1220
    total()->set_prev_sweep(  total()->prev_sweep()   + fl->prev_sweep()  );
    total()->set_before_sweep(total()->before_sweep() + fl->before_sweep());
    total()->set_coal_births( total()->coal_births()  + fl->coal_births() );
    total()->set_coal_deaths( total()->coal_deaths()  + fl->coal_deaths() );
    total()->set_split_births(total()->split_births() + fl->split_births());
    total()->set_split_deaths(total()->split_deaths() + fl->split_deaths());
D
duke 已提交
1221 1222 1223
  }
};

1224
template <class Chunk>
1225
void BinaryTreeDictionary<Chunk>::print_dict_census(void) const {
D
duke 已提交
1226 1227

  gclog_or_tty->print("\nBinaryTree\n");
1228 1229
  FreeList<Chunk>::print_labels_on(gclog_or_tty, "size");
  PrintTreeCensusClosure<Chunk> ptc;
D
duke 已提交
1230 1231
  ptc.do_tree(root());

1232 1233
  FreeList<Chunk>* total = ptc.total();
  FreeList<Chunk>::print_labels_on(gclog_or_tty, " ");
1234
  total->print_on(gclog_or_tty, "TOTAL\t");
D
duke 已提交
1235
  gclog_or_tty->print(
1236
              "total_free(words): " SIZE_FORMAT_W(16)
1237
              " growth: %8.5f  deficit: %8.5f\n",
1238 1239 1240 1241
              ptc.total_free(),
              (double)(total->split_births() + total->coal_births()
                     - total->split_deaths() - total->coal_deaths())
              /(total->prev_sweep() != 0 ? (double)total->prev_sweep() : 1.0),
1242 1243
             (double)(total->desired() - total->count())
             /(total->desired() != 0 ? (double)total->desired() : 1.0));
D
duke 已提交
1244 1245
}

1246 1247
template <class Chunk>
class PrintFreeListsClosure : public AscendTreeCensusClosure<Chunk> {
1248 1249 1250 1251 1252 1253 1254 1255
  outputStream* _st;
  int _print_line;

 public:
  PrintFreeListsClosure(outputStream* st) {
    _st = st;
    _print_line = 0;
  }
1256
  void do_list(FreeList<Chunk>* fl) {
1257
    if (++_print_line >= 40) {
1258
      FreeList<Chunk>::print_labels_on(_st, "size");
1259 1260 1261 1262
      _print_line = 0;
    }
    fl->print_on(gclog_or_tty);
    size_t sz = fl->size();
1263
    for (Chunk* fc = fl->head(); fc != NULL;
1264 1265 1266 1267 1268 1269 1270 1271
         fc = fc->next()) {
      _st->print_cr("\t[" PTR_FORMAT "," PTR_FORMAT ")  %s",
                    fc, (HeapWord*)fc + sz,
                    fc->cantCoalesce() ? "\t CC" : "");
    }
  }
};

1272 1273
template <class Chunk>
void BinaryTreeDictionary<Chunk>::print_free_lists(outputStream* st) const {
1274

1275 1276
  FreeList<Chunk>::print_labels_on(st, "size");
  PrintFreeListsClosure<Chunk> pflc(st);
1277 1278 1279
  pflc.do_tree(root());
}

D
duke 已提交
1280 1281 1282 1283
// Verify the following tree invariants:
// . _root has no parent
// . parent and child point to each other
// . each node's key correctly related to that of its child(ren)
1284
template <class Chunk>
1285 1286 1287
void BinaryTreeDictionary<Chunk>::verify_tree() const {
  guarantee(root() == NULL || total_free_blocks() == 0 ||
    total_size() != 0, "_total_size should't be 0?");
D
duke 已提交
1288
  guarantee(root() == NULL || root()->parent() == NULL, "_root shouldn't have parent");
1289
  verify_tree_helper(root());
D
duke 已提交
1290 1291
}

1292
template <class Chunk>
1293
size_t BinaryTreeDictionary<Chunk>::verify_prev_free_ptrs(TreeList<Chunk>* tl) {
D
duke 已提交
1294
  size_t ct = 0;
1295
  for (Chunk* curFC = tl->head(); curFC != NULL; curFC = curFC->next()) {
D
duke 已提交
1296
    ct++;
1297
    assert(curFC->prev() == NULL || curFC->prev()->is_free(),
D
duke 已提交
1298 1299 1300 1301 1302 1303 1304 1305
      "Chunk should be free");
  }
  return ct;
}

// Note: this helper is recursive rather than iterative, so use with
// caution on very deep trees; and watch out for stack overflow errors;
// In general, to be used only for debugging.
1306
template <class Chunk>
1307
void BinaryTreeDictionary<Chunk>::verify_tree_helper(TreeList<Chunk>* tl) const {
D
duke 已提交
1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
  if (tl == NULL)
    return;
  guarantee(tl->size() != 0, "A list must has a size");
  guarantee(tl->left()  == NULL || tl->left()->parent()  == tl,
         "parent<-/->left");
  guarantee(tl->right() == NULL || tl->right()->parent() == tl,
         "parent<-/->right");;
  guarantee(tl->left() == NULL  || tl->left()->size()    <  tl->size(),
         "parent !> left");
  guarantee(tl->right() == NULL || tl->right()->size()   >  tl->size(),
         "parent !< left");
1319
  guarantee(tl->head() == NULL || tl->head()->is_free(), "!Free");
D
duke 已提交
1320 1321 1322 1323 1324 1325
  guarantee(tl->head() == NULL || tl->head_as_TreeChunk()->list() == tl,
    "list inconsistency");
  guarantee(tl->count() > 0 || (tl->head() == NULL && tl->tail() == NULL),
    "list count is inconsistent");
  guarantee(tl->count() > 1 || tl->head() == tl->tail(),
    "list is incorrectly constructed");
1326
  size_t count = verify_prev_free_ptrs(tl);
D
duke 已提交
1327 1328
  guarantee(count == (size_t)tl->count(), "Node count is incorrect");
  if (tl->head() != NULL) {
1329
    tl->head_as_TreeChunk()->verify_tree_chunk_list();
D
duke 已提交
1330
  }
1331 1332
  verify_tree_helper(tl->left());
  verify_tree_helper(tl->right());
D
duke 已提交
1333 1334
}

1335 1336
template <class Chunk>
void BinaryTreeDictionary<Chunk>::verify() const {
1337 1338
  verify_tree();
  guarantee(total_size() == total_size_in_tree(root()), "Total Size inconsistency");
D
duke 已提交
1339
}
1340 1341 1342 1343 1344 1345 1346

#ifndef SERIALGC
// Explicitly instantiate these types for FreeChunk.
template class BinaryTreeDictionary<FreeChunk>;
template class TreeChunk<FreeChunk>;
template class TreeList<FreeChunk>;
#endif // SERIALGC