author | lfoltan |
Mon, 25 Jun 2018 10:34:46 -0400 | |
changeset 50759 | 00c4edaf2017 |
parent 50746 | 85789fb05154 |
child 51334 | cc2c79d22508 |
permissions | -rw-r--r-- |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
1 |
/* |
48860
5bce1b7e7800
8190359: Reduce the number of recorded klass dependencies
hseigel
parents:
48637
diff
changeset
|
2 |
* Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
4 |
* |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
8 |
* |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
14847 | 11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
13 |
* accompanied this code). |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
14 |
* |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
18 |
* |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
21 |
* questions. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
22 |
* |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
23 |
*/ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
24 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
25 |
#ifndef SHARE_VM_CLASSFILE_CLASSLOADERDATA_HPP |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
26 |
#define SHARE_VM_CLASSFILE_CLASSLOADERDATA_HPP |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
27 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
28 |
#include "memory/allocation.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
29 |
#include "memory/memRegion.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
30 |
#include "memory/metaspace.hpp" |
46961
c9094b1e5f87
8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents:
46746
diff
changeset
|
31 |
#include "oops/oopHandle.hpp" |
49738
a7bc87a63dd8
8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents:
49603
diff
changeset
|
32 |
#include "oops/weakHandle.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
33 |
#include "runtime/mutex.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
34 |
#include "utilities/growableArray.hpp" |
27673
df559a888b9f
8065361: Fixup headers and definitions for INCLUDE_TRACE
mgronlun
parents:
27461
diff
changeset
|
35 |
#include "utilities/macros.hpp" |
50113 | 36 |
#if INCLUDE_JFR |
37 |
#include "jfr/support/jfrTraceIdExtension.hpp" |
|
18025 | 38 |
#endif |
39 |
||
50634
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
40 |
// external name (synthetic) for the primordial "bootstrap" class loader instance |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
41 |
#define BOOTSTRAP_LOADER_NAME "bootstrap" |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
42 |
#define BOOTSTRAP_LOADER_NAME_LEN 9 |
50113 | 43 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
44 |
// |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
45 |
// A class loader represents a linkset. Conceptually, a linkset identifies |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
46 |
// the complete transitive closure of resolved links that a dynamic linker can |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
47 |
// produce. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
48 |
// |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
49 |
// A ClassLoaderData also encapsulates the allocation space, called a metaspace, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
50 |
// used by the dynamic linker to allocate the runtime representation of all |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
51 |
// the types it defines. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
52 |
// |
46729 | 53 |
// ClassLoaderData are stored in the runtime representation of classes, |
54 |
// and provides iterators for root tracing and other GC operations. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
55 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
56 |
class ClassLoaderData; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
57 |
class JNIMethodBlock; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
58 |
class Metadebug; |
36508 | 59 |
class ModuleEntry; |
60 |
class PackageEntry; |
|
61 |
class ModuleEntryTable; |
|
62 |
class PackageEntryTable; |
|
46729 | 63 |
class DictionaryEntry; |
64 |
class Dictionary; |
|
18025 | 65 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
66 |
// GC root for walking class loader data created |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
67 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
68 |
class ClassLoaderDataGraph : public AllStatic { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
69 |
friend class ClassLoaderData; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
70 |
friend class ClassLoaderDataGraphMetaspaceIterator; |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
71 |
friend class ClassLoaderDataGraphKlassIteratorAtomic; |
46729 | 72 |
friend class ClassLoaderDataGraphKlassIteratorStatic; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
73 |
friend class VMStructs; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
74 |
private: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
75 |
// All CLDs (except the null CLD) can be reached by walking _head->_next->... |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
76 |
static ClassLoaderData* _head; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
77 |
static ClassLoaderData* _unloading; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
78 |
// CMS support. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
79 |
static ClassLoaderData* _saved_head; |
25371
564ab3b08082
8047812: Ensure ClassLoaderDataGraph::classes_unloading_do only delivers klasses from CLDs with non-reclaimed class loader oops
mgronlun
parents:
25325
diff
changeset
|
80 |
static ClassLoaderData* _saved_unloading; |
24457
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
81 |
static bool _should_purge; |
27461
90e9e0f9c0c5
8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents:
27247
diff
changeset
|
82 |
// OOM has been seen in metaspace allocation. Used to prevent some |
90e9e0f9c0c5
8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents:
27247
diff
changeset
|
83 |
// allocations until class unloading |
90e9e0f9c0c5
8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents:
27247
diff
changeset
|
84 |
static bool _metaspace_oom; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
85 |
|
48884
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
86 |
static volatile size_t _num_instance_classes; |
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
87 |
static volatile size_t _num_array_classes; |
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
88 |
|
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49818
diff
changeset
|
89 |
static ClassLoaderData* add_to_graph(Handle class_loader, bool anonymous); |
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
90 |
static ClassLoaderData* add(Handle class_loader, bool anonymous); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
91 |
public: |
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
92 |
static ClassLoaderData* find_or_create(Handle class_loader); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
93 |
static void purge(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
94 |
static void clear_claimed_marks(); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
95 |
// oops do |
47580 | 96 |
static void oops_do(OopClosure* f, bool must_claim); |
97 |
static void keep_alive_oops_do(OopClosure* blk, bool must_claim); |
|
98 |
static void always_strong_oops_do(OopClosure* blk, bool must_claim); |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
99 |
// cld do |
25051
8110ec6e7340
8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents:
24457
diff
changeset
|
100 |
static void cld_do(CLDClosure* cl); |
42639
762117d57d05
8170672: Event-based tracing to support classloader instances
mgronlun
parents:
40358
diff
changeset
|
101 |
static void cld_unloading_do(CLDClosure* cl); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
102 |
static void roots_cld_do(CLDClosure* strong, CLDClosure* weak); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
103 |
static void keep_alive_cld_do(CLDClosure* cl); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
104 |
static void always_strong_cld_do(CLDClosure* cl); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
105 |
// klass do |
46380
4a51438196cf
8026985: Rewrite SystemDictionary::classes_do and Dictionary::classes_do to use KlassClosure
coleenp
parents:
46338
diff
changeset
|
106 |
// Walking classes through the ClassLoaderDataGraph include array classes. It also includes |
4a51438196cf
8026985: Rewrite SystemDictionary::classes_do and Dictionary::classes_do to use KlassClosure
coleenp
parents:
46338
diff
changeset
|
107 |
// classes that are allocated but not loaded, classes that have errors, and scratch classes |
4a51438196cf
8026985: Rewrite SystemDictionary::classes_do and Dictionary::classes_do to use KlassClosure
coleenp
parents:
46338
diff
changeset
|
108 |
// for redefinition. These classes are removed during the next class unloading. |
4a51438196cf
8026985: Rewrite SystemDictionary::classes_do and Dictionary::classes_do to use KlassClosure
coleenp
parents:
46338
diff
changeset
|
109 |
// Walking the ClassLoaderDataGraph also includes anonymous classes. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
110 |
static void classes_do(KlassClosure* klass_closure); |
18025 | 111 |
static void classes_do(void f(Klass* const)); |
23526
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
22905
diff
changeset
|
112 |
static void methods_do(void f(Method*)); |
36508 | 113 |
static void modules_do(void f(ModuleEntry*)); |
114 |
static void modules_unloading_do(void f(ModuleEntry*)); |
|
115 |
static void packages_do(void f(PackageEntry*)); |
|
116 |
static void packages_unloading_do(void f(PackageEntry*)); |
|
21183
e148e499e5cd
8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents:
18025
diff
changeset
|
117 |
static void loaded_classes_do(KlassClosure* klass_closure); |
18025 | 118 |
static void classes_unloading_do(void f(Klass* const)); |
49818
e57e6addb978
8201505: Use WeakHandle for ProtectionDomainCacheTable and ResolvedMethodTable
coleenp
parents:
49738
diff
changeset
|
119 |
static bool do_unloading(bool clean_previous_versions); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
120 |
|
46729 | 121 |
// dictionary do |
122 |
// Iterate over all klasses in dictionary, but |
|
123 |
// just the classes from defining class loaders. |
|
124 |
static void dictionary_classes_do(void f(InstanceKlass*)); |
|
125 |
// Added for initialize_itable_for_klass to handle exceptions. |
|
126 |
static void dictionary_classes_do(void f(InstanceKlass*, TRAPS), TRAPS); |
|
127 |
||
128 |
// Iterate all classes and their class loaders, including initiating class loaders. |
|
129 |
static void dictionary_all_entries_do(void f(InstanceKlass*, ClassLoaderData*)); |
|
130 |
||
131 |
// VM_CounterDecay iteration support |
|
132 |
static InstanceKlass* try_get_next_class(); |
|
133 |
||
134 |
static void verify_dictionary(); |
|
46742 | 135 |
static void print_dictionary(outputStream* st); |
136 |
static void print_dictionary_statistics(outputStream* st); |
|
46729 | 137 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
138 |
// CMS support. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
139 |
static void remember_new_clds(bool remember) { _saved_head = (remember ? _head : NULL); } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
140 |
static GrowableArray<ClassLoaderData*>* new_clds(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
141 |
|
24457
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
142 |
static void set_should_purge(bool b) { _should_purge = b; } |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
143 |
static void purge_if_needed() { |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
144 |
// Only purge the CLDG for CMS if concurrent sweep is complete. |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
145 |
if (_should_purge) { |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
146 |
purge(); |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
147 |
// reset for next time. |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
148 |
set_should_purge(false); |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
149 |
} |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
150 |
} |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
23526
diff
changeset
|
151 |
|
47774 | 152 |
static int resize_if_needed(); |
153 |
||
27461
90e9e0f9c0c5
8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents:
27247
diff
changeset
|
154 |
static bool has_metaspace_oom() { return _metaspace_oom; } |
90e9e0f9c0c5
8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents:
27247
diff
changeset
|
155 |
static void set_metaspace_oom(bool value) { _metaspace_oom = value; } |
90e9e0f9c0c5
8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents:
27247
diff
changeset
|
156 |
|
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
157 |
static void print_on(outputStream * const out) PRODUCT_RETURN; |
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
158 |
static void print() { print_on(tty); } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
159 |
static void verify(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
160 |
|
48884
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
161 |
// instance and array class counters |
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
162 |
static inline size_t num_instance_classes(); |
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
163 |
static inline size_t num_array_classes(); |
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
164 |
static inline void inc_instance_classes(size_t count); |
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
165 |
static inline void dec_instance_classes(size_t count); |
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
166 |
static inline void inc_array_classes(size_t count); |
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
167 |
static inline void dec_array_classes(size_t count); |
7e17b00dc245
8196923: [REDO] NMT: Report array class count in NMT summary
zgu
parents:
48874
diff
changeset
|
168 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
169 |
#ifndef PRODUCT |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
170 |
static bool contains_loader_data(ClassLoaderData* loader_data); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
171 |
#endif |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
172 |
}; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
173 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
174 |
// ClassLoaderData class |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
175 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
176 |
class ClassLoaderData : public CHeapObj<mtClass> { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
177 |
friend class VMStructs; |
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
178 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
179 |
private: |
49364
601146c66cad
8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents:
49352
diff
changeset
|
180 |
class ChunkedHandleList { |
44084
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
181 |
struct Chunk : public CHeapObj<mtClass> { |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
182 |
static const size_t CAPACITY = 32; |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
183 |
|
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
184 |
oop _data[CAPACITY]; |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
185 |
volatile juint _size; |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
186 |
Chunk* _next; |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
187 |
|
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
188 |
Chunk(Chunk* c) : _next(c), _size(0) { } |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
189 |
}; |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
190 |
|
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47580
diff
changeset
|
191 |
Chunk* volatile _head; |
44084
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
192 |
|
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
193 |
void oops_do_chunk(OopClosure* f, Chunk* c, const juint size); |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
194 |
|
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
195 |
public: |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
196 |
ChunkedHandleList() : _head(NULL) {} |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
197 |
~ChunkedHandleList(); |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
198 |
|
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
199 |
// Only one thread at a time can add, guarded by ClassLoaderData::metaspace_lock(). |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
200 |
// However, multiple threads can execute oops_do concurrently with add. |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
201 |
oop* add(oop o); |
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
202 |
bool contains(oop p); |
49403
58fdb6c2a274
8199272: Broken assertion in ClassLoaderData::remove_handle
coleenp
parents:
49401
diff
changeset
|
203 |
NOT_PRODUCT(bool owner_of(oop* p);) |
44084
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
204 |
void oops_do(OopClosure* f); |
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
205 |
|
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
206 |
int count() const; |
44084
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
207 |
}; |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
208 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
209 |
friend class ClassLoaderDataGraph; |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
210 |
friend class ClassLoaderDataGraphKlassIteratorAtomic; |
46729 | 211 |
friend class ClassLoaderDataGraphKlassIteratorStatic; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
212 |
friend class ClassLoaderDataGraphMetaspaceIterator; |
50746
85789fb05154
8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents:
50634
diff
changeset
|
213 |
friend class Klass; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
214 |
friend class MetaDataFactory; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
215 |
friend class Method; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
216 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
217 |
static ClassLoaderData * _the_null_class_loader_data; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
218 |
|
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49818
diff
changeset
|
219 |
WeakHandle<vm_class_loader_data> _holder; // The oop that determines lifetime of this class loader |
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49818
diff
changeset
|
220 |
OopHandle _class_loader; // The instance of java/lang/ClassLoader associated with |
49738
a7bc87a63dd8
8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents:
49603
diff
changeset
|
221 |
// this ClassLoaderData |
16684
2af47517ffbd
8010196: NPG: Internal Error: Metaspace allocation lock -- possible deadlock
mgerdin
parents:
16617
diff
changeset
|
222 |
|
49401
0c71baee49a7
8199431: Split up class Metaspace into a static and a non-static part
stuefe
parents:
49364
diff
changeset
|
223 |
ClassLoaderMetaspace * volatile _metaspace; // Meta-space where meta-data defined by the |
38937
2bf3c37c4841
8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents:
38014
diff
changeset
|
224 |
// classes in the class loader are allocated. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
225 |
Mutex* _metaspace_lock; // Locks the metaspace for allocations and setup. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
226 |
bool _unloading; // true if this class loader goes away |
14816 | 227 |
bool _is_anonymous; // if this CLD is for an anonymous class |
47580 | 228 |
|
229 |
// Remembered sets support for the oops in the class loader data. |
|
230 |
bool _modified_oops; // Card Table Equivalent (YC/CMS support) |
|
231 |
bool _accumulated_modified_oops; // Mod Union Equivalent (CMS support) |
|
232 |
||
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49818
diff
changeset
|
233 |
s2 _keep_alive; // if this CLD is kept alive. |
40358
48774f26918a
8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents:
39616
diff
changeset
|
234 |
// Used for anonymous classes and the boot class |
48774f26918a
8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents:
39616
diff
changeset
|
235 |
// loader. _keep_alive does not need to be volatile or |
38014
8731fa11f766
8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents:
36508
diff
changeset
|
236 |
// atomic since there is one unique CLD per anonymous class. |
47580 | 237 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
238 |
volatile int _claimed; // true if claimed, for example during GC traces. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
239 |
// To avoid applying oop closure more than once. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
240 |
// Has to be an int because we cas it. |
44084
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
241 |
ChunkedHandleList _handles; // Handles to constant pool arrays, Modules, etc, which |
501b6d07e6dd
8168914: Crash in ClassLoaderData/JNIHandleBlock::oops_do during concurrent marking
ehelin
parents:
43410
diff
changeset
|
242 |
// have the same life cycle of the corresponding ClassLoader. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
243 |
|
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
244 |
NOT_PRODUCT(volatile int _dependency_count;) // number of class loader dependencies |
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
245 |
|
38937
2bf3c37c4841
8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents:
38014
diff
changeset
|
246 |
Klass* volatile _klasses; // The classes defined by the class loader. |
2bf3c37c4841
8154750: Add missing OrderAccess operations to ClassLoaderData lock-free data structures
dholmes
parents:
38014
diff
changeset
|
247 |
PackageEntryTable* volatile _packages; // The packages defined by the class loader. |
46729 | 248 |
ModuleEntryTable* volatile _modules; // The modules defined by the class loader. |
46387 | 249 |
ModuleEntry* _unnamed_module; // This class loader's unnamed module. |
46729 | 250 |
Dictionary* _dictionary; // The loaded InstanceKlasses, including initiated by this class loader |
31046
d01ad7a0ecb0
8081320: Backout JDK-8059340: ConstantPool::_resolved_references is missing in heap dump
vlivanov
parents:
31038
diff
changeset
|
251 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
252 |
// These method IDs are created for the class loader and set to NULL when the |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
253 |
// class loader is unloaded. They are rarely freed, only for redefine classes |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
254 |
// and if they lose a data race in InstanceKlass. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
255 |
JNIMethodBlock* _jmethod_ids; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
256 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
257 |
// Metadata to be deallocated when it's safe at class unloading, when |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
258 |
// this class loader isn't unloaded itself. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
259 |
GrowableArray<Metadata*>* _deallocate_list; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
260 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
261 |
// Support for walking class loader data objects |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
262 |
ClassLoaderData* _next; /// Next loader_datas created |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
263 |
|
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49818
diff
changeset
|
264 |
Klass* _class_loader_klass; |
50634
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
265 |
Symbol* _name; |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
266 |
Symbol* _name_and_id; |
50113 | 267 |
JFR_ONLY(DEFINE_TRACE_ID_FIELD;) |
42639
762117d57d05
8170672: Event-based tracing to support classloader instances
mgronlun
parents:
40358
diff
changeset
|
268 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
269 |
void set_next(ClassLoaderData* next) { _next = next; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
270 |
ClassLoaderData* next() const { return _next; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
271 |
|
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
272 |
ClassLoaderData(Handle h_class_loader, bool is_anonymous); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
273 |
~ClassLoaderData(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
274 |
|
47580 | 275 |
// The CLD are not placed in the Heap, so the Card Table or |
276 |
// the Mod Union Table can't be used to mark when CLD have modified oops. |
|
277 |
// The CT and MUT bits saves this information for the whole class loader data. |
|
278 |
void clear_modified_oops() { _modified_oops = false; } |
|
279 |
public: |
|
280 |
void record_modified_oops() { _modified_oops = true; } |
|
281 |
bool has_modified_oops() { return _modified_oops; } |
|
282 |
||
283 |
void accumulate_modified_oops() { if (has_modified_oops()) _accumulated_modified_oops = true; } |
|
284 |
void clear_accumulated_modified_oops() { _accumulated_modified_oops = false; } |
|
285 |
bool has_accumulated_modified_oops() { return _accumulated_modified_oops; } |
|
286 |
private: |
|
287 |
||
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
13759
diff
changeset
|
288 |
void unload(); |
38014
8731fa11f766
8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents:
36508
diff
changeset
|
289 |
bool keep_alive() const { return _keep_alive > 0; } |
49738
a7bc87a63dd8
8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents:
49603
diff
changeset
|
290 |
|
a7bc87a63dd8
8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents:
49603
diff
changeset
|
291 |
oop holder_phantom() const; |
18025 | 292 |
void classes_do(void f(Klass*)); |
21183
e148e499e5cd
8024423: JVMTI: GetLoadedClasses doesn't enumerate anonymous classes
farvidsson
parents:
18025
diff
changeset
|
293 |
void loaded_classes_do(KlassClosure* klass_closure); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
294 |
void classes_do(void f(InstanceKlass*)); |
23526
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
22905
diff
changeset
|
295 |
void methods_do(void f(Method*)); |
36508 | 296 |
void modules_do(void f(ModuleEntry*)); |
297 |
void packages_do(void f(PackageEntry*)); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
298 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
299 |
// Deallocate free list during class unloading. |
48395 | 300 |
void free_deallocate_list(); // for the classes that are not unloaded |
301 |
void unload_deallocate_list(); // for the classes that are unloaded |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
302 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
303 |
// Allocate out of this class loader data |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
304 |
MetaWord* allocate(size_t size); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
305 |
|
46729 | 306 |
Dictionary* create_dictionary(); |
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49818
diff
changeset
|
307 |
|
50759
00c4edaf2017
8205509: assert(_name_and_id != 0LL) failed: encountered a class loader null name and id
lfoltan
parents:
50746
diff
changeset
|
308 |
void initialize_name(Handle class_loader); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
309 |
public: |
48529
6a5e7a575830
8193933: Export ClassLoaderData claim state to support interleaved object traversal
mgronlun
parents:
48395
diff
changeset
|
310 |
// GC interface. |
6a5e7a575830
8193933: Export ClassLoaderData claim state to support interleaved object traversal
mgronlun
parents:
48395
diff
changeset
|
311 |
void clear_claimed() { _claimed = 0; } |
6a5e7a575830
8193933: Export ClassLoaderData claim state to support interleaved object traversal
mgronlun
parents:
48395
diff
changeset
|
312 |
bool claimed() const { return _claimed == 1; } |
6a5e7a575830
8193933: Export ClassLoaderData claim state to support interleaved object traversal
mgronlun
parents:
48395
diff
changeset
|
313 |
bool claim(); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
314 |
|
49738
a7bc87a63dd8
8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents:
49603
diff
changeset
|
315 |
bool is_alive() const; |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
316 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
317 |
// Accessors |
49401
0c71baee49a7
8199431: Split up class Metaspace into a static and a non-static part
stuefe
parents:
49364
diff
changeset
|
318 |
ClassLoaderMetaspace* metaspace_or_null() const { return _metaspace; } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
319 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
320 |
static ClassLoaderData* the_null_class_loader_data() { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
321 |
return _the_null_class_loader_data; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
322 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
323 |
|
25325 | 324 |
Mutex* metaspace_lock() const { return _metaspace_lock; } |
325 |
||
14816 | 326 |
bool is_anonymous() const { return _is_anonymous; } |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
13759
diff
changeset
|
327 |
|
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
328 |
static void init_null_class_loader_data(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
329 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
330 |
bool is_the_null_class_loader_data() const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
331 |
return this == _the_null_class_loader_data; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
332 |
} |
49352
0b48f0aa79ec
8191585: VM anonymous classes created during CDS dump time cause crash
iklam
parents:
49348
diff
changeset
|
333 |
|
0b48f0aa79ec
8191585: VM anonymous classes created during CDS dump time cause crash
iklam
parents:
49348
diff
changeset
|
334 |
// Returns true if this class loader data is for the system class loader. |
0b48f0aa79ec
8191585: VM anonymous classes created during CDS dump time cause crash
iklam
parents:
49348
diff
changeset
|
335 |
// (Note that the class loader data may be anonymous.) |
39616
f82b1f888578
8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents:
38937
diff
changeset
|
336 |
bool is_system_class_loader_data() const; |
49352
0b48f0aa79ec
8191585: VM anonymous classes created during CDS dump time cause crash
iklam
parents:
49348
diff
changeset
|
337 |
|
0b48f0aa79ec
8191585: VM anonymous classes created during CDS dump time cause crash
iklam
parents:
49348
diff
changeset
|
338 |
// Returns true if this class loader data is for the platform class loader. |
0b48f0aa79ec
8191585: VM anonymous classes created during CDS dump time cause crash
iklam
parents:
49348
diff
changeset
|
339 |
// (Note that the class loader data may be anonymous.) |
36508 | 340 |
bool is_platform_class_loader_data() const; |
48871
120d6893f32f
8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents:
48860
diff
changeset
|
341 |
|
120d6893f32f
8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents:
48860
diff
changeset
|
342 |
// Returns true if this class loader data is for the boot class loader. |
120d6893f32f
8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents:
48860
diff
changeset
|
343 |
// (Note that the class loader data may be anonymous.) |
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49818
diff
changeset
|
344 |
inline bool is_boot_class_loader_data() const; |
48871
120d6893f32f
8190235: Clarify ClassLoaderData::is_*_class_loader_data() method implementations
hseigel
parents:
48860
diff
changeset
|
345 |
|
39616
f82b1f888578
8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents:
38937
diff
changeset
|
346 |
bool is_builtin_class_loader_data() const; |
48860
5bce1b7e7800
8190359: Reduce the number of recorded klass dependencies
hseigel
parents:
48637
diff
changeset
|
347 |
bool is_permanent_class_loader_data() const; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
348 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
349 |
// The Metaspace is created lazily so may be NULL. This |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
350 |
// method will allocate a Metaspace if needed. |
49401
0c71baee49a7
8199431: Split up class Metaspace into a static and a non-static part
stuefe
parents:
49364
diff
changeset
|
351 |
ClassLoaderMetaspace* metaspace_non_null(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
352 |
|
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49818
diff
changeset
|
353 |
inline oop class_loader() const; |
22900 | 354 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
355 |
// Returns true if this class loader data is for a loader going away. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
356 |
bool is_unloading() const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
357 |
assert(!(is_the_null_class_loader_data() && _unloading), "The null class loader can never be unloaded"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
358 |
return _unloading; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
359 |
} |
22900 | 360 |
|
40358
48774f26918a
8162553: Crash in class unloading due to null CLD having a zero _keep_alive value
lfoltan
parents:
39616
diff
changeset
|
361 |
// Used to refcount an anonymous class's CLD in order to |
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49818
diff
changeset
|
362 |
// indicate their aliveness. |
38014
8731fa11f766
8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents:
36508
diff
changeset
|
363 |
void inc_keep_alive(); |
8731fa11f766
8152949: Jigsaw crash when Klass in _fixup_module_field_list is unloaded
lfoltan
parents:
36508
diff
changeset
|
364 |
void dec_keep_alive(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
365 |
|
49738
a7bc87a63dd8
8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents:
49603
diff
changeset
|
366 |
void initialize_holder(Handle holder); |
a7bc87a63dd8
8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents:
49603
diff
changeset
|
367 |
|
47580 | 368 |
void oops_do(OopClosure* f, bool must_claim, bool clear_modified_oops = false); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
369 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
370 |
void classes_do(KlassClosure* klass_closure); |
46729 | 371 |
Klass* klasses() { return _klasses; } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
372 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
373 |
JNIMethodBlock* jmethod_ids() const { return _jmethod_ids; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
374 |
void set_jmethod_ids(JNIMethodBlock* new_block) { _jmethod_ids = new_block; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
375 |
|
46729 | 376 |
void print() { print_on(tty); } |
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
377 |
void print_on(outputStream* out) const PRODUCT_RETURN; |
46729 | 378 |
void print_value() { print_value_on(tty); } |
15437 | 379 |
void print_value_on(outputStream* out) const; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
380 |
void verify(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
381 |
|
46961
c9094b1e5f87
8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents:
46746
diff
changeset
|
382 |
OopHandle add_handle(Handle h); |
47095
9d21da6fe729
8181170: resolved_references array leaks for RedefineClasses
coleenp
parents:
46961
diff
changeset
|
383 |
void remove_handle(OopHandle h); |
46961
c9094b1e5f87
8186088: ConstantPoolCache::_resolved_references is not a JNIHandle
coleenp
parents:
46746
diff
changeset
|
384 |
void init_handle_locked(OopHandle& pd, Handle h); // used for concurrent access to ModuleEntry::_pd field |
34666 | 385 |
void add_class(Klass* k, bool publicize = true); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
386 |
void remove_class(Klass* k); |
22794
f1c014ad3754
8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents:
22201
diff
changeset
|
387 |
bool contains_klass(Klass* k); |
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
388 |
void record_dependency(const Klass* to); |
46420
227f72691ac1
8179235: PackageEntryTables should be created eagerly
hseigel
parents:
46387
diff
changeset
|
389 |
PackageEntryTable* packages() { return _packages; } |
46387 | 390 |
ModuleEntry* unnamed_module() { return _unnamed_module; } |
36508 | 391 |
ModuleEntryTable* modules(); |
392 |
bool modules_defined() { return (_modules != NULL); } |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
393 |
|
46729 | 394 |
// Loaded class dictionary |
395 |
Dictionary* dictionary() const { return _dictionary; } |
|
396 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
397 |
void add_to_deallocate_list(Metadata* m); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
398 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
399 |
static ClassLoaderData* class_loader_data(oop loader); |
15847
f9ce2cd20dee
8008549: NPG: SystemDictionary::find(...) unnecessarily keeps class loaders alive
stefank
parents:
15437
diff
changeset
|
400 |
static ClassLoaderData* class_loader_data_or_null(oop loader); |
49348
fde3feaaa4ed
8198926: Move ClassLoaderData::_dependencies to ClassLoaderData::_handles
coleenp
parents:
48884
diff
changeset
|
401 |
static ClassLoaderData* anonymous_class_loader_data(Handle loader); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
402 |
|
50634
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
403 |
// Returns Klass* of associated class loader, or NULL if associated loader is 'bootstrap'. |
50302
fd2fccf3b079
8203455: jcmd: VM.metaspace: print loader name for anonymous CLDs
stuefe
parents:
50113
diff
changeset
|
404 |
// Also works if unloading. |
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49818
diff
changeset
|
405 |
Klass* class_loader_klass() const { return _class_loader_klass; } |
50302
fd2fccf3b079
8203455: jcmd: VM.metaspace: print loader name for anonymous CLDs
stuefe
parents:
50113
diff
changeset
|
406 |
|
50634
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
407 |
// Returns the class loader's explict name as specified during |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
408 |
// construction or the class loader's qualified class name. |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
409 |
// Works during unloading. |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
410 |
const char* loader_name() const; |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
411 |
// Returns the explicitly specified class loader name or NULL. |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
412 |
Symbol* name() const { return _name; } |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
413 |
|
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
414 |
// Obtain the class loader's _name_and_id, works during unloading. |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
415 |
const char* loader_name_and_id() const; |
c349d409262a
8202605: Standardize on ClassLoaderData::loader_name() throughout the VM to obtain a class loader's name
lfoltan
parents:
50302
diff
changeset
|
416 |
Symbol* name_and_id() const { return _name_and_id; } |
50302
fd2fccf3b079
8203455: jcmd: VM.metaspace: print loader name for anonymous CLDs
stuefe
parents:
50113
diff
changeset
|
417 |
|
50113 | 418 |
JFR_ONLY(DEFINE_TRACE_ID_METHODS;) |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
419 |
}; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
420 |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
421 |
// An iterator that distributes Klasses to parallel worker threads. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
422 |
class ClassLoaderDataGraphKlassIteratorAtomic : public StackObj { |
29469
2213171cca5b
8074561: Wrong volatile qualifier for field ClassLoaderDataGraphKlassIteratorAtomic::_next_klass
asiebenborn
parents:
27673
diff
changeset
|
423 |
Klass* volatile _next_klass; |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
424 |
public: |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
425 |
ClassLoaderDataGraphKlassIteratorAtomic(); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
426 |
Klass* next_klass(); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
427 |
private: |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
428 |
static Klass* next_klass_in_cldg(Klass* klass); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
429 |
}; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
430 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
431 |
class ClassLoaderDataGraphMetaspaceIterator : public StackObj { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
432 |
ClassLoaderData* _data; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
433 |
public: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
434 |
ClassLoaderDataGraphMetaspaceIterator(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
435 |
~ClassLoaderDataGraphMetaspaceIterator(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
436 |
bool repeat() { return _data != NULL; } |
49401
0c71baee49a7
8199431: Split up class Metaspace into a static and a non-static part
stuefe
parents:
49364
diff
changeset
|
437 |
ClassLoaderMetaspace* get_next() { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
438 |
assert(_data != NULL, "Should not be NULL in call to the iterator"); |
49401
0c71baee49a7
8199431: Split up class Metaspace into a static and a non-static part
stuefe
parents:
49364
diff
changeset
|
439 |
ClassLoaderMetaspace* result = _data->metaspace_or_null(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
440 |
_data = _data->next(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
441 |
// This result might be NULL for class loaders without metaspace |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
442 |
// yet. It would be nice to return only non-null results but |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
443 |
// there is no guarantee that there will be a non-null result |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
444 |
// down the list so the caller is going to have to check. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
445 |
return result; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
446 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
447 |
}; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
diff
changeset
|
448 |
#endif // SHARE_VM_CLASSFILE_CLASSLOADERDATA_HPP |