hotspot/src/share/vm/code/debugInfo.cpp
changeset 46968 9119841280f4
parent 46630 75aa3e39d02c
equal deleted inserted replaced
46953:39063b484ec2 46968:9119841280f4
    46   write_int(recorder()->oop_recorder()->find_index(h));
    46   write_int(recorder()->oop_recorder()->find_index(h));
    47 }
    47 }
    48 
    48 
    49 oop DebugInfoReadStream::read_oop() {
    49 oop DebugInfoReadStream::read_oop() {
    50   oop o = code()->oop_at(read_int());
    50   oop o = code()->oop_at(read_int());
    51   assert(o->is_oop_or_null(), "oop only");
    51   assert(oopDesc::is_oop_or_null(o), "oop only");
    52   return o;
    52   return o;
    53 }
    53 }
    54 
    54 
    55 ScopeValue* DebugInfoReadStream::read_object_value() {
    55 ScopeValue* DebugInfoReadStream::read_object_value() {
    56   int id = read_int();
    56   int id = read_int();