author | minqi |
Fri, 19 Apr 2013 11:08:52 -0700 | |
changeset 17026 | 72b2233861f1 |
parent 13752 | 92f03fcf979a |
child 17031 | 9a576749065b |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
17026
72b2233861f1
8010992: Remove calls to global ::operator new[] and new
minqi
parents:
13752
diff
changeset
|
2 |
* Copyright (c) 2001, 2013, 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 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "gc_implementation/g1/concurrentG1Refine.hpp" |
|
27 |
#include "gc_implementation/g1/g1BlockOffsetTable.inline.hpp" |
|
28 |
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp" |
|
29 |
#include "gc_implementation/g1/heapRegionRemSet.hpp" |
|
30 |
#include "gc_implementation/g1/heapRegionSeq.inline.hpp" |
|
31 |
#include "memory/allocation.hpp" |
|
32 |
#include "memory/space.inline.hpp" |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
33 |
#include "oops/oop.inline.hpp" |
7397 | 34 |
#include "utilities/bitMap.inline.hpp" |
35 |
#include "utilities/globalDefinitions.hpp" |
|
1374 | 36 |
|
13195 | 37 |
class PerRegionTable: public CHeapObj<mtGC> { |
1374 | 38 |
friend class OtherRegionsTable; |
39 |
friend class HeapRegionRemSetIterator; |
|
40 |
||
41 |
HeapRegion* _hr; |
|
42 |
BitMap _bm; |
|
43 |
jint _occupied; |
|
44 |
||
13335 | 45 |
// next pointer for free/allocated 'all' list |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
46 |
PerRegionTable* _next; |
1374 | 47 |
|
13335 | 48 |
// prev pointer for the allocated 'all' list |
49 |
PerRegionTable* _prev; |
|
1374 | 50 |
|
13335 | 51 |
// next pointer in collision list |
52 |
PerRegionTable * _collision_list_next; |
|
1374 | 53 |
|
13335 | 54 |
// Global free list of PRTs |
55 |
static PerRegionTable* _free_list; |
|
1374 | 56 |
|
57 |
protected: |
|
58 |
// We need access in order to union things into the base table. |
|
59 |
BitMap* bm() { return &_bm; } |
|
60 |
||
61 |
void recount_occupied() { |
|
62 |
_occupied = (jint) bm()->count_one_bits(); |
|
63 |
} |
|
64 |
||
65 |
PerRegionTable(HeapRegion* hr) : |
|
66 |
_hr(hr), |
|
67 |
_occupied(0), |
|
13335 | 68 |
_bm(HeapRegion::CardsPerRegion, false /* in-resource-area */), |
69 |
_collision_list_next(NULL), _next(NULL), _prev(NULL) |
|
1374 | 70 |
{} |
71 |
||
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
72 |
void add_card_work(CardIdx_t from_card, bool par) { |
1374 | 73 |
if (!_bm.at(from_card)) { |
74 |
if (par) { |
|
75 |
if (_bm.par_at_put(from_card, 1)) { |
|
76 |
Atomic::inc(&_occupied); |
|
77 |
} |
|
78 |
} else { |
|
79 |
_bm.at_put(from_card, 1); |
|
80 |
_occupied++; |
|
81 |
} |
|
82 |
} |
|
83 |
} |
|
84 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
85 |
void add_reference_work(OopOrNarrowOopStar from, bool par) { |
1374 | 86 |
// Must make this robust in case "from" is not in "_hr", because of |
87 |
// concurrency. |
|
88 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
89 |
if (G1TraceHeapRegionRememberedSet) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
90 |
gclog_or_tty->print_cr(" PRT::Add_reference_work(" PTR_FORMAT "->" PTR_FORMAT").", |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
91 |
from, |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
92 |
UseCompressedOops |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
93 |
? oopDesc::load_decode_heap_oop((narrowOop*)from) |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
94 |
: oopDesc::load_decode_heap_oop((oop*)from)); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
95 |
} |
1374 | 96 |
|
97 |
HeapRegion* loc_hr = hr(); |
|
98 |
// If the test below fails, then this table was reused concurrently |
|
99 |
// with this operation. This is OK, since the old table was coarsened, |
|
100 |
// and adding a bit to the new table is never incorrect. |
|
10767
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
101 |
// If the table used to belong to a continues humongous region and is |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
102 |
// now reused for the corresponding start humongous region, we need to |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
103 |
// make sure that we detect this. Thus, we call is_in_reserved_raw() |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
104 |
// instead of just is_in_reserved() here. |
4ce4a9b10523
7097516: G1: assert(0<= from_card && from_card<HeapRegion::CardsPerRegion) failed: Must be in range.
brutisso
parents:
10677
diff
changeset
|
105 |
if (loc_hr->is_in_reserved_raw(from)) { |
1374 | 106 |
size_t hw_offset = pointer_delta((HeapWord*)from, loc_hr->bottom()); |
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
107 |
CardIdx_t from_card = (CardIdx_t) |
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
108 |
hw_offset >> (CardTableModRefBS::card_shift - LogHeapWordSize); |
1374 | 109 |
|
10677
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10243
diff
changeset
|
110 |
assert(0 <= from_card && (size_t)from_card < HeapRegion::CardsPerRegion, |
3697
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3262
diff
changeset
|
111 |
"Must be in range."); |
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
112 |
add_card_work(from_card, par); |
1374 | 113 |
} |
114 |
} |
|
115 |
||
116 |
public: |
|
117 |
||
118 |
HeapRegion* hr() const { return _hr; } |
|
119 |
||
120 |
jint occupied() const { |
|
121 |
// Overkill, but if we ever need it... |
|
122 |
// guarantee(_occupied == _bm.count_one_bits(), "Check"); |
|
123 |
return _occupied; |
|
124 |
} |
|
125 |
||
13335 | 126 |
void init(HeapRegion* hr, bool clear_links_to_all_list) { |
127 |
if (clear_links_to_all_list) { |
|
128 |
set_next(NULL); |
|
129 |
set_prev(NULL); |
|
130 |
} |
|
1374 | 131 |
_hr = hr; |
13335 | 132 |
_collision_list_next = NULL; |
1374 | 133 |
_occupied = 0; |
134 |
_bm.clear(); |
|
135 |
} |
|
136 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
137 |
void add_reference(OopOrNarrowOopStar from) { |
1374 | 138 |
add_reference_work(from, /*parallel*/ true); |
139 |
} |
|
140 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
141 |
void seq_add_reference(OopOrNarrowOopStar from) { |
1374 | 142 |
add_reference_work(from, /*parallel*/ false); |
143 |
} |
|
144 |
||
145 |
void scrub(CardTableModRefBS* ctbs, BitMap* card_bm) { |
|
146 |
HeapWord* hr_bot = hr()->bottom(); |
|
1676
d80e69372634
6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents:
1374
diff
changeset
|
147 |
size_t hr_first_card_index = ctbs->index_for(hr_bot); |
1374 | 148 |
bm()->set_intersection_at_offset(*card_bm, hr_first_card_index); |
149 |
recount_occupied(); |
|
150 |
} |
|
151 |
||
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
152 |
void add_card(CardIdx_t from_card_index) { |
1374 | 153 |
add_card_work(from_card_index, /*parallel*/ true); |
154 |
} |
|
155 |
||
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
156 |
void seq_add_card(CardIdx_t from_card_index) { |
1374 | 157 |
add_card_work(from_card_index, /*parallel*/ false); |
158 |
} |
|
159 |
||
160 |
// (Destructively) union the bitmap of the current table into the given |
|
161 |
// bitmap (which is assumed to be of the same size.) |
|
162 |
void union_bitmap_into(BitMap* bm) { |
|
163 |
bm->set_union(_bm); |
|
164 |
} |
|
165 |
||
166 |
// Mem size in bytes. |
|
167 |
size_t mem_size() const { |
|
168 |
return sizeof(this) + _bm.size_in_words() * HeapWordSize; |
|
169 |
} |
|
170 |
||
171 |
// Requires "from" to be in "hr()". |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
172 |
bool contains_reference(OopOrNarrowOopStar from) const { |
1374 | 173 |
assert(hr()->is_in_reserved(from), "Precondition."); |
174 |
size_t card_ind = pointer_delta(from, hr()->bottom(), |
|
175 |
CardTableModRefBS::card_size); |
|
176 |
return _bm.at(card_ind); |
|
177 |
} |
|
178 |
||
13335 | 179 |
// Bulk-free the PRTs from prt to last, assumes that they are |
180 |
// linked together using their _next field. |
|
181 |
static void bulk_free(PerRegionTable* prt, PerRegionTable* last) { |
|
1374 | 182 |
while (true) { |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
183 |
PerRegionTable* fl = _free_list; |
13335 | 184 |
last->set_next(fl); |
185 |
PerRegionTable* res = (PerRegionTable*) Atomic::cmpxchg_ptr(prt, &_free_list, fl); |
|
186 |
if (res == fl) { |
|
187 |
return; |
|
188 |
} |
|
1374 | 189 |
} |
190 |
ShouldNotReachHere(); |
|
191 |
} |
|
192 |
||
13335 | 193 |
static void free(PerRegionTable* prt) { |
194 |
bulk_free(prt, prt); |
|
195 |
} |
|
196 |
||
197 |
// Returns an initialized PerRegionTable instance. |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
198 |
static PerRegionTable* alloc(HeapRegion* hr) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
199 |
PerRegionTable* fl = _free_list; |
1374 | 200 |
while (fl != NULL) { |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
201 |
PerRegionTable* nxt = fl->next(); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
202 |
PerRegionTable* res = |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
203 |
(PerRegionTable*) |
1374 | 204 |
Atomic::cmpxchg_ptr(nxt, &_free_list, fl); |
205 |
if (res == fl) { |
|
13335 | 206 |
fl->init(hr, true); |
1374 | 207 |
return fl; |
208 |
} else { |
|
209 |
fl = _free_list; |
|
210 |
} |
|
211 |
} |
|
212 |
assert(fl == NULL, "Loop condition."); |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
213 |
return new PerRegionTable(hr); |
1374 | 214 |
} |
215 |
||
13335 | 216 |
PerRegionTable* next() const { return _next; } |
217 |
void set_next(PerRegionTable* next) { _next = next; } |
|
218 |
PerRegionTable* prev() const { return _prev; } |
|
219 |
void set_prev(PerRegionTable* prev) { _prev = prev; } |
|
220 |
||
221 |
// Accessor and Modification routines for the pointer for the |
|
222 |
// singly linked collision list that links the PRTs within the |
|
223 |
// OtherRegionsTable::_fine_grain_regions hash table. |
|
224 |
// |
|
225 |
// It might be useful to also make the collision list doubly linked |
|
226 |
// to avoid iteration over the collisions list during scrubbing/deletion. |
|
227 |
// OTOH there might not be many collisions. |
|
228 |
||
229 |
PerRegionTable* collision_list_next() const { |
|
230 |
return _collision_list_next; |
|
231 |
} |
|
232 |
||
233 |
void set_collision_list_next(PerRegionTable* next) { |
|
234 |
_collision_list_next = next; |
|
235 |
} |
|
236 |
||
237 |
PerRegionTable** collision_list_next_addr() { |
|
238 |
return &_collision_list_next; |
|
239 |
} |
|
240 |
||
1374 | 241 |
static size_t fl_mem_size() { |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
242 |
PerRegionTable* cur = _free_list; |
1374 | 243 |
size_t res = 0; |
244 |
while (cur != NULL) { |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
245 |
res += sizeof(PerRegionTable); |
1374 | 246 |
cur = cur->next(); |
247 |
} |
|
248 |
return res; |
|
249 |
} |
|
250 |
}; |
|
251 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
252 |
PerRegionTable* PerRegionTable::_free_list = NULL; |
1374 | 253 |
|
254 |
size_t OtherRegionsTable::_max_fine_entries = 0; |
|
255 |
size_t OtherRegionsTable::_mod_max_fine_entries_mask = 0; |
|
256 |
size_t OtherRegionsTable::_fine_eviction_stride = 0; |
|
257 |
size_t OtherRegionsTable::_fine_eviction_sample_size = 0; |
|
258 |
||
259 |
OtherRegionsTable::OtherRegionsTable(HeapRegion* hr) : |
|
260 |
_g1h(G1CollectedHeap::heap()), |
|
261 |
_m(Mutex::leaf, "An OtherRegionsTable lock", true), |
|
262 |
_hr(hr), |
|
263 |
_coarse_map(G1CollectedHeap::heap()->max_regions(), |
|
264 |
false /* in-resource-area */), |
|
265 |
_fine_grain_regions(NULL), |
|
13335 | 266 |
_first_all_fine_prts(NULL), _last_all_fine_prts(NULL), |
1374 | 267 |
_n_fine_entries(0), _n_coarse_entries(0), |
268 |
_fine_eviction_start(0), |
|
269 |
_sparse_table(hr) |
|
270 |
{ |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
271 |
typedef PerRegionTable* PerRegionTablePtr; |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
272 |
|
1374 | 273 |
if (_max_fine_entries == 0) { |
274 |
assert(_mod_max_fine_entries_mask == 0, "Both or none."); |
|
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
275 |
size_t max_entries_log = (size_t)log2_long((jlong)G1RSetRegionEntries); |
13752
92f03fcf979a
7197906: BlockOffsetArray::power_to_cards_back() needs to handle > 32 bit shifts
brutisso
parents:
13335
diff
changeset
|
276 |
_max_fine_entries = (size_t)1 << max_entries_log; |
1374 | 277 |
_mod_max_fine_entries_mask = _max_fine_entries - 1; |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
278 |
|
1374 | 279 |
assert(_fine_eviction_sample_size == 0 |
280 |
&& _fine_eviction_stride == 0, "All init at same time."); |
|
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
281 |
_fine_eviction_sample_size = MAX2((size_t)4, max_entries_log); |
1374 | 282 |
_fine_eviction_stride = _max_fine_entries / _fine_eviction_sample_size; |
283 |
} |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
284 |
|
17026
72b2233861f1
8010992: Remove calls to global ::operator new[] and new
minqi
parents:
13752
diff
changeset
|
285 |
_fine_grain_regions = NEW_C_HEAP_ARRAY3(PerRegionTablePtr, _max_fine_entries, |
72b2233861f1
8010992: Remove calls to global ::operator new[] and new
minqi
parents:
13752
diff
changeset
|
286 |
mtGC, 0, AllocFailStrategy::RETURN_NULL); |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
287 |
|
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
288 |
if (_fine_grain_regions == NULL) { |
1374 | 289 |
vm_exit_out_of_memory(sizeof(void*)*_max_fine_entries, |
290 |
"Failed to allocate _fine_grain_entries."); |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
291 |
} |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
292 |
|
1374 | 293 |
for (size_t i = 0; i < _max_fine_entries; i++) { |
294 |
_fine_grain_regions[i] = NULL; |
|
295 |
} |
|
296 |
} |
|
297 |
||
13335 | 298 |
void OtherRegionsTable::link_to_all(PerRegionTable* prt) { |
299 |
// We always append to the beginning of the list for convenience; |
|
300 |
// the order of entries in this list does not matter. |
|
301 |
if (_first_all_fine_prts != NULL) { |
|
302 |
assert(_first_all_fine_prts->prev() == NULL, "invariant"); |
|
303 |
_first_all_fine_prts->set_prev(prt); |
|
304 |
prt->set_next(_first_all_fine_prts); |
|
305 |
} else { |
|
306 |
// this is the first element we insert. Adjust the "last" pointer |
|
307 |
_last_all_fine_prts = prt; |
|
308 |
assert(prt->next() == NULL, "just checking"); |
|
309 |
} |
|
310 |
// the new element is always the first element without a predecessor |
|
311 |
prt->set_prev(NULL); |
|
312 |
_first_all_fine_prts = prt; |
|
313 |
||
314 |
assert(prt->prev() == NULL, "just checking"); |
|
315 |
assert(_first_all_fine_prts == prt, "just checking"); |
|
316 |
assert((_first_all_fine_prts == NULL && _last_all_fine_prts == NULL) || |
|
317 |
(_first_all_fine_prts != NULL && _last_all_fine_prts != NULL), |
|
318 |
"just checking"); |
|
319 |
assert(_last_all_fine_prts == NULL || _last_all_fine_prts->next() == NULL, |
|
320 |
"just checking"); |
|
321 |
assert(_first_all_fine_prts == NULL || _first_all_fine_prts->prev() == NULL, |
|
322 |
"just checking"); |
|
323 |
} |
|
324 |
||
325 |
void OtherRegionsTable::unlink_from_all(PerRegionTable* prt) { |
|
326 |
if (prt->prev() != NULL) { |
|
327 |
assert(_first_all_fine_prts != prt, "just checking"); |
|
328 |
prt->prev()->set_next(prt->next()); |
|
329 |
// removing the last element in the list? |
|
330 |
if (_last_all_fine_prts == prt) { |
|
331 |
_last_all_fine_prts = prt->prev(); |
|
332 |
} |
|
333 |
} else { |
|
334 |
assert(_first_all_fine_prts == prt, "just checking"); |
|
335 |
_first_all_fine_prts = prt->next(); |
|
336 |
// list is empty now? |
|
337 |
if (_first_all_fine_prts == NULL) { |
|
338 |
_last_all_fine_prts = NULL; |
|
339 |
} |
|
340 |
} |
|
341 |
||
342 |
if (prt->next() != NULL) { |
|
343 |
prt->next()->set_prev(prt->prev()); |
|
344 |
} |
|
345 |
||
346 |
prt->set_next(NULL); |
|
347 |
prt->set_prev(NULL); |
|
348 |
||
349 |
assert((_first_all_fine_prts == NULL && _last_all_fine_prts == NULL) || |
|
350 |
(_first_all_fine_prts != NULL && _last_all_fine_prts != NULL), |
|
351 |
"just checking"); |
|
352 |
assert(_last_all_fine_prts == NULL || _last_all_fine_prts->next() == NULL, |
|
353 |
"just checking"); |
|
354 |
assert(_first_all_fine_prts == NULL || _first_all_fine_prts->prev() == NULL, |
|
355 |
"just checking"); |
|
356 |
} |
|
357 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
358 |
int** OtherRegionsTable::_from_card_cache = NULL; |
1374 | 359 |
size_t OtherRegionsTable::_from_card_cache_max_regions = 0; |
360 |
size_t OtherRegionsTable::_from_card_cache_mem_size = 0; |
|
361 |
||
362 |
void OtherRegionsTable::init_from_card_cache(size_t max_regions) { |
|
363 |
_from_card_cache_max_regions = max_regions; |
|
364 |
||
365 |
int n_par_rs = HeapRegionRemSet::num_par_rem_sets(); |
|
13195 | 366 |
_from_card_cache = NEW_C_HEAP_ARRAY(int*, n_par_rs, mtGC); |
1374 | 367 |
for (int i = 0; i < n_par_rs; i++) { |
13195 | 368 |
_from_card_cache[i] = NEW_C_HEAP_ARRAY(int, max_regions, mtGC); |
1374 | 369 |
for (size_t j = 0; j < max_regions; j++) { |
370 |
_from_card_cache[i][j] = -1; // An invalid value. |
|
371 |
} |
|
372 |
} |
|
373 |
_from_card_cache_mem_size = n_par_rs * max_regions * sizeof(int); |
|
374 |
} |
|
375 |
||
376 |
void OtherRegionsTable::shrink_from_card_cache(size_t new_n_regs) { |
|
377 |
for (int i = 0; i < HeapRegionRemSet::num_par_rem_sets(); i++) { |
|
378 |
assert(new_n_regs <= _from_card_cache_max_regions, "Must be within max."); |
|
379 |
for (size_t j = new_n_regs; j < _from_card_cache_max_regions; j++) { |
|
380 |
_from_card_cache[i][j] = -1; // An invalid value. |
|
381 |
} |
|
382 |
} |
|
383 |
} |
|
384 |
||
385 |
#ifndef PRODUCT |
|
386 |
void OtherRegionsTable::print_from_card_cache() { |
|
387 |
for (int i = 0; i < HeapRegionRemSet::num_par_rem_sets(); i++) { |
|
388 |
for (size_t j = 0; j < _from_card_cache_max_regions; j++) { |
|
389 |
gclog_or_tty->print_cr("_from_card_cache[%d][%d] = %d.", |
|
390 |
i, j, _from_card_cache[i][j]); |
|
391 |
} |
|
392 |
} |
|
393 |
} |
|
394 |
#endif |
|
395 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
396 |
void OtherRegionsTable::add_reference(OopOrNarrowOopStar from, int tid) { |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
397 |
size_t cur_hrs_ind = (size_t) hr()->hrs_index(); |
1374 | 398 |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
399 |
if (G1TraceHeapRegionRememberedSet) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
400 |
gclog_or_tty->print_cr("ORT::add_reference_work(" PTR_FORMAT "->" PTR_FORMAT ").", |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
401 |
from, |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
402 |
UseCompressedOops |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
403 |
? oopDesc::load_decode_heap_oop((narrowOop*)from) |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
404 |
: oopDesc::load_decode_heap_oop((oop*)from)); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
405 |
} |
1374 | 406 |
|
407 |
int from_card = (int)(uintptr_t(from) >> CardTableModRefBS::card_shift); |
|
408 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
409 |
if (G1TraceHeapRegionRememberedSet) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
410 |
gclog_or_tty->print_cr("Table for [" PTR_FORMAT "...): card %d (cache = %d)", |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
411 |
hr()->bottom(), from_card, |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
412 |
_from_card_cache[tid][cur_hrs_ind]); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
413 |
} |
1374 | 414 |
|
415 |
if (from_card == _from_card_cache[tid][cur_hrs_ind]) { |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
416 |
if (G1TraceHeapRegionRememberedSet) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
417 |
gclog_or_tty->print_cr(" from-card cache hit."); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
418 |
} |
1374 | 419 |
assert(contains_reference(from), "We just added it!"); |
420 |
return; |
|
421 |
} else { |
|
422 |
_from_card_cache[tid][cur_hrs_ind] = from_card; |
|
423 |
} |
|
424 |
||
425 |
// Note that this may be a continued H region. |
|
426 |
HeapRegion* from_hr = _g1h->heap_region_containing_raw(from); |
|
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
427 |
RegionIdx_t from_hrs_ind = (RegionIdx_t) from_hr->hrs_index(); |
1374 | 428 |
|
429 |
// If the region is already coarsened, return. |
|
430 |
if (_coarse_map.at(from_hrs_ind)) { |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
431 |
if (G1TraceHeapRegionRememberedSet) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
432 |
gclog_or_tty->print_cr(" coarse map hit."); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
433 |
} |
1374 | 434 |
assert(contains_reference(from), "We just added it!"); |
435 |
return; |
|
436 |
} |
|
437 |
||
438 |
// Otherwise find a per-region table to add it to. |
|
439 |
size_t ind = from_hrs_ind & _mod_max_fine_entries_mask; |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
440 |
PerRegionTable* prt = find_region_table(ind, from_hr); |
1374 | 441 |
if (prt == NULL) { |
442 |
MutexLockerEx x(&_m, Mutex::_no_safepoint_check_flag); |
|
443 |
// Confirm that it's really not there... |
|
444 |
prt = find_region_table(ind, from_hr); |
|
445 |
if (prt == NULL) { |
|
446 |
||
447 |
uintptr_t from_hr_bot_card_index = |
|
448 |
uintptr_t(from_hr->bottom()) |
|
449 |
>> CardTableModRefBS::card_shift; |
|
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
450 |
CardIdx_t card_index = from_card - from_hr_bot_card_index; |
10677
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10243
diff
changeset
|
451 |
assert(0 <= card_index && (size_t)card_index < HeapRegion::CardsPerRegion, |
1374 | 452 |
"Must be in range."); |
453 |
if (G1HRRSUseSparseTable && |
|
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
454 |
_sparse_table.add_card(from_hrs_ind, card_index)) { |
1374 | 455 |
if (G1RecordHRRSOops) { |
456 |
HeapRegionRemSet::record(hr(), from); |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
457 |
if (G1TraceHeapRegionRememberedSet) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
458 |
gclog_or_tty->print(" Added card " PTR_FORMAT " to region " |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
459 |
"[" PTR_FORMAT "...) for ref " PTR_FORMAT ".\n", |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
460 |
align_size_down(uintptr_t(from), |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
461 |
CardTableModRefBS::card_size), |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
462 |
hr()->bottom(), from); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
463 |
} |
1374 | 464 |
} |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
465 |
if (G1TraceHeapRegionRememberedSet) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
466 |
gclog_or_tty->print_cr(" added card to sparse table."); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
467 |
} |
1374 | 468 |
assert(contains_reference_locked(from), "We just added it!"); |
469 |
return; |
|
470 |
} else { |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
471 |
if (G1TraceHeapRegionRememberedSet) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
472 |
gclog_or_tty->print_cr(" [tid %d] sparse table entry " |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
473 |
"overflow(f: %d, t: %d)", |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
474 |
tid, from_hrs_ind, cur_hrs_ind); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
475 |
} |
1374 | 476 |
} |
477 |
||
478 |
if (_n_fine_entries == _max_fine_entries) { |
|
479 |
prt = delete_region_table(); |
|
13335 | 480 |
// There is no need to clear the links to the 'all' list here: |
481 |
// prt will be reused immediately, i.e. remain in the 'all' list. |
|
482 |
prt->init(from_hr, false /* clear_links_to_all_list */); |
|
1374 | 483 |
} else { |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
484 |
prt = PerRegionTable::alloc(from_hr); |
13335 | 485 |
link_to_all(prt); |
1374 | 486 |
} |
487 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
488 |
PerRegionTable* first_prt = _fine_grain_regions[ind]; |
13335 | 489 |
prt->set_collision_list_next(first_prt); |
1374 | 490 |
_fine_grain_regions[ind] = prt; |
491 |
_n_fine_entries++; |
|
492 |
||
493 |
if (G1HRRSUseSparseTable) { |
|
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
494 |
// Transfer from sparse to fine-grain. |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
495 |
SparsePRTEntry *sprt_entry = _sparse_table.get_entry(from_hrs_ind); |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
496 |
assert(sprt_entry != NULL, "There should have been an entry"); |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
497 |
for (int i = 0; i < SparsePRTEntry::cards_num(); i++) { |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
498 |
CardIdx_t c = sprt_entry->card(i); |
1374 | 499 |
if (c != SparsePRTEntry::NullEntry) { |
500 |
prt->add_card(c); |
|
501 |
} |
|
502 |
} |
|
503 |
// Now we can delete the sparse entry. |
|
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
504 |
bool res = _sparse_table.delete_entry(from_hrs_ind); |
1374 | 505 |
assert(res, "It should have been there."); |
506 |
} |
|
507 |
} |
|
508 |
assert(prt != NULL && prt->hr() == from_hr, "consequence"); |
|
509 |
} |
|
510 |
// Note that we can't assert "prt->hr() == from_hr", because of the |
|
511 |
// possibility of concurrent reuse. But see head comment of |
|
512 |
// OtherRegionsTable for why this is OK. |
|
513 |
assert(prt != NULL, "Inv"); |
|
514 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
515 |
prt->add_reference(from); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
516 |
|
1374 | 517 |
if (G1RecordHRRSOops) { |
518 |
HeapRegionRemSet::record(hr(), from); |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
519 |
if (G1TraceHeapRegionRememberedSet) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
520 |
gclog_or_tty->print("Added card " PTR_FORMAT " to region " |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
521 |
"[" PTR_FORMAT "...) for ref " PTR_FORMAT ".\n", |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
522 |
align_size_down(uintptr_t(from), |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
523 |
CardTableModRefBS::card_size), |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
524 |
hr()->bottom(), from); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
525 |
} |
1374 | 526 |
} |
527 |
assert(contains_reference(from), "We just added it!"); |
|
528 |
} |
|
529 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
530 |
PerRegionTable* |
1374 | 531 |
OtherRegionsTable::find_region_table(size_t ind, HeapRegion* hr) const { |
532 |
assert(0 <= ind && ind < _max_fine_entries, "Preconditions."); |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
533 |
PerRegionTable* prt = _fine_grain_regions[ind]; |
1374 | 534 |
while (prt != NULL && prt->hr() != hr) { |
13335 | 535 |
prt = prt->collision_list_next(); |
1374 | 536 |
} |
537 |
// Loop postcondition is the method postcondition. |
|
538 |
return prt; |
|
539 |
} |
|
540 |
||
541 |
jint OtherRegionsTable::_n_coarsenings = 0; |
|
542 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
543 |
PerRegionTable* OtherRegionsTable::delete_region_table() { |
1374 | 544 |
assert(_m.owned_by_self(), "Precondition"); |
545 |
assert(_n_fine_entries == _max_fine_entries, "Precondition"); |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
546 |
PerRegionTable* max = NULL; |
1374 | 547 |
jint max_occ = 0; |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
548 |
PerRegionTable** max_prev; |
1374 | 549 |
size_t max_ind; |
550 |
||
551 |
size_t i = _fine_eviction_start; |
|
552 |
for (size_t k = 0; k < _fine_eviction_sample_size; k++) { |
|
553 |
size_t ii = i; |
|
554 |
// Make sure we get a non-NULL sample. |
|
555 |
while (_fine_grain_regions[ii] == NULL) { |
|
556 |
ii++; |
|
557 |
if (ii == _max_fine_entries) ii = 0; |
|
558 |
guarantee(ii != i, "We must find one."); |
|
559 |
} |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
560 |
PerRegionTable** prev = &_fine_grain_regions[ii]; |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
561 |
PerRegionTable* cur = *prev; |
1374 | 562 |
while (cur != NULL) { |
563 |
jint cur_occ = cur->occupied(); |
|
564 |
if (max == NULL || cur_occ > max_occ) { |
|
565 |
max = cur; |
|
566 |
max_prev = prev; |
|
567 |
max_ind = i; |
|
568 |
max_occ = cur_occ; |
|
569 |
} |
|
13335 | 570 |
prev = cur->collision_list_next_addr(); |
571 |
cur = cur->collision_list_next(); |
|
1374 | 572 |
} |
573 |
i = i + _fine_eviction_stride; |
|
574 |
if (i >= _n_fine_entries) i = i - _n_fine_entries; |
|
575 |
} |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
576 |
|
1374 | 577 |
_fine_eviction_start++; |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
578 |
|
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
579 |
if (_fine_eviction_start >= _n_fine_entries) { |
1374 | 580 |
_fine_eviction_start -= _n_fine_entries; |
581 |
} |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
582 |
|
1374 | 583 |
guarantee(max != NULL, "Since _n_fine_entries > 0"); |
584 |
||
585 |
// Set the corresponding coarse bit. |
|
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
586 |
size_t max_hrs_index = (size_t) max->hr()->hrs_index(); |
1374 | 587 |
if (!_coarse_map.at(max_hrs_index)) { |
588 |
_coarse_map.at_put(max_hrs_index, true); |
|
589 |
_n_coarse_entries++; |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
590 |
if (G1TraceHeapRegionRememberedSet) { |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
591 |
gclog_or_tty->print("Coarsened entry in region [" PTR_FORMAT "...] " |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
592 |
"for region [" PTR_FORMAT "...] (%d coarse entries).\n", |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
593 |
hr()->bottom(), |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
594 |
max->hr()->bottom(), |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
595 |
_n_coarse_entries); |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
596 |
} |
1374 | 597 |
} |
598 |
||
599 |
// Unsplice. |
|
13335 | 600 |
*max_prev = max->collision_list_next(); |
1374 | 601 |
Atomic::inc(&_n_coarsenings); |
602 |
_n_fine_entries--; |
|
603 |
return max; |
|
604 |
} |
|
605 |
||
606 |
||
607 |
// At present, this must be called stop-world single-threaded. |
|
608 |
void OtherRegionsTable::scrub(CardTableModRefBS* ctbs, |
|
609 |
BitMap* region_bm, BitMap* card_bm) { |
|
610 |
// First eliminated garbage regions from the coarse map. |
|
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
611 |
if (G1RSScrubVerbose) { |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
612 |
gclog_or_tty->print_cr("Scrubbing region %u:", hr()->hrs_index()); |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
613 |
} |
1374 | 614 |
|
615 |
assert(_coarse_map.size() == region_bm->size(), "Precondition"); |
|
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
616 |
if (G1RSScrubVerbose) { |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
617 |
gclog_or_tty->print(" Coarse map: before = "SIZE_FORMAT"...", |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
618 |
_n_coarse_entries); |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
619 |
} |
1374 | 620 |
_coarse_map.set_intersection(*region_bm); |
621 |
_n_coarse_entries = _coarse_map.count_one_bits(); |
|
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
622 |
if (G1RSScrubVerbose) { |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
623 |
gclog_or_tty->print_cr(" after = "SIZE_FORMAT".", _n_coarse_entries); |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
624 |
} |
1374 | 625 |
|
626 |
// Now do the fine-grained maps. |
|
627 |
for (size_t i = 0; i < _max_fine_entries; i++) { |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
628 |
PerRegionTable* cur = _fine_grain_regions[i]; |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
629 |
PerRegionTable** prev = &_fine_grain_regions[i]; |
1374 | 630 |
while (cur != NULL) { |
13335 | 631 |
PerRegionTable* nxt = cur->collision_list_next(); |
1374 | 632 |
// If the entire region is dead, eliminate. |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
633 |
if (G1RSScrubVerbose) { |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
634 |
gclog_or_tty->print_cr(" For other region %u:", |
9989 | 635 |
cur->hr()->hrs_index()); |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
636 |
} |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
637 |
if (!region_bm->at((size_t) cur->hr()->hrs_index())) { |
1374 | 638 |
*prev = nxt; |
13335 | 639 |
cur->set_collision_list_next(NULL); |
1374 | 640 |
_n_fine_entries--; |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
641 |
if (G1RSScrubVerbose) { |
1374 | 642 |
gclog_or_tty->print_cr(" deleted via region map."); |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
643 |
} |
13335 | 644 |
unlink_from_all(cur); |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
645 |
PerRegionTable::free(cur); |
1374 | 646 |
} else { |
647 |
// Do fine-grain elimination. |
|
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
648 |
if (G1RSScrubVerbose) { |
1374 | 649 |
gclog_or_tty->print(" occ: before = %4d.", cur->occupied()); |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
650 |
} |
1374 | 651 |
cur->scrub(ctbs, card_bm); |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
652 |
if (G1RSScrubVerbose) { |
1374 | 653 |
gclog_or_tty->print_cr(" after = %4d.", cur->occupied()); |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
654 |
} |
1374 | 655 |
// Did that empty the table completely? |
656 |
if (cur->occupied() == 0) { |
|
657 |
*prev = nxt; |
|
13335 | 658 |
cur->set_collision_list_next(NULL); |
1374 | 659 |
_n_fine_entries--; |
13335 | 660 |
unlink_from_all(cur); |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
661 |
PerRegionTable::free(cur); |
1374 | 662 |
} else { |
13335 | 663 |
prev = cur->collision_list_next_addr(); |
1374 | 664 |
} |
665 |
} |
|
666 |
cur = nxt; |
|
667 |
} |
|
668 |
} |
|
669 |
// Since we may have deleted a from_card_cache entry from the RS, clear |
|
670 |
// the FCC. |
|
671 |
clear_fcc(); |
|
672 |
} |
|
673 |
||
674 |
||
675 |
size_t OtherRegionsTable::occupied() const { |
|
676 |
// Cast away const in this case. |
|
677 |
MutexLockerEx x((Mutex*)&_m, Mutex::_no_safepoint_check_flag); |
|
678 |
size_t sum = occ_fine(); |
|
679 |
sum += occ_sparse(); |
|
680 |
sum += occ_coarse(); |
|
681 |
return sum; |
|
682 |
} |
|
683 |
||
684 |
size_t OtherRegionsTable::occ_fine() const { |
|
685 |
size_t sum = 0; |
|
13335 | 686 |
|
687 |
size_t num = 0; |
|
688 |
PerRegionTable * cur = _first_all_fine_prts; |
|
689 |
while (cur != NULL) { |
|
690 |
sum += cur->occupied(); |
|
691 |
cur = cur->next(); |
|
692 |
num++; |
|
1374 | 693 |
} |
13335 | 694 |
guarantee(num == _n_fine_entries, "just checking"); |
1374 | 695 |
return sum; |
696 |
} |
|
697 |
||
698 |
size_t OtherRegionsTable::occ_coarse() const { |
|
3697
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3262
diff
changeset
|
699 |
return (_n_coarse_entries * HeapRegion::CardsPerRegion); |
1374 | 700 |
} |
701 |
||
702 |
size_t OtherRegionsTable::occ_sparse() const { |
|
703 |
return _sparse_table.occupied(); |
|
704 |
} |
|
705 |
||
706 |
size_t OtherRegionsTable::mem_size() const { |
|
707 |
// Cast away const in this case. |
|
708 |
MutexLockerEx x((Mutex*)&_m, Mutex::_no_safepoint_check_flag); |
|
709 |
size_t sum = 0; |
|
13335 | 710 |
PerRegionTable * cur = _first_all_fine_prts; |
711 |
while (cur != NULL) { |
|
712 |
sum += cur->mem_size(); |
|
713 |
cur = cur->next(); |
|
1374 | 714 |
} |
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
715 |
sum += (sizeof(PerRegionTable*) * _max_fine_entries); |
1374 | 716 |
sum += (_coarse_map.size_in_words() * HeapWordSize); |
717 |
sum += (_sparse_table.mem_size()); |
|
718 |
sum += sizeof(*this) - sizeof(_sparse_table); // Avoid double counting above. |
|
719 |
return sum; |
|
720 |
} |
|
721 |
||
722 |
size_t OtherRegionsTable::static_mem_size() { |
|
723 |
return _from_card_cache_mem_size; |
|
724 |
} |
|
725 |
||
726 |
size_t OtherRegionsTable::fl_mem_size() { |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
727 |
return PerRegionTable::fl_mem_size(); |
1374 | 728 |
} |
729 |
||
730 |
void OtherRegionsTable::clear_fcc() { |
|
13335 | 731 |
size_t hrs_idx = hr()->hrs_index(); |
1374 | 732 |
for (int i = 0; i < HeapRegionRemSet::num_par_rem_sets(); i++) { |
13335 | 733 |
_from_card_cache[i][hrs_idx] = -1; |
1374 | 734 |
} |
735 |
} |
|
736 |
||
737 |
void OtherRegionsTable::clear() { |
|
738 |
MutexLockerEx x(&_m, Mutex::_no_safepoint_check_flag); |
|
13335 | 739 |
// if there are no entries, skip this step |
740 |
if (_first_all_fine_prts != NULL) { |
|
741 |
guarantee(_first_all_fine_prts != NULL && _last_all_fine_prts != NULL, "just checking"); |
|
742 |
PerRegionTable::bulk_free(_first_all_fine_prts, _last_all_fine_prts); |
|
743 |
memset(_fine_grain_regions, 0, _max_fine_entries * sizeof(_fine_grain_regions[0])); |
|
744 |
} else { |
|
745 |
guarantee(_first_all_fine_prts == NULL && _last_all_fine_prts == NULL, "just checking"); |
|
1374 | 746 |
} |
13335 | 747 |
|
748 |
_first_all_fine_prts = _last_all_fine_prts = NULL; |
|
1374 | 749 |
_sparse_table.clear(); |
750 |
_coarse_map.clear(); |
|
751 |
_n_fine_entries = 0; |
|
752 |
_n_coarse_entries = 0; |
|
753 |
||
754 |
clear_fcc(); |
|
755 |
} |
|
756 |
||
757 |
void OtherRegionsTable::clear_incoming_entry(HeapRegion* from_hr) { |
|
758 |
MutexLockerEx x(&_m, Mutex::_no_safepoint_check_flag); |
|
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
759 |
size_t hrs_ind = (size_t) from_hr->hrs_index(); |
1374 | 760 |
size_t ind = hrs_ind & _mod_max_fine_entries_mask; |
761 |
if (del_single_region_table(ind, from_hr)) { |
|
762 |
assert(!_coarse_map.at(hrs_ind), "Inv"); |
|
763 |
} else { |
|
764 |
_coarse_map.par_at_put(hrs_ind, 0); |
|
765 |
} |
|
766 |
// Check to see if any of the fcc entries come from here. |
|
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
767 |
size_t hr_ind = (size_t) hr()->hrs_index(); |
1374 | 768 |
for (int tid = 0; tid < HeapRegionRemSet::num_par_rem_sets(); tid++) { |
769 |
int fcc_ent = _from_card_cache[tid][hr_ind]; |
|
770 |
if (fcc_ent != -1) { |
|
771 |
HeapWord* card_addr = (HeapWord*) |
|
772 |
(uintptr_t(fcc_ent) << CardTableModRefBS::card_shift); |
|
773 |
if (hr()->is_in_reserved(card_addr)) { |
|
774 |
// Clear the from card cache. |
|
775 |
_from_card_cache[tid][hr_ind] = -1; |
|
776 |
} |
|
777 |
} |
|
778 |
} |
|
779 |
} |
|
780 |
||
781 |
bool OtherRegionsTable::del_single_region_table(size_t ind, |
|
782 |
HeapRegion* hr) { |
|
783 |
assert(0 <= ind && ind < _max_fine_entries, "Preconditions."); |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
784 |
PerRegionTable** prev_addr = &_fine_grain_regions[ind]; |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
785 |
PerRegionTable* prt = *prev_addr; |
1374 | 786 |
while (prt != NULL && prt->hr() != hr) { |
13335 | 787 |
prev_addr = prt->collision_list_next_addr(); |
788 |
prt = prt->collision_list_next(); |
|
1374 | 789 |
} |
790 |
if (prt != NULL) { |
|
791 |
assert(prt->hr() == hr, "Loop postcondition."); |
|
13335 | 792 |
*prev_addr = prt->collision_list_next(); |
793 |
unlink_from_all(prt); |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
794 |
PerRegionTable::free(prt); |
1374 | 795 |
_n_fine_entries--; |
796 |
return true; |
|
797 |
} else { |
|
798 |
return false; |
|
799 |
} |
|
800 |
} |
|
801 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
802 |
bool OtherRegionsTable::contains_reference(OopOrNarrowOopStar from) const { |
1374 | 803 |
// Cast away const in this case. |
804 |
MutexLockerEx x((Mutex*)&_m, Mutex::_no_safepoint_check_flag); |
|
805 |
return contains_reference_locked(from); |
|
806 |
} |
|
807 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
808 |
bool OtherRegionsTable::contains_reference_locked(OopOrNarrowOopStar from) const { |
1374 | 809 |
HeapRegion* hr = _g1h->heap_region_containing_raw(from); |
810 |
if (hr == NULL) return false; |
|
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
811 |
RegionIdx_t hr_ind = (RegionIdx_t) hr->hrs_index(); |
1374 | 812 |
// Is this region in the coarse map? |
813 |
if (_coarse_map.at(hr_ind)) return true; |
|
814 |
||
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12779
diff
changeset
|
815 |
PerRegionTable* prt = find_region_table(hr_ind & _mod_max_fine_entries_mask, |
1374 | 816 |
hr); |
817 |
if (prt != NULL) { |
|
818 |
return prt->contains_reference(from); |
|
819 |
||
820 |
} else { |
|
821 |
uintptr_t from_card = |
|
822 |
(uintptr_t(from) >> CardTableModRefBS::card_shift); |
|
823 |
uintptr_t hr_bot_card_index = |
|
824 |
uintptr_t(hr->bottom()) >> CardTableModRefBS::card_shift; |
|
825 |
assert(from_card >= hr_bot_card_index, "Inv"); |
|
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
826 |
CardIdx_t card_index = from_card - hr_bot_card_index; |
10677
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10243
diff
changeset
|
827 |
assert(0 <= card_index && (size_t)card_index < HeapRegion::CardsPerRegion, |
3697
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3262
diff
changeset
|
828 |
"Must be in range."); |
2996
1097030e5ec3
6843694: G1: assert(index < _vs.committed_size(),"bad index"), g1BlockOffsetTable.inline.hpp:55
johnc
parents:
2882
diff
changeset
|
829 |
return _sparse_table.contains_card(hr_ind, card_index); |
1374 | 830 |
} |
831 |
||
832 |
||
833 |
} |
|
834 |
||
8072 | 835 |
void |
836 |
OtherRegionsTable::do_cleanup_work(HRRSCleanupTask* hrrs_cleanup_task) { |
|
837 |
_sparse_table.do_cleanup_work(hrrs_cleanup_task); |
|
838 |
} |
|
839 |
||
2882
d508a8bac491
6841831: G1: assert(contains_reference(from),"We just added it!") fires
iveresov
parents:
2881
diff
changeset
|
840 |
// Determines how many threads can add records to an rset in parallel. |
d508a8bac491
6841831: G1: assert(contains_reference(from),"We just added it!") fires
iveresov
parents:
2881
diff
changeset
|
841 |
// This can be done by either mutator threads together with the |
d508a8bac491
6841831: G1: assert(contains_reference(from),"We just added it!") fires
iveresov
parents:
2881
diff
changeset
|
842 |
// concurrent refinement threads or GC threads. |
1374 | 843 |
int HeapRegionRemSet::num_par_rem_sets() { |
2882
d508a8bac491
6841831: G1: assert(contains_reference(from),"We just added it!") fires
iveresov
parents:
2881
diff
changeset
|
844 |
return (int)MAX2(DirtyCardQueueSet::num_par_ids() + ConcurrentG1Refine::thread_num(), ParallelGCThreads); |
1374 | 845 |
} |
846 |
||
847 |
HeapRegionRemSet::HeapRegionRemSet(G1BlockOffsetSharedArray* bosa, |
|
848 |
HeapRegion* hr) |
|
10000
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
849 |
: _bosa(bosa), _other_regions(hr) { |
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
850 |
reset_for_par_iteration(); |
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
851 |
} |
1374 | 852 |
|
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
853 |
void HeapRegionRemSet::setup_remset_size() { |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
854 |
// Setup sparse and fine-grain tables sizes. |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
855 |
// table_size = base * (log(region_size / 1M) + 1) |
12779
06778de5193e
7171936: LOG_G incorrectly defined in globalDefinitions.hpp
brutisso
parents:
12381
diff
changeset
|
856 |
const int LOG_M = 20; |
06778de5193e
7171936: LOG_G incorrectly defined in globalDefinitions.hpp
brutisso
parents:
12381
diff
changeset
|
857 |
int region_size_log_mb = MAX2(HeapRegion::LogOfHRGrainBytes - LOG_M, 0); |
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
858 |
if (FLAG_IS_DEFAULT(G1RSetSparseRegionEntries)) { |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
859 |
G1RSetSparseRegionEntries = G1RSetSparseRegionEntriesBase * (region_size_log_mb + 1); |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
860 |
} |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
861 |
if (FLAG_IS_DEFAULT(G1RSetRegionEntries)) { |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
862 |
G1RSetRegionEntries = G1RSetRegionEntriesBase * (region_size_log_mb + 1); |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
863 |
} |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
864 |
guarantee(G1RSetSparseRegionEntries > 0 && G1RSetRegionEntries > 0 , "Sanity"); |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
865 |
} |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
866 |
|
1374 | 867 |
bool HeapRegionRemSet::claim_iter() { |
868 |
if (_iter_state != Unclaimed) return false; |
|
869 |
jint res = Atomic::cmpxchg(Claimed, (jint*)(&_iter_state), Unclaimed); |
|
870 |
return (res == Unclaimed); |
|
871 |
} |
|
872 |
||
873 |
void HeapRegionRemSet::set_iter_complete() { |
|
874 |
_iter_state = Complete; |
|
875 |
} |
|
876 |
||
877 |
bool HeapRegionRemSet::iter_is_complete() { |
|
878 |
return _iter_state == Complete; |
|
879 |
} |
|
880 |
||
881 |
void HeapRegionRemSet::init_iterator(HeapRegionRemSetIterator* iter) const { |
|
882 |
iter->initialize(this); |
|
883 |
} |
|
884 |
||
885 |
#ifndef PRODUCT |
|
886 |
void HeapRegionRemSet::print() const { |
|
887 |
HeapRegionRemSetIterator iter; |
|
888 |
init_iterator(&iter); |
|
889 |
size_t card_index; |
|
890 |
while (iter.has_next(card_index)) { |
|
891 |
HeapWord* card_start = |
|
892 |
G1CollectedHeap::heap()->bot_shared()->address_for_index(card_index); |
|
10000
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
893 |
gclog_or_tty->print_cr(" Card " PTR_FORMAT, card_start); |
1374 | 894 |
} |
895 |
if (iter.n_yielded() != occupied()) { |
|
896 |
gclog_or_tty->print_cr("Yielded disagrees with occupied:"); |
|
897 |
gclog_or_tty->print_cr(" %6d yielded (%6d coarse, %6d fine).", |
|
898 |
iter.n_yielded(), |
|
899 |
iter.n_yielded_coarse(), iter.n_yielded_fine()); |
|
900 |
gclog_or_tty->print_cr(" %6d occ (%6d coarse, %6d fine).", |
|
901 |
occupied(), occ_coarse(), occ_fine()); |
|
902 |
} |
|
903 |
guarantee(iter.n_yielded() == occupied(), |
|
904 |
"We should have yielded all the represented cards."); |
|
905 |
} |
|
906 |
#endif |
|
907 |
||
908 |
void HeapRegionRemSet::cleanup() { |
|
909 |
SparsePRT::cleanup_all(); |
|
910 |
} |
|
911 |
||
912 |
void HeapRegionRemSet::clear() { |
|
913 |
_other_regions.clear(); |
|
914 |
assert(occupied() == 0, "Should be clear."); |
|
10000
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
915 |
reset_for_par_iteration(); |
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
916 |
} |
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
917 |
|
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
918 |
void HeapRegionRemSet::reset_for_par_iteration() { |
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
919 |
_iter_state = Unclaimed; |
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
920 |
_iter_claimed = 0; |
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
921 |
// It's good to check this to make sure that the two methods are in sync. |
5bbb58b0dbb9
7046182: G1: remove unnecessary iterations over the collection set
tonyp
parents:
9989
diff
changeset
|
922 |
assert(verify_ready_for_par_iteration(), "post-condition"); |
1374 | 923 |
} |
924 |
||
925 |
void HeapRegionRemSet::scrub(CardTableModRefBS* ctbs, |
|
926 |
BitMap* region_bm, BitMap* card_bm) { |
|
927 |
_other_regions.scrub(ctbs, region_bm, card_bm); |
|
928 |
} |
|
929 |
||
930 |
//-------------------- Iteration -------------------- |
|
931 |
||
932 |
HeapRegionRemSetIterator:: |
|
933 |
HeapRegionRemSetIterator() : |
|
934 |
_hrrs(NULL), |
|
935 |
_g1h(G1CollectedHeap::heap()), |
|
936 |
_bosa(NULL), |
|
6981
ecfe524b1fa7
6992189: G1: inconsistent base used in sparse rem set iterator
tonyp
parents:
5547
diff
changeset
|
937 |
_sparse_iter() { } |
1374 | 938 |
|
939 |
void HeapRegionRemSetIterator::initialize(const HeapRegionRemSet* hrrs) { |
|
940 |
_hrrs = hrrs; |
|
941 |
_coarse_map = &_hrrs->_other_regions._coarse_map; |
|
942 |
_fine_grain_regions = _hrrs->_other_regions._fine_grain_regions; |
|
943 |
_bosa = _hrrs->bosa(); |
|
944 |
||
945 |
_is = Sparse; |
|
946 |
// Set these values so that we increment to the first region. |
|
947 |
_coarse_cur_region_index = -1; |
|
10677
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10243
diff
changeset
|
948 |
_coarse_cur_region_cur_card = (HeapRegion::CardsPerRegion-1); |
1374 | 949 |
|
950 |
_cur_region_cur_card = 0; |
|
951 |
||
952 |
_fine_array_index = -1; |
|
953 |
_fine_cur_prt = NULL; |
|
954 |
||
955 |
_n_yielded_coarse = 0; |
|
956 |
_n_yielded_fine = 0; |
|
957 |
_n_yielded_sparse = 0; |
|
958 |
||
959 |
_sparse_iter.init(&hrrs->_other_regions._sparse_table); |
|
960 |
} |
|
961 |
||
962 |
bool HeapRegionRemSetIterator::coarse_has_next(size_t& card_index) { |
|
963 |
if (_hrrs->_other_regions._n_coarse_entries == 0) return false; |
|
964 |
// Go to the next card. |
|
965 |
_coarse_cur_region_cur_card++; |
|
966 |
// Was the last the last card in the current region? |
|
3697
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3262
diff
changeset
|
967 |
if (_coarse_cur_region_cur_card == HeapRegion::CardsPerRegion) { |
1374 | 968 |
// Yes: find the next region. This may leave _coarse_cur_region_index |
969 |
// Set to the last index, in which case there are no more coarse |
|
970 |
// regions. |
|
971 |
_coarse_cur_region_index = |
|
972 |
(int) _coarse_map->get_next_one_offset(_coarse_cur_region_index + 1); |
|
973 |
if ((size_t)_coarse_cur_region_index < _coarse_map->size()) { |
|
974 |
_coarse_cur_region_cur_card = 0; |
|
975 |
HeapWord* r_bot = |
|
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10767
diff
changeset
|
976 |
_g1h->region_at((uint) _coarse_cur_region_index)->bottom(); |
1374 | 977 |
_cur_region_card_offset = _bosa->index_for(r_bot); |
978 |
} else { |
|
979 |
return false; |
|
980 |
} |
|
981 |
} |
|
982 |
// If we didn't return false above, then we can yield a card. |
|
983 |
card_index = _cur_region_card_offset + _coarse_cur_region_cur_card; |
|
984 |
return true; |
|
985 |
} |
|
986 |
||
987 |
void HeapRegionRemSetIterator::fine_find_next_non_null_prt() { |
|
988 |
// Otherwise, find the next bucket list in the array. |
|
989 |
_fine_array_index++; |
|
990 |
while (_fine_array_index < (int) OtherRegionsTable::_max_fine_entries) { |
|
991 |
_fine_cur_prt = _fine_grain_regions[_fine_array_index]; |
|
992 |
if (_fine_cur_prt != NULL) return; |
|
993 |
else _fine_array_index++; |
|
994 |
} |
|
995 |
assert(_fine_cur_prt == NULL, "Loop post"); |
|
996 |
} |
|
997 |
||
998 |
bool HeapRegionRemSetIterator::fine_has_next(size_t& card_index) { |
|
999 |
if (fine_has_next()) { |
|
1000 |
_cur_region_cur_card = |
|
1001 |
_fine_cur_prt->_bm.get_next_one_offset(_cur_region_cur_card + 1); |
|
1002 |
} |
|
1003 |
while (!fine_has_next()) { |
|
3697
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3262
diff
changeset
|
1004 |
if (_cur_region_cur_card == (size_t) HeapRegion::CardsPerRegion) { |
1374 | 1005 |
_cur_region_cur_card = 0; |
13335 | 1006 |
_fine_cur_prt = _fine_cur_prt->collision_list_next(); |
1374 | 1007 |
} |
1008 |
if (_fine_cur_prt == NULL) { |
|
1009 |
fine_find_next_non_null_prt(); |
|
1010 |
if (_fine_cur_prt == NULL) return false; |
|
1011 |
} |
|
1012 |
assert(_fine_cur_prt != NULL && _cur_region_cur_card == 0, |
|
1013 |
"inv."); |
|
1014 |
HeapWord* r_bot = |
|
1015 |
_fine_cur_prt->hr()->bottom(); |
|
1016 |
_cur_region_card_offset = _bosa->index_for(r_bot); |
|
1017 |
_cur_region_cur_card = _fine_cur_prt->_bm.get_next_one_offset(0); |
|
1018 |
} |
|
1019 |
assert(fine_has_next(), "Or else we exited the loop via the return."); |
|
1020 |
card_index = _cur_region_card_offset + _cur_region_cur_card; |
|
1021 |
return true; |
|
1022 |
} |
|
1023 |
||
1024 |
bool HeapRegionRemSetIterator::fine_has_next() { |
|
1025 |
return |
|
1026 |
_fine_cur_prt != NULL && |
|
10677
370a8da2d63f
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
johnc
parents:
10243
diff
changeset
|
1027 |
_cur_region_cur_card < HeapRegion::CardsPerRegion; |
1374 | 1028 |
} |
1029 |
||
1030 |
bool HeapRegionRemSetIterator::has_next(size_t& card_index) { |
|
1031 |
switch (_is) { |
|
1032 |
case Sparse: |
|
1033 |
if (_sparse_iter.has_next(card_index)) { |
|
1034 |
_n_yielded_sparse++; |
|
1035 |
return true; |
|
1036 |
} |
|
1037 |
// Otherwise, deliberate fall-through |
|
1038 |
_is = Fine; |
|
1039 |
case Fine: |
|
1040 |
if (fine_has_next(card_index)) { |
|
1041 |
_n_yielded_fine++; |
|
1042 |
return true; |
|
1043 |
} |
|
1044 |
// Otherwise, deliberate fall-through |
|
1045 |
_is = Coarse; |
|
1046 |
case Coarse: |
|
1047 |
if (coarse_has_next(card_index)) { |
|
1048 |
_n_yielded_coarse++; |
|
1049 |
return true; |
|
1050 |
} |
|
1051 |
// Otherwise... |
|
1052 |
break; |
|
1053 |
} |
|
1054 |
assert(ParallelGCThreads > 1 || |
|
1055 |
n_yielded() == _hrrs->occupied(), |
|
1056 |
"Should have yielded all the cards in the rem set " |
|
1057 |
"(in the non-par case)."); |
|
1058 |
return false; |
|
1059 |
} |
|
1060 |
||
1061 |
||
1062 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1063 |
OopOrNarrowOopStar* HeapRegionRemSet::_recorded_oops = NULL; |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1064 |
HeapWord** HeapRegionRemSet::_recorded_cards = NULL; |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1065 |
HeapRegion** HeapRegionRemSet::_recorded_regions = NULL; |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1066 |
int HeapRegionRemSet::_n_recorded = 0; |
1374 | 1067 |
|
1068 |
HeapRegionRemSet::Event* HeapRegionRemSet::_recorded_events = NULL; |
|
1069 |
int* HeapRegionRemSet::_recorded_event_index = NULL; |
|
1070 |
int HeapRegionRemSet::_n_recorded_events = 0; |
|
1071 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1072 |
void HeapRegionRemSet::record(HeapRegion* hr, OopOrNarrowOopStar f) { |
1374 | 1073 |
if (_recorded_oops == NULL) { |
1074 |
assert(_n_recorded == 0 |
|
1075 |
&& _recorded_cards == NULL |
|
1076 |
&& _recorded_regions == NULL, |
|
1077 |
"Inv"); |
|
13195 | 1078 |
_recorded_oops = NEW_C_HEAP_ARRAY(OopOrNarrowOopStar, MaxRecorded, mtGC); |
1079 |
_recorded_cards = NEW_C_HEAP_ARRAY(HeapWord*, MaxRecorded, mtGC); |
|
1080 |
_recorded_regions = NEW_C_HEAP_ARRAY(HeapRegion*, MaxRecorded, mtGC); |
|
1374 | 1081 |
} |
1082 |
if (_n_recorded == MaxRecorded) { |
|
1083 |
gclog_or_tty->print_cr("Filled up 'recorded' (%d).", MaxRecorded); |
|
1084 |
} else { |
|
1085 |
_recorded_cards[_n_recorded] = |
|
1086 |
(HeapWord*)align_size_down(uintptr_t(f), |
|
1087 |
CardTableModRefBS::card_size); |
|
1088 |
_recorded_oops[_n_recorded] = f; |
|
1089 |
_recorded_regions[_n_recorded] = hr; |
|
1090 |
_n_recorded++; |
|
1091 |
} |
|
1092 |
} |
|
1093 |
||
1094 |
void HeapRegionRemSet::record_event(Event evnt) { |
|
1095 |
if (!G1RecordHRRSEvents) return; |
|
1096 |
||
1097 |
if (_recorded_events == NULL) { |
|
1098 |
assert(_n_recorded_events == 0 |
|
1099 |
&& _recorded_event_index == NULL, |
|
1100 |
"Inv"); |
|
13195 | 1101 |
_recorded_events = NEW_C_HEAP_ARRAY(Event, MaxRecordedEvents, mtGC); |
1102 |
_recorded_event_index = NEW_C_HEAP_ARRAY(int, MaxRecordedEvents, mtGC); |
|
1374 | 1103 |
} |
1104 |
if (_n_recorded_events == MaxRecordedEvents) { |
|
1105 |
gclog_or_tty->print_cr("Filled up 'recorded_events' (%d).", MaxRecordedEvents); |
|
1106 |
} else { |
|
1107 |
_recorded_events[_n_recorded_events] = evnt; |
|
1108 |
_recorded_event_index[_n_recorded_events] = _n_recorded; |
|
1109 |
_n_recorded_events++; |
|
1110 |
} |
|
1111 |
} |
|
1112 |
||
1113 |
void HeapRegionRemSet::print_event(outputStream* str, Event evnt) { |
|
1114 |
switch (evnt) { |
|
1115 |
case Event_EvacStart: |
|
1116 |
str->print("Evac Start"); |
|
1117 |
break; |
|
1118 |
case Event_EvacEnd: |
|
1119 |
str->print("Evac End"); |
|
1120 |
break; |
|
1121 |
case Event_RSUpdateEnd: |
|
1122 |
str->print("RS Update End"); |
|
1123 |
break; |
|
1124 |
} |
|
1125 |
} |
|
1126 |
||
1127 |
void HeapRegionRemSet::print_recorded() { |
|
1128 |
int cur_evnt = 0; |
|
1129 |
Event cur_evnt_kind; |
|
1130 |
int cur_evnt_ind = 0; |
|
1131 |
if (_n_recorded_events > 0) { |
|
1132 |
cur_evnt_kind = _recorded_events[cur_evnt]; |
|
1133 |
cur_evnt_ind = _recorded_event_index[cur_evnt]; |
|
1134 |
} |
|
1135 |
||
1136 |
for (int i = 0; i < _n_recorded; i++) { |
|
1137 |
while (cur_evnt < _n_recorded_events && i == cur_evnt_ind) { |
|
1138 |
gclog_or_tty->print("Event: "); |
|
1139 |
print_event(gclog_or_tty, cur_evnt_kind); |
|
1140 |
gclog_or_tty->print_cr(""); |
|
1141 |
cur_evnt++; |
|
1142 |
if (cur_evnt < MaxRecordedEvents) { |
|
1143 |
cur_evnt_kind = _recorded_events[cur_evnt]; |
|
1144 |
cur_evnt_ind = _recorded_event_index[cur_evnt]; |
|
1145 |
} |
|
1146 |
} |
|
1147 |
gclog_or_tty->print("Added card " PTR_FORMAT " to region [" PTR_FORMAT "...]" |
|
1148 |
" for ref " PTR_FORMAT ".\n", |
|
1149 |
_recorded_cards[i], _recorded_regions[i]->bottom(), |
|
1150 |
_recorded_oops[i]); |
|
1151 |
} |
|
1152 |
} |
|
1153 |
||
8072 | 1154 |
void HeapRegionRemSet::reset_for_cleanup_tasks() { |
1155 |
SparsePRT::reset_for_cleanup_tasks(); |
|
1156 |
} |
|
1157 |
||
1158 |
void HeapRegionRemSet::do_cleanup_work(HRRSCleanupTask* hrrs_cleanup_task) { |
|
1159 |
_other_regions.do_cleanup_work(hrrs_cleanup_task); |
|
1160 |
} |
|
1161 |
||
1162 |
void |
|
1163 |
HeapRegionRemSet::finish_cleanup_task(HRRSCleanupTask* hrrs_cleanup_task) { |
|
1164 |
SparsePRT::finish_cleanup_task(hrrs_cleanup_task); |
|
1165 |
} |
|
1166 |
||
1374 | 1167 |
#ifndef PRODUCT |
1168 |
void HeapRegionRemSet::test() { |
|
1169 |
os::sleep(Thread::current(), (jlong)5000, false); |
|
1170 |
G1CollectedHeap* g1h = G1CollectedHeap::heap(); |
|
1171 |
||
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4900
diff
changeset
|
1172 |
// Run with "-XX:G1LogRSetRegionEntries=2", so that 1 and 5 end up in same |
1374 | 1173 |
// hash bucket. |
1174 |
HeapRegion* hr0 = g1h->region_at(0); |
|
1175 |
HeapRegion* hr1 = g1h->region_at(1); |
|
1176 |
HeapRegion* hr2 = g1h->region_at(5); |
|
1177 |
HeapRegion* hr3 = g1h->region_at(6); |
|
1178 |
HeapRegion* hr4 = g1h->region_at(7); |
|
1179 |
HeapRegion* hr5 = g1h->region_at(8); |
|
1180 |
||
1181 |
HeapWord* hr1_start = hr1->bottom(); |
|
1182 |
HeapWord* hr1_mid = hr1_start + HeapRegion::GrainWords/2; |
|
1183 |
HeapWord* hr1_last = hr1->end() - 1; |
|
1184 |
||
1185 |
HeapWord* hr2_start = hr2->bottom(); |
|
1186 |
HeapWord* hr2_mid = hr2_start + HeapRegion::GrainWords/2; |
|
1187 |
HeapWord* hr2_last = hr2->end() - 1; |
|
1188 |
||
1189 |
HeapWord* hr3_start = hr3->bottom(); |
|
1190 |
HeapWord* hr3_mid = hr3_start + HeapRegion::GrainWords/2; |
|
1191 |
HeapWord* hr3_last = hr3->end() - 1; |
|
1192 |
||
1193 |
HeapRegionRemSet* hrrs = hr0->rem_set(); |
|
1194 |
||
1195 |
// Make three references from region 0x101... |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1196 |
hrrs->add_reference((OopOrNarrowOopStar)hr1_start); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1197 |
hrrs->add_reference((OopOrNarrowOopStar)hr1_mid); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1198 |
hrrs->add_reference((OopOrNarrowOopStar)hr1_last); |
1374 | 1199 |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1200 |
hrrs->add_reference((OopOrNarrowOopStar)hr2_start); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1201 |
hrrs->add_reference((OopOrNarrowOopStar)hr2_mid); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1202 |
hrrs->add_reference((OopOrNarrowOopStar)hr2_last); |
1374 | 1203 |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1204 |
hrrs->add_reference((OopOrNarrowOopStar)hr3_start); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1205 |
hrrs->add_reference((OopOrNarrowOopStar)hr3_mid); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1206 |
hrrs->add_reference((OopOrNarrowOopStar)hr3_last); |
1374 | 1207 |
|
1208 |
// Now cause a coarsening. |
|
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1209 |
hrrs->add_reference((OopOrNarrowOopStar)hr4->bottom()); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2996
diff
changeset
|
1210 |
hrrs->add_reference((OopOrNarrowOopStar)hr5->bottom()); |
1374 | 1211 |
|
1212 |
// Now, does iteration yield these three? |
|
1213 |
HeapRegionRemSetIterator iter; |
|
1214 |
hrrs->init_iterator(&iter); |
|
1215 |
size_t sum = 0; |
|
1216 |
size_t card_index; |
|
1217 |
while (iter.has_next(card_index)) { |
|
1218 |
HeapWord* card_start = |
|
1219 |
G1CollectedHeap::heap()->bot_shared()->address_for_index(card_index); |
|
1220 |
gclog_or_tty->print_cr(" Card " PTR_FORMAT ".", card_start); |
|
1221 |
sum++; |
|
1222 |
} |
|
1223 |
guarantee(sum == 11 - 3 + 2048, "Failure"); |
|
1224 |
guarantee(sum == hrrs->occupied(), "Failure"); |
|
1225 |
} |
|
1226 |
#endif |