< prev index next >

src/hotspot/share/ci/ciInstanceKlass.hpp

Print this page

        

*** 54,63 **** --- 54,64 ---- bool _has_finalizer; SubklassValue _has_subklass; bool _has_nonstatic_fields; bool _has_nonstatic_concrete_methods; bool _is_unsafe_anonymous; + bool _is_hidden; ciFlags _flags; jint _nonstatic_field_size; jint _nonstatic_oop_map_size;
*** 193,202 **** --- 194,207 ---- bool is_unsafe_anonymous() { return _is_unsafe_anonymous; } + bool is_hidden() { + return _is_hidden; + } + ciInstanceKlass* get_canonical_holder(int offset); ciField* get_field_by_offset(int field_offset, bool is_static); ciField* get_field_by_name(ciSymbol* name, ciSymbol* signature, bool is_static); // total number of nonstatic fields (including inherited):
< prev index next >