author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 59290 | 97d13893ec3c |
permissions | -rw-r--r-- |
1 | 1 |
/* |
53152 | 2 |
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4584
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4584
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4584
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49821
diff
changeset
|
26 |
#include "classfile/classLoaderData.inline.hpp" |
52014
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
27 |
#include "classfile/classLoaderDataGraph.inline.hpp" |
30764 | 28 |
#include "classfile/dictionary.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
29 |
#include "classfile/javaClasses.hpp" |
54347
235883996bc7
8221698: Remove redundant includes from popular header files
iklam
parents:
53153
diff
changeset
|
30 |
#include "classfile/moduleEntry.hpp" |
7397 | 31 |
#include "classfile/systemDictionary.hpp" |
32 |
#include "classfile/vmSymbols.hpp" |
|
30764 | 33 |
#include "gc/shared/collectedHeap.inline.hpp" |
35917
463d67f86eaa
8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents:
35900
diff
changeset
|
34 |
#include "logging/log.hpp" |
15437 | 35 |
#include "memory/heapInspection.hpp" |
52062
8dbf1a13af49
8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents:
52033
diff
changeset
|
36 |
#include "memory/heapShared.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
37 |
#include "memory/metadataFactory.hpp" |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
38 |
#include "memory/metaspaceClosure.hpp" |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
39 |
#include "memory/metaspaceShared.hpp" |
7397 | 40 |
#include "memory/oopFactory.hpp" |
41 |
#include "memory/resourceArea.hpp" |
|
54786 | 42 |
#include "memory/universe.hpp" |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
49393
diff
changeset
|
43 |
#include "oops/compressedOops.inline.hpp" |
7397 | 44 |
#include "oops/instanceKlass.hpp" |
45 |
#include "oops/klass.inline.hpp" |
|
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28731
diff
changeset
|
46 |
#include "oops/oop.inline.hpp" |
49816 | 47 |
#include "oops/oopHandle.inline.hpp" |
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
39400
diff
changeset
|
48 |
#include "runtime/atomic.hpp" |
49393 | 49 |
#include "runtime/handles.inline.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
14588
diff
changeset
|
50 |
#include "utilities/macros.hpp" |
29702
9ed339a5e096
8075809: Add missing includes of stack.inline.hpp
stefank
parents:
29081
diff
changeset
|
51 |
#include "utilities/stack.inline.hpp" |
47580 | 52 |
|
53 |
void Klass::set_java_mirror(Handle m) { |
|
54 |
assert(!m.is_null(), "New mirror should never be null."); |
|
55 |
assert(_java_mirror.resolve() == NULL, "should only be used to initialize mirror"); |
|
56 |
_java_mirror = class_loader_data()->add_handle(m); |
|
57 |
} |
|
58 |
||
52620
5f47b56cb867
8212992: Change mirror accessor in Klass::verify_on() to use AS_NO_KEEPALIVE
eosterlund
parents:
52438
diff
changeset
|
59 |
oop Klass::java_mirror_no_keepalive() const { |
5f47b56cb867
8212992: Change mirror accessor in Klass::verify_on() to use AS_NO_KEEPALIVE
eosterlund
parents:
52438
diff
changeset
|
60 |
return _java_mirror.peek(); |
5f47b56cb867
8212992: Change mirror accessor in Klass::verify_on() to use AS_NO_KEEPALIVE
eosterlund
parents:
52438
diff
changeset
|
61 |
} |
5f47b56cb867
8212992: Change mirror accessor in Klass::verify_on() to use AS_NO_KEEPALIVE
eosterlund
parents:
52438
diff
changeset
|
62 |
|
35544
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
63 |
bool Klass::is_cloneable() const { |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
64 |
return _access_flags.is_cloneable_fast() || |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
65 |
is_subtype_of(SystemDictionary::Cloneable_klass()); |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
66 |
} |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
67 |
|
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
68 |
void Klass::set_is_cloneable() { |
49786 | 69 |
if (name() == vmSymbols::java_lang_invoke_MemberName()) { |
35544
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
70 |
assert(is_final(), "no subclasses allowed"); |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
71 |
// MemberName cloning should not be intrinsified and always happen in JVM_Clone. |
49786 | 72 |
} else if (is_instance_klass() && InstanceKlass::cast(this)->reference_type() != REF_NONE) { |
73 |
// Reference cloning should not be intrinsified and always happen in JVM_Clone. |
|
74 |
} else { |
|
75 |
_access_flags.set_is_cloneable_fast(); |
|
35544
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
76 |
} |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
77 |
} |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
78 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
79 |
void Klass::set_name(Symbol* n) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
80 |
_name = n; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
81 |
if (_name != NULL) _name->increment_refcount(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
82 |
} |
1 | 83 |
|
17370
59a0620561fa
8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents:
16352
diff
changeset
|
84 |
bool Klass::is_subclass_of(const Klass* k) const { |
1 | 85 |
// Run up the super chain and check |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
86 |
if (this == k) return true; |
1 | 87 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
88 |
Klass* t = const_cast<Klass*>(this)->super(); |
1 | 89 |
|
90 |
while (t != NULL) { |
|
91 |
if (t == k) return true; |
|
14488 | 92 |
t = t->super(); |
1 | 93 |
} |
94 |
return false; |
|
95 |
} |
|
96 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
97 |
bool Klass::search_secondary_supers(Klass* k) const { |
1 | 98 |
// Put some extra logic here out-of-line, before the search proper. |
99 |
// This cuts down the size of the inline method. |
|
100 |
||
101 |
// This is necessary, since I am never in my own secondary_super list. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
102 |
if (this == k) |
1 | 103 |
return true; |
104 |
// Scan the array-of-objects for a match |
|
105 |
int cnt = secondary_supers()->length(); |
|
106 |
for (int i = 0; i < cnt; i++) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
107 |
if (secondary_supers()->at(i) == k) { |
1 | 108 |
((Klass*)this)->set_secondary_super_cache(k); |
109 |
return true; |
|
110 |
} |
|
111 |
} |
|
112 |
return false; |
|
113 |
} |
|
114 |
||
115 |
// Return self, except for abstract classes with exactly 1 |
|
116 |
// implementor. Then return the 1 concrete implementation. |
|
117 |
Klass *Klass::up_cast_abstract() { |
|
118 |
Klass *r = this; |
|
119 |
while( r->is_abstract() ) { // Receiver is abstract? |
|
120 |
Klass *s = r->subklass(); // Check for exactly 1 subklass |
|
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
121 |
if (s == NULL || s->next_sibling() != NULL) // Oops; wrong count; give up |
1 | 122 |
return this; // Return 'this' as a no-progress flag |
123 |
r = s; // Loop till find concrete class |
|
124 |
} |
|
125 |
return r; // Return the 1 concrete class |
|
126 |
} |
|
127 |
||
2131 | 128 |
// Find LCA in class hierarchy |
1 | 129 |
Klass *Klass::LCA( Klass *k2 ) { |
130 |
Klass *k1 = this; |
|
131 |
while( 1 ) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
132 |
if( k1->is_subtype_of(k2) ) return k2; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
133 |
if( k2->is_subtype_of(k1) ) return k1; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
134 |
k1 = k1->super(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
135 |
k2 = k2->super(); |
1 | 136 |
} |
137 |
} |
|
138 |
||
139 |
||
140 |
void Klass::check_valid_for_instantiation(bool throwError, TRAPS) { |
|
141 |
ResourceMark rm(THREAD); |
|
142 |
THROW_MSG(throwError ? vmSymbols::java_lang_InstantiationError() |
|
143 |
: vmSymbols::java_lang_InstantiationException(), external_name()); |
|
144 |
} |
|
145 |
||
146 |
||
147 |
void Klass::copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS) { |
|
50601 | 148 |
ResourceMark rm(THREAD); |
149 |
assert(s != NULL, "Throw NPE!"); |
|
150 |
THROW_MSG(vmSymbols::java_lang_ArrayStoreException(), |
|
151 |
err_msg("arraycopy: source type %s is not an array", s->klass()->external_name())); |
|
1 | 152 |
} |
153 |
||
154 |
||
155 |
void Klass::initialize(TRAPS) { |
|
156 |
ShouldNotReachHere(); |
|
157 |
} |
|
158 |
||
27020 | 159 |
Klass* Klass::find_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const { |
160 |
#ifdef ASSERT |
|
161 |
tty->print_cr("Error: find_field called on a klass oop." |
|
162 |
" Likely error: reflection method does not correctly" |
|
163 |
" wrap return value in a mirror object."); |
|
164 |
#endif |
|
165 |
ShouldNotReachHere(); |
|
166 |
return NULL; |
|
167 |
} |
|
1 | 168 |
|
50735
2f2af62dfac7
8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents:
50601
diff
changeset
|
169 |
Method* Klass::uncached_lookup_method(const Symbol* name, const Symbol* signature, |
2f2af62dfac7
8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents:
50601
diff
changeset
|
170 |
OverpassLookupMode overpass_mode, |
2f2af62dfac7
8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents:
50601
diff
changeset
|
171 |
PrivateLookupMode private_mode) const { |
1 | 172 |
#ifdef ASSERT |
173 |
tty->print_cr("Error: uncached_lookup_method called on a klass oop." |
|
174 |
" Likely error: reflection method does not correctly" |
|
175 |
" wrap return value in a mirror object."); |
|
176 |
#endif |
|
177 |
ShouldNotReachHere(); |
|
178 |
return NULL; |
|
179 |
} |
|
180 |
||
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
18687
diff
changeset
|
181 |
void* Klass::operator new(size_t size, ClassLoaderData* loader_data, size_t word_size, TRAPS) throw() { |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
182 |
return Metaspace::allocate(loader_data, word_size, MetaspaceObj::ClassType, THREAD); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
183 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
184 |
|
34666 | 185 |
// "Normal" instantiation is preceeded by a MetaspaceObj allocation |
186 |
// which zeros out memory - calloc equivalent. |
|
46324
8764956ec928
8005165: Remove CPU-dependent code in self-patching vtables
iklam
parents:
46271
diff
changeset
|
187 |
// The constructor is also used from CppVtableCloner, |
34666 | 188 |
// which doesn't zero out the memory before calling the constructor. |
189 |
// Need to set the _java_mirror field explicitly to not hit an assert that the field |
|
190 |
// should be NULL before setting it. |
|
50752 | 191 |
Klass::Klass(KlassID id) : _id(id), |
51334
cc2c79d22508
8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents:
51329
diff
changeset
|
192 |
_java_mirror(NULL), |
57777
90ead0febf56
8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents:
55629
diff
changeset
|
193 |
_prototype_header(markWord::prototype()), |
51334
cc2c79d22508
8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents:
51329
diff
changeset
|
194 |
_shared_class_path_index(-1) { |
49329 | 195 |
CDS_ONLY(_shared_class_flags = 0;) |
196 |
CDS_JAVA_HEAP_ONLY(_archived_mirror = 0;) |
|
34666 | 197 |
_primary_supers[0] = this; |
198 |
set_super_check_offset(in_bytes(primary_supers_offset())); |
|
1 | 199 |
} |
200 |
||
201 |
jint Klass::array_layout_helper(BasicType etype) { |
|
202 |
assert(etype >= T_BOOLEAN && etype <= T_OBJECT, "valid etype"); |
|
203 |
// Note that T_ARRAY is not allowed here. |
|
204 |
int hsize = arrayOopDesc::base_offset_in_bytes(etype); |
|
202
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
1
diff
changeset
|
205 |
int esize = type2aelembytes(etype); |
1 | 206 |
bool isobj = (etype == T_OBJECT); |
207 |
int tag = isobj ? _lh_array_tag_obj_value : _lh_array_tag_type_value; |
|
208 |
int lh = array_layout_helper(tag, hsize, etype, exact_log2(esize)); |
|
209 |
||
210 |
assert(lh < (int)_lh_neutral_value, "must look like an array layout"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
211 |
assert(layout_helper_is_array(lh), "correct kind"); |
1 | 212 |
assert(layout_helper_is_objArray(lh) == isobj, "correct kind"); |
213 |
assert(layout_helper_is_typeArray(lh) == !isobj, "correct kind"); |
|
214 |
assert(layout_helper_header_size(lh) == hsize, "correct decode"); |
|
215 |
assert(layout_helper_element_type(lh) == etype, "correct decode"); |
|
216 |
assert(1 << layout_helper_log2_element_size(lh) == esize, "correct decode"); |
|
217 |
||
218 |
return lh; |
|
219 |
} |
|
220 |
||
221 |
bool Klass::can_be_primary_super_slow() const { |
|
222 |
if (super() == NULL) |
|
223 |
return true; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
224 |
else if (super()->super_depth() >= primary_super_limit()-1) |
1 | 225 |
return false; |
226 |
else |
|
227 |
return true; |
|
228 |
} |
|
229 |
||
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
50761
diff
changeset
|
230 |
void Klass::initialize_supers(Klass* k, Array<InstanceKlass*>* transitive_interfaces, TRAPS) { |
1 | 231 |
if (k == NULL) { |
232 |
set_super(NULL); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
233 |
_primary_supers[0] = this; |
1 | 234 |
assert(super_depth() == 0, "Object must already be initialized properly"); |
4571 | 235 |
} else if (k != super() || k == SystemDictionary::Object_klass()) { |
236 |
assert(super() == NULL || super() == SystemDictionary::Object_klass(), |
|
1 | 237 |
"initialize this only once to a non-trivial value"); |
238 |
set_super(k); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
239 |
Klass* sup = k; |
1 | 240 |
int sup_depth = sup->super_depth(); |
241 |
juint my_depth = MIN2(sup_depth + 1, (int)primary_super_limit()); |
|
242 |
if (!can_be_primary_super_slow()) |
|
243 |
my_depth = primary_super_limit(); |
|
244 |
for (juint i = 0; i < my_depth; i++) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
245 |
_primary_supers[i] = sup->_primary_supers[i]; |
1 | 246 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
247 |
Klass* *super_check_cell; |
1 | 248 |
if (my_depth < primary_super_limit()) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
249 |
_primary_supers[my_depth] = this; |
1 | 250 |
super_check_cell = &_primary_supers[my_depth]; |
251 |
} else { |
|
252 |
// Overflow of the primary_supers array forces me to be secondary. |
|
253 |
super_check_cell = &_secondary_super_cache; |
|
254 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
255 |
set_super_check_offset((address)super_check_cell - (address) this); |
1 | 256 |
|
257 |
#ifdef ASSERT |
|
258 |
{ |
|
259 |
juint j = super_depth(); |
|
260 |
assert(j == my_depth, "computed accessor gets right answer"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
261 |
Klass* t = this; |
14488 | 262 |
while (!t->can_be_primary_super()) { |
263 |
t = t->super(); |
|
264 |
j = t->super_depth(); |
|
1 | 265 |
} |
266 |
for (juint j1 = j+1; j1 < primary_super_limit(); j1++) { |
|
267 |
assert(primary_super_of_depth(j1) == NULL, "super list padding"); |
|
268 |
} |
|
269 |
while (t != NULL) { |
|
270 |
assert(primary_super_of_depth(j) == t, "super list initialization"); |
|
14488 | 271 |
t = t->super(); |
1 | 272 |
--j; |
273 |
} |
|
274 |
assert(j == (juint)-1, "correct depth count"); |
|
275 |
} |
|
276 |
#endif |
|
277 |
} |
|
278 |
||
279 |
if (secondary_supers() == NULL) { |
|
280 |
||
281 |
// Now compute the list of secondary supertypes. |
|
282 |
// Secondaries can occasionally be on the super chain, |
|
283 |
// if the inline "_primary_supers" array overflows. |
|
284 |
int extras = 0; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
285 |
Klass* p; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
286 |
for (p = super(); !(p == NULL || p->can_be_primary_super()); p = p->super()) { |
1 | 287 |
++extras; |
288 |
} |
|
289 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
290 |
ResourceMark rm(THREAD); // need to reclaim GrowableArrays allocated below |
1 | 291 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
292 |
// Compute the "real" non-extra secondaries. |
49948
ff8dbb56740a
8200466: Revisit the setting of _transitive_interfaces in InstanceKlass
ccheung
parents:
49824
diff
changeset
|
293 |
GrowableArray<Klass*>* secondaries = compute_secondary_supers(extras, transitive_interfaces); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
294 |
if (secondaries == NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
295 |
// secondary_supers set by compute_secondary_supers |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
296 |
return; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
297 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
298 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
299 |
GrowableArray<Klass*>* primaries = new GrowableArray<Klass*>(extras); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
300 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
301 |
for (p = super(); !(p == NULL || p->can_be_primary_super()); p = p->super()) { |
1 | 302 |
int i; // Scan for overflow primaries being duplicates of 2nd'arys |
303 |
||
304 |
// This happens frequently for very deeply nested arrays: the |
|
305 |
// primary superclass chain overflows into the secondary. The |
|
306 |
// secondary list contains the element_klass's secondaries with |
|
307 |
// an extra array dimension added. If the element_klass's |
|
308 |
// secondary list already contains some primary overflows, they |
|
309 |
// (with the extra level of array-ness) will collide with the |
|
310 |
// normal primary superclass overflows. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
311 |
for( i = 0; i < secondaries->length(); i++ ) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
312 |
if( secondaries->at(i) == p ) |
1 | 313 |
break; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
314 |
} |
1 | 315 |
if( i < secondaries->length() ) |
316 |
continue; // It's a dup, don't put it in |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
317 |
primaries->push(p); |
1 | 318 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
319 |
// Combine the two arrays into a metadata object to pack the array. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
320 |
// The primaries are added in the reverse order, then the secondaries. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
321 |
int new_length = primaries->length() + secondaries->length(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
322 |
Array<Klass*>* s2 = MetadataFactory::new_array<Klass*>( |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
323 |
class_loader_data(), new_length, CHECK); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
324 |
int fill_p = primaries->length(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
325 |
for (int j = 0; j < fill_p; j++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
326 |
s2->at_put(j, primaries->pop()); // add primaries in reverse order. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
327 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
328 |
for( int j = 0; j < secondaries->length(); j++ ) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
329 |
s2->at_put(j+fill_p, secondaries->at(j)); // add secondaries on the end. |
1 | 330 |
} |
331 |
||
332 |
#ifdef ASSERT |
|
333 |
// We must not copy any NULL placeholders left over from bootstrap. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
334 |
for (int j = 0; j < s2->length(); j++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
335 |
assert(s2->at(j) != NULL, "correct bootstrapping order"); |
1 | 336 |
} |
337 |
#endif |
|
338 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
339 |
set_secondary_supers(s2); |
1 | 340 |
} |
341 |
} |
|
342 |
||
49948
ff8dbb56740a
8200466: Revisit the setting of _transitive_interfaces in InstanceKlass
ccheung
parents:
49824
diff
changeset
|
343 |
GrowableArray<Klass*>* Klass::compute_secondary_supers(int num_extra_slots, |
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
50761
diff
changeset
|
344 |
Array<InstanceKlass*>* transitive_interfaces) { |
1 | 345 |
assert(num_extra_slots == 0, "override for complex klasses"); |
49948
ff8dbb56740a
8200466: Revisit the setting of _transitive_interfaces in InstanceKlass
ccheung
parents:
49824
diff
changeset
|
346 |
assert(transitive_interfaces == NULL, "sanity"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
347 |
set_secondary_supers(Universe::the_empty_klass_array()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
348 |
return NULL; |
1 | 349 |
} |
350 |
||
351 |
||
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
352 |
// superklass links |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
353 |
InstanceKlass* Klass::superklass() const { |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33602
diff
changeset
|
354 |
assert(super() == NULL || super()->is_instance_klass(), "must be instance klass"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
355 |
return _super == NULL ? NULL : InstanceKlass::cast(_super); |
1 | 356 |
} |
357 |
||
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
358 |
// subklass links. Used by the compiler (and vtable initialization) |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
359 |
// May be cleaned concurrently, so must use the Compile_lock. |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
360 |
// The log parameter is for clean_weak_klass_links to report unlinked classes. |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
361 |
Klass* Klass::subklass(bool log) const { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
362 |
// Need load_acquire on the _subklass, because it races with inserts that |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
363 |
// publishes freshly initialized data. |
59247
56bf71d64d51
8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents:
58866
diff
changeset
|
364 |
for (Klass* chain = Atomic::load_acquire(&_subklass); |
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
365 |
chain != NULL; |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
366 |
// Do not need load_acquire on _next_sibling, because inserts never |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
367 |
// create _next_sibling edges to dead data. |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
368 |
chain = Atomic::load(&chain->_next_sibling)) |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
369 |
{ |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
370 |
if (chain->is_loader_alive()) { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
371 |
return chain; |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
372 |
} else if (log) { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
373 |
if (log_is_enabled(Trace, class, unload)) { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
374 |
ResourceMark rm; |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
375 |
log_trace(class, unload)("unlinking class (subclass): %s", chain->external_name()); |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
376 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
377 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
378 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
379 |
return NULL; |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
380 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
381 |
|
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
382 |
Klass* Klass::next_sibling(bool log) const { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
383 |
// Do not need load_acquire on _next_sibling, because inserts never |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
384 |
// create _next_sibling edges to dead data. |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
385 |
for (Klass* chain = Atomic::load(&_next_sibling); |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
386 |
chain != NULL; |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
387 |
chain = Atomic::load(&chain->_next_sibling)) { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
388 |
// Only return alive klass, there may be stale klass |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
389 |
// in this chain if cleaned concurrently. |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
390 |
if (chain->is_loader_alive()) { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
391 |
return chain; |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
392 |
} else if (log) { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
393 |
if (log_is_enabled(Trace, class, unload)) { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
394 |
ResourceMark rm; |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
395 |
log_trace(class, unload)("unlinking class (sibling): %s", chain->external_name()); |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
396 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
397 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
398 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
399 |
return NULL; |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
400 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
401 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
402 |
void Klass::set_subklass(Klass* s) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
403 |
assert(s != this, "sanity check"); |
59247
56bf71d64d51
8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents:
58866
diff
changeset
|
404 |
Atomic::release_store(&_subklass, s); |
1 | 405 |
} |
406 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
407 |
void Klass::set_next_sibling(Klass* s) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
408 |
assert(s != this, "sanity check"); |
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
409 |
// Does not need release semantics. If used by cleanup, it will link to |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
410 |
// already safely published data, and if used by inserts, will be published |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
411 |
// safely using cmpxchg. |
59248
e92153ed8bdc
8234736: Harmonize parameter order in Atomic - store
stefank
parents:
59247
diff
changeset
|
412 |
Atomic::store(&_next_sibling, s); |
1 | 413 |
} |
414 |
||
415 |
void Klass::append_to_sibling_list() { |
|
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
416 |
assert_locked_or_safepoint(Compile_lock); |
14078 | 417 |
debug_only(verify();) |
1 | 418 |
// add ourselves to superklass' subklass list |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
419 |
InstanceKlass* super = superklass(); |
1 | 420 |
if (super == NULL) return; // special case: class Object |
14078 | 421 |
assert((!super->is_interface() // interfaces cannot be supers |
1 | 422 |
&& (super->superklass() == NULL || !is_interface())), |
423 |
"an interface can only be a subklass of Object"); |
|
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
424 |
|
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
425 |
// Make sure there is no stale subklass head |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
426 |
super->clean_subklass(); |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
427 |
|
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
428 |
for (;;) { |
59247
56bf71d64d51
8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents:
58866
diff
changeset
|
429 |
Klass* prev_first_subklass = Atomic::load_acquire(&_super->_subklass); |
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
430 |
if (prev_first_subklass != NULL) { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
431 |
// set our sibling to be the superklass' previous first subklass |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
432 |
assert(prev_first_subklass->is_loader_alive(), "May not attach not alive klasses"); |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
433 |
set_next_sibling(prev_first_subklass); |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
434 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
435 |
// Note that the prev_first_subklass is always alive, meaning no sibling_next links |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
436 |
// are ever created to not alive klasses. This is an important invariant of the lock-free |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
437 |
// cleaning protocol, that allows us to safely unlink dead klasses from the sibling list. |
59252
623722a6aeb9
8234740: Harmonize parameter order in Atomic - cmpxchg
stefank
parents:
59249
diff
changeset
|
438 |
if (Atomic::cmpxchg(&super->_subklass, prev_first_subklass, this) == prev_first_subklass) { |
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
439 |
return; |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
440 |
} |
1 | 441 |
} |
14078 | 442 |
debug_only(verify();) |
1 | 443 |
} |
444 |
||
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
445 |
void Klass::clean_subklass() { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
446 |
for (;;) { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
447 |
// Need load_acquire, due to contending with concurrent inserts |
59247
56bf71d64d51
8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents:
58866
diff
changeset
|
448 |
Klass* subklass = Atomic::load_acquire(&_subklass); |
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
449 |
if (subklass == NULL || subklass->is_loader_alive()) { |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
450 |
return; |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
451 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
452 |
// Try to fix _subklass until it points at something not dead. |
59252
623722a6aeb9
8234740: Harmonize parameter order in Atomic - cmpxchg
stefank
parents:
59249
diff
changeset
|
453 |
Atomic::cmpxchg(&_subklass, subklass, subklass->next_sibling()); |
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
454 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
455 |
} |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
456 |
|
49969
8624981f1ffa
8202447: Fix unloading_occurred to mean unloading_occurred
coleenp
parents:
49948
diff
changeset
|
457 |
void Klass::clean_weak_klass_links(bool unloading_occurred, bool clean_alive_klasses) { |
8624981f1ffa
8202447: Fix unloading_occurred to mean unloading_occurred
coleenp
parents:
49948
diff
changeset
|
458 |
if (!ClassUnloading || !unloading_occurred) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
459 |
return; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
460 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
461 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
462 |
Klass* root = SystemDictionary::Object_klass(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
463 |
Stack<Klass*, mtGC> stack; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
464 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
465 |
stack.push(root); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
466 |
while (!stack.is_empty()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
467 |
Klass* current = stack.pop(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
468 |
|
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49816
diff
changeset
|
469 |
assert(current->is_loader_alive(), "just checking, this should be live"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
470 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
471 |
// Find and set the first alive subklass |
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
472 |
Klass* sub = current->subklass(true); |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
473 |
current->clean_subklass(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
474 |
if (sub != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
475 |
stack.push(sub); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
476 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
477 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
478 |
// Find and set the first alive sibling |
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
479 |
Klass* sibling = current->next_sibling(true); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
480 |
current->set_next_sibling(sibling); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
481 |
if (sibling != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
482 |
stack.push(sibling); |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
483 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
484 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
485 |
// Clean the implementors list and method data. |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33602
diff
changeset
|
486 |
if (clean_alive_klasses && current->is_instance_klass()) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
487 |
InstanceKlass* ik = InstanceKlass::cast(current); |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49816
diff
changeset
|
488 |
ik->clean_weak_instanceklass_links(); |
41060
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
489 |
|
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
490 |
// JVMTI RedefineClasses creates previous versions that are not in |
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
491 |
// the class hierarchy, so process them here. |
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
492 |
while ((ik = ik->previous_versions()) != NULL) { |
49821
02c08e20d66c
8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents:
49816
diff
changeset
|
493 |
ik->clean_weak_instanceklass_links(); |
41060
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
494 |
} |
1 | 495 |
} |
496 |
} |
|
497 |
} |
|
498 |
||
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
499 |
void Klass::metaspace_pointers_do(MetaspaceClosure* it) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
500 |
if (log_is_enabled(Trace, cds)) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
501 |
ResourceMark rm; |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
502 |
log_trace(cds)("Iter(Klass): %p (%s)", this, external_name()); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
503 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
504 |
|
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
505 |
it->push(&_name); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
506 |
it->push(&_secondary_super_cache); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
507 |
it->push(&_secondary_supers); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
508 |
for (int i = 0; i < _primary_super_limit; i++) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
509 |
it->push(&_primary_supers[i]); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
510 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
511 |
it->push(&_super); |
52784
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
512 |
it->push((Klass**)&_subklass); |
621efe32eb0b
8213209: [REDO] Allow Klass::_subklass and _next_sibling to have unloaded classes
eosterlund
parents:
52620
diff
changeset
|
513 |
it->push((Klass**)&_next_sibling); |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
514 |
it->push(&_next_link); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
515 |
|
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
516 |
vtableEntry* vt = start_of_vtable(); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
517 |
for (int i=0; i<vtable_length(); i++) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
518 |
it->push(vt[i].method_addr()); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
519 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
520 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
521 |
|
1 | 522 |
void Klass::remove_unshareable_info() { |
58447
319173c62caa
8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents:
57869
diff
changeset
|
523 |
assert (Arguments::is_dumping_archive(), |
54927 | 524 |
"only called during CDS dump time"); |
50113 | 525 |
JFR_ONLY(REMOVE_ID(this);) |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
526 |
if (log_is_enabled(Trace, cds, unshareable)) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
527 |
ResourceMark rm; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
528 |
log_trace(cds, unshareable)("remove: %s", external_name()); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
529 |
} |
23872
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
530 |
|
1 | 531 |
set_subklass(NULL); |
532 |
set_next_sibling(NULL); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
533 |
set_next_link(NULL); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
534 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
535 |
// Null out class_loader_data because we don't share that yet. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
536 |
set_class_loader_data(NULL); |
46413 | 537 |
set_is_shared(); |
1 | 538 |
} |
539 |
||
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
540 |
void Klass::remove_java_mirror() { |
58447
319173c62caa
8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents:
57869
diff
changeset
|
541 |
Arguments::assert_is_dumping_archive(); |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
542 |
if (log_is_enabled(Trace, cds, unshareable)) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
543 |
ResourceMark rm; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
544 |
log_trace(cds, unshareable)("remove java_mirror: %s", external_name()); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
545 |
} |
47580 | 546 |
// Just null out the mirror. The class_loader_data() no longer exists. |
547 |
_java_mirror = NULL; |
|
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
548 |
} |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
549 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
550 |
void Klass::restore_unshareable_info(ClassLoaderData* loader_data, Handle protection_domain, TRAPS) { |
46324
8764956ec928
8005165: Remove CPU-dependent code in self-patching vtables
iklam
parents:
46271
diff
changeset
|
551 |
assert(is_klass(), "ensure C++ vtable is restored"); |
46413 | 552 |
assert(is_shared(), "must be set"); |
50113 | 553 |
JFR_ONLY(RESTORE_ID(this);) |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
554 |
if (log_is_enabled(Trace, cds, unshareable)) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
555 |
ResourceMark rm; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
556 |
log_trace(cds, unshareable)("restore: %s", external_name()); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
557 |
} |
39400
daf3af35d6bf
8159666: Better CDS support for Event-based tracing
iklam
parents:
38151
diff
changeset
|
558 |
|
23872
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
559 |
// If an exception happened during CDS restore, some of these fields may already be |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
560 |
// set. We leave the class on the CLD list, even if incomplete so that we don't |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
561 |
// modify the CLD list outside a safepoint. |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
562 |
if (class_loader_data() == NULL) { |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
563 |
// Restore class_loader_data to the null class loader data |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
564 |
set_class_loader_data(loader_data); |
1 | 565 |
|
23872
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
566 |
// Add to null class loader list first before creating the mirror |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
567 |
// (same order as class file parsing) |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
568 |
loader_data->add_class(this); |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
569 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
570 |
|
49329 | 571 |
Handle loader(THREAD, loader_data->class_loader()); |
572 |
ModuleEntry* module_entry = NULL; |
|
573 |
Klass* k = this; |
|
574 |
if (k->is_objArray_klass()) { |
|
575 |
k = ObjArrayKlass::cast(k)->bottom_klass(); |
|
576 |
} |
|
577 |
// Obtain klass' module. |
|
578 |
if (k->is_instance_klass()) { |
|
579 |
InstanceKlass* ik = (InstanceKlass*) k; |
|
580 |
module_entry = ik->module(); |
|
581 |
} else { |
|
582 |
module_entry = ModuleEntryTable::javabase_moduleEntry(); |
|
583 |
} |
|
584 |
// Obtain java.lang.Module, if available |
|
585 |
Handle module_handle(THREAD, ((module_entry != NULL) ? module_entry->module() : (oop)NULL)); |
|
586 |
||
587 |
if (this->has_raw_archived_mirror()) { |
|
50532 | 588 |
ResourceMark rm; |
49329 | 589 |
log_debug(cds, mirror)("%s has raw archived mirror", external_name()); |
52062
8dbf1a13af49
8206009: Move CDS java heap object archiving code to heapShared.hpp and heapShared.cpp
jiangli
parents:
52033
diff
changeset
|
590 |
if (HeapShared::open_archive_heap_region_mapped()) { |
50532 | 591 |
bool present = java_lang_Class::restore_archived_mirror(this, loader, module_handle, |
592 |
protection_domain, |
|
593 |
CHECK); |
|
594 |
if (present) { |
|
49329 | 595 |
return; |
596 |
} |
|
597 |
} |
|
598 |
||
599 |
// No archived mirror data |
|
50532 | 600 |
log_debug(cds, mirror)("No archived mirror data for %s", external_name()); |
49329 | 601 |
_java_mirror = NULL; |
602 |
this->clear_has_raw_archived_mirror(); |
|
603 |
} |
|
604 |
||
23872
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
605 |
// Only recreate it if not present. A previous attempt to restore may have |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
606 |
// gotten an OOM later but keep the mirror if it was created. |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
607 |
if (java_mirror() == NULL) { |
49329 | 608 |
log_trace(cds, mirror)("Recreate mirror for %s", external_name()); |
36508 | 609 |
java_lang_Class::create_mirror(this, loader, module_handle, protection_domain, CHECK); |
23872
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
610 |
} |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
611 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
612 |
|
49329 | 613 |
#if INCLUDE_CDS_JAVA_HEAP |
614 |
// Used at CDS dump time to access the archived mirror. No GC barrier. |
|
615 |
oop Klass::archived_java_mirror_raw() { |
|
616 |
assert(has_raw_archived_mirror(), "must have raw archived mirror"); |
|
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
49393
diff
changeset
|
617 |
return CompressedOops::decode(_archived_mirror); |
49329 | 618 |
} |
619 |
||
51491
187c84a5efe1
8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents:
51444
diff
changeset
|
620 |
narrowOop Klass::archived_java_mirror_raw_narrow() { |
187c84a5efe1
8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents:
51444
diff
changeset
|
621 |
assert(has_raw_archived_mirror(), "must have raw archived mirror"); |
187c84a5efe1
8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents:
51444
diff
changeset
|
622 |
return _archived_mirror; |
187c84a5efe1
8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents:
51444
diff
changeset
|
623 |
} |
187c84a5efe1
8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents:
51444
diff
changeset
|
624 |
|
49329 | 625 |
// No GC barrier |
626 |
void Klass::set_archived_java_mirror_raw(oop m) { |
|
627 |
assert(DumpSharedSpaces, "called only during runtime"); |
|
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
49393
diff
changeset
|
628 |
_archived_mirror = CompressedOops::encode(m); |
49329 | 629 |
} |
630 |
#endif // INCLUDE_CDS_JAVA_HEAP |
|
631 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
632 |
Klass* Klass::array_klass_or_null(int rank) { |
1 | 633 |
EXCEPTION_MARK; |
634 |
// No exception can be thrown by array_klass_impl when called with or_null == true. |
|
635 |
// (In anycase, the execption mark will fail if it do so) |
|
636 |
return array_klass_impl(true, rank, THREAD); |
|
637 |
} |
|
638 |
||
639 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
640 |
Klass* Klass::array_klass_or_null() { |
1 | 641 |
EXCEPTION_MARK; |
642 |
// No exception can be thrown by array_klass_impl when called with or_null == true. |
|
643 |
// (In anycase, the execption mark will fail if it do so) |
|
644 |
return array_klass_impl(true, THREAD); |
|
645 |
} |
|
646 |
||
647 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
648 |
Klass* Klass::array_klass_impl(bool or_null, int rank, TRAPS) { |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
649 |
fatal("array_klass should be dispatched to InstanceKlass, ObjArrayKlass or TypeArrayKlass"); |
1 | 650 |
return NULL; |
651 |
} |
|
652 |
||
653 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
654 |
Klass* Klass::array_klass_impl(bool or_null, TRAPS) { |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
655 |
fatal("array_klass should be dispatched to InstanceKlass, ObjArrayKlass or TypeArrayKlass"); |
1 | 656 |
return NULL; |
657 |
} |
|
658 |
||
52033
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
659 |
void Klass::check_array_allocation_length(int length, int max_length, TRAPS) { |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
660 |
if (length > max_length) { |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
661 |
if (!THREAD->in_retryable_allocation()) { |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
662 |
report_java_out_of_memory("Requested array size exceeds VM limit"); |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
663 |
JvmtiExport::post_array_size_exhausted(); |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
664 |
THROW_OOP(Universe::out_of_memory_error_array_size()); |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
665 |
} else { |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
666 |
THROW_OOP(Universe::out_of_memory_error_retry()); |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
667 |
} |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
668 |
} else if (length < 0) { |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
669 |
THROW_MSG(vmSymbols::java_lang_NegativeArraySizeException(), err_msg("%d", length)); |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
670 |
} |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
671 |
} |
d6aa9ea2405d
8208686: [AOT] JVMTI ResourceExhausted event repeated for same allocation
dnsimon
parents:
52014
diff
changeset
|
672 |
|
33602 | 673 |
// In product mode, this function doesn't have virtual function calls so |
674 |
// there might be some performance advantage to handling InstanceKlass here. |
|
1 | 675 |
const char* Klass::external_name() const { |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33602
diff
changeset
|
676 |
if (is_instance_klass()) { |
33602 | 677 |
const InstanceKlass* ik = static_cast<const InstanceKlass*>(this); |
51444
3e5d28e6de32
8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents:
51334
diff
changeset
|
678 |
if (ik->is_unsafe_anonymous()) { |
49066
4aa67aba6c85
8197901: Crash during GC when logging level is debug
lmesnik
parents:
49056
diff
changeset
|
679 |
char addr_buf[20]; |
4aa67aba6c85
8197901: Crash during GC when logging level is debug
lmesnik
parents:
49056
diff
changeset
|
680 |
jio_snprintf(addr_buf, 20, "/" INTPTR_FORMAT, p2i(ik)); |
4aa67aba6c85
8197901: Crash during GC when logging level is debug
lmesnik
parents:
49056
diff
changeset
|
681 |
size_t addr_len = strlen(addr_buf); |
4aa67aba6c85
8197901: Crash during GC when logging level is debug
lmesnik
parents:
49056
diff
changeset
|
682 |
size_t name_len = name()->utf8_length(); |
4aa67aba6c85
8197901: Crash during GC when logging level is debug
lmesnik
parents:
49056
diff
changeset
|
683 |
char* result = NEW_RESOURCE_ARRAY(char, name_len + addr_len + 1); |
4aa67aba6c85
8197901: Crash during GC when logging level is debug
lmesnik
parents:
49056
diff
changeset
|
684 |
name()->as_klass_external_name(result, (int) name_len + 1); |
4aa67aba6c85
8197901: Crash during GC when logging level is debug
lmesnik
parents:
49056
diff
changeset
|
685 |
assert(strlen(result) == name_len, ""); |
4aa67aba6c85
8197901: Crash during GC when logging level is debug
lmesnik
parents:
49056
diff
changeset
|
686 |
strcpy(result + name_len, addr_buf); |
4aa67aba6c85
8197901: Crash during GC when logging level is debug
lmesnik
parents:
49056
diff
changeset
|
687 |
assert(strlen(result) == name_len + addr_len, ""); |
1550
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
688 |
return result; |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
689 |
} |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
690 |
} |
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2131
diff
changeset
|
691 |
if (name() == NULL) return "<unknown>"; |
1 | 692 |
return name()->as_klass_external_name(); |
693 |
} |
|
694 |
||
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2131
diff
changeset
|
695 |
const char* Klass::signature_name() const { |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2131
diff
changeset
|
696 |
if (name() == NULL) return "<unknown>"; |
1 | 697 |
return name()->as_C_string(); |
698 |
} |
|
699 |
||
49368
2ed1c37df3a5
8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents:
49329
diff
changeset
|
700 |
const char* Klass::external_kind() const { |
2ed1c37df3a5
8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents:
49329
diff
changeset
|
701 |
if (is_interface()) return "interface"; |
2ed1c37df3a5
8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents:
49329
diff
changeset
|
702 |
if (is_abstract()) return "abstract class"; |
2ed1c37df3a5
8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents:
49329
diff
changeset
|
703 |
return "class"; |
2ed1c37df3a5
8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents:
49329
diff
changeset
|
704 |
} |
2ed1c37df3a5
8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents:
49329
diff
changeset
|
705 |
|
1 | 706 |
// Unless overridden, modifier_flags is 0. |
707 |
jint Klass::compute_modifier_flags(TRAPS) const { |
|
708 |
return 0; |
|
709 |
} |
|
710 |
||
711 |
int Klass::atomic_incr_biased_lock_revocation_count() { |
|
59249
29b0d0b61615
8234737: Harmonize parameter order in Atomic - add
stefank
parents:
59248
diff
changeset
|
712 |
return (int) Atomic::add(&_biased_lock_revocation_count, 1); |
1 | 713 |
} |
714 |
||
715 |
// Unless overridden, jvmti_class_status has no flags set. |
|
716 |
jint Klass::jvmti_class_status() const { |
|
717 |
return 0; |
|
718 |
} |
|
719 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
720 |
|
1 | 721 |
// Printing |
722 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
723 |
void Klass::print_on(outputStream* st) const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
724 |
ResourceMark rm; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
725 |
// print title |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
726 |
st->print("%s", internal_name()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
727 |
print_address_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
728 |
st->cr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
729 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
730 |
|
54725
bfa52d3068f5
8222893: markOopDesc::print_on() is a bit confused
coleenp
parents:
54347
diff
changeset
|
731 |
#define BULLET " - " |
bfa52d3068f5
8222893: markOopDesc::print_on() is a bit confused
coleenp
parents:
54347
diff
changeset
|
732 |
|
1 | 733 |
void Klass::oop_print_on(oop obj, outputStream* st) { |
734 |
// print title |
|
735 |
st->print_cr("%s ", internal_name()); |
|
736 |
obj->print_address_on(st); |
|
737 |
||
738 |
if (WizardMode) { |
|
739 |
// print header |
|
57777
90ead0febf56
8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents:
55629
diff
changeset
|
740 |
obj->mark().print_on(st); |
54725
bfa52d3068f5
8222893: markOopDesc::print_on() is a bit confused
coleenp
parents:
54347
diff
changeset
|
741 |
st->cr(); |
57777
90ead0febf56
8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents:
55629
diff
changeset
|
742 |
st->print(BULLET"prototype_header: " INTPTR_FORMAT, _prototype_header.value()); |
54725
bfa52d3068f5
8222893: markOopDesc::print_on() is a bit confused
coleenp
parents:
54347
diff
changeset
|
743 |
st->cr(); |
1 | 744 |
} |
745 |
||
746 |
// print class |
|
54725
bfa52d3068f5
8222893: markOopDesc::print_on() is a bit confused
coleenp
parents:
54347
diff
changeset
|
747 |
st->print(BULLET"klass: "); |
1 | 748 |
obj->klass()->print_value_on(st); |
749 |
st->cr(); |
|
750 |
} |
|
751 |
||
752 |
void Klass::oop_print_value_on(oop obj, outputStream* st) { |
|
753 |
// print title |
|
754 |
ResourceMark rm; // Cannot print in debug mode without this |
|
755 |
st->print("%s", internal_name()); |
|
756 |
obj->print_address_on(st); |
|
757 |
} |
|
758 |
||
15437 | 759 |
#if INCLUDE_SERVICES |
760 |
// Size Statistics |
|
761 |
void Klass::collect_statistics(KlassSizeStats *sz) const { |
|
762 |
sz->_klass_bytes = sz->count(this); |
|
55629
29e522153769
8224531: SEGV while collecting Klass statistics
eosterlund
parents:
54927
diff
changeset
|
763 |
sz->_mirror_bytes = sz->count(java_mirror_no_keepalive()); |
15437 | 764 |
sz->_secondary_supers_bytes = sz->count_array(secondary_supers()); |
765 |
||
766 |
sz->_ro_bytes += sz->_secondary_supers_bytes; |
|
767 |
sz->_rw_bytes += sz->_klass_bytes + sz->_mirror_bytes; |
|
768 |
} |
|
769 |
#endif // INCLUDE_SERVICES |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
770 |
|
1 | 771 |
// Verification |
772 |
||
22794
f1c014ad3754
8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents:
22201
diff
changeset
|
773 |
void Klass::verify_on(outputStream* st) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
774 |
|
18439 | 775 |
// This can be expensive, but it is worth checking that this klass is actually |
776 |
// in the CLD graph but not in production. |
|
24457
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
24351
diff
changeset
|
777 |
assert(Metaspace::contains((address)this), "Should be"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
778 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
779 |
guarantee(this->is_klass(),"should be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
780 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
781 |
if (super() != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
782 |
guarantee(super()->is_klass(), "should be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
783 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
784 |
if (secondary_super_cache() != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
785 |
Klass* ko = secondary_super_cache(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
786 |
guarantee(ko->is_klass(), "should be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
787 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
788 |
for ( uint i = 0; i < primary_super_limit(); i++ ) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
789 |
Klass* ko = _primary_supers[i]; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
790 |
if (ko != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
791 |
guarantee(ko->is_klass(), "should be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
792 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
793 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
794 |
|
52620
5f47b56cb867
8212992: Change mirror accessor in Klass::verify_on() to use AS_NO_KEEPALIVE
eosterlund
parents:
52438
diff
changeset
|
795 |
if (java_mirror_no_keepalive() != NULL) { |
5f47b56cb867
8212992: Change mirror accessor in Klass::verify_on() to use AS_NO_KEEPALIVE
eosterlund
parents:
52438
diff
changeset
|
796 |
guarantee(oopDesc::is_oop(java_mirror_no_keepalive()), "should be instance"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
797 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
798 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
799 |
|
1 | 800 |
void Klass::oop_verify_on(oop obj, outputStream* st) { |
46968
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46773
diff
changeset
|
801 |
guarantee(oopDesc::is_oop(obj), "should be oop"); |
1 | 802 |
guarantee(obj->klass()->is_klass(), "klass field is not a klass"); |
803 |
} |
|
804 |
||
52014
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
805 |
bool Klass::is_valid(Klass* k) { |
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
806 |
if (!is_aligned(k, sizeof(MetaWord))) return false; |
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
807 |
if ((size_t)k < os::min_page_size()) return false; |
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
808 |
|
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
809 |
if (!os::is_readable_range(k, k + 1)) return false; |
54842 | 810 |
if (!Metaspace::contains(k)) return false; |
52014
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
811 |
|
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
812 |
if (!Symbol::is_valid(k->name())) return false; |
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
813 |
return ClassLoaderDataGraph::is_valid(k->class_loader_data()); |
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
814 |
} |
1aa9beac610e
8210754: print_location is not reliable enough (printing register info)
mdoerr
parents:
51491
diff
changeset
|
815 |
|
35900 | 816 |
Method* Klass::method_at_vtable(int index) { |
817 |
#ifndef PRODUCT |
|
818 |
assert(index >= 0, "valid vtable index"); |
|
819 |
if (DebugVtables) { |
|
820 |
verify_vtable_index(index); |
|
821 |
} |
|
822 |
#endif |
|
823 |
return start_of_vtable()[index].method(); |
|
824 |
} |
|
825 |
||
35899 | 826 |
|
1 | 827 |
#ifndef PRODUCT |
828 |
||
20017
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
829 |
bool Klass::verify_vtable_index(int i) { |
33602 | 830 |
int limit = vtable_length()/vtableEntry::size(); |
831 |
assert(i >= 0 && i < limit, "index %d out of bounds %d", i, limit); |
|
20017
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
832 |
return true; |
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
833 |
} |
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
834 |
|
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
835 |
#endif // PRODUCT |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
836 |
|
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
837 |
// Caller needs ResourceMark |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
838 |
// joint_in_module_of_loader provides an optimization if 2 classes are in |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
839 |
// the same module to succinctly print out relevant information about their |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
840 |
// module name and class loader's name_and_id for error messages. |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
841 |
// Format: |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
842 |
// <fully-qualified-external-class-name1> and <fully-qualified-external-class-name2> |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
843 |
// are in module <module-name>[@<version>] |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
844 |
// of loader <loader-name_and_id>[, parent loader <parent-loader-name_and_id>] |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
845 |
const char* Klass::joint_in_module_of_loader(const Klass* class2, bool include_parent_loader) const { |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
846 |
assert(module() == class2->module(), "classes do not have the same module"); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
847 |
const char* class1_name = external_name(); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
848 |
size_t len = strlen(class1_name) + 1; |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
849 |
|
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
850 |
const char* class2_description = class2->class_in_module_of_loader(true, include_parent_loader); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
851 |
len += strlen(class2_description); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
852 |
|
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
853 |
len += strlen(" and "); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
854 |
|
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
855 |
char* joint_description = NEW_RESOURCE_ARRAY_RETURN_NULL(char, len); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
856 |
|
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
857 |
// Just return the FQN if error when allocating string |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
858 |
if (joint_description == NULL) { |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
859 |
return class1_name; |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
860 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
861 |
|
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
862 |
jio_snprintf(joint_description, len, "%s and %s", |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
863 |
class1_name, |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
864 |
class2_description); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
865 |
|
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
866 |
return joint_description; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
867 |
} |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
868 |
|
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
869 |
// Caller needs ResourceMark |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
870 |
// class_in_module_of_loader provides a standard way to include |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
871 |
// relevant information about a class, such as its module name as |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
872 |
// well as its class loader's name_and_id, in error messages and logging. |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
873 |
// Format: |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
874 |
// <fully-qualified-external-class-name> is in module <module-name>[@<version>] |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
875 |
// of loader <loader-name_and_id>[, parent loader <parent-loader-name_and_id>] |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
876 |
const char* Klass::class_in_module_of_loader(bool use_are, bool include_parent_loader) const { |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
877 |
// 1. fully qualified external name of class |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
878 |
const char* klass_name = external_name(); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
879 |
size_t len = strlen(klass_name) + 1; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
880 |
|
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
881 |
// 2. module name + @version |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
882 |
const char* module_name = ""; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
883 |
const char* version = ""; |
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
884 |
bool has_version = false; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
885 |
bool module_is_named = false; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
886 |
const char* module_name_phrase = ""; |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
887 |
const Klass* bottom_klass = is_objArray_klass() ? |
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
888 |
ObjArrayKlass::cast(this)->bottom_klass() : this; |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
889 |
if (bottom_klass->is_instance_klass()) { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
890 |
ModuleEntry* module = InstanceKlass::cast(bottom_klass)->module(); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
891 |
if (module->is_named()) { |
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
892 |
module_is_named = true; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
893 |
module_name_phrase = "module "; |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
894 |
module_name = module->name()->as_C_string(); |
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
895 |
len += strlen(module_name); |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
896 |
// Use version if exists and is not a jdk module |
50569
60d66a249db6
8204620: ModuleEntry::is_non_jdk_module() determination for what is a jdk module is incorrect
hseigel
parents:
50532
diff
changeset
|
897 |
if (module->should_show_version()) { |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
898 |
has_version = true; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
899 |
version = module->version()->as_C_string(); |
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
900 |
// Include stlen(version) + 1 for the "@" |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
901 |
len += strlen(version) + 1; |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
902 |
} |
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
903 |
} else { |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
904 |
module_name = UNNAMED_MODULE; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
905 |
len += UNNAMED_MODULE_LEN; |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
906 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
907 |
} else { |
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
908 |
// klass is an array of primitives, module is java.base |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
909 |
module_is_named = true; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
910 |
module_name_phrase = "module "; |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
911 |
module_name = JAVA_BASE_NAME; |
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
912 |
len += JAVA_BASE_NAME_LEN; |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
913 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
914 |
|
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
915 |
// 3. class loader's name_and_id |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
916 |
ClassLoaderData* cld = class_loader_data(); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
917 |
assert(cld != NULL, "class_loader_data should not be null"); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
918 |
const char* loader_name_and_id = cld->loader_name_and_id(); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
919 |
len += strlen(loader_name_and_id); |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
920 |
|
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
921 |
// 4. include parent loader information |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
922 |
const char* parent_loader_phrase = ""; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
923 |
const char* parent_loader_name_and_id = ""; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
924 |
if (include_parent_loader && |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
925 |
!cld->is_builtin_class_loader_data()) { |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
926 |
oop parent_loader = java_lang_ClassLoader::parent(class_loader()); |
52438
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
927 |
ClassLoaderData *parent_cld = ClassLoaderData::class_loader_data_or_null(parent_loader); |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
928 |
// The parent loader's ClassLoaderData could be null if it is |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
929 |
// a delegating class loader that has never defined a class. |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
930 |
// In this case the loader's name must be obtained via the parent loader's oop. |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
931 |
if (parent_cld == NULL) { |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
932 |
oop cl_name_and_id = java_lang_ClassLoader::nameAndId(parent_loader); |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
933 |
if (cl_name_and_id != NULL) { |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
934 |
parent_loader_name_and_id = java_lang_String::as_utf8_string(cl_name_and_id); |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
935 |
} |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
936 |
} else { |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
937 |
parent_loader_name_and_id = parent_cld->loader_name_and_id(); |
de25152e5ec4
8212937: Parent class loader may not have a referred ClassLoaderData instance when obtained in Klass::class_in_module_of_loader
lfoltan
parents:
52356
diff
changeset
|
938 |
} |
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
939 |
parent_loader_phrase = ", parent loader "; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
940 |
len += strlen(parent_loader_phrase) + strlen(parent_loader_name_and_id); |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
941 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
942 |
|
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
943 |
// Start to construct final full class description string |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
944 |
len += ((use_are) ? strlen(" are in ") : strlen(" is in ")); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
945 |
len += strlen(module_name_phrase) + strlen(" of loader "); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
946 |
|
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
947 |
char* class_description = NEW_RESOURCE_ARRAY_RETURN_NULL(char, len); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
948 |
|
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
949 |
// Just return the FQN if error when allocating string |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
950 |
if (class_description == NULL) { |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
951 |
return klass_name; |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
952 |
} |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
953 |
|
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
954 |
jio_snprintf(class_description, len, "%s %s in %s%s%s%s of loader %s%s%s", |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
955 |
klass_name, |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
956 |
(use_are) ? "are" : "is", |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
957 |
module_name_phrase, |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
958 |
module_name, |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
959 |
(has_version) ? "@" : "", |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
960 |
(has_version) ? version : "", |
50761
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
961 |
loader_name_and_id, |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
962 |
parent_loader_phrase, |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
963 |
parent_loader_name_and_id); |
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
964 |
|
cb07f4b539fc
8169559: Add class loader names to relevant VM messages
lfoltan
parents:
50752
diff
changeset
|
965 |
return class_description; |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
966 |
} |