src/hotspot/share/ci/ciObjectFactory.hpp
changeset 58177 4932dce35882
parent 54150 5529640c5f67
equal deleted inserted replaced
58176:470af058bd5f 58177:4932dce35882
    72 
    72 
    73   ciObject* create_new_object(oop o);
    73   ciObject* create_new_object(oop o);
    74   ciMetadata* create_new_metadata(Metadata* o);
    74   ciMetadata* create_new_metadata(Metadata* o);
    75 
    75 
    76   static bool is_equal(NonPermObject* p, oop key) {
    76   static bool is_equal(NonPermObject* p, oop key) {
    77     return oopDesc::equals(p->object()->get_oop(), key);
    77     return p->object()->get_oop() == key;
    78   }
    78   }
    79 
    79 
    80   NonPermObject* &find_non_perm(oop key);
    80   NonPermObject* &find_non_perm(oop key);
    81   void insert_non_perm(NonPermObject* &where, oop key, ciObject* obj);
    81   void insert_non_perm(NonPermObject* &where, oop key, ciObject* obj);
    82 
    82