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