< prev index next >

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

Print this page
rev 9974 : 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
Summary: Fix remaining issues after 8146401. Also fix windows VS2010 linkage problem (g1OopClosures.hpp).

*** 1,7 **** /* ! * Copyright (c) 2001, 2015, 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. --- 1,7 ---- /* ! * Copyright (c) 2001, 2016, 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.
*** 139,161 **** --- 139,167 ---- inline void G1Mux2Closure::do_oop_work(T* p) { // Apply first closure; then apply the second. _c1->do_oop(p); _c2->do_oop(p); } + void G1Mux2Closure::do_oop(oop* p) { do_oop_work(p); } + void G1Mux2Closure::do_oop(narrowOop* p) { do_oop_work(p); } template <class T> inline void G1TriggerClosure::do_oop_work(T* p) { // Record that this closure was actually applied (triggered). _triggered = true; } + void G1TriggerClosure::do_oop(oop* p) { do_oop_work(p); } + void G1TriggerClosure::do_oop(narrowOop* p) { do_oop_work(p); } template <class T> inline void G1InvokeIfNotTriggeredClosure::do_oop_work(T* p) { if (!_trigger_cl->triggered()) { _oop_cl->do_oop(p); } } + void G1InvokeIfNotTriggeredClosure::do_oop(oop* p) { do_oop_work(p); } + void G1InvokeIfNotTriggeredClosure::do_oop(narrowOop* p) { do_oop_work(p); } template <class T> inline void G1UpdateRSOrPushRefOopClosure::do_oop_work(T* p) { oop obj = oopDesc::load_decode_heap_oop(p); if (obj == NULL) {
*** 222,231 **** --- 228,239 ---- // the referenced object. assert(to->rem_set() != NULL, "Need per-region 'into' remsets."); to->rem_set()->add_reference(p, _worker_i); } } + void G1UpdateRSOrPushRefOopClosure::do_oop(oop* p) { do_oop_work(p); } + void G1UpdateRSOrPushRefOopClosure::do_oop(narrowOop* p) { do_oop_work(p); } template <class T> void G1ParCopyHelper::do_klass_barrier(T* p, oop new_obj) { if (_g1->heap_region_containing(new_obj)->is_young()) { _scanned_klass->record_modified_oops();
< prev index next >