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

Mon, 19 Aug 2019 10:11:31 +0200

author
neugens
date
Mon, 19 Aug 2019 10:11:31 +0200
changeset 9861
a248d0be1309
parent 9487
3fa12c91c20a
child 9572
624a0741915c
permissions
-rw-r--r--

8229401: Fix JFR code cache test failures
8223689: Add JFR Thread Sampling Support
8223690: Add JFR BiasedLock Event Support
8223691: Add JFR G1 Region Type Change Event Support
8223692: Add JFR G1 Heap Summary Event Support
Summary: Backport JFR from JDK11, additional fixes
Reviewed-by: neugens, apetushkov
Contributed-by: denghui.ddh@alibaba-inc.com

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

mercurial