src/hotspot/share/oops/cpCache.hpp
changeset 49816 a3e79f97e86b
parent 49364 601146c66cad
child 53244 9807daeb47c4
equal deleted inserted replaced
49815:76e3bcb9bee1 49816:a3e79f97e86b
   451   MetaspaceObj::Type type() const         { return ConstantPoolCacheType; }
   451   MetaspaceObj::Type type() const         { return ConstantPoolCacheType; }
   452 
   452 
   453   oop  archived_references() NOT_CDS_JAVA_HEAP_RETURN_(NULL);
   453   oop  archived_references() NOT_CDS_JAVA_HEAP_RETURN_(NULL);
   454   void set_archived_references(oop o) NOT_CDS_JAVA_HEAP_RETURN;
   454   void set_archived_references(oop o) NOT_CDS_JAVA_HEAP_RETURN;
   455 
   455 
   456   oop resolved_references()                 { return _resolved_references.resolve(); }
   456   inline oop resolved_references();
   457   void set_resolved_references(OopHandle s) { _resolved_references = s; }
   457   void set_resolved_references(OopHandle s) { _resolved_references = s; }
   458   Array<u2>* reference_map() const        { return _reference_map; }
   458   Array<u2>* reference_map() const        { return _reference_map; }
   459   void set_reference_map(Array<u2>* o)    { _reference_map = o; }
   459   void set_reference_map(Array<u2>* o)    { _reference_map = o; }
   460 
   460 
   461   // Assembly code support
   461   // Assembly code support