src/share/vm/oops/arrayKlass.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 7118863 Cdiff src/share/vm/oops/arrayKlass.hpp

src/share/vm/oops/arrayKlass.hpp

Print this page

        

*** 71,81 **** oop component_mirror() const { return _component_mirror; } void set_component_mirror(oop m) { oop_store((oop*) &_component_mirror, m); } oop* adr_component_mirror() { return (oop*)&this->_component_mirror;} // Compiler/Interpreter offset ! static ByteSize component_mirror_offset() { return byte_offset_of(arrayKlass, _component_mirror); } virtual klassOop java_super() const;//{ return SystemDictionary::Object_klass(); } // Allocation // Sizes points to the first dimension of the array, subsequent dimensions --- 71,81 ---- oop component_mirror() const { return _component_mirror; } void set_component_mirror(oop m) { oop_store((oop*) &_component_mirror, m); } oop* adr_component_mirror() { return (oop*)&this->_component_mirror;} // Compiler/Interpreter offset ! static ByteSize component_mirror_offset() { return in_ByteSize(sizeof(klassOopDesc) + offset_of(arrayKlass, _component_mirror)); } virtual klassOop java_super() const;//{ return SystemDictionary::Object_klass(); } // Allocation // Sizes points to the first dimension of the array, subsequent dimensions
src/share/vm/oops/arrayKlass.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File