src/hotspot/share/code/debugInfo.cpp
changeset 51268 4ac20e5f96ce
parent 49449 ef5d5d343e2a
child 54786 ebf733a324d4
equal deleted inserted replaced
51267:2cd8bbccbd2d 51268:4ac20e5f96ce
   249 void ConstantOopReadValue::write_on(DebugInfoWriteStream* stream) {
   249 void ConstantOopReadValue::write_on(DebugInfoWriteStream* stream) {
   250   ShouldNotReachHere();
   250   ShouldNotReachHere();
   251 }
   251 }
   252 
   252 
   253 void ConstantOopReadValue::print_on(outputStream* st) const {
   253 void ConstantOopReadValue::print_on(outputStream* st) const {
   254   value()()->print_value_on(st);
   254   if (value()() != NULL) {
       
   255     value()()->print_value_on(st);
       
   256   } else {
       
   257     st->print_cr("NULL");
       
   258   }
   255 }
   259 }
   256 
   260 
   257 
   261 
   258 // MonitorValue
   262 // MonitorValue
   259 
   263