Path: blob/jdk8u272-b10-aarch32-20201026/hotspot/src/share/vm/oops/klass.hpp
48729 views
/*1* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_OOPS_KLASS_HPP25#define SHARE_VM_OOPS_KLASS_HPP2627#include "memory/genOopClosures.hpp"28#include "memory/iterator.hpp"29#include "memory/memRegion.hpp"30#include "memory/specialized_oop_closures.hpp"31#include "oops/klassPS.hpp"32#include "oops/metadata.hpp"33#include "oops/oop.hpp"34#include "utilities/accessFlags.hpp"35#include "utilities/macros.hpp"36#if INCLUDE_ALL_GCS37#include "gc_implementation/concurrentMarkSweep/cmsOopClosures.hpp"38#include "gc_implementation/g1/g1OopClosures.hpp"39#include "gc_implementation/parNew/parOopClosures.hpp"40#endif // INCLUDE_ALL_GCS41#if INCLUDE_JFR42#include "jfr/support/jfrTraceIdExtension.hpp"43#endif4445//46// A Klass provides:47// 1: language level class object (method dictionary etc.)48// 2: provide vm dispatch behavior for the object49// Both functions are combined into one C++ class.5051// One reason for the oop/klass dichotomy in the implementation is52// that we don't want a C++ vtbl pointer in every object. Thus,53// normal oops don't have any virtual functions. Instead, they54// forward all "virtual" functions to their klass, which does have55// a vtbl and does the C++ dispatch depending on the object's56// actual type. (See oop.inline.hpp for some of the forwarding code.)57// ALL FUNCTIONS IMPLEMENTING THIS DISPATCH ARE PREFIXED WITH "oop_"!5859// Klass layout:60// [C++ vtbl ptr ] (contained in Metadata)61// [layout_helper ]62// [super_check_offset ] for fast subtype checks63// [name ]64// [secondary_super_cache] for fast subtype checks65// [secondary_supers ] array of 2ndary supertypes66// [primary_supers 0]67// [primary_supers 1]68// [primary_supers 2]69// ...70// [primary_supers 7]71// [java_mirror ]72// [super ]73// [subklass ] first subclass74// [next_sibling ] link to chain additional subklasses75// [next_link ]76// [class_loader_data]77// [modifier_flags]78// [access_flags ]79// [last_biased_lock_bulk_revocation_time] (64 bits)80// [prototype_header]81// [biased_lock_revocation_count]82// [_modified_oops]83// [_accumulated_modified_oops]84// [trace_id]858687// Forward declarations.88template <class T> class Array;89template <class T> class GrowableArray;90class ClassLoaderData;91class klassVtable;92class ParCompactionManager;93class KlassSizeStats;94class fieldDescriptor;9596class Klass : public Metadata {97friend class VMStructs;98protected:99// note: put frequently-used fields together at start of klass structure100// for better cache behavior (may not make much of a difference but sure won't hurt)101enum { _primary_super_limit = 8 };102103// The "layout helper" is a combined descriptor of object layout.104// For klasses which are neither instance nor array, the value is zero.105//106// For instances, layout helper is a positive number, the instance size.107// This size is already passed through align_object_size and scaled to bytes.108// The low order bit is set if instances of this class cannot be109// allocated using the fastpath.110//111// For arrays, layout helper is a negative number, containing four112// distinct bytes, as follows:113// MSB:[tag, hsz, ebt, log2(esz)]:LSB114// where:115// tag is 0x80 if the elements are oops, 0xC0 if non-oops116// hsz is array header size in bytes (i.e., offset of first element)117// ebt is the BasicType of the elements118// esz is the element size in bytes119// This packed word is arranged so as to be quickly unpacked by the120// various fast paths that use the various subfields.121//122// The esz bits can be used directly by a SLL instruction, without masking.123//124// Note that the array-kind tag looks like 0x00 for instance klasses,125// since their length in bytes is always less than 24Mb.126//127// Final note: This comes first, immediately after C++ vtable,128// because it is frequently queried.129jint _layout_helper;130131// The fields _super_check_offset, _secondary_super_cache, _secondary_supers132// and _primary_supers all help make fast subtype checks. See big discussion133// in doc/server_compiler/checktype.txt134//135// Where to look to observe a supertype (it is &_secondary_super_cache for136// secondary supers, else is &_primary_supers[depth()].137juint _super_check_offset;138139// Class name. Instance classes: java/lang/String, etc. Array classes: [I,140// [Ljava/lang/String;, etc. Set to zero for all other kinds of classes.141Symbol* _name;142143// Cache of last observed secondary supertype144Klass* _secondary_super_cache;145// Array of all secondary supertypes146Array<Klass*>* _secondary_supers;147// Ordered list of all primary supertypes148Klass* _primary_supers[_primary_super_limit];149// java/lang/Class instance mirroring this class150oop _java_mirror;151// Superclass152Klass* _super;153// First subclass (NULL if none); _subklass->next_sibling() is next one154Klass* _subklass;155// Sibling link (or NULL); links all subklasses of a klass156Klass* _next_sibling;157158// All klasses loaded by a class loader are chained through these links159Klass* _next_link;160161// The VM's representation of the ClassLoader used to load this class.162// Provide access the corresponding instance java.lang.ClassLoader.163ClassLoaderData* _class_loader_data;164165jint _modifier_flags; // Processed access flags, for use by Class.getModifiers.166AccessFlags _access_flags; // Access flags. The class/interface distinction is stored here.167168// Biased locking implementation and statistics169// (the 64-bit chunk goes first, to avoid some fragmentation)170jlong _last_biased_lock_bulk_revocation_time;171markOop _prototype_header; // Used when biased locking is both enabled and disabled for this type172jint _biased_lock_revocation_count;173174JFR_ONLY(DEFINE_TRACE_ID_FIELD;)175176// Remembered sets support for the oops in the klasses.177jbyte _modified_oops; // Card Table Equivalent (YC/CMS support)178jbyte _accumulated_modified_oops; // Mod Union Equivalent (CMS support)179180private:181// This is an index into FileMapHeader::_classpath_entry_table[], to182// associate this class with the JAR file where it's loaded from during183// dump time. If a class is not loaded from the shared archive, this field is184// -1.185jshort _shared_class_path_index;186187friend class SharedClassUtil;188protected:189190// Constructor191Klass();192193void* operator new(size_t size, ClassLoaderData* loader_data, size_t word_size, TRAPS) throw();194195public:196enum DefaultsLookupMode { find_defaults, skip_defaults };197enum OverpassLookupMode { find_overpass, skip_overpass };198enum StaticLookupMode { find_static, skip_static };199enum PrivateLookupMode { find_private, skip_private };200201bool is_klass() const volatile { return true; }202203// super204Klass* super() const { return _super; }205void set_super(Klass* k) { _super = k; }206207// initializes _super link, _primary_supers & _secondary_supers arrays208void initialize_supers(Klass* k, TRAPS);209void initialize_supers_impl1(Klass* k);210void initialize_supers_impl2(Klass* k);211212// klass-specific helper for initializing _secondary_supers213virtual GrowableArray<Klass*>* compute_secondary_supers(int num_extra_slots);214215// java_super is the Java-level super type as specified by Class.getSuperClass.216virtual Klass* java_super() const { return NULL; }217218juint super_check_offset() const { return _super_check_offset; }219void set_super_check_offset(juint o) { _super_check_offset = o; }220221Klass* secondary_super_cache() const { return _secondary_super_cache; }222void set_secondary_super_cache(Klass* k) { _secondary_super_cache = k; }223224Array<Klass*>* secondary_supers() const { return _secondary_supers; }225void set_secondary_supers(Array<Klass*>* k) { _secondary_supers = k; }226227// Return the element of the _super chain of the given depth.228// If there is no such element, return either NULL or this.229Klass* primary_super_of_depth(juint i) const {230assert(i < primary_super_limit(), "oob");231Klass* super = _primary_supers[i];232assert(super == NULL || super->super_depth() == i, "correct display");233return super;234}235236// Can this klass be a primary super? False for interfaces and arrays of237// interfaces. False also for arrays or classes with long super chains.238bool can_be_primary_super() const {239const juint secondary_offset = in_bytes(secondary_super_cache_offset());240return super_check_offset() != secondary_offset;241}242virtual bool can_be_primary_super_slow() const;243244// Returns number of primary supers; may be a number in the inclusive range [0, primary_super_limit].245juint super_depth() const {246if (!can_be_primary_super()) {247return primary_super_limit();248} else {249juint d = (super_check_offset() - in_bytes(primary_supers_offset())) / sizeof(Klass*);250assert(d < primary_super_limit(), "oob");251assert(_primary_supers[d] == this, "proper init");252return d;253}254}255256// store an oop into a field of a Klass257void klass_oop_store(oop* p, oop v);258void klass_oop_store(volatile oop* p, oop v);259260// java mirror261oop java_mirror() const { return _java_mirror; }262void set_java_mirror(oop m) { klass_oop_store(&_java_mirror, m); }263264// modifier flags265jint modifier_flags() const { return _modifier_flags; }266void set_modifier_flags(jint flags) { _modifier_flags = flags; }267268// size helper269int layout_helper() const { return _layout_helper; }270void set_layout_helper(int lh) { _layout_helper = lh; }271272// Note: for instances layout_helper() may include padding.273// Use InstanceKlass::contains_field_offset to classify field offsets.274275// sub/superklass links276InstanceKlass* superklass() const;277Klass* subklass() const;278Klass* next_sibling() const;279void append_to_sibling_list(); // add newly created receiver to superklass' subklass list280281void set_next_link(Klass* k) { _next_link = k; }282Klass* next_link() const { return _next_link; } // The next klass defined by the class loader.283284// class loader data285ClassLoaderData* class_loader_data() const { return _class_loader_data; }286void set_class_loader_data(ClassLoaderData* loader_data) { _class_loader_data = loader_data; }287288// The Klasses are not placed in the Heap, so the Card Table or289// the Mod Union Table can't be used to mark when klasses have modified oops.290// The CT and MUT bits saves this information for the individual Klasses.291void record_modified_oops() { _modified_oops = 1; }292void clear_modified_oops() { _modified_oops = 0; }293bool has_modified_oops() { return _modified_oops == 1; }294295void accumulate_modified_oops() { if (has_modified_oops()) _accumulated_modified_oops = 1; }296void clear_accumulated_modified_oops() { _accumulated_modified_oops = 0; }297bool has_accumulated_modified_oops() { return _accumulated_modified_oops == 1; }298299int shared_classpath_index() const {300return _shared_class_path_index;301};302303void set_shared_classpath_index(int index) {304_shared_class_path_index = index;305};306307308protected: // internal accessors309Klass* subklass_oop() const { return _subklass; }310Klass* next_sibling_oop() const { return _next_sibling; }311void set_subklass(Klass* s);312void set_next_sibling(Klass* s);313314public:315316// Compiler support317static ByteSize super_offset() { return in_ByteSize(offset_of(Klass, _super)); }318static ByteSize super_check_offset_offset() { return in_ByteSize(offset_of(Klass, _super_check_offset)); }319static ByteSize primary_supers_offset() { return in_ByteSize(offset_of(Klass, _primary_supers)); }320static ByteSize secondary_super_cache_offset() { return in_ByteSize(offset_of(Klass, _secondary_super_cache)); }321static ByteSize secondary_supers_offset() { return in_ByteSize(offset_of(Klass, _secondary_supers)); }322static ByteSize java_mirror_offset() { return in_ByteSize(offset_of(Klass, _java_mirror)); }323static ByteSize modifier_flags_offset() { return in_ByteSize(offset_of(Klass, _modifier_flags)); }324static ByteSize layout_helper_offset() { return in_ByteSize(offset_of(Klass, _layout_helper)); }325static ByteSize access_flags_offset() { return in_ByteSize(offset_of(Klass, _access_flags)); }326327// Unpacking layout_helper:328enum {329_lh_neutral_value = 0, // neutral non-array non-instance value330_lh_instance_slow_path_bit = 0x01,331_lh_log2_element_size_shift = BitsPerByte*0,332_lh_log2_element_size_mask = BitsPerLong-1,333_lh_element_type_shift = BitsPerByte*1,334_lh_element_type_mask = right_n_bits(BitsPerByte), // shifted mask335_lh_header_size_shift = BitsPerByte*2,336_lh_header_size_mask = right_n_bits(BitsPerByte), // shifted mask337_lh_array_tag_bits = 2,338_lh_array_tag_shift = BitsPerInt - _lh_array_tag_bits,339_lh_array_tag_obj_value = ~0x01 // 0x80000000 >> 30340};341342static const unsigned int _lh_array_tag_type_value = 0Xffffffff; // ~0x00, // 0xC0000000 >> 30343344static int layout_helper_size_in_bytes(jint lh) {345assert(lh > (jint)_lh_neutral_value, "must be instance");346return (int) lh & ~_lh_instance_slow_path_bit;347}348static bool layout_helper_needs_slow_path(jint lh) {349assert(lh > (jint)_lh_neutral_value, "must be instance");350return (lh & _lh_instance_slow_path_bit) != 0;351}352static bool layout_helper_is_instance(jint lh) {353return (jint)lh > (jint)_lh_neutral_value;354}355static bool layout_helper_is_array(jint lh) {356return (jint)lh < (jint)_lh_neutral_value;357}358static bool layout_helper_is_typeArray(jint lh) {359// _lh_array_tag_type_value == (lh >> _lh_array_tag_shift);360return (juint)lh >= (juint)(_lh_array_tag_type_value << _lh_array_tag_shift);361}362static bool layout_helper_is_objArray(jint lh) {363// _lh_array_tag_obj_value == (lh >> _lh_array_tag_shift);364return (jint)lh < (jint)(_lh_array_tag_type_value << _lh_array_tag_shift);365}366static int layout_helper_header_size(jint lh) {367assert(lh < (jint)_lh_neutral_value, "must be array");368int hsize = (lh >> _lh_header_size_shift) & _lh_header_size_mask;369assert(hsize > 0 && hsize < (int)sizeof(oopDesc)*3, "sanity");370return hsize;371}372static BasicType layout_helper_element_type(jint lh) {373assert(lh < (jint)_lh_neutral_value, "must be array");374int btvalue = (lh >> _lh_element_type_shift) & _lh_element_type_mask;375assert(btvalue >= T_BOOLEAN && btvalue <= T_OBJECT, "sanity");376return (BasicType) btvalue;377}378379// Want a pattern to quickly diff against layout header in register380// find something less clever!381static int layout_helper_boolean_diffbit() {382jint zlh = array_layout_helper(T_BOOLEAN);383jint blh = array_layout_helper(T_BYTE);384assert(zlh != blh, "array layout helpers must differ");385int diffbit = 1;386while ((diffbit & (zlh ^ blh)) == 0 && (diffbit & zlh) == 0) {387diffbit <<= 1;388assert(diffbit != 0, "make sure T_BOOLEAN has a different bit than T_BYTE");389}390return diffbit;391}392393static int layout_helper_log2_element_size(jint lh) {394assert(lh < (jint)_lh_neutral_value, "must be array");395int l2esz = (lh >> _lh_log2_element_size_shift) & _lh_log2_element_size_mask;396assert(l2esz <= LogBitsPerLong,397err_msg("sanity. l2esz: 0x%x for lh: 0x%x", (uint)l2esz, (uint)lh));398return l2esz;399}400static jint array_layout_helper(jint tag, int hsize, BasicType etype, int log2_esize) {401return (tag << _lh_array_tag_shift)402| (hsize << _lh_header_size_shift)403| ((int)etype << _lh_element_type_shift)404| (log2_esize << _lh_log2_element_size_shift);405}406static jint instance_layout_helper(jint size, bool slow_path_flag) {407return (size << LogHeapWordSize)408| (slow_path_flag ? _lh_instance_slow_path_bit : 0);409}410static int layout_helper_to_size_helper(jint lh) {411assert(lh > (jint)_lh_neutral_value, "must be instance");412// Note that the following expression discards _lh_instance_slow_path_bit.413return lh >> LogHeapWordSize;414}415// Out-of-line version computes everything based on the etype:416static jint array_layout_helper(BasicType etype);417418// What is the maximum number of primary superclasses any klass can have?419#ifdef PRODUCT420static juint primary_super_limit() { return _primary_super_limit; }421#else422static juint primary_super_limit() {423assert(FastSuperclassLimit <= _primary_super_limit, "parameter oob");424return FastSuperclassLimit;425}426#endif427428// vtables429virtual klassVtable* vtable() const { return NULL; }430virtual int vtable_length() const { return 0; }431432// subclass check433bool is_subclass_of(const Klass* k) const;434// subtype check: true if is_subclass_of, or if k is interface and receiver implements it435bool is_subtype_of(Klass* k) const {436juint off = k->super_check_offset();437Klass* sup = *(Klass**)( (address)this + off );438const juint secondary_offset = in_bytes(secondary_super_cache_offset());439if (sup == k) {440return true;441} else if (off != secondary_offset) {442return false;443} else {444return search_secondary_supers(k);445}446}447bool search_secondary_supers(Klass* k) const;448449// Find LCA in class hierarchy450Klass *LCA( Klass *k );451452// Check whether reflection/jni/jvm code is allowed to instantiate this class;453// if not, throw either an Error or an Exception.454virtual void check_valid_for_instantiation(bool throwError, TRAPS);455456// array copying457virtual void copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS);458459// tells if the class should be initialized460virtual bool should_be_initialized() const { return false; }461// initializes the klass462virtual void initialize(TRAPS);463// lookup operation for MethodLookupCache464friend class MethodLookupCache;465virtual Klass* find_field(Symbol* name, Symbol* signature, fieldDescriptor* fd) const;466virtual Method* uncached_lookup_method(Symbol* name, Symbol* signature, OverpassLookupMode overpass_mode) const;467public:468Method* lookup_method(Symbol* name, Symbol* signature) const {469return uncached_lookup_method(name, signature, find_overpass);470}471472// array class with specific rank473Klass* array_klass(int rank, TRAPS) { return array_klass_impl(false, rank, THREAD); }474475// array class with this klass as element type476Klass* array_klass(TRAPS) { return array_klass_impl(false, THREAD); }477478// These will return NULL instead of allocating on the heap:479// NB: these can block for a mutex, like other functions with TRAPS arg.480Klass* array_klass_or_null(int rank);481Klass* array_klass_or_null();482483virtual oop protection_domain() const = 0;484485oop class_loader() const;486487virtual oop klass_holder() const { return class_loader(); }488489protected:490virtual Klass* array_klass_impl(bool or_null, int rank, TRAPS);491virtual Klass* array_klass_impl(bool or_null, TRAPS);492493public:494// CDS support - remove and restore oops from metadata. Oops are not shared.495virtual void remove_unshareable_info();496virtual void restore_unshareable_info(ClassLoaderData* loader_data, Handle protection_domain, TRAPS);497498protected:499// computes the subtype relationship500virtual bool compute_is_subtype_of(Klass* k);501public:502// subclass accessor (here for convenience; undefined for non-klass objects)503virtual bool is_leaf_class() const { fatal("not a class"); return false; }504public:505// ALL FUNCTIONS BELOW THIS POINT ARE DISPATCHED FROM AN OOP506// These functions describe behavior for the oop not the KLASS.507508// actual oop size of obj in memory509virtual int oop_size(oop obj) const = 0;510511// Size of klass in word size.512virtual int size() const = 0;513#if INCLUDE_SERVICES514virtual void collect_statistics(KlassSizeStats *sz) const;515#endif516517// Returns the Java name for a class (Resource allocated)518// For arrays, this returns the name of the element with a leading '['.519// For classes, this returns the name with the package separators520// turned into '.'s.521const char* external_name() const;522// Returns the name for a class (Resource allocated) as the class523// would appear in a signature.524// For arrays, this returns the name of the element with a leading '['.525// For classes, this returns the name with a leading 'L' and a trailing ';'526// and the package separators as '/'.527virtual const char* signature_name() const;528529// garbage collection support530virtual void oop_follow_contents(oop obj) = 0;531virtual int oop_adjust_pointers(oop obj) = 0;532533// Parallel Scavenge and Parallel Old534PARALLEL_GC_DECLS_PV535536// type testing operations537protected:538virtual bool oop_is_instance_slow() const { return false; }539virtual bool oop_is_array_slow() const { return false; }540virtual bool oop_is_objArray_slow() const { return false; }541virtual bool oop_is_typeArray_slow() const { return false; }542public:543virtual bool oop_is_instanceClassLoader() const { return false; }544virtual bool oop_is_instanceMirror() const { return false; }545virtual bool oop_is_instanceRef() const { return false; }546547// Fast non-virtual versions548#ifndef ASSERT549#define assert_same_query(xval, xcheck) xval550#else551private:552static bool assert_same_query(bool xval, bool xslow) {553assert(xval == xslow, "slow and fast queries agree");554return xval;555}556public:557#endif558inline bool oop_is_instance() const { return assert_same_query(559layout_helper_is_instance(layout_helper()),560oop_is_instance_slow()); }561inline bool oop_is_array() const { return assert_same_query(562layout_helper_is_array(layout_helper()),563oop_is_array_slow()); }564inline bool oop_is_objArray() const { return assert_same_query(565layout_helper_is_objArray(layout_helper()),566oop_is_objArray_slow()); }567inline bool oop_is_typeArray() const { return assert_same_query(568layout_helper_is_typeArray(layout_helper()),569oop_is_typeArray_slow()); }570#undef assert_same_query571572// Access flags573AccessFlags access_flags() const { return _access_flags; }574void set_access_flags(AccessFlags flags) { _access_flags = flags; }575576bool is_public() const { return _access_flags.is_public(); }577bool is_final() const { return _access_flags.is_final(); }578bool is_interface() const { return _access_flags.is_interface(); }579bool is_abstract() const { return _access_flags.is_abstract(); }580bool is_super() const { return _access_flags.is_super(); }581bool is_synthetic() const { return _access_flags.is_synthetic(); }582void set_is_synthetic() { _access_flags.set_is_synthetic(); }583bool has_finalizer() const { return _access_flags.has_finalizer(); }584bool has_final_method() const { return _access_flags.has_final_method(); }585void set_has_finalizer() { _access_flags.set_has_finalizer(); }586void set_has_final_method() { _access_flags.set_has_final_method(); }587bool is_cloneable() const;588void set_is_cloneable();589bool has_vanilla_constructor() const { return _access_flags.has_vanilla_constructor(); }590void set_has_vanilla_constructor() { _access_flags.set_has_vanilla_constructor(); }591bool has_miranda_methods () const { return access_flags().has_miranda_methods(); }592void set_has_miranda_methods() { _access_flags.set_has_miranda_methods(); }593594// Biased locking support595// Note: the prototype header is always set up to be at least the596// prototype markOop. If biased locking is enabled it may further be597// biasable and have an epoch.598markOop prototype_header() const { return _prototype_header; }599// NOTE: once instances of this klass are floating around in the600// system, this header must only be updated at a safepoint.601// NOTE 2: currently we only ever set the prototype header to the602// biasable prototype for instanceKlasses. There is no technical603// reason why it could not be done for arrayKlasses aside from604// wanting to reduce the initial scope of this optimization. There605// are potential problems in setting the bias pattern for606// JVM-internal oops.607inline void set_prototype_header(markOop header);608static ByteSize prototype_header_offset() { return in_ByteSize(offset_of(Klass, _prototype_header)); }609610int biased_lock_revocation_count() const { return (int) _biased_lock_revocation_count; }611// Atomically increments biased_lock_revocation_count and returns updated value612int atomic_incr_biased_lock_revocation_count();613void set_biased_lock_revocation_count(int val) { _biased_lock_revocation_count = (jint) val; }614jlong last_biased_lock_bulk_revocation_time() { return _last_biased_lock_bulk_revocation_time; }615void set_last_biased_lock_bulk_revocation_time(jlong cur_time) { _last_biased_lock_bulk_revocation_time = cur_time; }616617JFR_ONLY(DEFINE_TRACE_ID_METHODS;)618619// garbage collection support620virtual void oops_do(OopClosure* cl);621622// Iff the class loader (or mirror for anonymous classes) is alive the623// Klass is considered alive.624// The is_alive closure passed in depends on the Garbage Collector used.625bool is_loader_alive(BoolObjectClosure* is_alive);626627static void clean_weak_klass_links(BoolObjectClosure* is_alive, bool clean_alive_klasses = true);628static void clean_subklass_tree(BoolObjectClosure* is_alive) {629clean_weak_klass_links(is_alive, false /* clean_alive_klasses */);630}631632// iterators633virtual int oop_oop_iterate(oop obj, ExtendedOopClosure* blk) = 0;634virtual int oop_oop_iterate_v(oop obj, ExtendedOopClosure* blk) {635return oop_oop_iterate(obj, blk);636}637638#if INCLUDE_ALL_GCS639// In case we don't have a specialized backward scanner use forward640// iteration.641virtual int oop_oop_iterate_backwards_v(oop obj, ExtendedOopClosure* blk) {642return oop_oop_iterate_v(obj, blk);643}644#endif // INCLUDE_ALL_GCS645646// Iterates "blk" over all the oops in "obj" (of type "this") within "mr".647// (I don't see why the _m should be required, but without it the Solaris648// C++ gives warning messages about overridings of the "oop_oop_iterate"649// defined above "hiding" this virtual function. (DLD, 6/20/00)) */650virtual int oop_oop_iterate_m(oop obj, ExtendedOopClosure* blk, MemRegion mr) = 0;651virtual int oop_oop_iterate_v_m(oop obj, ExtendedOopClosure* blk, MemRegion mr) {652return oop_oop_iterate_m(obj, blk, mr);653}654655// Versions of the above iterators specialized to particular subtypes656// of OopClosure, to avoid closure virtual calls.657#define Klass_OOP_OOP_ITERATE_DECL(OopClosureType, nv_suffix) \658virtual int oop_oop_iterate##nv_suffix(oop obj, OopClosureType* blk) { \659/* Default implementation reverts to general version. */ \660return oop_oop_iterate(obj, blk); \661} \662\663/* Iterates "blk" over all the oops in "obj" (of type "this") within "mr". \664(I don't see why the _m should be required, but without it the Solaris \665C++ gives warning messages about overridings of the "oop_oop_iterate" \666defined above "hiding" this virtual function. (DLD, 6/20/00)) */ \667virtual int oop_oop_iterate##nv_suffix##_m(oop obj, \668OopClosureType* blk, \669MemRegion mr) { \670return oop_oop_iterate_m(obj, blk, mr); \671}672673SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(Klass_OOP_OOP_ITERATE_DECL)674SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(Klass_OOP_OOP_ITERATE_DECL)675676#if INCLUDE_ALL_GCS677#define Klass_OOP_OOP_ITERATE_BACKWARDS_DECL(OopClosureType, nv_suffix) \678virtual int oop_oop_iterate_backwards##nv_suffix(oop obj, \679OopClosureType* blk) { \680/* Default implementation reverts to general version. */ \681return oop_oop_iterate_backwards_v(obj, blk); \682}683684SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(Klass_OOP_OOP_ITERATE_BACKWARDS_DECL)685SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(Klass_OOP_OOP_ITERATE_BACKWARDS_DECL)686#endif // INCLUDE_ALL_GCS687688virtual void array_klasses_do(void f(Klass* k)) {}689690// Return self, except for abstract classes with exactly 1691// implementor. Then return the 1 concrete implementation.692Klass *up_cast_abstract();693694// klass name695Symbol* name() const { return _name; }696void set_name(Symbol* n);697698public:699// jvm support700virtual jint compute_modifier_flags(TRAPS) const;701702// JVMTI support703virtual jint jvmti_class_status() const;704705// Printing706virtual void print_on(outputStream* st) const;707708virtual void oop_print_value_on(oop obj, outputStream* st);709virtual void oop_print_on (oop obj, outputStream* st);710711virtual const char* internal_name() const = 0;712713// Verification714virtual void verify_on(outputStream* st);715void verify() { verify_on(tty); }716717#ifndef PRODUCT718bool verify_vtable_index(int index);719bool verify_itable_index(int index);720#endif721722virtual void oop_verify_on(oop obj, outputStream* st);723724static bool is_null(narrowKlass obj);725static bool is_null(Klass* obj);726727// klass encoding for klass pointer in objects.728static narrowKlass encode_klass_not_null(Klass* v);729static narrowKlass encode_klass(Klass* v);730731static Klass* decode_klass_not_null(narrowKlass v);732static Klass* decode_klass(narrowKlass v);733734private:735// barriers used by klass_oop_store736void klass_update_barrier_set(oop v);737void klass_update_barrier_set_pre(oop* p, oop v);738};739740#endif // SHARE_VM_OOPS_KLASS_HPP741742743