src/share/vm/gc_implementation/g1/g1RemSet.cpp

Mon, 27 Apr 2009 16:52:18 -0700

author
iveresov
date
Mon, 27 Apr 2009 16:52:18 -0700
changeset 1182
b803b1b9e206
parent 1112
96b229c54d1e
child 1186
20c6f43950b5
permissions
-rw-r--r--

6819098: G1: reduce RSet scanning times
Summary: Added a feedback-driven exponential skipping for parallel RSet scanning.
Reviewed-by: tonyp, apetrusenko

ysr@777 1 /*
xdono@1014 2 * Copyright 2001-2009 Sun Microsystems, Inc. All Rights Reserved.
ysr@777 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ysr@777 4 *
ysr@777 5 * This code is free software; you can redistribute it and/or modify it
ysr@777 6 * under the terms of the GNU General Public License version 2 only, as
ysr@777 7 * published by the Free Software Foundation.
ysr@777 8 *
ysr@777 9 * This code is distributed in the hope that it will be useful, but WITHOUT
ysr@777 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ysr@777 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ysr@777 12 * version 2 for more details (a copy is included in the LICENSE file that
ysr@777 13 * accompanied this code).
ysr@777 14 *
ysr@777 15 * You should have received a copy of the GNU General Public License version
ysr@777 16 * 2 along with this work; if not, write to the Free Software Foundation,
ysr@777 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ysr@777 18 *
ysr@777 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
ysr@777 20 * CA 95054 USA or visit www.sun.com if you need additional information or
ysr@777 21 * have any questions.
ysr@777 22 *
ysr@777 23 */
ysr@777 24
ysr@777 25 #include "incls/_precompiled.incl"
ysr@777 26 #include "incls/_g1RemSet.cpp.incl"
ysr@777 27
ysr@777 28 #define CARD_REPEAT_HISTO 0
ysr@777 29
ysr@777 30 #if CARD_REPEAT_HISTO
ysr@777 31 static size_t ct_freq_sz;
ysr@777 32 static jbyte* ct_freq = NULL;
ysr@777 33
ysr@777 34 void init_ct_freq_table(size_t heap_sz_bytes) {
ysr@777 35 if (ct_freq == NULL) {
ysr@777 36 ct_freq_sz = heap_sz_bytes/CardTableModRefBS::card_size;
ysr@777 37 ct_freq = new jbyte[ct_freq_sz];
ysr@777 38 for (size_t j = 0; j < ct_freq_sz; j++) ct_freq[j] = 0;
ysr@777 39 }
ysr@777 40 }
ysr@777 41
ysr@777 42 void ct_freq_note_card(size_t index) {
ysr@777 43 assert(0 <= index && index < ct_freq_sz, "Bounds error.");
ysr@777 44 if (ct_freq[index] < 100) { ct_freq[index]++; }
ysr@777 45 }
ysr@777 46
ysr@777 47 static IntHistogram card_repeat_count(10, 10);
ysr@777 48
ysr@777 49 void ct_freq_update_histo_and_reset() {
ysr@777 50 for (size_t j = 0; j < ct_freq_sz; j++) {
ysr@777 51 card_repeat_count.add_entry(ct_freq[j]);
ysr@777 52 ct_freq[j] = 0;
ysr@777 53 }
ysr@777 54
ysr@777 55 }
ysr@777 56 #endif
ysr@777 57
ysr@777 58
ysr@777 59 class IntoCSOopClosure: public OopsInHeapRegionClosure {
ysr@777 60 OopsInHeapRegionClosure* _blk;
ysr@777 61 G1CollectedHeap* _g1;
ysr@777 62 public:
ysr@777 63 IntoCSOopClosure(G1CollectedHeap* g1, OopsInHeapRegionClosure* blk) :
ysr@777 64 _g1(g1), _blk(blk) {}
ysr@777 65 void set_region(HeapRegion* from) {
ysr@777 66 _blk->set_region(from);
ysr@777 67 }
ysr@777 68 virtual void do_oop(narrowOop* p) {
ysr@777 69 guarantee(false, "NYI");
ysr@777 70 }
ysr@777 71 virtual void do_oop(oop* p) {
ysr@777 72 oop obj = *p;
ysr@777 73 if (_g1->obj_in_cs(obj)) _blk->do_oop(p);
ysr@777 74 }
ysr@777 75 bool apply_to_weak_ref_discovered_field() { return true; }
ysr@777 76 bool idempotent() { return true; }
ysr@777 77 };
ysr@777 78
ysr@777 79 class IntoCSRegionClosure: public HeapRegionClosure {
ysr@777 80 IntoCSOopClosure _blk;
ysr@777 81 G1CollectedHeap* _g1;
ysr@777 82 public:
ysr@777 83 IntoCSRegionClosure(G1CollectedHeap* g1, OopsInHeapRegionClosure* blk) :
ysr@777 84 _g1(g1), _blk(g1, blk) {}
ysr@777 85 bool doHeapRegion(HeapRegion* r) {
ysr@777 86 if (!r->in_collection_set()) {
ysr@777 87 _blk.set_region(r);
ysr@777 88 if (r->isHumongous()) {
ysr@777 89 if (r->startsHumongous()) {
ysr@777 90 oop obj = oop(r->bottom());
ysr@777 91 obj->oop_iterate(&_blk);
ysr@777 92 }
ysr@777 93 } else {
ysr@777 94 r->oop_before_save_marks_iterate(&_blk);
ysr@777 95 }
ysr@777 96 }
ysr@777 97 return false;
ysr@777 98 }
ysr@777 99 };
ysr@777 100
ysr@777 101 void
ysr@777 102 StupidG1RemSet::oops_into_collection_set_do(OopsInHeapRegionClosure* oc,
ysr@777 103 int worker_i) {
ysr@777 104 IntoCSRegionClosure rc(_g1, oc);
ysr@777 105 _g1->heap_region_iterate(&rc);
ysr@777 106 }
ysr@777 107
ysr@777 108 class UpdateRSOutOfRegionClosure: public HeapRegionClosure {
ysr@777 109 G1CollectedHeap* _g1h;
ysr@777 110 ModRefBarrierSet* _mr_bs;
ysr@777 111 UpdateRSOopClosure _cl;
ysr@777 112 int _worker_i;
ysr@777 113 public:
ysr@777 114 UpdateRSOutOfRegionClosure(G1CollectedHeap* g1, int worker_i = 0) :
ysr@777 115 _cl(g1->g1_rem_set()->as_HRInto_G1RemSet(), worker_i),
ysr@777 116 _mr_bs(g1->mr_bs()),
ysr@777 117 _worker_i(worker_i),
ysr@777 118 _g1h(g1)
ysr@777 119 {}
ysr@777 120 bool doHeapRegion(HeapRegion* r) {
ysr@777 121 if (!r->in_collection_set() && !r->continuesHumongous()) {
ysr@777 122 _cl.set_from(r);
ysr@777 123 r->set_next_filter_kind(HeapRegionDCTOC::OutOfRegionFilterKind);
ysr@777 124 _mr_bs->mod_oop_in_space_iterate(r, &_cl, true, true);
ysr@777 125 }
ysr@777 126 return false;
ysr@777 127 }
ysr@777 128 };
ysr@777 129
ysr@777 130 class VerifyRSCleanCardOopClosure: public OopClosure {
ysr@777 131 G1CollectedHeap* _g1;
ysr@777 132 public:
ysr@777 133 VerifyRSCleanCardOopClosure(G1CollectedHeap* g1) : _g1(g1) {}
ysr@777 134
ysr@777 135 virtual void do_oop(narrowOop* p) {
ysr@777 136 guarantee(false, "NYI");
ysr@777 137 }
ysr@777 138 virtual void do_oop(oop* p) {
ysr@777 139 oop obj = *p;
ysr@777 140 HeapRegion* to = _g1->heap_region_containing(obj);
ysr@777 141 guarantee(to == NULL || !to->in_collection_set(),
ysr@777 142 "Missed a rem set member.");
ysr@777 143 }
ysr@777 144 };
ysr@777 145
ysr@777 146 HRInto_G1RemSet::HRInto_G1RemSet(G1CollectedHeap* g1, CardTableModRefBS* ct_bs)
ysr@777 147 : G1RemSet(g1), _ct_bs(ct_bs), _g1p(_g1->g1_policy()),
ysr@777 148 _cg1r(g1->concurrent_g1_refine()),
ysr@777 149 _par_traversal_in_progress(false), _new_refs(NULL),
ysr@777 150 _cards_scanned(NULL), _total_cards_scanned(0)
ysr@777 151 {
ysr@777 152 _seq_task = new SubTasksDone(NumSeqTasks);
iveresov@1051 153 guarantee(n_workers() > 0, "There should be some workers");
iveresov@1051 154 _new_refs = NEW_C_HEAP_ARRAY(GrowableArray<oop*>*, n_workers());
iveresov@1051 155 for (uint i = 0; i < n_workers(); i++) {
iveresov@1051 156 _new_refs[i] = new (ResourceObj::C_HEAP) GrowableArray<oop*>(8192,true);
iveresov@1051 157 }
ysr@777 158 }
ysr@777 159
ysr@777 160 HRInto_G1RemSet::~HRInto_G1RemSet() {
ysr@777 161 delete _seq_task;
iveresov@1051 162 for (uint i = 0; i < n_workers(); i++) {
iveresov@1051 163 delete _new_refs[i];
iveresov@1051 164 }
iveresov@1051 165 FREE_C_HEAP_ARRAY(GrowableArray<oop*>*, _new_refs);
ysr@777 166 }
ysr@777 167
ysr@777 168 void CountNonCleanMemRegionClosure::do_MemRegion(MemRegion mr) {
ysr@777 169 if (_g1->is_in_g1_reserved(mr.start())) {
ysr@777 170 _n += (int) ((mr.byte_size() / CardTableModRefBS::card_size));
ysr@777 171 if (_start_first == NULL) _start_first = mr.start();
ysr@777 172 }
ysr@777 173 }
ysr@777 174
ysr@777 175 class ScanRSClosure : public HeapRegionClosure {
ysr@777 176 size_t _cards_done, _cards;
ysr@777 177 G1CollectedHeap* _g1h;
ysr@777 178 OopsInHeapRegionClosure* _oc;
ysr@777 179 G1BlockOffsetSharedArray* _bot_shared;
ysr@777 180 CardTableModRefBS *_ct_bs;
ysr@777 181 int _worker_i;
ysr@777 182 bool _try_claimed;
iveresov@1182 183 size_t _min_skip_distance, _max_skip_distance;
ysr@777 184 public:
ysr@777 185 ScanRSClosure(OopsInHeapRegionClosure* oc, int worker_i) :
ysr@777 186 _oc(oc),
ysr@777 187 _cards(0),
ysr@777 188 _cards_done(0),
ysr@777 189 _worker_i(worker_i),
ysr@777 190 _try_claimed(false)
ysr@777 191 {
ysr@777 192 _g1h = G1CollectedHeap::heap();
ysr@777 193 _bot_shared = _g1h->bot_shared();
ysr@777 194 _ct_bs = (CardTableModRefBS*) (_g1h->barrier_set());
iveresov@1182 195 _min_skip_distance = 16;
iveresov@1182 196 _max_skip_distance = 2 * _g1h->n_par_threads() * _min_skip_distance;
ysr@777 197 }
ysr@777 198
ysr@777 199 void set_try_claimed() { _try_claimed = true; }
ysr@777 200
ysr@777 201 void scanCard(size_t index, HeapRegion *r) {
ysr@777 202 _cards_done++;
ysr@777 203 DirtyCardToOopClosure* cl =
ysr@777 204 r->new_dcto_closure(_oc,
ysr@777 205 CardTableModRefBS::Precise,
ysr@777 206 HeapRegionDCTOC::IntoCSFilterKind);
ysr@777 207
ysr@777 208 // Set the "from" region in the closure.
ysr@777 209 _oc->set_region(r);
ysr@777 210 HeapWord* card_start = _bot_shared->address_for_index(index);
ysr@777 211 HeapWord* card_end = card_start + G1BlockOffsetSharedArray::N_words;
ysr@777 212 Space *sp = SharedHeap::heap()->space_containing(card_start);
ysr@777 213 MemRegion sm_region;
ysr@777 214 if (ParallelGCThreads > 0) {
ysr@777 215 // first find the used area
ysr@777 216 sm_region = sp->used_region_at_save_marks();
ysr@777 217 } else {
ysr@777 218 // The closure is not idempotent. We shouldn't look at objects
ysr@777 219 // allocated during the GC.
ysr@777 220 sm_region = sp->used_region_at_save_marks();
ysr@777 221 }
ysr@777 222 MemRegion mr = sm_region.intersection(MemRegion(card_start,card_end));
ysr@777 223 if (!mr.is_empty()) {
ysr@777 224 cl->do_MemRegion(mr);
ysr@777 225 }
ysr@777 226 }
ysr@777 227
ysr@777 228 void printCard(HeapRegion* card_region, size_t card_index,
ysr@777 229 HeapWord* card_start) {
ysr@777 230 gclog_or_tty->print_cr("T %d Region [" PTR_FORMAT ", " PTR_FORMAT ") "
ysr@777 231 "RS names card %p: "
ysr@777 232 "[" PTR_FORMAT ", " PTR_FORMAT ")",
ysr@777 233 _worker_i,
ysr@777 234 card_region->bottom(), card_region->end(),
ysr@777 235 card_index,
ysr@777 236 card_start, card_start + G1BlockOffsetSharedArray::N_words);
ysr@777 237 }
ysr@777 238
ysr@777 239 bool doHeapRegion(HeapRegion* r) {
ysr@777 240 assert(r->in_collection_set(), "should only be called on elements of CS.");
ysr@777 241 HeapRegionRemSet* hrrs = r->rem_set();
ysr@777 242 if (hrrs->iter_is_complete()) return false; // All done.
ysr@777 243 if (!_try_claimed && !hrrs->claim_iter()) return false;
ysr@777 244 // If we didn't return above, then
ysr@777 245 // _try_claimed || r->claim_iter()
ysr@777 246 // is true: either we're supposed to work on claimed-but-not-complete
ysr@777 247 // regions, or we successfully claimed the region.
ysr@777 248 HeapRegionRemSetIterator* iter = _g1h->rem_set_iterator(_worker_i);
ysr@777 249 hrrs->init_iterator(iter);
ysr@777 250 size_t card_index;
iveresov@1182 251 size_t skip_distance = 0, current_card = 0, jump_to_card = 0;
ysr@777 252 while (iter->has_next(card_index)) {
iveresov@1182 253 if (current_card < jump_to_card) {
iveresov@1182 254 ++current_card;
iveresov@1182 255 continue;
iveresov@1182 256 }
ysr@777 257 HeapWord* card_start = _g1h->bot_shared()->address_for_index(card_index);
ysr@777 258 #if 0
ysr@777 259 gclog_or_tty->print("Rem set iteration yielded card [" PTR_FORMAT ", " PTR_FORMAT ").\n",
ysr@777 260 card_start, card_start + CardTableModRefBS::card_size_in_words);
ysr@777 261 #endif
ysr@777 262
ysr@777 263 HeapRegion* card_region = _g1h->heap_region_containing(card_start);
ysr@777 264 assert(card_region != NULL, "Yielding cards not in the heap?");
ysr@777 265 _cards++;
ysr@777 266
iveresov@1182 267 // If the card is dirty, then we will scan it during updateRS.
iveresov@1182 268 if (!card_region->in_collection_set() && !_ct_bs->is_card_dirty(card_index)) {
iveresov@1182 269 if (!_ct_bs->is_card_claimed(card_index) && _ct_bs->claim_card(card_index)) {
ysr@777 270 scanCard(card_index, card_region);
iveresov@1182 271 } else if (_try_claimed) {
iveresov@1182 272 if (jump_to_card == 0 || jump_to_card != current_card) {
iveresov@1182 273 // We did some useful work in the previous iteration.
iveresov@1182 274 // Decrease the distance.
iveresov@1182 275 skip_distance = MAX2(skip_distance >> 1, _min_skip_distance);
iveresov@1182 276 } else {
iveresov@1182 277 // Previous iteration resulted in a claim failure.
iveresov@1182 278 // Increase the distance.
iveresov@1182 279 skip_distance = MIN2(skip_distance << 1, _max_skip_distance);
iveresov@1182 280 }
iveresov@1182 281 jump_to_card = current_card + skip_distance;
iveresov@1182 282 }
ysr@777 283 }
iveresov@1182 284 ++current_card;
ysr@777 285 }
iveresov@1182 286 if (!_try_claimed) {
iveresov@1182 287 hrrs->set_iter_complete();
iveresov@1182 288 }
ysr@777 289 return false;
ysr@777 290 }
ysr@777 291 // Set all cards back to clean.
ysr@777 292 void cleanup() {_g1h->cleanUpCardTable();}
ysr@777 293 size_t cards_done() { return _cards_done;}
ysr@777 294 size_t cards_looked_up() { return _cards;}
ysr@777 295 };
ysr@777 296
ysr@777 297 // We want the parallel threads to start their scanning at
ysr@777 298 // different collection set regions to avoid contention.
ysr@777 299 // If we have:
ysr@777 300 // n collection set regions
ysr@777 301 // p threads
ysr@777 302 // Then thread t will start at region t * floor (n/p)
ysr@777 303
ysr@777 304 HeapRegion* HRInto_G1RemSet::calculateStartRegion(int worker_i) {
ysr@777 305 HeapRegion* result = _g1p->collection_set();
ysr@777 306 if (ParallelGCThreads > 0) {
ysr@777 307 size_t cs_size = _g1p->collection_set_size();
ysr@777 308 int n_workers = _g1->workers()->total_workers();
ysr@777 309 size_t cs_spans = cs_size / n_workers;
ysr@777 310 size_t ind = cs_spans * worker_i;
ysr@777 311 for (size_t i = 0; i < ind; i++)
ysr@777 312 result = result->next_in_collection_set();
ysr@777 313 }
ysr@777 314 return result;
ysr@777 315 }
ysr@777 316
ysr@777 317 void HRInto_G1RemSet::scanRS(OopsInHeapRegionClosure* oc, int worker_i) {
ysr@777 318 double rs_time_start = os::elapsedTime();
ysr@777 319 HeapRegion *startRegion = calculateStartRegion(worker_i);
ysr@777 320
ysr@777 321 BufferingOopsInHeapRegionClosure boc(oc);
ysr@777 322 ScanRSClosure scanRScl(&boc, worker_i);
ysr@777 323 _g1->collection_set_iterate_from(startRegion, &scanRScl);
ysr@777 324 scanRScl.set_try_claimed();
ysr@777 325 _g1->collection_set_iterate_from(startRegion, &scanRScl);
ysr@777 326
ysr@777 327 boc.done();
ysr@777 328 double closure_app_time_sec = boc.closure_app_seconds();
ysr@777 329 double scan_rs_time_sec = (os::elapsedTime() - rs_time_start) -
ysr@777 330 closure_app_time_sec;
ysr@777 331 double closure_app_time_ms = closure_app_time_sec * 1000.0;
ysr@777 332
ysr@777 333 assert( _cards_scanned != NULL, "invariant" );
ysr@777 334 _cards_scanned[worker_i] = scanRScl.cards_done();
ysr@777 335
ysr@777 336 _g1p->record_scan_rs_start_time(worker_i, rs_time_start * 1000.0);
ysr@777 337 _g1p->record_scan_rs_time(worker_i, scan_rs_time_sec * 1000.0);
iveresov@1051 338
iveresov@1051 339 double scan_new_refs_time_ms = _g1p->get_scan_new_refs_time(worker_i);
iveresov@1051 340 if (scan_new_refs_time_ms > 0.0) {
iveresov@1051 341 closure_app_time_ms += scan_new_refs_time_ms;
ysr@777 342 }
iveresov@1051 343
ysr@777 344 _g1p->record_obj_copy_time(worker_i, closure_app_time_ms);
ysr@777 345 }
ysr@777 346
ysr@777 347 void HRInto_G1RemSet::updateRS(int worker_i) {
ysr@777 348 ConcurrentG1Refine* cg1r = _g1->concurrent_g1_refine();
ysr@777 349
ysr@777 350 double start = os::elapsedTime();
ysr@777 351 _g1p->record_update_rs_start_time(worker_i, start * 1000.0);
ysr@777 352
ysr@777 353 if (G1RSBarrierUseQueue && !cg1r->do_traversal()) {
ysr@777 354 // Apply the appropriate closure to all remaining log entries.
ysr@777 355 _g1->iterate_dirty_card_closure(false, worker_i);
ysr@777 356 // Now there should be no dirty cards.
ysr@777 357 if (G1RSLogCheckCardTable) {
ysr@777 358 CountNonCleanMemRegionClosure cl(_g1);
ysr@777 359 _ct_bs->mod_card_iterate(&cl);
ysr@777 360 // XXX This isn't true any more: keeping cards of young regions
ysr@777 361 // marked dirty broke it. Need some reasonable fix.
ysr@777 362 guarantee(cl.n() == 0, "Card table should be clean.");
ysr@777 363 }
ysr@777 364 } else {
ysr@777 365 UpdateRSOutOfRegionClosure update_rs(_g1, worker_i);
ysr@777 366 _g1->heap_region_iterate(&update_rs);
ysr@777 367 // We did a traversal; no further one is necessary.
ysr@777 368 if (G1RSBarrierUseQueue) {
ysr@777 369 assert(cg1r->do_traversal(), "Or we shouldn't have gotten here.");
ysr@777 370 cg1r->set_pya_cancel();
ysr@777 371 }
ysr@777 372 if (_cg1r->use_cache()) {
ysr@777 373 _cg1r->clear_and_record_card_counts();
ysr@777 374 _cg1r->clear_hot_cache();
ysr@777 375 }
ysr@777 376 }
ysr@777 377 _g1p->record_update_rs_time(worker_i, (os::elapsedTime() - start) * 1000.0);
ysr@777 378 }
ysr@777 379
ysr@777 380 #ifndef PRODUCT
ysr@777 381 class PrintRSClosure : public HeapRegionClosure {
ysr@777 382 int _count;
ysr@777 383 public:
ysr@777 384 PrintRSClosure() : _count(0) {}
ysr@777 385 bool doHeapRegion(HeapRegion* r) {
ysr@777 386 HeapRegionRemSet* hrrs = r->rem_set();
ysr@777 387 _count += (int) hrrs->occupied();
ysr@777 388 if (hrrs->occupied() == 0) {
ysr@777 389 gclog_or_tty->print("Heap Region [" PTR_FORMAT ", " PTR_FORMAT ") "
ysr@777 390 "has no remset entries\n",
ysr@777 391 r->bottom(), r->end());
ysr@777 392 } else {
ysr@777 393 gclog_or_tty->print("Printing rem set for heap region [" PTR_FORMAT ", " PTR_FORMAT ")\n",
ysr@777 394 r->bottom(), r->end());
ysr@777 395 r->print();
ysr@777 396 hrrs->print();
ysr@777 397 gclog_or_tty->print("\nDone printing rem set\n");
ysr@777 398 }
ysr@777 399 return false;
ysr@777 400 }
ysr@777 401 int occupied() {return _count;}
ysr@777 402 };
ysr@777 403 #endif
ysr@777 404
ysr@777 405 class CountRSSizeClosure: public HeapRegionClosure {
ysr@777 406 size_t _n;
ysr@777 407 size_t _tot;
ysr@777 408 size_t _max;
ysr@777 409 HeapRegion* _max_r;
ysr@777 410 enum {
ysr@777 411 N = 20,
ysr@777 412 MIN = 6
ysr@777 413 };
ysr@777 414 int _histo[N];
ysr@777 415 public:
ysr@777 416 CountRSSizeClosure() : _n(0), _tot(0), _max(0), _max_r(NULL) {
ysr@777 417 for (int i = 0; i < N; i++) _histo[i] = 0;
ysr@777 418 }
ysr@777 419 bool doHeapRegion(HeapRegion* r) {
ysr@777 420 if (!r->continuesHumongous()) {
ysr@777 421 size_t occ = r->rem_set()->occupied();
ysr@777 422 _n++;
ysr@777 423 _tot += occ;
ysr@777 424 if (occ > _max) {
ysr@777 425 _max = occ;
ysr@777 426 _max_r = r;
ysr@777 427 }
ysr@777 428 // Fit it into a histo bin.
ysr@777 429 int s = 1 << MIN;
ysr@777 430 int i = 0;
ysr@777 431 while (occ > (size_t) s && i < (N-1)) {
ysr@777 432 s = s << 1;
ysr@777 433 i++;
ysr@777 434 }
ysr@777 435 _histo[i]++;
ysr@777 436 }
ysr@777 437 return false;
ysr@777 438 }
ysr@777 439 size_t n() { return _n; }
ysr@777 440 size_t tot() { return _tot; }
ysr@777 441 size_t mx() { return _max; }
ysr@777 442 HeapRegion* mxr() { return _max_r; }
ysr@777 443 void print_histo() {
ysr@777 444 int mx = N;
ysr@777 445 while (mx >= 0) {
ysr@777 446 if (_histo[mx-1] > 0) break;
ysr@777 447 mx--;
ysr@777 448 }
ysr@777 449 gclog_or_tty->print_cr("Number of regions with given RS sizes:");
ysr@777 450 gclog_or_tty->print_cr(" <= %8d %8d", 1 << MIN, _histo[0]);
ysr@777 451 for (int i = 1; i < mx-1; i++) {
ysr@777 452 gclog_or_tty->print_cr(" %8d - %8d %8d",
ysr@777 453 (1 << (MIN + i - 1)) + 1,
ysr@777 454 1 << (MIN + i),
ysr@777 455 _histo[i]);
ysr@777 456 }
ysr@777 457 gclog_or_tty->print_cr(" > %8d %8d", (1 << (MIN+mx-2))+1, _histo[mx-1]);
ysr@777 458 }
ysr@777 459 };
ysr@777 460
ysr@777 461 void
ysr@777 462 HRInto_G1RemSet::scanNewRefsRS(OopsInHeapRegionClosure* oc,
ysr@777 463 int worker_i) {
ysr@777 464 double scan_new_refs_start_sec = os::elapsedTime();
ysr@777 465 G1CollectedHeap* g1h = G1CollectedHeap::heap();
ysr@777 466 CardTableModRefBS* ct_bs = (CardTableModRefBS*) (g1h->barrier_set());
iveresov@1051 467 for (int i = 0; i < _new_refs[worker_i]->length(); i++) {
iveresov@1051 468 oop* p = _new_refs[worker_i]->at(i);
ysr@777 469 oop obj = *p;
ysr@777 470 // *p was in the collection set when p was pushed on "_new_refs", but
ysr@777 471 // another thread may have processed this location from an RS, so it
ysr@777 472 // might not point into the CS any longer. If so, it's obviously been
ysr@777 473 // processed, and we don't need to do anything further.
ysr@777 474 if (g1h->obj_in_cs(obj)) {
ysr@777 475 HeapRegion* r = g1h->heap_region_containing(p);
ysr@777 476
ysr@777 477 DEBUG_ONLY(HeapRegion* to = g1h->heap_region_containing(obj));
ysr@777 478 oc->set_region(r);
ysr@777 479 // If "p" has already been processed concurrently, this is
ysr@777 480 // idempotent.
ysr@777 481 oc->do_oop(p);
ysr@777 482 }
ysr@777 483 }
ysr@777 484 _g1p->record_scan_new_refs_time(worker_i,
ysr@777 485 (os::elapsedTime() - scan_new_refs_start_sec)
ysr@777 486 * 1000.0);
ysr@777 487 }
ysr@777 488
ysr@777 489 void HRInto_G1RemSet::set_par_traversal(bool b) {
ysr@777 490 _par_traversal_in_progress = b;
ysr@777 491 HeapRegionRemSet::set_par_traversal(b);
ysr@777 492 }
ysr@777 493
ysr@777 494 void HRInto_G1RemSet::cleanupHRRS() {
ysr@777 495 HeapRegionRemSet::cleanup();
ysr@777 496 }
ysr@777 497
ysr@777 498 void
ysr@777 499 HRInto_G1RemSet::oops_into_collection_set_do(OopsInHeapRegionClosure* oc,
ysr@777 500 int worker_i) {
ysr@777 501 #if CARD_REPEAT_HISTO
ysr@777 502 ct_freq_update_histo_and_reset();
ysr@777 503 #endif
ysr@777 504 if (worker_i == 0) {
ysr@777 505 _cg1r->clear_and_record_card_counts();
ysr@777 506 }
ysr@777 507
ysr@777 508 // Make this into a command-line flag...
ysr@777 509 if (G1RSCountHisto && (ParallelGCThreads == 0 || worker_i == 0)) {
ysr@777 510 CountRSSizeClosure count_cl;
ysr@777 511 _g1->heap_region_iterate(&count_cl);
ysr@777 512 gclog_or_tty->print_cr("Avg of %d RS counts is %f, max is %d, "
ysr@777 513 "max region is " PTR_FORMAT,
ysr@777 514 count_cl.n(), (float)count_cl.tot()/(float)count_cl.n(),
ysr@777 515 count_cl.mx(), count_cl.mxr());
ysr@777 516 count_cl.print_histo();
ysr@777 517 }
ysr@777 518
ysr@777 519 if (ParallelGCThreads > 0) {
tonyp@1073 520 // The two flags below were introduced temporarily to serialize
tonyp@1073 521 // the updating and scanning of remembered sets. There are some
tonyp@1073 522 // race conditions when these two operations are done in parallel
tonyp@1073 523 // and they are causing failures. When we resolve said race
tonyp@1073 524 // conditions, we'll revert back to parallel remembered set
tonyp@1073 525 // updating and scanning. See CRs 6677707 and 6677708.
tonyp@1073 526 if (G1EnableParallelRSetUpdating || (worker_i == 0)) {
ysr@777 527 updateRS(worker_i);
ysr@777 528 scanNewRefsRS(oc, worker_i);
tonyp@1083 529 } else {
tonyp@1083 530 _g1p->record_update_rs_start_time(worker_i, os::elapsedTime());
tonyp@1083 531 _g1p->record_update_rs_processed_buffers(worker_i, 0.0);
tonyp@1083 532 _g1p->record_update_rs_time(worker_i, 0.0);
tonyp@1083 533 _g1p->record_scan_new_refs_time(worker_i, 0.0);
tonyp@1073 534 }
tonyp@1073 535 if (G1EnableParallelRSetScanning || (worker_i == 0)) {
ysr@777 536 scanRS(oc, worker_i);
tonyp@1083 537 } else {
tonyp@1083 538 _g1p->record_scan_rs_start_time(worker_i, os::elapsedTime());
tonyp@1083 539 _g1p->record_scan_rs_time(worker_i, 0.0);
ysr@777 540 }
ysr@777 541 } else {
ysr@777 542 assert(worker_i == 0, "invariant");
ysr@777 543 updateRS(0);
iveresov@1051 544 scanNewRefsRS(oc, 0);
ysr@777 545 scanRS(oc, 0);
ysr@777 546 }
ysr@777 547 }
ysr@777 548
ysr@777 549 void HRInto_G1RemSet::
ysr@777 550 prepare_for_oops_into_collection_set_do() {
ysr@777 551 #if G1_REM_SET_LOGGING
ysr@777 552 PrintRSClosure cl;
ysr@777 553 _g1->collection_set_iterate(&cl);
ysr@777 554 #endif
ysr@777 555 cleanupHRRS();
ysr@777 556 ConcurrentG1Refine* cg1r = _g1->concurrent_g1_refine();
ysr@777 557 _g1->set_refine_cte_cl_concurrency(false);
ysr@777 558 DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set();
ysr@777 559 dcqs.concatenate_logs();
ysr@777 560
ysr@777 561 assert(!_par_traversal_in_progress, "Invariant between iterations.");
ysr@777 562 if (ParallelGCThreads > 0) {
ysr@777 563 set_par_traversal(true);
iveresov@1051 564 _seq_task->set_par_threads((int)n_workers());
ysr@777 565 if (cg1r->do_traversal()) {
ysr@777 566 updateRS(0);
ysr@777 567 // Have to do this again after updaters
ysr@777 568 cleanupHRRS();
ysr@777 569 }
ysr@777 570 }
ysr@777 571 guarantee( _cards_scanned == NULL, "invariant" );
ysr@777 572 _cards_scanned = NEW_C_HEAP_ARRAY(size_t, n_workers());
apetrusenko@980 573 for (uint i = 0; i < n_workers(); ++i) {
apetrusenko@980 574 _cards_scanned[i] = 0;
apetrusenko@980 575 }
ysr@777 576 _total_cards_scanned = 0;
ysr@777 577 }
ysr@777 578
ysr@777 579
ysr@777 580 class cleanUpIteratorsClosure : public HeapRegionClosure {
ysr@777 581 bool doHeapRegion(HeapRegion *r) {
ysr@777 582 HeapRegionRemSet* hrrs = r->rem_set();
ysr@777 583 hrrs->init_for_par_iteration();
ysr@777 584 return false;
ysr@777 585 }
ysr@777 586 };
ysr@777 587
iveresov@1051 588 class UpdateRSetOopsIntoCSImmediate : public OopClosure {
iveresov@1051 589 G1CollectedHeap* _g1;
iveresov@1051 590 public:
iveresov@1051 591 UpdateRSetOopsIntoCSImmediate(G1CollectedHeap* g1) : _g1(g1) { }
iveresov@1051 592 virtual void do_oop(narrowOop* p) {
iveresov@1051 593 guarantee(false, "NYI");
iveresov@1051 594 }
iveresov@1051 595 virtual void do_oop(oop* p) {
iveresov@1051 596 HeapRegion* to = _g1->heap_region_containing(*p);
iveresov@1051 597 if (to->in_collection_set()) {
apetrusenko@1112 598 to->rem_set()->add_reference(p, 0);
iveresov@1051 599 }
iveresov@1051 600 }
iveresov@1051 601 };
iveresov@1051 602
iveresov@1051 603 class UpdateRSetOopsIntoCSDeferred : public OopClosure {
iveresov@1051 604 G1CollectedHeap* _g1;
iveresov@1051 605 CardTableModRefBS* _ct_bs;
iveresov@1051 606 DirtyCardQueue* _dcq;
iveresov@1051 607 public:
iveresov@1051 608 UpdateRSetOopsIntoCSDeferred(G1CollectedHeap* g1, DirtyCardQueue* dcq) :
iveresov@1051 609 _g1(g1), _ct_bs((CardTableModRefBS*)_g1->barrier_set()), _dcq(dcq) { }
iveresov@1051 610 virtual void do_oop(narrowOop* p) {
iveresov@1051 611 guarantee(false, "NYI");
iveresov@1051 612 }
iveresov@1051 613 virtual void do_oop(oop* p) {
iveresov@1051 614 oop obj = *p;
iveresov@1051 615 if (_g1->obj_in_cs(obj)) {
iveresov@1051 616 size_t card_index = _ct_bs->index_for(p);
iveresov@1051 617 if (_ct_bs->mark_card_deferred(card_index)) {
iveresov@1051 618 _dcq->enqueue((jbyte*)_ct_bs->byte_for_index(card_index));
iveresov@1051 619 }
iveresov@1051 620 }
iveresov@1051 621 }
iveresov@1051 622 };
iveresov@1051 623
iveresov@1051 624 void HRInto_G1RemSet::new_refs_iterate(OopClosure* cl) {
iveresov@1051 625 for (size_t i = 0; i < n_workers(); i++) {
iveresov@1051 626 for (int j = 0; j < _new_refs[i]->length(); j++) {
iveresov@1051 627 oop* p = _new_refs[i]->at(j);
iveresov@1051 628 cl->do_oop(p);
iveresov@1051 629 }
iveresov@1051 630 }
iveresov@1051 631 }
iveresov@1051 632
ysr@777 633 void HRInto_G1RemSet::cleanup_after_oops_into_collection_set_do() {
ysr@777 634 guarantee( _cards_scanned != NULL, "invariant" );
ysr@777 635 _total_cards_scanned = 0;
ysr@777 636 for (uint i = 0; i < n_workers(); ++i)
ysr@777 637 _total_cards_scanned += _cards_scanned[i];
ysr@777 638 FREE_C_HEAP_ARRAY(size_t, _cards_scanned);
ysr@777 639 _cards_scanned = NULL;
ysr@777 640 // Cleanup after copy
ysr@777 641 #if G1_REM_SET_LOGGING
ysr@777 642 PrintRSClosure cl;
ysr@777 643 _g1->heap_region_iterate(&cl);
ysr@777 644 #endif
ysr@777 645 _g1->set_refine_cte_cl_concurrency(true);
ysr@777 646 cleanUpIteratorsClosure iterClosure;
ysr@777 647 _g1->collection_set_iterate(&iterClosure);
ysr@777 648 // Set all cards back to clean.
ysr@777 649 _g1->cleanUpCardTable();
ysr@777 650 if (ParallelGCThreads > 0) {
ysr@777 651 ConcurrentG1Refine* cg1r = _g1->concurrent_g1_refine();
ysr@777 652 if (cg1r->do_traversal()) {
ysr@777 653 cg1r->cg1rThread()->set_do_traversal(false);
ysr@777 654 }
ysr@777 655 set_par_traversal(false);
ysr@777 656 }
iveresov@1051 657
iveresov@1051 658 if (_g1->evacuation_failed()) {
iveresov@1051 659 // Restore remembered sets for the regions pointing into
iveresov@1051 660 // the collection set.
iveresov@1051 661 if (G1DeferredRSUpdate) {
iveresov@1051 662 DirtyCardQueue dcq(&_g1->dirty_card_queue_set());
iveresov@1051 663 UpdateRSetOopsIntoCSDeferred deferred_update(_g1, &dcq);
iveresov@1051 664 new_refs_iterate(&deferred_update);
iveresov@1051 665 } else {
iveresov@1051 666 UpdateRSetOopsIntoCSImmediate immediate_update(_g1);
iveresov@1051 667 new_refs_iterate(&immediate_update);
iveresov@1051 668 }
iveresov@1051 669 }
iveresov@1051 670 for (uint i = 0; i < n_workers(); i++) {
iveresov@1051 671 _new_refs[i]->clear();
iveresov@1051 672 }
iveresov@1051 673
ysr@777 674 assert(!_par_traversal_in_progress, "Invariant between iterations.");
ysr@777 675 }
ysr@777 676
ysr@777 677 class UpdateRSObjectClosure: public ObjectClosure {
ysr@777 678 UpdateRSOopClosure* _update_rs_oop_cl;
ysr@777 679 public:
ysr@777 680 UpdateRSObjectClosure(UpdateRSOopClosure* update_rs_oop_cl) :
ysr@777 681 _update_rs_oop_cl(update_rs_oop_cl) {}
ysr@777 682 void do_object(oop obj) {
ysr@777 683 obj->oop_iterate(_update_rs_oop_cl);
ysr@777 684 }
ysr@777 685
ysr@777 686 };
ysr@777 687
ysr@777 688 class ScrubRSClosure: public HeapRegionClosure {
ysr@777 689 G1CollectedHeap* _g1h;
ysr@777 690 BitMap* _region_bm;
ysr@777 691 BitMap* _card_bm;
ysr@777 692 CardTableModRefBS* _ctbs;
ysr@777 693 public:
ysr@777 694 ScrubRSClosure(BitMap* region_bm, BitMap* card_bm) :
ysr@777 695 _g1h(G1CollectedHeap::heap()),
ysr@777 696 _region_bm(region_bm), _card_bm(card_bm),
ysr@777 697 _ctbs(NULL)
ysr@777 698 {
ysr@777 699 ModRefBarrierSet* bs = _g1h->mr_bs();
ysr@777 700 guarantee(bs->is_a(BarrierSet::CardTableModRef), "Precondition");
ysr@777 701 _ctbs = (CardTableModRefBS*)bs;
ysr@777 702 }
ysr@777 703
ysr@777 704 bool doHeapRegion(HeapRegion* r) {
ysr@777 705 if (!r->continuesHumongous()) {
ysr@777 706 r->rem_set()->scrub(_ctbs, _region_bm, _card_bm);
ysr@777 707 }
ysr@777 708 return false;
ysr@777 709 }
ysr@777 710 };
ysr@777 711
ysr@777 712 void HRInto_G1RemSet::scrub(BitMap* region_bm, BitMap* card_bm) {
ysr@777 713 ScrubRSClosure scrub_cl(region_bm, card_bm);
ysr@777 714 _g1->heap_region_iterate(&scrub_cl);
ysr@777 715 }
ysr@777 716
ysr@777 717 void HRInto_G1RemSet::scrub_par(BitMap* region_bm, BitMap* card_bm,
ysr@777 718 int worker_num, int claim_val) {
ysr@777 719 ScrubRSClosure scrub_cl(region_bm, card_bm);
ysr@777 720 _g1->heap_region_par_iterate_chunked(&scrub_cl, worker_num, claim_val);
ysr@777 721 }
ysr@777 722
ysr@777 723
ysr@777 724 class ConcRefineRegionClosure: public HeapRegionClosure {
ysr@777 725 G1CollectedHeap* _g1h;
ysr@777 726 CardTableModRefBS* _ctbs;
ysr@777 727 ConcurrentGCThread* _cgc_thrd;
ysr@777 728 ConcurrentG1Refine* _cg1r;
ysr@777 729 unsigned _cards_processed;
ysr@777 730 UpdateRSOopClosure _update_rs_oop_cl;
ysr@777 731 public:
ysr@777 732 ConcRefineRegionClosure(CardTableModRefBS* ctbs,
ysr@777 733 ConcurrentG1Refine* cg1r,
ysr@777 734 HRInto_G1RemSet* g1rs) :
ysr@777 735 _ctbs(ctbs), _cg1r(cg1r), _cgc_thrd(cg1r->cg1rThread()),
ysr@777 736 _update_rs_oop_cl(g1rs), _cards_processed(0),
ysr@777 737 _g1h(G1CollectedHeap::heap())
ysr@777 738 {}
ysr@777 739
ysr@777 740 bool doHeapRegion(HeapRegion* r) {
ysr@777 741 if (!r->in_collection_set() &&
ysr@777 742 !r->continuesHumongous() &&
iveresov@1072 743 !r->is_young()) {
ysr@777 744 _update_rs_oop_cl.set_from(r);
ysr@777 745 UpdateRSObjectClosure update_rs_obj_cl(&_update_rs_oop_cl);
ysr@777 746
ysr@777 747 // For each run of dirty card in the region:
ysr@777 748 // 1) Clear the cards.
ysr@777 749 // 2) Process the range corresponding to the run, adding any
ysr@777 750 // necessary RS entries.
ysr@777 751 // 1 must precede 2, so that a concurrent modification redirties the
ysr@777 752 // card. If a processing attempt does not succeed, because it runs
ysr@777 753 // into an unparseable region, we will do binary search to find the
ysr@777 754 // beginning of the next parseable region.
ysr@777 755 HeapWord* startAddr = r->bottom();
ysr@777 756 HeapWord* endAddr = r->used_region().end();
ysr@777 757 HeapWord* lastAddr;
ysr@777 758 HeapWord* nextAddr;
ysr@777 759
ysr@777 760 for (nextAddr = lastAddr = startAddr;
ysr@777 761 nextAddr < endAddr;
ysr@777 762 nextAddr = lastAddr) {
ysr@777 763 MemRegion dirtyRegion;
ysr@777 764
ysr@777 765 // Get and clear dirty region from card table
ysr@777 766 MemRegion next_mr(nextAddr, endAddr);
ysr@777 767 dirtyRegion =
ysr@777 768 _ctbs->dirty_card_range_after_reset(
ysr@777 769 next_mr,
ysr@777 770 true, CardTableModRefBS::clean_card_val());
ysr@777 771 assert(dirtyRegion.start() >= nextAddr,
ysr@777 772 "returned region inconsistent?");
ysr@777 773
ysr@777 774 if (!dirtyRegion.is_empty()) {
ysr@777 775 HeapWord* stop_point =
ysr@777 776 r->object_iterate_mem_careful(dirtyRegion,
ysr@777 777 &update_rs_obj_cl);
ysr@777 778 if (stop_point == NULL) {
ysr@777 779 lastAddr = dirtyRegion.end();
ysr@777 780 _cards_processed +=
ysr@777 781 (int) (dirtyRegion.word_size() / CardTableModRefBS::card_size_in_words);
ysr@777 782 } else {
ysr@777 783 // We're going to skip one or more cards that we can't parse.
ysr@777 784 HeapWord* next_parseable_card =
ysr@777 785 r->next_block_start_careful(stop_point);
ysr@777 786 // Round this up to a card boundary.
ysr@777 787 next_parseable_card =
ysr@777 788 _ctbs->addr_for(_ctbs->byte_after_const(next_parseable_card));
ysr@777 789 // Now we invalidate the intervening cards so we'll see them
ysr@777 790 // again.
ysr@777 791 MemRegion remaining_dirty =
ysr@777 792 MemRegion(stop_point, dirtyRegion.end());
ysr@777 793 MemRegion skipped =
ysr@777 794 MemRegion(stop_point, next_parseable_card);
ysr@777 795 _ctbs->invalidate(skipped.intersection(remaining_dirty));
ysr@777 796
ysr@777 797 // Now start up again where we can parse.
ysr@777 798 lastAddr = next_parseable_card;
ysr@777 799
ysr@777 800 // Count how many we did completely.
ysr@777 801 _cards_processed +=
ysr@777 802 (stop_point - dirtyRegion.start()) /
ysr@777 803 CardTableModRefBS::card_size_in_words;
ysr@777 804 }
ysr@777 805 // Allow interruption at regular intervals.
ysr@777 806 // (Might need to make them more regular, if we get big
ysr@777 807 // dirty regions.)
ysr@777 808 if (_cgc_thrd != NULL) {
ysr@777 809 if (_cgc_thrd->should_yield()) {
ysr@777 810 _cgc_thrd->yield();
ysr@777 811 switch (_cg1r->get_pya()) {
ysr@777 812 case PYA_continue:
ysr@777 813 // This may have changed: re-read.
ysr@777 814 endAddr = r->used_region().end();
ysr@777 815 continue;
ysr@777 816 case PYA_restart: case PYA_cancel:
ysr@777 817 return true;
ysr@777 818 }
ysr@777 819 }
ysr@777 820 }
ysr@777 821 } else {
ysr@777 822 break;
ysr@777 823 }
ysr@777 824 }
ysr@777 825 }
ysr@777 826 // A good yield opportunity.
ysr@777 827 if (_cgc_thrd != NULL) {
ysr@777 828 if (_cgc_thrd->should_yield()) {
ysr@777 829 _cgc_thrd->yield();
ysr@777 830 switch (_cg1r->get_pya()) {
ysr@777 831 case PYA_restart: case PYA_cancel:
ysr@777 832 return true;
ysr@777 833 default:
ysr@777 834 break;
ysr@777 835 }
ysr@777 836
ysr@777 837 }
ysr@777 838 }
ysr@777 839 return false;
ysr@777 840 }
ysr@777 841
ysr@777 842 unsigned cards_processed() { return _cards_processed; }
ysr@777 843 };
ysr@777 844
ysr@777 845
ysr@777 846 void HRInto_G1RemSet::concurrentRefinementPass(ConcurrentG1Refine* cg1r) {
ysr@777 847 ConcRefineRegionClosure cr_cl(ct_bs(), cg1r, this);
ysr@777 848 _g1->heap_region_iterate(&cr_cl);
ysr@777 849 _conc_refine_traversals++;
ysr@777 850 _conc_refine_cards += cr_cl.cards_processed();
ysr@777 851 }
ysr@777 852
ysr@777 853 static IntHistogram out_of_histo(50, 50);
ysr@777 854
ysr@777 855
ysr@777 856
ysr@777 857 void HRInto_G1RemSet::concurrentRefineOneCard(jbyte* card_ptr, int worker_i) {
ysr@777 858 // If the card is no longer dirty, nothing to do.
ysr@777 859 if (*card_ptr != CardTableModRefBS::dirty_card_val()) return;
ysr@777 860
ysr@777 861 // Construct the region representing the card.
ysr@777 862 HeapWord* start = _ct_bs->addr_for(card_ptr);
ysr@777 863 // And find the region containing it.
ysr@777 864 HeapRegion* r = _g1->heap_region_containing(start);
ysr@777 865 if (r == NULL) {
ysr@777 866 guarantee(_g1->is_in_permanent(start), "Or else where?");
ysr@777 867 return; // Not in the G1 heap (might be in perm, for example.)
ysr@777 868 }
ysr@777 869 // Why do we have to check here whether a card is on a young region,
ysr@777 870 // given that we dirty young regions and, as a result, the
ysr@777 871 // post-barrier is supposed to filter them out and never to enqueue
ysr@777 872 // them? When we allocate a new region as the "allocation region" we
ysr@777 873 // actually dirty its cards after we release the lock, since card
ysr@777 874 // dirtying while holding the lock was a performance bottleneck. So,
ysr@777 875 // as a result, it is possible for other threads to actually
ysr@777 876 // allocate objects in the region (after the acquire the lock)
ysr@777 877 // before all the cards on the region are dirtied. This is unlikely,
ysr@777 878 // and it doesn't happen often, but it can happen. So, the extra
ysr@777 879 // check below filters out those cards.
iveresov@1072 880 if (r->is_young()) {
ysr@777 881 return;
ysr@777 882 }
ysr@777 883 // While we are processing RSet buffers during the collection, we
ysr@777 884 // actually don't want to scan any cards on the collection set,
ysr@777 885 // since we don't want to update remebered sets with entries that
ysr@777 886 // point into the collection set, given that live objects from the
ysr@777 887 // collection set are about to move and such entries will be stale
ysr@777 888 // very soon. This change also deals with a reliability issue which
ysr@777 889 // involves scanning a card in the collection set and coming across
ysr@777 890 // an array that was being chunked and looking malformed. Note,
ysr@777 891 // however, that if evacuation fails, we have to scan any objects
ysr@777 892 // that were not moved and create any missing entries.
ysr@777 893 if (r->in_collection_set()) {
ysr@777 894 return;
ysr@777 895 }
ysr@777 896
ysr@777 897 // Should we defer it?
ysr@777 898 if (_cg1r->use_cache()) {
ysr@777 899 card_ptr = _cg1r->cache_insert(card_ptr);
ysr@777 900 // If it was not an eviction, nothing to do.
ysr@777 901 if (card_ptr == NULL) return;
ysr@777 902
ysr@777 903 // OK, we have to reset the card start, region, etc.
ysr@777 904 start = _ct_bs->addr_for(card_ptr);
ysr@777 905 r = _g1->heap_region_containing(start);
ysr@777 906 if (r == NULL) {
ysr@777 907 guarantee(_g1->is_in_permanent(start), "Or else where?");
ysr@777 908 return; // Not in the G1 heap (might be in perm, for example.)
ysr@777 909 }
ysr@777 910 guarantee(!r->is_young(), "It was evicted in the current minor cycle.");
ysr@777 911 }
ysr@777 912
ysr@777 913 HeapWord* end = _ct_bs->addr_for(card_ptr + 1);
ysr@777 914 MemRegion dirtyRegion(start, end);
ysr@777 915
ysr@777 916 #if CARD_REPEAT_HISTO
ysr@777 917 init_ct_freq_table(_g1->g1_reserved_obj_bytes());
ysr@777 918 ct_freq_note_card(_ct_bs->index_for(start));
ysr@777 919 #endif
ysr@777 920
ysr@777 921 UpdateRSOopClosure update_rs_oop_cl(this, worker_i);
ysr@777 922 update_rs_oop_cl.set_from(r);
ysr@777 923 FilterOutOfRegionClosure filter_then_update_rs_oop_cl(r, &update_rs_oop_cl);
ysr@777 924
ysr@777 925 // Undirty the card.
ysr@777 926 *card_ptr = CardTableModRefBS::clean_card_val();
ysr@777 927 // We must complete this write before we do any of the reads below.
ysr@777 928 OrderAccess::storeload();
ysr@777 929 // And process it, being careful of unallocated portions of TLAB's.
ysr@777 930 HeapWord* stop_point =
ysr@777 931 r->oops_on_card_seq_iterate_careful(dirtyRegion,
ysr@777 932 &filter_then_update_rs_oop_cl);
ysr@777 933 // If stop_point is non-null, then we encountered an unallocated region
ysr@777 934 // (perhaps the unfilled portion of a TLAB.) For now, we'll dirty the
ysr@777 935 // card and re-enqueue: if we put off the card until a GC pause, then the
ysr@777 936 // unallocated portion will be filled in. Alternatively, we might try
ysr@777 937 // the full complexity of the technique used in "regular" precleaning.
ysr@777 938 if (stop_point != NULL) {
ysr@777 939 // The card might have gotten re-dirtied and re-enqueued while we
ysr@777 940 // worked. (In fact, it's pretty likely.)
ysr@777 941 if (*card_ptr != CardTableModRefBS::dirty_card_val()) {
ysr@777 942 *card_ptr = CardTableModRefBS::dirty_card_val();
ysr@777 943 MutexLockerEx x(Shared_DirtyCardQ_lock,
ysr@777 944 Mutex::_no_safepoint_check_flag);
ysr@777 945 DirtyCardQueue* sdcq =
ysr@777 946 JavaThread::dirty_card_queue_set().shared_dirty_card_queue();
ysr@777 947 sdcq->enqueue(card_ptr);
ysr@777 948 }
ysr@777 949 } else {
ysr@777 950 out_of_histo.add_entry(filter_then_update_rs_oop_cl.out_of_region());
ysr@777 951 _conc_refine_cards++;
ysr@777 952 }
ysr@777 953 }
ysr@777 954
ysr@777 955 class HRRSStatsIter: public HeapRegionClosure {
ysr@777 956 size_t _occupied;
ysr@777 957 size_t _total_mem_sz;
ysr@777 958 size_t _max_mem_sz;
ysr@777 959 HeapRegion* _max_mem_sz_region;
ysr@777 960 public:
ysr@777 961 HRRSStatsIter() :
ysr@777 962 _occupied(0),
ysr@777 963 _total_mem_sz(0),
ysr@777 964 _max_mem_sz(0),
ysr@777 965 _max_mem_sz_region(NULL)
ysr@777 966 {}
ysr@777 967
ysr@777 968 bool doHeapRegion(HeapRegion* r) {
ysr@777 969 if (r->continuesHumongous()) return false;
ysr@777 970 size_t mem_sz = r->rem_set()->mem_size();
ysr@777 971 if (mem_sz > _max_mem_sz) {
ysr@777 972 _max_mem_sz = mem_sz;
ysr@777 973 _max_mem_sz_region = r;
ysr@777 974 }
ysr@777 975 _total_mem_sz += mem_sz;
ysr@777 976 size_t occ = r->rem_set()->occupied();
ysr@777 977 _occupied += occ;
ysr@777 978 return false;
ysr@777 979 }
ysr@777 980 size_t total_mem_sz() { return _total_mem_sz; }
ysr@777 981 size_t max_mem_sz() { return _max_mem_sz; }
ysr@777 982 size_t occupied() { return _occupied; }
ysr@777 983 HeapRegion* max_mem_sz_region() { return _max_mem_sz_region; }
ysr@777 984 };
ysr@777 985
ysr@777 986 void HRInto_G1RemSet::print_summary_info() {
ysr@777 987 G1CollectedHeap* g1 = G1CollectedHeap::heap();
ysr@777 988 ConcurrentG1RefineThread* cg1r_thrd =
ysr@777 989 g1->concurrent_g1_refine()->cg1rThread();
ysr@777 990
ysr@777 991 #if CARD_REPEAT_HISTO
ysr@777 992 gclog_or_tty->print_cr("\nG1 card_repeat count histogram: ");
ysr@777 993 gclog_or_tty->print_cr(" # of repeats --> # of cards with that number.");
ysr@777 994 card_repeat_count.print_on(gclog_or_tty);
ysr@777 995 #endif
ysr@777 996
ysr@777 997 if (FILTEROUTOFREGIONCLOSURE_DOHISTOGRAMCOUNT) {
ysr@777 998 gclog_or_tty->print_cr("\nG1 rem-set out-of-region histogram: ");
ysr@777 999 gclog_or_tty->print_cr(" # of CS ptrs --> # of cards with that number.");
ysr@777 1000 out_of_histo.print_on(gclog_or_tty);
ysr@777 1001 }
ysr@777 1002 gclog_or_tty->print_cr("\n Concurrent RS processed %d cards in "
ysr@777 1003 "%5.2fs.",
ysr@777 1004 _conc_refine_cards, cg1r_thrd->vtime_accum());
ysr@777 1005
ysr@777 1006 DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set();
ysr@777 1007 jint tot_processed_buffers =
ysr@777 1008 dcqs.processed_buffers_mut() + dcqs.processed_buffers_rs_thread();
ysr@777 1009 gclog_or_tty->print_cr(" Of %d completed buffers:", tot_processed_buffers);
ysr@777 1010 gclog_or_tty->print_cr(" %8d (%5.1f%%) by conc RS thread.",
ysr@777 1011 dcqs.processed_buffers_rs_thread(),
ysr@777 1012 100.0*(float)dcqs.processed_buffers_rs_thread()/
ysr@777 1013 (float)tot_processed_buffers);
ysr@777 1014 gclog_or_tty->print_cr(" %8d (%5.1f%%) by mutator threads.",
ysr@777 1015 dcqs.processed_buffers_mut(),
ysr@777 1016 100.0*(float)dcqs.processed_buffers_mut()/
ysr@777 1017 (float)tot_processed_buffers);
ysr@777 1018 gclog_or_tty->print_cr(" Did %d concurrent refinement traversals.",
ysr@777 1019 _conc_refine_traversals);
ysr@777 1020 if (!G1RSBarrierUseQueue) {
ysr@777 1021 gclog_or_tty->print_cr(" Scanned %8.2f cards/traversal.",
ysr@777 1022 _conc_refine_traversals > 0 ?
ysr@777 1023 (float)_conc_refine_cards/(float)_conc_refine_traversals :
ysr@777 1024 0);
ysr@777 1025 }
ysr@777 1026 gclog_or_tty->print_cr("");
ysr@777 1027 if (G1UseHRIntoRS) {
ysr@777 1028 HRRSStatsIter blk;
ysr@777 1029 g1->heap_region_iterate(&blk);
ysr@777 1030 gclog_or_tty->print_cr(" Total heap region rem set sizes = " SIZE_FORMAT "K."
ysr@777 1031 " Max = " SIZE_FORMAT "K.",
ysr@777 1032 blk.total_mem_sz()/K, blk.max_mem_sz()/K);
ysr@777 1033 gclog_or_tty->print_cr(" Static structures = " SIZE_FORMAT "K,"
ysr@777 1034 " free_lists = " SIZE_FORMAT "K.",
ysr@777 1035 HeapRegionRemSet::static_mem_size()/K,
ysr@777 1036 HeapRegionRemSet::fl_mem_size()/K);
ysr@777 1037 gclog_or_tty->print_cr(" %d occupied cards represented.",
ysr@777 1038 blk.occupied());
ysr@777 1039 gclog_or_tty->print_cr(" Max sz region = [" PTR_FORMAT ", " PTR_FORMAT " )"
apetrusenko@1112 1040 ", cap = " SIZE_FORMAT "K, occ = " SIZE_FORMAT "K.",
ysr@777 1041 blk.max_mem_sz_region()->bottom(), blk.max_mem_sz_region()->end(),
ysr@777 1042 (blk.max_mem_sz_region()->rem_set()->mem_size() + K - 1)/K,
ysr@777 1043 (blk.max_mem_sz_region()->rem_set()->occupied() + K - 1)/K);
ysr@777 1044 gclog_or_tty->print_cr(" Did %d coarsenings.",
ysr@777 1045 HeapRegionRemSet::n_coarsenings());
ysr@777 1046
ysr@777 1047 }
ysr@777 1048 }
ysr@777 1049 void HRInto_G1RemSet::prepare_for_verify() {
iveresov@1072 1050 if (G1HRRSFlushLogBuffersOnVerify &&
iveresov@1072 1051 (VerifyBeforeGC || VerifyAfterGC)
iveresov@1072 1052 && !_g1->full_collection()) {
ysr@777 1053 cleanupHRRS();
ysr@777 1054 _g1->set_refine_cte_cl_concurrency(false);
ysr@777 1055 if (SafepointSynchronize::is_at_safepoint()) {
ysr@777 1056 DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set();
ysr@777 1057 dcqs.concatenate_logs();
ysr@777 1058 }
ysr@777 1059 bool cg1r_use_cache = _cg1r->use_cache();
ysr@777 1060 _cg1r->set_use_cache(false);
ysr@777 1061 updateRS(0);
ysr@777 1062 _cg1r->set_use_cache(cg1r_use_cache);
iveresov@1072 1063
iveresov@1072 1064 assert(JavaThread::dirty_card_queue_set().completed_buffers_num() == 0, "All should be consumed");
ysr@777 1065 }
ysr@777 1066 }

mercurial