author | coleenp |
Thu, 17 Jan 2008 13:38:17 -0800 | |
changeset 195 | 9193828514c4 |
parent 1 | 489c9b5090e2 |
child 345 | 8a4c345e460c |
permissions | -rw-r--r-- |
1 | 1 |
/* |
2 |
* Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. |
|
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 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
# include "incls/_precompiled.incl" |
|
26 |
# include "incls/_javaClasses.cpp.incl" |
|
27 |
||
28 |
// Helpful macro for computing field offsets at run time rather than hardcoding them |
|
29 |
#define COMPUTE_OFFSET(klass_name_as_C_str, dest_offset, klass_oop, name_symbol, signature_symbol) \ |
|
30 |
{ \ |
|
31 |
fieldDescriptor fd; \ |
|
32 |
instanceKlass* ik = instanceKlass::cast(klass_oop); \ |
|
33 |
if (!ik->find_local_field(name_symbol, signature_symbol, &fd)) { \ |
|
34 |
fatal("Invalid layout of " klass_name_as_C_str); \ |
|
35 |
} \ |
|
36 |
dest_offset = fd.offset(); \ |
|
37 |
} |
|
38 |
||
39 |
// Same as above but for "optional" offsets that might not be present in certain JDK versions |
|
40 |
#define COMPUTE_OPTIONAL_OFFSET(klass_name_as_C_str, dest_offset, klass_oop, name_symbol, signature_symbol) \ |
|
41 |
{ \ |
|
42 |
fieldDescriptor fd; \ |
|
43 |
instanceKlass* ik = instanceKlass::cast(klass_oop); \ |
|
44 |
if (ik->find_local_field(name_symbol, signature_symbol, &fd)) { \ |
|
45 |
dest_offset = fd.offset(); \ |
|
46 |
} \ |
|
47 |
} |
|
48 |
||
49 |
Handle java_lang_String::basic_create(int length, bool tenured, TRAPS) { |
|
50 |
// Create the String object first, so there's a chance that the String |
|
51 |
// and the char array it points to end up in the same cache line. |
|
52 |
oop obj; |
|
53 |
if (tenured) { |
|
54 |
obj = instanceKlass::cast(SystemDictionary::string_klass())->allocate_permanent_instance(CHECK_NH); |
|
55 |
} else { |
|
56 |
obj = instanceKlass::cast(SystemDictionary::string_klass())->allocate_instance(CHECK_NH); |
|
57 |
} |
|
58 |
||
59 |
// Create the char array. The String object must be handlized here |
|
60 |
// because GC can happen as a result of the allocation attempt. |
|
61 |
Handle h_obj(THREAD, obj); |
|
62 |
typeArrayOop buffer; |
|
63 |
if (tenured) { |
|
64 |
buffer = oopFactory::new_permanent_charArray(length, CHECK_NH); |
|
65 |
} else { |
|
66 |
buffer = oopFactory::new_charArray(length, CHECK_NH); |
|
67 |
} |
|
68 |
||
69 |
// Point the String at the char array |
|
70 |
obj = h_obj(); |
|
71 |
set_value(obj, buffer); |
|
72 |
// No need to zero the offset, allocation zero'ed the entire String object |
|
73 |
assert(offset(obj) == 0, "initial String offset should be zero"); |
|
74 |
//set_offset(obj, 0); |
|
75 |
set_count(obj, length); |
|
76 |
||
77 |
return h_obj; |
|
78 |
} |
|
79 |
||
80 |
Handle java_lang_String::basic_create_from_unicode(jchar* unicode, int length, bool tenured, TRAPS) { |
|
81 |
Handle h_obj = basic_create(length, tenured, CHECK_NH); |
|
82 |
typeArrayOop buffer = value(h_obj()); |
|
83 |
for (int index = 0; index < length; index++) { |
|
84 |
buffer->char_at_put(index, unicode[index]); |
|
85 |
} |
|
86 |
return h_obj; |
|
87 |
} |
|
88 |
||
89 |
Handle java_lang_String::create_from_unicode(jchar* unicode, int length, TRAPS) { |
|
90 |
return basic_create_from_unicode(unicode, length, false, CHECK_NH); |
|
91 |
} |
|
92 |
||
93 |
Handle java_lang_String::create_tenured_from_unicode(jchar* unicode, int length, TRAPS) { |
|
94 |
return basic_create_from_unicode(unicode, length, true, CHECK_NH); |
|
95 |
} |
|
96 |
||
97 |
oop java_lang_String::create_oop_from_unicode(jchar* unicode, int length, TRAPS) { |
|
98 |
Handle h_obj = basic_create_from_unicode(unicode, length, false, CHECK_0); |
|
99 |
return h_obj(); |
|
100 |
} |
|
101 |
||
102 |
Handle java_lang_String::create_from_str(const char* utf8_str, TRAPS) { |
|
103 |
if (utf8_str == NULL) { |
|
104 |
return Handle(); |
|
105 |
} |
|
106 |
int length = UTF8::unicode_length(utf8_str); |
|
107 |
Handle h_obj = basic_create(length, false, CHECK_NH); |
|
108 |
if (length > 0) { |
|
109 |
UTF8::convert_to_unicode(utf8_str, value(h_obj())->char_at_addr(0), length); |
|
110 |
} |
|
111 |
return h_obj; |
|
112 |
} |
|
113 |
||
114 |
oop java_lang_String::create_oop_from_str(const char* utf8_str, TRAPS) { |
|
115 |
Handle h_obj = create_from_str(utf8_str, CHECK_0); |
|
116 |
return h_obj(); |
|
117 |
} |
|
118 |
||
119 |
Handle java_lang_String::create_from_symbol(symbolHandle symbol, TRAPS) { |
|
120 |
int length = UTF8::unicode_length((char*)symbol->bytes(), symbol->utf8_length()); |
|
121 |
Handle h_obj = basic_create(length, false, CHECK_NH); |
|
122 |
if (length > 0) { |
|
123 |
UTF8::convert_to_unicode((char*)symbol->bytes(), value(h_obj())->char_at_addr(0), length); |
|
124 |
} |
|
125 |
return h_obj; |
|
126 |
} |
|
127 |
||
128 |
// Converts a C string to a Java String based on current encoding |
|
129 |
Handle java_lang_String::create_from_platform_dependent_str(const char* str, TRAPS) { |
|
130 |
assert(str != NULL, "bad arguments"); |
|
131 |
||
132 |
typedef jstring (*to_java_string_fn_t)(JNIEnv*, const char *); |
|
133 |
static to_java_string_fn_t _to_java_string_fn = NULL; |
|
134 |
||
135 |
if (_to_java_string_fn == NULL) { |
|
136 |
void *lib_handle = os::native_java_library(); |
|
137 |
_to_java_string_fn = CAST_TO_FN_PTR(to_java_string_fn_t, hpi::dll_lookup(lib_handle, "NewStringPlatform")); |
|
138 |
if (_to_java_string_fn == NULL) { |
|
139 |
fatal("NewStringPlatform missing"); |
|
140 |
} |
|
141 |
} |
|
142 |
||
143 |
jstring js = NULL; |
|
144 |
{ JavaThread* thread = (JavaThread*)THREAD; |
|
145 |
assert(thread->is_Java_thread(), "must be java thread"); |
|
195
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
146 |
HandleMark hm(thread); |
1 | 147 |
ThreadToNativeFromVM ttn(thread); |
148 |
js = (_to_java_string_fn)(thread->jni_environment(), str); |
|
149 |
} |
|
150 |
return Handle(THREAD, JNIHandles::resolve(js)); |
|
151 |
} |
|
152 |
||
195
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
153 |
// Converts a Java String to a native C string that can be used for |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
154 |
// native OS calls. |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
155 |
char* java_lang_String::as_platform_dependent_str(Handle java_string, TRAPS) { |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
156 |
|
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
157 |
typedef char* (*to_platform_string_fn_t)(JNIEnv*, jstring, bool*); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
158 |
static to_platform_string_fn_t _to_platform_string_fn = NULL; |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
159 |
|
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
160 |
if (_to_platform_string_fn == NULL) { |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
161 |
void *lib_handle = os::native_java_library(); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
162 |
_to_platform_string_fn = CAST_TO_FN_PTR(to_platform_string_fn_t, hpi::dll_lookup(lib_handle, "GetStringPlatformChars")); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
163 |
if (_to_platform_string_fn == NULL) { |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
164 |
fatal("GetStringPlatformChars missing"); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
165 |
} |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
166 |
} |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
167 |
|
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
168 |
char *native_platform_string; |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
169 |
{ JavaThread* thread = (JavaThread*)THREAD; |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
170 |
assert(thread->is_Java_thread(), "must be java thread"); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
171 |
JNIEnv *env = thread->jni_environment(); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
172 |
jstring js = (jstring) JNIHandles::make_local(env, java_string()); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
173 |
bool is_copy; |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
174 |
HandleMark hm(thread); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
175 |
ThreadToNativeFromVM ttn(thread); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
176 |
native_platform_string = (_to_platform_string_fn)(env, js, &is_copy); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
177 |
assert(is_copy == JNI_TRUE, "is_copy value changed"); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
178 |
JNIHandles::destroy_local(js); |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
179 |
} |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
180 |
return native_platform_string; |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
181 |
} |
9193828514c4
6646946: Kernel installation failed on Japanese and Chinese XP SP2 (VM part)
coleenp
parents:
1
diff
changeset
|
182 |
|
1 | 183 |
Handle java_lang_String::char_converter(Handle java_string, jchar from_char, jchar to_char, TRAPS) { |
184 |
oop obj = java_string(); |
|
185 |
// Typical usage is to convert all '/' to '.' in string. |
|
186 |
typeArrayOop value = java_lang_String::value(obj); |
|
187 |
int offset = java_lang_String::offset(obj); |
|
188 |
int length = java_lang_String::length(obj); |
|
189 |
||
190 |
// First check if any from_char exist |
|
191 |
int index; // Declared outside, used later |
|
192 |
for (index = 0; index < length; index++) { |
|
193 |
if (value->char_at(index + offset) == from_char) { |
|
194 |
break; |
|
195 |
} |
|
196 |
} |
|
197 |
if (index == length) { |
|
198 |
// No from_char, so do not copy. |
|
199 |
return java_string; |
|
200 |
} |
|
201 |
||
202 |
// Create new UNICODE buffer. Must handlize value because GC |
|
203 |
// may happen during String and char array creation. |
|
204 |
typeArrayHandle h_value(THREAD, value); |
|
205 |
Handle string = basic_create(length, false, CHECK_NH); |
|
206 |
||
207 |
typeArrayOop from_buffer = h_value(); |
|
208 |
typeArrayOop to_buffer = java_lang_String::value(string()); |
|
209 |
||
210 |
// Copy contents |
|
211 |
for (index = 0; index < length; index++) { |
|
212 |
jchar c = from_buffer->char_at(index + offset); |
|
213 |
if (c == from_char) { |
|
214 |
c = to_char; |
|
215 |
} |
|
216 |
to_buffer->char_at_put(index, c); |
|
217 |
} |
|
218 |
return string; |
|
219 |
} |
|
220 |
||
221 |
jchar* java_lang_String::as_unicode_string(oop java_string, int& length) { |
|
222 |
typeArrayOop value = java_lang_String::value(java_string); |
|
223 |
int offset = java_lang_String::offset(java_string); |
|
224 |
length = java_lang_String::length(java_string); |
|
225 |
||
226 |
jchar* result = NEW_RESOURCE_ARRAY(jchar, length); |
|
227 |
for (int index = 0; index < length; index++) { |
|
228 |
result[index] = value->char_at(index + offset); |
|
229 |
} |
|
230 |
return result; |
|
231 |
} |
|
232 |
||
233 |
symbolHandle java_lang_String::as_symbol(Handle java_string, TRAPS) { |
|
234 |
oop obj = java_string(); |
|
235 |
typeArrayOop value = java_lang_String::value(obj); |
|
236 |
int offset = java_lang_String::offset(obj); |
|
237 |
int length = java_lang_String::length(obj); |
|
238 |
||
239 |
ResourceMark rm(THREAD); |
|
240 |
symbolHandle result; |
|
241 |
||
242 |
if (length > 0) { |
|
243 |
int utf8_length = UNICODE::utf8_length(value->char_at_addr(offset), length); |
|
244 |
char* chars = NEW_RESOURCE_ARRAY(char, utf8_length + 1); |
|
245 |
UNICODE::convert_to_utf8(value->char_at_addr(offset), length, chars); |
|
246 |
// Allocate the symbol |
|
247 |
result = oopFactory::new_symbol_handle(chars, utf8_length, CHECK_(symbolHandle())); |
|
248 |
} else { |
|
249 |
result = oopFactory::new_symbol_handle("", 0, CHECK_(symbolHandle())); |
|
250 |
} |
|
251 |
return result; |
|
252 |
} |
|
253 |
||
254 |
int java_lang_String::utf8_length(oop java_string) { |
|
255 |
typeArrayOop value = java_lang_String::value(java_string); |
|
256 |
int offset = java_lang_String::offset(java_string); |
|
257 |
int length = java_lang_String::length(java_string); |
|
258 |
jchar* position = (length == 0) ? NULL : value->char_at_addr(offset); |
|
259 |
return UNICODE::utf8_length(position, length); |
|
260 |
} |
|
261 |
||
262 |
char* java_lang_String::as_utf8_string(oop java_string) { |
|
263 |
typeArrayOop value = java_lang_String::value(java_string); |
|
264 |
int offset = java_lang_String::offset(java_string); |
|
265 |
int length = java_lang_String::length(java_string); |
|
266 |
jchar* position = (length == 0) ? NULL : value->char_at_addr(offset); |
|
267 |
return UNICODE::as_utf8(position, length); |
|
268 |
} |
|
269 |
||
270 |
char* java_lang_String::as_utf8_string(oop java_string, int start, int len) { |
|
271 |
typeArrayOop value = java_lang_String::value(java_string); |
|
272 |
int offset = java_lang_String::offset(java_string); |
|
273 |
int length = java_lang_String::length(java_string); |
|
274 |
assert(start + len <= length, "just checking"); |
|
275 |
jchar* position = value->char_at_addr(offset + start); |
|
276 |
return UNICODE::as_utf8(position, len); |
|
277 |
} |
|
278 |
||
279 |
bool java_lang_String::equals(oop java_string, jchar* chars, int len) { |
|
280 |
assert(SharedSkipVerify || |
|
281 |
java_string->klass() == SystemDictionary::string_klass(), |
|
282 |
"must be java_string"); |
|
283 |
typeArrayOop value = java_lang_String::value(java_string); |
|
284 |
int offset = java_lang_String::offset(java_string); |
|
285 |
int length = java_lang_String::length(java_string); |
|
286 |
if (length != len) { |
|
287 |
return false; |
|
288 |
} |
|
289 |
for (int i = 0; i < len; i++) { |
|
290 |
if (value->char_at(i + offset) != chars[i]) { |
|
291 |
return false; |
|
292 |
} |
|
293 |
} |
|
294 |
return true; |
|
295 |
} |
|
296 |
||
297 |
void java_lang_String::print(Handle java_string, outputStream* st) { |
|
298 |
oop obj = java_string(); |
|
299 |
assert(obj->klass() == SystemDictionary::string_klass(), "must be java_string"); |
|
300 |
typeArrayOop value = java_lang_String::value(obj); |
|
301 |
int offset = java_lang_String::offset(obj); |
|
302 |
int length = java_lang_String::length(obj); |
|
303 |
||
304 |
int end = MIN2(length, 100); |
|
305 |
if (value == NULL) { |
|
306 |
// This can happen if, e.g., printing a String |
|
307 |
// object before its initializer has been called |
|
308 |
st->print_cr("NULL"); |
|
309 |
} else { |
|
310 |
st->print("\""); |
|
311 |
for (int index = 0; index < length; index++) { |
|
312 |
st->print("%c", value->char_at(index + offset)); |
|
313 |
} |
|
314 |
st->print("\""); |
|
315 |
} |
|
316 |
} |
|
317 |
||
318 |
||
319 |
oop java_lang_Class::create_mirror(KlassHandle k, TRAPS) { |
|
320 |
assert(k->java_mirror() == NULL, "should only assign mirror once"); |
|
321 |
// Use this moment of initialization to cache modifier_flags also, |
|
322 |
// to support Class.getModifiers(). Instance classes recalculate |
|
323 |
// the cached flags after the class file is parsed, but before the |
|
324 |
// class is put into the system dictionary. |
|
325 |
int computed_modifiers = k->compute_modifier_flags(CHECK_0); |
|
326 |
k->set_modifier_flags(computed_modifiers); |
|
327 |
if (SystemDictionary::class_klass_loaded()) { |
|
328 |
// Allocate mirror (java.lang.Class instance) |
|
329 |
Handle mirror = instanceKlass::cast(SystemDictionary::class_klass())->allocate_permanent_instance(CHECK_0); |
|
330 |
// Setup indirections |
|
331 |
mirror->obj_field_put(klass_offset, k()); |
|
332 |
k->set_java_mirror(mirror()); |
|
333 |
// It might also have a component mirror. This mirror must already exist. |
|
334 |
if (k->oop_is_javaArray()) { |
|
335 |
Handle comp_mirror; |
|
336 |
if (k->oop_is_typeArray()) { |
|
337 |
BasicType type = typeArrayKlass::cast(k->as_klassOop())->element_type(); |
|
338 |
comp_mirror = Universe::java_mirror(type); |
|
339 |
assert(comp_mirror.not_null(), "must have primitive mirror"); |
|
340 |
} else if (k->oop_is_objArray()) { |
|
341 |
klassOop element_klass = objArrayKlass::cast(k->as_klassOop())->element_klass(); |
|
342 |
if (element_klass != NULL |
|
343 |
&& (Klass::cast(element_klass)->oop_is_instance() || |
|
344 |
Klass::cast(element_klass)->oop_is_javaArray())) { |
|
345 |
comp_mirror = Klass::cast(element_klass)->java_mirror(); |
|
346 |
assert(comp_mirror.not_null(), "must have element mirror"); |
|
347 |
} |
|
348 |
// else some object array internal to the VM, like systemObjArrayKlassObj |
|
349 |
} |
|
350 |
if (comp_mirror.not_null()) { |
|
351 |
// Two-way link between the array klass and its component mirror: |
|
352 |
arrayKlass::cast(k->as_klassOop())->set_component_mirror(comp_mirror()); |
|
353 |
set_array_klass(comp_mirror(), k->as_klassOop()); |
|
354 |
} |
|
355 |
} |
|
356 |
return mirror(); |
|
357 |
} else { |
|
358 |
return NULL; |
|
359 |
} |
|
360 |
} |
|
361 |
||
362 |
||
363 |
oop java_lang_Class::create_basic_type_mirror(const char* basic_type_name, BasicType type, TRAPS) { |
|
364 |
// This should be improved by adding a field at the Java level or by |
|
365 |
// introducing a new VM klass (see comment in ClassFileParser) |
|
366 |
oop java_class = instanceKlass::cast(SystemDictionary::class_klass())->allocate_permanent_instance(CHECK_0); |
|
367 |
if (type != T_VOID) { |
|
368 |
klassOop aklass = Universe::typeArrayKlassObj(type); |
|
369 |
assert(aklass != NULL, "correct bootstrap"); |
|
370 |
set_array_klass(java_class, aklass); |
|
371 |
} |
|
372 |
return java_class; |
|
373 |
} |
|
374 |
||
375 |
||
376 |
klassOop java_lang_Class::as_klassOop(oop java_class) { |
|
377 |
//%note memory_2 |
|
378 |
klassOop k = klassOop(java_class->obj_field(klass_offset)); |
|
379 |
assert(k == NULL || k->is_klass(), "type check"); |
|
380 |
return k; |
|
381 |
} |
|
382 |
||
383 |
||
384 |
klassOop java_lang_Class::array_klass(oop java_class) { |
|
385 |
klassOop k = klassOop(java_class->obj_field(array_klass_offset)); |
|
386 |
assert(k == NULL || k->is_klass() && Klass::cast(k)->oop_is_javaArray(), "should be array klass"); |
|
387 |
return k; |
|
388 |
} |
|
389 |
||
390 |
||
391 |
void java_lang_Class::set_array_klass(oop java_class, klassOop klass) { |
|
392 |
assert(klass->is_klass() && Klass::cast(klass)->oop_is_javaArray(), "should be array klass"); |
|
393 |
java_class->obj_field_put(array_klass_offset, klass); |
|
394 |
} |
|
395 |
||
396 |
||
397 |
methodOop java_lang_Class::resolved_constructor(oop java_class) { |
|
398 |
oop constructor = java_class->obj_field(resolved_constructor_offset); |
|
399 |
assert(constructor == NULL || constructor->is_method(), "should be method"); |
|
400 |
return methodOop(constructor); |
|
401 |
} |
|
402 |
||
403 |
||
404 |
void java_lang_Class::set_resolved_constructor(oop java_class, methodOop constructor) { |
|
405 |
assert(constructor->is_method(), "should be method"); |
|
406 |
java_class->obj_field_put(resolved_constructor_offset, constructor); |
|
407 |
} |
|
408 |
||
409 |
||
410 |
bool java_lang_Class::is_primitive(oop java_class) { |
|
411 |
klassOop k = klassOop(java_class->obj_field(klass_offset)); |
|
412 |
return k == NULL; |
|
413 |
} |
|
414 |
||
415 |
||
416 |
BasicType java_lang_Class::primitive_type(oop java_class) { |
|
417 |
assert(java_lang_Class::is_primitive(java_class), "just checking"); |
|
418 |
klassOop ak = klassOop(java_class->obj_field(array_klass_offset)); |
|
419 |
BasicType type = T_VOID; |
|
420 |
if (ak != NULL) { |
|
421 |
// Note: create_basic_type_mirror above initializes ak to a non-null value. |
|
422 |
type = arrayKlass::cast(ak)->element_type(); |
|
423 |
} else { |
|
424 |
assert(java_class == Universe::void_mirror(), "only valid non-array primitive"); |
|
425 |
} |
|
426 |
assert(Universe::java_mirror(type) == java_class, "must be consistent"); |
|
427 |
return type; |
|
428 |
} |
|
429 |
||
430 |
||
431 |
oop java_lang_Class::primitive_mirror(BasicType t) { |
|
432 |
oop mirror = Universe::java_mirror(t); |
|
433 |
assert(mirror != NULL && mirror->is_a(SystemDictionary::class_klass()), "must be a Class"); |
|
434 |
assert(java_lang_Class::is_primitive(mirror), "must be primitive"); |
|
435 |
return mirror; |
|
436 |
} |
|
437 |
||
438 |
bool java_lang_Class::offsets_computed = false; |
|
439 |
int java_lang_Class::classRedefinedCount_offset = -1; |
|
440 |
||
441 |
void java_lang_Class::compute_offsets() { |
|
442 |
assert(!offsets_computed, "offsets should be initialized only once"); |
|
443 |
offsets_computed = true; |
|
444 |
||
445 |
klassOop k = SystemDictionary::class_klass(); |
|
446 |
// The classRedefinedCount field is only present starting in 1.5, |
|
447 |
// so don't go fatal. |
|
448 |
COMPUTE_OPTIONAL_OFFSET("java.lang.Class", classRedefinedCount_offset, |
|
449 |
k, vmSymbols::classRedefinedCount_name(), vmSymbols::int_signature()); |
|
450 |
} |
|
451 |
||
452 |
int java_lang_Class::classRedefinedCount(oop the_class_mirror) { |
|
453 |
if (!JDK_Version::is_gte_jdk15x_version() |
|
454 |
|| classRedefinedCount_offset == -1) { |
|
455 |
// The classRedefinedCount field is only present starting in 1.5. |
|
456 |
// If we don't have an offset for it then just return -1 as a marker. |
|
457 |
return -1; |
|
458 |
} |
|
459 |
||
460 |
return the_class_mirror->int_field(classRedefinedCount_offset); |
|
461 |
} |
|
462 |
||
463 |
void java_lang_Class::set_classRedefinedCount(oop the_class_mirror, int value) { |
|
464 |
if (!JDK_Version::is_gte_jdk15x_version() |
|
465 |
|| classRedefinedCount_offset == -1) { |
|
466 |
// The classRedefinedCount field is only present starting in 1.5. |
|
467 |
// If we don't have an offset for it then nothing to set. |
|
468 |
return; |
|
469 |
} |
|
470 |
||
471 |
the_class_mirror->int_field_put(classRedefinedCount_offset, value); |
|
472 |
} |
|
473 |
||
474 |
||
475 |
// Note: JDK1.1 and before had a privateInfo_offset field which was used for the |
|
476 |
// platform thread structure, and a eetop offset which was used for thread |
|
477 |
// local storage (and unused by the HotSpot VM). In JDK1.2 the two structures |
|
478 |
// merged, so in the HotSpot VM we just use the eetop field for the thread |
|
479 |
// instead of the privateInfo_offset. |
|
480 |
// |
|
481 |
// Note: The stackSize field is only present starting in 1.4. |
|
482 |
||
483 |
int java_lang_Thread::_name_offset = 0; |
|
484 |
int java_lang_Thread::_group_offset = 0; |
|
485 |
int java_lang_Thread::_contextClassLoader_offset = 0; |
|
486 |
int java_lang_Thread::_inheritedAccessControlContext_offset = 0; |
|
487 |
int java_lang_Thread::_priority_offset = 0; |
|
488 |
int java_lang_Thread::_eetop_offset = 0; |
|
489 |
int java_lang_Thread::_daemon_offset = 0; |
|
490 |
int java_lang_Thread::_stillborn_offset = 0; |
|
491 |
int java_lang_Thread::_stackSize_offset = 0; |
|
492 |
int java_lang_Thread::_tid_offset = 0; |
|
493 |
int java_lang_Thread::_thread_status_offset = 0; |
|
494 |
int java_lang_Thread::_park_blocker_offset = 0; |
|
495 |
int java_lang_Thread::_park_event_offset = 0 ; |
|
496 |
||
497 |
||
498 |
void java_lang_Thread::compute_offsets() { |
|
499 |
assert(_group_offset == 0, "offsets should be initialized only once"); |
|
500 |
||
501 |
klassOop k = SystemDictionary::thread_klass(); |
|
502 |
COMPUTE_OFFSET("java.lang.Thread", _name_offset, k, vmSymbols::name_name(), vmSymbols::char_array_signature()); |
|
503 |
COMPUTE_OFFSET("java.lang.Thread", _group_offset, k, vmSymbols::group_name(), vmSymbols::threadgroup_signature()); |
|
504 |
COMPUTE_OFFSET("java.lang.Thread", _contextClassLoader_offset, k, vmSymbols::contextClassLoader_name(), vmSymbols::classloader_signature()); |
|
505 |
COMPUTE_OFFSET("java.lang.Thread", _inheritedAccessControlContext_offset, k, vmSymbols::inheritedAccessControlContext_name(), vmSymbols::accesscontrolcontext_signature()); |
|
506 |
COMPUTE_OFFSET("java.lang.Thread", _priority_offset, k, vmSymbols::priority_name(), vmSymbols::int_signature()); |
|
507 |
COMPUTE_OFFSET("java.lang.Thread", _daemon_offset, k, vmSymbols::daemon_name(), vmSymbols::bool_signature()); |
|
508 |
COMPUTE_OFFSET("java.lang.Thread", _eetop_offset, k, vmSymbols::eetop_name(), vmSymbols::long_signature()); |
|
509 |
COMPUTE_OFFSET("java.lang.Thread", _stillborn_offset, k, vmSymbols::stillborn_name(), vmSymbols::bool_signature()); |
|
510 |
// The stackSize field is only present starting in 1.4, so don't go fatal. |
|
511 |
COMPUTE_OPTIONAL_OFFSET("java.lang.Thread", _stackSize_offset, k, vmSymbols::stackSize_name(), vmSymbols::long_signature()); |
|
512 |
// The tid and thread_status fields are only present starting in 1.5, so don't go fatal. |
|
513 |
COMPUTE_OPTIONAL_OFFSET("java.lang.Thread", _tid_offset, k, vmSymbols::thread_id_name(), vmSymbols::long_signature()); |
|
514 |
COMPUTE_OPTIONAL_OFFSET("java.lang.Thread", _thread_status_offset, k, vmSymbols::thread_status_name(), vmSymbols::int_signature()); |
|
515 |
// The parkBlocker field is only present starting in 1.6, so don't go fatal. |
|
516 |
COMPUTE_OPTIONAL_OFFSET("java.lang.Thread", _park_blocker_offset, k, vmSymbols::park_blocker_name(), vmSymbols::object_signature()); |
|
517 |
COMPUTE_OPTIONAL_OFFSET("java.lang.Thread", _park_event_offset, k, vmSymbols::park_event_name(), |
|
518 |
vmSymbols::long_signature()); |
|
519 |
} |
|
520 |
||
521 |
||
522 |
JavaThread* java_lang_Thread::thread(oop java_thread) { |
|
523 |
return (JavaThread*) java_thread->obj_field(_eetop_offset); |
|
524 |
} |
|
525 |
||
526 |
||
527 |
void java_lang_Thread::set_thread(oop java_thread, JavaThread* thread) { |
|
528 |
// We are storing a JavaThread* (malloc'ed data) into a long field in the thread |
|
529 |
// object. The store has to be 64-bit wide so we use a pointer store, but we |
|
530 |
// cannot call oopDesc::obj_field_put since it includes a write barrier! |
|
531 |
oop* addr = java_thread->obj_field_addr(_eetop_offset); |
|
532 |
*addr = (oop) thread; |
|
533 |
} |
|
534 |
||
535 |
||
536 |
typeArrayOop java_lang_Thread::name(oop java_thread) { |
|
537 |
oop name = java_thread->obj_field(_name_offset); |
|
538 |
assert(name == NULL || (name->is_typeArray() && typeArrayKlass::cast(name->klass())->element_type() == T_CHAR), "just checking"); |
|
539 |
return typeArrayOop(name); |
|
540 |
} |
|
541 |
||
542 |
||
543 |
void java_lang_Thread::set_name(oop java_thread, typeArrayOop name) { |
|
544 |
assert(java_thread->obj_field(_name_offset) == NULL, "name should be NULL"); |
|
545 |
java_thread->obj_field_put(_name_offset, name); |
|
546 |
} |
|
547 |
||
548 |
||
549 |
ThreadPriority java_lang_Thread::priority(oop java_thread) { |
|
550 |
return (ThreadPriority)java_thread->int_field(_priority_offset); |
|
551 |
} |
|
552 |
||
553 |
||
554 |
void java_lang_Thread::set_priority(oop java_thread, ThreadPriority priority) { |
|
555 |
java_thread->int_field_put(_priority_offset, priority); |
|
556 |
} |
|
557 |
||
558 |
||
559 |
oop java_lang_Thread::threadGroup(oop java_thread) { |
|
560 |
return java_thread->obj_field(_group_offset); |
|
561 |
} |
|
562 |
||
563 |
||
564 |
bool java_lang_Thread::is_stillborn(oop java_thread) { |
|
565 |
return java_thread->bool_field(_stillborn_offset) != 0; |
|
566 |
} |
|
567 |
||
568 |
||
569 |
// We never have reason to turn the stillborn bit off |
|
570 |
void java_lang_Thread::set_stillborn(oop java_thread) { |
|
571 |
java_thread->bool_field_put(_stillborn_offset, true); |
|
572 |
} |
|
573 |
||
574 |
||
575 |
bool java_lang_Thread::is_alive(oop java_thread) { |
|
576 |
JavaThread* thr = java_lang_Thread::thread(java_thread); |
|
577 |
return (thr != NULL); |
|
578 |
} |
|
579 |
||
580 |
||
581 |
bool java_lang_Thread::is_daemon(oop java_thread) { |
|
582 |
return java_thread->bool_field(_daemon_offset) != 0; |
|
583 |
} |
|
584 |
||
585 |
||
586 |
void java_lang_Thread::set_daemon(oop java_thread) { |
|
587 |
java_thread->bool_field_put(_daemon_offset, true); |
|
588 |
} |
|
589 |
||
590 |
oop java_lang_Thread::context_class_loader(oop java_thread) { |
|
591 |
return java_thread->obj_field(_contextClassLoader_offset); |
|
592 |
} |
|
593 |
||
594 |
oop java_lang_Thread::inherited_access_control_context(oop java_thread) { |
|
595 |
return java_thread->obj_field(_inheritedAccessControlContext_offset); |
|
596 |
} |
|
597 |
||
598 |
||
599 |
jlong java_lang_Thread::stackSize(oop java_thread) { |
|
600 |
// The stackSize field is only present starting in 1.4 |
|
601 |
if (_stackSize_offset > 0) { |
|
602 |
assert(JDK_Version::is_gte_jdk14x_version(), "sanity check"); |
|
603 |
return java_thread->long_field(_stackSize_offset); |
|
604 |
} else { |
|
605 |
return 0; |
|
606 |
} |
|
607 |
} |
|
608 |
||
609 |
// Write the thread status value to threadStatus field in java.lang.Thread java class. |
|
610 |
void java_lang_Thread::set_thread_status(oop java_thread, |
|
611 |
java_lang_Thread::ThreadStatus status) { |
|
612 |
assert(JavaThread::current()->thread_state() == _thread_in_vm, "Java Thread is not running in vm"); |
|
613 |
// The threadStatus is only present starting in 1.5 |
|
614 |
if (_thread_status_offset > 0) { |
|
615 |
java_thread->int_field_put(_thread_status_offset, status); |
|
616 |
} |
|
617 |
} |
|
618 |
||
619 |
// Read thread status value from threadStatus field in java.lang.Thread java class. |
|
620 |
java_lang_Thread::ThreadStatus java_lang_Thread::get_thread_status(oop java_thread) { |
|
621 |
assert(Thread::current()->is_VM_thread() || |
|
622 |
JavaThread::current()->thread_state() == _thread_in_vm, |
|
623 |
"Java Thread is not running in vm"); |
|
624 |
// The threadStatus is only present starting in 1.5 |
|
625 |
if (_thread_status_offset > 0) { |
|
626 |
return (java_lang_Thread::ThreadStatus)java_thread->int_field(_thread_status_offset); |
|
627 |
} else { |
|
628 |
// All we can easily figure out is if it is alive, but that is |
|
629 |
// enough info for a valid unknown status. |
|
630 |
// These aren't restricted to valid set ThreadStatus values, so |
|
631 |
// use JVMTI values and cast. |
|
632 |
JavaThread* thr = java_lang_Thread::thread(java_thread); |
|
633 |
if (thr == NULL) { |
|
634 |
// the thread hasn't run yet or is in the process of exiting |
|
635 |
return NEW; |
|
636 |
} |
|
637 |
return (java_lang_Thread::ThreadStatus)JVMTI_THREAD_STATE_ALIVE; |
|
638 |
} |
|
639 |
} |
|
640 |
||
641 |
||
642 |
jlong java_lang_Thread::thread_id(oop java_thread) { |
|
643 |
// The thread ID field is only present starting in 1.5 |
|
644 |
if (_tid_offset > 0) { |
|
645 |
return java_thread->long_field(_tid_offset); |
|
646 |
} else { |
|
647 |
return 0; |
|
648 |
} |
|
649 |
} |
|
650 |
||
651 |
oop java_lang_Thread::park_blocker(oop java_thread) { |
|
652 |
assert(JDK_Version::supports_thread_park_blocker() && _park_blocker_offset != 0, |
|
653 |
"Must support parkBlocker field"); |
|
654 |
||
655 |
if (_park_blocker_offset > 0) { |
|
656 |
return java_thread->obj_field(_park_blocker_offset); |
|
657 |
} |
|
658 |
||
659 |
return NULL; |
|
660 |
} |
|
661 |
||
662 |
jlong java_lang_Thread::park_event(oop java_thread) { |
|
663 |
if (_park_event_offset > 0) { |
|
664 |
return java_thread->long_field(_park_event_offset); |
|
665 |
} |
|
666 |
return 0; |
|
667 |
} |
|
668 |
||
669 |
bool java_lang_Thread::set_park_event(oop java_thread, jlong ptr) { |
|
670 |
if (_park_event_offset > 0) { |
|
671 |
java_thread->long_field_put(_park_event_offset, ptr); |
|
672 |
return true; |
|
673 |
} |
|
674 |
return false; |
|
675 |
} |
|
676 |
||
677 |
||
678 |
const char* java_lang_Thread::thread_status_name(oop java_thread) { |
|
679 |
assert(JDK_Version::is_gte_jdk15x_version() && _thread_status_offset != 0, "Must have thread status"); |
|
680 |
ThreadStatus status = (java_lang_Thread::ThreadStatus)java_thread->int_field(_thread_status_offset); |
|
681 |
switch (status) { |
|
682 |
case NEW : return "NEW"; |
|
683 |
case RUNNABLE : return "RUNNABLE"; |
|
684 |
case SLEEPING : return "TIMED_WAITING (sleeping)"; |
|
685 |
case IN_OBJECT_WAIT : return "WAITING (on object monitor)"; |
|
686 |
case IN_OBJECT_WAIT_TIMED : return "TIMED_WAITING (on object monitor)"; |
|
687 |
case PARKED : return "WAITING (parking)"; |
|
688 |
case PARKED_TIMED : return "TIMED_WAITING (parking)"; |
|
689 |
case BLOCKED_ON_MONITOR_ENTER : return "BLOCKED (on object monitor)"; |
|
690 |
case TERMINATED : return "TERMINATED"; |
|
691 |
default : return "UNKNOWN"; |
|
692 |
}; |
|
693 |
} |
|
694 |
int java_lang_ThreadGroup::_parent_offset = 0; |
|
695 |
int java_lang_ThreadGroup::_name_offset = 0; |
|
696 |
int java_lang_ThreadGroup::_threads_offset = 0; |
|
697 |
int java_lang_ThreadGroup::_groups_offset = 0; |
|
698 |
int java_lang_ThreadGroup::_maxPriority_offset = 0; |
|
699 |
int java_lang_ThreadGroup::_destroyed_offset = 0; |
|
700 |
int java_lang_ThreadGroup::_daemon_offset = 0; |
|
701 |
int java_lang_ThreadGroup::_vmAllowSuspension_offset = 0; |
|
702 |
int java_lang_ThreadGroup::_nthreads_offset = 0; |
|
703 |
int java_lang_ThreadGroup::_ngroups_offset = 0; |
|
704 |
||
705 |
oop java_lang_ThreadGroup::parent(oop java_thread_group) { |
|
706 |
assert(java_thread_group->is_oop(), "thread group must be oop"); |
|
707 |
return java_thread_group->obj_field(_parent_offset); |
|
708 |
} |
|
709 |
||
710 |
// ("name as oop" accessor is not necessary) |
|
711 |
||
712 |
typeArrayOop java_lang_ThreadGroup::name(oop java_thread_group) { |
|
713 |
oop name = java_thread_group->obj_field(_name_offset); |
|
714 |
// ThreadGroup.name can be null |
|
715 |
return name == NULL ? (typeArrayOop)NULL : java_lang_String::value(name); |
|
716 |
} |
|
717 |
||
718 |
int java_lang_ThreadGroup::nthreads(oop java_thread_group) { |
|
719 |
assert(java_thread_group->is_oop(), "thread group must be oop"); |
|
720 |
return java_thread_group->int_field(_nthreads_offset); |
|
721 |
} |
|
722 |
||
723 |
objArrayOop java_lang_ThreadGroup::threads(oop java_thread_group) { |
|
724 |
oop threads = java_thread_group->obj_field(_threads_offset); |
|
725 |
assert(threads != NULL, "threadgroups should have threads"); |
|
726 |
assert(threads->is_objArray(), "just checking"); // Todo: Add better type checking code |
|
727 |
return objArrayOop(threads); |
|
728 |
} |
|
729 |
||
730 |
int java_lang_ThreadGroup::ngroups(oop java_thread_group) { |
|
731 |
assert(java_thread_group->is_oop(), "thread group must be oop"); |
|
732 |
return java_thread_group->int_field(_ngroups_offset); |
|
733 |
} |
|
734 |
||
735 |
objArrayOop java_lang_ThreadGroup::groups(oop java_thread_group) { |
|
736 |
oop groups = java_thread_group->obj_field(_groups_offset); |
|
737 |
assert(groups == NULL || groups->is_objArray(), "just checking"); // Todo: Add better type checking code |
|
738 |
return objArrayOop(groups); |
|
739 |
} |
|
740 |
||
741 |
ThreadPriority java_lang_ThreadGroup::maxPriority(oop java_thread_group) { |
|
742 |
assert(java_thread_group->is_oop(), "thread group must be oop"); |
|
743 |
return (ThreadPriority) java_thread_group->int_field(_maxPriority_offset); |
|
744 |
} |
|
745 |
||
746 |
bool java_lang_ThreadGroup::is_destroyed(oop java_thread_group) { |
|
747 |
assert(java_thread_group->is_oop(), "thread group must be oop"); |
|
748 |
return java_thread_group->bool_field(_destroyed_offset) != 0; |
|
749 |
} |
|
750 |
||
751 |
bool java_lang_ThreadGroup::is_daemon(oop java_thread_group) { |
|
752 |
assert(java_thread_group->is_oop(), "thread group must be oop"); |
|
753 |
return java_thread_group->bool_field(_daemon_offset) != 0; |
|
754 |
} |
|
755 |
||
756 |
bool java_lang_ThreadGroup::is_vmAllowSuspension(oop java_thread_group) { |
|
757 |
assert(java_thread_group->is_oop(), "thread group must be oop"); |
|
758 |
return java_thread_group->bool_field(_vmAllowSuspension_offset) != 0; |
|
759 |
} |
|
760 |
||
761 |
void java_lang_ThreadGroup::compute_offsets() { |
|
762 |
assert(_parent_offset == 0, "offsets should be initialized only once"); |
|
763 |
||
764 |
klassOop k = SystemDictionary::threadGroup_klass(); |
|
765 |
||
766 |
COMPUTE_OFFSET("java.lang.ThreadGroup", _parent_offset, k, vmSymbols::parent_name(), vmSymbols::threadgroup_signature()); |
|
767 |
COMPUTE_OFFSET("java.lang.ThreadGroup", _name_offset, k, vmSymbols::name_name(), vmSymbols::string_signature()); |
|
768 |
COMPUTE_OFFSET("java.lang.ThreadGroup", _threads_offset, k, vmSymbols::threads_name(), vmSymbols::thread_array_signature()); |
|
769 |
COMPUTE_OFFSET("java.lang.ThreadGroup", _groups_offset, k, vmSymbols::groups_name(), vmSymbols::threadgroup_array_signature()); |
|
770 |
COMPUTE_OFFSET("java.lang.ThreadGroup", _maxPriority_offset, k, vmSymbols::maxPriority_name(), vmSymbols::int_signature()); |
|
771 |
COMPUTE_OFFSET("java.lang.ThreadGroup", _destroyed_offset, k, vmSymbols::destroyed_name(), vmSymbols::bool_signature()); |
|
772 |
COMPUTE_OFFSET("java.lang.ThreadGroup", _daemon_offset, k, vmSymbols::daemon_name(), vmSymbols::bool_signature()); |
|
773 |
COMPUTE_OFFSET("java.lang.ThreadGroup", _vmAllowSuspension_offset, k, vmSymbols::vmAllowSuspension_name(), vmSymbols::bool_signature()); |
|
774 |
COMPUTE_OFFSET("java.lang.ThreadGroup", _nthreads_offset, k, vmSymbols::nthreads_name(), vmSymbols::int_signature()); |
|
775 |
COMPUTE_OFFSET("java.lang.ThreadGroup", _ngroups_offset, k, vmSymbols::ngroups_name(), vmSymbols::int_signature()); |
|
776 |
} |
|
777 |
||
778 |
oop java_lang_Throwable::backtrace(oop throwable) { |
|
779 |
return throwable->obj_field_acquire(backtrace_offset); |
|
780 |
} |
|
781 |
||
782 |
||
783 |
void java_lang_Throwable::set_backtrace(oop throwable, oop value) { |
|
784 |
throwable->release_obj_field_put(backtrace_offset, value); |
|
785 |
} |
|
786 |
||
787 |
||
788 |
oop java_lang_Throwable::message(oop throwable) { |
|
789 |
return throwable->obj_field(detailMessage_offset); |
|
790 |
} |
|
791 |
||
792 |
||
793 |
oop java_lang_Throwable::message(Handle throwable) { |
|
794 |
return throwable->obj_field(detailMessage_offset); |
|
795 |
} |
|
796 |
||
797 |
||
798 |
void java_lang_Throwable::set_message(oop throwable, oop value) { |
|
799 |
throwable->obj_field_put(detailMessage_offset, value); |
|
800 |
} |
|
801 |
||
802 |
||
803 |
void java_lang_Throwable::clear_stacktrace(oop throwable) { |
|
804 |
assert(JDK_Version::is_gte_jdk14x_version(), "should only be called in >= 1.4"); |
|
805 |
throwable->obj_field_put(stackTrace_offset, NULL); |
|
806 |
} |
|
807 |
||
808 |
||
809 |
void java_lang_Throwable::print(oop throwable, outputStream* st) { |
|
810 |
ResourceMark rm; |
|
811 |
klassOop k = throwable->klass(); |
|
812 |
assert(k != NULL, "just checking"); |
|
813 |
st->print("%s", instanceKlass::cast(k)->external_name()); |
|
814 |
oop msg = message(throwable); |
|
815 |
if (msg != NULL) { |
|
816 |
st->print(": %s", java_lang_String::as_utf8_string(msg)); |
|
817 |
} |
|
818 |
} |
|
819 |
||
820 |
||
821 |
void java_lang_Throwable::print(Handle throwable, outputStream* st) { |
|
822 |
ResourceMark rm; |
|
823 |
klassOop k = throwable->klass(); |
|
824 |
assert(k != NULL, "just checking"); |
|
825 |
st->print("%s", instanceKlass::cast(k)->external_name()); |
|
826 |
oop msg = message(throwable); |
|
827 |
if (msg != NULL) { |
|
828 |
st->print(": %s", java_lang_String::as_utf8_string(msg)); |
|
829 |
} |
|
830 |
} |
|
831 |
||
832 |
// Print stack trace element to resource allocated buffer |
|
833 |
char* java_lang_Throwable::print_stack_element_to_buffer(methodOop method, int bci) { |
|
834 |
// Get strings and string lengths |
|
835 |
instanceKlass* klass = instanceKlass::cast(method->method_holder()); |
|
836 |
const char* klass_name = klass->external_name(); |
|
837 |
int buf_len = (int)strlen(klass_name); |
|
838 |
char* source_file_name; |
|
839 |
if (klass->source_file_name() == NULL) { |
|
840 |
source_file_name = NULL; |
|
841 |
} else { |
|
842 |
source_file_name = klass->source_file_name()->as_C_string(); |
|
843 |
buf_len += (int)strlen(source_file_name); |
|
844 |
} |
|
845 |
char* method_name = method->name()->as_C_string(); |
|
846 |
buf_len += (int)strlen(method_name); |
|
847 |
||
848 |
// Allocate temporary buffer with extra space for formatting and line number |
|
849 |
char* buf = NEW_RESOURCE_ARRAY(char, buf_len + 64); |
|
850 |
||
851 |
// Print stack trace line in buffer |
|
852 |
sprintf(buf, "\tat %s.%s", klass_name, method_name); |
|
853 |
if (method->is_native()) { |
|
854 |
strcat(buf, "(Native Method)"); |
|
855 |
} else { |
|
856 |
int line_number = method->line_number_from_bci(bci); |
|
857 |
if (source_file_name != NULL && (line_number != -1)) { |
|
858 |
// Sourcename and linenumber |
|
859 |
sprintf(buf + (int)strlen(buf), "(%s:%d)", source_file_name, line_number); |
|
860 |
} else if (source_file_name != NULL) { |
|
861 |
// Just sourcename |
|
862 |
sprintf(buf + (int)strlen(buf), "(%s)", source_file_name); |
|
863 |
} else { |
|
864 |
// Neither soucename and linenumber |
|
865 |
sprintf(buf + (int)strlen(buf), "(Unknown Source)"); |
|
866 |
} |
|
867 |
nmethod* nm = method->code(); |
|
868 |
if (WizardMode && nm != NULL) { |
|
869 |
sprintf(buf + (int)strlen(buf), "(nmethod %#x)", nm); |
|
870 |
} |
|
871 |
} |
|
872 |
||
873 |
return buf; |
|
874 |
} |
|
875 |
||
876 |
||
877 |
void java_lang_Throwable::print_stack_element(Handle stream, methodOop method, int bci) { |
|
878 |
ResourceMark rm; |
|
879 |
char* buf = print_stack_element_to_buffer(method, bci); |
|
880 |
print_to_stream(stream, buf); |
|
881 |
} |
|
882 |
||
883 |
void java_lang_Throwable::print_stack_element(outputStream *st, methodOop method, int bci) { |
|
884 |
ResourceMark rm; |
|
885 |
char* buf = print_stack_element_to_buffer(method, bci); |
|
886 |
st->print_cr("%s", buf); |
|
887 |
} |
|
888 |
||
889 |
void java_lang_Throwable::print_to_stream(Handle stream, const char* str) { |
|
890 |
if (stream.is_null()) { |
|
891 |
tty->print_cr("%s", str); |
|
892 |
} else { |
|
893 |
EXCEPTION_MARK; |
|
894 |
JavaValue result(T_VOID); |
|
895 |
Handle arg (THREAD, oopFactory::new_charArray(str, THREAD)); |
|
896 |
if (!HAS_PENDING_EXCEPTION) { |
|
897 |
JavaCalls::call_virtual(&result, |
|
898 |
stream, |
|
899 |
KlassHandle(THREAD, stream->klass()), |
|
900 |
vmSymbolHandles::println_name(), |
|
901 |
vmSymbolHandles::char_array_void_signature(), |
|
902 |
arg, |
|
903 |
THREAD); |
|
904 |
} |
|
905 |
// Ignore any exceptions. we are in the middle of exception handling. Same as classic VM. |
|
906 |
if (HAS_PENDING_EXCEPTION) CLEAR_PENDING_EXCEPTION; |
|
907 |
} |
|
908 |
||
909 |
} |
|
910 |
||
911 |
||
912 |
const char* java_lang_Throwable::no_stack_trace_message() { |
|
913 |
return "\t<<no stack trace available>>"; |
|
914 |
} |
|
915 |
||
916 |
||
917 |
// Currently used only for exceptions occurring during startup |
|
918 |
void java_lang_Throwable::print_stack_trace(oop throwable, outputStream* st) { |
|
919 |
Thread *THREAD = Thread::current(); |
|
920 |
Handle h_throwable(THREAD, throwable); |
|
921 |
while (h_throwable.not_null()) { |
|
922 |
objArrayHandle result (THREAD, objArrayOop(backtrace(h_throwable()))); |
|
923 |
if (result.is_null()) { |
|
924 |
st->print_cr(no_stack_trace_message()); |
|
925 |
return; |
|
926 |
} |
|
927 |
||
928 |
while (result.not_null()) { |
|
929 |
objArrayHandle methods (THREAD, |
|
930 |
objArrayOop(result->obj_at(trace_methods_offset))); |
|
931 |
typeArrayHandle bcis (THREAD, |
|
932 |
typeArrayOop(result->obj_at(trace_bcis_offset))); |
|
933 |
||
934 |
if (methods.is_null() || bcis.is_null()) { |
|
935 |
st->print_cr(no_stack_trace_message()); |
|
936 |
return; |
|
937 |
} |
|
938 |
||
939 |
int length = methods()->length(); |
|
940 |
for (int index = 0; index < length; index++) { |
|
941 |
methodOop method = methodOop(methods()->obj_at(index)); |
|
942 |
if (method == NULL) goto handle_cause; |
|
943 |
int bci = bcis->ushort_at(index); |
|
944 |
print_stack_element(st, method, bci); |
|
945 |
} |
|
946 |
result = objArrayHandle(THREAD, objArrayOop(result->obj_at(trace_next_offset))); |
|
947 |
} |
|
948 |
handle_cause: |
|
949 |
{ |
|
950 |
EXCEPTION_MARK; |
|
951 |
JavaValue result(T_OBJECT); |
|
952 |
JavaCalls::call_virtual(&result, |
|
953 |
h_throwable, |
|
954 |
KlassHandle(THREAD, h_throwable->klass()), |
|
955 |
vmSymbolHandles::getCause_name(), |
|
956 |
vmSymbolHandles::void_throwable_signature(), |
|
957 |
THREAD); |
|
958 |
// Ignore any exceptions. we are in the middle of exception handling. Same as classic VM. |
|
959 |
if (HAS_PENDING_EXCEPTION) { |
|
960 |
CLEAR_PENDING_EXCEPTION; |
|
961 |
h_throwable = Handle(); |
|
962 |
} else { |
|
963 |
h_throwable = Handle(THREAD, (oop) result.get_jobject()); |
|
964 |
if (h_throwable.not_null()) { |
|
965 |
st->print("Caused by: "); |
|
966 |
print(h_throwable, st); |
|
967 |
st->cr(); |
|
968 |
} |
|
969 |
} |
|
970 |
} |
|
971 |
} |
|
972 |
} |
|
973 |
||
974 |
||
975 |
void java_lang_Throwable::print_stack_trace(oop throwable, oop print_stream) { |
|
976 |
// Note: this is no longer used in Merlin, but we support it for compatibility. |
|
977 |
Thread *thread = Thread::current(); |
|
978 |
Handle stream(thread, print_stream); |
|
979 |
objArrayHandle result (thread, objArrayOop(backtrace(throwable))); |
|
980 |
if (result.is_null()) { |
|
981 |
print_to_stream(stream, no_stack_trace_message()); |
|
982 |
return; |
|
983 |
} |
|
984 |
||
985 |
while (result.not_null()) { |
|
986 |
objArrayHandle methods (thread, |
|
987 |
objArrayOop(result->obj_at(trace_methods_offset))); |
|
988 |
typeArrayHandle bcis (thread, |
|
989 |
typeArrayOop(result->obj_at(trace_bcis_offset))); |
|
990 |
||
991 |
if (methods.is_null() || bcis.is_null()) { |
|
992 |
print_to_stream(stream, no_stack_trace_message()); |
|
993 |
return; |
|
994 |
} |
|
995 |
||
996 |
int length = methods()->length(); |
|
997 |
for (int index = 0; index < length; index++) { |
|
998 |
methodOop method = methodOop(methods()->obj_at(index)); |
|
999 |
if (method == NULL) return; |
|
1000 |
int bci = bcis->ushort_at(index); |
|
1001 |
print_stack_element(stream, method, bci); |
|
1002 |
} |
|
1003 |
result = objArrayHandle(thread, objArrayOop(result->obj_at(trace_next_offset))); |
|
1004 |
} |
|
1005 |
} |
|
1006 |
||
1007 |
// This class provides a simple wrapper over the internal structure of |
|
1008 |
// exception backtrace to insulate users of the backtrace from needing |
|
1009 |
// to know what it looks like. |
|
1010 |
class BacktraceBuilder: public StackObj { |
|
1011 |
private: |
|
1012 |
Handle _backtrace; |
|
1013 |
objArrayOop _head; |
|
1014 |
objArrayOop _methods; |
|
1015 |
typeArrayOop _bcis; |
|
1016 |
int _index; |
|
1017 |
bool _dirty; |
|
1018 |
bool _done; |
|
1019 |
No_Safepoint_Verifier _nsv; |
|
1020 |
||
1021 |
public: |
|
1022 |
||
1023 |
enum { |
|
1024 |
trace_methods_offset = java_lang_Throwable::trace_methods_offset, |
|
1025 |
trace_bcis_offset = java_lang_Throwable::trace_bcis_offset, |
|
1026 |
trace_next_offset = java_lang_Throwable::trace_next_offset, |
|
1027 |
trace_size = java_lang_Throwable::trace_size, |
|
1028 |
trace_chunk_size = java_lang_Throwable::trace_chunk_size |
|
1029 |
}; |
|
1030 |
||
1031 |
// constructor for new backtrace |
|
1032 |
BacktraceBuilder(TRAPS): _methods(NULL), _bcis(NULL), _head(NULL) { |
|
1033 |
expand(CHECK); |
|
1034 |
_backtrace = _head; |
|
1035 |
_index = 0; |
|
1036 |
_dirty = false; |
|
1037 |
_done = false; |
|
1038 |
} |
|
1039 |
||
1040 |
void flush() { |
|
1041 |
if (_dirty && _methods != NULL) { |
|
1042 |
BarrierSet* bs = Universe::heap()->barrier_set(); |
|
1043 |
assert(bs->has_write_ref_array_opt(), "Barrier set must have ref array opt"); |
|
1044 |
bs->write_ref_array(MemRegion((HeapWord*)_methods->obj_at_addr(0), |
|
1045 |
_methods->length() * HeapWordsPerOop)); |
|
1046 |
_dirty = false; |
|
1047 |
} |
|
1048 |
} |
|
1049 |
||
1050 |
void expand(TRAPS) { |
|
1051 |
flush(); |
|
1052 |
||
1053 |
objArrayHandle old_head(THREAD, _head); |
|
1054 |
Pause_No_Safepoint_Verifier pnsv(&_nsv); |
|
1055 |
||
1056 |
objArrayOop head = oopFactory::new_objectArray(trace_size, CHECK); |
|
1057 |
objArrayHandle new_head(THREAD, head); |
|
1058 |
||
1059 |
objArrayOop methods = oopFactory::new_objectArray(trace_chunk_size, CHECK); |
|
1060 |
objArrayHandle new_methods(THREAD, methods); |
|
1061 |
||
1062 |
typeArrayOop bcis = oopFactory::new_shortArray(trace_chunk_size, CHECK); |
|
1063 |
typeArrayHandle new_bcis(THREAD, bcis); |
|
1064 |
||
1065 |
if (!old_head.is_null()) { |
|
1066 |
old_head->obj_at_put(trace_next_offset, new_head()); |
|
1067 |
} |
|
1068 |
new_head->obj_at_put(trace_methods_offset, new_methods()); |
|
1069 |
new_head->obj_at_put(trace_bcis_offset, new_bcis()); |
|
1070 |
||
1071 |
_head = new_head(); |
|
1072 |
_methods = new_methods(); |
|
1073 |
_bcis = new_bcis(); |
|
1074 |
_index = 0; |
|
1075 |
} |
|
1076 |
||
1077 |
oop backtrace() { |
|
1078 |
flush(); |
|
1079 |
return _backtrace(); |
|
1080 |
} |
|
1081 |
||
1082 |
inline void push(methodOop method, short bci, TRAPS) { |
|
1083 |
if (_index >= trace_chunk_size) { |
|
1084 |
methodHandle mhandle(THREAD, method); |
|
1085 |
expand(CHECK); |
|
1086 |
method = mhandle(); |
|
1087 |
} |
|
1088 |
||
1089 |
// _methods->obj_at_put(_index, method); |
|
1090 |
*_methods->obj_at_addr(_index) = method; |
|
1091 |
_bcis->ushort_at_put(_index, bci); |
|
1092 |
_index++; |
|
1093 |
_dirty = true; |
|
1094 |
} |
|
1095 |
||
1096 |
methodOop current_method() { |
|
1097 |
assert(_index >= 0 && _index < trace_chunk_size, "out of range"); |
|
1098 |
return methodOop(_methods->obj_at(_index)); |
|
1099 |
} |
|
1100 |
||
1101 |
jushort current_bci() { |
|
1102 |
assert(_index >= 0 && _index < trace_chunk_size, "out of range"); |
|
1103 |
return _bcis->ushort_at(_index); |
|
1104 |
} |
|
1105 |
}; |
|
1106 |
||
1107 |
||
1108 |
void java_lang_Throwable::fill_in_stack_trace(Handle throwable, TRAPS) { |
|
1109 |
if (!StackTraceInThrowable) return; |
|
1110 |
ResourceMark rm(THREAD); |
|
1111 |
||
1112 |
// Start out by clearing the backtrace for this object, in case the VM |
|
1113 |
// runs out of memory while allocating the stack trace |
|
1114 |
set_backtrace(throwable(), NULL); |
|
1115 |
if (JDK_Version::is_gte_jdk14x_version()) { |
|
1116 |
// New since 1.4, clear lazily constructed Java level stacktrace if |
|
1117 |
// refilling occurs |
|
1118 |
clear_stacktrace(throwable()); |
|
1119 |
} |
|
1120 |
||
1121 |
int max_depth = MaxJavaStackTraceDepth; |
|
1122 |
JavaThread* thread = (JavaThread*)THREAD; |
|
1123 |
BacktraceBuilder bt(CHECK); |
|
1124 |
||
1125 |
// Instead of using vframe directly, this version of fill_in_stack_trace |
|
1126 |
// basically handles everything by hand. This significantly improved the |
|
1127 |
// speed of this method call up to 28.5% on Solaris sparc. 27.1% on Windows. |
|
1128 |
// See bug 6333838 for more details. |
|
1129 |
// The "ASSERT" here is to verify this method generates the exactly same stack |
|
1130 |
// trace as utilizing vframe. |
|
1131 |
#ifdef ASSERT |
|
1132 |
vframeStream st(thread); |
|
1133 |
methodHandle st_method(THREAD, st.method()); |
|
1134 |
#endif |
|
1135 |
int total_count = 0; |
|
1136 |
RegisterMap map(thread, false); |
|
1137 |
int decode_offset = 0; |
|
1138 |
nmethod* nm = NULL; |
|
1139 |
bool skip_fillInStackTrace_check = false; |
|
1140 |
bool skip_throwableInit_check = false; |
|
1141 |
||
1142 |
for (frame fr = thread->last_frame(); max_depth != total_count;) { |
|
1143 |
methodOop method = NULL; |
|
1144 |
int bci = 0; |
|
1145 |
||
1146 |
// Compiled java method case. |
|
1147 |
if (decode_offset != 0) { |
|
1148 |
DebugInfoReadStream stream(nm, decode_offset); |
|
1149 |
decode_offset = stream.read_int(); |
|
1150 |
method = (methodOop)nm->oop_at(stream.read_int()); |
|
1151 |
bci = stream.read_bci(); |
|
1152 |
} else { |
|
1153 |
if (fr.is_first_frame()) break; |
|
1154 |
address pc = fr.pc(); |
|
1155 |
if (fr.is_interpreted_frame()) { |
|
1156 |
intptr_t bcx = fr.interpreter_frame_bcx(); |
|
1157 |
method = fr.interpreter_frame_method(); |
|
1158 |
bci = fr.is_bci(bcx) ? bcx : method->bci_from((address)bcx); |
|
1159 |
fr = fr.sender(&map); |
|
1160 |
} else { |
|
1161 |
CodeBlob* cb = fr.cb(); |
|
1162 |
// HMMM QQQ might be nice to have frame return nm as NULL if cb is non-NULL |
|
1163 |
// but non nmethod |
|
1164 |
fr = fr.sender(&map); |
|
1165 |
if (cb == NULL || !cb->is_nmethod()) { |
|
1166 |
continue; |
|
1167 |
} |
|
1168 |
nm = (nmethod*)cb; |
|
1169 |
if (nm->method()->is_native()) { |
|
1170 |
method = nm->method(); |
|
1171 |
bci = 0; |
|
1172 |
} else { |
|
1173 |
PcDesc* pd = nm->pc_desc_at(pc); |
|
1174 |
decode_offset = pd->scope_decode_offset(); |
|
1175 |
// if decode_offset is not equal to 0, it will execute the |
|
1176 |
// "compiled java method case" at the beginning of the loop. |
|
1177 |
continue; |
|
1178 |
} |
|
1179 |
} |
|
1180 |
} |
|
1181 |
#ifdef ASSERT |
|
1182 |
assert(st_method() == method && st.bci() == bci, |
|
1183 |
"Wrong stack trace"); |
|
1184 |
st.next(); |
|
1185 |
// vframeStream::method isn't GC-safe so store off a copy |
|
1186 |
// of the methodOop in case we GC. |
|
1187 |
if (!st.at_end()) { |
|
1188 |
st_method = st.method(); |
|
1189 |
} |
|
1190 |
#endif |
|
1191 |
if (!skip_fillInStackTrace_check) { |
|
1192 |
// check "fillInStackTrace" only once, so we negate the flag |
|
1193 |
// after the first time check. |
|
1194 |
skip_fillInStackTrace_check = true; |
|
1195 |
if (method->name() == vmSymbols::fillInStackTrace_name()) { |
|
1196 |
continue; |
|
1197 |
} |
|
1198 |
} |
|
1199 |
// skip <init> methods of the exceptions klass. If there is <init> methods |
|
1200 |
// that belongs to a superclass of the exception we are going to skipping |
|
1201 |
// them in stack trace. This is simlar to classic VM. |
|
1202 |
if (!skip_throwableInit_check) { |
|
1203 |
if (method->name() == vmSymbols::object_initializer_name() && |
|
1204 |
throwable->is_a(method->method_holder())) { |
|
1205 |
continue; |
|
1206 |
} else { |
|
1207 |
// if no "Throwable.init()" method found, we stop checking it next time. |
|
1208 |
skip_throwableInit_check = true; |
|
1209 |
} |
|
1210 |
} |
|
1211 |
bt.push(method, bci, CHECK); |
|
1212 |
total_count++; |
|
1213 |
} |
|
1214 |
||
1215 |
// Put completed stack trace into throwable object |
|
1216 |
set_backtrace(throwable(), bt.backtrace()); |
|
1217 |
} |
|
1218 |
||
1219 |
void java_lang_Throwable::fill_in_stack_trace(Handle throwable) { |
|
1220 |
// No-op if stack trace is disabled |
|
1221 |
if (!StackTraceInThrowable) { |
|
1222 |
return; |
|
1223 |
} |
|
1224 |
||
1225 |
// Disable stack traces for some preallocated out of memory errors |
|
1226 |
if (!Universe::should_fill_in_stack_trace(throwable)) { |
|
1227 |
return; |
|
1228 |
} |
|
1229 |
||
1230 |
PRESERVE_EXCEPTION_MARK; |
|
1231 |
||
1232 |
JavaThread* thread = JavaThread::active(); |
|
1233 |
fill_in_stack_trace(throwable, thread); |
|
1234 |
// ignore exceptions thrown during stack trace filling |
|
1235 |
CLEAR_PENDING_EXCEPTION; |
|
1236 |
} |
|
1237 |
||
1238 |
void java_lang_Throwable::allocate_backtrace(Handle throwable, TRAPS) { |
|
1239 |
// Allocate stack trace - backtrace is created but not filled in |
|
1240 |
||
1241 |
// No-op if stack trace is disabled |
|
1242 |
if (!StackTraceInThrowable) return; |
|
1243 |
||
1244 |
objArrayOop h_oop = oopFactory::new_objectArray(trace_size, CHECK); |
|
1245 |
objArrayHandle backtrace (THREAD, h_oop); |
|
1246 |
objArrayOop m_oop = oopFactory::new_objectArray(trace_chunk_size, CHECK); |
|
1247 |
objArrayHandle methods (THREAD, m_oop); |
|
1248 |
typeArrayOop b = oopFactory::new_shortArray(trace_chunk_size, CHECK); |
|
1249 |
typeArrayHandle bcis(THREAD, b); |
|
1250 |
||
1251 |
// backtrace has space for one chunk (next is NULL) |
|
1252 |
backtrace->obj_at_put(trace_methods_offset, methods()); |
|
1253 |
backtrace->obj_at_put(trace_bcis_offset, bcis()); |
|
1254 |
set_backtrace(throwable(), backtrace()); |
|
1255 |
} |
|
1256 |
||
1257 |
||
1258 |
void java_lang_Throwable::fill_in_stack_trace_of_preallocated_backtrace(Handle throwable) { |
|
1259 |
// Fill in stack trace into preallocated backtrace (no GC) |
|
1260 |
||
1261 |
// No-op if stack trace is disabled |
|
1262 |
if (!StackTraceInThrowable) return; |
|
1263 |
||
1264 |
assert(throwable->is_a(SystemDictionary::throwable_klass()), "sanity check"); |
|
1265 |
||
1266 |
oop backtrace = java_lang_Throwable::backtrace(throwable()); |
|
1267 |
assert(backtrace != NULL, "backtrace not preallocated"); |
|
1268 |
||
1269 |
oop m = objArrayOop(backtrace)->obj_at(trace_methods_offset); |
|
1270 |
objArrayOop methods = objArrayOop(m); |
|
1271 |
assert(methods != NULL && methods->length() > 0, "method array not preallocated"); |
|
1272 |
||
1273 |
oop b = objArrayOop(backtrace)->obj_at(trace_bcis_offset); |
|
1274 |
typeArrayOop bcis = typeArrayOop(b); |
|
1275 |
assert(bcis != NULL, "bci array not preallocated"); |
|
1276 |
||
1277 |
assert(methods->length() == bcis->length(), "method and bci arrays should match"); |
|
1278 |
||
1279 |
JavaThread* thread = JavaThread::current(); |
|
1280 |
ResourceMark rm(thread); |
|
1281 |
vframeStream st(thread); |
|
1282 |
||
1283 |
// Unlike fill_in_stack_trace we do not skip fillInStackTrace or throwable init |
|
1284 |
// methods as preallocated errors aren't created by "java" code. |
|
1285 |
||
1286 |
// fill in as much stack trace as possible |
|
1287 |
int max_chunks = MIN2(methods->length(), (int)MaxJavaStackTraceDepth); |
|
1288 |
int chunk_count = 0; |
|
1289 |
||
1290 |
for (;!st.at_end(); st.next()) { |
|
1291 |
// add element |
|
1292 |
bcis->ushort_at_put(chunk_count, st.bci()); |
|
1293 |
methods->obj_at_put(chunk_count, st.method()); |
|
1294 |
||
1295 |
chunk_count++; |
|
1296 |
||
1297 |
// Bail-out for deep stacks |
|
1298 |
if (chunk_count >= max_chunks) break; |
|
1299 |
} |
|
1300 |
} |
|
1301 |
||
1302 |
||
1303 |
int java_lang_Throwable::get_stack_trace_depth(oop throwable, TRAPS) { |
|
1304 |
if (throwable == NULL) { |
|
1305 |
THROW_0(vmSymbols::java_lang_NullPointerException()); |
|
1306 |
} |
|
1307 |
objArrayOop chunk = objArrayOop(backtrace(throwable)); |
|
1308 |
int depth = 0; |
|
1309 |
if (chunk != NULL) { |
|
1310 |
// Iterate over chunks and count full ones |
|
1311 |
while (true) { |
|
1312 |
objArrayOop next = objArrayOop(chunk->obj_at(trace_next_offset)); |
|
1313 |
if (next == NULL) break; |
|
1314 |
depth += trace_chunk_size; |
|
1315 |
chunk = next; |
|
1316 |
} |
|
1317 |
assert(chunk != NULL && chunk->obj_at(trace_next_offset) == NULL, "sanity check"); |
|
1318 |
// Count element in remaining partial chunk |
|
1319 |
objArrayOop methods = objArrayOop(chunk->obj_at(trace_methods_offset)); |
|
1320 |
typeArrayOop bcis = typeArrayOop(chunk->obj_at(trace_bcis_offset)); |
|
1321 |
assert(methods != NULL && bcis != NULL, "sanity check"); |
|
1322 |
for (int i = 0; i < methods->length(); i++) { |
|
1323 |
if (methods->obj_at(i) == NULL) break; |
|
1324 |
depth++; |
|
1325 |
} |
|
1326 |
} |
|
1327 |
return depth; |
|
1328 |
} |
|
1329 |
||
1330 |
||
1331 |
oop java_lang_Throwable::get_stack_trace_element(oop throwable, int index, TRAPS) { |
|
1332 |
if (throwable == NULL) { |
|
1333 |
THROW_0(vmSymbols::java_lang_NullPointerException()); |
|
1334 |
} |
|
1335 |
if (index < 0) { |
|
1336 |
THROW_(vmSymbols::java_lang_IndexOutOfBoundsException(), NULL); |
|
1337 |
} |
|
1338 |
// Compute how many chunks to skip and index into actual chunk |
|
1339 |
objArrayOop chunk = objArrayOop(backtrace(throwable)); |
|
1340 |
int skip_chunks = index / trace_chunk_size; |
|
1341 |
int chunk_index = index % trace_chunk_size; |
|
1342 |
while (chunk != NULL && skip_chunks > 0) { |
|
1343 |
chunk = objArrayOop(chunk->obj_at(trace_next_offset)); |
|
1344 |
skip_chunks--; |
|
1345 |
} |
|
1346 |
if (chunk == NULL) { |
|
1347 |
THROW_(vmSymbols::java_lang_IndexOutOfBoundsException(), NULL); |
|
1348 |
} |
|
1349 |
// Get method,bci from chunk |
|
1350 |
objArrayOop methods = objArrayOop(chunk->obj_at(trace_methods_offset)); |
|
1351 |
typeArrayOop bcis = typeArrayOop(chunk->obj_at(trace_bcis_offset)); |
|
1352 |
assert(methods != NULL && bcis != NULL, "sanity check"); |
|
1353 |
methodHandle method(THREAD, methodOop(methods->obj_at(chunk_index))); |
|
1354 |
int bci = bcis->ushort_at(chunk_index); |
|
1355 |
// Chunk can be partial full |
|
1356 |
if (method.is_null()) { |
|
1357 |
THROW_(vmSymbols::java_lang_IndexOutOfBoundsException(), NULL); |
|
1358 |
} |
|
1359 |
||
1360 |
oop element = java_lang_StackTraceElement::create(method, bci, CHECK_0); |
|
1361 |
return element; |
|
1362 |
} |
|
1363 |
||
1364 |
oop java_lang_StackTraceElement::create(methodHandle method, int bci, TRAPS) { |
|
1365 |
// SystemDictionary::stackTraceElement_klass() will be null for pre-1.4 JDKs |
|
1366 |
assert(JDK_Version::is_gte_jdk14x_version(), "should only be called in >= 1.4"); |
|
1367 |
||
1368 |
// Allocate java.lang.StackTraceElement instance |
|
1369 |
klassOop k = SystemDictionary::stackTraceElement_klass(); |
|
1370 |
instanceKlassHandle ik (THREAD, k); |
|
1371 |
if (ik->should_be_initialized()) { |
|
1372 |
ik->initialize(CHECK_0); |
|
1373 |
} |
|
1374 |
||
1375 |
Handle element = ik->allocate_instance_handle(CHECK_0); |
|
1376 |
// Fill in class name |
|
1377 |
ResourceMark rm(THREAD); |
|
1378 |
const char* str = instanceKlass::cast(method->method_holder())->external_name(); |
|
1379 |
oop classname = StringTable::intern((char*) str, CHECK_0); |
|
1380 |
java_lang_StackTraceElement::set_declaringClass(element(), classname); |
|
1381 |
// Fill in method name |
|
1382 |
oop methodname = StringTable::intern(method->name(), CHECK_0); |
|
1383 |
java_lang_StackTraceElement::set_methodName(element(), methodname); |
|
1384 |
// Fill in source file name |
|
1385 |
symbolOop source = instanceKlass::cast(method->method_holder())->source_file_name(); |
|
1386 |
oop filename = StringTable::intern(source, CHECK_0); |
|
1387 |
java_lang_StackTraceElement::set_fileName(element(), filename); |
|
1388 |
// File in source line number |
|
1389 |
int line_number; |
|
1390 |
if (method->is_native()) { |
|
1391 |
// Negative value different from -1 below, enabling Java code in |
|
1392 |
// class java.lang.StackTraceElement to distinguish "native" from |
|
1393 |
// "no LineNumberTable". |
|
1394 |
line_number = -2; |
|
1395 |
} else { |
|
1396 |
// Returns -1 if no LineNumberTable, and otherwise actual line number |
|
1397 |
line_number = method->line_number_from_bci(bci); |
|
1398 |
} |
|
1399 |
java_lang_StackTraceElement::set_lineNumber(element(), line_number); |
|
1400 |
||
1401 |
return element(); |
|
1402 |
} |
|
1403 |
||
1404 |
||
1405 |
void java_lang_reflect_AccessibleObject::compute_offsets() { |
|
1406 |
klassOop k = SystemDictionary::reflect_accessible_object_klass(); |
|
1407 |
COMPUTE_OFFSET("java.lang.reflect.AccessibleObject", override_offset, k, vmSymbols::override_name(), vmSymbols::bool_signature()); |
|
1408 |
} |
|
1409 |
||
1410 |
jboolean java_lang_reflect_AccessibleObject::override(oop reflect) { |
|
1411 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1412 |
return (jboolean) reflect->bool_field(override_offset); |
|
1413 |
} |
|
1414 |
||
1415 |
void java_lang_reflect_AccessibleObject::set_override(oop reflect, jboolean value) { |
|
1416 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1417 |
reflect->bool_field_put(override_offset, (int) value); |
|
1418 |
} |
|
1419 |
||
1420 |
void java_lang_reflect_Method::compute_offsets() { |
|
1421 |
klassOop k = SystemDictionary::reflect_method_klass(); |
|
1422 |
COMPUTE_OFFSET("java.lang.reflect.Method", clazz_offset, k, vmSymbols::clazz_name(), vmSymbols::class_signature()); |
|
1423 |
COMPUTE_OFFSET("java.lang.reflect.Method", name_offset, k, vmSymbols::name_name(), vmSymbols::string_signature()); |
|
1424 |
COMPUTE_OFFSET("java.lang.reflect.Method", returnType_offset, k, vmSymbols::returnType_name(), vmSymbols::class_signature()); |
|
1425 |
COMPUTE_OFFSET("java.lang.reflect.Method", parameterTypes_offset, k, vmSymbols::parameterTypes_name(), vmSymbols::class_array_signature()); |
|
1426 |
COMPUTE_OFFSET("java.lang.reflect.Method", exceptionTypes_offset, k, vmSymbols::exceptionTypes_name(), vmSymbols::class_array_signature()); |
|
1427 |
COMPUTE_OFFSET("java.lang.reflect.Method", slot_offset, k, vmSymbols::slot_name(), vmSymbols::int_signature()); |
|
1428 |
COMPUTE_OFFSET("java.lang.reflect.Method", modifiers_offset, k, vmSymbols::modifiers_name(), vmSymbols::int_signature()); |
|
1429 |
// The generic signature and annotations fields are only present in 1.5 |
|
1430 |
signature_offset = -1; |
|
1431 |
annotations_offset = -1; |
|
1432 |
parameter_annotations_offset = -1; |
|
1433 |
annotation_default_offset = -1; |
|
1434 |
COMPUTE_OPTIONAL_OFFSET("java.lang.reflect.Method", signature_offset, k, vmSymbols::signature_name(), vmSymbols::string_signature()); |
|
1435 |
COMPUTE_OPTIONAL_OFFSET("java.lang.reflect.Method", annotations_offset, k, vmSymbols::annotations_name(), vmSymbols::byte_array_signature()); |
|
1436 |
COMPUTE_OPTIONAL_OFFSET("java.lang.reflect.Method", parameter_annotations_offset, k, vmSymbols::parameter_annotations_name(), vmSymbols::byte_array_signature()); |
|
1437 |
COMPUTE_OPTIONAL_OFFSET("java.lang.reflect.Method", annotation_default_offset, k, vmSymbols::annotation_default_name(), vmSymbols::byte_array_signature()); |
|
1438 |
} |
|
1439 |
||
1440 |
Handle java_lang_reflect_Method::create(TRAPS) { |
|
1441 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1442 |
klassOop klass = SystemDictionary::reflect_method_klass(); |
|
1443 |
// This class is eagerly initialized during VM initialization, since we keep a refence |
|
1444 |
// to one of the methods |
|
1445 |
assert(instanceKlass::cast(klass)->is_initialized(), "must be initialized"); |
|
1446 |
return instanceKlass::cast(klass)->allocate_instance_handle(CHECK_NH); |
|
1447 |
} |
|
1448 |
||
1449 |
oop java_lang_reflect_Method::clazz(oop reflect) { |
|
1450 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1451 |
return reflect->obj_field(clazz_offset); |
|
1452 |
} |
|
1453 |
||
1454 |
void java_lang_reflect_Method::set_clazz(oop reflect, oop value) { |
|
1455 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1456 |
reflect->obj_field_put(clazz_offset, value); |
|
1457 |
} |
|
1458 |
||
1459 |
int java_lang_reflect_Method::slot(oop reflect) { |
|
1460 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1461 |
return reflect->int_field(slot_offset); |
|
1462 |
} |
|
1463 |
||
1464 |
void java_lang_reflect_Method::set_slot(oop reflect, int value) { |
|
1465 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1466 |
reflect->int_field_put(slot_offset, value); |
|
1467 |
} |
|
1468 |
||
1469 |
oop java_lang_reflect_Method::name(oop method) { |
|
1470 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1471 |
return method->obj_field(name_offset); |
|
1472 |
} |
|
1473 |
||
1474 |
void java_lang_reflect_Method::set_name(oop method, oop value) { |
|
1475 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1476 |
method->obj_field_put(name_offset, value); |
|
1477 |
} |
|
1478 |
||
1479 |
oop java_lang_reflect_Method::return_type(oop method) { |
|
1480 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1481 |
return method->obj_field(returnType_offset); |
|
1482 |
} |
|
1483 |
||
1484 |
void java_lang_reflect_Method::set_return_type(oop method, oop value) { |
|
1485 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1486 |
method->obj_field_put(returnType_offset, value); |
|
1487 |
} |
|
1488 |
||
1489 |
oop java_lang_reflect_Method::parameter_types(oop method) { |
|
1490 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1491 |
return method->obj_field(parameterTypes_offset); |
|
1492 |
} |
|
1493 |
||
1494 |
void java_lang_reflect_Method::set_parameter_types(oop method, oop value) { |
|
1495 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1496 |
method->obj_field_put(parameterTypes_offset, value); |
|
1497 |
} |
|
1498 |
||
1499 |
oop java_lang_reflect_Method::exception_types(oop method) { |
|
1500 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1501 |
return method->obj_field(exceptionTypes_offset); |
|
1502 |
} |
|
1503 |
||
1504 |
void java_lang_reflect_Method::set_exception_types(oop method, oop value) { |
|
1505 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1506 |
method->obj_field_put(exceptionTypes_offset, value); |
|
1507 |
} |
|
1508 |
||
1509 |
int java_lang_reflect_Method::modifiers(oop method) { |
|
1510 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1511 |
return method->int_field(modifiers_offset); |
|
1512 |
} |
|
1513 |
||
1514 |
void java_lang_reflect_Method::set_modifiers(oop method, int value) { |
|
1515 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1516 |
method->int_field_put(modifiers_offset, value); |
|
1517 |
} |
|
1518 |
||
1519 |
bool java_lang_reflect_Method::has_signature_field() { |
|
1520 |
return (signature_offset >= 0); |
|
1521 |
} |
|
1522 |
||
1523 |
oop java_lang_reflect_Method::signature(oop method) { |
|
1524 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1525 |
assert(has_signature_field(), "signature field must be present"); |
|
1526 |
return method->obj_field(signature_offset); |
|
1527 |
} |
|
1528 |
||
1529 |
void java_lang_reflect_Method::set_signature(oop method, oop value) { |
|
1530 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1531 |
assert(has_signature_field(), "signature field must be present"); |
|
1532 |
method->obj_field_put(signature_offset, value); |
|
1533 |
} |
|
1534 |
||
1535 |
bool java_lang_reflect_Method::has_annotations_field() { |
|
1536 |
return (annotations_offset >= 0); |
|
1537 |
} |
|
1538 |
||
1539 |
oop java_lang_reflect_Method::annotations(oop method) { |
|
1540 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1541 |
assert(has_annotations_field(), "annotations field must be present"); |
|
1542 |
return method->obj_field(annotations_offset); |
|
1543 |
} |
|
1544 |
||
1545 |
void java_lang_reflect_Method::set_annotations(oop method, oop value) { |
|
1546 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1547 |
assert(has_annotations_field(), "annotations field must be present"); |
|
1548 |
method->obj_field_put(annotations_offset, value); |
|
1549 |
} |
|
1550 |
||
1551 |
bool java_lang_reflect_Method::has_parameter_annotations_field() { |
|
1552 |
return (parameter_annotations_offset >= 0); |
|
1553 |
} |
|
1554 |
||
1555 |
oop java_lang_reflect_Method::parameter_annotations(oop method) { |
|
1556 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1557 |
assert(has_parameter_annotations_field(), "parameter annotations field must be present"); |
|
1558 |
return method->obj_field(parameter_annotations_offset); |
|
1559 |
} |
|
1560 |
||
1561 |
void java_lang_reflect_Method::set_parameter_annotations(oop method, oop value) { |
|
1562 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1563 |
assert(has_parameter_annotations_field(), "parameter annotations field must be present"); |
|
1564 |
method->obj_field_put(parameter_annotations_offset, value); |
|
1565 |
} |
|
1566 |
||
1567 |
bool java_lang_reflect_Method::has_annotation_default_field() { |
|
1568 |
return (annotation_default_offset >= 0); |
|
1569 |
} |
|
1570 |
||
1571 |
oop java_lang_reflect_Method::annotation_default(oop method) { |
|
1572 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1573 |
assert(has_annotation_default_field(), "annotation default field must be present"); |
|
1574 |
return method->obj_field(annotation_default_offset); |
|
1575 |
} |
|
1576 |
||
1577 |
void java_lang_reflect_Method::set_annotation_default(oop method, oop value) { |
|
1578 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1579 |
assert(has_annotation_default_field(), "annotation default field must be present"); |
|
1580 |
method->obj_field_put(annotation_default_offset, value); |
|
1581 |
} |
|
1582 |
||
1583 |
void java_lang_reflect_Constructor::compute_offsets() { |
|
1584 |
klassOop k = SystemDictionary::reflect_constructor_klass(); |
|
1585 |
COMPUTE_OFFSET("java.lang.reflect.Constructor", clazz_offset, k, vmSymbols::clazz_name(), vmSymbols::class_signature()); |
|
1586 |
COMPUTE_OFFSET("java.lang.reflect.Constructor", parameterTypes_offset, k, vmSymbols::parameterTypes_name(), vmSymbols::class_array_signature()); |
|
1587 |
COMPUTE_OFFSET("java.lang.reflect.Constructor", exceptionTypes_offset, k, vmSymbols::exceptionTypes_name(), vmSymbols::class_array_signature()); |
|
1588 |
COMPUTE_OFFSET("java.lang.reflect.Constructor", slot_offset, k, vmSymbols::slot_name(), vmSymbols::int_signature()); |
|
1589 |
COMPUTE_OFFSET("java.lang.reflect.Constructor", modifiers_offset, k, vmSymbols::modifiers_name(), vmSymbols::int_signature()); |
|
1590 |
// The generic signature and annotations fields are only present in 1.5 |
|
1591 |
signature_offset = -1; |
|
1592 |
annotations_offset = -1; |
|
1593 |
parameter_annotations_offset = -1; |
|
1594 |
COMPUTE_OPTIONAL_OFFSET("java.lang.reflect.Constructor", signature_offset, k, vmSymbols::signature_name(), vmSymbols::string_signature()); |
|
1595 |
COMPUTE_OPTIONAL_OFFSET("java.lang.reflect.Constructor", annotations_offset, k, vmSymbols::annotations_name(), vmSymbols::byte_array_signature()); |
|
1596 |
COMPUTE_OPTIONAL_OFFSET("java.lang.reflect.Constructor", parameter_annotations_offset, k, vmSymbols::parameter_annotations_name(), vmSymbols::byte_array_signature()); |
|
1597 |
} |
|
1598 |
||
1599 |
Handle java_lang_reflect_Constructor::create(TRAPS) { |
|
1600 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1601 |
symbolHandle name = vmSymbolHandles::java_lang_reflect_Constructor(); |
|
1602 |
klassOop k = SystemDictionary::resolve_or_fail(name, true, CHECK_NH); |
|
1603 |
instanceKlassHandle klass (THREAD, k); |
|
1604 |
// Ensure it is initialized |
|
1605 |
klass->initialize(CHECK_NH); |
|
1606 |
return klass->allocate_instance_handle(CHECK_NH); |
|
1607 |
} |
|
1608 |
||
1609 |
oop java_lang_reflect_Constructor::clazz(oop reflect) { |
|
1610 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1611 |
return reflect->obj_field(clazz_offset); |
|
1612 |
} |
|
1613 |
||
1614 |
void java_lang_reflect_Constructor::set_clazz(oop reflect, oop value) { |
|
1615 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1616 |
reflect->obj_field_put(clazz_offset, value); |
|
1617 |
} |
|
1618 |
||
1619 |
oop java_lang_reflect_Constructor::parameter_types(oop constructor) { |
|
1620 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1621 |
return constructor->obj_field(parameterTypes_offset); |
|
1622 |
} |
|
1623 |
||
1624 |
void java_lang_reflect_Constructor::set_parameter_types(oop constructor, oop value) { |
|
1625 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1626 |
constructor->obj_field_put(parameterTypes_offset, value); |
|
1627 |
} |
|
1628 |
||
1629 |
oop java_lang_reflect_Constructor::exception_types(oop constructor) { |
|
1630 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1631 |
return constructor->obj_field(exceptionTypes_offset); |
|
1632 |
} |
|
1633 |
||
1634 |
void java_lang_reflect_Constructor::set_exception_types(oop constructor, oop value) { |
|
1635 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1636 |
constructor->obj_field_put(exceptionTypes_offset, value); |
|
1637 |
} |
|
1638 |
||
1639 |
int java_lang_reflect_Constructor::slot(oop reflect) { |
|
1640 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1641 |
return reflect->int_field(slot_offset); |
|
1642 |
} |
|
1643 |
||
1644 |
void java_lang_reflect_Constructor::set_slot(oop reflect, int value) { |
|
1645 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1646 |
reflect->int_field_put(slot_offset, value); |
|
1647 |
} |
|
1648 |
||
1649 |
int java_lang_reflect_Constructor::modifiers(oop constructor) { |
|
1650 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1651 |
return constructor->int_field(modifiers_offset); |
|
1652 |
} |
|
1653 |
||
1654 |
void java_lang_reflect_Constructor::set_modifiers(oop constructor, int value) { |
|
1655 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1656 |
constructor->int_field_put(modifiers_offset, value); |
|
1657 |
} |
|
1658 |
||
1659 |
bool java_lang_reflect_Constructor::has_signature_field() { |
|
1660 |
return (signature_offset >= 0); |
|
1661 |
} |
|
1662 |
||
1663 |
oop java_lang_reflect_Constructor::signature(oop constructor) { |
|
1664 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1665 |
assert(has_signature_field(), "signature field must be present"); |
|
1666 |
return constructor->obj_field(signature_offset); |
|
1667 |
} |
|
1668 |
||
1669 |
void java_lang_reflect_Constructor::set_signature(oop constructor, oop value) { |
|
1670 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1671 |
assert(has_signature_field(), "signature field must be present"); |
|
1672 |
constructor->obj_field_put(signature_offset, value); |
|
1673 |
} |
|
1674 |
||
1675 |
bool java_lang_reflect_Constructor::has_annotations_field() { |
|
1676 |
return (annotations_offset >= 0); |
|
1677 |
} |
|
1678 |
||
1679 |
oop java_lang_reflect_Constructor::annotations(oop constructor) { |
|
1680 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1681 |
assert(has_annotations_field(), "annotations field must be present"); |
|
1682 |
return constructor->obj_field(annotations_offset); |
|
1683 |
} |
|
1684 |
||
1685 |
void java_lang_reflect_Constructor::set_annotations(oop constructor, oop value) { |
|
1686 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1687 |
assert(has_annotations_field(), "annotations field must be present"); |
|
1688 |
constructor->obj_field_put(annotations_offset, value); |
|
1689 |
} |
|
1690 |
||
1691 |
bool java_lang_reflect_Constructor::has_parameter_annotations_field() { |
|
1692 |
return (parameter_annotations_offset >= 0); |
|
1693 |
} |
|
1694 |
||
1695 |
oop java_lang_reflect_Constructor::parameter_annotations(oop method) { |
|
1696 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1697 |
assert(has_parameter_annotations_field(), "parameter annotations field must be present"); |
|
1698 |
return method->obj_field(parameter_annotations_offset); |
|
1699 |
} |
|
1700 |
||
1701 |
void java_lang_reflect_Constructor::set_parameter_annotations(oop method, oop value) { |
|
1702 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1703 |
assert(has_parameter_annotations_field(), "parameter annotations field must be present"); |
|
1704 |
method->obj_field_put(parameter_annotations_offset, value); |
|
1705 |
} |
|
1706 |
||
1707 |
void java_lang_reflect_Field::compute_offsets() { |
|
1708 |
klassOop k = SystemDictionary::reflect_field_klass(); |
|
1709 |
COMPUTE_OFFSET("java.lang.reflect.Field", clazz_offset, k, vmSymbols::clazz_name(), vmSymbols::class_signature()); |
|
1710 |
COMPUTE_OFFSET("java.lang.reflect.Field", name_offset, k, vmSymbols::name_name(), vmSymbols::string_signature()); |
|
1711 |
COMPUTE_OFFSET("java.lang.reflect.Field", type_offset, k, vmSymbols::type_name(), vmSymbols::class_signature()); |
|
1712 |
COMPUTE_OFFSET("java.lang.reflect.Field", slot_offset, k, vmSymbols::slot_name(), vmSymbols::int_signature()); |
|
1713 |
COMPUTE_OFFSET("java.lang.reflect.Field", modifiers_offset, k, vmSymbols::modifiers_name(), vmSymbols::int_signature()); |
|
1714 |
// The generic signature and annotations fields are only present in 1.5 |
|
1715 |
signature_offset = -1; |
|
1716 |
annotations_offset = -1; |
|
1717 |
COMPUTE_OPTIONAL_OFFSET("java.lang.reflect.Field", signature_offset, k, vmSymbols::signature_name(), vmSymbols::string_signature()); |
|
1718 |
COMPUTE_OPTIONAL_OFFSET("java.lang.reflect.Field", annotations_offset, k, vmSymbols::annotations_name(), vmSymbols::byte_array_signature()); |
|
1719 |
} |
|
1720 |
||
1721 |
Handle java_lang_reflect_Field::create(TRAPS) { |
|
1722 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1723 |
symbolHandle name = vmSymbolHandles::java_lang_reflect_Field(); |
|
1724 |
klassOop k = SystemDictionary::resolve_or_fail(name, true, CHECK_NH); |
|
1725 |
instanceKlassHandle klass (THREAD, k); |
|
1726 |
// Ensure it is initialized |
|
1727 |
klass->initialize(CHECK_NH); |
|
1728 |
return klass->allocate_instance_handle(CHECK_NH); |
|
1729 |
} |
|
1730 |
||
1731 |
oop java_lang_reflect_Field::clazz(oop reflect) { |
|
1732 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1733 |
return reflect->obj_field(clazz_offset); |
|
1734 |
} |
|
1735 |
||
1736 |
void java_lang_reflect_Field::set_clazz(oop reflect, oop value) { |
|
1737 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1738 |
reflect->obj_field_put(clazz_offset, value); |
|
1739 |
} |
|
1740 |
||
1741 |
oop java_lang_reflect_Field::name(oop field) { |
|
1742 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1743 |
return field->obj_field(name_offset); |
|
1744 |
} |
|
1745 |
||
1746 |
void java_lang_reflect_Field::set_name(oop field, oop value) { |
|
1747 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1748 |
field->obj_field_put(name_offset, value); |
|
1749 |
} |
|
1750 |
||
1751 |
oop java_lang_reflect_Field::type(oop field) { |
|
1752 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1753 |
return field->obj_field(type_offset); |
|
1754 |
} |
|
1755 |
||
1756 |
void java_lang_reflect_Field::set_type(oop field, oop value) { |
|
1757 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1758 |
field->obj_field_put(type_offset, value); |
|
1759 |
} |
|
1760 |
||
1761 |
int java_lang_reflect_Field::slot(oop reflect) { |
|
1762 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1763 |
return reflect->int_field(slot_offset); |
|
1764 |
} |
|
1765 |
||
1766 |
void java_lang_reflect_Field::set_slot(oop reflect, int value) { |
|
1767 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1768 |
reflect->int_field_put(slot_offset, value); |
|
1769 |
} |
|
1770 |
||
1771 |
int java_lang_reflect_Field::modifiers(oop field) { |
|
1772 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1773 |
return field->int_field(modifiers_offset); |
|
1774 |
} |
|
1775 |
||
1776 |
void java_lang_reflect_Field::set_modifiers(oop field, int value) { |
|
1777 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1778 |
field->int_field_put(modifiers_offset, value); |
|
1779 |
} |
|
1780 |
||
1781 |
bool java_lang_reflect_Field::has_signature_field() { |
|
1782 |
return (signature_offset >= 0); |
|
1783 |
} |
|
1784 |
||
1785 |
oop java_lang_reflect_Field::signature(oop field) { |
|
1786 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1787 |
assert(has_signature_field(), "signature field must be present"); |
|
1788 |
return field->obj_field(signature_offset); |
|
1789 |
} |
|
1790 |
||
1791 |
void java_lang_reflect_Field::set_signature(oop field, oop value) { |
|
1792 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1793 |
assert(has_signature_field(), "signature field must be present"); |
|
1794 |
field->obj_field_put(signature_offset, value); |
|
1795 |
} |
|
1796 |
||
1797 |
bool java_lang_reflect_Field::has_annotations_field() { |
|
1798 |
return (annotations_offset >= 0); |
|
1799 |
} |
|
1800 |
||
1801 |
oop java_lang_reflect_Field::annotations(oop field) { |
|
1802 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1803 |
assert(has_annotations_field(), "annotations field must be present"); |
|
1804 |
return field->obj_field(annotations_offset); |
|
1805 |
} |
|
1806 |
||
1807 |
void java_lang_reflect_Field::set_annotations(oop field, oop value) { |
|
1808 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1809 |
assert(has_annotations_field(), "annotations field must be present"); |
|
1810 |
field->obj_field_put(annotations_offset, value); |
|
1811 |
} |
|
1812 |
||
1813 |
||
1814 |
void sun_reflect_ConstantPool::compute_offsets() { |
|
1815 |
klassOop k = SystemDictionary::reflect_constant_pool_klass(); |
|
1816 |
// This null test can be removed post beta |
|
1817 |
if (k != NULL) { |
|
1818 |
COMPUTE_OFFSET("sun.reflect.ConstantPool", _cp_oop_offset, k, vmSymbols::constantPoolOop_name(), vmSymbols::object_signature()); |
|
1819 |
} |
|
1820 |
} |
|
1821 |
||
1822 |
||
1823 |
Handle sun_reflect_ConstantPool::create(TRAPS) { |
|
1824 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1825 |
klassOop k = SystemDictionary::reflect_constant_pool_klass(); |
|
1826 |
instanceKlassHandle klass (THREAD, k); |
|
1827 |
// Ensure it is initialized |
|
1828 |
klass->initialize(CHECK_NH); |
|
1829 |
return klass->allocate_instance_handle(CHECK_NH); |
|
1830 |
} |
|
1831 |
||
1832 |
||
1833 |
oop sun_reflect_ConstantPool::cp_oop(oop reflect) { |
|
1834 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1835 |
return reflect->obj_field(_cp_oop_offset); |
|
1836 |
} |
|
1837 |
||
1838 |
||
1839 |
void sun_reflect_ConstantPool::set_cp_oop(oop reflect, oop value) { |
|
1840 |
assert(Universe::is_fully_initialized(), "Need to find another solution to the reflection problem"); |
|
1841 |
reflect->obj_field_put(_cp_oop_offset, value); |
|
1842 |
} |
|
1843 |
||
1844 |
void sun_reflect_UnsafeStaticFieldAccessorImpl::compute_offsets() { |
|
1845 |
klassOop k = SystemDictionary::reflect_unsafe_static_field_accessor_impl_klass(); |
|
1846 |
// This null test can be removed post beta |
|
1847 |
if (k != NULL) { |
|
1848 |
COMPUTE_OFFSET("sun.reflect.UnsafeStaticFieldAccessorImpl", _base_offset, k, |
|
1849 |
vmSymbols::base_name(), vmSymbols::object_signature()); |
|
1850 |
} |
|
1851 |
} |
|
1852 |
||
1853 |
oop java_lang_boxing_object::initialize_and_allocate(klassOop k, TRAPS) { |
|
1854 |
instanceKlassHandle h (THREAD, k); |
|
1855 |
if (!h->is_initialized()) h->initialize(CHECK_0); |
|
1856 |
return h->allocate_instance(THREAD); |
|
1857 |
} |
|
1858 |
||
1859 |
||
1860 |
oop java_lang_boxing_object::create(BasicType type, jvalue* value, TRAPS) { |
|
1861 |
oop box; |
|
1862 |
switch (type) { |
|
1863 |
case T_BOOLEAN: |
|
1864 |
box = initialize_and_allocate(SystemDictionary::boolean_klass(), CHECK_0); |
|
1865 |
box->bool_field_put(value_offset, value->z); |
|
1866 |
break; |
|
1867 |
case T_CHAR: |
|
1868 |
box = initialize_and_allocate(SystemDictionary::char_klass(), CHECK_0); |
|
1869 |
box->char_field_put(value_offset, value->c); |
|
1870 |
break; |
|
1871 |
case T_FLOAT: |
|
1872 |
box = initialize_and_allocate(SystemDictionary::float_klass(), CHECK_0); |
|
1873 |
box->float_field_put(value_offset, value->f); |
|
1874 |
break; |
|
1875 |
case T_DOUBLE: |
|
1876 |
box = initialize_and_allocate(SystemDictionary::double_klass(), CHECK_0); |
|
1877 |
box->double_field_put(value_offset, value->d); |
|
1878 |
break; |
|
1879 |
case T_BYTE: |
|
1880 |
box = initialize_and_allocate(SystemDictionary::byte_klass(), CHECK_0); |
|
1881 |
box->byte_field_put(value_offset, value->b); |
|
1882 |
break; |
|
1883 |
case T_SHORT: |
|
1884 |
box = initialize_and_allocate(SystemDictionary::short_klass(), CHECK_0); |
|
1885 |
box->short_field_put(value_offset, value->s); |
|
1886 |
break; |
|
1887 |
case T_INT: |
|
1888 |
box = initialize_and_allocate(SystemDictionary::int_klass(), CHECK_0); |
|
1889 |
box->int_field_put(value_offset, value->i); |
|
1890 |
break; |
|
1891 |
case T_LONG: |
|
1892 |
box = initialize_and_allocate(SystemDictionary::long_klass(), CHECK_0); |
|
1893 |
box->long_field_put(value_offset, value->j); |
|
1894 |
break; |
|
1895 |
default: |
|
1896 |
return NULL; |
|
1897 |
} |
|
1898 |
return box; |
|
1899 |
} |
|
1900 |
||
1901 |
||
1902 |
BasicType java_lang_boxing_object::get_value(oop box, jvalue* value) { |
|
1903 |
klassOop k = box->klass(); |
|
1904 |
if (k == SystemDictionary::boolean_klass()) { |
|
1905 |
value->z = box->bool_field(value_offset); |
|
1906 |
return T_BOOLEAN; |
|
1907 |
} |
|
1908 |
if (k == SystemDictionary::char_klass()) { |
|
1909 |
value->c = box->char_field(value_offset); |
|
1910 |
return T_CHAR; |
|
1911 |
} |
|
1912 |
if (k == SystemDictionary::float_klass()) { |
|
1913 |
value->f = box->float_field(value_offset); |
|
1914 |
return T_FLOAT; |
|
1915 |
} |
|
1916 |
if (k == SystemDictionary::double_klass()) { |
|
1917 |
value->d = box->double_field(value_offset); |
|
1918 |
return T_DOUBLE; |
|
1919 |
} |
|
1920 |
if (k == SystemDictionary::byte_klass()) { |
|
1921 |
value->b = box->byte_field(value_offset); |
|
1922 |
return T_BYTE; |
|
1923 |
} |
|
1924 |
if (k == SystemDictionary::short_klass()) { |
|
1925 |
value->s = box->short_field(value_offset); |
|
1926 |
return T_SHORT; |
|
1927 |
} |
|
1928 |
if (k == SystemDictionary::int_klass()) { |
|
1929 |
value->i = box->int_field(value_offset); |
|
1930 |
return T_INT; |
|
1931 |
} |
|
1932 |
if (k == SystemDictionary::long_klass()) { |
|
1933 |
value->j = box->long_field(value_offset); |
|
1934 |
return T_LONG; |
|
1935 |
} |
|
1936 |
return T_ILLEGAL; |
|
1937 |
} |
|
1938 |
||
1939 |
||
1940 |
BasicType java_lang_boxing_object::set_value(oop box, jvalue* value) { |
|
1941 |
klassOop k = box->klass(); |
|
1942 |
if (k == SystemDictionary::boolean_klass()) { |
|
1943 |
box->bool_field_put(value_offset, value->z); |
|
1944 |
return T_BOOLEAN; |
|
1945 |
} |
|
1946 |
if (k == SystemDictionary::char_klass()) { |
|
1947 |
box->char_field_put(value_offset, value->c); |
|
1948 |
return T_CHAR; |
|
1949 |
} |
|
1950 |
if (k == SystemDictionary::float_klass()) { |
|
1951 |
box->float_field_put(value_offset, value->f); |
|
1952 |
return T_FLOAT; |
|
1953 |
} |
|
1954 |
if (k == SystemDictionary::double_klass()) { |
|
1955 |
box->double_field_put(value_offset, value->d); |
|
1956 |
return T_DOUBLE; |
|
1957 |
} |
|
1958 |
if (k == SystemDictionary::byte_klass()) { |
|
1959 |
box->byte_field_put(value_offset, value->b); |
|
1960 |
return T_BYTE; |
|
1961 |
} |
|
1962 |
if (k == SystemDictionary::short_klass()) { |
|
1963 |
box->short_field_put(value_offset, value->s); |
|
1964 |
return T_SHORT; |
|
1965 |
} |
|
1966 |
if (k == SystemDictionary::int_klass()) { |
|
1967 |
box->int_field_put(value_offset, value->i); |
|
1968 |
return T_INT; |
|
1969 |
} |
|
1970 |
if (k == SystemDictionary::long_klass()) { |
|
1971 |
box->long_field_put(value_offset, value->j); |
|
1972 |
return T_LONG; |
|
1973 |
} |
|
1974 |
return T_ILLEGAL; |
|
1975 |
} |
|
1976 |
||
1977 |
||
1978 |
// Support for java_lang_ref_Reference |
|
1979 |
||
1980 |
void java_lang_ref_Reference::set_referent(oop ref, oop value) { |
|
1981 |
ref->obj_field_put(referent_offset, value); |
|
1982 |
} |
|
1983 |
||
1984 |
oop* java_lang_ref_Reference::referent_addr(oop ref) { |
|
1985 |
return ref->obj_field_addr(referent_offset); |
|
1986 |
} |
|
1987 |
||
1988 |
void java_lang_ref_Reference::set_next(oop ref, oop value) { |
|
1989 |
ref->obj_field_put(next_offset, value); |
|
1990 |
} |
|
1991 |
||
1992 |
oop* java_lang_ref_Reference::next_addr(oop ref) { |
|
1993 |
return ref->obj_field_addr(next_offset); |
|
1994 |
} |
|
1995 |
||
1996 |
void java_lang_ref_Reference::set_discovered(oop ref, oop value) { |
|
1997 |
ref->obj_field_put(discovered_offset, value); |
|
1998 |
} |
|
1999 |
||
2000 |
oop* java_lang_ref_Reference::discovered_addr(oop ref) { |
|
2001 |
return ref->obj_field_addr(discovered_offset); |
|
2002 |
} |
|
2003 |
||
2004 |
oop* java_lang_ref_Reference::pending_list_lock_addr() { |
|
2005 |
instanceKlass* ik = instanceKlass::cast(SystemDictionary::reference_klass()); |
|
2006 |
return (oop*)(((char *)ik->start_of_static_fields()) + static_lock_offset); |
|
2007 |
} |
|
2008 |
||
2009 |
oop* java_lang_ref_Reference::pending_list_addr() { |
|
2010 |
instanceKlass* ik = instanceKlass::cast(SystemDictionary::reference_klass()); |
|
2011 |
return (oop *)(((char *)ik->start_of_static_fields()) + static_pending_offset); |
|
2012 |
} |
|
2013 |
||
2014 |
||
2015 |
// Support for java_lang_ref_SoftReference |
|
2016 |
||
2017 |
jlong java_lang_ref_SoftReference::timestamp(oop ref) { |
|
2018 |
return ref->long_field(timestamp_offset); |
|
2019 |
} |
|
2020 |
||
2021 |
jlong java_lang_ref_SoftReference::clock() { |
|
2022 |
instanceKlass* ik = instanceKlass::cast(SystemDictionary::soft_reference_klass()); |
|
2023 |
int offset = ik->offset_of_static_fields() + static_clock_offset; |
|
2024 |
||
2025 |
return SystemDictionary::soft_reference_klass()->long_field(offset); |
|
2026 |
} |
|
2027 |
||
2028 |
void java_lang_ref_SoftReference::set_clock(jlong value) { |
|
2029 |
instanceKlass* ik = instanceKlass::cast(SystemDictionary::soft_reference_klass()); |
|
2030 |
int offset = ik->offset_of_static_fields() + static_clock_offset; |
|
2031 |
||
2032 |
SystemDictionary::soft_reference_klass()->long_field_put(offset, value); |
|
2033 |
} |
|
2034 |
||
2035 |
||
2036 |
// Support for java_security_AccessControlContext |
|
2037 |
||
2038 |
int java_security_AccessControlContext::_context_offset = 0; |
|
2039 |
int java_security_AccessControlContext::_privilegedContext_offset = 0; |
|
2040 |
int java_security_AccessControlContext::_isPrivileged_offset = 0; |
|
2041 |
||
2042 |
||
2043 |
void java_security_AccessControlContext::compute_offsets() { |
|
2044 |
assert(_isPrivileged_offset == 0, "offsets should be initialized only once"); |
|
2045 |
fieldDescriptor fd; |
|
2046 |
instanceKlass* ik = instanceKlass::cast(SystemDictionary::AccessControlContext_klass()); |
|
2047 |
||
2048 |
if (!ik->find_local_field(vmSymbols::context_name(), vmSymbols::protectiondomain_signature(), &fd)) { |
|
2049 |
fatal("Invalid layout of java.security.AccessControlContext"); |
|
2050 |
} |
|
2051 |
_context_offset = fd.offset(); |
|
2052 |
||
2053 |
if (!ik->find_local_field(vmSymbols::privilegedContext_name(), vmSymbols::accesscontrolcontext_signature(), &fd)) { |
|
2054 |
fatal("Invalid layout of java.security.AccessControlContext"); |
|
2055 |
} |
|
2056 |
_privilegedContext_offset = fd.offset(); |
|
2057 |
||
2058 |
if (!ik->find_local_field(vmSymbols::isPrivileged_name(), vmSymbols::bool_signature(), &fd)) { |
|
2059 |
fatal("Invalid layout of java.security.AccessControlContext"); |
|
2060 |
} |
|
2061 |
_isPrivileged_offset = fd.offset(); |
|
2062 |
} |
|
2063 |
||
2064 |
||
2065 |
oop java_security_AccessControlContext::create(objArrayHandle context, bool isPrivileged, Handle privileged_context, TRAPS) { |
|
2066 |
assert(_isPrivileged_offset != 0, "offsets should have been initialized"); |
|
2067 |
// Ensure klass is initialized |
|
2068 |
instanceKlass::cast(SystemDictionary::AccessControlContext_klass())->initialize(CHECK_0); |
|
2069 |
// Allocate result |
|
2070 |
oop result = instanceKlass::cast(SystemDictionary::AccessControlContext_klass())->allocate_instance(CHECK_0); |
|
2071 |
// Fill in values |
|
2072 |
result->obj_field_put(_context_offset, context()); |
|
2073 |
result->obj_field_put(_privilegedContext_offset, privileged_context()); |
|
2074 |
result->bool_field_put(_isPrivileged_offset, isPrivileged); |
|
2075 |
return result; |
|
2076 |
} |
|
2077 |
||
2078 |
||
2079 |
// Support for java_lang_ClassLoader |
|
2080 |
||
2081 |
oop java_lang_ClassLoader::parent(oop loader) { |
|
2082 |
assert(loader->is_oop(), "loader must be oop"); |
|
2083 |
return loader->obj_field(parent_offset); |
|
2084 |
} |
|
2085 |
||
2086 |
||
2087 |
bool java_lang_ClassLoader::is_trusted_loader(oop loader) { |
|
2088 |
// Fix for 4474172; see evaluation for more details |
|
2089 |
loader = non_reflection_class_loader(loader); |
|
2090 |
||
2091 |
oop cl = SystemDictionary::java_system_loader(); |
|
2092 |
while(cl != NULL) { |
|
2093 |
if (cl == loader) return true; |
|
2094 |
cl = parent(cl); |
|
2095 |
} |
|
2096 |
return false; |
|
2097 |
} |
|
2098 |
||
2099 |
oop java_lang_ClassLoader::non_reflection_class_loader(oop loader) { |
|
2100 |
if (loader != NULL) { |
|
2101 |
// See whether this is one of the class loaders associated with |
|
2102 |
// the generated bytecodes for reflection, and if so, "magically" |
|
2103 |
// delegate to its parent to prevent class loading from occurring |
|
2104 |
// in places where applications using reflection didn't expect it. |
|
2105 |
klassOop delegating_cl_class = SystemDictionary::reflect_delegating_classloader_klass(); |
|
2106 |
// This might be null in non-1.4 JDKs |
|
2107 |
if (delegating_cl_class != NULL && loader->is_a(delegating_cl_class)) { |
|
2108 |
return parent(loader); |
|
2109 |
} |
|
2110 |
} |
|
2111 |
return loader; |
|
2112 |
} |
|
2113 |
||
2114 |
||
2115 |
// Support for java_lang_System |
|
2116 |
||
2117 |
void java_lang_System::compute_offsets() { |
|
2118 |
assert(offset_of_static_fields == 0, "offsets should be initialized only once"); |
|
2119 |
||
2120 |
instanceKlass* ik = instanceKlass::cast(SystemDictionary::system_klass()); |
|
2121 |
offset_of_static_fields = ik->offset_of_static_fields(); |
|
2122 |
} |
|
2123 |
||
2124 |
int java_lang_System::in_offset_in_bytes() { |
|
2125 |
return (offset_of_static_fields + static_in_offset); |
|
2126 |
} |
|
2127 |
||
2128 |
||
2129 |
int java_lang_System::out_offset_in_bytes() { |
|
2130 |
return (offset_of_static_fields + static_out_offset); |
|
2131 |
} |
|
2132 |
||
2133 |
||
2134 |
int java_lang_System::err_offset_in_bytes() { |
|
2135 |
return (offset_of_static_fields + static_err_offset); |
|
2136 |
} |
|
2137 |
||
2138 |
||
2139 |
||
2140 |
int java_lang_String::value_offset; |
|
2141 |
int java_lang_String::offset_offset; |
|
2142 |
int java_lang_String::count_offset; |
|
2143 |
int java_lang_String::hash_offset; |
|
2144 |
int java_lang_Class::klass_offset; |
|
2145 |
int java_lang_Class::array_klass_offset; |
|
2146 |
int java_lang_Class::resolved_constructor_offset; |
|
2147 |
int java_lang_Class::number_of_fake_oop_fields; |
|
2148 |
int java_lang_Throwable::backtrace_offset; |
|
2149 |
int java_lang_Throwable::detailMessage_offset; |
|
2150 |
int java_lang_Throwable::cause_offset; |
|
2151 |
int java_lang_Throwable::stackTrace_offset; |
|
2152 |
int java_lang_reflect_AccessibleObject::override_offset; |
|
2153 |
int java_lang_reflect_Method::clazz_offset; |
|
2154 |
int java_lang_reflect_Method::name_offset; |
|
2155 |
int java_lang_reflect_Method::returnType_offset; |
|
2156 |
int java_lang_reflect_Method::parameterTypes_offset; |
|
2157 |
int java_lang_reflect_Method::exceptionTypes_offset; |
|
2158 |
int java_lang_reflect_Method::slot_offset; |
|
2159 |
int java_lang_reflect_Method::modifiers_offset; |
|
2160 |
int java_lang_reflect_Method::signature_offset; |
|
2161 |
int java_lang_reflect_Method::annotations_offset; |
|
2162 |
int java_lang_reflect_Method::parameter_annotations_offset; |
|
2163 |
int java_lang_reflect_Method::annotation_default_offset; |
|
2164 |
int java_lang_reflect_Constructor::clazz_offset; |
|
2165 |
int java_lang_reflect_Constructor::parameterTypes_offset; |
|
2166 |
int java_lang_reflect_Constructor::exceptionTypes_offset; |
|
2167 |
int java_lang_reflect_Constructor::slot_offset; |
|
2168 |
int java_lang_reflect_Constructor::modifiers_offset; |
|
2169 |
int java_lang_reflect_Constructor::signature_offset; |
|
2170 |
int java_lang_reflect_Constructor::annotations_offset; |
|
2171 |
int java_lang_reflect_Constructor::parameter_annotations_offset; |
|
2172 |
int java_lang_reflect_Field::clazz_offset; |
|
2173 |
int java_lang_reflect_Field::name_offset; |
|
2174 |
int java_lang_reflect_Field::type_offset; |
|
2175 |
int java_lang_reflect_Field::slot_offset; |
|
2176 |
int java_lang_reflect_Field::modifiers_offset; |
|
2177 |
int java_lang_reflect_Field::signature_offset; |
|
2178 |
int java_lang_reflect_Field::annotations_offset; |
|
2179 |
int java_lang_boxing_object::value_offset; |
|
2180 |
int java_lang_ref_Reference::referent_offset; |
|
2181 |
int java_lang_ref_Reference::queue_offset; |
|
2182 |
int java_lang_ref_Reference::next_offset; |
|
2183 |
int java_lang_ref_Reference::discovered_offset; |
|
2184 |
int java_lang_ref_Reference::static_lock_offset; |
|
2185 |
int java_lang_ref_Reference::static_pending_offset; |
|
2186 |
int java_lang_ref_Reference::number_of_fake_oop_fields; |
|
2187 |
int java_lang_ref_SoftReference::timestamp_offset; |
|
2188 |
int java_lang_ref_SoftReference::static_clock_offset; |
|
2189 |
int java_lang_ClassLoader::parent_offset; |
|
2190 |
int java_lang_System::offset_of_static_fields; |
|
2191 |
int java_lang_System::static_in_offset; |
|
2192 |
int java_lang_System::static_out_offset; |
|
2193 |
int java_lang_System::static_err_offset; |
|
2194 |
int java_lang_StackTraceElement::declaringClass_offset; |
|
2195 |
int java_lang_StackTraceElement::methodName_offset; |
|
2196 |
int java_lang_StackTraceElement::fileName_offset; |
|
2197 |
int java_lang_StackTraceElement::lineNumber_offset; |
|
2198 |
int java_lang_AssertionStatusDirectives::classes_offset; |
|
2199 |
int java_lang_AssertionStatusDirectives::classEnabled_offset; |
|
2200 |
int java_lang_AssertionStatusDirectives::packages_offset; |
|
2201 |
int java_lang_AssertionStatusDirectives::packageEnabled_offset; |
|
2202 |
int java_lang_AssertionStatusDirectives::deflt_offset; |
|
2203 |
int java_nio_Buffer::_limit_offset; |
|
2204 |
int sun_misc_AtomicLongCSImpl::_value_offset; |
|
2205 |
int java_util_concurrent_locks_AbstractOwnableSynchronizer::_owner_offset = 0; |
|
2206 |
int sun_reflect_ConstantPool::_cp_oop_offset; |
|
2207 |
int sun_reflect_UnsafeStaticFieldAccessorImpl::_base_offset; |
|
2208 |
||
2209 |
||
2210 |
// Support for java_lang_StackTraceElement |
|
2211 |
||
2212 |
void java_lang_StackTraceElement::set_fileName(oop element, oop value) { |
|
2213 |
element->obj_field_put(fileName_offset, value); |
|
2214 |
} |
|
2215 |
||
2216 |
void java_lang_StackTraceElement::set_declaringClass(oop element, oop value) { |
|
2217 |
element->obj_field_put(declaringClass_offset, value); |
|
2218 |
} |
|
2219 |
||
2220 |
void java_lang_StackTraceElement::set_methodName(oop element, oop value) { |
|
2221 |
element->obj_field_put(methodName_offset, value); |
|
2222 |
} |
|
2223 |
||
2224 |
void java_lang_StackTraceElement::set_lineNumber(oop element, int value) { |
|
2225 |
element->int_field_put(lineNumber_offset, value); |
|
2226 |
} |
|
2227 |
||
2228 |
||
2229 |
// Support for java Assertions - java_lang_AssertionStatusDirectives. |
|
2230 |
||
2231 |
void java_lang_AssertionStatusDirectives::set_classes(oop o, oop val) { |
|
2232 |
o->obj_field_put(classes_offset, val); |
|
2233 |
} |
|
2234 |
||
2235 |
void java_lang_AssertionStatusDirectives::set_classEnabled(oop o, oop val) { |
|
2236 |
o->obj_field_put(classEnabled_offset, val); |
|
2237 |
} |
|
2238 |
||
2239 |
void java_lang_AssertionStatusDirectives::set_packages(oop o, oop val) { |
|
2240 |
o->obj_field_put(packages_offset, val); |
|
2241 |
} |
|
2242 |
||
2243 |
void java_lang_AssertionStatusDirectives::set_packageEnabled(oop o, oop val) { |
|
2244 |
o->obj_field_put(packageEnabled_offset, val); |
|
2245 |
} |
|
2246 |
||
2247 |
void java_lang_AssertionStatusDirectives::set_deflt(oop o, bool val) { |
|
2248 |
o->bool_field_put(deflt_offset, val); |
|
2249 |
} |
|
2250 |
||
2251 |
||
2252 |
// Support for intrinsification of java.nio.Buffer.checkIndex |
|
2253 |
int java_nio_Buffer::limit_offset() { |
|
2254 |
return _limit_offset; |
|
2255 |
} |
|
2256 |
||
2257 |
||
2258 |
void java_nio_Buffer::compute_offsets() { |
|
2259 |
klassOop k = SystemDictionary::java_nio_Buffer_klass(); |
|
2260 |
COMPUTE_OFFSET("java.nio.Buffer", _limit_offset, k, vmSymbols::limit_name(), vmSymbols::int_signature()); |
|
2261 |
} |
|
2262 |
||
2263 |
// Support for intrinsification of sun.misc.AtomicLongCSImpl.attemptUpdate |
|
2264 |
int sun_misc_AtomicLongCSImpl::value_offset() { |
|
2265 |
assert(SystemDictionary::sun_misc_AtomicLongCSImpl_klass() != NULL, "can't call this"); |
|
2266 |
return _value_offset; |
|
2267 |
} |
|
2268 |
||
2269 |
||
2270 |
void sun_misc_AtomicLongCSImpl::compute_offsets() { |
|
2271 |
klassOop k = SystemDictionary::sun_misc_AtomicLongCSImpl_klass(); |
|
2272 |
// If this class is not present, its value field offset won't be referenced. |
|
2273 |
if (k != NULL) { |
|
2274 |
COMPUTE_OFFSET("sun.misc.AtomicLongCSImpl", _value_offset, k, vmSymbols::value_name(), vmSymbols::long_signature()); |
|
2275 |
} |
|
2276 |
} |
|
2277 |
||
2278 |
void java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(TRAPS) { |
|
2279 |
if (_owner_offset != 0) return; |
|
2280 |
||
2281 |
assert(JDK_Version::is_gte_jdk16x_version(), "Must be JDK 1.6 or later"); |
|
2282 |
SystemDictionary::load_abstract_ownable_synchronizer_klass(CHECK); |
|
2283 |
klassOop k = SystemDictionary::abstract_ownable_synchronizer_klass(); |
|
2284 |
COMPUTE_OFFSET("java.util.concurrent.locks.AbstractOwnableSynchronizer", _owner_offset, k, |
|
2285 |
vmSymbols::exclusive_owner_thread_name(), vmSymbols::thread_signature()); |
|
2286 |
} |
|
2287 |
||
2288 |
oop java_util_concurrent_locks_AbstractOwnableSynchronizer::get_owner_threadObj(oop obj) { |
|
2289 |
assert(_owner_offset != 0, "Must be initialized"); |
|
2290 |
return obj->obj_field(_owner_offset); |
|
2291 |
} |
|
2292 |
||
2293 |
// Compute hard-coded offsets |
|
2294 |
// Invoked before SystemDictionary::initialize, so pre-loaded classes |
|
2295 |
// are not available to determine the offset_of_static_fields. |
|
2296 |
void JavaClasses::compute_hard_coded_offsets() { |
|
2297 |
const int x = wordSize; |
|
2298 |
const int header = instanceOopDesc::header_size_in_bytes(); |
|
2299 |
||
2300 |
// Do the String Class |
|
2301 |
java_lang_String::value_offset = java_lang_String::hc_value_offset * x + header; |
|
2302 |
java_lang_String::offset_offset = java_lang_String::hc_offset_offset * x + header; |
|
2303 |
java_lang_String::count_offset = java_lang_String::offset_offset + sizeof (jint); |
|
2304 |
java_lang_String::hash_offset = java_lang_String::count_offset + sizeof (jint); |
|
2305 |
||
2306 |
// Do the Class Class |
|
2307 |
java_lang_Class::klass_offset = java_lang_Class::hc_klass_offset * x + header; |
|
2308 |
java_lang_Class::array_klass_offset = java_lang_Class::hc_array_klass_offset * x + header; |
|
2309 |
java_lang_Class::resolved_constructor_offset = java_lang_Class::hc_resolved_constructor_offset * x + header; |
|
2310 |
||
2311 |
// This is NOT an offset |
|
2312 |
java_lang_Class::number_of_fake_oop_fields = java_lang_Class::hc_number_of_fake_oop_fields; |
|
2313 |
||
2314 |
// Throwable Class |
|
2315 |
java_lang_Throwable::backtrace_offset = java_lang_Throwable::hc_backtrace_offset * x + header; |
|
2316 |
java_lang_Throwable::detailMessage_offset = java_lang_Throwable::hc_detailMessage_offset * x + header; |
|
2317 |
java_lang_Throwable::cause_offset = java_lang_Throwable::hc_cause_offset * x + header; |
|
2318 |
java_lang_Throwable::stackTrace_offset = java_lang_Throwable::hc_stackTrace_offset * x + header; |
|
2319 |
||
2320 |
// java_lang_boxing_object |
|
2321 |
java_lang_boxing_object::value_offset = java_lang_boxing_object::hc_value_offset * x + header; |
|
2322 |
||
2323 |
// java_lang_ref_Reference: |
|
2324 |
java_lang_ref_Reference::referent_offset = java_lang_ref_Reference::hc_referent_offset * x + header; |
|
2325 |
java_lang_ref_Reference::queue_offset = java_lang_ref_Reference::hc_queue_offset * x + header; |
|
2326 |
java_lang_ref_Reference::next_offset = java_lang_ref_Reference::hc_next_offset * x + header; |
|
2327 |
java_lang_ref_Reference::discovered_offset = java_lang_ref_Reference::hc_discovered_offset * x + header; |
|
2328 |
java_lang_ref_Reference::static_lock_offset = java_lang_ref_Reference::hc_static_lock_offset * x; |
|
2329 |
java_lang_ref_Reference::static_pending_offset = java_lang_ref_Reference::hc_static_pending_offset * x; |
|
2330 |
// Artificial fields for java_lang_ref_Reference |
|
2331 |
// The first field is for the discovered field added in 1.4 |
|
2332 |
java_lang_ref_Reference::number_of_fake_oop_fields = 1; |
|
2333 |
||
2334 |
// java_lang_ref_SoftReference Class |
|
2335 |
java_lang_ref_SoftReference::timestamp_offset = java_lang_ref_SoftReference::hc_timestamp_offset * x + header; |
|
2336 |
// Don't multiply static fields because they are always in wordSize units |
|
2337 |
java_lang_ref_SoftReference::static_clock_offset = java_lang_ref_SoftReference::hc_static_clock_offset * x; |
|
2338 |
||
2339 |
// java_lang_ClassLoader |
|
2340 |
java_lang_ClassLoader::parent_offset = java_lang_ClassLoader::hc_parent_offset * x + header; |
|
2341 |
||
2342 |
// java_lang_System |
|
2343 |
java_lang_System::static_in_offset = java_lang_System::hc_static_in_offset * x; |
|
2344 |
java_lang_System::static_out_offset = java_lang_System::hc_static_out_offset * x; |
|
2345 |
java_lang_System::static_err_offset = java_lang_System::hc_static_err_offset * x; |
|
2346 |
||
2347 |
// java_lang_StackTraceElement |
|
2348 |
java_lang_StackTraceElement::declaringClass_offset = java_lang_StackTraceElement::hc_declaringClass_offset * x + header; |
|
2349 |
java_lang_StackTraceElement::methodName_offset = java_lang_StackTraceElement::hc_methodName_offset * x + header; |
|
2350 |
java_lang_StackTraceElement::fileName_offset = java_lang_StackTraceElement::hc_fileName_offset * x + header; |
|
2351 |
java_lang_StackTraceElement::lineNumber_offset = java_lang_StackTraceElement::hc_lineNumber_offset * x + header; |
|
2352 |
java_lang_AssertionStatusDirectives::classes_offset = java_lang_AssertionStatusDirectives::hc_classes_offset * x + header; |
|
2353 |
java_lang_AssertionStatusDirectives::classEnabled_offset = java_lang_AssertionStatusDirectives::hc_classEnabled_offset * x + header; |
|
2354 |
java_lang_AssertionStatusDirectives::packages_offset = java_lang_AssertionStatusDirectives::hc_packages_offset * x + header; |
|
2355 |
java_lang_AssertionStatusDirectives::packageEnabled_offset = java_lang_AssertionStatusDirectives::hc_packageEnabled_offset * x + header; |
|
2356 |
java_lang_AssertionStatusDirectives::deflt_offset = java_lang_AssertionStatusDirectives::hc_deflt_offset * x + header; |
|
2357 |
||
2358 |
} |
|
2359 |
||
2360 |
||
2361 |
// Compute non-hard-coded field offsets of all the classes in this file |
|
2362 |
void JavaClasses::compute_offsets() { |
|
2363 |
||
2364 |
java_lang_Class::compute_offsets(); |
|
2365 |
java_lang_System::compute_offsets(); |
|
2366 |
java_lang_Thread::compute_offsets(); |
|
2367 |
java_lang_ThreadGroup::compute_offsets(); |
|
2368 |
java_security_AccessControlContext::compute_offsets(); |
|
2369 |
// Initialize reflection classes. The layouts of these classes |
|
2370 |
// changed with the new reflection implementation in JDK 1.4, and |
|
2371 |
// since the Universe doesn't know what JDK version it is until this |
|
2372 |
// point we defer computation of these offsets until now. |
|
2373 |
java_lang_reflect_AccessibleObject::compute_offsets(); |
|
2374 |
java_lang_reflect_Method::compute_offsets(); |
|
2375 |
java_lang_reflect_Constructor::compute_offsets(); |
|
2376 |
java_lang_reflect_Field::compute_offsets(); |
|
2377 |
if (JDK_Version::is_gte_jdk14x_version()) { |
|
2378 |
java_nio_Buffer::compute_offsets(); |
|
2379 |
} |
|
2380 |
if (JDK_Version::is_gte_jdk15x_version()) { |
|
2381 |
sun_reflect_ConstantPool::compute_offsets(); |
|
2382 |
sun_reflect_UnsafeStaticFieldAccessorImpl::compute_offsets(); |
|
2383 |
} |
|
2384 |
sun_misc_AtomicLongCSImpl::compute_offsets(); |
|
2385 |
} |
|
2386 |
||
2387 |
#ifndef PRODUCT |
|
2388 |
||
2389 |
// These functions exist to assert the validity of hard-coded field offsets to guard |
|
2390 |
// against changes in the class files |
|
2391 |
||
2392 |
bool JavaClasses::check_offset(const char *klass_name, int hardcoded_offset, const char *field_name, const char* field_sig) { |
|
2393 |
EXCEPTION_MARK; |
|
2394 |
fieldDescriptor fd; |
|
2395 |
symbolHandle klass_sym = oopFactory::new_symbol_handle(klass_name, CATCH); |
|
2396 |
klassOop k = SystemDictionary::resolve_or_fail(klass_sym, true, CATCH); |
|
2397 |
instanceKlassHandle h_klass (THREAD, k); |
|
2398 |
//instanceKlassHandle h_klass(klass); |
|
2399 |
symbolHandle f_name = oopFactory::new_symbol_handle(field_name, CATCH); |
|
2400 |
symbolHandle f_sig = oopFactory::new_symbol_handle(field_sig, CATCH); |
|
2401 |
if (!h_klass->find_local_field(f_name(), f_sig(), &fd)) { |
|
2402 |
tty->print_cr("Nonstatic field %s.%s not found", klass_name, field_name); |
|
2403 |
return false; |
|
2404 |
} |
|
2405 |
if (fd.is_static()) { |
|
2406 |
tty->print_cr("Nonstatic field %s.%s appears to be static", klass_name, field_name); |
|
2407 |
return false; |
|
2408 |
} |
|
2409 |
if (fd.offset() == hardcoded_offset ) { |
|
2410 |
return true; |
|
2411 |
} else { |
|
2412 |
tty->print_cr("Offset of nonstatic field %s.%s is hardcoded as %d but should really be %d.", |
|
2413 |
klass_name, field_name, hardcoded_offset, fd.offset()); |
|
2414 |
return false; |
|
2415 |
} |
|
2416 |
} |
|
2417 |
||
2418 |
||
2419 |
bool JavaClasses::check_static_offset(const char *klass_name, int hardcoded_offset, const char *field_name, const char* field_sig) { |
|
2420 |
EXCEPTION_MARK; |
|
2421 |
fieldDescriptor fd; |
|
2422 |
symbolHandle klass_sym = oopFactory::new_symbol_handle(klass_name, CATCH); |
|
2423 |
klassOop k = SystemDictionary::resolve_or_fail(klass_sym, true, CATCH); |
|
2424 |
instanceKlassHandle h_klass (THREAD, k); |
|
2425 |
symbolHandle f_name = oopFactory::new_symbol_handle(field_name, CATCH); |
|
2426 |
symbolHandle f_sig = oopFactory::new_symbol_handle(field_sig, CATCH); |
|
2427 |
if (!h_klass->find_local_field(f_name(), f_sig(), &fd)) { |
|
2428 |
tty->print_cr("Static field %s.%s not found", klass_name, field_name); |
|
2429 |
return false; |
|
2430 |
} |
|
2431 |
if (!fd.is_static()) { |
|
2432 |
tty->print_cr("Static field %s.%s appears to be nonstatic", klass_name, field_name); |
|
2433 |
return false; |
|
2434 |
} |
|
2435 |
if (fd.offset() == hardcoded_offset + h_klass->offset_of_static_fields()) { |
|
2436 |
return true; |
|
2437 |
} else { |
|
2438 |
tty->print_cr("Offset of static field %s.%s is hardcoded as %d but should really be %d.", klass_name, field_name, hardcoded_offset, fd.offset() - h_klass->offset_of_static_fields()); |
|
2439 |
return false; |
|
2440 |
} |
|
2441 |
} |
|
2442 |
||
2443 |
||
2444 |
// Check the hard-coded field offsets of all the classes in this file |
|
2445 |
||
2446 |
void JavaClasses::check_offsets() { |
|
2447 |
bool valid = true; |
|
2448 |
||
2449 |
#define CHECK_OFFSET(klass_name, cpp_klass_name, field_name, field_sig) \ |
|
2450 |
valid &= check_offset(klass_name, cpp_klass_name :: field_name ## _offset, #field_name, field_sig) |
|
2451 |
||
2452 |
#define CHECK_STATIC_OFFSET(klass_name, cpp_klass_name, field_name, field_sig) \ |
|
2453 |
valid &= check_static_offset(klass_name, cpp_klass_name :: static_ ## field_name ## _offset, #field_name, field_sig) |
|
2454 |
||
2455 |
// java.lang.String |
|
2456 |
||
2457 |
CHECK_OFFSET("java/lang/String", java_lang_String, value, "[C"); |
|
2458 |
CHECK_OFFSET("java/lang/String", java_lang_String, offset, "I"); |
|
2459 |
CHECK_OFFSET("java/lang/String", java_lang_String, count, "I"); |
|
2460 |
CHECK_OFFSET("java/lang/String", java_lang_String, hash, "I"); |
|
2461 |
||
2462 |
// java.lang.Class |
|
2463 |
||
2464 |
// Fake fields |
|
2465 |
// CHECK_OFFSET("java/lang/Class", java_lang_Class, klass); // %%% this needs to be checked |
|
2466 |
// CHECK_OFFSET("java/lang/Class", java_lang_Class, array_klass); // %%% this needs to be checked |
|
2467 |
// CHECK_OFFSET("java/lang/Class", java_lang_Class, resolved_constructor); // %%% this needs to be checked |
|
2468 |
||
2469 |
// java.lang.Throwable |
|
2470 |
||
2471 |
CHECK_OFFSET("java/lang/Throwable", java_lang_Throwable, backtrace, "Ljava/lang/Object;"); |
|
2472 |
CHECK_OFFSET("java/lang/Throwable", java_lang_Throwable, detailMessage, "Ljava/lang/String;"); |
|
2473 |
CHECK_OFFSET("java/lang/Throwable", java_lang_Throwable, cause, "Ljava/lang/Throwable;"); |
|
2474 |
CHECK_OFFSET("java/lang/Throwable", java_lang_Throwable, stackTrace, "[Ljava/lang/StackTraceElement;"); |
|
2475 |
||
2476 |
// Boxed primitive objects (java_lang_boxing_object) |
|
2477 |
||
2478 |
CHECK_OFFSET("java/lang/Boolean", java_lang_boxing_object, value, "Z"); |
|
2479 |
CHECK_OFFSET("java/lang/Character", java_lang_boxing_object, value, "C"); |
|
2480 |
CHECK_OFFSET("java/lang/Float", java_lang_boxing_object, value, "F"); |
|
2481 |
CHECK_OFFSET("java/lang/Double", java_lang_boxing_object, value, "D"); |
|
2482 |
CHECK_OFFSET("java/lang/Byte", java_lang_boxing_object, value, "B"); |
|
2483 |
CHECK_OFFSET("java/lang/Short", java_lang_boxing_object, value, "S"); |
|
2484 |
CHECK_OFFSET("java/lang/Integer", java_lang_boxing_object, value, "I"); |
|
2485 |
CHECK_OFFSET("java/lang/Long", java_lang_boxing_object, value, "J"); |
|
2486 |
||
2487 |
// java.lang.ClassLoader |
|
2488 |
||
2489 |
CHECK_OFFSET("java/lang/ClassLoader", java_lang_ClassLoader, parent, "Ljava/lang/ClassLoader;"); |
|
2490 |
||
2491 |
// java.lang.System |
|
2492 |
||
2493 |
CHECK_STATIC_OFFSET("java/lang/System", java_lang_System, in, "Ljava/io/InputStream;"); |
|
2494 |
CHECK_STATIC_OFFSET("java/lang/System", java_lang_System, out, "Ljava/io/PrintStream;"); |
|
2495 |
CHECK_STATIC_OFFSET("java/lang/System", java_lang_System, err, "Ljava/io/PrintStream;"); |
|
2496 |
||
2497 |
// java.lang.StackTraceElement |
|
2498 |
||
2499 |
CHECK_OFFSET("java/lang/StackTraceElement", java_lang_StackTraceElement, declaringClass, "Ljava/lang/String;"); |
|
2500 |
CHECK_OFFSET("java/lang/StackTraceElement", java_lang_StackTraceElement, methodName, "Ljava/lang/String;"); |
|
2501 |
CHECK_OFFSET("java/lang/StackTraceElement", java_lang_StackTraceElement, fileName, "Ljava/lang/String;"); |
|
2502 |
CHECK_OFFSET("java/lang/StackTraceElement", java_lang_StackTraceElement, lineNumber, "I"); |
|
2503 |
||
2504 |
// java.lang.ref.Reference |
|
2505 |
||
2506 |
CHECK_OFFSET("java/lang/ref/Reference", java_lang_ref_Reference, referent, "Ljava/lang/Object;"); |
|
2507 |
CHECK_OFFSET("java/lang/ref/Reference", java_lang_ref_Reference, queue, "Ljava/lang/ref/ReferenceQueue;"); |
|
2508 |
CHECK_OFFSET("java/lang/ref/Reference", java_lang_ref_Reference, next, "Ljava/lang/ref/Reference;"); |
|
2509 |
// Fake field |
|
2510 |
//CHECK_OFFSET("java/lang/ref/Reference", java_lang_ref_Reference, discovered, "Ljava/lang/ref/Reference;"); |
|
2511 |
CHECK_STATIC_OFFSET("java/lang/ref/Reference", java_lang_ref_Reference, lock, "Ljava/lang/ref/Reference$Lock;"); |
|
2512 |
CHECK_STATIC_OFFSET("java/lang/ref/Reference", java_lang_ref_Reference, pending, "Ljava/lang/ref/Reference;"); |
|
2513 |
||
2514 |
// java.lang.ref.SoftReference |
|
2515 |
||
2516 |
CHECK_OFFSET("java/lang/ref/SoftReference", java_lang_ref_SoftReference, timestamp, "J"); |
|
2517 |
CHECK_STATIC_OFFSET("java/lang/ref/SoftReference", java_lang_ref_SoftReference, clock, "J"); |
|
2518 |
||
2519 |
// java.lang.AssertionStatusDirectives |
|
2520 |
// |
|
2521 |
// The CheckAssertionStatusDirectives boolean can be removed from here and |
|
2522 |
// globals.hpp after the AssertionStatusDirectives class has been integrated |
|
2523 |
// into merlin "for some time." Without it, the vm will fail with early |
|
2524 |
// merlin builds. |
|
2525 |
||
2526 |
if (CheckAssertionStatusDirectives && JDK_Version::is_gte_jdk14x_version()) { |
|
2527 |
const char* nm = "java/lang/AssertionStatusDirectives"; |
|
2528 |
const char* sig = "[Ljava/lang/String;"; |
|
2529 |
CHECK_OFFSET(nm, java_lang_AssertionStatusDirectives, classes, sig); |
|
2530 |
CHECK_OFFSET(nm, java_lang_AssertionStatusDirectives, classEnabled, "[Z"); |
|
2531 |
CHECK_OFFSET(nm, java_lang_AssertionStatusDirectives, packages, sig); |
|
2532 |
CHECK_OFFSET(nm, java_lang_AssertionStatusDirectives, packageEnabled, "[Z"); |
|
2533 |
CHECK_OFFSET(nm, java_lang_AssertionStatusDirectives, deflt, "Z"); |
|
2534 |
} |
|
2535 |
||
2536 |
if (!valid) vm_exit_during_initialization("Hard-coded field offset verification failed"); |
|
2537 |
} |
|
2538 |
||
2539 |
#endif // PRODUCT |
|
2540 |
||
2541 |
void javaClasses_init() { |
|
2542 |
JavaClasses::compute_offsets(); |
|
2543 |
JavaClasses::check_offsets(); |
|
2544 |
FilteredFieldsMap::initialize(); // must be done after computing offsets. |
|
2545 |
} |