hotspot/src/share/vm/oops/fieldInfo.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot-comp Cdiff hotspot/src/share/vm/oops/fieldInfo.hpp

hotspot/src/share/vm/oops/fieldInfo.hpp

Print this page
rev 5139 : imported patch stable

*** 238,247 **** --- 238,255 ---- bool is_internal() const { return (access_flags() & JVM_ACC_FIELD_INTERNAL) != 0; } + bool is_stable() const { + return (access_flags() & JVM_ACC_FIELD_STABLE) != 0; + } + void set_stable(bool z) { + if (z) _shorts[access_flags_offset] |= JVM_ACC_FIELD_STABLE; + else _shorts[access_flags_offset] &= ~JVM_ACC_FIELD_STABLE; + } + Symbol* lookup_symbol(int symbol_index) const { assert(is_internal(), "only internal fields"); return vmSymbols::symbol_at((vmSymbols::SID)symbol_index); } };
hotspot/src/share/vm/oops/fieldInfo.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File