< prev index next >

src/hotspot/share/gc/z/zCollectedHeap.cpp

Print this page
rev 53848 : 8219469: ZGC: Extract functions out from ZNMethodTable into new ZNMethod class

*** 25,35 **** #include "gc/shared/gcHeapSummary.hpp" #include "gc/shared/suspendibleThreadSet.hpp" #include "gc/z/zCollectedHeap.hpp" #include "gc/z/zGlobals.hpp" #include "gc/z/zHeap.inline.hpp" ! #include "gc/z/zNMethodTable.hpp" #include "gc/z/zServiceability.hpp" #include "gc/z/zStat.hpp" #include "gc/z/zUtils.inline.hpp" #include "runtime/mutexLocker.hpp" --- 25,35 ---- #include "gc/shared/gcHeapSummary.hpp" #include "gc/shared/suspendibleThreadSet.hpp" #include "gc/z/zCollectedHeap.hpp" #include "gc/z/zGlobals.hpp" #include "gc/z/zHeap.inline.hpp" ! #include "gc/z/zNMethod.hpp" #include "gc/z/zServiceability.hpp" #include "gc/z/zStat.hpp" #include "gc/z/zUtils.inline.hpp" #include "runtime/mutexLocker.hpp"
*** 253,267 **** bool ZCollectedHeap::block_is_obj(const HeapWord* addr) const { return _heap.block_is_obj((uintptr_t)addr); } void ZCollectedHeap::register_nmethod(nmethod* nm) { ! ZNMethodTable::register_nmethod(nm); } void ZCollectedHeap::unregister_nmethod(nmethod* nm) { ! ZNMethodTable::unregister_nmethod(nm); } void ZCollectedHeap::verify_nmethod(nmethod* nm) { // Does nothing } --- 253,267 ---- bool ZCollectedHeap::block_is_obj(const HeapWord* addr) const { return _heap.block_is_obj((uintptr_t)addr); } void ZCollectedHeap::register_nmethod(nmethod* nm) { ! ZNMethod::register_nmethod(nm); } void ZCollectedHeap::unregister_nmethod(nmethod* nm) { ! ZNMethod::unregister_nmethod(nm); } void ZCollectedHeap::verify_nmethod(nmethod* nm) { // Does nothing }
< prev index next >