annotate src/share/vm/memory/binaryTreeDictionary.hpp @ 6885:685df3c6f84b

7045397: NPG: Add freelists to class loader arenas. Reviewed-by: coleenp, stefank, jprovino, ohair
author jmasa
date Tue, 18 Sep 2012 23:35:42 -0700
parents da91efe96a93
children 476718ea6759
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
2 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1145
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1145
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1145
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
25 #ifndef SHARE_VM_MEMORY_BINARYTREEDICTIONARY_HPP
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
26 #define SHARE_VM_MEMORY_BINARYTREEDICTIONARY_HPP
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
28 #include "memory/freeBlockDictionary.hpp"
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
29 #include "memory/freeList.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
32 * A binary tree based search structure for free blocks.
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
33 * This is currently used in the Concurrent Mark&Sweep implementation, but
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
34 * will be used for free block management for metadata.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35 */
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // A TreeList is a FreeList which can be used to maintain a
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // binary tree of free lists.
a61af66fc99e Initial load
duke
parents:
diff changeset
39
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
40 template <class Chunk_t, template <class> class FreeList_t> class TreeChunk;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
41 template <class Chunk_t, template <class> class FreeList_t> class BinaryTreeDictionary;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
42 template <class Chunk_t, template <class> class FreeList_t> class AscendTreeCensusClosure;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
43 template <class Chunk_t, template <class> class FreeList_t> class DescendTreeCensusClosure;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
44 template <class Chunk_t, template <class> class FreeList_t> class DescendTreeSearchClosure;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
46 template <class Chunk_t, template <class> class FreeList_t>
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
47 class TreeList : public FreeList_t<Chunk_t> {
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
48 friend class TreeChunk<Chunk_t, FreeList_t>;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
49 friend class BinaryTreeDictionary<Chunk_t, FreeList_t>;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
50 friend class AscendTreeCensusClosure<Chunk_t, FreeList_t>;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
51 friend class DescendTreeCensusClosure<Chunk_t, FreeList_t>;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
52 friend class DescendTreeSearchClosure<Chunk_t, FreeList_t>;
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
53
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
54 TreeList<Chunk_t, FreeList_t>* _parent;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
55 TreeList<Chunk_t, FreeList_t>* _left;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
56 TreeList<Chunk_t, FreeList_t>* _right;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 protected:
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
59
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
60 TreeList<Chunk_t, FreeList_t>* parent() const { return _parent; }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
61 TreeList<Chunk_t, FreeList_t>* left() const { return _left; }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
62 TreeList<Chunk_t, FreeList_t>* right() const { return _right; }
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
63
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
64 // Wrapper on call to base class, to get the template to compile.
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
65 Chunk_t* head() const { return FreeList_t<Chunk_t>::head(); }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
66 Chunk_t* tail() const { return FreeList_t<Chunk_t>::tail(); }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
67 void set_head(Chunk_t* head) { FreeList_t<Chunk_t>::set_head(head); }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
68 void set_tail(Chunk_t* tail) { FreeList_t<Chunk_t>::set_tail(tail); }
6119
a297b0e14605 7172226: HotSpot fails to build with GCC 4.7 because of stricter c++ argument dependent lookup
mgerdin
parents: 6028
diff changeset
69
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
70 size_t size() const { return FreeList_t<Chunk_t>::size(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Accessors for links in tree.
a61af66fc99e Initial load
duke
parents:
diff changeset
73
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
74 void set_left(TreeList<Chunk_t, FreeList_t>* tl) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75 _left = tl;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 if (tl != NULL)
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
77 tl->set_parent(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
79 void set_right(TreeList<Chunk_t, FreeList_t>* tl) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _right = tl;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if (tl != NULL)
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
82 tl->set_parent(this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
84 void set_parent(TreeList<Chunk_t, FreeList_t>* tl) { _parent = tl; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
85
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
86 void clear_left() { _left = NULL; }
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
87 void clear_right() { _right = NULL; }
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
88 void clear_parent() { _parent = NULL; }
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
89 void initialize() { clear_left(); clear_right(), clear_parent(); FreeList_t<Chunk_t>::initialize(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // For constructing a TreeList from a Tree chunk or
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // address and size.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
93 TreeList();
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
94 static TreeList<Chunk_t, FreeList_t>*
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
95 as_TreeList(TreeChunk<Chunk_t, FreeList_t>* tc);
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
96 static TreeList<Chunk_t, FreeList_t>* as_TreeList(HeapWord* addr, size_t size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // Returns the head of the free list as a pointer to a TreeChunk.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
99 TreeChunk<Chunk_t, FreeList_t>* head_as_TreeChunk();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Returns the first available chunk in the free list as a pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // to a TreeChunk.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
103 TreeChunk<Chunk_t, FreeList_t>* first_available();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
104
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 196
diff changeset
105 // Returns the block with the largest heap address amongst
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 196
diff changeset
106 // those in the list for this size; potentially slow and expensive,
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 196
diff changeset
107 // use with caution!
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
108 TreeChunk<Chunk_t, FreeList_t>* largest_address();
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
109
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
110 TreeList<Chunk_t, FreeList_t>* get_better_list(
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
111 BinaryTreeDictionary<Chunk_t, FreeList_t>* dictionary);
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 196
diff changeset
112
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
113 // remove_chunk_replace_if_needed() removes the given "tc" from the TreeList.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // If "tc" is the first chunk in the list, it is also the
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
115 // TreeList that is the node in the tree. remove_chunk_replace_if_needed()
0
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // returns the possibly replaced TreeList* for the node in
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // the tree. It also updates the parent of the original
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // node to point to the new node.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
119 TreeList<Chunk_t, FreeList_t>* remove_chunk_replace_if_needed(TreeChunk<Chunk_t, FreeList_t>* tc);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // See FreeList.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
121 void return_chunk_at_head(TreeChunk<Chunk_t, FreeList_t>* tc);
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
122 void return_chunk_at_tail(TreeChunk<Chunk_t, FreeList_t>* tc);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
123 };
a61af66fc99e Initial load
duke
parents:
diff changeset
124
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
125 // A TreeChunk is a subclass of a Chunk that additionally
0
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // maintains a pointer to the free list on which it is currently
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // linked.
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // A TreeChunk is also used as a node in the binary tree. This
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // allows the binary tree to be maintained without any additional
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // storage (the free chunks are used). In a binary tree the first
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // chunk in the free list is also the tree node. Note that the
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // TreeChunk has an embedded TreeList for this purpose. Because
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // the first chunk in the list is distinguished in this fashion
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // (also is the node in the tree), it is the last chunk to be found
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // on the free list for a node in the tree and is only removed if
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // it is the last chunk on the free list.
a61af66fc99e Initial load
duke
parents:
diff changeset
137
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
138 template <class Chunk_t, template <class> class FreeList_t>
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
139 class TreeChunk : public Chunk_t {
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
140 friend class TreeList<Chunk_t, FreeList_t>;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
141 TreeList<Chunk_t, FreeList_t>* _list;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
142 TreeList<Chunk_t, FreeList_t> _embedded_list; // if non-null, this chunk is on _list
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
143
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
144 static size_t _min_tree_chunk_size;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
145
0
a61af66fc99e Initial load
duke
parents:
diff changeset
146 protected:
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
147 TreeList<Chunk_t, FreeList_t>* embedded_list() const { return (TreeList<Chunk_t, FreeList_t>*) &_embedded_list; }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
148 void set_embedded_list(TreeList<Chunk_t, FreeList_t>* v) { _embedded_list = *v; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
149 public:
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
150 TreeList<Chunk_t, FreeList_t>* list() { return _list; }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
151 void set_list(TreeList<Chunk_t, FreeList_t>* v) { _list = v; }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
152 static TreeChunk<Chunk_t, FreeList_t>* as_TreeChunk(Chunk_t* fc);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // Initialize fields in a TreeChunk that should be
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // initialized when the TreeChunk is being added to
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // a free list in the tree.
a61af66fc99e Initial load
duke
parents:
diff changeset
156 void initialize() { embedded_list()->initialize(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
158 Chunk_t* next() const { return Chunk_t::next(); }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
159 Chunk_t* prev() const { return Chunk_t::prev(); }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
160 size_t size() const volatile { return Chunk_t::size(); }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
161
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
162 static size_t min_size() {
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
163 return _min_tree_chunk_size;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
164 }
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
165
0
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // debugging
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
167 void verify_tree_chunk_list() const;
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
168 void assert_is_mangled() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
169 };
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
172 template <class Chunk_t, template <class> class FreeList_t>
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
173 class BinaryTreeDictionary: public FreeBlockDictionary<Chunk_t> {
152
c70a245cad3a 6670684: 4/5 SA command universe did not print out CMS space information
dcubed
parents: 0
diff changeset
174 friend class VMStructs;
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
175 size_t _total_size;
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
176 size_t _total_free_blocks;
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
177 TreeList<Chunk_t, FreeList_t>* _root;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // private accessors
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
180 void set_total_size(size_t v) { _total_size = v; }
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
181 virtual void inc_total_size(size_t v);
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
182 virtual void dec_total_size(size_t v);
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
183 void set_total_free_blocks(size_t v) { _total_free_blocks = v; }
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
184 TreeList<Chunk_t, FreeList_t>* root() const { return _root; }
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
185 void set_root(TreeList<Chunk_t, FreeList_t>* v) { _root = v; }
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
186
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
187 // This field is added and can be set to point to the
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
188 // the Mutex used to synchronize access to the
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
189 // dictionary so that assertion checking can be done.
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
190 // For example it is set to point to _parDictionaryAllocLock.
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
191 NOT_PRODUCT(Mutex* _lock;)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // Remove a chunk of size "size" or larger from the tree and
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // return it. If the chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // is the last chunk of that size, remove the node for that size
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // from the tree.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
197 TreeChunk<Chunk_t, FreeList_t>* get_chunk_from_tree(size_t size, enum FreeBlockDictionary<Chunk_t>::Dither dither);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // Remove this chunk from the tree. If the removal results
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // in an empty list in the tree, remove the empty list.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
200 TreeChunk<Chunk_t, FreeList_t>* remove_chunk_from_tree(TreeChunk<Chunk_t, FreeList_t>* tc);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // Remove the node in the trees starting at tl that has the
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // minimum value and return it. Repair the tree as needed.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
203 TreeList<Chunk_t, FreeList_t>* remove_tree_minimum(TreeList<Chunk_t, FreeList_t>* tl);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // Add this free chunk to the tree.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
205 void insert_chunk_in_tree(Chunk_t* freeChunk);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
206 public:
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
207
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
208 // Return a list of the specified size or NULL from the tree.
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
209 // The list is not removed from the tree.
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
210 TreeList<Chunk_t, FreeList_t>* find_list (size_t size) const;
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
211
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
212 void verify_tree() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // verify that the given chunk is in the tree.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
214 bool verify_chunk_in_free_list(Chunk_t* tc) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
215 private:
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
216 void verify_tree_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
217 static size_t verify_prev_free_ptrs(TreeList<Chunk_t, FreeList_t>* tl);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // Returns the total number of chunks in the list.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
220 size_t total_list_length(TreeList<Chunk_t, FreeList_t>* tl) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // Returns the total number of words in the chunks in the tree
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // starting at "tl".
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
223 size_t total_size_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // Returns the sum of the square of the size of each block
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // in the tree starting at "tl".
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
226 double sum_of_squared_block_sizes(TreeList<Chunk_t, FreeList_t>* const tl) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // Returns the total number of free blocks in the tree starting
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // at "tl".
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
229 size_t total_free_blocks_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
230 size_t num_free_blocks() const;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
231 size_t tree_height() const;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
232 size_t tree_height_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
233 size_t total_nodes_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const;
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
234 size_t total_nodes_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // Constructor
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
238 BinaryTreeDictionary() :
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
239 _total_size(0), _total_free_blocks(0), _root(0) {}
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
240
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
241 BinaryTreeDictionary(MemRegion mr);
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
242
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
243 // Public accessors
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
244 size_t total_size() const { return _total_size; }
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
245 size_t total_free_blocks() const { return _total_free_blocks; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // Reset the dictionary to the initial conditions with
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // a single free chunk.
a61af66fc99e Initial load
duke
parents:
diff changeset
249 void reset(MemRegion mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 void reset(HeapWord* addr, size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // Reset the dictionary to be empty.
a61af66fc99e Initial load
duke
parents:
diff changeset
252 void reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // Return a chunk of size "size" or greater from
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // the tree.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
256 Chunk_t* get_chunk(size_t size, enum FreeBlockDictionary<Chunk_t>::Dither dither) {
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
257 FreeBlockDictionary<Chunk_t>::verify_par_locked();
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
258 Chunk_t* res = get_chunk_from_tree(size, dither);
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
259 assert(res == NULL || res->is_free(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
260 "Should be returning a free chunk");
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
261 assert(dither != FreeBlockDictionary<Chunk_t>::exactly ||
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
262 res->size() == size, "Not correct size");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
263 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
266 void return_chunk(Chunk_t* chunk) {
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
267 FreeBlockDictionary<Chunk_t>::verify_par_locked();
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
268 insert_chunk_in_tree(chunk);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
271 void remove_chunk(Chunk_t* chunk) {
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
272 FreeBlockDictionary<Chunk_t>::verify_par_locked();
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
273 remove_chunk_from_tree((TreeChunk<Chunk_t, FreeList_t>*)chunk);
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
274 assert(chunk->is_free(), "Should still be a free chunk");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
277 size_t max_chunk_size() const;
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
278 size_t total_chunk_size(debug_only(const Mutex* lock)) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
279 debug_only(
a61af66fc99e Initial load
duke
parents:
diff changeset
280 if (lock != NULL && lock->owned_by_self()) {
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
281 assert(total_size_in_tree(root()) == total_size(),
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
282 "_total_size inconsistency");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284 )
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
285 return total_size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
286 }
a61af66fc99e Initial load
duke
parents:
diff changeset
287
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
288 size_t min_size() const {
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
289 return TreeChunk<Chunk_t, FreeList_t>::min_size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 double sum_of_squared_block_sizes() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 return sum_of_squared_block_sizes(root());
a61af66fc99e Initial load
duke
parents:
diff changeset
294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
295
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
296 Chunk_t* find_chunk_ends_at(HeapWord* target) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // Find the list with size "size" in the binary tree and update
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // the statistics in the list according to "split" (chunk was
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // split or coalesce) and "birth" (chunk was added or removed).
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
301 void dict_census_update(size_t size, bool split, bool birth);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // Return true if the dictionary is overpopulated (more chunks of
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // this size than desired) for size "size".
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
304 bool coal_dict_over_populated(size_t size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // Methods called at the beginning of a sweep to prepare the
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // statistics for the sweep.
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
307 void begin_sweep_dict_census(double coalSurplusPercent,
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 196
diff changeset
308 float inter_sweep_current,
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 196
diff changeset
309 float inter_sweep_estimate,
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 196
diff changeset
310 float intra_sweep_estimate);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // Methods called after the end of a sweep to modify the
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // statistics for the sweep.
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
313 void end_sweep_dict_census(double splitSurplusPercent);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // Return the largest free chunk in the tree.
6885
685df3c6f84b 7045397: NPG: Add freelists to class loader arenas.
jmasa
parents: 6725
diff changeset
315 Chunk_t* find_largest_dict() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // Accessors for statistics
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
317 void set_tree_surplus(double splitSurplusPercent);
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
318 void set_tree_hints(void);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // Reset statistics for all the lists in the tree.
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
320 void clear_tree_census(void);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // Print the statistcis for all the lists in the tree. Also may
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // print out summaries.
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
323 void print_dict_census(void) const;
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 196
diff changeset
324 void print_free_lists(outputStream* st) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
325
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
326 // For debugging. Returns the sum of the _returned_bytes for
0
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // all lists in the tree.
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
328 size_t sum_dict_returned_bytes() PRODUCT_RETURN0;
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
329 // Sets the _returned_bytes for all the lists in the tree to zero.
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
330 void initialize_dict_returned_bytes() PRODUCT_RETURN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
331 // For debugging. Return the total number of chunks in the dictionary.
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
332 size_t total_count() PRODUCT_RETURN0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
333
6028
f69a5d43dc19 7164144: Fix variable naming style in freeBlockDictionary.* and binaryTreeDictionary*
jmasa
parents: 6026
diff changeset
334 void report_statistics() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
335
a61af66fc99e Initial load
duke
parents:
diff changeset
336 void verify() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
337 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
338
6026
9f059abe8cf2 7131629: Generalize the CMS free list code
jmasa
parents: 1972
diff changeset
339 #endif // SHARE_VM_MEMORY_BINARYTREEDICTIONARY_HPP