2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2019-01-10 15:13:51 -05:00
|
|
|
* Copyright (c) 1997, 2019, 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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-01-10 15:13:51 -05:00
|
|
|
#ifndef SHARE_OOPS_INSTANCEREFKLASS_HPP
|
|
|
|
#define SHARE_OOPS_INSTANCEREFKLASS_HPP
|
2010-11-23 13:22:55 -08:00
|
|
|
|
|
|
|
#include "oops/instanceKlass.hpp"
|
2013-01-23 13:02:39 -05:00
|
|
|
#include "utilities/macros.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
|
2015-12-08 20:04:03 +01:00
|
|
|
class ClassFileParser;
|
|
|
|
|
2012-09-07 12:04:16 -04:00
|
|
|
// An InstanceRefKlass is a specialized InstanceKlass for Java
|
2007-12-01 00:00:00 +00:00
|
|
|
// classes that are subclasses of java/lang/ref/Reference.
|
|
|
|
//
|
|
|
|
// These classes are used to implement soft/weak/final/phantom
|
|
|
|
// references and finalization, and need special treatment by the
|
|
|
|
// garbage collector.
|
|
|
|
//
|
|
|
|
// During GC discovered reference objects are added (chained) to one
|
|
|
|
// of the four lists below, depending on the type of reference.
|
|
|
|
// The linked occurs through the next field in class java/lang/ref/Reference.
|
|
|
|
//
|
|
|
|
// Afterwards, the discovered references are processed in decreasing
|
|
|
|
// order of reachability. Reference objects eligible for notification
|
|
|
|
// are linked to the static pending_list in class java/lang/ref/Reference,
|
|
|
|
// and the pending list lock object in the same class is notified.
|
|
|
|
|
|
|
|
|
2012-09-07 12:04:16 -04:00
|
|
|
class InstanceRefKlass: public InstanceKlass {
|
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;
|
2018-05-26 06:59:49 +02:00
|
|
|
public:
|
|
|
|
static const KlassID ID = InstanceRefKlassID;
|
|
|
|
|
2015-12-08 20:04:03 +01:00
|
|
|
private:
|
2018-05-26 06:59:49 +02:00
|
|
|
InstanceRefKlass(const ClassFileParser& parser) : InstanceKlass(parser, InstanceKlass::_misc_kind_reference, ID) {}
|
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
|
|
|
public:
|
2012-09-07 12:04:16 -04:00
|
|
|
InstanceRefKlass() { assert(DumpSharedSpaces || UseSharedSpaces, "only for CDS"); }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2015-04-02 10:04:27 +02:00
|
|
|
// Oop fields (and metadata) iterators
|
|
|
|
//
|
|
|
|
// The InstanceRefKlass iterators also support reference processing.
|
|
|
|
|
|
|
|
|
|
|
|
// Forward iteration
|
|
|
|
// Iterate over all oop fields and metadata.
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, 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
|
|
|
|
// Iterate over all oop fields and metadata.
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType>
|
2015-09-02 09:14:04 +02:00
|
|
|
inline void oop_oop_iterate_reverse(oop obj, OopClosureType* closure);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2015-04-02 10:04:27 +02:00
|
|
|
// Bounded range iteration
|
|
|
|
// Iterate over all oop fields and metadata.
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType>
|
2015-09-02 09:14:04 +02:00
|
|
|
inline void oop_oop_iterate_bounded(oop obj, OopClosureType* closure, MemRegion mr);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2018-05-26 06:59:49 +02:00
|
|
|
private:
|
|
|
|
|
2015-04-02 10:04:27 +02:00
|
|
|
// Reference processing part of the iterators.
|
|
|
|
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType, class Contains>
|
|
|
|
inline void oop_oop_iterate_ref_processing(oop obj, OopClosureType* closure, Contains& contains);
|
2015-04-02 10:04:27 +02:00
|
|
|
|
|
|
|
// Only perform reference processing if the referent object is within mr.
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType>
|
2015-04-02 10:04:27 +02:00
|
|
|
inline void oop_oop_iterate_ref_processing_bounded(oop obj, OopClosureType* closure, MemRegion mr);
|
|
|
|
|
|
|
|
// Reference processing
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType>
|
2015-04-02 10:04:27 +02:00
|
|
|
inline void oop_oop_iterate_ref_processing(oop obj, OopClosureType* closure);
|
|
|
|
|
2017-04-26 10:26:39 +02:00
|
|
|
// Building blocks for specialized handling.
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType, class Contains>
|
2017-04-26 10:26:39 +02:00
|
|
|
static void do_referent(oop obj, OopClosureType* closure, Contains& contains);
|
|
|
|
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType, class Contains>
|
2017-04-26 10:26:39 +02:00
|
|
|
static void do_next(oop obj, OopClosureType* closure, Contains& contains);
|
|
|
|
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType, class Contains>
|
2017-04-26 10:26:39 +02:00
|
|
|
static void do_discovered(oop obj, OopClosureType* closure, Contains& contains);
|
|
|
|
|
|
|
|
template <typename T, class OopClosureType>
|
|
|
|
static bool try_discover(oop obj, ReferenceType type, OopClosureType* closure);
|
|
|
|
|
|
|
|
// Do discovery while handling InstanceRefKlasses. Reference discovery
|
|
|
|
// is only done if the closure provides a ReferenceProcessor.
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType, class Contains>
|
2017-04-26 10:26:39 +02:00
|
|
|
static void oop_oop_iterate_discovery(oop obj, ReferenceType type, OopClosureType* closure, Contains& contains);
|
2017-05-09 11:03:45 +02:00
|
|
|
|
|
|
|
// Used for a special case in G1 where the closure needs to be applied
|
|
|
|
// to the discovered field. Reference discovery is also done if the
|
|
|
|
// closure provides a ReferenceProcessor.
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType, class Contains>
|
2017-05-09 11:03:45 +02:00
|
|
|
static void oop_oop_iterate_discovered_and_discovery(oop obj, ReferenceType type, OopClosureType* closure, Contains& contains);
|
2017-04-26 10:26:39 +02:00
|
|
|
|
|
|
|
// Apply the closure to all fields. No reference discovery is done.
|
2018-05-26 06:59:49 +02:00
|
|
|
template <typename T, class OopClosureType, class Contains>
|
2017-04-26 10:26:39 +02:00
|
|
|
static void oop_oop_iterate_fields(oop obj, OopClosureType* closure, Contains& contains);
|
|
|
|
|
2018-06-27 15:02:53 +02:00
|
|
|
// Apply the closure to all fields, except the referent field. No reference discovery is done.
|
|
|
|
template <typename T, class OopClosureType, class Contains>
|
|
|
|
static void oop_oop_iterate_fields_except_referent(oop obj, OopClosureType* closure, Contains& contains);
|
|
|
|
|
2017-04-26 10:26:39 +02:00
|
|
|
template <typename T>
|
2017-05-09 11:04:06 +02:00
|
|
|
static void trace_reference_gc(const char *s, oop obj) NOT_DEBUG_RETURN;
|
2015-04-02 10:04:27 +02:00
|
|
|
|
|
|
|
public:
|
2007-12-01 00:00:00 +00:00
|
|
|
// Update non-static oop maps so 'referent', 'nextPending' and
|
|
|
|
// 'discovered' will look like non-oops
|
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 update_nonstatic_oop_maps(Klass* k);
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
// Verification
|
|
|
|
void oop_verify_on(oop obj, outputStream* st);
|
|
|
|
};
|
2010-11-23 13:22:55 -08:00
|
|
|
|
2019-01-10 15:13:51 -05:00
|
|
|
#endif // SHARE_OOPS_INSTANCEREFKLASS_HPP
|