diff src/share/vm/runtime/sharedRuntime.cpp @ 1563:1a5913bf5e19

6951083: oops and relocations should part of nmethod not CodeBlob Summary: This moves the oops from Codeblob to nmethod. Reviewed-by: kvn, never
author twisti
date Thu, 20 May 2010 06:34:23 -0700
parents cd5dbf694d45
children 61b2245abf36
line wrap: on
line diff
--- a/src/share/vm/runtime/sharedRuntime.cpp	Thu May 20 01:34:22 2010 -0700
+++ b/src/share/vm/runtime/sharedRuntime.cpp	Thu May 20 06:34:23 2010 -0700
@@ -1435,7 +1435,7 @@
       // for the rest of its life! Just another racing bug in the life of
       // fixup_callers_callsite ...
       //
-      RelocIterator iter(cb, call->instruction_address(), call->next_instruction_address());
+      RelocIterator iter(nm, call->instruction_address(), call->next_instruction_address());
       iter.next();
       assert(iter.has_current(), "must have a reloc at java call site");
       relocInfo::relocType typ = iter.reloc()->type();