author | kbarrett |
Tue, 13 Jan 2015 14:30:53 -0500 | |
changeset 28477 | 157314902d78 |
parent 27020 | a7c8010446c2 |
child 28731 | f7339cba0a6a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
22794
f1c014ad3754
8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents:
22234
diff
changeset
|
2 |
* Copyright (c) 1997, 2014, 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:
4571
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4571
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:
4571
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/javaClasses.hpp" |
|
27 |
#include "classfile/systemDictionary.hpp" |
|
28 |
#include "classfile/vmSymbols.hpp" |
|
29 |
#include "gc_interface/collectedHeap.inline.hpp" |
|
30 |
#include "jvmtifiles/jvmti.h" |
|
31 |
#include "memory/gcLocker.hpp" |
|
32 |
#include "memory/universe.inline.hpp" |
|
33 |
#include "oops/arrayKlass.hpp" |
|
34 |
#include "oops/arrayOop.hpp" |
|
35 |
#include "oops/instanceKlass.hpp" |
|
36 |
#include "oops/objArrayOop.hpp" |
|
37 |
#include "oops/oop.inline.hpp" |
|
1 | 38 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
39 |
int ArrayKlass::static_size(int header_size) { |
1 | 40 |
// size of an array klass object |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
41 |
assert(header_size <= InstanceKlass::header_size(), "bad header size"); |
1 | 42 |
// If this assert fails, see comments in base_create_array_klass. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
43 |
header_size = InstanceKlass::header_size(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
44 |
int vtable_len = Universe::base_vtable_size(); |
1 | 45 |
#ifdef _LP64 |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
46 |
int size = header_size + align_object_offset(vtable_len); |
1 | 47 |
#else |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
48 |
int size = header_size + vtable_len; |
1 | 49 |
#endif |
50 |
return align_object_size(size); |
|
51 |
} |
|
52 |
||
53 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
54 |
Klass* ArrayKlass::java_super() const { |
1 | 55 |
if (super() == NULL) return NULL; // bootstrap case |
56 |
// Array klasses have primary supertypes which are not reported to Java. |
|
57 |
// Example super chain: String[][] -> Object[][] -> Object[] -> Object |
|
4571 | 58 |
return SystemDictionary::Object_klass(); |
1 | 59 |
} |
60 |
||
61 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
62 |
oop ArrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) { |
1 | 63 |
ShouldNotReachHere(); |
64 |
return NULL; |
|
65 |
} |
|
66 |
||
27020 | 67 |
// find field according to JVM spec 5.4.3.2, returns the klass in which the field is defined |
68 |
Klass* ArrayKlass::find_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const { |
|
69 |
// There are no fields in an array klass but look to the super class (Object) |
|
70 |
assert(super(), "super klass must be present"); |
|
71 |
return super()->find_field(name, sig, fd); |
|
72 |
} |
|
73 |
||
23999
22eb7be3d99d
8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan
parents:
22794
diff
changeset
|
74 |
Method* ArrayKlass::uncached_lookup_method(Symbol* name, Symbol* signature, MethodLookupMode mode) const { |
1 | 75 |
// There are no methods in an array klass but the super class (Object) has some |
76 |
assert(super(), "super klass must be present"); |
|
23999
22eb7be3d99d
8033150: invokestatic: IncompatibleClassChangeError trying to invoke static method from a parent in presence of conflicting defaults.
lfoltan
parents:
22794
diff
changeset
|
77 |
return super()->uncached_lookup_method(name, signature, mode); |
1 | 78 |
} |
79 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
80 |
ArrayKlass::ArrayKlass(Symbol* name) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
81 |
set_name(name); |
1 | 82 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
83 |
set_super(Universe::is_bootstrapping() ? (Klass*)NULL : SystemDictionary::Object_klass()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
84 |
set_layout_helper(Klass::_lh_neutral_value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
85 |
set_dimension(1); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
86 |
set_higher_dimension(NULL); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
87 |
set_lower_dimension(NULL); |
1 | 88 |
// Arrays don't add any new methods, so their vtable is the same size as |
89 |
// the vtable of klass Object. |
|
90 |
int vtable_size = Universe::base_vtable_size(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
91 |
set_vtable_length(vtable_size); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
92 |
set_is_cloneable(); // All arrays are considered to be cloneable (See JLS 20.1.5) |
1 | 93 |
} |
94 |
||
95 |
||
96 |
// Initialization of vtables and mirror object is done separatly from base_create_array_klass, |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
97 |
// since a GC can happen. At this point all instance variables of the ArrayKlass must be setup. |
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
98 |
void ArrayKlass::complete_create_array_klass(ArrayKlass* k, KlassHandle super_klass, TRAPS) { |
1 | 99 |
ResourceMark rm(THREAD); |
100 |
k->initialize_supers(super_klass(), CHECK); |
|
101 |
k->vtable()->initialize_vtable(false, CHECK); |
|
26927 | 102 |
java_lang_Class::create_mirror(k, Handle(THREAD, k->class_loader()), Handle(NULL), CHECK); |
1 | 103 |
} |
104 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
105 |
GrowableArray<Klass*>* ArrayKlass::compute_secondary_supers(int num_extra_slots) { |
1 | 106 |
// interfaces = { cloneable_klass, serializable_klass }; |
107 |
assert(num_extra_slots == 0, "sanity of primitive array type"); |
|
108 |
// Must share this for correct bootstrapping! |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
109 |
set_secondary_supers(Universe::the_array_interfaces_array()); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
110 |
return NULL; |
1 | 111 |
} |
112 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
113 |
bool ArrayKlass::compute_is_subtype_of(Klass* k) { |
1 | 114 |
// An array is a subtype of Serializable, Clonable, and Object |
4571 | 115 |
return k == SystemDictionary::Object_klass() |
116 |
|| k == SystemDictionary::Cloneable_klass() |
|
117 |
|| k == SystemDictionary::Serializable_klass(); |
|
1 | 118 |
} |
119 |
||
120 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
121 |
inline intptr_t* ArrayKlass::start_of_vtable() const { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
122 |
// all vtables start at the same place, that's why we use InstanceKlass::header_size here |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
123 |
return ((intptr_t*)this) + InstanceKlass::header_size(); |
1 | 124 |
} |
125 |
||
126 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
127 |
klassVtable* ArrayKlass::vtable() const { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
128 |
KlassHandle kh(Thread::current(), this); |
1 | 129 |
return new klassVtable(kh, start_of_vtable(), vtable_length() / vtableEntry::size()); |
130 |
} |
|
131 |
||
132 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
133 |
objArrayOop ArrayKlass::allocate_arrayArray(int n, int length, TRAPS) { |
1 | 134 |
if (length < 0) { |
135 |
THROW_0(vmSymbols::java_lang_NegativeArraySizeException()); |
|
136 |
} |
|
137 |
if (length > arrayOopDesc::max_array_length(T_ARRAY)) { |
|
3576
4ceec8fb3e18
6850957: Honor -XX:OnOutOfMemoryError when array size exceeds VM limit
martin
parents:
1
diff
changeset
|
138 |
report_java_out_of_memory("Requested array size exceeds VM limit"); |
12114
9a825a536095
7123170: JCK vm/jvmti/ResourceExhausted/resexh001/resexh00101/ tests fails since 7u4 b02
sspitsyn
parents:
8921
diff
changeset
|
139 |
JvmtiExport::post_array_size_exhausted(); |
1 | 140 |
THROW_OOP_0(Universe::out_of_memory_error_array_size()); |
141 |
} |
|
142 |
int size = objArrayOopDesc::object_size(length); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
143 |
Klass* k = array_klass(n+dimension(), CHECK_0); |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
144 |
ArrayKlass* ak = ArrayKlass::cast(k); |
1 | 145 |
objArrayOop o = |
146 |
(objArrayOop)CollectedHeap::array_allocate(ak, size, length, CHECK_0); |
|
147 |
// initialization to NULL not necessary, area already cleared |
|
148 |
return o; |
|
149 |
} |
|
150 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
151 |
void ArrayKlass::array_klasses_do(void f(Klass* k, TRAPS), TRAPS) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
152 |
Klass* k = this; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
153 |
// Iterate over this array klass and all higher dimensions |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
154 |
while (k != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
155 |
f(k, CHECK); |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
156 |
k = ArrayKlass::cast(k)->higher_dimension(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
157 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
158 |
} |
1 | 159 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
160 |
void ArrayKlass::array_klasses_do(void f(Klass* k)) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
161 |
Klass* k = this; |
1 | 162 |
// Iterate over this array klass and all higher dimensions |
163 |
while (k != NULL) { |
|
164 |
f(k); |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
165 |
k = ArrayKlass::cast(k)->higher_dimension(); |
1 | 166 |
} |
167 |
} |
|
168 |
||
169 |
// JVM support |
|
170 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
171 |
jint ArrayKlass::compute_modifier_flags(TRAPS) const { |
1 | 172 |
return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC; |
173 |
} |
|
174 |
||
175 |
// JVMTI support |
|
176 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
177 |
jint ArrayKlass::jvmti_class_status() const { |
1 | 178 |
return JVMTI_CLASS_STATUS_ARRAY; |
179 |
} |
|
180 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
181 |
void ArrayKlass::remove_unshareable_info() { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
182 |
Klass::remove_unshareable_info(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
183 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
184 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25326
diff
changeset
|
185 |
void ArrayKlass::restore_unshareable_info(ClassLoaderData* loader_data, Handle protection_domain, TRAPS) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25326
diff
changeset
|
186 |
assert(loader_data == ClassLoaderData::the_null_class_loader_data(), "array classes belong to null loader"); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25326
diff
changeset
|
187 |
Klass::restore_unshareable_info(loader_data, protection_domain, CHECK); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
188 |
// Klass recreates the component mirror also |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
189 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
190 |
|
1 | 191 |
// Printing |
192 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
193 |
void ArrayKlass::print_on(outputStream* st) const { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
194 |
assert(is_klass(), "must be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
195 |
Klass::print_on(st); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
196 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
197 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
198 |
void ArrayKlass::print_value_on(outputStream* st) const { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
199 |
assert(is_klass(), "must be klass"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
200 |
for(int index = 0; index < dimension(); index++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
201 |
st->print("[]"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
202 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
203 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
204 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
205 |
void ArrayKlass::oop_print_on(oop obj, outputStream* st) { |
1 | 206 |
assert(obj->is_array(), "must be array"); |
207 |
Klass::oop_print_on(obj, st); |
|
208 |
st->print_cr(" - length: %d", arrayOop(obj)->length()); |
|
209 |
} |
|
210 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
211 |
|
1 | 212 |
// Verification |
213 |
||
22794
f1c014ad3754
8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents:
22234
diff
changeset
|
214 |
void ArrayKlass::verify_on(outputStream* st) { |
f1c014ad3754
8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents:
22234
diff
changeset
|
215 |
Klass::verify_on(st); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
216 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12114
diff
changeset
|
217 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
218 |
void ArrayKlass::oop_verify_on(oop obj, outputStream* st) { |
1 | 219 |
guarantee(obj->is_array(), "must be array"); |
220 |
arrayOop a = arrayOop(obj); |
|
221 |
guarantee(a->length() >= 0, "array with negative length?"); |
|
222 |
} |