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

Tue, 28 May 2013 09:32:06 +0200

author
tschatzl
date
Tue, 28 May 2013 09:32:06 +0200
changeset 5204
e72f7eecc96d
parent 5165
6702da6b6082
child 5548
5888334c9c24
permissions
-rw-r--r--

8013895: G1: G1SummarizeRSetStats output on Linux needs improvemen
Summary: Fixed the output of G1SummarizeRSetStats: too small datatype for the number of concurrently processed cards, added concurrent remembered set thread time retrieval for Linux and Windows (BSD uses os::elapsedTime() now), and other cleanup. The information presented during VM operation is now relative to the previous output, not always cumulative if G1SummarizeRSetStatsPeriod > 0. At VM exit, the code prints a cumulative summary.
Reviewed-by: johnc, jwilhelm

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

mercurial