src/hotspot/share/code/nmethod.cpp
changeset 55454 8892555795cd
parent 55293 d19dc5b10fbb
child 55479 80b27dc96ca3
--- a/src/hotspot/share/code/nmethod.cpp	Thu Jun 20 07:56:28 2019 -0700
+++ b/src/hotspot/share/code/nmethod.cpp	Thu Jun 20 10:32:25 2019 -0700
@@ -1473,6 +1473,13 @@
   return NativeAccess<AS_NO_KEEPALIVE>::oop_load(oop_addr_at(index));
 }
 
+oop nmethod::oop_at_phantom(int index) const {
+  if (index == 0) {
+    return NULL;
+  }
+  return NativeAccess<ON_PHANTOM_OOP_REF>::oop_load(oop_addr_at(index));
+}
+
 //
 // Notify all classes this nmethod is dependent on that it is no
 // longer dependent. This should only be called in two situations.