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