author | tschatzl |
Fri, 27 Jan 2017 13:12:53 +0100 | |
changeset 43666 | ad05e6f30cd2 |
parent 38177 | b0c9cb06506b |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
43666
ad05e6f30cd2
8173229: Wrong assert whether all remembered set entries have been iterated over in presence of coarsenings
tschatzl
parents:
38177
diff
changeset
|
2 |
* Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. |
1374 | 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:
5346
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5346
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:
5346
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_G1_HEAPREGIONREMSET_HPP |
26 |
#define SHARE_VM_GC_G1_HEAPREGIONREMSET_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/g1/g1CodeCacheRemSet.hpp" |
35199 | 29 |
#include "gc/g1/g1FromCardCache.hpp" |
30764 | 30 |
#include "gc/g1/sparsePRT.hpp" |
7397 | 31 |
|
1374 | 32 |
// Remembered set for a heap region. Represent a set of "cards" that |
33 |
// contain pointers into the owner heap region. Cards are defined somewhat |
|
34 |
// abstractly, in terms of what the "BlockOffsetTable" in use can parse. |
|
35 |
||
36 |
class G1CollectedHeap; |
|
35461 | 37 |
class G1BlockOffsetTable; |
37414
2672ba9af0dc
8151386: Extract card live data out of G1ConcurrentMark
tschatzl
parents:
35461
diff
changeset
|
38 |
class G1CardLiveData; |
1374 | 39 |
class HeapRegion; |
40 |
class HeapRegionRemSetIterator; |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
41 |
class PerRegionTable; |
1374 | 42 |
class SparsePRT; |
19339 | 43 |
class nmethod; |
1374 | 44 |
|
8072 | 45 |
// Essentially a wrapper around SparsePRTCleanupTask. See |
46 |
// sparsePRT.hpp for more details. |
|
47 |
class HRRSCleanupTask : public SparsePRTCleanupTask { |
|
48 |
}; |
|
1374 | 49 |
|
50 |
// The "_coarse_map" is a bitmap with one bit for each region, where set |
|
51 |
// bits indicate that the corresponding region may contain some pointer |
|
52 |
// into the owning region. |
|
53 |
||
54 |
// The "_fine_grain_entries" array is an open hash table of PerRegionTables |
|
55 |
// (PRTs), indicating regions for which we're keeping the RS as a set of |
|
56 |
// cards. The strategy is to cap the size of the fine-grain table, |
|
57 |
// deleting an entry and setting the corresponding coarse-grained bit when |
|
58 |
// we would overflow this cap. |
|
59 |
||
60 |
// We use a mixture of locking and lock-free techniques here. We allow |
|
61 |
// threads to locate PRTs without locking, but threads attempting to alter |
|
62 |
// a bucket list obtain a lock. This means that any failing attempt to |
|
63 |
// find a PRT must be retried with the lock. It might seem dangerous that |
|
64 |
// a read can find a PRT that is concurrently deleted. This is all right, |
|
65 |
// because: |
|
66 |
// |
|
67 |
// 1) We only actually free PRT's at safe points (though we reuse them at |
|
68 |
// other times). |
|
69 |
// 2) We find PRT's in an attempt to add entries. If a PRT is deleted, |
|
70 |
// it's _coarse_map bit is set, so the that we were attempting to add |
|
71 |
// is represented. If a deleted PRT is re-used, a thread adding a bit, |
|
72 |
// thinking the PRT is for a different region, does no harm. |
|
73 |
||
2013
49e915da0905
6700941: G1: allocation spec missing for some G1 classes
apetrusenko
parents:
1374
diff
changeset
|
74 |
class OtherRegionsTable VALUE_OBJ_CLASS_SPEC { |
1374 | 75 |
friend class HeapRegionRemSetIterator; |
76 |
||
77 |
G1CollectedHeap* _g1h; |
|
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
78 |
Mutex* _m; |
1374 | 79 |
HeapRegion* _hr; |
80 |
||
81 |
// These are protected by "_m". |
|
38177 | 82 |
CHeapBitMap _coarse_map; |
1374 | 83 |
size_t _n_coarse_entries; |
84 |
static jint _n_coarsenings; |
|
85 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
86 |
PerRegionTable** _fine_grain_regions; |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
87 |
size_t _n_fine_entries; |
1374 | 88 |
|
13335 | 89 |
// The fine grain remembered sets are doubly linked together using |
90 |
// their 'next' and 'prev' fields. |
|
91 |
// This allows fast bulk freeing of all the fine grain remembered |
|
92 |
// set entries, and fast finding of all of them without iterating |
|
93 |
// over the _fine_grain_regions table. |
|
94 |
PerRegionTable * _first_all_fine_prts; |
|
95 |
PerRegionTable * _last_all_fine_prts; |
|
96 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
97 |
// Used to sample a subset of the fine grain PRTs to determine which |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
98 |
// PRT to evict and coarsen. |
1374 | 99 |
size_t _fine_eviction_start; |
100 |
static size_t _fine_eviction_stride; |
|
101 |
static size_t _fine_eviction_sample_size; |
|
102 |
||
103 |
SparsePRT _sparse_table; |
|
104 |
||
105 |
// These are static after init. |
|
106 |
static size_t _max_fine_entries; |
|
107 |
static size_t _mod_max_fine_entries_mask; |
|
108 |
||
109 |
// Requires "prt" to be the first element of the bucket list appropriate |
|
110 |
// for "hr". If this list contains an entry for "hr", return it, |
|
111 |
// otherwise return "NULL". |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
112 |
PerRegionTable* find_region_table(size_t ind, HeapRegion* hr) const; |
1374 | 113 |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
114 |
// Find, delete, and return a candidate PerRegionTable, if any exists, |
1374 | 115 |
// adding the deleted region to the coarse bitmap. Requires the caller |
116 |
// to hold _m, and the fine-grain table to be full. |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
117 |
PerRegionTable* delete_region_table(); |
1374 | 118 |
|
13335 | 119 |
// link/add the given fine grain remembered set into the "all" list |
120 |
void link_to_all(PerRegionTable * prt); |
|
121 |
// unlink/remove the given fine grain remembered set into the "all" list |
|
122 |
void unlink_from_all(PerRegionTable * prt); |
|
123 |
||
28030 | 124 |
bool contains_reference_locked(OopOrNarrowOopStar from) const; |
125 |
||
126 |
// Clear the from_card_cache entries for this region. |
|
127 |
void clear_fcc(); |
|
1374 | 128 |
public: |
28030 | 129 |
// Create a new remembered set for the given heap region. The given mutex should |
130 |
// be used to ensure consistency. |
|
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
131 |
OtherRegionsTable(HeapRegion* hr, Mutex* m); |
1374 | 132 |
|
133 |
// For now. Could "expand" some tables in the future, so that this made |
|
134 |
// sense. |
|
26850
515ff48cf5f0
8036116: Fix thread-id types in G1 remembered set implementations
brutisso
parents:
26422
diff
changeset
|
135 |
void add_reference(OopOrNarrowOopStar from, uint tid); |
1374 | 136 |
|
28030 | 137 |
// Returns whether the remembered set contains the given reference. |
138 |
bool contains_reference(OopOrNarrowOopStar from) const; |
|
139 |
||
28379
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
28030
diff
changeset
|
140 |
// Returns whether this remembered set (and all sub-sets) have an occupancy |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
28030
diff
changeset
|
141 |
// that is less or equal than the given occupancy. |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
28030
diff
changeset
|
142 |
bool occupancy_less_or_equal_than(size_t limit) const; |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
28030
diff
changeset
|
143 |
|
1374 | 144 |
// Removes any entries shown by the given bitmaps to contain only dead |
28030 | 145 |
// objects. Not thread safe. |
146 |
// Set bits in the bitmaps indicate that the given region or card is live. |
|
37414
2672ba9af0dc
8151386: Extract card live data out of G1ConcurrentMark
tschatzl
parents:
35461
diff
changeset
|
147 |
void scrub(G1CardLiveData* live_data); |
1374 | 148 |
|
28030 | 149 |
// Returns whether this remembered set (and all sub-sets) does not contain any entry. |
25889
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24108
diff
changeset
|
150 |
bool is_empty() const; |
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24108
diff
changeset
|
151 |
|
28030 | 152 |
// Returns the number of cards contained in this remembered set. |
1374 | 153 |
size_t occupied() const; |
154 |
size_t occ_fine() const; |
|
155 |
size_t occ_coarse() const; |
|
156 |
size_t occ_sparse() const; |
|
157 |
||
158 |
static jint n_coarsenings() { return _n_coarsenings; } |
|
159 |
||
28030 | 160 |
// Returns size of the actual remembered set containers in bytes. |
1374 | 161 |
size_t mem_size() const; |
28030 | 162 |
// Returns the size of static data in bytes. |
1374 | 163 |
static size_t static_mem_size(); |
28030 | 164 |
// Returns the size of the free list content in bytes. |
1374 | 165 |
static size_t fl_mem_size(); |
166 |
||
28030 | 167 |
// Clear the entire contents of this remembered set. |
1374 | 168 |
void clear(); |
169 |
||
8072 | 170 |
void do_cleanup_work(HRRSCleanupTask* hrrs_cleanup_task); |
1374 | 171 |
}; |
172 |
||
13195 | 173 |
class HeapRegionRemSet : public CHeapObj<mtGC> { |
1374 | 174 |
friend class VMStructs; |
175 |
friend class HeapRegionRemSetIterator; |
|
176 |
||
177 |
private: |
|
35461 | 178 |
G1BlockOffsetTable* _bot; |
1374 | 179 |
|
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
180 |
// A set of code blobs (nmethods) whose code contains pointers into |
19339 | 181 |
// the region that owns this RSet. |
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
182 |
G1CodeRootSet _code_roots; |
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
183 |
|
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
184 |
Mutex _m; |
19339 | 185 |
|
1374 | 186 |
OtherRegionsTable _other_regions; |
187 |
||
188 |
public: |
|
35461 | 189 |
HeapRegionRemSet(G1BlockOffsetTable* bot, HeapRegion* hr); |
1374 | 190 |
|
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
3262
diff
changeset
|
191 |
static void setup_remset_size(); |
1374 | 192 |
|
25889
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24108
diff
changeset
|
193 |
bool is_empty() const { |
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24108
diff
changeset
|
194 |
return (strong_code_roots_list_length() == 0) && _other_regions.is_empty(); |
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24108
diff
changeset
|
195 |
} |
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24108
diff
changeset
|
196 |
|
28379
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
28030
diff
changeset
|
197 |
bool occupancy_less_or_equal_than(size_t occ) const { |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
28030
diff
changeset
|
198 |
return (strong_code_roots_list_length() == 0) && _other_regions.occupancy_less_or_equal_than(occ); |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
28030
diff
changeset
|
199 |
} |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
28030
diff
changeset
|
200 |
|
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
201 |
size_t occupied() { |
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
202 |
MutexLockerEx x(&_m, Mutex::_no_safepoint_check_flag); |
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
203 |
return occupied_locked(); |
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
204 |
} |
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
205 |
size_t occupied_locked() { |
1374 | 206 |
return _other_regions.occupied(); |
207 |
} |
|
208 |
size_t occ_fine() const { |
|
209 |
return _other_regions.occ_fine(); |
|
210 |
} |
|
211 |
size_t occ_coarse() const { |
|
212 |
return _other_regions.occ_coarse(); |
|
213 |
} |
|
214 |
size_t occ_sparse() const { |
|
215 |
return _other_regions.occ_sparse(); |
|
216 |
} |
|
217 |
||
218 |
static jint n_coarsenings() { return OtherRegionsTable::n_coarsenings(); } |
|
219 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
220 |
// Used in the sequential case. |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2881
diff
changeset
|
221 |
void add_reference(OopOrNarrowOopStar from) { |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
222 |
_other_regions.add_reference(from, 0); |
1374 | 223 |
} |
224 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
225 |
// Used in the parallel case. |
26850
515ff48cf5f0
8036116: Fix thread-id types in G1 remembered set implementations
brutisso
parents:
26422
diff
changeset
|
226 |
void add_reference(OopOrNarrowOopStar from, uint tid) { |
1374 | 227 |
_other_regions.add_reference(from, tid); |
228 |
} |
|
229 |
||
37414
2672ba9af0dc
8151386: Extract card live data out of G1ConcurrentMark
tschatzl
parents:
35461
diff
changeset
|
230 |
// Removes any entries in the remembered set shown by the given card live data to |
28030 | 231 |
// contain only dead objects. Not thread safe. |
37414
2672ba9af0dc
8151386: Extract card live data out of G1ConcurrentMark
tschatzl
parents:
35461
diff
changeset
|
232 |
void scrub(G1CardLiveData* live_data); |
1374 | 233 |
|
234 |
// The region is being reclaimed; clear its remset, and any mention of |
|
235 |
// entries for this region in other remsets. |
|
236 |
void clear(); |
|
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
237 |
void clear_locked(); |
1374 | 238 |
|
239 |
// The actual # of bytes this hr_remset takes up. |
|
19339 | 240 |
// Note also includes the strong code root set. |
1374 | 241 |
size_t mem_size() { |
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
242 |
MutexLockerEx x(&_m, Mutex::_no_safepoint_check_flag); |
1374 | 243 |
return _other_regions.mem_size() |
244 |
// This correction is necessary because the above includes the second |
|
245 |
// part. |
|
24108
dfc2242fc6b0
8040792: G1: Memory usage calculation uses sizeof(this) instead of sizeof(classname)
tschatzl
parents:
24102
diff
changeset
|
246 |
+ (sizeof(HeapRegionRemSet) - sizeof(OtherRegionsTable)) |
19339 | 247 |
+ strong_code_roots_mem_size(); |
1374 | 248 |
} |
249 |
||
250 |
// Returns the memory occupancy of all static data structures associated |
|
251 |
// with remembered sets. |
|
252 |
static size_t static_mem_size() { |
|
26422 | 253 |
return OtherRegionsTable::static_mem_size() + G1CodeRootSet::static_mem_size(); |
1374 | 254 |
} |
255 |
||
256 |
// Returns the memory occupancy of all free_list data structures associated |
|
257 |
// with remembered sets. |
|
258 |
static size_t fl_mem_size() { |
|
26422 | 259 |
return OtherRegionsTable::fl_mem_size(); |
1374 | 260 |
} |
261 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2881
diff
changeset
|
262 |
bool contains_reference(OopOrNarrowOopStar from) const { |
1374 | 263 |
return _other_regions.contains_reference(from); |
264 |
} |
|
19339 | 265 |
|
266 |
// Routines for managing the list of code roots that point into |
|
267 |
// the heap region that owns this RSet. |
|
268 |
void add_strong_code_root(nmethod* nm); |
|
26422 | 269 |
void add_strong_code_root_locked(nmethod* nm); |
19339 | 270 |
void remove_strong_code_root(nmethod* nm); |
271 |
||
272 |
// Applies blk->do_code_blob() to each of the entries in |
|
273 |
// the strong code roots list |
|
274 |
void strong_code_roots_do(CodeBlobClosure* blk) const; |
|
275 |
||
26422 | 276 |
void clean_strong_code_roots(HeapRegion* hr); |
277 |
||
19339 | 278 |
// Returns the number of elements in the strong code roots list |
25889
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24108
diff
changeset
|
279 |
size_t strong_code_roots_list_length() const { |
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
280 |
return _code_roots.length(); |
19339 | 281 |
} |
282 |
||
283 |
// Returns true if the strong code roots contains the given |
|
284 |
// nmethod. |
|
285 |
bool strong_code_roots_list_contains(nmethod* nm) { |
|
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
286 |
return _code_roots.contains(nm); |
19339 | 287 |
} |
288 |
||
289 |
// Returns the amount of memory, in bytes, currently |
|
290 |
// consumed by the strong code roots. |
|
291 |
size_t strong_code_roots_mem_size(); |
|
292 |
||
1374 | 293 |
// Called during a stop-world phase to perform any deferred cleanups. |
294 |
static void cleanup(); |
|
295 |
||
28030 | 296 |
static void invalidate_from_card_cache(uint start_idx, size_t num_regions) { |
35200
7802299b31e7
8145671: Rename FromCardCache to G1FromCardCache
tschatzl
parents:
35199
diff
changeset
|
297 |
G1FromCardCache::invalidate(start_idx, num_regions); |
1374 | 298 |
} |
299 |
||
300 |
#ifndef PRODUCT |
|
301 |
static void print_from_card_cache() { |
|
35200
7802299b31e7
8145671: Rename FromCardCache to G1FromCardCache
tschatzl
parents:
35199
diff
changeset
|
302 |
G1FromCardCache::print(); |
1374 | 303 |
} |
304 |
#endif |
|
305 |
||
8072 | 306 |
// These are wrappers for the similarly-named methods on |
307 |
// SparsePRT. Look at sparsePRT.hpp for more details. |
|
308 |
static void reset_for_cleanup_tasks(); |
|
309 |
void do_cleanup_work(HRRSCleanupTask* hrrs_cleanup_task); |
|
310 |
static void finish_cleanup_task(HRRSCleanupTask* hrrs_cleanup_task); |
|
311 |
||
1374 | 312 |
// Run unit tests. |
313 |
#ifndef PRODUCT |
|
314 |
static void test(); |
|
315 |
#endif |
|
316 |
}; |
|
317 |
||
17108
cf72dcf9a8f2
8011724: G1: Stack allocate instances of HeapRegionRemSetIterator
johnc
parents:
13335
diff
changeset
|
318 |
class HeapRegionRemSetIterator : public StackObj { |
24101
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
319 |
private: |
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
320 |
// The region RSet over which we are iterating. |
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
321 |
HeapRegionRemSet* _hrrs; |
1374 | 322 |
|
323 |
// Local caching of HRRS fields. |
|
324 |
const BitMap* _coarse_map; |
|
325 |
||
35461 | 326 |
G1BlockOffsetTable* _bot; |
1374 | 327 |
G1CollectedHeap* _g1h; |
328 |
||
24101
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
329 |
// The number of cards yielded since initialization. |
1374 | 330 |
size_t _n_yielded_fine; |
331 |
size_t _n_yielded_coarse; |
|
332 |
size_t _n_yielded_sparse; |
|
333 |
||
24101
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
334 |
// Indicates what granularity of table that we are currently iterating over. |
17108
cf72dcf9a8f2
8011724: G1: Stack allocate instances of HeapRegionRemSetIterator
johnc
parents:
13335
diff
changeset
|
335 |
// We start iterating over the sparse table, progress to the fine grain |
cf72dcf9a8f2
8011724: G1: Stack allocate instances of HeapRegionRemSetIterator
johnc
parents:
13335
diff
changeset
|
336 |
// table, and then finish with the coarse table. |
1374 | 337 |
enum IterState { |
338 |
Sparse, |
|
339 |
Fine, |
|
340 |
Coarse |
|
341 |
}; |
|
342 |
IterState _is; |
|
343 |
||
24101
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
344 |
// For both Coarse and Fine remembered set iteration this contains the |
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
345 |
// first card number of the heap region we currently iterate over. |
1374 | 346 |
size_t _cur_region_card_offset; |
347 |
||
24101
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
348 |
// Current region index for the Coarse remembered set iteration. |
10677
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10000
diff
changeset
|
349 |
int _coarse_cur_region_index; |
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10000
diff
changeset
|
350 |
size_t _coarse_cur_region_cur_card; |
1374 | 351 |
|
352 |
bool coarse_has_next(size_t& card_index); |
|
353 |
||
24101
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
354 |
// The PRT we are currently iterating over. |
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
355 |
PerRegionTable* _fine_cur_prt; |
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
356 |
// Card offset within the current PRT. |
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
357 |
size_t _cur_card_in_prt; |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12381
diff
changeset
|
358 |
|
24101
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
359 |
// Update internal variables when switching to the given PRT. |
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
360 |
void switch_to_prt(PerRegionTable* prt); |
1374 | 361 |
bool fine_has_next(); |
362 |
bool fine_has_next(size_t& card_index); |
|
363 |
||
24101
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
364 |
// The Sparse remembered set iterator. |
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
365 |
SparsePRTIter _sparse_iter; |
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
366 |
|
bd1a2ee20760
8037344: Use the "next" field to iterate over fine remembered instead of using the hash table
tschatzl
parents:
24099
diff
changeset
|
367 |
public: |
23451
ed2b8bb28fed
8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents:
22234
diff
changeset
|
368 |
HeapRegionRemSetIterator(HeapRegionRemSet* hrrs); |
1374 | 369 |
|
370 |
// If there remains one or more cards to be yielded, returns true and |
|
371 |
// sets "card_index" to one of those cards (which is then considered |
|
372 |
// yielded.) Otherwise, returns false (and leaves "card_index" |
|
373 |
// undefined.) |
|
374 |
bool has_next(size_t& card_index); |
|
375 |
||
376 |
size_t n_yielded_fine() { return _n_yielded_fine; } |
|
377 |
size_t n_yielded_coarse() { return _n_yielded_coarse; } |
|
378 |
size_t n_yielded_sparse() { return _n_yielded_sparse; } |
|
379 |
size_t n_yielded() { |
|
380 |
return n_yielded_fine() + n_yielded_coarse() + n_yielded_sparse(); |
|
381 |
} |
|
382 |
}; |
|
383 |
||
30764 | 384 |
#endif // SHARE_VM_GC_G1_HEAPREGIONREMSET_HPP |