Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/memory/binaryTreeDictionary.hpp
32285 views
1
/*
2
* Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
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
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*
23
*/
24
25
#ifndef SHARE_VM_MEMORY_BINARYTREEDICTIONARY_HPP
26
#define SHARE_VM_MEMORY_BINARYTREEDICTIONARY_HPP
27
28
#include "memory/freeBlockDictionary.hpp"
29
#include "memory/freeList.hpp"
30
#include "memory/memRegion.hpp"
31
32
/*
33
* A binary tree based search structure for free blocks.
34
* This is currently used in the Concurrent Mark&Sweep implementation, but
35
* will be used for free block management for metadata.
36
*/
37
38
// A TreeList is a FreeList which can be used to maintain a
39
// binary tree of free lists.
40
41
template <class Chunk_t, class FreeList_t> class TreeChunk;
42
template <class Chunk_t, class FreeList_t> class BinaryTreeDictionary;
43
template <class Chunk_t, class FreeList_t> class AscendTreeCensusClosure;
44
template <class Chunk_t, class FreeList_t> class DescendTreeCensusClosure;
45
template <class Chunk_t, class FreeList_t> class DescendTreeSearchClosure;
46
47
class FreeChunk;
48
template <class> class AdaptiveFreeList;
49
typedef BinaryTreeDictionary<FreeChunk, AdaptiveFreeList<FreeChunk> > AFLBinaryTreeDictionary;
50
51
template <class Chunk_t, class FreeList_t>
52
class TreeList : public FreeList_t {
53
friend class TreeChunk<Chunk_t, FreeList_t>;
54
friend class BinaryTreeDictionary<Chunk_t, FreeList_t>;
55
friend class AscendTreeCensusClosure<Chunk_t, FreeList_t>;
56
friend class DescendTreeCensusClosure<Chunk_t, FreeList_t>;
57
friend class DescendTreeSearchClosure<Chunk_t, FreeList_t>;
58
59
TreeList<Chunk_t, FreeList_t>* _parent;
60
TreeList<Chunk_t, FreeList_t>* _left;
61
TreeList<Chunk_t, FreeList_t>* _right;
62
63
protected:
64
65
TreeList<Chunk_t, FreeList_t>* parent() const { return _parent; }
66
TreeList<Chunk_t, FreeList_t>* left() const { return _left; }
67
TreeList<Chunk_t, FreeList_t>* right() const { return _right; }
68
69
// Wrapper on call to base class, to get the template to compile.
70
Chunk_t* head() const { return FreeList_t::head(); }
71
Chunk_t* tail() const { return FreeList_t::tail(); }
72
void set_head(Chunk_t* head) { FreeList_t::set_head(head); }
73
void set_tail(Chunk_t* tail) { FreeList_t::set_tail(tail); }
74
75
size_t size() const { return FreeList_t::size(); }
76
77
// Accessors for links in tree.
78
79
void set_left(TreeList<Chunk_t, FreeList_t>* tl) {
80
_left = tl;
81
if (tl != NULL)
82
tl->set_parent(this);
83
}
84
void set_right(TreeList<Chunk_t, FreeList_t>* tl) {
85
_right = tl;
86
if (tl != NULL)
87
tl->set_parent(this);
88
}
89
void set_parent(TreeList<Chunk_t, FreeList_t>* tl) { _parent = tl; }
90
91
void clear_left() { _left = NULL; }
92
void clear_right() { _right = NULL; }
93
void clear_parent() { _parent = NULL; }
94
void initialize() { clear_left(); clear_right(), clear_parent(); FreeList_t::initialize(); }
95
96
// For constructing a TreeList from a Tree chunk or
97
// address and size.
98
TreeList();
99
static TreeList<Chunk_t, FreeList_t>*
100
as_TreeList(TreeChunk<Chunk_t, FreeList_t>* tc);
101
static TreeList<Chunk_t, FreeList_t>* as_TreeList(HeapWord* addr, size_t size);
102
103
// Returns the head of the free list as a pointer to a TreeChunk.
104
TreeChunk<Chunk_t, FreeList_t>* head_as_TreeChunk();
105
106
// Returns the first available chunk in the free list as a pointer
107
// to a TreeChunk.
108
TreeChunk<Chunk_t, FreeList_t>* first_available();
109
110
// Returns the block with the largest heap address amongst
111
// those in the list for this size; potentially slow and expensive,
112
// use with caution!
113
TreeChunk<Chunk_t, FreeList_t>* largest_address();
114
115
TreeList<Chunk_t, FreeList_t>* get_better_list(
116
BinaryTreeDictionary<Chunk_t, FreeList_t>* dictionary);
117
118
// remove_chunk_replace_if_needed() removes the given "tc" from the TreeList.
119
// If "tc" is the first chunk in the list, it is also the
120
// TreeList that is the node in the tree. remove_chunk_replace_if_needed()
121
// returns the possibly replaced TreeList* for the node in
122
// the tree. It also updates the parent of the original
123
// node to point to the new node.
124
TreeList<Chunk_t, FreeList_t>* remove_chunk_replace_if_needed(TreeChunk<Chunk_t, FreeList_t>* tc);
125
// See FreeList.
126
void return_chunk_at_head(TreeChunk<Chunk_t, FreeList_t>* tc);
127
void return_chunk_at_tail(TreeChunk<Chunk_t, FreeList_t>* tc);
128
};
129
130
// A TreeChunk is a subclass of a Chunk that additionally
131
// maintains a pointer to the free list on which it is currently
132
// linked.
133
// A TreeChunk is also used as a node in the binary tree. This
134
// allows the binary tree to be maintained without any additional
135
// storage (the free chunks are used). In a binary tree the first
136
// chunk in the free list is also the tree node. Note that the
137
// TreeChunk has an embedded TreeList for this purpose. Because
138
// the first chunk in the list is distinguished in this fashion
139
// (also is the node in the tree), it is the last chunk to be found
140
// on the free list for a node in the tree and is only removed if
141
// it is the last chunk on the free list.
142
143
template <class Chunk_t, class FreeList_t>
144
class TreeChunk : public Chunk_t {
145
friend class TreeList<Chunk_t, FreeList_t>;
146
TreeList<Chunk_t, FreeList_t>* _list;
147
TreeList<Chunk_t, FreeList_t> _embedded_list; // if non-null, this chunk is on _list
148
149
static size_t _min_tree_chunk_size;
150
151
protected:
152
TreeList<Chunk_t, FreeList_t>* embedded_list() const { return (TreeList<Chunk_t, FreeList_t>*) &_embedded_list; }
153
void set_embedded_list(TreeList<Chunk_t, FreeList_t>* v) { _embedded_list = *v; }
154
public:
155
TreeList<Chunk_t, FreeList_t>* list() { return _list; }
156
void set_list(TreeList<Chunk_t, FreeList_t>* v) { _list = v; }
157
static TreeChunk<Chunk_t, FreeList_t>* as_TreeChunk(Chunk_t* fc);
158
// Initialize fields in a TreeChunk that should be
159
// initialized when the TreeChunk is being added to
160
// a free list in the tree.
161
void initialize() { embedded_list()->initialize(); }
162
163
Chunk_t* next() const { return Chunk_t::next(); }
164
Chunk_t* prev() const { return Chunk_t::prev(); }
165
size_t size() const volatile { return Chunk_t::size(); }
166
167
static size_t min_size() {
168
return _min_tree_chunk_size;
169
}
170
171
// debugging
172
void verify_tree_chunk_list() const;
173
void assert_is_mangled() const;
174
};
175
176
177
template <class Chunk_t, class FreeList_t>
178
class BinaryTreeDictionary: public FreeBlockDictionary<Chunk_t> {
179
friend class VMStructs;
180
size_t _total_size;
181
size_t _total_free_blocks;
182
TreeList<Chunk_t, FreeList_t>* _root;
183
184
// private accessors
185
void set_total_size(size_t v) { _total_size = v; }
186
virtual void inc_total_size(size_t v);
187
virtual void dec_total_size(size_t v);
188
void set_total_free_blocks(size_t v) { _total_free_blocks = v; }
189
TreeList<Chunk_t, FreeList_t>* root() const { return _root; }
190
void set_root(TreeList<Chunk_t, FreeList_t>* v) { _root = v; }
191
192
// This field is added and can be set to point to the
193
// the Mutex used to synchronize access to the
194
// dictionary so that assertion checking can be done.
195
// For example it is set to point to _parDictionaryAllocLock.
196
NOT_PRODUCT(Mutex* _lock;)
197
198
// Remove a chunk of size "size" or larger from the tree and
199
// return it. If the chunk
200
// is the last chunk of that size, remove the node for that size
201
// from the tree.
202
TreeChunk<Chunk_t, FreeList_t>* get_chunk_from_tree(size_t size, enum FreeBlockDictionary<Chunk_t>::Dither dither);
203
// Remove this chunk from the tree. If the removal results
204
// in an empty list in the tree, remove the empty list.
205
TreeChunk<Chunk_t, FreeList_t>* remove_chunk_from_tree(TreeChunk<Chunk_t, FreeList_t>* tc);
206
// Remove the node in the trees starting at tl that has the
207
// minimum value and return it. Repair the tree as needed.
208
TreeList<Chunk_t, FreeList_t>* remove_tree_minimum(TreeList<Chunk_t, FreeList_t>* tl);
209
// Add this free chunk to the tree.
210
void insert_chunk_in_tree(Chunk_t* freeChunk);
211
public:
212
213
// Return a list of the specified size or NULL from the tree.
214
// The list is not removed from the tree.
215
TreeList<Chunk_t, FreeList_t>* find_list (size_t size) const;
216
217
void verify_tree() const;
218
// verify that the given chunk is in the tree.
219
bool verify_chunk_in_free_list(Chunk_t* tc) const;
220
private:
221
void verify_tree_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
222
static size_t verify_prev_free_ptrs(TreeList<Chunk_t, FreeList_t>* tl);
223
224
// Returns the total number of chunks in the list.
225
size_t total_list_length(TreeList<Chunk_t, FreeList_t>* tl) const;
226
// Returns the total number of words in the chunks in the tree
227
// starting at "tl".
228
size_t total_size_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const;
229
// Returns the sum of the square of the size of each block
230
// in the tree starting at "tl".
231
double sum_of_squared_block_sizes(TreeList<Chunk_t, FreeList_t>* const tl) const;
232
// Returns the total number of free blocks in the tree starting
233
// at "tl".
234
size_t total_free_blocks_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const;
235
size_t num_free_blocks() const;
236
size_t tree_height() const;
237
size_t tree_height_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
238
size_t total_nodes_in_tree(TreeList<Chunk_t, FreeList_t>* tl) const;
239
size_t total_nodes_helper(TreeList<Chunk_t, FreeList_t>* tl) const;
240
241
public:
242
// Constructor
243
BinaryTreeDictionary() :
244
_total_size(0), _total_free_blocks(0), _root(0) {}
245
246
BinaryTreeDictionary(MemRegion mr);
247
248
// Public accessors
249
size_t total_size() const { return _total_size; }
250
size_t total_free_blocks() const { return _total_free_blocks; }
251
252
// Reset the dictionary to the initial conditions with
253
// a single free chunk.
254
void reset(MemRegion mr);
255
void reset(HeapWord* addr, size_t size);
256
// Reset the dictionary to be empty.
257
void reset();
258
259
// Return a chunk of size "size" or greater from
260
// the tree.
261
Chunk_t* get_chunk(size_t size, enum FreeBlockDictionary<Chunk_t>::Dither dither) {
262
FreeBlockDictionary<Chunk_t>::verify_par_locked();
263
Chunk_t* res = get_chunk_from_tree(size, dither);
264
assert(res == NULL || res->is_free(),
265
"Should be returning a free chunk");
266
assert(dither != FreeBlockDictionary<Chunk_t>::exactly ||
267
res == NULL || res->size() == size, "Not correct size");
268
return res;
269
}
270
271
void return_chunk(Chunk_t* chunk) {
272
FreeBlockDictionary<Chunk_t>::verify_par_locked();
273
insert_chunk_in_tree(chunk);
274
}
275
276
void remove_chunk(Chunk_t* chunk) {
277
FreeBlockDictionary<Chunk_t>::verify_par_locked();
278
remove_chunk_from_tree((TreeChunk<Chunk_t, FreeList_t>*)chunk);
279
assert(chunk->is_free(), "Should still be a free chunk");
280
}
281
282
size_t max_chunk_size() const;
283
size_t total_chunk_size(debug_only(const Mutex* lock)) const {
284
debug_only(
285
if (lock != NULL && lock->owned_by_self()) {
286
assert(total_size_in_tree(root()) == total_size(),
287
"_total_size inconsistency");
288
}
289
)
290
return total_size();
291
}
292
293
size_t min_size() const {
294
return TreeChunk<Chunk_t, FreeList_t>::min_size();
295
}
296
297
double sum_of_squared_block_sizes() const {
298
return sum_of_squared_block_sizes(root());
299
}
300
301
Chunk_t* find_chunk_ends_at(HeapWord* target) const;
302
303
// Find the list with size "size" in the binary tree and update
304
// the statistics in the list according to "split" (chunk was
305
// split or coalesce) and "birth" (chunk was added or removed).
306
void dict_census_update(size_t size, bool split, bool birth);
307
// Return true if the dictionary is overpopulated (more chunks of
308
// this size than desired) for size "size".
309
bool coal_dict_over_populated(size_t size);
310
// Methods called at the beginning of a sweep to prepare the
311
// statistics for the sweep.
312
void begin_sweep_dict_census(double coalSurplusPercent,
313
float inter_sweep_current,
314
float inter_sweep_estimate,
315
float intra_sweep_estimate);
316
// Methods called after the end of a sweep to modify the
317
// statistics for the sweep.
318
void end_sweep_dict_census(double splitSurplusPercent);
319
// Return the largest free chunk in the tree.
320
Chunk_t* find_largest_dict() const;
321
// Accessors for statistics
322
void set_tree_surplus(double splitSurplusPercent);
323
void set_tree_hints(void);
324
// Reset statistics for all the lists in the tree.
325
void clear_tree_census(void);
326
// Print the statistcis for all the lists in the tree. Also may
327
// print out summaries.
328
void print_dict_census(void) const;
329
void print_free_lists(outputStream* st) const;
330
331
// For debugging. Returns the sum of the _returned_bytes for
332
// all lists in the tree.
333
size_t sum_dict_returned_bytes() PRODUCT_RETURN0;
334
// Sets the _returned_bytes for all the lists in the tree to zero.
335
void initialize_dict_returned_bytes() PRODUCT_RETURN;
336
// For debugging. Return the total number of chunks in the dictionary.
337
size_t total_count() PRODUCT_RETURN0;
338
339
void report_statistics() const;
340
341
void verify() const;
342
};
343
344
#endif // SHARE_VM_MEMORY_BINARYTREEDICTIONARY_HPP
345
346