2011-03-18 16:00:34 -07:00
|
|
|
/*
|
2015-05-13 15:16:06 +02:00
|
|
|
* Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
|
2011-03-18 16:00:34 -07: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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SHARE_VM_OOPS_INSTANCEMIRRORKLASS_HPP
|
|
|
|
#define SHARE_VM_OOPS_INSTANCEMIRRORKLASS_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/systemDictionary.hpp"
|
2015-05-13 15:16:06 +02:00
|
|
|
#include "gc/shared/specialized_oop_closures.hpp"
|
2011-03-18 16:00:34 -07:00
|
|
|
#include "oops/instanceKlass.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 "runtime/handles.hpp"
|
2013-01-23 13:02:39 -05:00
|
|
|
#include "utilities/macros.hpp"
|
2011-03-18 16:00:34 -07:00
|
|
|
|
2015-12-08 20:04:03 +01:00
|
|
|
class ClassFileParser;
|
|
|
|
|
2012-09-07 12:04:16 -04:00
|
|
|
// An InstanceMirrorKlass is a specialized InstanceKlass for
|
2011-03-18 16:00:34 -07:00
|
|
|
// java.lang.Class instances. These instances are special because
|
|
|
|
// they contain the static fields of the class in addition to the
|
|
|
|
// normal fields of Class. This means they are variable sized
|
|
|
|
// instances and need special logic for computing their size and for
|
|
|
|
// iteration of their oops.
|
|
|
|
|
|
|
|
|
2012-09-07 12:04:16 -04:00
|
|
|
class InstanceMirrorKlass: public InstanceKlass {
|
2011-03-30 07:47:19 -07:00
|
|
|
friend class VMStructs;
|
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 InstanceKlass;
|
2011-03-30 07:47:19 -07:00
|
|
|
|
2011-03-18 16:00:34 -07:00
|
|
|
private:
|
|
|
|
static int _offset_of_static_fields;
|
|
|
|
|
2015-12-08 20:04:03 +01:00
|
|
|
InstanceMirrorKlass(const ClassFileParser& parser) : InstanceKlass(parser, InstanceKlass::_misc_kind_mirror) {}
|
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
|
|
|
|
2011-03-18 16:00:34 -07:00
|
|
|
public:
|
2012-09-07 12:04:16 -04:00
|
|
|
InstanceMirrorKlass() { assert(DumpSharedSpaces || UseSharedSpaces, "only for CDS"); }
|
2011-03-18 16:00:34 -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
|
|
|
// Casting from Klass*
|
2012-09-07 12:04:16 -04:00
|
|
|
static InstanceMirrorKlass* cast(Klass* k) {
|
2015-10-09 14:08:15 -04:00
|
|
|
assert(InstanceKlass::cast(k)->is_mirror_instance_klass(),
|
|
|
|
"cast to InstanceMirrorKlass");
|
|
|
|
return static_cast<InstanceMirrorKlass*>(k);
|
2011-03-18 16:00:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the size of the instance including the extra static fields.
|
|
|
|
virtual int oop_size(oop obj) const;
|
|
|
|
|
|
|
|
// Static field offset is an offset into the Heap, should be converted by
|
|
|
|
// based on UseCompressedOop for traversal
|
|
|
|
static HeapWord* start_of_static_fields(oop obj) {
|
2013-09-26 10:25:02 -04:00
|
|
|
return (HeapWord*)(cast_from_oop<intptr_t>(obj) + offset_of_static_fields());
|
2011-03-18 16:00:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void init_offset_of_static_fields() {
|
|
|
|
// Cache the offset of the static fields in the Class instance
|
|
|
|
assert(_offset_of_static_fields == 0, "once");
|
2012-09-07 12:04:16 -04:00
|
|
|
_offset_of_static_fields = InstanceMirrorKlass::cast(SystemDictionary::Class_klass())->size_helper() << LogHeapWordSize;
|
2011-03-18 16:00:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int offset_of_static_fields() {
|
|
|
|
return _offset_of_static_fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
int compute_static_oop_field_count(oop obj);
|
|
|
|
|
|
|
|
// Given a Klass return the size of the instance
|
|
|
|
int instance_size(KlassHandle k);
|
|
|
|
|
|
|
|
// allocation
|
|
|
|
instanceOop allocate_instance(KlassHandle k, TRAPS);
|
|
|
|
|
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);
|
|
|
|
void oop_pc_update_pointers(oop obj);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Oop fields (and metadata) iterators
|
|
|
|
// [nv = true] Use non-virtual calls to do_oop_nv.
|
|
|
|
// [nv = false] Use virtual calls to do_oop.
|
|
|
|
//
|
|
|
|
// The InstanceMirrorKlass iterators also visit the hidden Klass pointer.
|
2011-03-18 16:00:34 -07:00
|
|
|
|
2015-04-02 10:04:27 +02:00
|
|
|
public:
|
|
|
|
// Iterate over the static fields.
|
|
|
|
template <bool nv, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_statics(oop obj, OopClosureType* closure);
|
2011-03-18 16:00:34 -07:00
|
|
|
|
2015-04-02 10:04:27 +02:00
|
|
|
private:
|
|
|
|
// Iterate over the static fields.
|
|
|
|
// Specialized for [T = oop] or [T = narrowOop].
|
|
|
|
template <bool nv, typename T, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_statics_specialized(oop obj, OopClosureType* closure);
|
|
|
|
|
|
|
|
// Forward iteration
|
|
|
|
// Iterate over the oop fields and metadata.
|
|
|
|
template <bool nv, class OopClosureType>
|
2015-09-02 09:14:04 +02:00
|
|
|
inline void oop_oop_iterate(oop obj, OopClosureType* closure);
|
2015-04-02 10:04:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Reverse iteration
|
|
|
|
#if INCLUDE_ALL_GCS
|
|
|
|
// Iterate over the oop fields and metadata.
|
|
|
|
template <bool nv, class OopClosureType>
|
2015-09-02 09:14:04 +02:00
|
|
|
inline void oop_oop_iterate_reverse(oop obj, OopClosureType* closure);
|
2015-04-02 10:04:27 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// Bounded range iteration
|
|
|
|
// Iterate over the oop fields and metadata.
|
|
|
|
template <bool nv, class OopClosureType>
|
2015-09-02 09:14:04 +02:00
|
|
|
inline void oop_oop_iterate_bounded(oop obj, OopClosureType* closure, MemRegion mr);
|
2015-04-02 10:04:27 +02:00
|
|
|
|
|
|
|
// Iterate over the static fields.
|
|
|
|
template <bool nv, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_statics_bounded(oop obj, OopClosureType* closure, MemRegion mr);
|
|
|
|
|
|
|
|
// Iterate over the static fields.
|
|
|
|
// Specialized for [T = oop] or [T = narrowOop].
|
|
|
|
template <bool nv, typename T, class OopClosureType>
|
|
|
|
inline void oop_oop_iterate_statics_specialized_bounded(oop obj, OopClosureType* closure, MemRegion mr);
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
2011-03-18 16:00:34 -07: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)
|
2011-03-18 16:00:34 -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
|
2011-03-18 16:00:34 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SHARE_VM_OOPS_INSTANCEMIRRORKLASS_HPP
|