src/hotspot/share/memory/binaryTreeDictionary.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 50193 49c3e91c424f
child 53547 9d1a788dea3d
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50193
diff changeset
     2
 * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4574
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50193
diff changeset
    25
#ifndef SHARE_MEMORY_BINARYTREEDICTIONARY_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50193
diff changeset
    26
#define SHARE_MEMORY_BINARYTREEDICTIONARY_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
    28
#include "memory/freeList.hpp"
50193
49c3e91c424f 8176808: Split up metaspace.cpp
stuefe
parents: 49708
diff changeset
    29
#include "memory/memRegion.hpp"
49c3e91c424f 8176808: Split up metaspace.cpp
stuefe
parents: 49708
diff changeset
    30
49c3e91c424f 8176808: Split up metaspace.cpp
stuefe
parents: 49708
diff changeset
    31
class Mutex;
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
 * A binary tree based search structure for free blocks.
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
    35
 * This is currently used in the Concurrent Mark&Sweep implementation, but
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
    36
 * will be used for free block management for metadata.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// A TreeList is a FreeList which can be used to maintain a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// binary tree of free lists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
22884
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    42
template <class Chunk_t, class FreeList_t> class TreeChunk;
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    43
template <class Chunk_t, class FreeList_t> class BinaryTreeDictionary;
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    44
template <class Chunk_t, class FreeList_t> class AscendTreeCensusClosure;
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    45
template <class Chunk_t, class FreeList_t> class DescendTreeCensusClosure;
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    46
template <class Chunk_t, class FreeList_t> class DescendTreeSearchClosure;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
22884
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    48
template <class Chunk_t, class FreeList_t>
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    49
class TreeList : public FreeList_t {
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    50
  friend class TreeChunk<Chunk_t, FreeList_t>;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    51
  friend class BinaryTreeDictionary<Chunk_t, FreeList_t>;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    52
  friend class AscendTreeCensusClosure<Chunk_t, FreeList_t>;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    53
  friend class DescendTreeCensusClosure<Chunk_t, FreeList_t>;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    54
  friend class DescendTreeSearchClosure<Chunk_t, FreeList_t>;
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
    55
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    56
  TreeList<Chunk_t, FreeList_t>* _parent;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    57
  TreeList<Chunk_t, FreeList_t>* _left;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    58
  TreeList<Chunk_t, FreeList_t>* _right;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
 protected:
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
    61
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    62
  TreeList<Chunk_t, FreeList_t>* parent() const { return _parent; }
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    63
  TreeList<Chunk_t, FreeList_t>* left()   const { return _left;   }
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    64
  TreeList<Chunk_t, FreeList_t>* right()  const { return _right;  }
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
    65
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    66
  // Wrapper on call to base class, to get the template to compile.
22884
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    67
  Chunk_t* head() const { return FreeList_t::head(); }
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    68
  Chunk_t* tail() const { return FreeList_t::tail(); }
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    69
  void set_head(Chunk_t* head) { FreeList_t::set_head(head); }
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    70
  void set_tail(Chunk_t* tail) { FreeList_t::set_tail(tail); }
12933
0b79a2cea769 7172226: HotSpot fails to build with GCC 4.7 because of stricter c++ argument dependent lookup
mgerdin
parents: 12509
diff changeset
    71
22884
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    72
  size_t size() const { return FreeList_t::size(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // Accessors for links in tree.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    76
  void set_left(TreeList<Chunk_t, FreeList_t>* tl) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    _left   = tl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    if (tl != NULL)
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
    79
      tl->set_parent(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  }
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    81
  void set_right(TreeList<Chunk_t, FreeList_t>* tl) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    _right  = tl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    if (tl != NULL)
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
    84
      tl->set_parent(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    86
  void set_parent(TreeList<Chunk_t, FreeList_t>* tl)  { _parent = tl;   }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    88
  void clear_left()               { _left = NULL;   }
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
    89
  void clear_right()              { _right = NULL;  }
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
    90
  void clear_parent()             { _parent = NULL; }
22884
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
    91
  void initialize()               { clear_left(); clear_right(), clear_parent(); FreeList_t::initialize(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // For constructing a TreeList from a Tree chunk or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // address and size.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    95
  TreeList();
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    96
  static TreeList<Chunk_t, FreeList_t>*
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    97
          as_TreeList(TreeChunk<Chunk_t, FreeList_t>* tc);
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
    98
  static TreeList<Chunk_t, FreeList_t>* as_TreeList(HeapWord* addr, size_t size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // Returns the head of the free list as a pointer to a TreeChunk.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   101
  TreeChunk<Chunk_t, FreeList_t>* head_as_TreeChunk();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Returns the first available chunk in the free list as a pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // to a TreeChunk.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   105
  TreeChunk<Chunk_t, FreeList_t>* first_available();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   107
  // Returns the block with the largest heap address amongst
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   108
  // those in the list for this size; potentially slow and expensive,
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   109
  // use with caution!
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   110
  TreeChunk<Chunk_t, FreeList_t>* largest_address();
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   111
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   112
  TreeList<Chunk_t, FreeList_t>* get_better_list(
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   113
    BinaryTreeDictionary<Chunk_t, FreeList_t>* dictionary);
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   114
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   115
  // remove_chunk_replace_if_needed() removes the given "tc" from the TreeList.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // If "tc" is the first chunk in the list, it is also the
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   117
  // TreeList that is the node in the tree.  remove_chunk_replace_if_needed()
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // returns the possibly replaced TreeList* for the node in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // the tree.  It also updates the parent of the original
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // node to point to the new node.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   121
  TreeList<Chunk_t, FreeList_t>* remove_chunk_replace_if_needed(TreeChunk<Chunk_t, FreeList_t>* tc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // See FreeList.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   123
  void return_chunk_at_head(TreeChunk<Chunk_t, FreeList_t>* tc);
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   124
  void return_chunk_at_tail(TreeChunk<Chunk_t, FreeList_t>* tc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   127
// A TreeChunk is a subclass of a Chunk that additionally
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
// maintains a pointer to the free list on which it is currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
// linked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// A TreeChunk is also used as a node in the binary tree.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
// allows the binary tree to be maintained without any additional
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// storage (the free chunks are used).  In a binary tree the first
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// chunk in the free list is also the tree node.  Note that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
// TreeChunk has an embedded TreeList for this purpose.  Because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
// the first chunk in the list is distinguished in this fashion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
// (also is the node in the tree), it is the last chunk to be found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
// on the free list for a node in the tree and is only removed if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
// it is the last chunk on the free list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
22884
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
   140
template <class Chunk_t, class FreeList_t>
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   141
class TreeChunk : public Chunk_t {
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   142
  friend class TreeList<Chunk_t, FreeList_t>;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   143
  TreeList<Chunk_t, FreeList_t>* _list;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   144
  TreeList<Chunk_t, FreeList_t> _embedded_list;  // if non-null, this chunk is on _list
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   145
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   146
  static size_t _min_tree_chunk_size;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   147
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
 protected:
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   149
  TreeList<Chunk_t, FreeList_t>* embedded_list() const { return (TreeList<Chunk_t, FreeList_t>*) &_embedded_list; }
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   150
  void set_embedded_list(TreeList<Chunk_t, FreeList_t>* v) { _embedded_list = *v; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
 public:
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   152
  TreeList<Chunk_t, FreeList_t>* list() { return _list; }
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   153
  void set_list(TreeList<Chunk_t, FreeList_t>* v) { _list = v; }
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   154
  static TreeChunk<Chunk_t, FreeList_t>* as_TreeChunk(Chunk_t* fc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // Initialize fields in a TreeChunk that should be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // initialized when the TreeChunk is being added to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // a free list in the tree.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  void initialize() { embedded_list()->initialize(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   160
  Chunk_t* next() const { return Chunk_t::next(); }
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   161
  Chunk_t* prev() const { return Chunk_t::prev(); }
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   162
  size_t size() const volatile { return Chunk_t::size(); }
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   163
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35061
diff changeset
   164
  static size_t min_size();
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   165
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // debugging
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   167
  void verify_tree_chunk_list() const;
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   168
  void assert_is_mangled() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35061
diff changeset
   171
template <class Chunk_t, class FreeList_t>
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35061
diff changeset
   172
size_t TreeChunk<Chunk_t, FreeList_t>::_min_tree_chunk_size = sizeof(TreeChunk<Chunk_t, FreeList_t>)/HeapWordSize;
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35061
diff changeset
   173
template <class Chunk_t, class FreeList_t>
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35061
diff changeset
   174
size_t TreeChunk<Chunk_t, FreeList_t>::min_size() { return _min_tree_chunk_size; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
22884
5cadaf2c3f32 8034171: Remove use of template template parameters from binaryTreeDictionary.
goetz
parents: 22551
diff changeset
   176
template <class Chunk_t, class FreeList_t>
46674
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   177
class BinaryTreeDictionary: public CHeapObj<mtGC> {
578
862a85ed20db 6670684: 4/5 SA command universe did not print out CMS space information
dcubed
parents: 1
diff changeset
   178
  friend class VMStructs;
49708
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   179
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   180
 protected:
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   181
  size_t     _total_size;
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   182
  size_t     _total_free_blocks;
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   183
  TreeList<Chunk_t, FreeList_t>* _root;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // private accessors
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   186
  void set_total_size(size_t v) { _total_size = v; }
46674
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   187
  void inc_total_size(size_t v);
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   188
  void dec_total_size(size_t v);
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   189
  void set_total_free_blocks(size_t v) { _total_free_blocks = v; }
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   190
  TreeList<Chunk_t, FreeList_t>* root() const { return _root; }
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   191
  void set_root(TreeList<Chunk_t, FreeList_t>* v) { _root = v; }
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   192
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   193
  // This field is added and can be set to point to the
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   194
  // the Mutex used to synchronize access to the
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   195
  // dictionary so that assertion checking can be done.
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   196
  // For example it is set to point to _parDictionaryAllocLock.
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   197
  NOT_PRODUCT(Mutex* _lock;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // Remove a chunk of size "size" or larger from the tree and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // return it.  If the chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // is the last chunk of that size, remove the node for that size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // from the tree.
46674
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   203
  TreeChunk<Chunk_t, FreeList_t>* get_chunk_from_tree(size_t size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // Remove this chunk from the tree.  If the removal results
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // in an empty list in the tree, remove the empty list.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   206
  TreeChunk<Chunk_t, FreeList_t>* remove_chunk_from_tree(TreeChunk<Chunk_t, FreeList_t>* tc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // Remove the node in the trees starting at tl that has the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // minimum value and return it.  Repair the tree as needed.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   209
  TreeList<Chunk_t, FreeList_t>* remove_tree_minimum(TreeList<Chunk_t, FreeList_t>* tl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // Add this free chunk to the tree.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   211
  void       insert_chunk_in_tree(Chunk_t* freeChunk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
 public:
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   213
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   214
  // Return a list of the specified size or NULL from the tree.
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   215
  // The list is not removed from the tree.
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   216
  TreeList<Chunk_t, FreeList_t>* find_list (size_t size) const;
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   217
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   218
  void       verify_tree() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // verify that the given chunk is in the tree.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   220
  bool       verify_chunk_in_free_list(Chunk_t* tc) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
 private:
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   222
  void          verify_tree_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   223
  static size_t verify_prev_free_ptrs(TreeList<Chunk_t, FreeList_t>* tl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // Returns the total number of chunks in the list.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   226
  size_t     total_list_length(TreeList<Chunk_t, FreeList_t>* tl) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Returns the total number of words in the chunks in the tree
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // starting at "tl".
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   229
  size_t     total_size_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // Returns the sum of the square of the size of each block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // in the tree starting at "tl".
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   232
  double     sum_of_squared_block_sizes(TreeList<Chunk_t, FreeList_t>* const tl) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // Returns the total number of free blocks in the tree starting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // at "tl".
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   235
  size_t     total_free_blocks_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   236
  size_t     num_free_blocks()  const;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   237
  size_t     tree_height() const;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   238
  size_t     tree_height_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   239
  size_t     total_nodes_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const;
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   240
  size_t     total_nodes_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // Constructor
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   244
  BinaryTreeDictionary() :
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   245
    _total_size(0), _total_free_blocks(0), _root(0) {}
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   246
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   247
  BinaryTreeDictionary(MemRegion mr);
12507
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   248
6182ca66bc7b 7131629: Generalize the CMS free list code
jmasa
parents: 7397
diff changeset
   249
  // Public accessors
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   250
  size_t total_size() const { return _total_size; }
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   251
  size_t total_free_blocks() const { return _total_free_blocks; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // Reset the dictionary to the initial conditions with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // a single free chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  void       reset(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  void       reset(HeapWord* addr, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // Reset the dictionary to be empty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  void       reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // Return a chunk of size "size" or greater from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // the tree.
46674
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   262
  Chunk_t* get_chunk(size_t size) {
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   263
    verify_par_locked();
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   264
    Chunk_t* res = get_chunk_from_tree(size);
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   265
    assert(res == NULL || res->is_free(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
           "Should be returning a free chunk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   270
  void return_chunk(Chunk_t* chunk) {
46674
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   271
    verify_par_locked();
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   272
    insert_chunk_in_tree(chunk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   275
  void remove_chunk(Chunk_t* chunk) {
46674
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   276
    verify_par_locked();
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   277
    remove_chunk_from_tree((TreeChunk<Chunk_t, FreeList_t>*)chunk);
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   278
    assert(chunk->is_free(), "Should still be a free chunk");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   281
  size_t     max_chunk_size() const;
50193
49c3e91c424f 8176808: Split up metaspace.cpp
stuefe
parents: 49708
diff changeset
   282
  inline size_t total_chunk_size(debug_only(const Mutex* lock)) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   284
  size_t     min_size() const {
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   285
    return TreeChunk<Chunk_t, FreeList_t>::min_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  double     sum_of_squared_block_sizes() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    return sum_of_squared_block_sizes(root());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   292
  Chunk_t* find_chunk_ends_at(HeapWord* target) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  // Return the largest free chunk in the tree.
14123
944e56f74fba 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 13728
diff changeset
   295
  Chunk_t* find_largest_dict() const;
49708
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   296
4574
b2d5b0975515 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 670
diff changeset
   297
  void       print_free_lists(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   299
  // For debugging.  Returns the sum of the _returned_bytes for
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // all lists in the tree.
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   301
  size_t     sum_dict_returned_bytes()     PRODUCT_RETURN0;
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   302
  // Sets the _returned_bytes for all the lists in the tree to zero.
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   303
  void       initialize_dict_returned_bytes()      PRODUCT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // For debugging.  Return the total number of chunks in the dictionary.
12509
6228e2085074 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 12507
diff changeset
   305
  size_t     total_count()       PRODUCT_RETURN0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 22884
diff changeset
   307
  void       report_statistics(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  void       verify() const;
46674
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   310
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   311
  Mutex*     par_lock()                const PRODUCT_RETURN0;
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   312
  void       set_par_lock(Mutex* lock)       PRODUCT_RETURN;
a9e42ff6158f 8183923: Get rid of FreeBlockDictionary and dithering
mgerdin
parents: 46630
diff changeset
   313
  void       verify_par_locked()       const PRODUCT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   315
49708
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   316
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   317
// Closures for walking the binary tree.
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   318
//   do_list() walks the free list in a node applying the closure
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   319
//     to each free chunk in the list
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   320
//   do_tree() walks the nodes in the binary tree applying do_list()
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   321
//     to each list at each node.
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   322
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   323
template <class Chunk_t, class FreeList_t>
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   324
class TreeCensusClosure : public StackObj {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   325
 protected:
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   326
  virtual void do_list(FreeList_t* fl) = 0;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   327
 public:
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   328
  virtual void do_tree(TreeList<Chunk_t, FreeList_t>* tl) = 0;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   329
};
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   330
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   331
template <class Chunk_t, class FreeList_t>
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   332
class AscendTreeCensusClosure : public TreeCensusClosure<Chunk_t, FreeList_t> {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   333
 public:
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   334
  void do_tree(TreeList<Chunk_t, FreeList_t>* tl) {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   335
    if (tl != NULL) {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   336
      do_tree(tl->left());
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   337
      this->do_list(tl);
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   338
      do_tree(tl->right());
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   339
    }
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   340
  }
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   341
};
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   342
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   343
template <class Chunk_t, class FreeList_t>
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   344
class DescendTreeCensusClosure : public TreeCensusClosure<Chunk_t, FreeList_t> {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   345
 public:
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   346
  void do_tree(TreeList<Chunk_t, FreeList_t>* tl) {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   347
    if (tl != NULL) {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   348
      do_tree(tl->right());
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   349
      this->do_list(tl);
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   350
      do_tree(tl->left());
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   351
    }
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   352
  }
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   353
};
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   354
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   355
// Used to search the tree until a condition is met.
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   356
// Similar to TreeCensusClosure but searches the
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   357
// tree and returns promptly when found.
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   358
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   359
template <class Chunk_t, class FreeList_t>
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   360
class TreeSearchClosure : public StackObj {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   361
 protected:
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   362
  virtual bool do_list(FreeList_t* fl) = 0;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   363
 public:
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   364
  virtual bool do_tree(TreeList<Chunk_t, FreeList_t>* tl) = 0;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   365
};
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   366
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   367
#if 0 //  Don't need this yet but here for symmetry.
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   368
template <class Chunk_t, class FreeList_t>
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   369
class AscendTreeSearchClosure : public TreeSearchClosure<Chunk_t> {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   370
 public:
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   371
  bool do_tree(TreeList<Chunk_t, FreeList_t>* tl) {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   372
    if (tl != NULL) {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   373
      if (do_tree(tl->left())) return true;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   374
      if (do_list(tl)) return true;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   375
      if (do_tree(tl->right())) return true;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   376
    }
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   377
    return false;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   378
  }
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   379
};
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   380
#endif
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   381
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   382
template <class Chunk_t, class FreeList_t>
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   383
class DescendTreeSearchClosure : public TreeSearchClosure<Chunk_t, FreeList_t> {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   384
 public:
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   385
  bool do_tree(TreeList<Chunk_t, FreeList_t>* tl) {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   386
    if (tl != NULL) {
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   387
      if (do_tree(tl->right())) return true;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   388
      if (this->do_list(tl)) return true;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   389
      if (do_tree(tl->left())) return true;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   390
    }
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   391
    return false;
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   392
  }
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   393
};
6709f13dccd3 8200735: Move CMS specific code from binaryTreeDictionary and freeList to CMS files
stefank
parents: 47216
diff changeset
   394
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50193
diff changeset
   395
#endif // SHARE_MEMORY_BINARYTREEDICTIONARY_HPP