author | coleenp |
Fri, 23 Feb 2018 07:47:29 -0500 | |
changeset 49056 | 91ada5977172 |
parent 47580 | 96392e113a0a |
child 49066 | 4aa67aba6c85 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
2 |
* Copyright (c) 1997, 2018, 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" |
30764 | 26 |
#include "classfile/dictionary.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
27 |
#include "classfile/javaClasses.hpp" |
7397 | 28 |
#include "classfile/systemDictionary.hpp" |
29 |
#include "classfile/vmSymbols.hpp" |
|
30764 | 30 |
#include "gc/shared/collectedHeap.inline.hpp" |
35917
463d67f86eaa
8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents:
35900
diff
changeset
|
31 |
#include "logging/log.hpp" |
15437 | 32 |
#include "memory/heapInspection.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
33 |
#include "memory/metadataFactory.hpp" |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
34 |
#include "memory/metaspaceClosure.hpp" |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
35 |
#include "memory/metaspaceShared.hpp" |
7397 | 36 |
#include "memory/oopFactory.hpp" |
37 |
#include "memory/resourceArea.hpp" |
|
38 |
#include "oops/instanceKlass.hpp" |
|
39 |
#include "oops/klass.inline.hpp" |
|
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28731
diff
changeset
|
40 |
#include "oops/oop.inline.hpp" |
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
39400
diff
changeset
|
41 |
#include "runtime/atomic.hpp" |
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
24330
diff
changeset
|
42 |
#include "runtime/orderAccess.inline.hpp" |
18025 | 43 |
#include "trace/traceMacros.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
14588
diff
changeset
|
44 |
#include "utilities/macros.hpp" |
29702
9ed339a5e096
8075809: Add missing includes of stack.inline.hpp
stefank
parents:
29081
diff
changeset
|
45 |
#include "utilities/stack.inline.hpp" |
47580 | 46 |
|
47 |
void Klass::set_java_mirror(Handle m) { |
|
48 |
assert(!m.is_null(), "New mirror should never be null."); |
|
49 |
assert(_java_mirror.resolve() == NULL, "should only be used to initialize mirror"); |
|
50 |
_java_mirror = class_loader_data()->add_handle(m); |
|
51 |
} |
|
52 |
||
53 |
oop Klass::java_mirror() const { |
|
54 |
return _java_mirror.resolve(); |
|
55 |
} |
|
1 | 56 |
|
35544
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
57 |
bool Klass::is_cloneable() const { |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
58 |
return _access_flags.is_cloneable_fast() || |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
59 |
is_subtype_of(SystemDictionary::Cloneable_klass()); |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
60 |
} |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
61 |
|
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
62 |
void Klass::set_is_cloneable() { |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
63 |
if (name() != vmSymbols::java_lang_invoke_MemberName()) { |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
64 |
_access_flags.set_is_cloneable_fast(); |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
65 |
} else { |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
66 |
assert(is_final(), "no subclasses allowed"); |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
67 |
// MemberName cloning should not be intrinsified and always happen in JVM_Clone. |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
68 |
} |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
69 |
} |
c7ec868d0923
8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents:
34666
diff
changeset
|
70 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
71 |
void Klass::set_name(Symbol* n) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
72 |
_name = n; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
73 |
if (_name != NULL) _name->increment_refcount(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
74 |
} |
1 | 75 |
|
17370
59a0620561fa
8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents:
16352
diff
changeset
|
76 |
bool Klass::is_subclass_of(const Klass* k) const { |
1 | 77 |
// Run up the super chain and check |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
78 |
if (this == k) return true; |
1 | 79 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
80 |
Klass* t = const_cast<Klass*>(this)->super(); |
1 | 81 |
|
82 |
while (t != NULL) { |
|
83 |
if (t == k) return true; |
|
14488 | 84 |
t = t->super(); |
1 | 85 |
} |
86 |
return false; |
|
87 |
} |
|
88 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
89 |
bool Klass::search_secondary_supers(Klass* k) const { |
1 | 90 |
// Put some extra logic here out-of-line, before the search proper. |
91 |
// This cuts down the size of the inline method. |
|
92 |
||
93 |
// 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
|
94 |
if (this == k) |
1 | 95 |
return true; |
96 |
// Scan the array-of-objects for a match |
|
97 |
int cnt = secondary_supers()->length(); |
|
98 |
for (int i = 0; i < cnt; i++) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
99 |
if (secondary_supers()->at(i) == k) { |
1 | 100 |
((Klass*)this)->set_secondary_super_cache(k); |
101 |
return true; |
|
102 |
} |
|
103 |
} |
|
104 |
return false; |
|
105 |
} |
|
106 |
||
107 |
// Return self, except for abstract classes with exactly 1 |
|
108 |
// implementor. Then return the 1 concrete implementation. |
|
109 |
Klass *Klass::up_cast_abstract() { |
|
110 |
Klass *r = this; |
|
111 |
while( r->is_abstract() ) { // Receiver is abstract? |
|
112 |
Klass *s = r->subklass(); // Check for exactly 1 subklass |
|
113 |
if( !s || s->next_sibling() ) // Oops; wrong count; give up |
|
114 |
return this; // Return 'this' as a no-progress flag |
|
115 |
r = s; // Loop till find concrete class |
|
116 |
} |
|
117 |
return r; // Return the 1 concrete class |
|
118 |
} |
|
119 |
||
2131 | 120 |
// Find LCA in class hierarchy |
1 | 121 |
Klass *Klass::LCA( Klass *k2 ) { |
122 |
Klass *k1 = this; |
|
123 |
while( 1 ) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
124 |
if( k1->is_subtype_of(k2) ) return k2; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
125 |
if( k2->is_subtype_of(k1) ) return k1; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
126 |
k1 = k1->super(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
127 |
k2 = k2->super(); |
1 | 128 |
} |
129 |
} |
|
130 |
||
131 |
||
132 |
void Klass::check_valid_for_instantiation(bool throwError, TRAPS) { |
|
133 |
ResourceMark rm(THREAD); |
|
134 |
THROW_MSG(throwError ? vmSymbols::java_lang_InstantiationError() |
|
135 |
: vmSymbols::java_lang_InstantiationException(), external_name()); |
|
136 |
} |
|
137 |
||
138 |
||
139 |
void Klass::copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS) { |
|
140 |
THROW(vmSymbols::java_lang_ArrayStoreException()); |
|
141 |
} |
|
142 |
||
143 |
||
144 |
void Klass::initialize(TRAPS) { |
|
145 |
ShouldNotReachHere(); |
|
146 |
} |
|
147 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
148 |
bool Klass::compute_is_subtype_of(Klass* k) { |
1 | 149 |
assert(k->is_klass(), "argument must be a class"); |
150 |
return is_subclass_of(k); |
|
151 |
} |
|
152 |
||
27020 | 153 |
Klass* Klass::find_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const { |
154 |
#ifdef ASSERT |
|
155 |
tty->print_cr("Error: find_field called on a klass oop." |
|
156 |
" Likely error: reflection method does not correctly" |
|
157 |
" wrap return value in a mirror object."); |
|
158 |
#endif |
|
159 |
ShouldNotReachHere(); |
|
160 |
return NULL; |
|
161 |
} |
|
1 | 162 |
|
34666 | 163 |
Method* Klass::uncached_lookup_method(const Symbol* name, const Symbol* signature, OverpassLookupMode overpass_mode) const { |
1 | 164 |
#ifdef ASSERT |
165 |
tty->print_cr("Error: uncached_lookup_method called on a klass oop." |
|
166 |
" Likely error: reflection method does not correctly" |
|
167 |
" wrap return value in a mirror object."); |
|
168 |
#endif |
|
169 |
ShouldNotReachHere(); |
|
170 |
return NULL; |
|
171 |
} |
|
172 |
||
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
18687
diff
changeset
|
173 |
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
|
174 |
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
|
175 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
176 |
|
34666 | 177 |
// "Normal" instantiation is preceeded by a MetaspaceObj allocation |
178 |
// which zeros out memory - calloc equivalent. |
|
46324
8764956ec928
8005165: Remove CPU-dependent code in self-patching vtables
iklam
parents:
46271
diff
changeset
|
179 |
// The constructor is also used from CppVtableCloner, |
34666 | 180 |
// which doesn't zero out the memory before calling the constructor. |
181 |
// Need to set the _java_mirror field explicitly to not hit an assert that the field |
|
182 |
// should be NULL before setting it. |
|
183 |
Klass::Klass() : _prototype_header(markOopDesc::prototype()), |
|
184 |
_shared_class_path_index(-1), |
|
185 |
_java_mirror(NULL) { |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
186 |
|
34666 | 187 |
_primary_supers[0] = this; |
188 |
set_super_check_offset(in_bytes(primary_supers_offset())); |
|
1 | 189 |
} |
190 |
||
191 |
jint Klass::array_layout_helper(BasicType etype) { |
|
192 |
assert(etype >= T_BOOLEAN && etype <= T_OBJECT, "valid etype"); |
|
193 |
// Note that T_ARRAY is not allowed here. |
|
194 |
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
|
195 |
int esize = type2aelembytes(etype); |
1 | 196 |
bool isobj = (etype == T_OBJECT); |
197 |
int tag = isobj ? _lh_array_tag_obj_value : _lh_array_tag_type_value; |
|
198 |
int lh = array_layout_helper(tag, hsize, etype, exact_log2(esize)); |
|
199 |
||
200 |
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
|
201 |
assert(layout_helper_is_array(lh), "correct kind"); |
1 | 202 |
assert(layout_helper_is_objArray(lh) == isobj, "correct kind"); |
203 |
assert(layout_helper_is_typeArray(lh) == !isobj, "correct kind"); |
|
204 |
assert(layout_helper_header_size(lh) == hsize, "correct decode"); |
|
205 |
assert(layout_helper_element_type(lh) == etype, "correct decode"); |
|
206 |
assert(1 << layout_helper_log2_element_size(lh) == esize, "correct decode"); |
|
207 |
||
208 |
return lh; |
|
209 |
} |
|
210 |
||
211 |
bool Klass::can_be_primary_super_slow() const { |
|
212 |
if (super() == NULL) |
|
213 |
return true; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
214 |
else if (super()->super_depth() >= primary_super_limit()-1) |
1 | 215 |
return false; |
216 |
else |
|
217 |
return true; |
|
218 |
} |
|
219 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
220 |
void Klass::initialize_supers(Klass* k, TRAPS) { |
1 | 221 |
if (FastSuperclassLimit == 0) { |
222 |
// None of the other machinery matters. |
|
223 |
set_super(k); |
|
224 |
return; |
|
225 |
} |
|
226 |
if (k == NULL) { |
|
227 |
set_super(NULL); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
228 |
_primary_supers[0] = this; |
1 | 229 |
assert(super_depth() == 0, "Object must already be initialized properly"); |
4571 | 230 |
} else if (k != super() || k == SystemDictionary::Object_klass()) { |
231 |
assert(super() == NULL || super() == SystemDictionary::Object_klass(), |
|
1 | 232 |
"initialize this only once to a non-trivial value"); |
233 |
set_super(k); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
234 |
Klass* sup = k; |
1 | 235 |
int sup_depth = sup->super_depth(); |
236 |
juint my_depth = MIN2(sup_depth + 1, (int)primary_super_limit()); |
|
237 |
if (!can_be_primary_super_slow()) |
|
238 |
my_depth = primary_super_limit(); |
|
239 |
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
|
240 |
_primary_supers[i] = sup->_primary_supers[i]; |
1 | 241 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
242 |
Klass* *super_check_cell; |
1 | 243 |
if (my_depth < primary_super_limit()) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
244 |
_primary_supers[my_depth] = this; |
1 | 245 |
super_check_cell = &_primary_supers[my_depth]; |
246 |
} else { |
|
247 |
// Overflow of the primary_supers array forces me to be secondary. |
|
248 |
super_check_cell = &_secondary_super_cache; |
|
249 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
250 |
set_super_check_offset((address)super_check_cell - (address) this); |
1 | 251 |
|
252 |
#ifdef ASSERT |
|
253 |
{ |
|
254 |
juint j = super_depth(); |
|
255 |
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
|
256 |
Klass* t = this; |
14488 | 257 |
while (!t->can_be_primary_super()) { |
258 |
t = t->super(); |
|
259 |
j = t->super_depth(); |
|
1 | 260 |
} |
261 |
for (juint j1 = j+1; j1 < primary_super_limit(); j1++) { |
|
262 |
assert(primary_super_of_depth(j1) == NULL, "super list padding"); |
|
263 |
} |
|
264 |
while (t != NULL) { |
|
265 |
assert(primary_super_of_depth(j) == t, "super list initialization"); |
|
14488 | 266 |
t = t->super(); |
1 | 267 |
--j; |
268 |
} |
|
269 |
assert(j == (juint)-1, "correct depth count"); |
|
270 |
} |
|
271 |
#endif |
|
272 |
} |
|
273 |
||
274 |
if (secondary_supers() == NULL) { |
|
275 |
||
276 |
// Now compute the list of secondary supertypes. |
|
277 |
// Secondaries can occasionally be on the super chain, |
|
278 |
// if the inline "_primary_supers" array overflows. |
|
279 |
int extras = 0; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
280 |
Klass* p; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
281 |
for (p = super(); !(p == NULL || p->can_be_primary_super()); p = p->super()) { |
1 | 282 |
++extras; |
283 |
} |
|
284 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
285 |
ResourceMark rm(THREAD); // need to reclaim GrowableArrays allocated below |
1 | 286 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
287 |
// Compute the "real" non-extra secondaries. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
288 |
GrowableArray<Klass*>* secondaries = compute_secondary_supers(extras); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
289 |
if (secondaries == NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
290 |
// secondary_supers set by compute_secondary_supers |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
291 |
return; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
292 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
293 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
294 |
GrowableArray<Klass*>* primaries = new GrowableArray<Klass*>(extras); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
295 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
296 |
for (p = super(); !(p == NULL || p->can_be_primary_super()); p = p->super()) { |
1 | 297 |
int i; // Scan for overflow primaries being duplicates of 2nd'arys |
298 |
||
299 |
// This happens frequently for very deeply nested arrays: the |
|
300 |
// primary superclass chain overflows into the secondary. The |
|
301 |
// secondary list contains the element_klass's secondaries with |
|
302 |
// an extra array dimension added. If the element_klass's |
|
303 |
// secondary list already contains some primary overflows, they |
|
304 |
// (with the extra level of array-ness) will collide with the |
|
305 |
// normal primary superclass overflows. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
306 |
for( i = 0; i < secondaries->length(); i++ ) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
307 |
if( secondaries->at(i) == p ) |
1 | 308 |
break; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
309 |
} |
1 | 310 |
if( i < secondaries->length() ) |
311 |
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
|
312 |
primaries->push(p); |
1 | 313 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
314 |
// 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
|
315 |
// 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
|
316 |
int new_length = primaries->length() + secondaries->length(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
317 |
Array<Klass*>* s2 = MetadataFactory::new_array<Klass*>( |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
318 |
class_loader_data(), new_length, CHECK); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
319 |
int fill_p = primaries->length(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
320 |
for (int j = 0; j < fill_p; j++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
321 |
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
|
322 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
323 |
for( int j = 0; j < secondaries->length(); j++ ) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
324 |
s2->at_put(j+fill_p, secondaries->at(j)); // add secondaries on the end. |
1 | 325 |
} |
326 |
||
327 |
#ifdef ASSERT |
|
328 |
// 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
|
329 |
for (int j = 0; j < s2->length(); j++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
330 |
assert(s2->at(j) != NULL, "correct bootstrapping order"); |
1 | 331 |
} |
332 |
#endif |
|
333 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46324
diff
changeset
|
334 |
set_secondary_supers(s2); |
1 | 335 |
} |
336 |
} |
|
337 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
338 |
GrowableArray<Klass*>* Klass::compute_secondary_supers(int num_extra_slots) { |
1 | 339 |
assert(num_extra_slots == 0, "override for complex klasses"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
340 |
set_secondary_supers(Universe::the_empty_klass_array()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
341 |
return NULL; |
1 | 342 |
} |
343 |
||
344 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
345 |
InstanceKlass* Klass::superklass() const { |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33602
diff
changeset
|
346 |
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
|
347 |
return _super == NULL ? NULL : InstanceKlass::cast(_super); |
1 | 348 |
} |
349 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
350 |
void Klass::set_subklass(Klass* s) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
351 |
assert(s != this, "sanity check"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
352 |
_subklass = s; |
1 | 353 |
} |
354 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
355 |
void Klass::set_next_sibling(Klass* s) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
356 |
assert(s != this, "sanity check"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
357 |
_next_sibling = s; |
1 | 358 |
} |
359 |
||
360 |
void Klass::append_to_sibling_list() { |
|
14078 | 361 |
debug_only(verify();) |
1 | 362 |
// add ourselves to superklass' subklass list |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
363 |
InstanceKlass* super = superklass(); |
1 | 364 |
if (super == NULL) return; // special case: class Object |
14078 | 365 |
assert((!super->is_interface() // interfaces cannot be supers |
1 | 366 |
&& (super->superklass() == NULL || !is_interface())), |
367 |
"an interface can only be a subklass of Object"); |
|
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
22908
diff
changeset
|
368 |
Klass* prev_first_subklass = super->subklass(); |
1 | 369 |
if (prev_first_subklass != NULL) { |
370 |
// set our sibling to be the superklass' previous first subklass |
|
371 |
set_next_sibling(prev_first_subklass); |
|
372 |
} |
|
373 |
// make ourselves the superklass' first subklass |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
374 |
super->set_subklass(this); |
14078 | 375 |
debug_only(verify();) |
1 | 376 |
} |
377 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
378 |
bool Klass::is_loader_alive(BoolObjectClosure* is_alive) { |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
379 |
#ifdef ASSERT |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
380 |
// The class is alive iff the class loader is alive. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
381 |
oop loader = class_loader(); |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
382 |
bool loader_alive = (loader == NULL) || is_alive->do_object_b(loader); |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
383 |
#endif // ASSERT |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
384 |
|
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
385 |
// The class is alive if it's mirror is alive (which should be marked if the |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
386 |
// loader is alive) unless it's an anoymous class. |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
387 |
bool mirror_alive = is_alive->do_object_b(java_mirror()); |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
388 |
assert(!mirror_alive || loader_alive, "loader must be alive if the mirror is" |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
389 |
" but not the other way around with anonymous classes"); |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
390 |
return mirror_alive; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
391 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
392 |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
393 |
void Klass::clean_weak_klass_links(BoolObjectClosure* is_alive, bool clean_alive_klasses) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
394 |
if (!ClassUnloading) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
395 |
return; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
396 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
397 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
398 |
Klass* root = SystemDictionary::Object_klass(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
399 |
Stack<Klass*, mtGC> stack; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
400 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
401 |
stack.push(root); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
402 |
while (!stack.is_empty()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
403 |
Klass* current = stack.pop(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
404 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
405 |
assert(current->is_loader_alive(is_alive), "just checking, this should be live"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
406 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
407 |
// Find and set the first alive subklass |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
22908
diff
changeset
|
408 |
Klass* sub = current->subklass(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
409 |
while (sub != NULL && !sub->is_loader_alive(is_alive)) { |
1 | 410 |
#ifndef PRODUCT |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
36508
diff
changeset
|
411 |
if (log_is_enabled(Trace, class, unload)) { |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
412 |
ResourceMark rm; |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
36508
diff
changeset
|
413 |
log_trace(class, unload)("unlinking class (subclass): %s", sub->external_name()); |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
414 |
} |
1 | 415 |
#endif |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
22908
diff
changeset
|
416 |
sub = sub->next_sibling(); |
1 | 417 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
418 |
current->set_subklass(sub); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
419 |
if (sub != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
420 |
stack.push(sub); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
421 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
422 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
423 |
// Find and set the first alive sibling |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
22908
diff
changeset
|
424 |
Klass* sibling = current->next_sibling(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
425 |
while (sibling != NULL && !sibling->is_loader_alive(is_alive)) { |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
36508
diff
changeset
|
426 |
if (log_is_enabled(Trace, class, unload)) { |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
427 |
ResourceMark rm; |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
36508
diff
changeset
|
428 |
log_trace(class, unload)("[Unlinking class (sibling) %s]", sibling->external_name()); |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
429 |
} |
23515
f4872ef5df09
8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents:
22908
diff
changeset
|
430 |
sibling = sibling->next_sibling(); |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
431 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
432 |
current->set_next_sibling(sibling); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
433 |
if (sibling != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
434 |
stack.push(sibling); |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
435 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
436 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
437 |
// Clean the implementors list and method data. |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33602
diff
changeset
|
438 |
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
|
439 |
InstanceKlass* ik = InstanceKlass::cast(current); |
33576
6dbde58b08a6
8058563: InstanceKlass::_dependencies list isn't cleared from empty nmethodBucket entries
stefank
parents:
33151
diff
changeset
|
440 |
ik->clean_weak_instanceklass_links(is_alive); |
41060
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
441 |
|
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
442 |
// JVMTI RedefineClasses creates previous versions that are not in |
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
443 |
// the class hierarchy, so process them here. |
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
444 |
while ((ik = ik->previous_versions()) != NULL) { |
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
445 |
ik->clean_weak_instanceklass_links(is_alive); |
c72f3248ea0c
8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents:
40655
diff
changeset
|
446 |
} |
1 | 447 |
} |
448 |
} |
|
449 |
} |
|
450 |
||
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
451 |
void Klass::metaspace_pointers_do(MetaspaceClosure* it) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
452 |
if (log_is_enabled(Trace, cds)) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
453 |
ResourceMark rm; |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
454 |
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
|
455 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
456 |
|
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
457 |
it->push(&_name); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
458 |
it->push(&_secondary_super_cache); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
459 |
it->push(&_secondary_supers); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
460 |
for (int i = 0; i < _primary_super_limit; i++) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
461 |
it->push(&_primary_supers[i]); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
462 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
463 |
it->push(&_super); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
464 |
it->push(&_subklass); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
465 |
it->push(&_next_sibling); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
466 |
it->push(&_next_link); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
467 |
|
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
468 |
vtableEntry* vt = start_of_vtable(); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
469 |
for (int i=0; i<vtable_length(); i++) { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
470 |
it->push(vt[i].method_addr()); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
471 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
472 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46413
diff
changeset
|
473 |
|
1 | 474 |
void Klass::remove_unshareable_info() { |
23872
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
475 |
assert (DumpSharedSpaces, "only called for DumpSharedSpaces"); |
42639
762117d57d05
8170672: Event-based tracing to support classloader instances
mgronlun
parents:
41299
diff
changeset
|
476 |
TRACE_REMOVE_ID(this); |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
477 |
if (log_is_enabled(Trace, cds, unshareable)) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
478 |
ResourceMark rm; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
479 |
log_trace(cds, unshareable)("remove: %s", external_name()); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
480 |
} |
23872
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
481 |
|
1 | 482 |
set_subklass(NULL); |
483 |
set_next_sibling(NULL); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
484 |
set_next_link(NULL); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
485 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
486 |
// 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
|
487 |
set_class_loader_data(NULL); |
46413 | 488 |
set_is_shared(); |
1 | 489 |
} |
490 |
||
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
491 |
void Klass::remove_java_mirror() { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
492 |
assert (DumpSharedSpaces, "only called for DumpSharedSpaces"); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
493 |
if (log_is_enabled(Trace, cds, unshareable)) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
494 |
ResourceMark rm; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
495 |
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
|
496 |
} |
47580 | 497 |
// Just null out the mirror. The class_loader_data() no longer exists. |
498 |
_java_mirror = NULL; |
|
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
499 |
} |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
500 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
501 |
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
|
502 |
assert(is_klass(), "ensure C++ vtable is restored"); |
46413 | 503 |
assert(is_shared(), "must be set"); |
42639
762117d57d05
8170672: Event-based tracing to support classloader instances
mgronlun
parents:
41299
diff
changeset
|
504 |
TRACE_RESTORE_ID(this); |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
505 |
if (log_is_enabled(Trace, cds, unshareable)) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
506 |
ResourceMark rm; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
507 |
log_trace(cds, unshareable)("restore: %s", external_name()); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46968
diff
changeset
|
508 |
} |
39400
daf3af35d6bf
8159666: Better CDS support for Event-based tracing
iklam
parents:
38151
diff
changeset
|
509 |
|
23872
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
510 |
// 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
|
511 |
// 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
|
512 |
// modify the CLD list outside a safepoint. |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
513 |
if (class_loader_data() == NULL) { |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
514 |
// 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
|
515 |
set_class_loader_data(loader_data); |
1 | 516 |
|
23872
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
517 |
// 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
|
518 |
// (same order as class file parsing) |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
519 |
loader_data->add_class(this); |
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
520 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
521 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
522 |
// Recreate the class mirror. |
23872
536c66fc43d3
8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents:
23515
diff
changeset
|
523 |
// 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
|
524 |
// 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
|
525 |
if (java_mirror() == NULL) { |
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
42639
diff
changeset
|
526 |
Handle loader(THREAD, loader_data->class_loader()); |
36508 | 527 |
ModuleEntry* module_entry = NULL; |
528 |
Klass* k = this; |
|
529 |
if (k->is_objArray_klass()) { |
|
530 |
k = ObjArrayKlass::cast(k)->bottom_klass(); |
|
531 |
} |
|
532 |
// Obtain klass' module. |
|
533 |
if (k->is_instance_klass()) { |
|
534 |
InstanceKlass* ik = (InstanceKlass*) k; |
|
535 |
module_entry = ik->module(); |
|
536 |
} else { |
|
41183
207b92e69457
8163406: The fixup_module_list must be protected by Module_lock when inserting new entries
lfoltan
parents:
41060
diff
changeset
|
537 |
module_entry = ModuleEntryTable::javabase_moduleEntry(); |
36508 | 538 |
} |
44520
0553e129e0ec
8177530: Module system implementation refresh (4/2017)
alanb
parents:
42639
diff
changeset
|
539 |
// Obtain java.lang.Module, if available |
46773
fb17cc9a6847
8185717: Make ModuleEntry->module() return an oop not a jobject
hseigel
parents:
46746
diff
changeset
|
540 |
Handle module_handle(THREAD, ((module_entry != NULL) ? module_entry->module() : (oop)NULL)); |
36508 | 541 |
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
|
542 |
} |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
543 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
544 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
545 |
Klass* Klass::array_klass_or_null(int rank) { |
1 | 546 |
EXCEPTION_MARK; |
547 |
// No exception can be thrown by array_klass_impl when called with or_null == true. |
|
548 |
// (In anycase, the execption mark will fail if it do so) |
|
549 |
return array_klass_impl(true, rank, THREAD); |
|
550 |
} |
|
551 |
||
552 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
553 |
Klass* Klass::array_klass_or_null() { |
1 | 554 |
EXCEPTION_MARK; |
555 |
// No exception can be thrown by array_klass_impl when called with or_null == true. |
|
556 |
// (In anycase, the execption mark will fail if it do so) |
|
557 |
return array_klass_impl(true, THREAD); |
|
558 |
} |
|
559 |
||
560 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
561 |
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
|
562 |
fatal("array_klass should be dispatched to InstanceKlass, ObjArrayKlass or TypeArrayKlass"); |
1 | 563 |
return NULL; |
564 |
} |
|
565 |
||
566 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
567 |
Klass* Klass::array_klass_impl(bool or_null, TRAPS) { |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
568 |
fatal("array_klass should be dispatched to InstanceKlass, ObjArrayKlass or TypeArrayKlass"); |
1 | 569 |
return NULL; |
570 |
} |
|
571 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
572 |
oop Klass::class_loader() const { return class_loader_data()->class_loader(); } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
573 |
|
33602 | 574 |
// In product mode, this function doesn't have virtual function calls so |
575 |
// there might be some performance advantage to handling InstanceKlass here. |
|
1 | 576 |
const char* Klass::external_name() const { |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33602
diff
changeset
|
577 |
if (is_instance_klass()) { |
33602 | 578 |
const InstanceKlass* ik = static_cast<const InstanceKlass*>(this); |
1550
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
579 |
if (ik->is_anonymous()) { |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
580 |
intptr_t hash = 0; |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
581 |
if (ik->java_mirror() != NULL) { |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
582 |
// java_mirror might not be created yet, return 0 as hash. |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
583 |
hash = ik->java_mirror()->identity_hash(); |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
584 |
} |
1550
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
585 |
char hash_buf[40]; |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
586 |
sprintf(hash_buf, "/" UINTX_FORMAT, (uintx)hash); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
587 |
size_t hash_len = strlen(hash_buf); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
588 |
|
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
589 |
size_t result_len = name()->utf8_length(); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
590 |
char* result = NEW_RESOURCE_ARRAY(char, result_len + hash_len + 1); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
591 |
name()->as_klass_external_name(result, (int) result_len + 1); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
592 |
assert(strlen(result) == result_len, ""); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
593 |
strcpy(result + result_len, hash_buf); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
594 |
assert(strlen(result) == result_len + hash_len, ""); |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
595 |
return result; |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
596 |
} |
be2fc37a817f
6653858: dynamic languages need to be able to load anonymous classes
jrose
parents:
670
diff
changeset
|
597 |
} |
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2131
diff
changeset
|
598 |
if (name() == NULL) return "<unknown>"; |
1 | 599 |
return name()->as_klass_external_name(); |
600 |
} |
|
601 |
||
602 |
||
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2131
diff
changeset
|
603 |
const char* Klass::signature_name() const { |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2131
diff
changeset
|
604 |
if (name() == NULL) return "<unknown>"; |
1 | 605 |
return name()->as_C_string(); |
606 |
} |
|
607 |
||
608 |
// Unless overridden, modifier_flags is 0. |
|
609 |
jint Klass::compute_modifier_flags(TRAPS) const { |
|
610 |
return 0; |
|
611 |
} |
|
612 |
||
613 |
int Klass::atomic_incr_biased_lock_revocation_count() { |
|
614 |
return (int) Atomic::add(1, &_biased_lock_revocation_count); |
|
615 |
} |
|
616 |
||
617 |
// Unless overridden, jvmti_class_status has no flags set. |
|
618 |
jint Klass::jvmti_class_status() const { |
|
619 |
return 0; |
|
620 |
} |
|
621 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
622 |
|
1 | 623 |
// Printing |
624 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
625 |
void Klass::print_on(outputStream* st) const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
626 |
ResourceMark rm; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
627 |
// print title |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
628 |
st->print("%s", internal_name()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
629 |
print_address_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
630 |
st->cr(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
631 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
632 |
|
1 | 633 |
void Klass::oop_print_on(oop obj, outputStream* st) { |
634 |
ResourceMark rm; |
|
635 |
// print title |
|
636 |
st->print_cr("%s ", internal_name()); |
|
637 |
obj->print_address_on(st); |
|
638 |
||
639 |
if (WizardMode) { |
|
640 |
// print header |
|
641 |
obj->mark()->print_on(st); |
|
642 |
} |
|
643 |
||
644 |
// print class |
|
645 |
st->print(" - klass: "); |
|
646 |
obj->klass()->print_value_on(st); |
|
647 |
st->cr(); |
|
648 |
} |
|
649 |
||
650 |
void Klass::oop_print_value_on(oop obj, outputStream* st) { |
|
651 |
// print title |
|
652 |
ResourceMark rm; // Cannot print in debug mode without this |
|
653 |
st->print("%s", internal_name()); |
|
654 |
obj->print_address_on(st); |
|
655 |
} |
|
656 |
||
15437 | 657 |
#if INCLUDE_SERVICES |
658 |
// Size Statistics |
|
659 |
void Klass::collect_statistics(KlassSizeStats *sz) const { |
|
660 |
sz->_klass_bytes = sz->count(this); |
|
661 |
sz->_mirror_bytes = sz->count(java_mirror()); |
|
662 |
sz->_secondary_supers_bytes = sz->count_array(secondary_supers()); |
|
663 |
||
664 |
sz->_ro_bytes += sz->_secondary_supers_bytes; |
|
665 |
sz->_rw_bytes += sz->_klass_bytes + sz->_mirror_bytes; |
|
666 |
} |
|
667 |
#endif // INCLUDE_SERVICES |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
668 |
|
1 | 669 |
// Verification |
670 |
||
22794
f1c014ad3754
8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents:
22201
diff
changeset
|
671 |
void Klass::verify_on(outputStream* st) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
672 |
|
18439 | 673 |
// This can be expensive, but it is worth checking that this klass is actually |
674 |
// 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
|
675 |
assert(Metaspace::contains((address)this), "Should be"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
676 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
677 |
guarantee(this->is_klass(),"should be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
678 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
679 |
if (super() != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
680 |
guarantee(super()->is_klass(), "should be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
681 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
682 |
if (secondary_super_cache() != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
683 |
Klass* ko = secondary_super_cache(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
684 |
guarantee(ko->is_klass(), "should be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
685 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
686 |
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
|
687 |
Klass* ko = _primary_supers[i]; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
688 |
if (ko != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
689 |
guarantee(ko->is_klass(), "should be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
690 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
691 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
692 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
693 |
if (java_mirror() != NULL) { |
46968
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46773
diff
changeset
|
694 |
guarantee(oopDesc::is_oop(java_mirror()), "should be instance"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
695 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
696 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
697 |
|
1 | 698 |
void Klass::oop_verify_on(oop obj, outputStream* st) { |
46968
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46773
diff
changeset
|
699 |
guarantee(oopDesc::is_oop(obj), "should be oop"); |
1 | 700 |
guarantee(obj->klass()->is_klass(), "klass field is not a klass"); |
701 |
} |
|
702 |
||
46408
70aab0c2ea8b
8178350: klassVtable and klassItable should be ValueObj
iklam
parents:
46388
diff
changeset
|
703 |
klassVtable Klass::vtable() const { |
70aab0c2ea8b
8178350: klassVtable and klassItable should be ValueObj
iklam
parents:
46388
diff
changeset
|
704 |
return klassVtable(const_cast<Klass*>(this), start_of_vtable(), vtable_length() / vtableEntry::size()); |
35900 | 705 |
} |
706 |
||
707 |
vtableEntry* Klass::start_of_vtable() const { |
|
708 |
return (vtableEntry*) ((address)this + in_bytes(vtable_start_offset())); |
|
709 |
} |
|
710 |
||
711 |
Method* Klass::method_at_vtable(int index) { |
|
712 |
#ifndef PRODUCT |
|
713 |
assert(index >= 0, "valid vtable index"); |
|
714 |
if (DebugVtables) { |
|
715 |
verify_vtable_index(index); |
|
716 |
} |
|
717 |
#endif |
|
718 |
return start_of_vtable()[index].method(); |
|
719 |
} |
|
720 |
||
35899 | 721 |
ByteSize Klass::vtable_start_offset() { |
722 |
return in_ByteSize(InstanceKlass::header_size() * wordSize); |
|
723 |
} |
|
724 |
||
1 | 725 |
#ifndef PRODUCT |
726 |
||
20017
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
727 |
bool Klass::verify_vtable_index(int i) { |
33602 | 728 |
int limit = vtable_length()/vtableEntry::size(); |
729 |
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
|
730 |
return true; |
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
731 |
} |
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
732 |
|
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
733 |
bool Klass::verify_itable_index(int i) { |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33602
diff
changeset
|
734 |
assert(is_instance_klass(), ""); |
20017
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
735 |
int method_count = klassItable::method_count_for_interface(this); |
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
736 |
assert(i >= 0 && i < method_count, "index out of bounds"); |
81eba62e9048
8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents:
19696
diff
changeset
|
737 |
return true; |
1 | 738 |
} |
739 |
||
49056
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
740 |
#endif // PRODUCT |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
741 |
|
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
742 |
// The caller of class_loader_and_module_name() (or one of its callers) |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
743 |
// must use a ResourceMark in order to correctly free the result. |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
744 |
const char* Klass::class_loader_and_module_name() const { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
745 |
const char* delim = "/"; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
746 |
size_t delim_len = strlen(delim); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
747 |
|
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
748 |
const char* fqn = external_name(); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
749 |
// Length of message to return; always include FQN |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
750 |
size_t msglen = strlen(fqn) + 1; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
751 |
|
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
752 |
bool has_cl_name = false; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
753 |
bool has_mod_name = false; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
754 |
bool has_version = false; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
755 |
|
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
756 |
// Use class loader name, if exists and not builtin |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
757 |
const char* class_loader_name = ""; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
758 |
ClassLoaderData* cld = class_loader_data(); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
759 |
assert(cld != NULL, "class_loader_data should not be NULL"); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
760 |
if (!cld->is_builtin_class_loader_data()) { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
761 |
// If not builtin, look for name |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
762 |
oop loader = class_loader(); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
763 |
if (loader != NULL) { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
764 |
oop class_loader_name_oop = java_lang_ClassLoader::name(loader); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
765 |
if (class_loader_name_oop != NULL) { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
766 |
class_loader_name = java_lang_String::as_utf8_string(class_loader_name_oop); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
767 |
if (class_loader_name != NULL && class_loader_name[0] != '\0') { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
768 |
has_cl_name = true; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
769 |
msglen += strlen(class_loader_name) + delim_len; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
770 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
771 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
772 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
773 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
774 |
|
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
775 |
const char* module_name = ""; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
776 |
const char* version = ""; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
777 |
const Klass* bottom_klass = is_objArray_klass() ? |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
778 |
ObjArrayKlass::cast(this)->bottom_klass() : this; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
779 |
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
|
780 |
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
|
781 |
// Use module name, if exists |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
782 |
if (module->is_named()) { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
783 |
has_mod_name = true; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
784 |
module_name = module->name()->as_C_string(); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
785 |
msglen += strlen(module_name); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
786 |
// Use version if exists and is not a jdk module |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
787 |
if (module->is_non_jdk_module() && module->version() != NULL) { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
788 |
has_version = true; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
789 |
version = module->version()->as_C_string(); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
790 |
msglen += strlen("@") + strlen(version); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
791 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
792 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
793 |
} else { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
794 |
// klass is an array of primitives, so its module is java.base |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
795 |
module_name = JAVA_BASE_NAME; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
796 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
797 |
|
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
798 |
if (has_cl_name || has_mod_name) { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
799 |
msglen += delim_len; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
800 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
801 |
|
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
802 |
char* message = NEW_RESOURCE_ARRAY_RETURN_NULL(char, msglen); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
803 |
|
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
804 |
// Just return the FQN if error in allocating string |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
805 |
if (message == NULL) { |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
806 |
return fqn; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
807 |
} |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
808 |
|
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
809 |
jio_snprintf(message, msglen, "%s%s%s%s%s%s%s", |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
810 |
class_loader_name, |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
811 |
(has_cl_name) ? delim : "", |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
812 |
(has_mod_name) ? module_name : "", |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
813 |
(has_version) ? "@" : "", |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
814 |
(has_version) ? version : "", |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
815 |
(has_cl_name || has_mod_name) ? delim : "", |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
816 |
fqn); |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
817 |
return message; |
91ada5977172
8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents:
47580
diff
changeset
|
818 |
} |