< prev index next >

src/share/vm/code/debugInfo.cpp

Print this page
rev 11777 : [mq]: gcinterface.patch

@@ -208,11 +208,11 @@
 
 // ConstantOopWriteValue
 
 void ConstantOopWriteValue::write_on(DebugInfoWriteStream* stream) {
   assert(JNIHandles::resolve(value()) == NULL ||
-         Universe::heap()->is_in_reserved(JNIHandles::resolve(value())),
+         GC::gc()->heap()->is_in_reserved(JNIHandles::resolve(value())),
          "Should be in heap");
   stream->write_int(CONSTANT_OOP_CODE);
   stream->write_handle(value());
 }
 

@@ -224,11 +224,11 @@
 // ConstantOopReadValue
 
 ConstantOopReadValue::ConstantOopReadValue(DebugInfoReadStream* stream) {
   _value = Handle(stream->read_oop());
   assert(_value() == NULL ||
-         Universe::heap()->is_in_reserved(_value()), "Should be in heap");
+         GC::gc()->heap()->is_in_reserved(_value()), "Should be in heap");
 }
 
 void ConstantOopReadValue::write_on(DebugInfoWriteStream* stream) {
   ShouldNotReachHere();
 }
< prev index next >