/* * Copyright (c) 2001, 2022, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. *
*/
inlinebool G1CMIsAliveClosure::do_object_b(oop obj) { // Check whether the passed in object is null. During discovery the referent // may be cleared between the initial check and being passed in here. if (obj == NULL) { // Return true to avoid discovery when the referent is NULL. returntrue;
}
HeapRegion* hr = _g1h->heap_region_containing(obj); // All objects allocated since the start of marking are considered live. if (hr->obj_allocated_since_marking_start(obj)) { returntrue;
}
// All objects in closed archive regions are live. if (hr->is_closed_archive()) { returntrue;
}
// All objects that are marked are live. return _g1h->is_marked(obj);
}
inlinebool G1CMSubjectToDiscoveryClosure::do_object_b(oop obj) { // Re-check whether the passed object is null. With ReferentBasedDiscovery the // mutator may have changed the referent's value (i.e. cleared it) between the // time the referent was determined to be potentially alive and calling this // method. if (obj == NULL) { returnfalse;
}
assert(_g1h->is_in_reserved(obj), "Trying to discover obj " PTR_FORMAT " not in heap", p2i(obj)); return _g1h->heap_region_containing(obj)->is_old_or_humongous_or_archive();
}
if (hr->obj_allocated_since_marking_start(obj)) { returnfalse;
}
// Some callers may have stale objects to mark above TAMS after humongous reclaim. // Can't assert that this is a valid object at this point, since it might be in the process of being copied by another thread.
assert(!hr->is_continues_humongous(), "Should not try to mark object " PTR_FORMAT " in Humongous continues region %u above TAMS " PTR_FORMAT, p2i(obj), hr->hrm_index(), p2i(hr->top_at_mark_start()));
TaskQueueEntryChunk* cur = _chunk_list; while (cur != NULL) {
guarantee(num_chunks <= _chunks_in_chunk_list, "Found " SIZE_FORMAT " oop chunks which is more than there should be", num_chunks);
for (size_t i = 0; i < EntriesPerChunk; ++i) { if (cur->data[i].is_null()) { break;
}
fn(cur->data[i]);
}
cur = cur->next;
num_chunks++;
}
} #endif
// It scans an object and visits its children. inlinevoid G1CMTask::scan_task_entry(G1TaskQueueEntry task_entry) { process_grey_task_entry<true>(task_entry); }
if (!_task_queue->push(task_entry)) { // The local task queue looks full. We need to push some entries // to the global stack.
move_entries_to_global_stack();
// this should succeed since, even if we overflow the global // stack, we should have definitely removed some entries from the // local queue. So, there must be space on it. bool success = _task_queue->push(task_entry);
assert(success, "invariant");
}
}
inlinebool G1CMTask::is_below_finger(oop obj, HeapWord* global_finger) const { // If obj is above the global finger, then the mark bitmap scan // will find it later, and no push is needed. Similarly, if we have // a current region and obj is between the local finger and the // end of the current region, then no push is needed. The tradeoff // of checking both vs only checking the global finger is that the // local check will be more accurate and so result in fewer pushes, // but may also be a little slower.
HeapWord* objAddr = cast_from_oop<HeapWord*>(obj); if (_finger != NULL) { // We have a current region.
// Finger and region values are all NULL or all non-NULL. We // use _finger to check since we immediately use its value.
assert(_curr_region != NULL, "invariant");
assert(_region_limit != NULL, "invariant");
assert(_region_limit <= global_finger, "invariant");
// True if obj is less than the local finger, or is between // the region limit and the global finger. if (objAddr < _finger) { returntrue;
} elseif (objAddr < _region_limit) { returnfalse;
} // Else check global finger.
} // Check global finger. return objAddr < global_finger;
}
template<bool scan> inlinevoid G1CMTask::process_grey_task_entry(G1TaskQueueEntry task_entry) {
assert(scan || (task_entry.is_oop() && task_entry.obj()->is_typeArray()), "Skipping scan of grey non-typeArray");
assert(task_entry.is_array_slice() || _mark_bitmap->is_marked(cast_from_oop<HeapWord*>(task_entry.obj())), "Any stolen object should be a slice or marked");
inline HeapWord* G1ConcurrentMark::top_at_rebuild_start(uint region) const {
assert(region < _g1h->max_reserved_regions(), "Tried to access TARS for region %u out of bounds", region); return _top_at_rebuild_starts[region];
}
inlinevoid G1ConcurrentMark::update_top_at_rebuild_start(HeapRegion* r) {
uint const region = r->hrm_index();
assert(region < _g1h->max_reserved_regions(), "Tried to access TARS for region %u out of bounds", region);
assert(_top_at_rebuild_starts[region] == NULL, "TARS for region %u has already been set to " PTR_FORMAT " should be NULL",
region, p2i(_top_at_rebuild_starts[region]));
G1RemSetTrackingPolicy* tracker = _g1h->policy()->remset_tracker(); if (tracker->needs_scan_for_rebuild(r)) {
_top_at_rebuild_starts[region] = r->top();
} else { // Leave TARS at NULL.
}
}
inlinevoid G1CMTask::abort_marking_if_regular_check_fail() { if (!regular_clock_call()) {
set_has_aborted();
}
}
inlinebool G1CMTask::make_reference_grey(oop obj) { if (!_cm->mark_in_bitmap(_worker_id, obj)) { returnfalse;
}
// No OrderAccess:store_load() is needed. It is implicit in the // CAS done in G1CMBitMap::parMark() call in the routine above.
HeapWord* global_finger = _cm->finger();
// We only need to push a newly grey object on the mark // stack if it is in a section of memory the mark bitmap // scan has already examined. Mark bitmap scanning // maintains progress "fingers" for determining that. // // Notice that the global finger might be moving forward // concurrently. This is not a problem. In the worst case, we // mark the object while it is above the global finger and, by // the time we read the global finger, it has moved forward // past this object. In this case, the object will probably // be visited when a task is scanning the region and will also // be pushed on the stack. So, some duplicate work, but no // correctness problems. if (is_below_finger(obj, global_finger)) {
G1TaskQueueEntry entry = G1TaskQueueEntry::from_oop(obj); if (obj->is_typeArray()) { // Immediately process arrays of primitive types, rather // than pushing on the mark stack. This keeps us from // adding humongous objects to the mark stack that might // be reclaimed before the entry is processed - see // selection of candidates for eager reclaim of humongous // objects. The cost of the additional type test is // mitigated by avoiding a trip through the mark stack, // by only doing a bookkeeping update and avoiding the // actual scan of the object - a typeArray contains no // references, and the metadata is built-in.
process_grey_task_entry<false>(entry);
} else {
push(entry);
}
} returntrue;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.