< prev index next >
src/hotspot/share/c1/c1_Instruction.hpp
Print this page
@@ -988,15 +988,15 @@
void set_explicit_null_check(NullCheck* check) { _explicit_null_check = check; }
ciType* exact_type() const;
ciType* declared_type() const;
- NewValueTypeInstance* vt() { return _vt; }
+ NewValueTypeInstance* vt() const { return _vt; }
void set_vt(NewValueTypeInstance* vt) { _vt = vt; }
// generic
- HASHING2(LoadIndexed, true, array()->subst(), index()->subst())
+ HASHING3(LoadIndexed, true, array()->subst(), index()->subst(), vt())
};
LEAF(StoreIndexed, AccessIndexed)
private:
< prev index next >