hotspot/src/share/vm/code/debugInfo.hpp
changeset 18439 725ce18186b3
parent 13728 882756847a04
child 22234 da823d78ad65
equal deleted inserted replaced
18438:9ea6bbfe0b83 18439:725ce18186b3
   272     return o;
   272     return o;
   273   }
   273   }
   274   Method* read_method() {
   274   Method* read_method() {
   275     Method* o = (Method*)(code()->metadata_at(read_int()));
   275     Method* o = (Method*)(code()->metadata_at(read_int()));
   276     assert(o == NULL ||
   276     assert(o == NULL ||
   277            o->is_metadata(), "meta data only");
   277            o->is_metaspace_object(), "meta data only");
   278     return o;
   278     return o;
   279   }
   279   }
   280   ScopeValue* read_object_value();
   280   ScopeValue* read_object_value();
   281   ScopeValue* get_cached_object();
   281   ScopeValue* get_cached_object();
   282   // BCI encoding is mostly unsigned, but -1 is a distinguished value
   282   // BCI encoding is mostly unsigned, but -1 is a distinguished value