src/share/vm/gc_implementation/g1/concurrentMark.inline.hpp

Thu, 27 Dec 2018 11:43:33 +0800

author
aoqi
date
Thu, 27 Dec 2018 11:43:33 +0800
changeset 9448
73d689add964
parent 9327
f96fcd9e1e1b
parent 7994
04ff2f6cd0eb
child 10015
eb7ce841ccec
permissions
-rw-r--r--

Merge

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_INLINE_HPP
aoqi@0 26 #define SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_INLINE_HPP
aoqi@0 27
aoqi@0 28 #include "gc_implementation/g1/concurrentMark.hpp"
aoqi@0 29 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
aoqi@0 30
aoqi@0 31 // Utility routine to set an exclusive range of cards on the given
aoqi@0 32 // card liveness bitmap
aoqi@0 33 inline void ConcurrentMark::set_card_bitmap_range(BitMap* card_bm,
aoqi@0 34 BitMap::idx_t start_idx,
aoqi@0 35 BitMap::idx_t end_idx,
aoqi@0 36 bool is_par) {
aoqi@0 37
aoqi@0 38 // Set the exclusive bit range [start_idx, end_idx).
aoqi@0 39 assert((end_idx - start_idx) > 0, "at least one card");
aoqi@0 40 assert(end_idx <= card_bm->size(), "sanity");
aoqi@0 41
aoqi@0 42 // Silently clip the end index
aoqi@0 43 end_idx = MIN2(end_idx, card_bm->size());
aoqi@0 44
aoqi@0 45 // For small ranges use a simple loop; otherwise use set_range or
aoqi@0 46 // use par_at_put_range (if parallel). The range is made up of the
aoqi@0 47 // cards that are spanned by an object/mem region so 8 cards will
aoqi@0 48 // allow up to object sizes up to 4K to be handled using the loop.
aoqi@0 49 if ((end_idx - start_idx) <= 8) {
aoqi@0 50 for (BitMap::idx_t i = start_idx; i < end_idx; i += 1) {
aoqi@0 51 if (is_par) {
aoqi@0 52 card_bm->par_set_bit(i);
aoqi@0 53 } else {
aoqi@0 54 card_bm->set_bit(i);
aoqi@0 55 }
aoqi@0 56 }
aoqi@0 57 } else {
aoqi@0 58 // Note BitMap::par_at_put_range() and BitMap::set_range() are exclusive.
aoqi@0 59 if (is_par) {
aoqi@0 60 card_bm->par_at_put_range(start_idx, end_idx, true);
aoqi@0 61 } else {
aoqi@0 62 card_bm->set_range(start_idx, end_idx);
aoqi@0 63 }
aoqi@0 64 }
aoqi@0 65 }
aoqi@0 66
aoqi@0 67 // Returns the index in the liveness accounting card bitmap
aoqi@0 68 // for the given address
aoqi@0 69 inline BitMap::idx_t ConcurrentMark::card_bitmap_index_for(HeapWord* addr) {
aoqi@0 70 // Below, the term "card num" means the result of shifting an address
aoqi@0 71 // by the card shift -- address 0 corresponds to card number 0. One
aoqi@0 72 // must subtract the card num of the bottom of the heap to obtain a
aoqi@0 73 // card table index.
aoqi@0 74 intptr_t card_num = intptr_t(uintptr_t(addr) >> CardTableModRefBS::card_shift);
aoqi@0 75 return card_num - heap_bottom_card_num();
aoqi@0 76 }
aoqi@0 77
aoqi@0 78 // Counts the given memory region in the given task/worker
aoqi@0 79 // counting data structures.
aoqi@0 80 inline void ConcurrentMark::count_region(MemRegion mr, HeapRegion* hr,
aoqi@0 81 size_t* marked_bytes_array,
aoqi@0 82 BitMap* task_card_bm) {
aoqi@0 83 G1CollectedHeap* g1h = _g1h;
aoqi@0 84 CardTableModRefBS* ct_bs = g1h->g1_barrier_set();
aoqi@0 85
aoqi@0 86 HeapWord* start = mr.start();
aoqi@0 87 HeapWord* end = mr.end();
aoqi@0 88 size_t region_size_bytes = mr.byte_size();
tschatzl@7091 89 uint index = hr->hrm_index();
aoqi@0 90
aoqi@0 91 assert(!hr->continuesHumongous(), "should not be HC region");
aoqi@0 92 assert(hr == g1h->heap_region_containing(start), "sanity");
aoqi@0 93 assert(hr == g1h->heap_region_containing(mr.last()), "sanity");
aoqi@0 94 assert(marked_bytes_array != NULL, "pre-condition");
aoqi@0 95 assert(task_card_bm != NULL, "pre-condition");
aoqi@0 96
aoqi@0 97 // Add to the task local marked bytes for this region.
aoqi@0 98 marked_bytes_array[index] += region_size_bytes;
aoqi@0 99
aoqi@0 100 BitMap::idx_t start_idx = card_bitmap_index_for(start);
aoqi@0 101 BitMap::idx_t end_idx = card_bitmap_index_for(end);
aoqi@0 102
aoqi@0 103 // Note: if we're looking at the last region in heap - end
aoqi@0 104 // could be actually just beyond the end of the heap; end_idx
aoqi@0 105 // will then correspond to a (non-existent) card that is also
aoqi@0 106 // just beyond the heap.
aoqi@0 107 if (g1h->is_in_g1_reserved(end) && !ct_bs->is_card_aligned(end)) {
aoqi@0 108 // end of region is not card aligned - incremement to cover
aoqi@0 109 // all the cards spanned by the region.
aoqi@0 110 end_idx += 1;
aoqi@0 111 }
aoqi@0 112 // The card bitmap is task/worker specific => no need to use
aoqi@0 113 // the 'par' BitMap routines.
aoqi@0 114 // Set bits in the exclusive bit range [start_idx, end_idx).
aoqi@0 115 set_card_bitmap_range(task_card_bm, start_idx, end_idx, false /* is_par */);
aoqi@0 116 }
aoqi@0 117
aoqi@0 118 // Counts the given memory region in the task/worker counting
aoqi@0 119 // data structures for the given worker id.
aoqi@0 120 inline void ConcurrentMark::count_region(MemRegion mr,
aoqi@0 121 HeapRegion* hr,
aoqi@0 122 uint worker_id) {
aoqi@0 123 size_t* marked_bytes_array = count_marked_bytes_array_for(worker_id);
aoqi@0 124 BitMap* task_card_bm = count_card_bitmap_for(worker_id);
aoqi@0 125 count_region(mr, hr, marked_bytes_array, task_card_bm);
aoqi@0 126 }
aoqi@0 127
aoqi@0 128 // Counts the given object in the given task/worker counting data structures.
aoqi@0 129 inline void ConcurrentMark::count_object(oop obj,
aoqi@0 130 HeapRegion* hr,
aoqi@0 131 size_t* marked_bytes_array,
aoqi@0 132 BitMap* task_card_bm) {
aoqi@0 133 MemRegion mr((HeapWord*)obj, obj->size());
aoqi@0 134 count_region(mr, hr, marked_bytes_array, task_card_bm);
aoqi@0 135 }
aoqi@0 136
aoqi@0 137 // Attempts to mark the given object and, if successful, counts
aoqi@0 138 // the object in the given task/worker counting structures.
aoqi@0 139 inline bool ConcurrentMark::par_mark_and_count(oop obj,
aoqi@0 140 HeapRegion* hr,
aoqi@0 141 size_t* marked_bytes_array,
aoqi@0 142 BitMap* task_card_bm) {
aoqi@0 143 HeapWord* addr = (HeapWord*)obj;
aoqi@0 144 if (_nextMarkBitMap->parMark(addr)) {
aoqi@0 145 // Update the task specific count data for the object.
aoqi@0 146 count_object(obj, hr, marked_bytes_array, task_card_bm);
aoqi@0 147 return true;
aoqi@0 148 }
aoqi@0 149 return false;
aoqi@0 150 }
aoqi@0 151
aoqi@0 152 // Attempts to mark the given object and, if successful, counts
aoqi@0 153 // the object in the task/worker counting structures for the
aoqi@0 154 // given worker id.
aoqi@0 155 inline bool ConcurrentMark::par_mark_and_count(oop obj,
aoqi@0 156 size_t word_size,
aoqi@0 157 HeapRegion* hr,
aoqi@0 158 uint worker_id) {
aoqi@0 159 HeapWord* addr = (HeapWord*)obj;
aoqi@0 160 if (_nextMarkBitMap->parMark(addr)) {
aoqi@0 161 MemRegion mr(addr, word_size);
aoqi@0 162 count_region(mr, hr, worker_id);
aoqi@0 163 return true;
aoqi@0 164 }
aoqi@0 165 return false;
aoqi@0 166 }
aoqi@0 167
aoqi@0 168 inline bool CMBitMapRO::iterate(BitMapClosure* cl, MemRegion mr) {
aoqi@0 169 HeapWord* start_addr = MAX2(startWord(), mr.start());
aoqi@0 170 HeapWord* end_addr = MIN2(endWord(), mr.end());
aoqi@0 171
aoqi@0 172 if (end_addr > start_addr) {
aoqi@0 173 // Right-open interval [start-offset, end-offset).
aoqi@0 174 BitMap::idx_t start_offset = heapWordToOffset(start_addr);
aoqi@0 175 BitMap::idx_t end_offset = heapWordToOffset(end_addr);
aoqi@0 176
aoqi@0 177 start_offset = _bm.get_next_one_offset(start_offset, end_offset);
aoqi@0 178 while (start_offset < end_offset) {
aoqi@0 179 if (!cl->do_bit(start_offset)) {
aoqi@0 180 return false;
aoqi@0 181 }
aoqi@0 182 HeapWord* next_addr = MIN2(nextObject(offsetToHeapWord(start_offset)), end_addr);
aoqi@0 183 BitMap::idx_t next_offset = heapWordToOffset(next_addr);
aoqi@0 184 start_offset = _bm.get_next_one_offset(next_offset, end_offset);
aoqi@0 185 }
aoqi@0 186 }
aoqi@0 187 return true;
aoqi@0 188 }
aoqi@0 189
aoqi@0 190 inline bool CMBitMapRO::iterate(BitMapClosure* cl) {
aoqi@0 191 MemRegion mr(startWord(), sizeInWords());
aoqi@0 192 return iterate(cl, mr);
aoqi@0 193 }
aoqi@0 194
tschatzl@7051 195 #define check_mark(addr) \
tschatzl@7051 196 assert(_bmStartWord <= (addr) && (addr) < (_bmStartWord + _bmWordSize), \
tschatzl@7051 197 "outside underlying space?"); \
tschatzl@7051 198 assert(G1CollectedHeap::heap()->is_in_exact(addr), \
kevinw@9327 199 err_msg("Trying to access not available bitmap " PTR_FORMAT \
kevinw@9327 200 " corresponding to " PTR_FORMAT " (%u)", \
tschatzl@7051 201 p2i(this), p2i(addr), G1CollectedHeap::heap()->addr_to_region(addr)));
tschatzl@7051 202
tschatzl@7051 203 inline void CMBitMap::mark(HeapWord* addr) {
tschatzl@7051 204 check_mark(addr);
tschatzl@7051 205 _bm.set_bit(heapWordToOffset(addr));
tschatzl@7051 206 }
tschatzl@7051 207
tschatzl@7051 208 inline void CMBitMap::clear(HeapWord* addr) {
tschatzl@7051 209 check_mark(addr);
tschatzl@7051 210 _bm.clear_bit(heapWordToOffset(addr));
tschatzl@7051 211 }
tschatzl@7051 212
tschatzl@7051 213 inline bool CMBitMap::parMark(HeapWord* addr) {
tschatzl@7051 214 check_mark(addr);
tschatzl@7051 215 return _bm.par_set_bit(heapWordToOffset(addr));
tschatzl@7051 216 }
tschatzl@7051 217
tschatzl@7051 218 inline bool CMBitMap::parClear(HeapWord* addr) {
tschatzl@7051 219 check_mark(addr);
tschatzl@7051 220 return _bm.par_clear_bit(heapWordToOffset(addr));
tschatzl@7051 221 }
tschatzl@7051 222
tschatzl@7051 223 #undef check_mark
tschatzl@7051 224
aoqi@0 225 inline void CMTask::push(oop obj) {
aoqi@0 226 HeapWord* objAddr = (HeapWord*) obj;
aoqi@0 227 assert(_g1h->is_in_g1_reserved(objAddr), "invariant");
aoqi@0 228 assert(!_g1h->is_on_master_free_list(
aoqi@0 229 _g1h->heap_region_containing((HeapWord*) objAddr)), "invariant");
aoqi@0 230 assert(!_g1h->is_obj_ill(obj), "invariant");
aoqi@0 231 assert(_nextMarkBitMap->isMarked(objAddr), "invariant");
aoqi@0 232
aoqi@0 233 if (_cm->verbose_high()) {
aoqi@0 234 gclog_or_tty->print_cr("[%u] pushing " PTR_FORMAT, _worker_id, p2i((void*) obj));
aoqi@0 235 }
aoqi@0 236
aoqi@0 237 if (!_task_queue->push(obj)) {
aoqi@0 238 // The local task queue looks full. We need to push some entries
aoqi@0 239 // to the global stack.
aoqi@0 240
aoqi@0 241 if (_cm->verbose_medium()) {
aoqi@0 242 gclog_or_tty->print_cr("[%u] task queue overflow, "
aoqi@0 243 "moving entries to the global stack",
aoqi@0 244 _worker_id);
aoqi@0 245 }
aoqi@0 246 move_entries_to_global_stack();
aoqi@0 247
aoqi@0 248 // this should succeed since, even if we overflow the global
aoqi@0 249 // stack, we should have definitely removed some entries from the
aoqi@0 250 // local queue. So, there must be space on it.
aoqi@0 251 bool success = _task_queue->push(obj);
aoqi@0 252 assert(success, "invariant");
aoqi@0 253 }
aoqi@0 254
aoqi@0 255 statsOnly( int tmp_size = _task_queue->size();
aoqi@0 256 if (tmp_size > _local_max_size) {
aoqi@0 257 _local_max_size = tmp_size;
aoqi@0 258 }
aoqi@0 259 ++_local_pushes );
aoqi@0 260 }
aoqi@0 261
kbarrett@7834 262 inline bool CMTask::is_below_finger(oop obj, HeapWord* global_finger) const {
kbarrett@7834 263 // If obj is above the global finger, then the mark bitmap scan
kbarrett@7829 264 // will find it later, and no push is needed. Similarly, if we have
kbarrett@7834 265 // a current region and obj is between the local finger and the
kbarrett@7829 266 // end of the current region, then no push is needed. The tradeoff
kbarrett@7829 267 // of checking both vs only checking the global finger is that the
kbarrett@7829 268 // local check will be more accurate and so result in fewer pushes,
kbarrett@7829 269 // but may also be a little slower.
kbarrett@7834 270 HeapWord* objAddr = (HeapWord*)obj;
kbarrett@7829 271 if (_finger != NULL) {
kbarrett@7829 272 // We have a current region.
aoqi@0 273
kbarrett@7829 274 // Finger and region values are all NULL or all non-NULL. We
kbarrett@7829 275 // use _finger to check since we immediately use its value.
kbarrett@7829 276 assert(_curr_region != NULL, "invariant");
kbarrett@7829 277 assert(_region_limit != NULL, "invariant");
kbarrett@7829 278 assert(_region_limit <= global_finger, "invariant");
kbarrett@7829 279
kbarrett@7834 280 // True if obj is less than the local finger, or is between
kbarrett@7829 281 // the region limit and the global finger.
kbarrett@7829 282 if (objAddr < _finger) {
kbarrett@7829 283 return true;
kbarrett@7829 284 } else if (objAddr < _region_limit) {
kbarrett@7829 285 return false;
kbarrett@7829 286 } // Else check global finger.
kbarrett@7829 287 }
kbarrett@7829 288 // Check global finger.
kbarrett@7829 289 return objAddr < global_finger;
kbarrett@7829 290 }
tschatzl@7094 291
kbarrett@7834 292 inline void CMTask::make_reference_grey(oop obj, HeapRegion* hr) {
kbarrett@7834 293 if (_cm->par_mark_and_count(obj, hr, _marked_bytes_array, _card_bm)) {
kbarrett@7834 294
kbarrett@7834 295 if (_cm->verbose_high()) {
kbarrett@7834 296 gclog_or_tty->print_cr("[%u] marked object " PTR_FORMAT,
kbarrett@7834 297 _worker_id, p2i(obj));
kbarrett@7834 298 }
kbarrett@7834 299
kbarrett@7834 300 // No OrderAccess:store_load() is needed. It is implicit in the
kbarrett@7834 301 // CAS done in CMBitMap::parMark() call in the routine above.
kbarrett@7834 302 HeapWord* global_finger = _cm->finger();
kbarrett@7834 303
kbarrett@7834 304 // We only need to push a newly grey object on the mark
kbarrett@7834 305 // stack if it is in a section of memory the mark bitmap
kbarrett@7834 306 // scan has already examined. Mark bitmap scanning
kbarrett@7834 307 // maintains progress "fingers" for determining that.
kbarrett@7834 308 //
kbarrett@7834 309 // Notice that the global finger might be moving forward
kbarrett@7834 310 // concurrently. This is not a problem. In the worst case, we
kbarrett@7834 311 // mark the object while it is above the global finger and, by
kbarrett@7834 312 // the time we read the global finger, it has moved forward
kbarrett@7834 313 // past this object. In this case, the object will probably
kbarrett@7834 314 // be visited when a task is scanning the region and will also
kbarrett@7834 315 // be pushed on the stack. So, some duplicate work, but no
kbarrett@7834 316 // correctness problems.
kbarrett@7834 317 if (is_below_finger(obj, global_finger)) {
kbarrett@7834 318 if (obj->is_typeArray()) {
kbarrett@7834 319 // Immediately process arrays of primitive types, rather
kbarrett@7834 320 // than pushing on the mark stack. This keeps us from
kbarrett@7834 321 // adding humongous objects to the mark stack that might
kbarrett@7834 322 // be reclaimed before the entry is processed - see
kbarrett@7834 323 // selection of candidates for eager reclaim of humongous
kbarrett@7834 324 // objects. The cost of the additional type test is
kbarrett@7834 325 // mitigated by avoiding a trip through the mark stack,
kbarrett@7834 326 // by only doing a bookkeeping update and avoiding the
kbarrett@7834 327 // actual scan of the object - a typeArray contains no
kbarrett@7834 328 // references, and the metadata is built-in.
kbarrett@7834 329 process_grey_object<false>(obj);
kbarrett@7834 330 } else {
kbarrett@7834 331 if (_cm->verbose_high()) {
kbarrett@7834 332 gclog_or_tty->print_cr("[%u] below a finger (local: " PTR_FORMAT
kbarrett@7834 333 ", global: " PTR_FORMAT ") pushing "
kbarrett@7834 334 PTR_FORMAT " on mark stack",
kbarrett@7834 335 _worker_id, p2i(_finger),
kbarrett@7834 336 p2i(global_finger), p2i(obj));
kbarrett@7834 337 }
kbarrett@7834 338 push(obj);
kbarrett@7834 339 }
kbarrett@7834 340 }
kbarrett@7834 341 }
kbarrett@7834 342 }
aoqi@0 343
aoqi@0 344 inline void CMTask::deal_with_reference(oop obj) {
aoqi@0 345 if (_cm->verbose_high()) {
kevinw@9327 346 gclog_or_tty->print_cr("[%u] we're dealing with reference = " PTR_FORMAT,
aoqi@0 347 _worker_id, p2i((void*) obj));
aoqi@0 348 }
aoqi@0 349
kbarrett@7834 350 increment_refs_reached();
aoqi@0 351
aoqi@0 352 HeapWord* objAddr = (HeapWord*) obj;
aoqi@0 353 assert(obj->is_oop_or_null(true /* ignore mark word */), "Error");
aoqi@0 354 if (_g1h->is_in_g1_reserved(objAddr)) {
aoqi@0 355 assert(obj != NULL, "null check is implicit");
aoqi@0 356 if (!_nextMarkBitMap->isMarked(objAddr)) {
aoqi@0 357 // Only get the containing region if the object is not marked on the
aoqi@0 358 // bitmap (otherwise, it's a waste of time since we won't do
aoqi@0 359 // anything with it).
aoqi@0 360 HeapRegion* hr = _g1h->heap_region_containing_raw(obj);
aoqi@0 361 if (!hr->obj_allocated_since_next_marking(obj)) {
kbarrett@7834 362 make_reference_grey(obj, hr);
aoqi@0 363 }
aoqi@0 364 }
aoqi@0 365 }
aoqi@0 366 }
aoqi@0 367
aoqi@0 368 inline void ConcurrentMark::markPrev(oop p) {
aoqi@0 369 assert(!_prevMarkBitMap->isMarked((HeapWord*) p), "sanity");
aoqi@0 370 // Note we are overriding the read-only view of the prev map here, via
aoqi@0 371 // the cast.
aoqi@0 372 ((CMBitMap*)_prevMarkBitMap)->mark((HeapWord*) p);
aoqi@0 373 }
aoqi@0 374
aoqi@0 375 inline void ConcurrentMark::grayRoot(oop obj, size_t word_size,
aoqi@0 376 uint worker_id, HeapRegion* hr) {
aoqi@0 377 assert(obj != NULL, "pre-condition");
aoqi@0 378 HeapWord* addr = (HeapWord*) obj;
aoqi@0 379 if (hr == NULL) {
aoqi@0 380 hr = _g1h->heap_region_containing_raw(addr);
aoqi@0 381 } else {
aoqi@0 382 assert(hr->is_in(addr), "pre-condition");
aoqi@0 383 }
aoqi@0 384 assert(hr != NULL, "sanity");
aoqi@0 385 // Given that we're looking for a region that contains an object
aoqi@0 386 // header it's impossible to get back a HC region.
aoqi@0 387 assert(!hr->continuesHumongous(), "sanity");
aoqi@0 388
aoqi@0 389 // We cannot assert that word_size == obj->size() given that obj
aoqi@0 390 // might not be in a consistent state (another thread might be in
aoqi@0 391 // the process of copying it). So the best thing we can do is to
aoqi@0 392 // assert that word_size is under an upper bound which is its
aoqi@0 393 // containing region's capacity.
aoqi@0 394 assert(word_size * HeapWordSize <= hr->capacity(),
kevinw@9327 395 err_msg("size: " SIZE_FORMAT " capacity: " SIZE_FORMAT " " HR_FORMAT,
aoqi@0 396 word_size * HeapWordSize, hr->capacity(),
aoqi@0 397 HR_FORMAT_PARAMS(hr)));
aoqi@0 398
aoqi@0 399 if (addr < hr->next_top_at_mark_start()) {
aoqi@0 400 if (!_nextMarkBitMap->isMarked(addr)) {
aoqi@0 401 par_mark_and_count(obj, word_size, hr, worker_id);
aoqi@0 402 }
aoqi@0 403 }
aoqi@0 404 }
aoqi@0 405
aoqi@0 406 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_INLINE_HPP

mercurial