Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/gc_implementation/g1/concurrentMark.inline.hpp
38921 views
/*1* Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_INLINE_HPP25#define SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_INLINE_HPP2627#include "gc_implementation/g1/concurrentMark.hpp"28#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"29#include "gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.inline.hpp"3031// Utility routine to set an exclusive range of cards on the given32// card liveness bitmap33inline void ConcurrentMark::set_card_bitmap_range(BitMap* card_bm,34BitMap::idx_t start_idx,35BitMap::idx_t end_idx,36bool is_par) {3738// Set the exclusive bit range [start_idx, end_idx).39assert((end_idx - start_idx) > 0, "at least one card");40assert(end_idx <= card_bm->size(), "sanity");4142// Silently clip the end index43end_idx = MIN2(end_idx, card_bm->size());4445// For small ranges use a simple loop; otherwise use set_range or46// use par_at_put_range (if parallel). The range is made up of the47// cards that are spanned by an object/mem region so 8 cards will48// allow up to object sizes up to 4K to be handled using the loop.49if ((end_idx - start_idx) <= 8) {50for (BitMap::idx_t i = start_idx; i < end_idx; i += 1) {51if (is_par) {52card_bm->par_set_bit(i);53} else {54card_bm->set_bit(i);55}56}57} else {58// Note BitMap::par_at_put_range() and BitMap::set_range() are exclusive.59if (is_par) {60card_bm->par_at_put_range(start_idx, end_idx, true);61} else {62card_bm->set_range(start_idx, end_idx);63}64}65}6667// Returns the index in the liveness accounting card bitmap68// for the given address69inline BitMap::idx_t ConcurrentMark::card_bitmap_index_for(HeapWord* addr) {70// Below, the term "card num" means the result of shifting an address71// by the card shift -- address 0 corresponds to card number 0. One72// must subtract the card num of the bottom of the heap to obtain a73// card table index.74intptr_t card_num = intptr_t(uintptr_t(addr) >> CardTableModRefBS::card_shift);75return card_num - heap_bottom_card_num();76}7778// Counts the given memory region in the given task/worker79// counting data structures.80inline void ConcurrentMark::count_region(MemRegion mr, HeapRegion* hr,81size_t* marked_bytes_array,82BitMap* task_card_bm) {83G1CollectedHeap* g1h = _g1h;84CardTableModRefBS* ct_bs = g1h->g1_barrier_set();8586HeapWord* start = mr.start();87HeapWord* end = mr.end();88size_t region_size_bytes = mr.byte_size();89uint index = hr->hrm_index();9091assert(!hr->continuesHumongous(), "should not be HC region");92assert(hr == g1h->heap_region_containing(start), "sanity");93assert(hr == g1h->heap_region_containing(mr.last()), "sanity");94assert(marked_bytes_array != NULL, "pre-condition");95assert(task_card_bm != NULL, "pre-condition");9697// Add to the task local marked bytes for this region.98marked_bytes_array[index] += region_size_bytes;99100BitMap::idx_t start_idx = card_bitmap_index_for(start);101BitMap::idx_t end_idx = card_bitmap_index_for(end);102103// Note: if we're looking at the last region in heap - end104// could be actually just beyond the end of the heap; end_idx105// will then correspond to a (non-existent) card that is also106// just beyond the heap.107if (g1h->is_in_g1_reserved(end) && !ct_bs->is_card_aligned(end)) {108// end of region is not card aligned - incremement to cover109// all the cards spanned by the region.110end_idx += 1;111}112// The card bitmap is task/worker specific => no need to use113// the 'par' BitMap routines.114// Set bits in the exclusive bit range [start_idx, end_idx).115set_card_bitmap_range(task_card_bm, start_idx, end_idx, false /* is_par */);116}117118// Counts the given memory region in the task/worker counting119// data structures for the given worker id.120inline void ConcurrentMark::count_region(MemRegion mr,121HeapRegion* hr,122uint worker_id) {123size_t* marked_bytes_array = count_marked_bytes_array_for(worker_id);124BitMap* task_card_bm = count_card_bitmap_for(worker_id);125count_region(mr, hr, marked_bytes_array, task_card_bm);126}127128// Counts the given object in the given task/worker counting data structures.129inline void ConcurrentMark::count_object(oop obj,130HeapRegion* hr,131size_t* marked_bytes_array,132BitMap* task_card_bm) {133MemRegion mr((HeapWord*)obj, obj->size());134count_region(mr, hr, marked_bytes_array, task_card_bm);135}136137// Attempts to mark the given object and, if successful, counts138// the object in the given task/worker counting structures.139inline bool ConcurrentMark::par_mark_and_count(oop obj,140HeapRegion* hr,141size_t* marked_bytes_array,142BitMap* task_card_bm) {143HeapWord* addr = (HeapWord*)obj;144if (_nextMarkBitMap->parMark(addr)) {145// Update the task specific count data for the object.146count_object(obj, hr, marked_bytes_array, task_card_bm);147return true;148}149return false;150}151152// Attempts to mark the given object and, if successful, counts153// the object in the task/worker counting structures for the154// given worker id.155inline bool ConcurrentMark::par_mark_and_count(oop obj,156size_t word_size,157HeapRegion* hr,158uint worker_id) {159HeapWord* addr = (HeapWord*)obj;160if (_nextMarkBitMap->parMark(addr)) {161MemRegion mr(addr, word_size);162count_region(mr, hr, worker_id);163return true;164}165return false;166}167168inline bool CMBitMapRO::iterate(BitMapClosure* cl, MemRegion mr) {169HeapWord* start_addr = MAX2(startWord(), mr.start());170HeapWord* end_addr = MIN2(endWord(), mr.end());171172if (end_addr > start_addr) {173// Right-open interval [start-offset, end-offset).174BitMap::idx_t start_offset = heapWordToOffset(start_addr);175BitMap::idx_t end_offset = heapWordToOffset(end_addr);176177start_offset = _bm.get_next_one_offset(start_offset, end_offset);178while (start_offset < end_offset) {179if (!cl->do_bit(start_offset)) {180return false;181}182HeapWord* next_addr = MIN2(nextObject(offsetToHeapWord(start_offset)), end_addr);183BitMap::idx_t next_offset = heapWordToOffset(next_addr);184start_offset = _bm.get_next_one_offset(next_offset, end_offset);185}186}187return true;188}189190inline bool CMBitMapRO::iterate(BitMapClosure* cl) {191MemRegion mr(startWord(), sizeInWords());192return iterate(cl, mr);193}194195#define check_mark(addr) \196assert(_bmStartWord <= (addr) && (addr) < (_bmStartWord + _bmWordSize), \197"outside underlying space?"); \198assert(G1CollectedHeap::heap()->is_in_exact(addr), \199err_msg("Trying to access not available bitmap " PTR_FORMAT \200" corresponding to " PTR_FORMAT " (%u)", \201p2i(this), p2i(addr), G1CollectedHeap::heap()->addr_to_region(addr)));202203inline void CMBitMap::mark(HeapWord* addr) {204check_mark(addr);205_bm.set_bit(heapWordToOffset(addr));206}207208inline void CMBitMap::clear(HeapWord* addr) {209check_mark(addr);210_bm.clear_bit(heapWordToOffset(addr));211}212213inline bool CMBitMap::parMark(HeapWord* addr) {214check_mark(addr);215return _bm.par_set_bit(heapWordToOffset(addr));216}217218inline bool CMBitMap::parClear(HeapWord* addr) {219check_mark(addr);220return _bm.par_clear_bit(heapWordToOffset(addr));221}222223#undef check_mark224225inline void CMTask::push(oop obj) {226HeapWord* objAddr = (HeapWord*) obj;227assert(G1CMObjArrayProcessor::is_array_slice(obj) || _g1h->is_in_g1_reserved(objAddr), "invariant");228assert(G1CMObjArrayProcessor::is_array_slice(obj) || !_g1h->is_on_master_free_list(229_g1h->heap_region_containing((HeapWord*) objAddr)), "invariant");230assert(G1CMObjArrayProcessor::is_array_slice(obj) || !_g1h->is_obj_ill(obj), "invariant");231assert(G1CMObjArrayProcessor::is_array_slice(obj) || _nextMarkBitMap->isMarked(objAddr), "invariant");232233if (_cm->verbose_high()) {234gclog_or_tty->print_cr("[%u] pushing " PTR_FORMAT, _worker_id, p2i((void*) obj));235}236237if (!_task_queue->push(obj)) {238// The local task queue looks full. We need to push some entries239// to the global stack.240241if (_cm->verbose_medium()) {242gclog_or_tty->print_cr("[%u] task queue overflow, "243"moving entries to the global stack",244_worker_id);245}246move_entries_to_global_stack();247248// this should succeed since, even if we overflow the global249// stack, we should have definitely removed some entries from the250// local queue. So, there must be space on it.251bool success = _task_queue->push(obj);252assert(success, "invariant");253}254255statsOnly( int tmp_size = _task_queue->size();256if (tmp_size > _local_max_size) {257_local_max_size = tmp_size;258}259++_local_pushes );260}261262inline bool CMTask::is_below_finger(oop obj, HeapWord* global_finger) const {263// If obj is above the global finger, then the mark bitmap scan264// will find it later, and no push is needed. Similarly, if we have265// a current region and obj is between the local finger and the266// end of the current region, then no push is needed. The tradeoff267// of checking both vs only checking the global finger is that the268// local check will be more accurate and so result in fewer pushes,269// but may also be a little slower.270HeapWord* objAddr = (HeapWord*)obj;271if (_finger != NULL) {272// We have a current region.273274// Finger and region values are all NULL or all non-NULL. We275// use _finger to check since we immediately use its value.276assert(_curr_region != NULL, "invariant");277assert(_region_limit != NULL, "invariant");278assert(_region_limit <= global_finger, "invariant");279280// True if obj is less than the local finger, or is between281// the region limit and the global finger.282if (objAddr < _finger) {283return true;284} else if (objAddr < _region_limit) {285return false;286} // Else check global finger.287}288// Check global finger.289return objAddr < global_finger;290}291292inline void CMTask::make_reference_grey(oop obj, HeapRegion* hr) {293if (_cm->par_mark_and_count(obj, hr, _marked_bytes_array, _card_bm)) {294295if (_cm->verbose_high()) {296gclog_or_tty->print_cr("[%u] marked object " PTR_FORMAT,297_worker_id, p2i(obj));298}299300// No OrderAccess:store_load() is needed. It is implicit in the301// CAS done in CMBitMap::parMark() call in the routine above.302HeapWord* global_finger = _cm->finger();303304// We only need to push a newly grey object on the mark305// stack if it is in a section of memory the mark bitmap306// scan has already examined. Mark bitmap scanning307// maintains progress "fingers" for determining that.308//309// Notice that the global finger might be moving forward310// concurrently. This is not a problem. In the worst case, we311// mark the object while it is above the global finger and, by312// the time we read the global finger, it has moved forward313// past this object. In this case, the object will probably314// be visited when a task is scanning the region and will also315// be pushed on the stack. So, some duplicate work, but no316// correctness problems.317if (is_below_finger(obj, global_finger)) {318if (obj->is_typeArray()) {319// Immediately process arrays of primitive types, rather320// than pushing on the mark stack. This keeps us from321// adding humongous objects to the mark stack that might322// be reclaimed before the entry is processed - see323// selection of candidates for eager reclaim of humongous324// objects. The cost of the additional type test is325// mitigated by avoiding a trip through the mark stack,326// by only doing a bookkeeping update and avoiding the327// actual scan of the object - a typeArray contains no328// references, and the metadata is built-in.329process_grey_object<false>(obj);330} else {331if (_cm->verbose_high()) {332gclog_or_tty->print_cr("[%u] below a finger (local: " PTR_FORMAT333", global: " PTR_FORMAT ") pushing "334PTR_FORMAT " on mark stack",335_worker_id, p2i(_finger),336p2i(global_finger), p2i(obj));337}338push(obj);339}340}341}342}343344inline void CMTask::deal_with_reference(oop obj) {345if (_cm->verbose_high()) {346gclog_or_tty->print_cr("[%u] we're dealing with reference = " PTR_FORMAT,347_worker_id, p2i((void*) obj));348}349350increment_refs_reached();351352HeapWord* objAddr = (HeapWord*) obj;353assert(obj->is_oop_or_null(true /* ignore mark word */), "Error");354if (_g1h->is_in_g1_reserved(objAddr)) {355assert(obj != NULL, "null check is implicit");356if (!_nextMarkBitMap->isMarked(objAddr)) {357// Only get the containing region if the object is not marked on the358// bitmap (otherwise, it's a waste of time since we won't do359// anything with it).360HeapRegion* hr = _g1h->heap_region_containing_raw(obj);361if (!hr->obj_allocated_since_next_marking(obj)) {362make_reference_grey(obj, hr);363}364}365}366}367368inline size_t CMTask::scan_objArray(objArrayOop obj, MemRegion mr) {369obj->oop_iterate(_cm_oop_closure, mr);370return mr.word_size();371}372373inline void ConcurrentMark::markPrev(oop p) {374assert(!_prevMarkBitMap->isMarked((HeapWord*) p), "sanity");375// Note we are overriding the read-only view of the prev map here, via376// the cast.377((CMBitMap*)_prevMarkBitMap)->mark((HeapWord*) p);378}379380inline void ConcurrentMark::grayRoot(oop obj, size_t word_size,381uint worker_id, HeapRegion* hr) {382assert(obj != NULL, "pre-condition");383HeapWord* addr = (HeapWord*) obj;384if (hr == NULL) {385hr = _g1h->heap_region_containing_raw(addr);386} else {387assert(hr->is_in(addr), "pre-condition");388}389assert(hr != NULL, "sanity");390// Given that we're looking for a region that contains an object391// header it's impossible to get back a HC region.392assert(!hr->continuesHumongous(), "sanity");393394// We cannot assert that word_size == obj->size() given that obj395// might not be in a consistent state (another thread might be in396// the process of copying it). So the best thing we can do is to397// assert that word_size is under an upper bound which is its398// containing region's capacity.399assert(word_size * HeapWordSize <= hr->capacity(),400err_msg("size: " SIZE_FORMAT " capacity: " SIZE_FORMAT " " HR_FORMAT,401word_size * HeapWordSize, hr->capacity(),402HR_FORMAT_PARAMS(hr)));403404if (addr < hr->next_top_at_mark_start()) {405if (!_nextMarkBitMap->isMarked(addr)) {406par_mark_and_count(obj, word_size, hr, worker_id);407}408}409}410411#endif // SHARE_VM_GC_IMPLEMENTATION_G1_CONCURRENTMARK_INLINE_HPP412413414