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

Thu, 12 Oct 2017 21:27:07 +0800

author
aoqi
date
Thu, 12 Oct 2017 21:27:07 +0800
changeset 7535
7ae4e26cb1e0
parent 7049
eec72fa4b108
parent 6876
710a3c8b516e
child 7994
04ff2f6cd0eb
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_G1OOPCLOSURES_INLINE_HPP
aoqi@0 26 #define SHARE_VM_GC_IMPLEMENTATION_G1_G1OOPCLOSURES_INLINE_HPP
aoqi@0 27
aoqi@0 28 #include "gc_implementation/g1/concurrentMark.inline.hpp"
aoqi@0 29 #include "gc_implementation/g1/g1CollectedHeap.hpp"
aoqi@0 30 #include "gc_implementation/g1/g1OopClosures.hpp"
tschatzl@6937 31 #include "gc_implementation/g1/g1ParScanThreadState.inline.hpp"
aoqi@0 32 #include "gc_implementation/g1/g1RemSet.hpp"
aoqi@0 33 #include "gc_implementation/g1/g1RemSet.inline.hpp"
aoqi@0 34 #include "gc_implementation/g1/heapRegionRemSet.hpp"
stefank@6992 35 #include "memory/iterator.inline.hpp"
goetz@6912 36 #include "runtime/prefetch.inline.hpp"
aoqi@0 37
aoqi@0 38 /*
aoqi@0 39 * This really ought to be an inline function, but apparently the C++
aoqi@0 40 * compiler sometimes sees fit to ignore inline declarations. Sigh.
aoqi@0 41 */
aoqi@0 42
aoqi@0 43 template <class T>
aoqi@0 44 inline void FilterIntoCSClosure::do_oop_nv(T* p) {
aoqi@0 45 T heap_oop = oopDesc::load_heap_oop(p);
aoqi@0 46 if (!oopDesc::is_null(heap_oop) &&
tschatzl@7010 47 _g1->is_in_cset_or_humongous(oopDesc::decode_heap_oop_not_null(heap_oop))) {
aoqi@0 48 _oc->do_oop(p);
aoqi@0 49 }
aoqi@0 50 }
aoqi@0 51
aoqi@0 52 template <class T>
aoqi@0 53 inline void FilterOutOfRegionClosure::do_oop_nv(T* p) {
aoqi@0 54 T heap_oop = oopDesc::load_heap_oop(p);
aoqi@0 55 if (!oopDesc::is_null(heap_oop)) {
aoqi@0 56 HeapWord* obj_hw = (HeapWord*)oopDesc::decode_heap_oop_not_null(heap_oop);
aoqi@0 57 if (obj_hw < _r_bottom || obj_hw >= _r_end) {
aoqi@0 58 _oc->do_oop(p);
aoqi@0 59 }
aoqi@0 60 }
aoqi@0 61 }
aoqi@0 62
aoqi@0 63 // This closure is applied to the fields of the objects that have just been copied.
aoqi@0 64 template <class T>
aoqi@0 65 inline void G1ParScanClosure::do_oop_nv(T* p) {
aoqi@0 66 T heap_oop = oopDesc::load_heap_oop(p);
aoqi@0 67
aoqi@0 68 if (!oopDesc::is_null(heap_oop)) {
aoqi@0 69 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
tschatzl@7010 70 G1CollectedHeap::in_cset_state_t state = _g1->in_cset_state(obj);
tschatzl@7010 71 if (state == G1CollectedHeap::InCSet) {
aoqi@0 72 // We're not going to even bother checking whether the object is
aoqi@0 73 // already forwarded or not, as this usually causes an immediate
aoqi@0 74 // stall. We'll try to prefetch the object (for write, given that
aoqi@0 75 // we might need to install the forwarding reference) and we'll
aoqi@0 76 // get back to it when pop it from the queue
aoqi@0 77 Prefetch::write(obj->mark_addr(), 0);
aoqi@0 78 Prefetch::read(obj->mark_addr(), (HeapWordSize*2));
aoqi@0 79
aoqi@0 80 // slightly paranoid test; I'm trying to catch potential
aoqi@0 81 // problems before we go into push_on_queue to know where the
aoqi@0 82 // problem is coming from
aoqi@0 83 assert((obj == oopDesc::load_decode_heap_oop(p)) ||
aoqi@0 84 (obj->is_forwarded() &&
aoqi@0 85 obj->forwardee() == oopDesc::load_decode_heap_oop(p)),
aoqi@0 86 "p should still be pointing to obj or to its forwardee");
aoqi@0 87
aoqi@0 88 _par_scan_state->push_on_queue(p);
aoqi@0 89 } else {
tschatzl@7010 90 if (state == G1CollectedHeap::IsHumongous) {
tschatzl@7010 91 _g1->set_humongous_is_live(obj);
tschatzl@7010 92 }
aoqi@0 93 _par_scan_state->update_rs(_from, p, _worker_id);
aoqi@0 94 }
aoqi@0 95 }
aoqi@0 96 }
aoqi@0 97
aoqi@0 98 template <class T>
aoqi@0 99 inline void G1ParPushHeapRSClosure::do_oop_nv(T* p) {
aoqi@0 100 T heap_oop = oopDesc::load_heap_oop(p);
aoqi@0 101
aoqi@0 102 if (!oopDesc::is_null(heap_oop)) {
aoqi@0 103 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
tschatzl@7010 104 if (_g1->is_in_cset_or_humongous(obj)) {
aoqi@0 105 Prefetch::write(obj->mark_addr(), 0);
aoqi@0 106 Prefetch::read(obj->mark_addr(), (HeapWordSize*2));
aoqi@0 107
aoqi@0 108 // Place on the references queue
aoqi@0 109 _par_scan_state->push_on_queue(p);
tschatzl@7010 110 } else {
tschatzl@7010 111 assert(!_g1->obj_in_cs(obj), "checking");
aoqi@0 112 }
aoqi@0 113 }
aoqi@0 114 }
aoqi@0 115
aoqi@0 116 template <class T>
aoqi@0 117 inline void G1CMOopClosure::do_oop_nv(T* p) {
aoqi@0 118 oop obj = oopDesc::load_decode_heap_oop(p);
aoqi@0 119 if (_cm->verbose_high()) {
aoqi@0 120 gclog_or_tty->print_cr("[%u] we're looking at location "
aoqi@0 121 "*"PTR_FORMAT" = "PTR_FORMAT,
aoqi@0 122 _task->worker_id(), p2i(p), p2i((void*) obj));
aoqi@0 123 }
aoqi@0 124 _task->deal_with_reference(obj);
aoqi@0 125 }
aoqi@0 126
aoqi@0 127 template <class T>
aoqi@0 128 inline void G1RootRegionScanClosure::do_oop_nv(T* p) {
aoqi@0 129 T heap_oop = oopDesc::load_heap_oop(p);
aoqi@0 130 if (!oopDesc::is_null(heap_oop)) {
aoqi@0 131 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
aoqi@0 132 HeapRegion* hr = _g1h->heap_region_containing((HeapWord*) obj);
brutisso@7049 133 _cm->grayRoot(obj, obj->size(), _worker_id, hr);
aoqi@0 134 }
aoqi@0 135 }
aoqi@0 136
aoqi@0 137 template <class T>
aoqi@0 138 inline void G1Mux2Closure::do_oop_nv(T* p) {
aoqi@0 139 // Apply first closure; then apply the second.
aoqi@0 140 _c1->do_oop(p);
aoqi@0 141 _c2->do_oop(p);
aoqi@0 142 }
aoqi@0 143
aoqi@0 144 template <class T>
aoqi@0 145 inline void G1TriggerClosure::do_oop_nv(T* p) {
aoqi@0 146 // Record that this closure was actually applied (triggered).
aoqi@0 147 _triggered = true;
aoqi@0 148 }
aoqi@0 149
aoqi@0 150 template <class T>
aoqi@0 151 inline void G1InvokeIfNotTriggeredClosure::do_oop_nv(T* p) {
aoqi@0 152 if (!_trigger_cl->triggered()) {
aoqi@0 153 _oop_cl->do_oop(p);
aoqi@0 154 }
aoqi@0 155 }
aoqi@0 156
aoqi@0 157 template <class T>
aoqi@0 158 inline void G1UpdateRSOrPushRefOopClosure::do_oop_nv(T* p) {
aoqi@0 159 oop obj = oopDesc::load_decode_heap_oop(p);
brutisso@7049 160 if (obj == NULL) {
brutisso@7049 161 return;
brutisso@7049 162 }
aoqi@0 163 #ifdef ASSERT
aoqi@0 164 // can't do because of races
aoqi@0 165 // assert(obj == NULL || obj->is_oop(), "expected an oop");
aoqi@0 166
aoqi@0 167 // Do the safe subset of is_oop
aoqi@0 168 #ifdef CHECK_UNHANDLED_OOPS
brutisso@7049 169 oopDesc* o = obj.obj();
aoqi@0 170 #else
brutisso@7049 171 oopDesc* o = obj;
aoqi@0 172 #endif // CHECK_UNHANDLED_OOPS
brutisso@7049 173 assert((intptr_t)o % MinObjAlignmentInBytes == 0, "not oop aligned");
brutisso@7049 174 assert(Universe::heap()->is_in_reserved(obj), "must be in heap");
aoqi@0 175 #endif // ASSERT
aoqi@0 176
aoqi@0 177 assert(_from != NULL, "from region must be non-NULL");
aoqi@0 178 assert(_from->is_in_reserved(p), "p is not in from");
aoqi@0 179
aoqi@0 180 HeapRegion* to = _g1->heap_region_containing(obj);
brutisso@7049 181 if (_from == to) {
brutisso@7049 182 // Normally this closure should only be called with cross-region references.
brutisso@7049 183 // But since Java threads are manipulating the references concurrently and we
brutisso@7049 184 // reload the values things may have changed.
brutisso@7049 185 return;
brutisso@7049 186 }
brutisso@7049 187 // The _record_refs_into_cset flag is true during the RSet
brutisso@7049 188 // updating part of an evacuation pause. It is false at all
brutisso@7049 189 // other times:
brutisso@7049 190 // * rebuilding the remembered sets after a full GC
brutisso@7049 191 // * during concurrent refinement.
brutisso@7049 192 // * updating the remembered sets of regions in the collection
brutisso@7049 193 // set in the event of an evacuation failure (when deferred
brutisso@7049 194 // updates are enabled).
aoqi@0 195
brutisso@7049 196 if (_record_refs_into_cset && to->in_collection_set()) {
brutisso@7049 197 // We are recording references that point into the collection
brutisso@7049 198 // set and this particular reference does exactly that...
brutisso@7049 199 // If the referenced object has already been forwarded
brutisso@7049 200 // to itself, we are handling an evacuation failure and
brutisso@7049 201 // we have already visited/tried to copy this object
brutisso@7049 202 // there is no need to retry.
brutisso@7049 203 if (!self_forwarded(obj)) {
brutisso@7049 204 assert(_push_ref_cl != NULL, "should not be null");
brutisso@7049 205 // Push the reference in the refs queue of the G1ParScanThreadState
brutisso@7049 206 // instance for this worker thread.
brutisso@7049 207 _push_ref_cl->do_oop(p);
brutisso@7049 208 }
aoqi@0 209
brutisso@7049 210 // Deferred updates to the CSet are either discarded (in the normal case),
brutisso@7049 211 // or processed (if an evacuation failure occurs) at the end
brutisso@7049 212 // of the collection.
brutisso@7049 213 // See G1RemSet::cleanup_after_oops_into_collection_set_do().
brutisso@7049 214 } else {
aoqi@0 215 // We either don't care about pushing references that point into the
aoqi@0 216 // collection set (i.e. we're not during an evacuation pause) _or_
aoqi@0 217 // the reference doesn't point into the collection set. Either way
aoqi@0 218 // we add the reference directly to the RSet of the region containing
aoqi@0 219 // the referenced object.
aoqi@0 220 assert(to->rem_set() != NULL, "Need per-region 'into' remsets.");
aoqi@0 221 to->rem_set()->add_reference(p, _worker_i);
aoqi@0 222 }
aoqi@0 223 }
aoqi@0 224
aoqi@0 225 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1OOPCLOSURES_INLINE_HPP

mercurial