2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2016-03-01 23:46:09 +01:00
|
|
|
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#ifndef SHARE_VM_OOPS_INSTANCEKLASS_HPP
|
|
|
|
#define SHARE_VM_OOPS_INSTANCEKLASS_HPP
|
|
|
|
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
#include "classfile/classLoader.hpp"
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
#include "classfile/classLoaderData.hpp"
|
2016-04-26 09:08:12 -04:00
|
|
|
#include "classfile/moduleEntry.hpp"
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
#include "classfile/packageEntry.hpp"
|
2015-05-13 15:16:06 +02:00
|
|
|
#include "gc/shared/specialized_oop_closures.hpp"
|
2016-02-03 11:40:30 -05:00
|
|
|
#include "logging/logLevel.hpp"
|
2013-06-10 11:30:51 +02:00
|
|
|
#include "memory/referenceType.hpp"
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
#include "oops/annotations.hpp"
|
|
|
|
#include "oops/constMethod.hpp"
|
2011-09-10 17:29:02 -07:00
|
|
|
#include "oops/fieldInfo.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "oops/instanceOop.hpp"
|
|
|
|
#include "oops/klassVtable.hpp"
|
|
|
|
#include "runtime/handles.hpp"
|
|
|
|
#include "runtime/os.hpp"
|
2015-05-13 15:16:06 +02:00
|
|
|
#include "trace/traceMacros.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "utilities/accessFlags.hpp"
|
|
|
|
#include "utilities/bitMap.inline.hpp"
|
2013-01-23 13:02:39 -05:00
|
|
|
#include "utilities/macros.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// An InstanceKlass is the VM level representation of a Java class.
|
2007-12-01 00:00:00 +00:00
|
|
|
// It contains all information needed for at class at execution runtime.
|
|
|
|
|
2014-03-26 21:47:45 -04:00
|
|
|
// InstanceKlass embedded field layout (after declared fields):
|
2007-12-01 00:00:00 +00:00
|
|
|
// [EMBEDDED Java vtable ] size in words = vtable_len
|
|
|
|
// [EMBEDDED nonstatic oop-map blocks] size in words = nonstatic_oop_map_size
|
2012-03-29 22:18:56 -04:00
|
|
|
// The embedded nonstatic oop-map blocks are short pairs (offset, length)
|
|
|
|
// indicating where oops are located in instances of this klass.
|
|
|
|
// [EMBEDDED implementor of the interface] only exist for interface
|
2012-05-02 13:21:36 -04:00
|
|
|
// [EMBEDDED host klass ] only exist for an anonymous class (JSR 292 enabled)
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
// forward declaration for class -- see below for definition
|
2016-04-21 20:49:11 -07:00
|
|
|
#if INCLUDE_JVMTI
|
2007-12-01 00:00:00 +00:00
|
|
|
class BreakpointInfo;
|
2016-04-21 20:49:11 -07:00
|
|
|
#endif
|
2015-12-08 20:04:03 +01:00
|
|
|
class ClassFileParser;
|
2016-02-19 20:40:20 +03:00
|
|
|
class KlassDepChange;
|
2015-11-18 03:03:43 +03:00
|
|
|
class DependencyContext;
|
|
|
|
class fieldDescriptor;
|
|
|
|
class jniIdMapBase;
|
|
|
|
class JNIid;
|
2007-12-01 00:00:00 +00:00
|
|
|
class JvmtiCachedClassFieldMap;
|
2013-04-20 04:07:08 -07:00
|
|
|
class MemberNameTable;
|
2015-11-18 03:03:43 +03:00
|
|
|
class SuperTypeClosure;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// This is used in iterators below.
|
|
|
|
class FieldClosure: public StackObj {
|
|
|
|
public:
|
|
|
|
virtual void do_field(fieldDescriptor* fd) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef PRODUCT
|
|
|
|
// Print fields.
|
|
|
|
// If "obj" argument to constructor is NULL, prints static fields, otherwise prints non-static fields.
|
|
|
|
class FieldPrinter: public FieldClosure {
|
|
|
|
oop _obj;
|
|
|
|
outputStream* _st;
|
|
|
|
public:
|
|
|
|
FieldPrinter(outputStream* st, oop obj = NULL) : _obj(obj), _st(st) {}
|
|
|
|
void do_field(fieldDescriptor* fd);
|
|
|
|
};
|
|
|
|
#endif // !PRODUCT
|
|
|
|
|
2009-08-11 15:37:23 -07:00
|
|
|
// ValueObjs embedded in klass. Describes where oops are located in instances of
|
|
|
|
// this klass.
|
|
|
|
class OopMapBlock VALUE_OBJ_CLASS_SPEC {
|
|
|
|
public:
|
|
|
|
// Byte offset of the first oop mapped by this block.
|
2009-08-13 16:22:45 -07:00
|
|
|
int offset() const { return _offset; }
|
|
|
|
void set_offset(int offset) { _offset = offset; }
|
2009-08-11 15:37:23 -07:00
|
|
|
|
|
|
|
// Number of oops in this block.
|
2009-08-13 16:22:45 -07:00
|
|
|
uint count() const { return _count; }
|
|
|
|
void set_count(uint count) { _count = count; }
|
2009-08-11 15:37:23 -07:00
|
|
|
|
2016-01-30 11:02:29 -05:00
|
|
|
// sizeof(OopMapBlock) in words.
|
2009-08-11 15:37:23 -07:00
|
|
|
static const int size_in_words() {
|
2016-01-30 11:02:29 -05:00
|
|
|
return align_size_up(int(sizeof(OopMapBlock)), wordSize) >>
|
|
|
|
LogBytesPerWord;
|
2009-08-11 15:37:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2009-08-13 16:22:45 -07:00
|
|
|
int _offset;
|
|
|
|
uint _count;
|
2009-08-11 15:37:23 -07:00
|
|
|
};
|
|
|
|
|
2013-07-17 18:06:29 -04:00
|
|
|
struct JvmtiCachedClassFileData;
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
class InstanceKlass: public Klass {
|
2007-12-01 00:00:00 +00:00
|
|
|
friend class VMStructs;
|
2015-12-14 17:02:02 -10:00
|
|
|
friend class JVMCIVMStructs;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
friend class ClassFileParser;
|
2012-11-12 14:03:53 -08:00
|
|
|
friend class CompileReplay;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
|
|
|
protected:
|
2015-12-08 20:04:03 +01:00
|
|
|
InstanceKlass(const ClassFileParser& parser, unsigned kind);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2015-12-08 20:04:03 +01:00
|
|
|
public:
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
InstanceKlass() { assert(DumpSharedSpaces || UseSharedSpaces, "only for CDS"); }
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// See "The Java Virtual Machine Specification" section 2.16.2-5 for a detailed description
|
|
|
|
// of the class loading & initialization procedure, and the use of the states.
|
|
|
|
enum ClassState {
|
|
|
|
allocated, // allocated (but not yet linked)
|
|
|
|
loaded, // loaded and inserted in class hierarchy (but not linked yet)
|
|
|
|
linked, // successfully linked/verified (but not initialized yet)
|
|
|
|
being_initialized, // currently running class initializer
|
|
|
|
fully_initialized, // initialized (successfull final state)
|
|
|
|
initialization_error // error happened during initialization
|
|
|
|
};
|
|
|
|
|
2013-01-08 14:04:25 -05:00
|
|
|
static int number_of_instance_classes() { return _total_instanceKlass_count; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
static volatile int _total_instanceKlass_count;
|
2015-12-08 20:04:03 +01:00
|
|
|
static InstanceKlass* allocate_instance_klass(const ClassFileParser& parser, TRAPS);
|
2013-01-08 14:04:25 -05:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
protected:
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// Annotations for this class
|
|
|
|
Annotations* _annotations;
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
// Package this class is defined in
|
|
|
|
PackageEntry* _package_entry;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// Array classes holding elements of this class.
|
|
|
|
Klass* _array_klasses;
|
|
|
|
// Constant pool for this class.
|
|
|
|
ConstantPool* _constants;
|
2012-03-13 13:50:48 -04:00
|
|
|
// The InnerClasses attribute and EnclosingMethod attribute. The
|
|
|
|
// _inner_classes is an array of shorts. If the class has InnerClasses
|
|
|
|
// attribute, then the _inner_classes array begins with 4-tuples of shorts
|
|
|
|
// [inner_class_info_index, outer_class_info_index,
|
|
|
|
// inner_name_index, inner_class_access_flags] for the InnerClasses
|
|
|
|
// attribute. If the EnclosingMethod attribute exists, it occupies the
|
|
|
|
// last two shorts [class_index, method_index] of the array. If only
|
|
|
|
// the InnerClasses attribute exists, the _inner_classes array length is
|
|
|
|
// number_of_inner_classes * 4. If the class has both InnerClasses
|
|
|
|
// and EnclosingMethod attributes the _inner_classes array length is
|
|
|
|
// number_of_inner_classes * 4 + enclosing_method_attribute_size.
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Array<jushort>* _inner_classes;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
// the source debug extension for this klass, NULL if not specified.
|
2012-07-09 01:28:37 -07:00
|
|
|
// Specified as UTF-8 string without terminating zero byte in the classfile,
|
|
|
|
// it is stored in the instanceklass as a NULL-terminated UTF-8 string
|
2015-12-08 20:04:03 +01:00
|
|
|
const char* _source_debug_extension;
|
2011-01-27 16:11:27 -08:00
|
|
|
// Array name derived from this class which needs unreferencing
|
|
|
|
// if this class is unloaded.
|
|
|
|
Symbol* _array_name;
|
|
|
|
|
2008-05-21 16:31:35 -07:00
|
|
|
// Number of heapOopSize words used by non-static fields in this klass
|
|
|
|
// (including inherited fields but after header_size()).
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
int _nonstatic_field_size;
|
|
|
|
int _static_field_size; // number words used by static fields (oop and non-oop) in this klass
|
2013-08-19 14:59:54 -04:00
|
|
|
// Constant pool index to the utf8 entry of the Generic signature,
|
|
|
|
// or 0 if none.
|
|
|
|
u2 _generic_signature_index;
|
|
|
|
// Constant pool index to the utf8 entry for the name of source file
|
|
|
|
// containing this klass, 0 if not specified.
|
|
|
|
u2 _source_file_name_index;
|
2011-12-28 12:15:57 -05:00
|
|
|
u2 _static_oop_field_count;// number of static oop fields in this klass
|
|
|
|
u2 _java_fields_count; // The number of declared Java fields
|
2009-08-11 15:37:23 -07:00
|
|
|
int _nonstatic_oop_map_size;// size in words of nonstatic oop map blocks
|
2011-11-17 12:53:59 -05:00
|
|
|
|
2015-12-01 10:35:49 +01:00
|
|
|
int _itable_len; // length of Java itable (in words)
|
2013-01-11 16:55:07 -05:00
|
|
|
// _is_marked_dependent can be set concurrently, thus cannot be part of the
|
|
|
|
// _misc_flags.
|
2012-01-11 19:54:34 -08:00
|
|
|
bool _is_marked_dependent; // used for marking during flushing and deoptimization
|
2016-05-17 08:51:05 -04:00
|
|
|
bool _is_being_redefined; // used for locking redefinition
|
2013-01-11 16:55:07 -05:00
|
|
|
|
2015-10-09 14:08:15 -04:00
|
|
|
// The low two bits of _misc_flags contains the kind field.
|
|
|
|
// This can be used to quickly discriminate among the four kinds of
|
|
|
|
// InstanceKlass.
|
|
|
|
|
|
|
|
static const unsigned _misc_kind_field_size = 2;
|
|
|
|
static const unsigned _misc_kind_field_pos = 0;
|
|
|
|
static const unsigned _misc_kind_field_mask = (1u << _misc_kind_field_size) - 1u;
|
|
|
|
|
|
|
|
static const unsigned _misc_kind_other = 0; // concrete InstanceKlass
|
|
|
|
static const unsigned _misc_kind_reference = 1; // InstanceRefKlass
|
|
|
|
static const unsigned _misc_kind_class_loader = 2; // InstanceClassLoaderKlass
|
|
|
|
static const unsigned _misc_kind_mirror = 3; // InstanceMirrorKlass
|
|
|
|
|
|
|
|
// Start after _misc_kind field.
|
2012-05-02 13:21:36 -04:00
|
|
|
enum {
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
_misc_rewritten = 1 << 2, // methods rewritten.
|
|
|
|
_misc_has_nonstatic_fields = 1 << 3, // for sizing with UseCompressedOops
|
|
|
|
_misc_should_verify_class = 1 << 4, // allow caching of preverification
|
|
|
|
_misc_is_anonymous = 1 << 5, // has embedded _host_klass field
|
|
|
|
_misc_is_contended = 1 << 6, // marked with contended annotation
|
|
|
|
_misc_has_default_methods = 1 << 7, // class/superclass/implemented interfaces has default methods
|
|
|
|
_misc_declares_default_methods = 1 << 8, // directly declares default methods (any access)
|
|
|
|
_misc_has_been_redefined = 1 << 9, // class has been redefined
|
|
|
|
_misc_is_scratch_class = 1 << 10, // class is the redefined scratch class
|
|
|
|
_misc_is_shared_boot_class = 1 << 11, // defining class loader is boot class loader
|
|
|
|
_misc_is_shared_platform_class = 1 << 12, // defining class loader is platform class loader
|
|
|
|
_misc_is_shared_app_class = 1 << 13 // defining class loader is app class loader
|
2012-05-02 13:21:36 -04:00
|
|
|
};
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
u2 loader_type_bits() {
|
|
|
|
return _misc_is_shared_boot_class|_misc_is_shared_platform_class|_misc_is_shared_app_class;
|
|
|
|
}
|
2012-05-02 13:21:36 -04:00
|
|
|
u2 _misc_flags;
|
2007-12-01 00:00:00 +00:00
|
|
|
u2 _minor_version; // minor version number of class file
|
|
|
|
u2 _major_version; // major version number of class file
|
|
|
|
Thread* _init_thread; // Pointer to current thread doing initialization (to handle recusive initialization)
|
|
|
|
OopMapCache* volatile _oop_map_cache; // OopMapCache for all methods in the klass (allocated lazily)
|
2013-04-20 04:07:08 -07:00
|
|
|
MemberNameTable* _member_names; // Member names
|
2007-12-01 00:00:00 +00:00
|
|
|
JNIid* _jni_ids; // First JNI identifier for static fields in this class
|
|
|
|
jmethodID* _methods_jmethod_ids; // jmethodIDs corresponding to method_idnum, or NULL if none
|
2015-11-18 03:03:43 +03:00
|
|
|
intptr_t _dep_context; // packed DependencyContext structure
|
2007-12-01 00:00:00 +00:00
|
|
|
nmethod* _osr_nmethods_head; // Head of list of on-stack replacement nmethods for this class
|
2016-04-21 20:49:11 -07:00
|
|
|
#if INCLUDE_JVMTI
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
BreakpointInfo* _breakpoints; // bpt lists, managed by Method*
|
2014-09-03 19:13:18 -04:00
|
|
|
// Linked instanceKlasses of previous versions
|
|
|
|
InstanceKlass* _previous_versions;
|
2007-12-01 00:00:00 +00:00
|
|
|
// JVMTI fields can be moved to their own structure - see 6315920
|
2013-07-17 18:06:29 -04:00
|
|
|
// JVMTI: cached class file, before retransformable agent modified it in CFLH
|
|
|
|
JvmtiCachedClassFileData* _cached_class_file;
|
2016-04-21 20:49:11 -07:00
|
|
|
#endif
|
2013-01-24 10:57:38 -08:00
|
|
|
|
|
|
|
volatile u2 _idnum_allocated_count; // JNI/JVMTI: increments with the addition of methods, old ids don't change
|
|
|
|
|
|
|
|
// Class states are defined as ClassState (see above).
|
|
|
|
// Place the _init_state here to utilize the unused 2-byte after
|
|
|
|
// _idnum_allocated_count.
|
|
|
|
u1 _init_state; // state of class
|
|
|
|
u1 _reference_type; // reference type
|
|
|
|
|
2016-04-21 20:49:11 -07:00
|
|
|
#if INCLUDE_JVMTI
|
2007-12-01 00:00:00 +00:00
|
|
|
JvmtiCachedClassFieldMap* _jvmti_cached_class_field_map; // JVMTI: used during heap iteration
|
2016-04-21 20:49:11 -07:00
|
|
|
#endif
|
2012-10-11 12:25:42 -04:00
|
|
|
|
2013-03-08 11:47:57 -05:00
|
|
|
NOT_PRODUCT(int _verify_count;) // to avoid redundant verifies
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// Method array.
|
|
|
|
Array<Method*>* _methods;
|
2013-10-07 12:20:28 -04:00
|
|
|
// Default Method Array, concrete methods inherited from interfaces
|
|
|
|
Array<Method*>* _default_methods;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// Interface (Klass*s) this class declares locally to implement.
|
|
|
|
Array<Klass*>* _local_interfaces;
|
|
|
|
// Interface (Klass*s) this class implements transitively.
|
|
|
|
Array<Klass*>* _transitive_interfaces;
|
|
|
|
// Int array containing the original order of method in the class file (for JVMTI).
|
|
|
|
Array<int>* _method_ordering;
|
2013-10-07 12:20:28 -04:00
|
|
|
// Int array containing the vtable_indices for default_methods
|
|
|
|
// offset matches _default_methods offset
|
|
|
|
Array<int>* _default_vtable_indices;
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// Instance and static variable information, starts with 6-tuples of shorts
|
|
|
|
// [access, name index, sig index, initval index, low_offset, high_offset]
|
|
|
|
// for all fields, followed by the generic signature data at the end of
|
|
|
|
// the array. Only fields with generic signature attributes have the generic
|
|
|
|
// signature data set in the array. The fields array looks like following:
|
|
|
|
//
|
|
|
|
// f1: [access, name index, sig index, initial value index, low_offset, high_offset]
|
|
|
|
// f2: [access, name index, sig index, initial value index, low_offset, high_offset]
|
|
|
|
// ...
|
|
|
|
// fn: [access, name index, sig index, initial value index, low_offset, high_offset]
|
|
|
|
// [generic signature index]
|
|
|
|
// [generic signature index]
|
|
|
|
// ...
|
|
|
|
Array<u2>* _fields;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// embedded Java vtable follows here
|
|
|
|
// embedded Java itables follows here
|
|
|
|
// embedded static fields follows here
|
|
|
|
// embedded nonstatic oop-map blocks follows here
|
2012-03-29 22:18:56 -04:00
|
|
|
// embedded implementor of this interface follows here
|
|
|
|
// The embedded implementor only exists if the current klass is an
|
|
|
|
// iterface. The possible values of the implementor fall into following
|
|
|
|
// three cases:
|
|
|
|
// NULL: no implementor.
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// A Klass* that's not itself: one implementor.
|
2014-02-25 18:16:24 +01:00
|
|
|
// Itself: more than one implementors.
|
2012-05-02 13:21:36 -04:00
|
|
|
// embedded host klass follows here
|
|
|
|
// The embedded host klass only exists in an anonymous class for
|
|
|
|
// dynamic language support (JSR 292 enabled). The host class grants
|
|
|
|
// its access privileges to this class also. The host class is either
|
|
|
|
// named, or a previously loaded anonymous class. A non-anonymous class
|
|
|
|
// or an anonymous class loaded through normal classloading does not
|
|
|
|
// have this embedded field.
|
|
|
|
//
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
friend class SystemDictionary;
|
|
|
|
|
|
|
|
public:
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
u2 loader_type() {
|
|
|
|
return _misc_flags & loader_type_bits();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_shared_boot_class() const {
|
|
|
|
return (_misc_flags & _misc_is_shared_boot_class) != 0;
|
|
|
|
}
|
|
|
|
bool is_shared_platform_class() const {
|
|
|
|
return (_misc_flags & _misc_is_shared_platform_class) != 0;
|
|
|
|
}
|
|
|
|
bool is_shared_app_class() const {
|
|
|
|
return (_misc_flags & _misc_is_shared_app_class) != 0;
|
|
|
|
}
|
|
|
|
|
2016-05-04 17:32:08 -04:00
|
|
|
void set_class_loader_type(s2 loader_type) {
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
assert(( _misc_flags & loader_type_bits()) == 0,
|
|
|
|
"Should only be called once for each class.");
|
|
|
|
switch (loader_type) {
|
|
|
|
case ClassLoader::BOOT_LOADER:
|
|
|
|
_misc_flags |= _misc_is_shared_boot_class;
|
|
|
|
break;
|
|
|
|
case ClassLoader::PLATFORM_LOADER:
|
|
|
|
_misc_flags |= _misc_is_shared_platform_class;
|
|
|
|
break;
|
|
|
|
case ClassLoader::APP_LOADER:
|
|
|
|
_misc_flags |= _misc_is_shared_app_class;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ShouldNotReachHere();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-02 13:21:36 -04:00
|
|
|
bool has_nonstatic_fields() const {
|
|
|
|
return (_misc_flags & _misc_has_nonstatic_fields) != 0;
|
|
|
|
}
|
|
|
|
void set_has_nonstatic_fields(bool b) {
|
|
|
|
if (b) {
|
|
|
|
_misc_flags |= _misc_has_nonstatic_fields;
|
|
|
|
} else {
|
|
|
|
_misc_flags &= ~_misc_has_nonstatic_fields;
|
|
|
|
}
|
|
|
|
}
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// field sizes
|
|
|
|
int nonstatic_field_size() const { return _nonstatic_field_size; }
|
|
|
|
void set_nonstatic_field_size(int size) { _nonstatic_field_size = size; }
|
|
|
|
|
|
|
|
int static_field_size() const { return _static_field_size; }
|
|
|
|
void set_static_field_size(int size) { _static_field_size = size; }
|
|
|
|
|
2011-12-28 12:15:57 -05:00
|
|
|
int static_oop_field_count() const { return (int)_static_oop_field_count; }
|
|
|
|
void set_static_oop_field_count(u2 size) { _static_oop_field_count = size; }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// Java itable
|
|
|
|
int itable_length() const { return _itable_len; }
|
|
|
|
void set_itable_length(int len) { _itable_len = len; }
|
|
|
|
|
|
|
|
// array klasses
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* array_klasses() const { return _array_klasses; }
|
|
|
|
void set_array_klasses(Klass* k) { _array_klasses = k; }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// methods
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Array<Method*>* methods() const { return _methods; }
|
|
|
|
void set_methods(Array<Method*>* a) { _methods = a; }
|
|
|
|
Method* method_with_idnum(int idnum);
|
2015-03-20 02:44:51 -07:00
|
|
|
Method* method_with_orig_idnum(int idnum);
|
|
|
|
Method* method_with_orig_idnum(int idnum, int version);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// method ordering
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Array<int>* method_ordering() const { return _method_ordering; }
|
|
|
|
void set_method_ordering(Array<int>* m) { _method_ordering = m; }
|
2015-12-08 20:04:03 +01:00
|
|
|
void copy_method_ordering(const intArray* m, TRAPS);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-10-07 12:20:28 -04:00
|
|
|
// default_methods
|
|
|
|
Array<Method*>* default_methods() const { return _default_methods; }
|
|
|
|
void set_default_methods(Array<Method*>* a) { _default_methods = a; }
|
|
|
|
|
|
|
|
// default method vtable_indices
|
|
|
|
Array<int>* default_vtable_indices() const { return _default_vtable_indices; }
|
|
|
|
void set_default_vtable_indices(Array<int>* v) { _default_vtable_indices = v; }
|
|
|
|
Array<int>* create_new_default_vtable_indices(int len, TRAPS);
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// interfaces
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Array<Klass*>* local_interfaces() const { return _local_interfaces; }
|
|
|
|
void set_local_interfaces(Array<Klass*>* a) {
|
|
|
|
guarantee(_local_interfaces == NULL || a == NULL, "Just checking");
|
|
|
|
_local_interfaces = a; }
|
2013-03-13 17:34:29 -04:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Array<Klass*>* transitive_interfaces() const { return _transitive_interfaces; }
|
|
|
|
void set_transitive_interfaces(Array<Klass*>* a) {
|
|
|
|
guarantee(_transitive_interfaces == NULL || a == NULL, "Just checking");
|
2013-03-13 17:34:29 -04:00
|
|
|
_transitive_interfaces = a;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2011-09-10 17:29:02 -07:00
|
|
|
private:
|
|
|
|
friend class fieldDescriptor;
|
|
|
|
FieldInfo* field(int index) const { return FieldInfo::from_field_array(_fields, index); }
|
|
|
|
|
|
|
|
public:
|
|
|
|
int field_offset (int index) const { return field(index)->offset(); }
|
|
|
|
int field_access_flags(int index) const { return field(index)->access_flags(); }
|
|
|
|
Symbol* field_name (int index) const { return field(index)->name(constants()); }
|
|
|
|
Symbol* field_signature (int index) const { return field(index)->signature(constants()); }
|
|
|
|
|
|
|
|
// Number of Java declared fields
|
2011-12-28 12:15:57 -05:00
|
|
|
int java_fields_count() const { return (int)_java_fields_count; }
|
2011-09-10 17:29:02 -07:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Array<u2>* fields() const { return _fields; }
|
|
|
|
void set_fields(Array<u2>* f, u2 java_fields_count) {
|
|
|
|
guarantee(_fields == NULL || f == NULL, "Just checking");
|
2013-03-13 17:34:29 -04:00
|
|
|
_fields = f;
|
2011-09-10 17:29:02 -07:00
|
|
|
_java_fields_count = java_fields_count;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// inner classes
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Array<u2>* inner_classes() const { return _inner_classes; }
|
|
|
|
void set_inner_classes(Array<u2>* f) { _inner_classes = f; }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
enum InnerClassAttributeOffset {
|
|
|
|
// From http://mirror.eng/products/jdk/1.1/docs/guide/innerclasses/spec/innerclasses.doc10.html#18814
|
|
|
|
inner_class_inner_class_info_offset = 0,
|
|
|
|
inner_class_outer_class_info_offset = 1,
|
|
|
|
inner_class_inner_name_offset = 2,
|
|
|
|
inner_class_access_flags_offset = 3,
|
|
|
|
inner_class_next_offset = 4
|
|
|
|
};
|
|
|
|
|
2012-03-13 13:50:48 -04:00
|
|
|
enum EnclosingMethodAttributeOffset {
|
|
|
|
enclosing_method_class_index_offset = 0,
|
|
|
|
enclosing_method_method_index_offset = 1,
|
|
|
|
enclosing_method_attribute_size = 2
|
|
|
|
};
|
|
|
|
|
2009-03-18 17:20:57 -04:00
|
|
|
// method override check
|
2015-10-23 16:48:38 -04:00
|
|
|
bool is_override(const methodHandle& super_method, Handle targetclassloader, Symbol* targetclassname, TRAPS);
|
2009-03-18 17:20:57 -04:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// package
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
PackageEntry* package() const { return _package_entry; }
|
|
|
|
ModuleEntry* module() const;
|
|
|
|
bool in_unnamed_package() const { return (_package_entry == NULL); }
|
|
|
|
void set_package(PackageEntry* p) { _package_entry = p; }
|
|
|
|
void set_package(ClassLoaderData* loader_data, TRAPS);
|
2015-12-08 20:04:03 +01:00
|
|
|
bool is_same_class_package(const Klass* class2) const;
|
|
|
|
bool is_same_class_package(oop classloader2, const Symbol* classname2) const;
|
|
|
|
static bool is_same_class_package(oop class_loader1,
|
|
|
|
const Symbol* class_name1,
|
|
|
|
oop class_loader2,
|
|
|
|
const Symbol* class_name2);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2015-04-14 18:03:43 +03:00
|
|
|
// find an enclosing class
|
2015-12-08 20:04:03 +01:00
|
|
|
InstanceKlass* compute_enclosing_class(bool* inner_is_member, TRAPS) const {
|
|
|
|
return compute_enclosing_class_impl(this, inner_is_member, THREAD);
|
2009-03-20 23:19:36 -07:00
|
|
|
}
|
2015-12-08 20:04:03 +01:00
|
|
|
static InstanceKlass* compute_enclosing_class_impl(const InstanceKlass* self,
|
|
|
|
bool* inner_is_member,
|
|
|
|
TRAPS);
|
2015-04-14 18:03:43 +03:00
|
|
|
|
|
|
|
// Find InnerClasses attribute for k and return outer_class_info_index & inner_name_index.
|
|
|
|
static bool find_inner_classes_attr(instanceKlassHandle k,
|
|
|
|
int* ooff, int* noff, TRAPS);
|
2009-03-20 23:19:36 -07:00
|
|
|
|
2016-07-27 08:31:48 -04:00
|
|
|
private:
|
|
|
|
// Check prohibited package ("java/" only loadable by boot or platform loaders)
|
|
|
|
static void check_prohibited_package(Symbol* class_name,
|
|
|
|
Handle class_loader,
|
|
|
|
TRAPS);
|
|
|
|
public:
|
2009-03-20 23:19:36 -07:00
|
|
|
// tell if two classes have the same enclosing class (at package level)
|
2015-12-08 20:04:03 +01:00
|
|
|
bool is_same_package_member(const Klass* class2, TRAPS) const {
|
|
|
|
return is_same_package_member_impl(this, class2, THREAD);
|
2009-03-20 23:19:36 -07:00
|
|
|
}
|
2015-12-08 20:04:03 +01:00
|
|
|
static bool is_same_package_member_impl(const InstanceKlass* self,
|
|
|
|
const Klass* class2,
|
|
|
|
TRAPS);
|
2009-03-20 23:19:36 -07:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// initialization state
|
|
|
|
bool is_loaded() const { return _init_state >= loaded; }
|
|
|
|
bool is_linked() const { return _init_state >= linked; }
|
|
|
|
bool is_initialized() const { return _init_state == fully_initialized; }
|
|
|
|
bool is_not_initialized() const { return _init_state < being_initialized; }
|
|
|
|
bool is_being_initialized() const { return _init_state == being_initialized; }
|
|
|
|
bool is_in_error_state() const { return _init_state == initialization_error; }
|
|
|
|
bool is_reentrant_initialization(Thread *thread) { return thread == _init_thread; }
|
2011-12-06 18:28:51 -05:00
|
|
|
ClassState init_state() { return (ClassState)_init_state; }
|
2012-05-02 13:21:36 -04:00
|
|
|
bool is_rewritten() const { return (_misc_flags & _misc_rewritten) != 0; }
|
2009-09-04 12:53:02 -04:00
|
|
|
|
|
|
|
// defineClass specified verification
|
2012-05-02 13:21:36 -04:00
|
|
|
bool should_verify_class() const {
|
|
|
|
return (_misc_flags & _misc_should_verify_class) != 0;
|
|
|
|
}
|
|
|
|
void set_should_verify_class(bool value) {
|
|
|
|
if (value) {
|
|
|
|
_misc_flags |= _misc_should_verify_class;
|
|
|
|
} else {
|
|
|
|
_misc_flags &= ~_misc_should_verify_class;
|
|
|
|
}
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// marking
|
2012-01-11 19:54:34 -08:00
|
|
|
bool is_marked_dependent() const { return _is_marked_dependent; }
|
|
|
|
void set_is_marked_dependent(bool value) { _is_marked_dependent = value; }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// initialization (virtuals from Klass)
|
|
|
|
bool should_be_initialized() const; // means that initialize should be called
|
|
|
|
void initialize(TRAPS);
|
|
|
|
void link_class(TRAPS);
|
|
|
|
bool link_class_or_fail(TRAPS); // returns false on failure
|
|
|
|
void unlink_class();
|
|
|
|
void rewrite_class(TRAPS);
|
2013-01-02 20:28:09 -05:00
|
|
|
void link_methods(TRAPS);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Method* class_initializer();
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// set the class to initialized if no static initializer is present
|
|
|
|
void eager_initialize(Thread *thread);
|
|
|
|
|
|
|
|
// reference type
|
2012-01-25 17:40:51 -05:00
|
|
|
ReferenceType reference_type() const { return (ReferenceType)_reference_type; }
|
|
|
|
void set_reference_type(ReferenceType t) {
|
|
|
|
assert(t == (u1)t, "overflow");
|
|
|
|
_reference_type = (u1)t;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
static ByteSize reference_type_offset() { return in_ByteSize(offset_of(InstanceKlass, _reference_type)); }
|
2011-04-07 09:53:20 -07:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// find local field, returns true if found
|
2011-01-27 16:11:27 -08:00
|
|
|
bool find_local_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const;
|
2007-12-01 00:00:00 +00:00
|
|
|
// find field in direct superinterfaces, returns the interface in which the field is defined
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* find_interface_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const;
|
2007-12-01 00:00:00 +00:00
|
|
|
// find field according to JVM spec 5.4.3.2, returns the klass in which the field is defined
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* find_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const;
|
2007-12-01 00:00:00 +00:00
|
|
|
// find instance or static fields according to JVM spec 5.4.3.2, returns the klass in which the field is defined
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* find_field(Symbol* name, Symbol* sig, bool is_static, fieldDescriptor* fd) const;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// find a non-static or static field given its offset within the class.
|
|
|
|
bool contains_field_offset(int offset) {
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
return instanceOopDesc::contains_field_offset(offset, nonstatic_field_size());
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool find_local_field_from_offset(int offset, bool is_static, fieldDescriptor* fd) const;
|
|
|
|
bool find_field_from_offset(int offset, bool is_static, fieldDescriptor* fd) const;
|
|
|
|
|
|
|
|
// find a local method (returns NULL if not found)
|
2015-12-08 20:04:03 +01:00
|
|
|
Method* find_method(const Symbol* name, const Symbol* signature) const;
|
|
|
|
static Method* find_method(const Array<Method*>* methods,
|
|
|
|
const Symbol* name,
|
|
|
|
const Symbol* signature);
|
2014-12-01 13:06:20 -05:00
|
|
|
|
|
|
|
// find a local method, but skip static methods
|
2015-12-08 20:04:03 +01:00
|
|
|
Method* find_instance_method(const Symbol* name, const Symbol* signature) const;
|
|
|
|
static Method* find_instance_method(const Array<Method*>* methods,
|
|
|
|
const Symbol* name,
|
|
|
|
const Symbol* signature);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2015-08-06 13:02:15 -04:00
|
|
|
// find a local method (returns NULL if not found)
|
2015-12-08 20:04:03 +01:00
|
|
|
Method* find_local_method(const Symbol* name,
|
|
|
|
const Symbol* signature,
|
|
|
|
OverpassLookupMode overpass_mode,
|
|
|
|
StaticLookupMode static_mode,
|
|
|
|
PrivateLookupMode private_mode) const;
|
2015-08-06 13:02:15 -04:00
|
|
|
|
|
|
|
// find a local method from given methods array (returns NULL if not found)
|
2015-12-08 20:04:03 +01:00
|
|
|
static Method* find_local_method(const Array<Method*>* methods,
|
|
|
|
const Symbol* name,
|
|
|
|
const Symbol* signature,
|
|
|
|
OverpassLookupMode overpass_mode,
|
|
|
|
StaticLookupMode static_mode,
|
|
|
|
PrivateLookupMode private_mode);
|
2014-12-01 13:06:20 -05:00
|
|
|
|
2015-08-06 13:02:15 -04:00
|
|
|
// find a local method index in methods or default_methods (returns -1 if not found)
|
2015-12-08 20:04:03 +01:00
|
|
|
static int find_method_index(const Array<Method*>* methods,
|
|
|
|
const Symbol* name,
|
|
|
|
const Symbol* signature,
|
2015-08-06 13:02:15 -04:00
|
|
|
OverpassLookupMode overpass_mode,
|
|
|
|
StaticLookupMode static_mode,
|
|
|
|
PrivateLookupMode private_mode);
|
2013-10-07 12:20:28 -04:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// lookup operation (returns NULL if not found)
|
2015-12-08 20:04:03 +01:00
|
|
|
Method* uncached_lookup_method(const Symbol* name,
|
|
|
|
const Symbol* signature,
|
|
|
|
OverpassLookupMode overpass_mode) const;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// lookup a method in all the interfaces that this class implements
|
|
|
|
// (returns NULL if not found)
|
2015-01-23 09:54:33 -05:00
|
|
|
Method* lookup_method_in_all_interfaces(Symbol* name, Symbol* signature, DefaultsLookupMode defaults_mode) const;
|
2013-12-16 08:24:33 -05:00
|
|
|
|
2013-10-07 12:20:28 -04:00
|
|
|
// lookup a method in local defaults then in all interfaces
|
|
|
|
// (returns NULL if not found)
|
|
|
|
Method* lookup_method_in_ordered_interfaces(Symbol* name, Symbol* signature) const;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-10-11 12:25:42 -04:00
|
|
|
// Find method indices by name. If a method with the specified name is
|
|
|
|
// found the index to the first method is returned, and 'end' is filled in
|
|
|
|
// with the index of first non-name-matching method. If no method is found
|
|
|
|
// -1 is returned.
|
2015-12-08 20:04:03 +01:00
|
|
|
int find_method_by_name(const Symbol* name, int* end) const;
|
|
|
|
static int find_method_by_name(const Array<Method*>* methods,
|
|
|
|
const Symbol* name, int* end);
|
2012-10-11 12:25:42 -04:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// constant pool
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
ConstantPool* constants() const { return _constants; }
|
|
|
|
void set_constants(ConstantPool* c) { _constants = c; }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// protection domain
|
2013-05-22 14:37:49 -04:00
|
|
|
oop protection_domain() const;
|
|
|
|
|
|
|
|
// signers
|
|
|
|
objArrayOop signers() const;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2008-11-12 22:33:26 -08:00
|
|
|
// host class
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* host_klass() const {
|
|
|
|
Klass** hk = (Klass**)adr_host_klass();
|
2012-05-02 13:21:36 -04:00
|
|
|
if (hk == NULL) {
|
|
|
|
return NULL;
|
|
|
|
} else {
|
2014-02-10 21:29:14 -08:00
|
|
|
assert(*hk != NULL, "host klass should always be set if the address is not null");
|
2012-05-02 13:21:36 -04:00
|
|
|
return *hk;
|
|
|
|
}
|
|
|
|
}
|
2015-12-08 20:04:03 +01:00
|
|
|
void set_host_klass(const Klass* host) {
|
2012-05-02 13:21:36 -04:00
|
|
|
assert(is_anonymous(), "not anonymous");
|
2015-12-08 20:04:03 +01:00
|
|
|
const Klass** addr = (const Klass**)adr_host_klass();
|
2012-05-02 13:21:36 -04:00
|
|
|
assert(addr != NULL, "no reversed space");
|
2013-03-05 18:03:36 -08:00
|
|
|
if (addr != NULL) {
|
|
|
|
*addr = host;
|
|
|
|
}
|
2012-05-02 13:21:36 -04:00
|
|
|
}
|
|
|
|
bool is_anonymous() const {
|
|
|
|
return (_misc_flags & _misc_is_anonymous) != 0;
|
|
|
|
}
|
|
|
|
void set_is_anonymous(bool value) {
|
|
|
|
if (value) {
|
|
|
|
_misc_flags |= _misc_is_anonymous;
|
|
|
|
} else {
|
|
|
|
_misc_flags &= ~_misc_is_anonymous;
|
|
|
|
}
|
|
|
|
}
|
2008-11-12 22:33:26 -08:00
|
|
|
|
2012-12-12 11:39:29 -05:00
|
|
|
// Oop that keeps the metadata for this class from being unloaded
|
|
|
|
// in places where the metadata is stored in other places, like nmethods
|
|
|
|
oop klass_holder() const {
|
|
|
|
return is_anonymous() ? java_mirror() : class_loader();
|
|
|
|
}
|
|
|
|
|
2013-01-14 15:17:47 +01:00
|
|
|
bool is_contended() const {
|
|
|
|
return (_misc_flags & _misc_is_contended) != 0;
|
|
|
|
}
|
|
|
|
void set_is_contended(bool value) {
|
|
|
|
if (value) {
|
|
|
|
_misc_flags |= _misc_is_contended;
|
|
|
|
} else {
|
|
|
|
_misc_flags &= ~_misc_is_contended;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// source file name
|
2013-08-19 14:59:54 -04:00
|
|
|
Symbol* source_file_name() const {
|
|
|
|
return (_source_file_name_index == 0) ?
|
|
|
|
(Symbol*)NULL : _constants->symbol_at(_source_file_name_index);
|
|
|
|
}
|
|
|
|
u2 source_file_name_index() const {
|
|
|
|
return _source_file_name_index;
|
|
|
|
}
|
|
|
|
void set_source_file_name_index(u2 sourcefile_index) {
|
|
|
|
_source_file_name_index = sourcefile_index;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// minor and major version numbers of class file
|
|
|
|
u2 minor_version() const { return _minor_version; }
|
|
|
|
void set_minor_version(u2 minor_version) { _minor_version = minor_version; }
|
|
|
|
u2 major_version() const { return _major_version; }
|
|
|
|
void set_major_version(u2 major_version) { _major_version = major_version; }
|
|
|
|
|
|
|
|
// source debug extension
|
2015-12-08 20:04:03 +01:00
|
|
|
const char* source_debug_extension() const { return _source_debug_extension; }
|
|
|
|
void set_source_debug_extension(const char* array, int length);
|
2011-01-27 16:11:27 -08:00
|
|
|
|
|
|
|
// symbol unloading support (refcount already added)
|
|
|
|
Symbol* array_name() { return _array_name; }
|
2013-03-08 11:47:57 -05:00
|
|
|
void set_array_name(Symbol* name) { assert(_array_name == NULL || name == NULL, "name already created"); _array_name = name; }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// nonstatic oop-map blocks
|
2009-08-13 16:22:45 -07:00
|
|
|
static int nonstatic_oop_map_size(unsigned int oop_map_count) {
|
2009-08-11 15:37:23 -07:00
|
|
|
return oop_map_count * OopMapBlock::size_in_words();
|
|
|
|
}
|
2009-08-13 16:22:45 -07:00
|
|
|
unsigned int nonstatic_oop_map_count() const {
|
2009-08-11 15:37:23 -07:00
|
|
|
return _nonstatic_oop_map_size / OopMapBlock::size_in_words();
|
|
|
|
}
|
|
|
|
int nonstatic_oop_map_size() const { return _nonstatic_oop_map_size; }
|
|
|
|
void set_nonstatic_oop_map_size(int words) {
|
|
|
|
_nonstatic_oop_map_size = words;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2016-04-21 20:49:11 -07:00
|
|
|
#if INCLUDE_JVMTI
|
2016-05-17 08:51:05 -04:00
|
|
|
// Redefinition locking. Class can only be redefined by one thread at a time.
|
|
|
|
bool is_being_redefined() const { return _is_being_redefined; }
|
|
|
|
void set_is_being_redefined(bool value) { _is_being_redefined = value; }
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// RedefineClasses() support for previous versions:
|
2014-09-03 19:13:18 -04:00
|
|
|
void add_previous_version(instanceKlassHandle ikh, int emcp_method_count);
|
|
|
|
|
|
|
|
InstanceKlass* previous_versions() const { return _previous_versions; }
|
2016-04-21 20:49:11 -07:00
|
|
|
#else
|
|
|
|
InstanceKlass* previous_versions() const { return NULL; }
|
|
|
|
#endif
|
2014-09-03 19:13:18 -04:00
|
|
|
|
2015-03-20 02:44:51 -07:00
|
|
|
InstanceKlass* get_klass_version(int version) {
|
|
|
|
for (InstanceKlass* ik = this; ik != NULL; ik = ik->previous_versions()) {
|
|
|
|
if (ik->constants()->version() == version) {
|
|
|
|
return ik;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-09-03 19:13:18 -04:00
|
|
|
bool has_been_redefined() const {
|
|
|
|
return (_misc_flags & _misc_has_been_redefined) != 0;
|
|
|
|
}
|
|
|
|
void set_has_been_redefined() {
|
|
|
|
_misc_flags |= _misc_has_been_redefined;
|
|
|
|
}
|
|
|
|
|
2015-03-13 12:40:39 -04:00
|
|
|
bool is_scratch_class() const {
|
|
|
|
return (_misc_flags & _misc_is_scratch_class) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_is_scratch_class() {
|
|
|
|
_misc_flags |= _misc_is_scratch_class;
|
|
|
|
}
|
|
|
|
|
2015-10-09 14:08:15 -04:00
|
|
|
private:
|
|
|
|
|
|
|
|
void set_kind(unsigned kind) {
|
|
|
|
assert(kind <= _misc_kind_field_mask, "Invalid InstanceKlass kind");
|
|
|
|
unsigned fmask = _misc_kind_field_mask << _misc_kind_field_pos;
|
|
|
|
unsigned flags = _misc_flags & ~fmask;
|
|
|
|
_misc_flags = (flags | (kind << _misc_kind_field_pos));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_kind(unsigned desired) const {
|
|
|
|
unsigned kind = (_misc_flags >> _misc_kind_field_pos) & _misc_kind_field_mask;
|
|
|
|
return kind == desired;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Other is anything that is not one of the more specialized kinds of InstanceKlass.
|
|
|
|
bool is_other_instance_klass() const { return is_kind(_misc_kind_other); }
|
|
|
|
bool is_reference_instance_klass() const { return is_kind(_misc_kind_reference); }
|
|
|
|
bool is_mirror_instance_klass() const { return is_kind(_misc_kind_mirror); }
|
|
|
|
bool is_class_loader_instance_klass() const { return is_kind(_misc_kind_class_loader); }
|
|
|
|
|
2016-04-21 20:49:11 -07:00
|
|
|
#if INCLUDE_JVMTI
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
void init_previous_versions() {
|
|
|
|
_previous_versions = NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-13 12:40:39 -04:00
|
|
|
private:
|
|
|
|
static int _previous_version_count;
|
|
|
|
public:
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
static void purge_previous_versions(InstanceKlass* ik);
|
2015-03-13 12:40:39 -04:00
|
|
|
static bool has_previous_versions() { return _previous_version_count > 0; }
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// JVMTI: Support for caching a class file before it is modified by an agent that can do retransformation
|
2013-07-17 18:06:29 -04:00
|
|
|
void set_cached_class_file(JvmtiCachedClassFileData *data) {
|
|
|
|
_cached_class_file = data;
|
|
|
|
}
|
|
|
|
JvmtiCachedClassFileData * get_cached_class_file() { return _cached_class_file; }
|
|
|
|
jint get_cached_class_file_len();
|
|
|
|
unsigned char * get_cached_class_file_bytes();
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// JVMTI: Support for caching of field indices, types, and offsets
|
|
|
|
void set_jvmti_cached_class_field_map(JvmtiCachedClassFieldMap* descriptor) {
|
|
|
|
_jvmti_cached_class_field_map = descriptor;
|
|
|
|
}
|
|
|
|
JvmtiCachedClassFieldMap* jvmti_cached_class_field_map() const {
|
|
|
|
return _jvmti_cached_class_field_map;
|
|
|
|
}
|
|
|
|
|
2016-04-21 20:49:11 -07:00
|
|
|
#else // INCLUDE_JVMTI
|
|
|
|
|
|
|
|
static void purge_previous_versions(InstanceKlass* ik) { return; };
|
|
|
|
static bool has_previous_versions() { return false; }
|
|
|
|
|
2016-07-21 19:29:33 -07:00
|
|
|
void set_cached_class_file(JvmtiCachedClassFileData *data) {
|
|
|
|
assert(data == NULL, "unexpected call with JVMTI disabled");
|
|
|
|
}
|
2016-04-21 20:49:11 -07:00
|
|
|
JvmtiCachedClassFileData * get_cached_class_file() { return (JvmtiCachedClassFileData *)NULL; }
|
|
|
|
|
|
|
|
#endif // INCLUDE_JVMTI
|
|
|
|
|
2013-01-11 16:55:07 -05:00
|
|
|
bool has_default_methods() const {
|
|
|
|
return (_misc_flags & _misc_has_default_methods) != 0;
|
|
|
|
}
|
|
|
|
void set_has_default_methods(bool b) {
|
|
|
|
if (b) {
|
|
|
|
_misc_flags |= _misc_has_default_methods;
|
|
|
|
} else {
|
|
|
|
_misc_flags &= ~_misc_has_default_methods;
|
|
|
|
}
|
|
|
|
}
|
2012-10-11 12:25:42 -04:00
|
|
|
|
2014-10-22 15:24:37 -07:00
|
|
|
bool declares_default_methods() const {
|
|
|
|
return (_misc_flags & _misc_declares_default_methods) != 0;
|
|
|
|
}
|
|
|
|
void set_declares_default_methods(bool b) {
|
|
|
|
if (b) {
|
|
|
|
_misc_flags |= _misc_declares_default_methods;
|
|
|
|
} else {
|
|
|
|
_misc_flags &= ~_misc_declares_default_methods;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// for adding methods, ConstMethod::UNSET_IDNUM means no more ids available
|
2007-12-01 00:00:00 +00:00
|
|
|
inline u2 next_method_idnum();
|
|
|
|
void set_initial_method_idnum(u2 value) { _idnum_allocated_count = value; }
|
|
|
|
|
|
|
|
// generics support
|
2013-08-19 14:59:54 -04:00
|
|
|
Symbol* generic_signature() const {
|
|
|
|
return (_generic_signature_index == 0) ?
|
|
|
|
(Symbol*)NULL : _constants->symbol_at(_generic_signature_index);
|
|
|
|
}
|
|
|
|
u2 generic_signature_index() const {
|
|
|
|
return _generic_signature_index;
|
|
|
|
}
|
|
|
|
void set_generic_signature_index(u2 sig_index) {
|
|
|
|
_generic_signature_index = sig_index;
|
|
|
|
}
|
2011-01-27 16:11:27 -08:00
|
|
|
|
2015-12-08 20:04:03 +01:00
|
|
|
u2 enclosing_method_data(int offset) const;
|
|
|
|
u2 enclosing_method_class_index() const {
|
2012-03-13 13:50:48 -04:00
|
|
|
return enclosing_method_data(enclosing_method_class_index_offset);
|
|
|
|
}
|
|
|
|
u2 enclosing_method_method_index() {
|
|
|
|
return enclosing_method_data(enclosing_method_method_index_offset);
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
void set_enclosing_method_indices(u2 class_index,
|
2012-03-13 13:50:48 -04:00
|
|
|
u2 method_index);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// jmethodID support
|
2009-09-21 09:30:24 -06:00
|
|
|
static jmethodID get_jmethod_id(instanceKlassHandle ik_h,
|
2015-10-23 16:48:38 -04:00
|
|
|
const methodHandle& method_h);
|
2009-09-21 09:30:24 -06:00
|
|
|
static jmethodID get_jmethod_id_fetch_or_update(instanceKlassHandle ik_h,
|
|
|
|
size_t idnum, jmethodID new_id, jmethodID* new_jmeths,
|
|
|
|
jmethodID* to_dealloc_id_p,
|
|
|
|
jmethodID** to_dealloc_jmeths_p);
|
|
|
|
static void get_jmethod_id_length_value(jmethodID* cache, size_t idnum,
|
|
|
|
size_t *length_p, jmethodID* id_p);
|
2014-11-05 16:47:37 -08:00
|
|
|
void ensure_space_for_methodids(int start_offset = 0);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
jmethodID jmethod_id_or_null(Method* method);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// annotations support
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Annotations* annotations() const { return _annotations; }
|
|
|
|
void set_annotations(Annotations* anno) { _annotations = anno; }
|
2013-02-11 14:06:22 -05:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
AnnotationArray* class_annotations() const {
|
2013-02-11 14:06:22 -05:00
|
|
|
return (_annotations != NULL) ? _annotations->class_annotations() : NULL;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
}
|
|
|
|
Array<AnnotationArray*>* fields_annotations() const {
|
2013-02-11 14:06:22 -05:00
|
|
|
return (_annotations != NULL) ? _annotations->fields_annotations() : NULL;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
}
|
2013-02-11 14:06:22 -05:00
|
|
|
AnnotationArray* class_type_annotations() const {
|
|
|
|
return (_annotations != NULL) ? _annotations->class_type_annotations() : NULL;
|
|
|
|
}
|
|
|
|
Array<AnnotationArray*>* fields_type_annotations() const {
|
|
|
|
return (_annotations != NULL) ? _annotations->fields_type_annotations() : NULL;
|
2012-12-20 10:22:19 +01:00
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
// allocation
|
|
|
|
instanceOop allocate_instance(TRAPS);
|
|
|
|
|
|
|
|
// additional member function to return a handle
|
|
|
|
instanceHandle allocate_instance_handle(TRAPS) { return instanceHandle(THREAD, allocate_instance(THREAD)); }
|
|
|
|
|
|
|
|
objArrayOop allocate_objArray(int n, int length, TRAPS);
|
|
|
|
// Helper function
|
|
|
|
static instanceOop register_finalizer(instanceOop i, TRAPS);
|
|
|
|
|
|
|
|
// Check whether reflection/jni/jvm code is allowed to instantiate this class;
|
|
|
|
// if not, throw either an Error or an Exception.
|
|
|
|
virtual void check_valid_for_instantiation(bool throwError, TRAPS);
|
|
|
|
|
|
|
|
// initialization
|
|
|
|
void call_class_initializer(TRAPS);
|
|
|
|
void set_initialization_state_and_notify(ClassState state, TRAPS);
|
|
|
|
|
|
|
|
// OopMapCache support
|
|
|
|
OopMapCache* oop_map_cache() { return _oop_map_cache; }
|
|
|
|
void set_oop_map_cache(OopMapCache *cache) { _oop_map_cache = cache; }
|
2015-10-23 16:48:38 -04:00
|
|
|
void mask_for(const methodHandle& method, int bci, InterpreterOopMap* entry);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// JNI identifier support (for static fields - for jni performance)
|
|
|
|
JNIid* jni_ids() { return _jni_ids; }
|
|
|
|
void set_jni_ids(JNIid* ids) { _jni_ids = ids; }
|
|
|
|
JNIid* jni_id_for(int offset);
|
|
|
|
|
|
|
|
// maintenance of deoptimization dependencies
|
2015-11-18 03:03:43 +03:00
|
|
|
inline DependencyContext dependencies();
|
2016-02-19 20:40:20 +03:00
|
|
|
int mark_dependent_nmethods(KlassDepChange& changes);
|
2007-12-01 00:00:00 +00:00
|
|
|
void add_dependent_nmethod(nmethod* nm);
|
2015-10-13 10:06:46 +02:00
|
|
|
void remove_dependent_nmethod(nmethod* nm, bool delete_immediately);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// On-stack replacement support
|
|
|
|
nmethod* osr_nmethods_head() const { return _osr_nmethods_head; };
|
|
|
|
void set_osr_nmethods_head(nmethod* h) { _osr_nmethods_head = h; };
|
|
|
|
void add_osr_nmethod(nmethod* n);
|
2016-03-18 09:32:29 +01:00
|
|
|
bool remove_osr_nmethod(nmethod* n);
|
2014-10-30 13:03:30 +01:00
|
|
|
int mark_osr_nmethods(const Method* m);
|
2013-05-10 08:27:30 -07:00
|
|
|
nmethod* lookup_osr_nmethod(const Method* m, int bci, int level, bool match_level) const;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2016-04-21 20:49:11 -07:00
|
|
|
#if INCLUDE_JVMTI
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// Breakpoint support (see methods on Method* for details)
|
2007-12-01 00:00:00 +00:00
|
|
|
BreakpointInfo* breakpoints() const { return _breakpoints; };
|
|
|
|
void set_breakpoints(BreakpointInfo* bps) { _breakpoints = bps; };
|
2016-04-21 20:49:11 -07:00
|
|
|
#endif
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// support for stub routines
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
static ByteSize init_state_offset() { return in_ByteSize(offset_of(InstanceKlass, _init_state)); }
|
2016-03-01 23:46:09 +01:00
|
|
|
TRACE_DEFINE_KLASS_TRACE_ID_OFFSET;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
static ByteSize init_thread_offset() { return in_ByteSize(offset_of(InstanceKlass, _init_thread)); }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// subclass/subinterface checks
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
bool implements_interface(Klass* k) const;
|
2013-11-26 09:52:22 -05:00
|
|
|
bool is_same_or_direct_interface(Klass* k) const;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2014-05-28 07:36:32 -07:00
|
|
|
#ifdef ASSERT
|
|
|
|
// check whether this class or one of its superclasses was redefined
|
2015-12-08 20:04:03 +01:00
|
|
|
bool has_redefined_this_or_super() const;
|
2014-05-28 07:36:32 -07:00
|
|
|
#endif
|
|
|
|
|
2012-03-29 22:18:56 -04:00
|
|
|
// Access to the implementor of an interface.
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* implementor() const
|
2012-03-29 22:18:56 -04:00
|
|
|
{
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass** k = adr_implementor();
|
2012-03-29 22:18:56 -04:00
|
|
|
if (k == NULL) {
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
return *k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
void set_implementor(Klass* k) {
|
2012-03-29 22:18:56 -04:00
|
|
|
assert(is_interface(), "not interface");
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass** addr = adr_implementor();
|
2013-03-05 18:03:36 -08:00
|
|
|
assert(addr != NULL, "null addr");
|
|
|
|
if (addr != NULL) {
|
|
|
|
*addr = k;
|
|
|
|
}
|
2012-03-29 22:18:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int nof_implementors() const {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* k = implementor();
|
2012-03-29 22:18:56 -04:00
|
|
|
if (k == NULL) {
|
|
|
|
return 0;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
} else if (k != this) {
|
2012-03-29 22:18:56 -04:00
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 2;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2012-03-29 22:18:56 -04:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
void add_implementor(Klass* k); // k is a new class that implements this interface
|
2007-12-01 00:00:00 +00:00
|
|
|
void init_implementor(); // initialize
|
|
|
|
|
|
|
|
// link this class into the implementors list of every interface it implements
|
|
|
|
void process_interfaces(Thread *thread);
|
|
|
|
|
|
|
|
// virtual operations from Klass
|
|
|
|
bool is_leaf_class() const { return _subklass == NULL; }
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
GrowableArray<Klass*>* compute_secondary_supers(int num_extra_slots);
|
|
|
|
bool compute_is_subtype_of(Klass* k);
|
2007-12-01 00:00:00 +00:00
|
|
|
bool can_be_primary_super_slow() const;
|
|
|
|
int oop_size(oop obj) const { return size_helper(); }
|
2015-10-28 09:47:23 -04:00
|
|
|
// slow because it's a virtual call and used for verifying the layout_helper.
|
|
|
|
// Using the layout_helper bits, we can call is_instance_klass without a virtual call.
|
|
|
|
DEBUG_ONLY(bool is_instance_klass_slow() const { return true; })
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// Iterators
|
|
|
|
void do_local_static_fields(FieldClosure* cl);
|
|
|
|
void do_nonstatic_fields(FieldClosure* cl); // including inherited fields
|
2014-04-08 13:58:38 -04:00
|
|
|
void do_local_static_fields(void f(fieldDescriptor*, Handle, TRAPS), Handle, TRAPS);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
void methods_do(void f(Method* method));
|
|
|
|
void array_klasses_do(void f(Klass* k));
|
|
|
|
void array_klasses_do(void f(Klass* k, TRAPS), TRAPS);
|
2007-12-01 00:00:00 +00:00
|
|
|
bool super_types_do(SuperTypeClosure* blk);
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
static InstanceKlass* cast(Klass* k) {
|
2015-12-08 20:04:03 +01:00
|
|
|
return const_cast<InstanceKlass*>(cast(const_cast<const Klass*>(k)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static const InstanceKlass* cast(const Klass* k) {
|
2015-10-26 13:11:36 -04:00
|
|
|
assert(k != NULL, "k should not be null");
|
2015-10-28 09:47:23 -04:00
|
|
|
assert(k->is_instance_klass(), "cast to InstanceKlass");
|
2015-12-08 20:04:03 +01:00
|
|
|
return static_cast<const InstanceKlass*>(k);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2012-10-11 12:25:42 -04:00
|
|
|
InstanceKlass* java_super() const {
|
|
|
|
return (super() == NULL) ? NULL : cast(super());
|
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// Sizing (in words)
|
2016-01-30 11:02:29 -05:00
|
|
|
static int header_size() { return sizeof(InstanceKlass)/wordSize; }
|
2013-02-11 14:06:22 -05:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
static int size(int vtable_length, int itable_length,
|
|
|
|
int nonstatic_oop_map_size,
|
|
|
|
bool is_interface, bool is_anonymous) {
|
2016-01-30 11:02:29 -05:00
|
|
|
return align_metadata_size(header_size() +
|
2016-01-20 11:58:09 -08:00
|
|
|
vtable_length +
|
|
|
|
itable_length +
|
|
|
|
nonstatic_oop_map_size +
|
2016-01-30 11:02:29 -05:00
|
|
|
(is_interface ? (int)sizeof(Klass*)/wordSize : 0) +
|
|
|
|
(is_anonymous ? (int)sizeof(Klass*)/wordSize : 0));
|
2012-03-29 22:18:56 -04:00
|
|
|
}
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
int size() const { return size(vtable_length(),
|
|
|
|
itable_length(),
|
|
|
|
nonstatic_oop_map_size(),
|
|
|
|
is_interface(),
|
|
|
|
is_anonymous());
|
|
|
|
}
|
2013-01-25 15:06:18 -05:00
|
|
|
#if INCLUDE_SERVICES
|
|
|
|
virtual void collect_statistics(KlassSizeStats *sz) const;
|
|
|
|
#endif
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2016-01-19 12:07:32 +01:00
|
|
|
intptr_t* start_of_itable() const { return (intptr_t*)start_of_vtable() + vtable_length(); }
|
|
|
|
intptr_t* end_of_itable() const { return start_of_itable() + itable_length(); }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2016-01-19 12:07:32 +01:00
|
|
|
int itable_offset_in_words() const { return start_of_itable() - (intptr_t*)this; }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2011-03-18 16:00:34 -07:00
|
|
|
address static_field_addr(int offset);
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
|
|
|
|
OopMapBlock* start_of_nonstatic_oop_maps() const {
|
2016-01-20 11:58:09 -08:00
|
|
|
return (OopMapBlock*)(start_of_itable() + itable_length());
|
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv
Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
2008-04-13 17:43:42 -04:00
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-02-11 14:06:22 -05:00
|
|
|
Klass** end_of_nonstatic_oop_maps() const {
|
|
|
|
return (Klass**)(start_of_nonstatic_oop_maps() +
|
|
|
|
nonstatic_oop_map_count());
|
|
|
|
}
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass** adr_implementor() const {
|
2012-03-29 22:18:56 -04:00
|
|
|
if (is_interface()) {
|
2013-02-11 14:06:22 -05:00
|
|
|
return (Klass**)end_of_nonstatic_oop_maps();
|
2012-03-29 22:18:56 -04:00
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass** adr_host_klass() const {
|
2012-05-02 13:21:36 -04:00
|
|
|
if (is_anonymous()) {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass** adr_impl = adr_implementor();
|
2012-05-02 13:21:36 -04:00
|
|
|
if (adr_impl != NULL) {
|
|
|
|
return adr_impl + 1;
|
|
|
|
} else {
|
2013-02-11 14:06:22 -05:00
|
|
|
return end_of_nonstatic_oop_maps();
|
2012-05-02 13:21:36 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// Use this to return the size of an instance in heap words:
|
|
|
|
int size_helper() const {
|
|
|
|
return layout_helper_to_size_helper(layout_helper());
|
|
|
|
}
|
|
|
|
|
|
|
|
// This bit is initialized in classFileParser.cpp.
|
|
|
|
// It is false under any of the following conditions:
|
|
|
|
// - the class is abstract (including any interface)
|
|
|
|
// - the class has a finalizer (if !RegisterFinalizersAtInit)
|
|
|
|
// - the class size is larger than FastAllocateSizeLimit
|
|
|
|
// - the class is java/lang/Class, which cannot be allocated directly
|
|
|
|
bool can_be_fastpath_allocated() const {
|
|
|
|
return !layout_helper_needs_slow_path(layout_helper());
|
|
|
|
}
|
|
|
|
|
2016-01-19 12:07:32 +01:00
|
|
|
// Java itable
|
2007-12-01 00:00:00 +00:00
|
|
|
klassItable* itable() const; // return new klassItable wrapper
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Method* method_at_itable(Klass* holder, int index, TRAPS);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-10-07 12:20:28 -04:00
|
|
|
#if INCLUDE_JVMTI
|
2015-02-25 00:30:54 -08:00
|
|
|
void adjust_default_methods(InstanceKlass* holder, bool* trace_name_printed);
|
2013-10-07 12:20:28 -04:00
|
|
|
#endif // INCLUDE_JVMTI
|
|
|
|
|
2015-10-13 10:06:46 +02:00
|
|
|
void clean_weak_instanceklass_links(BoolObjectClosure* is_alive);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
void clean_implementors_list(BoolObjectClosure* is_alive);
|
|
|
|
void clean_method_data(BoolObjectClosure* is_alive);
|
|
|
|
|
|
|
|
// Explicit metaspace deallocation of fields
|
2013-03-13 17:34:29 -04:00
|
|
|
// For RedefineClasses and class file parsing errors, we need to deallocate
|
|
|
|
// instanceKlasses and the metadata they point to.
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
void deallocate_contents(ClassLoaderData* loader_data);
|
2013-03-13 17:34:29 -04:00
|
|
|
static void deallocate_methods(ClassLoaderData* loader_data,
|
|
|
|
Array<Method*>* methods);
|
|
|
|
void static deallocate_interfaces(ClassLoaderData* loader_data,
|
2015-12-08 20:04:03 +01:00
|
|
|
const Klass* super_klass,
|
2013-03-13 17:34:29 -04:00
|
|
|
Array<Klass*>* local_interfaces,
|
|
|
|
Array<Klass*>* transitive_interfaces);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
|
|
|
// The constant pool is on stack if any of the methods are executing or
|
|
|
|
// referenced by handles.
|
|
|
|
bool on_stack() const { return _constants->on_stack(); }
|
|
|
|
|
2013-04-24 16:19:35 -04:00
|
|
|
// callbacks for actions during class unloading
|
|
|
|
static void notify_unload_class(InstanceKlass* ik);
|
|
|
|
static void release_C_heap_structures(InstanceKlass* ik);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// Naming
|
2009-10-17 19:51:05 -07:00
|
|
|
const char* signature_name() const;
|
2016-06-07 11:39:47 -04:00
|
|
|
static Symbol* package_from_name(const Symbol* name, TRAPS);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2015-04-02 10:04:27 +02:00
|
|
|
// GC specific object visitors
|
|
|
|
//
|
|
|
|
// Mark Sweep
|
|
|
|
int oop_ms_adjust_pointers(oop obj);
|
|
|
|
#if INCLUDE_ALL_GCS
|
|
|
|
// Parallel Scavenge
|
|
|
|
void oop_ps_push_contents( oop obj, PSPromotionManager* pm);
|
|
|
|
// Parallel Compact
|
|
|
|
void oop_pc_follow_contents(oop obj, ParCompactionManager* cm);
|
2016-01-28 13:30:12 +01:00
|
|
|
void oop_pc_update_pointers(oop obj, ParCompactionManager* cm);
|
2015-04-02 10:04:27 +02:00
|
|
|
#endif
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2015-04-02 10:04:27 +02:00
|
|
|
// Oop fields (and metadata) iterators
|
|
|
|
// [nv = true] Use non-virtual calls to do_oop_nv.
|
|
|
|
// [nv = false] Use virtual calls to do_oop.
|
|
|
|
//
|
|
|
|
// The InstanceKlass iterators also visits the Object's klass.
|
|
|
|
|
|
|
|
// Forward iteration
|
|
|
|
public:
|
|
|
|
// Iterate over all oop fields in the oop maps.
|
|
|
|
template <bool nv, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_oop_maps(oop obj, OopClosureType* closure);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Iterate over all oop fields and metadata.
|
|
|
|
template <bool nv, class OopClosureType>
|
|
|
|
inline int oop_oop_iterate(oop obj, OopClosureType* closure);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Iterate over all oop fields in the oop maps.
|
|
|
|
// Specialized for [T = oop] or [T = narrowOop].
|
|
|
|
template <bool nv, typename T, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_oop_maps_specialized(oop obj, OopClosureType* closure);
|
|
|
|
|
|
|
|
// Iterate over all oop fields in one oop map.
|
|
|
|
template <bool nv, typename T, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_oop_map(OopMapBlock* map, oop obj, OopClosureType* closure);
|
|
|
|
|
|
|
|
|
|
|
|
// Reverse iteration
|
|
|
|
#if INCLUDE_ALL_GCS
|
|
|
|
public:
|
|
|
|
// Iterate over all oop fields in the oop maps.
|
|
|
|
template <bool nv, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_oop_maps_reverse(oop obj, OopClosureType* closure);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Iterate over all oop fields and metadata.
|
|
|
|
template <bool nv, class OopClosureType>
|
|
|
|
inline int oop_oop_iterate_reverse(oop obj, OopClosureType* closure);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Iterate over all oop fields in the oop maps.
|
|
|
|
// Specialized for [T = oop] or [T = narrowOop].
|
|
|
|
template <bool nv, typename T, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_oop_maps_specialized_reverse(oop obj, OopClosureType* closure);
|
|
|
|
|
|
|
|
// Iterate over all oop fields in one oop map.
|
|
|
|
template <bool nv, typename T, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_oop_map_reverse(OopMapBlock* map, oop obj, OopClosureType* closure);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// Bounded range iteration
|
|
|
|
public:
|
|
|
|
// Iterate over all oop fields in the oop maps.
|
|
|
|
template <bool nv, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_oop_maps_bounded(oop obj, OopClosureType* closure, MemRegion mr);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Iterate over all oop fields and metadata.
|
|
|
|
template <bool nv, class OopClosureType>
|
|
|
|
inline int oop_oop_iterate_bounded(oop obj, OopClosureType* closure, MemRegion mr);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Iterate over all oop fields in the oop maps.
|
|
|
|
// Specialized for [T = oop] or [T = narrowOop].
|
|
|
|
template <bool nv, typename T, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_oop_maps_specialized_bounded(oop obj, OopClosureType* closure, MemRegion mr);
|
|
|
|
|
|
|
|
// Iterate over all oop fields in one oop map.
|
|
|
|
template <bool nv, typename T, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_oop_map_bounded(OopMapBlock* map, oop obj, OopClosureType* closure, MemRegion mr);
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2015-05-25 11:39:43 +02:00
|
|
|
ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_OOP_ITERATE_DECL)
|
|
|
|
ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_OOP_ITERATE_DECL)
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2013-01-23 13:02:39 -05:00
|
|
|
#if INCLUDE_ALL_GCS
|
2015-05-25 11:39:43 +02:00
|
|
|
ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_OOP_ITERATE_DECL_BACKWARDS)
|
|
|
|
ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_OOP_ITERATE_DECL_BACKWARDS)
|
2013-01-23 13:02:39 -05:00
|
|
|
#endif // INCLUDE_ALL_GCS
|
2007-12-01 00:00:00 +00:00
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
u2 idnum_allocated_count() const { return _idnum_allocated_count; }
|
2013-04-25 12:55:49 -07:00
|
|
|
|
2014-08-12 17:29:00 -07:00
|
|
|
public:
|
|
|
|
void set_in_error_state() {
|
|
|
|
assert(DumpSharedSpaces, "only call this when dumping archive");
|
|
|
|
_init_state = initialization_error;
|
|
|
|
}
|
|
|
|
bool check_sharing_error_state();
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
private:
|
|
|
|
// initialization state
|
|
|
|
#ifdef ASSERT
|
|
|
|
void set_init_state(ClassState state);
|
|
|
|
#else
|
2011-12-06 18:28:51 -05:00
|
|
|
void set_init_state(ClassState state) { _init_state = (u1)state; }
|
2007-12-01 00:00:00 +00:00
|
|
|
#endif
|
2012-05-02 13:21:36 -04:00
|
|
|
void set_rewritten() { _misc_flags |= _misc_rewritten; }
|
2007-12-01 00:00:00 +00:00
|
|
|
void set_init_thread(Thread *thread) { _init_thread = thread; }
|
|
|
|
|
2009-09-21 09:30:24 -06:00
|
|
|
// The RedefineClasses() API can cause new method idnums to be needed
|
|
|
|
// which will cause the caches to grow. Safety requires different
|
|
|
|
// cache management logic if the caches can grow instead of just
|
|
|
|
// going from NULL to non-NULL.
|
|
|
|
bool idnum_can_increment() const { return has_been_redefined(); }
|
2007-12-01 00:00:00 +00:00
|
|
|
jmethodID* methods_jmethod_ids_acquire() const
|
|
|
|
{ return (jmethodID*)OrderAccess::load_ptr_acquire(&_methods_jmethod_ids); }
|
|
|
|
void release_set_methods_jmethod_ids(jmethodID* jmeths)
|
|
|
|
{ OrderAccess::release_store_ptr(&_methods_jmethod_ids, jmeths); }
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// Lock during initialization
|
2013-04-25 12:55:49 -07:00
|
|
|
public:
|
2013-05-22 14:37:49 -04:00
|
|
|
// Lock for (1) initialization; (2) access to the ConstantPool of this class.
|
|
|
|
// Must be one per class and it has to be a VM internal object so java code
|
|
|
|
// cannot lock it (like the mirror).
|
|
|
|
// It has to be an object not a Mutex because it's held through java calls.
|
2013-10-03 18:50:58 -04:00
|
|
|
oop init_lock() const;
|
2013-04-25 12:55:49 -07:00
|
|
|
private:
|
2013-10-22 14:29:02 -07:00
|
|
|
void fence_and_clear_init_lock();
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// Static methods that are used to implement member methods where an exposed this pointer
|
|
|
|
// is needed due to possible GCs
|
2014-03-26 21:47:45 -04:00
|
|
|
static bool link_class_impl (instanceKlassHandle this_k, bool throw_verifyerror, TRAPS);
|
|
|
|
static bool verify_code (instanceKlassHandle this_k, bool throw_verifyerror, TRAPS);
|
|
|
|
static void initialize_impl (instanceKlassHandle this_k, TRAPS);
|
2014-10-22 15:24:37 -07:00
|
|
|
static void initialize_super_interfaces (instanceKlassHandle this_k, TRAPS);
|
2014-03-26 21:47:45 -04:00
|
|
|
static void eager_initialize_impl (instanceKlassHandle this_k);
|
|
|
|
static void set_initialization_state_and_notify_impl (instanceKlassHandle this_k, ClassState state, TRAPS);
|
|
|
|
static void call_class_initializer_impl (instanceKlassHandle this_k, TRAPS);
|
|
|
|
static Klass* array_klass_impl (instanceKlassHandle this_k, bool or_null, int n, TRAPS);
|
2014-04-08 13:58:38 -04:00
|
|
|
static void do_local_static_fields_impl (instanceKlassHandle this_k, void f(fieldDescriptor* fd, Handle, TRAPS), Handle, TRAPS);
|
2007-12-01 00:00:00 +00:00
|
|
|
/* jni_id_for_impl for jfieldID only */
|
2014-03-26 21:47:45 -04:00
|
|
|
static JNIid* jni_id_for_impl (instanceKlassHandle this_k, int offset);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// Returns the array class for the n'th dimension
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* array_klass_impl(bool or_null, int n, TRAPS);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// Returns the array class with this class as element type
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* array_klass_impl(bool or_null, TRAPS);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2014-04-14 14:27:45 -04:00
|
|
|
// find a local method (returns NULL if not found)
|
2015-12-08 20:04:03 +01:00
|
|
|
Method* find_method_impl(const Symbol* name,
|
|
|
|
const Symbol* signature,
|
2015-08-06 13:02:15 -04:00
|
|
|
OverpassLookupMode overpass_mode,
|
|
|
|
StaticLookupMode static_mode,
|
|
|
|
PrivateLookupMode private_mode) const;
|
2015-12-08 20:04:03 +01:00
|
|
|
|
|
|
|
static Method* find_method_impl(const Array<Method*>* methods,
|
|
|
|
const Symbol* name,
|
|
|
|
const Symbol* signature,
|
2015-08-06 13:02:15 -04:00
|
|
|
OverpassLookupMode overpass_mode,
|
|
|
|
StaticLookupMode static_mode,
|
|
|
|
PrivateLookupMode private_mode);
|
2014-04-14 14:27:45 -04:00
|
|
|
|
2013-04-24 16:19:35 -04:00
|
|
|
// Free CHeap allocated fields.
|
|
|
|
void release_C_heap_structures();
|
2014-09-03 19:13:18 -04:00
|
|
|
|
2016-04-21 20:49:11 -07:00
|
|
|
#if INCLUDE_JVMTI
|
2014-09-03 19:13:18 -04:00
|
|
|
// RedefineClasses support
|
|
|
|
void link_previous_versions(InstanceKlass* pv) { _previous_versions = pv; }
|
|
|
|
void mark_newly_obsolete_methods(Array<Method*>* old_methods, int emcp_method_count);
|
2016-04-21 20:49:11 -07:00
|
|
|
#endif
|
2007-12-01 00:00:00 +00:00
|
|
|
public:
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// CDS support - remove and restore oops from metadata. Oops are not shared.
|
2007-12-01 00:00:00 +00:00
|
|
|
virtual void remove_unshareable_info();
|
2014-08-12 17:29:00 -07:00
|
|
|
virtual void restore_unshareable_info(ClassLoaderData* loader_data, Handle protection_domain, TRAPS);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// jvm support
|
|
|
|
jint compute_modifier_flags(TRAPS) const;
|
|
|
|
|
2013-04-20 04:07:08 -07:00
|
|
|
// JSR-292 support
|
|
|
|
MemberNameTable* member_names() { return _member_names; }
|
|
|
|
void set_member_names(MemberNameTable* member_names) { _member_names = member_names; }
|
2016-08-01 16:28:23 -04:00
|
|
|
bool add_member_name(Handle member_name);
|
2013-04-20 04:07:08 -07:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
public:
|
|
|
|
// JVMTI support
|
|
|
|
jint jvmti_class_status() const;
|
|
|
|
|
|
|
|
public:
|
|
|
|
// Printing
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
#ifndef PRODUCT
|
|
|
|
void print_on(outputStream* st) const;
|
|
|
|
#endif
|
|
|
|
void print_value_on(outputStream* st) const;
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
void oop_print_value_on(oop obj, outputStream* st);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2010-01-08 13:47:01 -08:00
|
|
|
#ifndef PRODUCT
|
|
|
|
void oop_print_on (oop obj, outputStream* st);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
void print_dependent_nmethods(bool verbose = false);
|
|
|
|
bool is_dependent_nmethod(nmethod* nm);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const char* internal_name() const;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
|
|
|
// Verification
|
2014-02-15 13:03:38 -05:00
|
|
|
void verify_on(outputStream* st);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
void oop_verify_on(oop obj, outputStream* st);
|
2016-02-03 11:40:30 -05:00
|
|
|
|
|
|
|
// Logging
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
void print_loading_log(LogLevel::type type, ClassLoaderData* loader_data,
|
|
|
|
const char* module_name, const ClassFileStream* cfs) const;
|
2007-12-01 00:00:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// for adding methods
|
|
|
|
// UNSET_IDNUM return means no more ids available
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
inline u2 InstanceKlass::next_method_idnum() {
|
|
|
|
if (_idnum_allocated_count == ConstMethod::MAX_IDNUM) {
|
|
|
|
return ConstMethod::UNSET_IDNUM; // no more ids available
|
2007-12-01 00:00:00 +00:00
|
|
|
} else {
|
|
|
|
return _idnum_allocated_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* JNIid class for jfieldIDs only */
|
2012-06-28 17:03:16 -04:00
|
|
|
class JNIid: public CHeapObj<mtClass> {
|
2007-12-01 00:00:00 +00:00
|
|
|
friend class VMStructs;
|
|
|
|
private:
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* _holder;
|
2007-12-01 00:00:00 +00:00
|
|
|
JNIid* _next;
|
|
|
|
int _offset;
|
|
|
|
#ifdef ASSERT
|
|
|
|
bool _is_static_field_id;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
public:
|
|
|
|
// Accessors
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* holder() const { return _holder; }
|
2007-12-01 00:00:00 +00:00
|
|
|
int offset() const { return _offset; }
|
|
|
|
JNIid* next() { return _next; }
|
|
|
|
// Constructor
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
JNIid(Klass* holder, int offset, JNIid* next);
|
2007-12-01 00:00:00 +00:00
|
|
|
// Identifier lookup
|
|
|
|
JNIid* find(int offset);
|
|
|
|
|
2011-03-18 16:00:34 -07:00
|
|
|
bool find_local_field(fieldDescriptor* fd) {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
return InstanceKlass::cast(holder())->find_local_field_from_offset(offset(), true, fd);
|
2011-03-18 16:00:34 -07:00
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
static void deallocate(JNIid* id);
|
|
|
|
// Debugging
|
|
|
|
#ifdef ASSERT
|
|
|
|
bool is_static_field_id() const { return _is_static_field_id; }
|
|
|
|
void set_is_static_field_id() { _is_static_field_id = true; }
|
|
|
|
#endif
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
void verify(Klass* holder);
|
2007-12-01 00:00:00 +00:00
|
|
|
};
|
|
|
|
|
2012-03-13 13:50:48 -04:00
|
|
|
// An iterator that's used to access the inner classes indices in the
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
// InstanceKlass::_inner_classes array.
|
2012-03-13 13:50:48 -04:00
|
|
|
class InnerClassesIterator : public StackObj {
|
|
|
|
private:
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Array<jushort>* _inner_classes;
|
2012-03-13 13:50:48 -04:00
|
|
|
int _length;
|
|
|
|
int _idx;
|
|
|
|
public:
|
|
|
|
|
|
|
|
InnerClassesIterator(instanceKlassHandle k) {
|
|
|
|
_inner_classes = k->inner_classes();
|
|
|
|
if (k->inner_classes() != NULL) {
|
|
|
|
_length = _inner_classes->length();
|
|
|
|
// The inner class array's length should be the multiple of
|
|
|
|
// inner_class_next_offset if it only contains the InnerClasses
|
|
|
|
// attribute data, or it should be
|
|
|
|
// n*inner_class_next_offset+enclosing_method_attribute_size
|
|
|
|
// if it also contains the EnclosingMethod data.
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
assert((_length % InstanceKlass::inner_class_next_offset == 0 ||
|
|
|
|
_length % InstanceKlass::inner_class_next_offset == InstanceKlass::enclosing_method_attribute_size),
|
2012-03-13 13:50:48 -04:00
|
|
|
"just checking");
|
|
|
|
// Remove the enclosing_method portion if exists.
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
if (_length % InstanceKlass::inner_class_next_offset == InstanceKlass::enclosing_method_attribute_size) {
|
|
|
|
_length -= InstanceKlass::enclosing_method_attribute_size;
|
2012-03-13 13:50:48 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_length = 0;
|
|
|
|
}
|
|
|
|
_idx = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int length() const {
|
|
|
|
return _length;
|
|
|
|
}
|
|
|
|
|
|
|
|
void next() {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
_idx += InstanceKlass::inner_class_next_offset;
|
2012-03-13 13:50:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool done() const {
|
|
|
|
return (_idx >= _length);
|
|
|
|
}
|
|
|
|
|
|
|
|
u2 inner_class_info_index() const {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
return _inner_classes->at(
|
|
|
|
_idx + InstanceKlass::inner_class_inner_class_info_offset);
|
2012-03-13 13:50:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void set_inner_class_info_index(u2 index) {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
_inner_classes->at_put(
|
|
|
|
_idx + InstanceKlass::inner_class_inner_class_info_offset, index);
|
2012-03-13 13:50:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
u2 outer_class_info_index() const {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
return _inner_classes->at(
|
|
|
|
_idx + InstanceKlass::inner_class_outer_class_info_offset);
|
2012-03-13 13:50:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void set_outer_class_info_index(u2 index) {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
_inner_classes->at_put(
|
|
|
|
_idx + InstanceKlass::inner_class_outer_class_info_offset, index);
|
2012-03-13 13:50:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
u2 inner_name_index() const {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
return _inner_classes->at(
|
|
|
|
_idx + InstanceKlass::inner_class_inner_name_offset);
|
2012-03-13 13:50:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void set_inner_name_index(u2 index) {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
_inner_classes->at_put(
|
|
|
|
_idx + InstanceKlass::inner_class_inner_name_offset, index);
|
2012-03-13 13:50:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
u2 inner_access_flags() const {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
return _inner_classes->at(
|
|
|
|
_idx + InstanceKlass::inner_class_access_flags_offset);
|
2012-03-13 13:50:48 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#endif // SHARE_VM_OOPS_INSTANCEKLASS_HPP
|