author | tschatzl |
Wed, 25 Nov 2015 14:43:29 +0100 | |
changeset 34300 | 6075c1e0e913 |
parent 34246 | d2c05216f375 |
child 35061 | be6025ebffea |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29693
diff
changeset
|
2 |
* Copyright (c) 2001, 2015, 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:
5033
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5033
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:
5033
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
30764 | 26 |
#include "gc/g1/concurrentG1Refine.hpp" |
27 |
#include "gc/g1/concurrentG1RefineThread.hpp" |
|
28 |
#include "gc/g1/g1BlockOffsetTable.inline.hpp" |
|
29 |
#include "gc/g1/g1CollectedHeap.inline.hpp" |
|
30 |
#include "gc/g1/g1CollectorPolicy.hpp" |
|
31 |
#include "gc/g1/g1GCPhaseTimes.hpp" |
|
32 |
#include "gc/g1/g1HotCardCache.hpp" |
|
33 |
#include "gc/g1/g1OopClosures.inline.hpp" |
|
34 |
#include "gc/g1/g1RemSet.inline.hpp" |
|
35 |
#include "gc/g1/heapRegionManager.inline.hpp" |
|
36 |
#include "gc/g1/heapRegionRemSet.hpp" |
|
7397 | 37 |
#include "memory/iterator.hpp" |
38 |
#include "oops/oop.inline.hpp" |
|
24098
48f07e2c74de
8039957: Replace the last few %p usages with PTR_FORMAT in the GC code
stefank
parents:
23858
diff
changeset
|
39 |
#include "utilities/globalDefinitions.hpp" |
7397 | 40 |
#include "utilities/intHisto.hpp" |
30175 | 41 |
#include "utilities/stack.inline.hpp" |
1374 | 42 |
|
6958 | 43 |
G1RemSet::G1RemSet(G1CollectedHeap* g1, CardTableModRefBS* ct_bs) |
44 |
: _g1(g1), _conc_refine_cards(0), |
|
45 |
_ct_bs(ct_bs), _g1p(_g1->g1_policy()), |
|
1374 | 46 |
_cg1r(g1->concurrent_g1_refine()), |
6247 | 47 |
_cset_rs_update_cl(NULL), |
33789
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
48 |
_prev_period_summary(), |
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
49 |
_into_cset_dirty_card_queue_set(false) |
1374 | 50 |
{ |
28207
6ad23566cbef
8067655: Clean up G1 remembered set oop iteration
mgerdin
parents:
27905
diff
changeset
|
51 |
_cset_rs_update_cl = NEW_C_HEAP_ARRAY(G1ParPushHeapRSClosure*, n_workers(), mtGC); |
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
2009
diff
changeset
|
52 |
for (uint i = 0; i < n_workers(); i++) { |
6247 | 53 |
_cset_rs_update_cl[i] = NULL; |
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
2009
diff
changeset
|
54 |
} |
20310
903b398490d9
8025441: G1: assert "assert(thread < _num_vtimes) failed: just checking" fails when G1ConcRefinementThreads > ParallelGCThreads
tschatzl
parents:
20309
diff
changeset
|
55 |
if (G1SummarizeRSetStats) { |
903b398490d9
8025441: G1: assert "assert(thread < _num_vtimes) failed: just checking" fails when G1ConcRefinementThreads > ParallelGCThreads
tschatzl
parents:
20309
diff
changeset
|
56 |
_prev_period_summary.initialize(this); |
903b398490d9
8025441: G1: assert "assert(thread < _num_vtimes) failed: just checking" fails when G1ConcRefinementThreads > ParallelGCThreads
tschatzl
parents:
20309
diff
changeset
|
57 |
} |
33789
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
58 |
// Initialize the card queue set used to hold cards containing |
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
59 |
// references into the collection set. |
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
60 |
_into_cset_dirty_card_queue_set.initialize(NULL, // Should never be called by the Java code |
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
61 |
DirtyCardQ_CBL_mon, |
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
62 |
DirtyCardQ_FL_lock, |
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
63 |
-1, // never trigger processing |
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
64 |
-1, // no limit on length |
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
65 |
Shared_DirtyCardQ_lock, |
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
66 |
&JavaThread::dirty_card_queue_set()); |
1374 | 67 |
} |
68 |
||
6958 | 69 |
G1RemSet::~G1RemSet() { |
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
2009
diff
changeset
|
70 |
for (uint i = 0; i < n_workers(); i++) { |
6247 | 71 |
assert(_cset_rs_update_cl[i] == NULL, "it should be"); |
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
2009
diff
changeset
|
72 |
} |
28207
6ad23566cbef
8067655: Clean up G1 remembered set oop iteration
mgerdin
parents:
27905
diff
changeset
|
73 |
FREE_C_HEAP_ARRAY(G1ParPushHeapRSClosure*, _cset_rs_update_cl); |
1374 | 74 |
} |
75 |
||
34246 | 76 |
ScanRSClosure::ScanRSClosure(G1ParPushHeapRSClosure* oc, |
77 |
CodeBlobClosure* code_root_cl, |
|
78 |
uint worker_i) : |
|
1374 | 79 |
_oc(oc), |
19339 | 80 |
_code_root_cl(code_root_cl), |
81 |
_strong_code_root_scan_time_sec(0.0), |
|
1374 | 82 |
_cards(0), |
83 |
_cards_done(0), |
|
84 |
_worker_i(worker_i), |
|
34246 | 85 |
_try_claimed(false) { |
86 |
_g1h = G1CollectedHeap::heap(); |
|
87 |
_bot_shared = _g1h->bot_shared(); |
|
88 |
_ct_bs = _g1h->g1_barrier_set(); |
|
89 |
_block_size = MAX2<size_t>(G1RSetScanBlockSize, 1); |
|
90 |
} |
|
91 |
||
92 |
void ScanRSClosure::scanCard(size_t index, HeapRegion *r) { |
|
93 |
// Stack allocate the DirtyCardToOopClosure instance |
|
94 |
HeapRegionDCTOC cl(_g1h, r, _oc, |
|
95 |
CardTableModRefBS::Precise); |
|
96 |
||
97 |
// Set the "from" region in the closure. |
|
98 |
_oc->set_region(r); |
|
99 |
MemRegion card_region(_bot_shared->address_for_index(index), G1BlockOffsetSharedArray::N_words); |
|
100 |
MemRegion pre_gc_allocated(r->bottom(), r->scan_top()); |
|
101 |
MemRegion mr = pre_gc_allocated.intersection(card_region); |
|
102 |
if (!mr.is_empty() && !_ct_bs->is_card_claimed(index)) { |
|
103 |
// We make the card as "claimed" lazily (so races are possible |
|
104 |
// but they're benign), which reduces the number of duplicate |
|
105 |
// scans (the rsets of the regions in the cset can intersect). |
|
106 |
_ct_bs->set_card_claimed(index); |
|
107 |
_cards_done++; |
|
108 |
cl.do_MemRegion(mr); |
|
1374 | 109 |
} |
34246 | 110 |
} |
1374 | 111 |
|
34246 | 112 |
void ScanRSClosure::printCard(HeapRegion* card_region, size_t card_index, |
113 |
HeapWord* card_start) { |
|
114 |
gclog_or_tty->print_cr("T %u Region [" PTR_FORMAT ", " PTR_FORMAT ") " |
|
115 |
"RS names card " SIZE_FORMAT_HEX ": " |
|
116 |
"[" PTR_FORMAT ", " PTR_FORMAT ")", |
|
117 |
_worker_i, |
|
118 |
p2i(card_region->bottom()), p2i(card_region->end()), |
|
119 |
card_index, |
|
120 |
p2i(card_start), p2i(card_start + G1BlockOffsetSharedArray::N_words)); |
|
121 |
} |
|
1374 | 122 |
|
34246 | 123 |
void ScanRSClosure::scan_strong_code_roots(HeapRegion* r) { |
124 |
double scan_start = os::elapsedTime(); |
|
125 |
r->strong_code_roots_do(_code_root_cl); |
|
126 |
_strong_code_root_scan_time_sec += (os::elapsedTime() - scan_start); |
|
127 |
} |
|
128 |
||
129 |
bool ScanRSClosure::doHeapRegion(HeapRegion* r) { |
|
130 |
assert(r->in_collection_set(), "should only be called on elements of CS."); |
|
131 |
HeapRegionRemSet* hrrs = r->rem_set(); |
|
132 |
if (hrrs->iter_is_complete()) return false; // All done. |
|
133 |
if (!_try_claimed && !hrrs->claim_iter()) return false; |
|
134 |
// If we ever free the collection set concurrently, we should also |
|
135 |
// clear the card table concurrently therefore we won't need to |
|
136 |
// add regions of the collection set to the dirty cards region. |
|
137 |
_g1h->push_dirty_cards_region(r); |
|
138 |
// If we didn't return above, then |
|
139 |
// _try_claimed || r->claim_iter() |
|
140 |
// is true: either we're supposed to work on claimed-but-not-complete |
|
141 |
// regions, or we successfully claimed the region. |
|
142 |
||
143 |
HeapRegionRemSetIterator iter(hrrs); |
|
144 |
size_t card_index; |
|
1374 | 145 |
|
34246 | 146 |
// We claim cards in block so as to reduce the contention. The block size is determined by |
147 |
// the G1RSetScanBlockSize parameter. |
|
148 |
size_t jump_to_card = hrrs->iter_claimed_next(_block_size); |
|
149 |
for (size_t current_card = 0; iter.has_next(card_index); current_card++) { |
|
150 |
if (current_card >= jump_to_card + _block_size) { |
|
151 |
jump_to_card = hrrs->iter_claimed_next(_block_size); |
|
152 |
} |
|
153 |
if (current_card < jump_to_card) continue; |
|
154 |
HeapWord* card_start = _g1h->bot_shared()->address_for_index(card_index); |
|
155 |
#if 0 |
|
156 |
gclog_or_tty->print("Rem set iteration yielded card [" PTR_FORMAT ", " PTR_FORMAT ").\n", |
|
157 |
card_start, card_start + CardTableModRefBS::card_size_in_words); |
|
158 |
#endif |
|
159 |
||
160 |
HeapRegion* card_region = _g1h->heap_region_containing(card_start); |
|
161 |
_cards++; |
|
162 |
||
163 |
if (!card_region->is_on_dirty_cards_region_list()) { |
|
164 |
_g1h->push_dirty_cards_region(card_region); |
|
165 |
} |
|
166 |
||
167 |
// If the card is dirty, then we will scan it during updateRS. |
|
168 |
if (!card_region->in_collection_set() && |
|
169 |
!_ct_bs->is_card_dirty(card_index)) { |
|
170 |
scanCard(card_index, card_region); |
|
1374 | 171 |
} |
172 |
} |
|
34246 | 173 |
if (!_try_claimed) { |
174 |
// Scan the strong code root list attached to the current region |
|
175 |
scan_strong_code_roots(r); |
|
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
3590
diff
changeset
|
176 |
|
34246 | 177 |
hrrs->set_iter_complete(); |
1374 | 178 |
} |
34246 | 179 |
return false; |
180 |
} |
|
1374 | 181 |
|
32737
f02118695c2f
8135154: Move cards scanned and surviving young words aggregation to G1ParScanThreadStateSet
mgerdin
parents:
32617
diff
changeset
|
182 |
size_t G1RemSet::scanRS(G1ParPushHeapRSClosure* oc, |
33213
b937f634f56e
8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
33204
diff
changeset
|
183 |
CodeBlobClosure* heap_region_codeblobs, |
32737
f02118695c2f
8135154: Move cards scanned and surviving young words aggregation to G1ParScanThreadStateSet
mgerdin
parents:
32617
diff
changeset
|
184 |
uint worker_i) { |
1374 | 185 |
double rs_time_start = os::elapsedTime(); |
32617
a59435e1fecc
8135012: Don't use G1RootProcessor when scanning remembered sets
mgerdin
parents:
31592
diff
changeset
|
186 |
|
11176
9bb1ddd8da51
7112743: G1: Reduce overhead of marking closure during evacuation pauses
johnc
parents:
11174
diff
changeset
|
187 |
HeapRegion *startRegion = _g1->start_cset_region_for_worker(worker_i); |
1374 | 188 |
|
33213
b937f634f56e
8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
33204
diff
changeset
|
189 |
ScanRSClosure scanRScl(oc, heap_region_codeblobs, worker_i); |
10670
4ea0e7d2ffbc
6484982: G1: process references during evacuation pauses
johnc
parents:
10000
diff
changeset
|
190 |
|
1374 | 191 |
_g1->collection_set_iterate_from(startRegion, &scanRScl); |
192 |
scanRScl.set_try_claimed(); |
|
193 |
_g1->collection_set_iterate_from(startRegion, &scanRScl); |
|
194 |
||
19339 | 195 |
double scan_rs_time_sec = (os::elapsedTime() - rs_time_start) |
196 |
- scanRScl.strong_code_root_scan_time_sec(); |
|
1374 | 197 |
|
29680
e5203ed6d805
8074037: Refactor the G1GCPhaseTime logging to make it easier to add new phases
brutisso
parents:
28207
diff
changeset
|
198 |
_g1p->phase_times()->record_time_secs(G1GCPhaseTimes::ScanRS, worker_i, scan_rs_time_sec); |
e5203ed6d805
8074037: Refactor the G1GCPhaseTime logging to make it easier to add new phases
brutisso
parents:
28207
diff
changeset
|
199 |
_g1p->phase_times()->record_time_secs(G1GCPhaseTimes::CodeRoots, worker_i, scanRScl.strong_code_root_scan_time_sec()); |
32737
f02118695c2f
8135154: Move cards scanned and surviving young words aggregation to G1ParScanThreadStateSet
mgerdin
parents:
32617
diff
changeset
|
200 |
|
f02118695c2f
8135154: Move cards scanned and surviving young words aggregation to G1ParScanThreadStateSet
mgerdin
parents:
32617
diff
changeset
|
201 |
return scanRScl.cards_done(); |
1374 | 202 |
} |
203 |
||
6247 | 204 |
// Closure used for updating RSets and recording references that |
205 |
// point into the collection set. Only called during an |
|
206 |
// evacuation pause. |
|
207 |
||
208 |
class RefineRecordRefsIntoCSCardTableEntryClosure: public CardTableEntryClosure { |
|
209 |
G1RemSet* _g1rs; |
|
210 |
DirtyCardQueue* _into_cset_dcq; |
|
211 |
public: |
|
212 |
RefineRecordRefsIntoCSCardTableEntryClosure(G1CollectedHeap* g1h, |
|
213 |
DirtyCardQueue* into_cset_dcq) : |
|
214 |
_g1rs(g1h->g1_rem_set()), _into_cset_dcq(into_cset_dcq) |
|
215 |
{} |
|
33204
b8a3901ac5b3
8069330: Adjustment of concurrent refinement thresholds does not take hot card cache into account
tschatzl
parents:
33105
diff
changeset
|
216 |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23455
diff
changeset
|
217 |
bool do_card_ptr(jbyte* card_ptr, uint worker_i) { |
6247 | 218 |
// The only time we care about recording cards that |
219 |
// contain references that point into the collection set |
|
220 |
// is during RSet updating within an evacuation pause. |
|
221 |
// In this case worker_i should be the id of a GC worker thread. |
|
222 |
assert(SafepointSynchronize::is_at_safepoint(), "not during an evacuation pause"); |
|
27251
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
27009
diff
changeset
|
223 |
assert(worker_i < ParallelGCThreads, "should be a GC worker"); |
1374 | 224 |
|
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
225 |
if (_g1rs->refine_card(card_ptr, worker_i, true)) { |
6247 | 226 |
// 'card_ptr' contains references that point into the collection |
227 |
// set. We need to record the card in the DCQS |
|
33789
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
228 |
// (_into_cset_dirty_card_queue_set) |
6247 | 229 |
// that's used for that purpose. |
230 |
// |
|
231 |
// Enqueue the card |
|
232 |
_into_cset_dcq->enqueue(card_ptr); |
|
233 |
} |
|
234 |
return true; |
|
235 |
} |
|
236 |
}; |
|
237 |
||
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23455
diff
changeset
|
238 |
void G1RemSet::updateRS(DirtyCardQueue* into_cset_dcq, uint worker_i) { |
6247 | 239 |
RefineRecordRefsIntoCSCardTableEntryClosure into_cset_update_rs_cl(_g1, into_cset_dcq); |
10670
4ea0e7d2ffbc
6484982: G1: process references during evacuation pauses
johnc
parents:
10000
diff
changeset
|
240 |
|
33204
b8a3901ac5b3
8069330: Adjustment of concurrent refinement thresholds does not take hot card cache into account
tschatzl
parents:
33105
diff
changeset
|
241 |
G1GCParPhaseTimesTracker x(_g1p->phase_times(), G1GCPhaseTimes::UpdateRS, worker_i); |
b8a3901ac5b3
8069330: Adjustment of concurrent refinement thresholds does not take hot card cache into account
tschatzl
parents:
33105
diff
changeset
|
242 |
{ |
b8a3901ac5b3
8069330: Adjustment of concurrent refinement thresholds does not take hot card cache into account
tschatzl
parents:
33105
diff
changeset
|
243 |
// Apply the closure to the entries of the hot card cache. |
b8a3901ac5b3
8069330: Adjustment of concurrent refinement thresholds does not take hot card cache into account
tschatzl
parents:
33105
diff
changeset
|
244 |
G1GCParPhaseTimesTracker y(_g1p->phase_times(), G1GCPhaseTimes::ScanHCC, worker_i); |
b8a3901ac5b3
8069330: Adjustment of concurrent refinement thresholds does not take hot card cache into account
tschatzl
parents:
33105
diff
changeset
|
245 |
_g1->iterate_hcc_closure(&into_cset_update_rs_cl, worker_i); |
b8a3901ac5b3
8069330: Adjustment of concurrent refinement thresholds does not take hot card cache into account
tschatzl
parents:
33105
diff
changeset
|
246 |
} |
b8a3901ac5b3
8069330: Adjustment of concurrent refinement thresholds does not take hot card cache into account
tschatzl
parents:
33105
diff
changeset
|
247 |
// Apply the closure to all remaining log entries. |
b8a3901ac5b3
8069330: Adjustment of concurrent refinement thresholds does not take hot card cache into account
tschatzl
parents:
33105
diff
changeset
|
248 |
_g1->iterate_dirty_card_closure(&into_cset_update_rs_cl, worker_i); |
1374 | 249 |
} |
250 |
||
6958 | 251 |
void G1RemSet::cleanupHRRS() { |
1374 | 252 |
HeapRegionRemSet::cleanup(); |
253 |
} |
|
254 |
||
32737
f02118695c2f
8135154: Move cards scanned and surviving young words aggregation to G1ParScanThreadStateSet
mgerdin
parents:
32617
diff
changeset
|
255 |
size_t G1RemSet::oops_into_collection_set_do(G1ParPushHeapRSClosure* oc, |
33213
b937f634f56e
8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
33204
diff
changeset
|
256 |
CodeBlobClosure* heap_region_codeblobs, |
32737
f02118695c2f
8135154: Move cards scanned and surviving young words aggregation to G1ParScanThreadStateSet
mgerdin
parents:
32617
diff
changeset
|
257 |
uint worker_i) { |
6247 | 258 |
// We cache the value of 'oc' closure into the appropriate slot in the |
259 |
// _cset_rs_update_cl for this worker |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23455
diff
changeset
|
260 |
assert(worker_i < n_workers(), "sanity"); |
6247 | 261 |
_cset_rs_update_cl[worker_i] = oc; |
262 |
||
263 |
// A DirtyCardQueue that is used to hold cards containing references |
|
264 |
// that point into the collection set. This DCQ is associated with a |
|
265 |
// special DirtyCardQueueSet (see g1CollectedHeap.hpp). Under normal |
|
266 |
// circumstances (i.e. the pause successfully completes), these cards |
|
267 |
// are just discarded (there's no need to update the RSets of regions |
|
268 |
// that were in the collection set - after the pause these regions |
|
269 |
// are wholly 'free' of live objects. In the event of an evacuation |
|
26701
f8ff74a6c058
8052172: Evacuation failure handling in G1 does not evacuate all objects if -XX:-G1DeferredRSUpdate is set
tschatzl
parents:
26422
diff
changeset
|
270 |
// failure the cards/buffers in this queue set are passed to the |
f8ff74a6c058
8052172: Evacuation failure handling in G1 does not evacuate all objects if -XX:-G1DeferredRSUpdate is set
tschatzl
parents:
26422
diff
changeset
|
271 |
// DirtyCardQueueSet that is used to manage RSet updates |
33789
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
272 |
DirtyCardQueue into_cset_dcq(&_into_cset_dirty_card_queue_set); |
6247 | 273 |
|
25909
571781915421
8051837: Remove temporary G1UseParallelRSetUpdating and G1UseParallelRSetScanning flags
brutisso
parents:
24424
diff
changeset
|
274 |
updateRS(&into_cset_dcq, worker_i); |
33213
b937f634f56e
8138762: Refactor setup of evacuation closures in G1
mgerdin
parents:
33204
diff
changeset
|
275 |
size_t cards_scanned = scanRS(oc, heap_region_codeblobs, worker_i); |
6247 | 276 |
|
277 |
// We now clear the cached values of _cset_rs_update_cl for this worker |
|
278 |
_cset_rs_update_cl[worker_i] = NULL; |
|
32737
f02118695c2f
8135154: Move cards scanned and surviving young words aggregation to G1ParScanThreadStateSet
mgerdin
parents:
32617
diff
changeset
|
279 |
return cards_scanned; |
1374 | 280 |
} |
281 |
||
6958 | 282 |
void G1RemSet::prepare_for_oops_into_collection_set_do() { |
1374 | 283 |
_g1->set_refine_cte_cl_concurrency(false); |
284 |
DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set(); |
|
285 |
dcqs.concatenate_logs(); |
|
286 |
} |
|
287 |
||
6958 | 288 |
void G1RemSet::cleanup_after_oops_into_collection_set_do() { |
1374 | 289 |
// Cleanup after copy |
290 |
_g1->set_refine_cte_cl_concurrency(true); |
|
291 |
// Set all cards back to clean. |
|
292 |
_g1->cleanUpCardTable(); |
|
2881 | 293 |
|
33789
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
294 |
DirtyCardQueueSet& into_cset_dcqs = _into_cset_dirty_card_queue_set; |
6247 | 295 |
int into_cset_n_buffers = into_cset_dcqs.completed_buffers_num(); |
296 |
||
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
2009
diff
changeset
|
297 |
if (_g1->evacuation_failed()) { |
23455
e541bff96524
8035654: Add times for evacuation failure handling in "Other" time
tschatzl
parents:
22772
diff
changeset
|
298 |
double restore_remembered_set_start = os::elapsedTime(); |
e541bff96524
8035654: Add times for evacuation failure handling in "Other" time
tschatzl
parents:
22772
diff
changeset
|
299 |
|
6247 | 300 |
// Restore remembered sets for the regions pointing into the collection set. |
26701
f8ff74a6c058
8052172: Evacuation failure handling in G1 does not evacuate all objects if -XX:-G1DeferredRSUpdate is set
tschatzl
parents:
26422
diff
changeset
|
301 |
// We just need to transfer the completed buffers from the DirtyCardQueueSet |
f8ff74a6c058
8052172: Evacuation failure handling in G1 does not evacuate all objects if -XX:-G1DeferredRSUpdate is set
tschatzl
parents:
26422
diff
changeset
|
302 |
// used to hold cards that contain references that point into the collection set |
f8ff74a6c058
8052172: Evacuation failure handling in G1 does not evacuate all objects if -XX:-G1DeferredRSUpdate is set
tschatzl
parents:
26422
diff
changeset
|
303 |
// to the DCQS used to hold the deferred RS updates. |
f8ff74a6c058
8052172: Evacuation failure handling in G1 does not evacuate all objects if -XX:-G1DeferredRSUpdate is set
tschatzl
parents:
26422
diff
changeset
|
304 |
_g1->dirty_card_queue_set().merge_bufferlists(&into_cset_dcqs); |
23455
e541bff96524
8035654: Add times for evacuation failure handling in "Other" time
tschatzl
parents:
22772
diff
changeset
|
305 |
_g1->g1_policy()->phase_times()->record_evac_fail_restore_remsets((os::elapsedTime() - restore_remembered_set_start) * 1000.0); |
2142
032f4652700c
6720309: G1: don't synchronously update RSet during evacuation pauses
iveresov
parents:
2009
diff
changeset
|
306 |
} |
6247 | 307 |
|
308 |
// Free any completed buffers in the DirtyCardQueueSet used to hold cards |
|
309 |
// which contain references that point into the collection. |
|
33789
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
310 |
_into_cset_dirty_card_queue_set.clear(); |
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
311 |
assert(_into_cset_dirty_card_queue_set.completed_buffers_num() == 0, |
6247 | 312 |
"all buffers should be freed"); |
33789
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
313 |
_into_cset_dirty_card_queue_set.clear_n_completed_buffers(); |
1374 | 314 |
} |
315 |
||
316 |
class ScrubRSClosure: public HeapRegionClosure { |
|
317 |
G1CollectedHeap* _g1h; |
|
318 |
BitMap* _region_bm; |
|
319 |
BitMap* _card_bm; |
|
320 |
CardTableModRefBS* _ctbs; |
|
321 |
public: |
|
322 |
ScrubRSClosure(BitMap* region_bm, BitMap* card_bm) : |
|
323 |
_g1h(G1CollectedHeap::heap()), |
|
324 |
_region_bm(region_bm), _card_bm(card_bm), |
|
20309 | 325 |
_ctbs(_g1h->g1_barrier_set()) {} |
1374 | 326 |
|
327 |
bool doHeapRegion(HeapRegion* r) { |
|
26846
7d4376f8560e
8058495: G1: normalize names for isHumongous() and friends
tonyp
parents:
26701
diff
changeset
|
328 |
if (!r->is_continues_humongous()) { |
1374 | 329 |
r->rem_set()->scrub(_ctbs, _region_bm, _card_bm); |
330 |
} |
|
331 |
return false; |
|
332 |
} |
|
333 |
}; |
|
334 |
||
27251
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
27009
diff
changeset
|
335 |
void G1RemSet::scrub(BitMap* region_bm, BitMap* card_bm, uint worker_num, HeapRegionClaimer *hrclaimer) { |
1374 | 336 |
ScrubRSClosure scrub_cl(region_bm, card_bm); |
27009
e7e723732b6b
8058298: Separate heap region iterator claim values from the data structures iterated over
mlarsson
parents:
26846
diff
changeset
|
337 |
_g1->heap_region_par_iterate(&scrub_cl, worker_num, hrclaimer); |
1374 | 338 |
} |
339 |
||
11586
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
340 |
G1TriggerClosure::G1TriggerClosure() : |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
341 |
_triggered(false) { } |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
342 |
|
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
343 |
G1InvokeIfNotTriggeredClosure::G1InvokeIfNotTriggeredClosure(G1TriggerClosure* t_cl, |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
344 |
OopClosure* oop_cl) : |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
345 |
_trigger_cl(t_cl), _oop_cl(oop_cl) { } |
6247 | 346 |
|
11586
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
347 |
G1Mux2Closure::G1Mux2Closure(OopClosure *c1, OopClosure *c2) : |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
348 |
_c1(c1), _c2(c2) { } |
6247 | 349 |
|
11586
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
350 |
G1UpdateRSOrPushRefOopClosure:: |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
351 |
G1UpdateRSOrPushRefOopClosure(G1CollectedHeap* g1h, |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
352 |
G1RemSet* rs, |
28207
6ad23566cbef
8067655: Clean up G1 remembered set oop iteration
mgerdin
parents:
27905
diff
changeset
|
353 |
G1ParPushHeapRSClosure* push_ref_cl, |
11586
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
354 |
bool record_refs_into_cset, |
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23455
diff
changeset
|
355 |
uint worker_i) : |
11586
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
356 |
_g1(g1h), _g1_rem_set(rs), _from(NULL), |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
357 |
_record_refs_into_cset(record_refs_into_cset), |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
358 |
_push_ref_cl(push_ref_cl), _worker_i(worker_i) { } |
6247 | 359 |
|
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
360 |
// Returns true if the given card contains references that point |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
361 |
// into the collection set, if we're checking for such references; |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
362 |
// false otherwise. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
363 |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
23455
diff
changeset
|
364 |
bool G1RemSet::refine_card(jbyte* card_ptr, uint worker_i, |
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
365 |
bool check_for_refs_into_cset) { |
26160 | 366 |
assert(_g1->is_in_exact(_ct_bs->addr_for(card_ptr)), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32737
diff
changeset
|
367 |
"Card at " PTR_FORMAT " index " SIZE_FORMAT " representing heap at " PTR_FORMAT " (%u) must be in committed heap", |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32737
diff
changeset
|
368 |
p2i(card_ptr), |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32737
diff
changeset
|
369 |
_ct_bs->index_for(_ct_bs->addr_for(card_ptr)), |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32737
diff
changeset
|
370 |
p2i(_ct_bs->addr_for(card_ptr)), |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32737
diff
changeset
|
371 |
_g1->addr_to_region(_ct_bs->addr_for(card_ptr))); |
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
372 |
|
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
373 |
// If the card is no longer dirty, nothing to do. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
374 |
if (*card_ptr != CardTableModRefBS::dirty_card_val()) { |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
375 |
// No need to return that this card contains refs that point |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
376 |
// into the collection set. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
377 |
return false; |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
378 |
} |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
379 |
|
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
380 |
// Construct the region representing the card. |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
381 |
HeapWord* start = _ct_bs->addr_for(card_ptr); |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
382 |
// And find the region containing it. |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
383 |
HeapRegion* r = _g1->heap_region_containing(start); |
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
384 |
|
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
385 |
// Why do we have to check here whether a card is on a young region, |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
386 |
// given that we dirty young regions and, as a result, the |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
387 |
// post-barrier is supposed to filter them out and never to enqueue |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
388 |
// them? When we allocate a new region as the "allocation region" we |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
389 |
// actually dirty its cards after we release the lock, since card |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
390 |
// dirtying while holding the lock was a performance bottleneck. So, |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
391 |
// as a result, it is possible for other threads to actually |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
392 |
// allocate objects in the region (after the acquire the lock) |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
393 |
// before all the cards on the region are dirtied. This is unlikely, |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
394 |
// and it doesn't happen often, but it can happen. So, the extra |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
395 |
// check below filters out those cards. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
396 |
if (r->is_young()) { |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
397 |
return false; |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
398 |
} |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
399 |
|
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
400 |
// While we are processing RSet buffers during the collection, we |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
401 |
// actually don't want to scan any cards on the collection set, |
22551 | 402 |
// since we don't want to update remembered sets with entries that |
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
403 |
// point into the collection set, given that live objects from the |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
404 |
// collection set are about to move and such entries will be stale |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
405 |
// very soon. This change also deals with a reliability issue which |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
406 |
// involves scanning a card in the collection set and coming across |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
407 |
// an array that was being chunked and looking malformed. Note, |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
408 |
// however, that if evacuation fails, we have to scan any objects |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
409 |
// that were not moved and create any missing entries. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
410 |
if (r->in_collection_set()) { |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
411 |
return false; |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
412 |
} |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
413 |
|
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
414 |
// The result from the hot card cache insert call is either: |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
415 |
// * pointer to the current card |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
416 |
// (implying that the current card is not 'hot'), |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
417 |
// * null |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
418 |
// (meaning we had inserted the card ptr into the "hot" card cache, |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
419 |
// which had some headroom), |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
420 |
// * a pointer to a "hot" card that was evicted from the "hot" cache. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
421 |
// |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
422 |
|
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
423 |
G1HotCardCache* hot_card_cache = _cg1r->hot_card_cache(); |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
424 |
if (hot_card_cache->use_cache()) { |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
425 |
assert(!check_for_refs_into_cset, "sanity"); |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
426 |
assert(!SafepointSynchronize::is_at_safepoint(), "sanity"); |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
427 |
|
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
428 |
card_ptr = hot_card_cache->insert(card_ptr); |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
429 |
if (card_ptr == NULL) { |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
430 |
// There was no eviction. Nothing to do. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
431 |
return false; |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
432 |
} |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
433 |
|
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
434 |
start = _ct_bs->addr_for(card_ptr); |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
435 |
r = _g1->heap_region_containing(start); |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
436 |
|
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
437 |
// Checking whether the region we got back from the cache |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
438 |
// is young here is inappropriate. The region could have been |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
439 |
// freed, reallocated and tagged as young while in the cache. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
440 |
// Hence we could see its young type change at any time. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
441 |
} |
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
442 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13516
diff
changeset
|
443 |
// Don't use addr_for(card_ptr + 1) which can ask for |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13516
diff
changeset
|
444 |
// a card beyond the heap. This is not safe without a perm |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13516
diff
changeset
|
445 |
// gen at the upper end of the heap. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13516
diff
changeset
|
446 |
HeapWord* end = start + CardTableModRefBS::card_size_in_words; |
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
447 |
MemRegion dirtyRegion(start, end); |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
448 |
|
28207
6ad23566cbef
8067655: Clean up G1 remembered set oop iteration
mgerdin
parents:
27905
diff
changeset
|
449 |
G1ParPushHeapRSClosure* oops_in_heap_closure = NULL; |
10995
b3b2d17ff45d
7106751: G1: gc/gctests/nativeGC03 crashes VM with SIGSEGV
brutisso
parents:
10770
diff
changeset
|
450 |
if (check_for_refs_into_cset) { |
b3b2d17ff45d
7106751: G1: gc/gctests/nativeGC03 crashes VM with SIGSEGV
brutisso
parents:
10770
diff
changeset
|
451 |
// ConcurrentG1RefineThreads have worker numbers larger than what |
b3b2d17ff45d
7106751: G1: gc/gctests/nativeGC03 crashes VM with SIGSEGV
brutisso
parents:
10770
diff
changeset
|
452 |
// _cset_rs_update_cl[] is set up to handle. But those threads should |
b3b2d17ff45d
7106751: G1: gc/gctests/nativeGC03 crashes VM with SIGSEGV
brutisso
parents:
10770
diff
changeset
|
453 |
// only be active outside of a collection which means that when they |
b3b2d17ff45d
7106751: G1: gc/gctests/nativeGC03 crashes VM with SIGSEGV
brutisso
parents:
10770
diff
changeset
|
454 |
// reach here they should have check_for_refs_into_cset == false. |
b3b2d17ff45d
7106751: G1: gc/gctests/nativeGC03 crashes VM with SIGSEGV
brutisso
parents:
10770
diff
changeset
|
455 |
assert((size_t)worker_i < n_workers(), "index of worker larger than _cset_rs_update_cl[].length"); |
b3b2d17ff45d
7106751: G1: gc/gctests/nativeGC03 crashes VM with SIGSEGV
brutisso
parents:
10770
diff
changeset
|
456 |
oops_in_heap_closure = _cset_rs_update_cl[worker_i]; |
b3b2d17ff45d
7106751: G1: gc/gctests/nativeGC03 crashes VM with SIGSEGV
brutisso
parents:
10770
diff
changeset
|
457 |
} |
11586
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
458 |
G1UpdateRSOrPushRefOopClosure update_rs_oop_cl(_g1, |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
459 |
_g1->g1_rem_set(), |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
460 |
oops_in_heap_closure, |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
461 |
check_for_refs_into_cset, |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
462 |
worker_i); |
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
463 |
update_rs_oop_cl.set_from(r); |
6247 | 464 |
|
11586
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
465 |
G1TriggerClosure trigger_cl; |
10674
09e6f8d20337
7097053: G1: assert(da ? referent->is_oop() : referent->is_oop_or_null()) failed: referenceProcessor.cpp:1054
johnc
parents:
10670
diff
changeset
|
466 |
FilterIntoCSClosure into_cs_cl(NULL, _g1, &trigger_cl); |
11586
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
467 |
G1InvokeIfNotTriggeredClosure invoke_cl(&trigger_cl, &into_cs_cl); |
ccc217c177ee
7133038: G1: Some small profile based optimizations
johnc
parents:
11396
diff
changeset
|
468 |
G1Mux2Closure mux(&invoke_cl, &update_rs_oop_cl); |
6247 | 469 |
|
470 |
FilterOutOfRegionClosure filter_then_update_rs_oop_cl(r, |
|
471 |
(check_for_refs_into_cset ? |
|
472 |
(OopClosure*)&mux : |
|
473 |
(OopClosure*)&update_rs_oop_cl)); |
|
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
474 |
|
6068
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
475 |
// The region for the current card may be a young region. The |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
476 |
// current card may have been a card that was evicted from the |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
477 |
// card cache. When the card was inserted into the cache, we had |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
478 |
// determined that its region was non-young. While in the cache, |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
479 |
// the region may have been freed during a cleanup pause, reallocated |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
480 |
// and tagged as young. |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
481 |
// |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
482 |
// We wish to filter out cards for such a region but the current |
9418
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8683
diff
changeset
|
483 |
// thread, if we're running concurrently, may "see" the young type |
6068
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
484 |
// change at any time (so an earlier "is_young" check may pass or |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
485 |
// fail arbitrarily). We tell the iteration code to perform this |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
486 |
// filtering when it has been determined that there has been an actual |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
487 |
// allocation in this region and making it safe to check the young type. |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
488 |
bool filter_young = true; |
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
489 |
|
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
490 |
HeapWord* stop_point = |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
491 |
r->oops_on_card_seq_iterate_careful(dirtyRegion, |
6068
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
492 |
&filter_then_update_rs_oop_cl, |
9418
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8683
diff
changeset
|
493 |
filter_young, |
32a87dd6b746
7035144: G1: nightly failure: Non-dirty cards in region that should be dirty (failures still exist...)
tonyp
parents:
8683
diff
changeset
|
494 |
card_ptr); |
6068
80ef41e75a2d
6956639: G1: assert(cached_ptr != card_ptr) failed: shouldn't be, concurrentG1Refine.cpp:307
johnc
parents:
5891
diff
changeset
|
495 |
|
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
496 |
// If stop_point is non-null, then we encountered an unallocated region |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
497 |
// (perhaps the unfilled portion of a TLAB.) For now, we'll dirty the |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
498 |
// card and re-enqueue: if we put off the card until a GC pause, then the |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
499 |
// unallocated portion will be filled in. Alternatively, we might try |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
500 |
// the full complexity of the technique used in "regular" precleaning. |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
501 |
if (stop_point != NULL) { |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
502 |
// The card might have gotten re-dirtied and re-enqueued while we |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
503 |
// worked. (In fact, it's pretty likely.) |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
504 |
if (*card_ptr != CardTableModRefBS::dirty_card_val()) { |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
505 |
*card_ptr = CardTableModRefBS::dirty_card_val(); |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
506 |
MutexLockerEx x(Shared_DirtyCardQ_lock, |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
507 |
Mutex::_no_safepoint_check_flag); |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
508 |
DirtyCardQueue* sdcq = |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
509 |
JavaThread::dirty_card_queue_set().shared_dirty_card_queue(); |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
510 |
sdcq->enqueue(card_ptr); |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
511 |
} |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
512 |
} else { |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
513 |
_conc_refine_cards++; |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3262
diff
changeset
|
514 |
} |
6247 | 515 |
|
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
516 |
// This gets set to true if the card being refined has |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
517 |
// references that point into the collection set. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
518 |
bool has_refs_into_cset = trigger_cl.triggered(); |
1374 | 519 |
|
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
520 |
// We should only be detecting that the card contains references |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
521 |
// that point into the collection set if the current thread is |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
522 |
// a GC worker thread. |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
523 |
assert(!has_refs_into_cset || SafepointSynchronize::is_at_safepoint(), |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
524 |
"invalid result at non safepoint"); |
6247 | 525 |
|
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
526 |
return has_refs_into_cset; |
1374 | 527 |
} |
528 |
||
20305
af013cf4a5e6
8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
19339
diff
changeset
|
529 |
void G1RemSet::print_periodic_summary_info(const char* header) { |
17854
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
530 |
G1RemSetSummary current; |
20310
903b398490d9
8025441: G1: assert "assert(thread < _num_vtimes) failed: just checking" fails when G1ConcRefinementThreads > ParallelGCThreads
tschatzl
parents:
20309
diff
changeset
|
531 |
current.initialize(this); |
1374 | 532 |
|
17854
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
533 |
_prev_period_summary.subtract_from(¤t); |
20305
af013cf4a5e6
8014078: G1: improve remembered set summary information by providing per region type information
tschatzl
parents:
19339
diff
changeset
|
534 |
print_summary_info(&_prev_period_summary, header); |
1374 | 535 |
|
17854
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
536 |
_prev_period_summary.set(¤t); |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
537 |
} |
2881 | 538 |
|
6958 | 539 |
void G1RemSet::print_summary_info() { |
17854
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
540 |
G1RemSetSummary current; |
20310
903b398490d9
8025441: G1: assert "assert(thread < _num_vtimes) failed: just checking" fails when G1ConcRefinementThreads > ParallelGCThreads
tschatzl
parents:
20309
diff
changeset
|
541 |
current.initialize(this); |
17854
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
542 |
|
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
543 |
print_summary_info(¤t, " Cumulative RS summary"); |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
544 |
} |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
545 |
|
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
546 |
void G1RemSet::print_summary_info(G1RemSetSummary * summary, const char * header) { |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
547 |
assert(summary != NULL, "just checking"); |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
548 |
|
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
549 |
if (header != NULL) { |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
550 |
gclog_or_tty->print_cr("%s", header); |
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
551 |
} |
1374 | 552 |
|
17854
d65bc1546091
8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
tschatzl
parents:
17327
diff
changeset
|
553 |
summary->print_on(gclog_or_tty); |
1374 | 554 |
} |
6247 | 555 |
|
6958 | 556 |
void G1RemSet::prepare_for_verify() { |
2249
fb8abed44792
6817419: G1: Enable extensive verification for humongous regions
iveresov
parents:
2152
diff
changeset
|
557 |
if (G1HRRSFlushLogBuffersOnVerify && |
fb8abed44792
6817419: G1: Enable extensive verification for humongous regions
iveresov
parents:
2152
diff
changeset
|
558 |
(VerifyBeforeGC || VerifyAfterGC) |
31331
a7c714b6cfb3
7097567: G1: abstract and encapsulate collector phases and transitions between them
drwhite
parents:
30764
diff
changeset
|
559 |
&& (!_g1->collector_state()->full_collection() || G1VerifyRSetsDuringFullGC)) { |
1374 | 560 |
cleanupHRRS(); |
561 |
_g1->set_refine_cte_cl_concurrency(false); |
|
562 |
if (SafepointSynchronize::is_at_safepoint()) { |
|
563 |
DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set(); |
|
564 |
dcqs.concatenate_logs(); |
|
565 |
} |
|
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
566 |
|
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
567 |
G1HotCardCache* hot_card_cache = _cg1r->hot_card_cache(); |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
568 |
bool use_hot_card_cache = hot_card_cache->use_cache(); |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
569 |
hot_card_cache->set_use_cache(false); |
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
570 |
|
33789
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
571 |
DirtyCardQueue into_cset_dcq(&_into_cset_dirty_card_queue_set); |
6247 | 572 |
updateRS(&into_cset_dcq, 0); |
33789
4a76a42bd42e
8141434: G1CollectedHeap::into_cset_dirty_card_queue_set should be moved to G1RemSet
david
parents:
33742
diff
changeset
|
573 |
_into_cset_dirty_card_queue_set.clear(); |
2249
fb8abed44792
6817419: G1: Enable extensive verification for humongous regions
iveresov
parents:
2152
diff
changeset
|
574 |
|
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
17108
diff
changeset
|
575 |
hot_card_cache->set_use_cache(use_hot_card_cache); |
2249
fb8abed44792
6817419: G1: Enable extensive verification for humongous regions
iveresov
parents:
2152
diff
changeset
|
576 |
assert(JavaThread::dirty_card_queue_set().completed_buffers_num() == 0, "All should be consumed"); |
1374 | 577 |
} |
578 |
} |