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
|
|
|
/*
|
2017-04-26 10:26:39 +02:00
|
|
|
* Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
|
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
|
|
|
* 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_INSTANCECLASSLOADERKLASS_HPP
|
|
|
|
#define SHARE_VM_OOPS_INSTANCECLASSLOADERKLASS_HPP
|
|
|
|
|
|
|
|
#include "oops/instanceKlass.hpp"
|
2013-01-23 13:02:39 -05:00
|
|
|
#include "utilities/macros.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
|
|
|
|
2015-12-08 20:04:03 +01:00
|
|
|
class ClassFileParser;
|
|
|
|
|
2012-09-07 12:04:16 -04:00
|
|
|
// An InstanceClassLoaderKlass is a specialization of the InstanceKlass. It does
|
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
|
|
|
// not add any field. It is added to walk the dependencies for the class loader
|
|
|
|
// key that this class loader points to. This is how the loader_data graph is
|
|
|
|
// walked and dependant class loaders are kept alive. I thought we walked
|
|
|
|
// the list later?
|
|
|
|
|
2012-09-07 12:04:16 -04:00
|
|
|
class InstanceClassLoaderKlass: 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 VMStructs;
|
|
|
|
friend class InstanceKlass;
|
2018-05-26 06:59:49 +02:00
|
|
|
public:
|
|
|
|
static const KlassID ID = InstanceClassLoaderKlassID;
|
|
|
|
|
|
|
|
private:
|
|
|
|
InstanceClassLoaderKlass(const ClassFileParser& parser) : InstanceKlass(parser, InstanceKlass::_misc_kind_class_loader, 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
|
|
|
|
|
|
|
public:
|
2012-09-07 12:04:16 -04:00
|
|
|
InstanceClassLoaderKlass() { assert(DumpSharedSpaces || UseSharedSpaces, "only for CDS"); }
|
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-04-02 10:04:27 +02:00
|
|
|
// GC specific object visitors
|
|
|
|
//
|
2018-05-04 11:41:35 +02:00
|
|
|
#if INCLUDE_PARALLELGC
|
2015-04-02 10:04:27 +02:00
|
|
|
// 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
|
|
|
|
|
|
|
|
// Oop fields (and metadata) iterators
|
|
|
|
//
|
|
|
|
// The InstanceClassLoaderKlass iterators also visit the CLD pointer (or mirror of anonymous klasses.)
|
|
|
|
|
2018-05-26 06:59:49 +02:00
|
|
|
public:
|
2015-04-02 10:04:27 +02:00
|
|
|
// Forward iteration
|
|
|
|
// Iterate over the 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 the 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);
|
2015-04-02 10:04:27 +02:00
|
|
|
|
|
|
|
// Bounded range iteration
|
|
|
|
// Iterate over the 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);
|
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
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SHARE_VM_OOPS_INSTANCECLASSLOADERKLASS_HPP
|