annotate src/share/vm/runtime/reflection.cpp @ 24234:ea6f94ab283b default tip

Added tag jvmci-0.36 for changeset 8128b98d4736
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Mon, 18 Sep 2017 18:49:45 +0200
parents b5f3a471e646
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 23007
diff changeset
2 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1152
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1152
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1152
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "classfile/javaClasses.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "classfile/symbolTable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "classfile/verifier.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "classfile/vmSymbols.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "interpreter/linkResolver.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "memory/oopFactory.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "memory/universe.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #include "oops/objArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37 #include "oops/objArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38 #include "prims/jvm.h"
23007
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
39 #include "prims/jvmtiExport.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
40 #include "runtime/arguments.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
41 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
42 #include "runtime/javaCalls.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
43 #include "runtime/reflection.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
44 #include "runtime/reflectionUtils.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
45 #include "runtime/signature.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
46 #include "runtime/vframe.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
47
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
48 static void trace_class_resolution(Klass* to_class) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int line_number = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 const char * source_file = NULL;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
52 Klass* caller = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
53 JavaThread* jthread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
54 if (jthread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 vframeStream vfst(jthread);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // skip over any frames belonging to java.lang.Class
a61af66fc99e Initial load
duke
parents:
diff changeset
57 while (!vfst.at_end() &&
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6934
diff changeset
58 vfst.method()->method_holder()->name() == vmSymbols::java_lang_Class()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
59 vfst.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 if (!vfst.at_end()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // this frame is a likely suspect
a61af66fc99e Initial load
duke
parents:
diff changeset
63 caller = vfst.method()->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
64 line_number = vfst.method()->line_number_from_bci(vfst.bci());
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6934
diff changeset
65 Symbol* s = vfst.method()->method_holder()->source_file_name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66 if (s != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 source_file = s->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71 if (caller != NULL) {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
72 const char * from = caller->external_name();
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
73 const char * to = to_class->external_name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // print in a single call to reduce interleaving between threads
a61af66fc99e Initial load
duke
parents:
diff changeset
75 if (source_file != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 tty->print("RESOLVE %s %s %s:%d (reflection)\n", from, to, source_file, line_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 tty->print("RESOLVE %s %s (reflection)\n", from, to);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 oop Reflection::box(jvalue* value, BasicType type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (type == T_VOID) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 if (type == T_OBJECT || type == T_ARRAY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // regular objects are not boxed
a61af66fc99e Initial load
duke
parents:
diff changeset
90 return (oop) value->l;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92 oop result = java_lang_boxing_object::create(type, value, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 if (result == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 THROW_(vmSymbols::java_lang_IllegalArgumentException(), result);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 BasicType Reflection::unbox_for_primitive(oop box, jvalue* value, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 if (box == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 THROW_(vmSymbols::java_lang_IllegalArgumentException(), T_ILLEGAL);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 return java_lang_boxing_object::get_value(box, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 BasicType Reflection::unbox_for_regular_object(oop box, jvalue* value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // Note: box is really the unboxed oop. It might even be a Short, etc.!
a61af66fc99e Initial load
duke
parents:
diff changeset
109 value->l = (jobject) box;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 return T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 void Reflection::widen(jvalue* value, BasicType current_type, BasicType wide_type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 assert(wide_type != current_type, "widen should not be called with identical types");
a61af66fc99e Initial load
duke
parents:
diff changeset
116 switch (wide_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
118 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
119 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
120 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
121 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
122 switch (current_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
124 value->s = (jshort) value->b;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
128 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
129 switch (current_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
131 value->i = (jint) value->b;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
134 value->i = (jint) value->c;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
137 value->i = (jint) value->s;
a61af66fc99e Initial load
duke
parents:
diff changeset
138 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
141 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
142 switch (current_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
144 value->j = (jlong) value->b;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
147 value->j = (jlong) value->c;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
150 value->j = (jlong) value->s;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
153 value->j = (jlong) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
157 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
158 switch (current_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
160 value->f = (jfloat) value->b;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
163 value->f = (jfloat) value->c;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
166 value->f = (jfloat) value->s;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
168 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
169 value->f = (jfloat) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
172 value->f = (jfloat) value->j;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
176 case T_DOUBLE:
a61af66fc99e Initial load
duke
parents:
diff changeset
177 switch (current_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
179 value->d = (jdouble) value->b;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
182 value->d = (jdouble) value->c;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
185 value->d = (jdouble) value->s;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
188 value->d = (jdouble) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
190 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
191 value->d = (jdouble) value->f;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
194 value->d = (jdouble) value->j;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
198 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
199 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 BasicType Reflection::array_get(jvalue* value, arrayOop a, int index, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 if (!a->is_within_bounds(index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 THROW_(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), T_ILLEGAL);
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209 if (a->is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 value->l = (jobject) objArrayOop(a)->obj_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 return T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 assert(a->is_typeArray(), "just checking");
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
214 BasicType type = TypeArrayKlass::cast(a->klass())->element_type();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
215 switch (type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
217 value->z = typeArrayOop(a)->bool_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
220 value->c = typeArrayOop(a)->char_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
222 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
223 value->f = typeArrayOop(a)->float_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
224 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 case T_DOUBLE:
a61af66fc99e Initial load
duke
parents:
diff changeset
226 value->d = typeArrayOop(a)->double_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
227 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
229 value->b = typeArrayOop(a)->byte_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
230 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
231 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
232 value->s = typeArrayOop(a)->short_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
234 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
235 value->i = typeArrayOop(a)->int_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
238 value->j = typeArrayOop(a)->long_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
241 return T_ILLEGAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
243 return type;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 void Reflection::array_set(jvalue* value, arrayOop a, int index, BasicType value_type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 if (!a->is_within_bounds(index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException());
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252 if (a->is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 if (value_type == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 oop obj = (oop) value->l;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if (obj != NULL) {
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
256 Klass* element_klass = ObjArrayKlass::cast(a->klass())->element_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
257 if (!obj->is_a(element_klass)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
258 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "array element type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261 objArrayOop(a)->obj_at_put(index, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
264 assert(a->is_typeArray(), "just checking");
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
265 BasicType array_type = TypeArrayKlass::cast(a->klass())->element_type();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
266 if (array_type != value_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 // The widen operation can potentially throw an exception, but cannot block,
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // so typeArrayOop a is safe if the call succeeds.
a61af66fc99e Initial load
duke
parents:
diff changeset
269 widen(value, value_type, array_type, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
271 switch (array_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
273 typeArrayOop(a)->bool_at_put(index, value->z);
a61af66fc99e Initial load
duke
parents:
diff changeset
274 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
276 typeArrayOop(a)->char_at_put(index, value->c);
a61af66fc99e Initial load
duke
parents:
diff changeset
277 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
279 typeArrayOop(a)->float_at_put(index, value->f);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 case T_DOUBLE:
a61af66fc99e Initial load
duke
parents:
diff changeset
282 typeArrayOop(a)->double_at_put(index, value->d);
a61af66fc99e Initial load
duke
parents:
diff changeset
283 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
284 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
285 typeArrayOop(a)->byte_at_put(index, value->b);
a61af66fc99e Initial load
duke
parents:
diff changeset
286 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
287 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
288 typeArrayOop(a)->short_at_put(index, value->s);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
291 typeArrayOop(a)->int_at_put(index, value->i);
a61af66fc99e Initial load
duke
parents:
diff changeset
292 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
293 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
294 typeArrayOop(a)->long_at_put(index, value->j);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
296 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
297 THROW(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
303 Klass* Reflection::basic_type_mirror_to_arrayklass(oop basic_type_mirror, TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
304 assert(java_lang_Class::is_primitive(basic_type_mirror), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
305 BasicType type = java_lang_Class::primitive_type(basic_type_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 if (type == T_VOID) {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
308 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 return Universe::typeArrayKlassObj(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
310 }
a61af66fc99e Initial load
duke
parents:
diff changeset
311 }
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
314 oop Reflection:: basic_type_arrayklass_to_mirror(Klass* basic_type_arrayklass, TRAPS) {
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
315 BasicType type = TypeArrayKlass::cast(basic_type_arrayklass)->element_type();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
316 return Universe::java_mirror(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 arrayOop Reflection::reflect_new_array(oop element_mirror, jint length, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 if (element_mirror == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 THROW_0(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
323 }
a61af66fc99e Initial load
duke
parents:
diff changeset
324 if (length < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
325 THROW_0(vmSymbols::java_lang_NegativeArraySizeException());
a61af66fc99e Initial load
duke
parents:
diff changeset
326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
327 if (java_lang_Class::is_primitive(element_mirror)) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
328 Klass* tak = basic_type_mirror_to_arrayklass(element_mirror, CHECK_NULL);
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
329 return TypeArrayKlass::cast(tak)->allocate(length, THREAD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
330 } else {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
331 Klass* k = java_lang_Class::as_Klass(element_mirror);
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
332 if (k->oop_is_array() && ArrayKlass::cast(k)->dimension() >= MAX_DIM) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
333 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
335 return oopFactory::new_objArray(k, length, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 arrayOop Reflection::reflect_new_multi_array(oop element_mirror, typeArrayOop dim_array, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 assert(dim_array->is_typeArray(), "just checking");
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
342 assert(TypeArrayKlass::cast(dim_array->klass())->element_type() == T_INT, "just checking");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
343
a61af66fc99e Initial load
duke
parents:
diff changeset
344 if (element_mirror == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
345 THROW_0(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
346 }
a61af66fc99e Initial load
duke
parents:
diff changeset
347
a61af66fc99e Initial load
duke
parents:
diff changeset
348 int len = dim_array->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
349 if (len <= 0 || len > MAX_DIM) {
a61af66fc99e Initial load
duke
parents:
diff changeset
350 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353 jint dimensions[MAX_DIM]; // C array copy of intArrayOop
a61af66fc99e Initial load
duke
parents:
diff changeset
354 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
355 int d = dim_array->int_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
356 if (d < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
357 THROW_0(vmSymbols::java_lang_NegativeArraySizeException());
a61af66fc99e Initial load
duke
parents:
diff changeset
358 }
a61af66fc99e Initial load
duke
parents:
diff changeset
359 dimensions[i] = d;
a61af66fc99e Initial load
duke
parents:
diff changeset
360 }
a61af66fc99e Initial load
duke
parents:
diff changeset
361
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
362 Klass* klass;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
363 int dim = len;
a61af66fc99e Initial load
duke
parents:
diff changeset
364 if (java_lang_Class::is_primitive(element_mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 klass = basic_type_mirror_to_arrayklass(element_mirror, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
366 } else {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
367 klass = java_lang_Class::as_Klass(element_mirror);
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
368 if (klass->oop_is_array()) {
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
369 int k_dim = ArrayKlass::cast(klass)->dimension();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
370 if (k_dim + len > MAX_DIM) {
a61af66fc99e Initial load
duke
parents:
diff changeset
371 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
372 }
a61af66fc99e Initial load
duke
parents:
diff changeset
373 dim += k_dim;
a61af66fc99e Initial load
duke
parents:
diff changeset
374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 }
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
376 klass = klass->array_klass(dim, CHECK_NULL);
10379
efe8b7d64424 6726963: multi_allocate() call does not CHECK_NULL and causes crash in fastdebug bits
ctornqvi
parents: 10378
diff changeset
377 oop obj = ArrayKlass::cast(klass)->multi_allocate(len, dimensions, CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
378 assert(obj->is_array(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
379 return arrayOop(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
381
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 oop Reflection::array_component_type(oop mirror, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
384 if (java_lang_Class::is_primitive(mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
385 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
386 }
a61af66fc99e Initial load
duke
parents:
diff changeset
387
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
388 Klass* klass = java_lang_Class::as_Klass(mirror);
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
389 if (!klass->oop_is_array()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
390 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
392
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
393 oop result = ArrayKlass::cast(klass)->component_mirror();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
394 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
395 oop result2 = NULL;
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
396 if (ArrayKlass::cast(klass)->dimension() == 1) {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
397 if (klass->oop_is_typeArray()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
398 result2 = basic_type_arrayklass_to_mirror(klass, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
399 } else {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
400 result2 = ObjArrayKlass::cast(klass)->element_klass()->java_mirror();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
401 }
a61af66fc99e Initial load
duke
parents:
diff changeset
402 } else {
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
403 Klass* lower_dim = ArrayKlass::cast(klass)->lower_dimension();
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
404 assert(lower_dim->oop_is_array(), "just checking");
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
405 result2 = lower_dim->java_mirror();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
407 assert(result == result2, "results must be consistent");
a61af66fc99e Initial load
duke
parents:
diff changeset
408 #endif //ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
409 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
413 bool Reflection::reflect_check_access(Klass* field_class, AccessFlags acc, Klass* target_class, bool is_method_invoke, TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // field_class : declaring class
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // acc : declared field access
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // target_class : for protected
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // Check if field or method is accessible to client. Throw an
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // IllegalAccessException and return false if not.
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // The "client" is the class associated with the nearest real frame
a61af66fc99e Initial load
duke
parents:
diff changeset
422 // getCallerClass already skips Method.invoke frames, so pass 0 in
a61af66fc99e Initial load
duke
parents:
diff changeset
423 // that case (same as classic).
a61af66fc99e Initial load
duke
parents:
diff changeset
424 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
425 assert(THREAD->is_Java_thread(), "sanity check");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
426 Klass* client_class = ((JavaThread *)THREAD)->security_get_caller_class(is_method_invoke ? 0 : 1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 if (client_class != field_class) {
a61af66fc99e Initial load
duke
parents:
diff changeset
429 if (!verify_class_access(client_class, field_class, false)
a61af66fc99e Initial load
duke
parents:
diff changeset
430 || !verify_field_access(client_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
431 field_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
432 field_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
433 acc,
a61af66fc99e Initial load
duke
parents:
diff changeset
434 false)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 THROW_(vmSymbols::java_lang_IllegalAccessException(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
437 }
a61af66fc99e Initial load
duke
parents:
diff changeset
438
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // Additional test for protected members: JLS 6.6.2
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 if (acc.is_protected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
442 if (target_class != client_class) {
a61af66fc99e Initial load
duke
parents:
diff changeset
443 if (!is_same_class_package(client_class, field_class)) {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
444 if (!target_class->is_subclass_of(client_class)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
445 THROW_(vmSymbols::java_lang_IllegalAccessException(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447 }
a61af66fc99e Initial load
duke
parents:
diff changeset
448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // Passed all tests
a61af66fc99e Initial load
duke
parents:
diff changeset
452 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
453 }
a61af66fc99e Initial load
duke
parents:
diff changeset
454
a61af66fc99e Initial load
duke
parents:
diff changeset
455
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
456 bool Reflection::verify_class_access(Klass* current_class, Klass* new_class, bool classloader_only) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // Verify that current_class can access new_class. If the classloader_only
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // flag is set, we automatically allow any accesses in which current_class
a61af66fc99e Initial load
duke
parents:
diff changeset
459 // doesn't have a classloader.
a61af66fc99e Initial load
duke
parents:
diff changeset
460 if ((current_class == NULL) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
461 (current_class == new_class) ||
11081
c1bd7b5bdc70 8017571: JSR292: JVM crashing on assert "cast to instanceKlass" while producing MethodHandle for array methods with MethodHandle.findVirtual
twisti
parents: 10381
diff changeset
462 (new_class->is_public()) ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
463 is_same_class_package(current_class, new_class)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
464 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
465 }
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // New (1.4) reflection implementation. Allow all accesses from
a61af66fc99e Initial load
duke
parents:
diff changeset
467 // sun/reflect/MagicAccessorImpl subclasses to succeed trivially.
a61af66fc99e Initial load
duke
parents:
diff changeset
468 if ( JDK_Version::is_gte_jdk14x_version()
a61af66fc99e Initial load
duke
parents:
diff changeset
469 && UseNewReflection
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
470 && current_class->is_subclass_of(SystemDictionary::reflect_MagicAccessorImpl_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
471 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
473
a61af66fc99e Initial load
duke
parents:
diff changeset
474 return can_relax_access_check_for(current_class, new_class, classloader_only);
a61af66fc99e Initial load
duke
parents:
diff changeset
475 }
a61af66fc99e Initial load
duke
parents:
diff changeset
476
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
477 static bool under_host_klass(InstanceKlass* ik, Klass* host_klass) {
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
478 DEBUG_ONLY(int inf_loop_check = 1000 * 1000 * 1000);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
479 for (;;) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
480 Klass* hc = (Klass*) ik->host_klass();
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
481 if (hc == NULL) return false;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
482 if (hc == host_klass) return true;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
483 ik = InstanceKlass::cast(hc);
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
484
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
485 // There's no way to make a host class loop short of patching memory.
18052
2373a1f4987c 8036533: Method for correct defaults
hseigel
parents: 13430
diff changeset
486 // Therefore there cannot be a loop here unless there's another bug.
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
487 // Still, let's check for it.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
488 assert(--inf_loop_check > 0, "no host_klass loop");
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
489 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
490 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
491
0
a61af66fc99e Initial load
duke
parents:
diff changeset
492 bool Reflection::can_relax_access_check_for(
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
493 Klass* accessor, Klass* accessee, bool classloader_only) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
494 InstanceKlass* accessor_ik = InstanceKlass::cast(accessor);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
495 InstanceKlass* accessee_ik = InstanceKlass::cast(accessee);
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
496
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
497 // If either is on the other's host_klass chain, access is OK,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
498 // because one is inside the other.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
499 if (under_host_klass(accessor_ik, accessee) ||
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
500 under_host_klass(accessee_ik, accessor))
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
501 return true;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
502
10381
4552a7633a07 8015385: Remove RelaxAccessControlCheck for JDK 8 bytecodes
hseigel
parents: 10379
diff changeset
503 if ((RelaxAccessControlCheck &&
4552a7633a07 8015385: Remove RelaxAccessControlCheck for JDK 8 bytecodes
hseigel
parents: 10379
diff changeset
504 accessor_ik->major_version() < Verifier::NO_RELAX_ACCESS_CTRL_CHECK_VERSION &&
4552a7633a07 8015385: Remove RelaxAccessControlCheck for JDK 8 bytecodes
hseigel
parents: 10379
diff changeset
505 accessee_ik->major_version() < Verifier::NO_RELAX_ACCESS_CTRL_CHECK_VERSION) ||
4552a7633a07 8015385: Remove RelaxAccessControlCheck for JDK 8 bytecodes
hseigel
parents: 10379
diff changeset
506 (accessor_ik->major_version() < Verifier::STRICTER_ACCESS_CTRL_CHECK_VERSION &&
4552a7633a07 8015385: Remove RelaxAccessControlCheck for JDK 8 bytecodes
hseigel
parents: 10379
diff changeset
507 accessee_ik->major_version() < Verifier::STRICTER_ACCESS_CTRL_CHECK_VERSION)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
508 return classloader_only &&
a61af66fc99e Initial load
duke
parents:
diff changeset
509 Verifier::relax_verify_for(accessor_ik->class_loader()) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
510 accessor_ik->protection_domain() == accessee_ik->protection_domain() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
511 accessor_ik->class_loader() == accessee_ik->class_loader();
a61af66fc99e Initial load
duke
parents:
diff changeset
512 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
513 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
514 }
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
516
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
517 bool Reflection::verify_field_access(Klass* current_class,
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
518 Klass* resolved_class,
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
519 Klass* field_class,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
520 AccessFlags access,
a61af66fc99e Initial load
duke
parents:
diff changeset
521 bool classloader_only,
a61af66fc99e Initial load
duke
parents:
diff changeset
522 bool protected_restriction) {
a61af66fc99e Initial load
duke
parents:
diff changeset
523 // Verify that current_class can access a field of field_class, where that
a61af66fc99e Initial load
duke
parents:
diff changeset
524 // field's access bits are "access". We assume that we've already verified
a61af66fc99e Initial load
duke
parents:
diff changeset
525 // that current_class can access field_class.
a61af66fc99e Initial load
duke
parents:
diff changeset
526 //
a61af66fc99e Initial load
duke
parents:
diff changeset
527 // If the classloader_only flag is set, we automatically allow any accesses
a61af66fc99e Initial load
duke
parents:
diff changeset
528 // in which current_class doesn't have a classloader.
a61af66fc99e Initial load
duke
parents:
diff changeset
529 //
a61af66fc99e Initial load
duke
parents:
diff changeset
530 // "resolved_class" is the runtime type of "field_class". Sometimes we don't
a61af66fc99e Initial load
duke
parents:
diff changeset
531 // need this distinction (e.g. if all we have is the runtime type, or during
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // class file parsing when we only care about the static type); in that case
a61af66fc99e Initial load
duke
parents:
diff changeset
533 // callers should ensure that resolved_class == field_class.
a61af66fc99e Initial load
duke
parents:
diff changeset
534 //
a61af66fc99e Initial load
duke
parents:
diff changeset
535 if ((current_class == NULL) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
536 (current_class == field_class) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
537 access.is_public()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
539 }
a61af66fc99e Initial load
duke
parents:
diff changeset
540
13430
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
541 Klass* host_class = current_class;
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
542 while (host_class->oop_is_instance() &&
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
543 InstanceKlass::cast(host_class)->is_anonymous()) {
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
544 Klass* next_host_class = InstanceKlass::cast(host_class)->host_klass();
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
545 if (next_host_class == NULL) break;
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
546 host_class = next_host_class;
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
547 }
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
548 if (host_class == field_class) {
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
549 return true;
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
550 }
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
551
0
a61af66fc99e Initial load
duke
parents:
diff changeset
552 if (access.is_protected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
553 if (!protected_restriction) {
13430
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
554 // See if current_class (or outermost host class) is a subclass of field_class
18052
2373a1f4987c 8036533: Method for correct defaults
hseigel
parents: 13430
diff changeset
555 // An interface may not access protected members of j.l.Object
2373a1f4987c 8036533: Method for correct defaults
hseigel
parents: 13430
diff changeset
556 if (!host_class->is_interface() && host_class->is_subclass_of(field_class)) {
115
e7a91a357527 6622385: Accessing protected static methods
kamg
parents: 51
diff changeset
557 if (access.is_static() || // static fields are ok, see 6622385
e7a91a357527 6622385: Accessing protected static methods
kamg
parents: 51
diff changeset
558 current_class == resolved_class ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
559 field_class == resolved_class ||
13430
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
560 host_class->is_subclass_of(resolved_class) ||
9a60f4ac6a37 8027458: VM anonymous classes: wrong context for protected access checks
hseigel
parents: 13385
diff changeset
561 resolved_class->is_subclass_of(host_class)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
562 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
565 }
a61af66fc99e Initial load
duke
parents:
diff changeset
566 }
a61af66fc99e Initial load
duke
parents:
diff changeset
567
a61af66fc99e Initial load
duke
parents:
diff changeset
568 if (!access.is_private() && is_same_class_package(current_class, field_class)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
569 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
570 }
a61af66fc99e Initial load
duke
parents:
diff changeset
571
a61af66fc99e Initial load
duke
parents:
diff changeset
572 // New (1.4) reflection implementation. Allow all accesses from
a61af66fc99e Initial load
duke
parents:
diff changeset
573 // sun/reflect/MagicAccessorImpl subclasses to succeed trivially.
a61af66fc99e Initial load
duke
parents:
diff changeset
574 if ( JDK_Version::is_gte_jdk14x_version()
a61af66fc99e Initial load
duke
parents:
diff changeset
575 && UseNewReflection
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
576 && current_class->is_subclass_of(SystemDictionary::reflect_MagicAccessorImpl_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
577 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
579
a61af66fc99e Initial load
duke
parents:
diff changeset
580 return can_relax_access_check_for(
a61af66fc99e Initial load
duke
parents:
diff changeset
581 current_class, field_class, classloader_only);
a61af66fc99e Initial load
duke
parents:
diff changeset
582 }
a61af66fc99e Initial load
duke
parents:
diff changeset
583
a61af66fc99e Initial load
duke
parents:
diff changeset
584
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
585 bool Reflection::is_same_class_package(Klass* class1, Klass* class2) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
586 return InstanceKlass::cast(class1)->is_same_class_package(class2);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
588
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
589 bool Reflection::is_same_package_member(Klass* class1, Klass* class2, TRAPS) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
590 return InstanceKlass::cast(class1)->is_same_package_member(class2, THREAD);
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
591 }
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
592
0
a61af66fc99e Initial load
duke
parents:
diff changeset
593
a61af66fc99e Initial load
duke
parents:
diff changeset
594 // Checks that the 'outer' klass has declared 'inner' as being an inner klass. If not,
a61af66fc99e Initial load
duke
parents:
diff changeset
595 // throw an incompatible class change exception
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
596 // If inner_is_member, require the inner to be a member of the outer.
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
597 // If !inner_is_member, require the inner to be anonymous (a non-member).
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
598 // Caller is responsible for figuring out in advance which case must be true.
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
599 void Reflection::check_for_inner_class(instanceKlassHandle outer, instanceKlassHandle inner,
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
600 bool inner_is_member, TRAPS) {
5967
f7c4174b33ba 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 3895
diff changeset
601 InnerClassesIterator iter(outer);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
602 constantPoolHandle cp (THREAD, outer->constants());
5967
f7c4174b33ba 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 3895
diff changeset
603 for (; !iter.done(); iter.next()) {
f7c4174b33ba 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 3895
diff changeset
604 int ioff = iter.inner_class_info_index();
f7c4174b33ba 7109878: The instanceKlass EnclosingMethhod attribute fields can be folded into the _inner_class field.
jiangli
parents: 3895
diff changeset
605 int ooff = iter.outer_class_info_index();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
606
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
607 if (inner_is_member && ioff != 0 && ooff != 0) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
608 Klass* o = cp->klass_at(ooff, CHECK);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
609 if (o == outer()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
610 Klass* i = cp->klass_at(ioff, CHECK);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
611 if (i == inner()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
612 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
613 }
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615 }
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
616 if (!inner_is_member && ioff != 0 && ooff == 0 &&
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
617 cp->klass_name_at_matches(inner, ioff)) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
618 Klass* i = cp->klass_at(ioff, CHECK);
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
619 if (i == inner()) {
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
620 return;
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
621 }
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
622 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
623 }
a61af66fc99e Initial load
duke
parents:
diff changeset
624
a61af66fc99e Initial load
duke
parents:
diff changeset
625 // 'inner' not declared as an inner klass in outer
a61af66fc99e Initial load
duke
parents:
diff changeset
626 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
627 Exceptions::fthrow(
a61af66fc99e Initial load
duke
parents:
diff changeset
628 THREAD_AND_LOCATION,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
629 vmSymbols::java_lang_IncompatibleClassChangeError(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
630 "%s and %s disagree on InnerClasses attribute",
a61af66fc99e Initial load
duke
parents:
diff changeset
631 outer->external_name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
632 inner->external_name()
a61af66fc99e Initial load
duke
parents:
diff changeset
633 );
a61af66fc99e Initial load
duke
parents:
diff changeset
634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636 // Utility method converting a single SignatureStream element into java.lang.Class instance
a61af66fc99e Initial load
duke
parents:
diff changeset
637
a61af66fc99e Initial load
duke
parents:
diff changeset
638 oop get_mirror_from_signature(methodHandle method, SignatureStream* ss, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
639 switch (ss->type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
640 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
641 assert(ss->type() != T_VOID || ss->at_return_type(), "T_VOID should only appear as return type");
a61af66fc99e Initial load
duke
parents:
diff changeset
642 return java_lang_Class::primitive_mirror(ss->type());
a61af66fc99e Initial load
duke
parents:
diff changeset
643 case T_OBJECT:
a61af66fc99e Initial load
duke
parents:
diff changeset
644 case T_ARRAY:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
645 Symbol* name = ss->as_symbol(CHECK_NULL);
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6934
diff changeset
646 oop loader = method->method_holder()->class_loader();
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6934
diff changeset
647 oop protection_domain = method->method_holder()->protection_domain();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
648 Klass* k = SystemDictionary::resolve_or_fail(
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
649 name,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
650 Handle(THREAD, loader),
a61af66fc99e Initial load
duke
parents:
diff changeset
651 Handle(THREAD, protection_domain),
a61af66fc99e Initial load
duke
parents:
diff changeset
652 true, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
653 if (TraceClassResolution) {
a61af66fc99e Initial load
duke
parents:
diff changeset
654 trace_class_resolution(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
655 }
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
656 return k->java_mirror();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
657 };
a61af66fc99e Initial load
duke
parents:
diff changeset
658 }
a61af66fc99e Initial load
duke
parents:
diff changeset
659
a61af66fc99e Initial load
duke
parents:
diff changeset
660
a61af66fc99e Initial load
duke
parents:
diff changeset
661 objArrayHandle Reflection::get_parameter_types(methodHandle method, int parameter_count, oop* return_type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
662 // Allocate array holding parameter types (java.lang.Class instances)
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 665
diff changeset
663 objArrayOop m = oopFactory::new_objArray(SystemDictionary::Class_klass(), parameter_count, CHECK_(objArrayHandle()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
664 objArrayHandle mirrors (THREAD, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
665 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
666 // Collect parameter types
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
667 ResourceMark rm(THREAD);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
668 Symbol* signature = method->signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
669 SignatureStream ss(signature);
a61af66fc99e Initial load
duke
parents:
diff changeset
670 while (!ss.at_return_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
671 oop mirror = get_mirror_from_signature(method, &ss, CHECK_(objArrayHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
672 mirrors->obj_at_put(index++, mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
673 ss.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
674 }
a61af66fc99e Initial load
duke
parents:
diff changeset
675 assert(index == parameter_count, "invalid parameter count");
a61af66fc99e Initial load
duke
parents:
diff changeset
676 if (return_type != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
677 // Collect return type as well
a61af66fc99e Initial load
duke
parents:
diff changeset
678 assert(ss.at_return_type(), "return type should be present");
a61af66fc99e Initial load
duke
parents:
diff changeset
679 *return_type = get_mirror_from_signature(method, &ss, CHECK_(objArrayHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681 return mirrors;
a61af66fc99e Initial load
duke
parents:
diff changeset
682 }
a61af66fc99e Initial load
duke
parents:
diff changeset
683
a61af66fc99e Initial load
duke
parents:
diff changeset
684 objArrayHandle Reflection::get_exception_types(methodHandle method, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
685 return method->resolved_checked_exceptions(CHECK_(objArrayHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
686 }
a61af66fc99e Initial load
duke
parents:
diff changeset
687
a61af66fc99e Initial load
duke
parents:
diff changeset
688
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
689 Handle Reflection::new_type(Symbol* signature, KlassHandle k, TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
690 // Basic types
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
691 BasicType type = vmSymbols::signature_type(signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
692 if (type != T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
693 return Handle(THREAD, Universe::java_mirror(type));
a61af66fc99e Initial load
duke
parents:
diff changeset
694 }
a61af66fc99e Initial load
duke
parents:
diff changeset
695
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
696 oop loader = InstanceKlass::cast(k())->class_loader();
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
697 oop protection_domain = k()->protection_domain();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
698 Klass* result = SystemDictionary::resolve_or_fail(signature,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
699 Handle(THREAD, loader),
a61af66fc99e Initial load
duke
parents:
diff changeset
700 Handle(THREAD, protection_domain),
a61af66fc99e Initial load
duke
parents:
diff changeset
701 true, CHECK_(Handle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
702
a61af66fc99e Initial load
duke
parents:
diff changeset
703 if (TraceClassResolution) {
a61af66fc99e Initial load
duke
parents:
diff changeset
704 trace_class_resolution(result);
a61af66fc99e Initial load
duke
parents:
diff changeset
705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
706
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
707 oop nt = result->java_mirror();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
708 return Handle(THREAD, nt);
a61af66fc99e Initial load
duke
parents:
diff changeset
709 }
a61af66fc99e Initial load
duke
parents:
diff changeset
710
a61af66fc99e Initial load
duke
parents:
diff changeset
711
a61af66fc99e Initial load
duke
parents:
diff changeset
712 oop Reflection::new_method(methodHandle method, bool intern_name, bool for_constant_pool_access, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
713 // In jdk1.2.x, getMethods on an interface erroneously includes <clinit>, thus the complicated assert.
a61af66fc99e Initial load
duke
parents:
diff changeset
714 // Also allow sun.reflect.ConstantPool to refer to <clinit> methods as java.lang.reflect.Methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
715 assert(!method()->is_initializer() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
716 (for_constant_pool_access && method()->is_static()) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
717 (method()->name() == vmSymbols::class_initializer_name()
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6934
diff changeset
718 && method()->method_holder()->is_interface() && JDK_Version::is_jdk12x_version()), "should call new_constructor instead");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
719 instanceKlassHandle holder (THREAD, method->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
720 int slot = method->method_idnum();
a61af66fc99e Initial load
duke
parents:
diff changeset
721
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
722 Symbol* signature = method->signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
723 int parameter_count = ArgumentCount(signature).size();
a61af66fc99e Initial load
duke
parents:
diff changeset
724 oop return_type_oop = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
725 objArrayHandle parameter_types = get_parameter_types(method, parameter_count, &return_type_oop, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
726 if (parameter_types.is_null() || return_type_oop == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
727
a61af66fc99e Initial load
duke
parents:
diff changeset
728 Handle return_type(THREAD, return_type_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
729
a61af66fc99e Initial load
duke
parents:
diff changeset
730 objArrayHandle exception_types = get_exception_types(method, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
731
a61af66fc99e Initial load
duke
parents:
diff changeset
732 if (exception_types.is_null()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
733
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
734 Symbol* method_name = method->name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
735 Handle name;
a61af66fc99e Initial load
duke
parents:
diff changeset
736 if (intern_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
737 // intern_name is only true with UseNewReflection
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
738 oop name_oop = StringTable::intern(method_name, CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
739 name = Handle(THREAD, name_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
740 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
741 name = java_lang_String::create_from_symbol(method_name, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
742 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
743 if (name == NULL) return NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745 int modifiers = method->access_flags().as_int() & JVM_RECOGNIZED_METHOD_MODIFIERS;
a61af66fc99e Initial load
duke
parents:
diff changeset
746
a61af66fc99e Initial load
duke
parents:
diff changeset
747 Handle mh = java_lang_reflect_Method::create(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
748
a61af66fc99e Initial load
duke
parents:
diff changeset
749 java_lang_reflect_Method::set_clazz(mh(), holder->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
750 java_lang_reflect_Method::set_slot(mh(), slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
751 java_lang_reflect_Method::set_name(mh(), name());
a61af66fc99e Initial load
duke
parents:
diff changeset
752 java_lang_reflect_Method::set_return_type(mh(), return_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
753 java_lang_reflect_Method::set_parameter_types(mh(), parameter_types());
a61af66fc99e Initial load
duke
parents:
diff changeset
754 java_lang_reflect_Method::set_exception_types(mh(), exception_types());
a61af66fc99e Initial load
duke
parents:
diff changeset
755 java_lang_reflect_Method::set_modifiers(mh(), modifiers);
a61af66fc99e Initial load
duke
parents:
diff changeset
756 java_lang_reflect_Method::set_override(mh(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
757 if (java_lang_reflect_Method::has_signature_field() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
758 method->generic_signature() != NULL) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
759 Symbol* gs = method->generic_signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
760 Handle sig = java_lang_String::create_from_symbol(gs, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
761 java_lang_reflect_Method::set_signature(mh(), sig());
a61af66fc99e Initial load
duke
parents:
diff changeset
762 }
a61af66fc99e Initial load
duke
parents:
diff changeset
763 if (java_lang_reflect_Method::has_annotations_field()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
764 typeArrayOop an_oop = Annotations::make_java_array(method->annotations(), CHECK_NULL);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
765 java_lang_reflect_Method::set_annotations(mh(), an_oop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
766 }
a61af66fc99e Initial load
duke
parents:
diff changeset
767 if (java_lang_reflect_Method::has_parameter_annotations_field()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
768 typeArrayOop an_oop = Annotations::make_java_array(method->parameter_annotations(), CHECK_NULL);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
769 java_lang_reflect_Method::set_parameter_annotations(mh(), an_oop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
770 }
a61af66fc99e Initial load
duke
parents:
diff changeset
771 if (java_lang_reflect_Method::has_annotation_default_field()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
772 typeArrayOop an_oop = Annotations::make_java_array(method->annotation_default(), CHECK_NULL);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
773 java_lang_reflect_Method::set_annotation_default(mh(), an_oop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
774 }
7457
35431a769282 8004823: Add VM support for type annotation reflection
stefank
parents: 6983
diff changeset
775 if (java_lang_reflect_Method::has_type_annotations_field()) {
35431a769282 8004823: Add VM support for type annotation reflection
stefank
parents: 6983
diff changeset
776 typeArrayOop an_oop = Annotations::make_java_array(method->type_annotations(), CHECK_NULL);
35431a769282 8004823: Add VM support for type annotation reflection
stefank
parents: 6983
diff changeset
777 java_lang_reflect_Method::set_type_annotations(mh(), an_oop);
35431a769282 8004823: Add VM support for type annotation reflection
stefank
parents: 6983
diff changeset
778 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
779 return mh();
a61af66fc99e Initial load
duke
parents:
diff changeset
780 }
a61af66fc99e Initial load
duke
parents:
diff changeset
781
a61af66fc99e Initial load
duke
parents:
diff changeset
782
a61af66fc99e Initial load
duke
parents:
diff changeset
783 oop Reflection::new_constructor(methodHandle method, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
784 assert(method()->is_initializer(), "should call new_method instead");
a61af66fc99e Initial load
duke
parents:
diff changeset
785
a61af66fc99e Initial load
duke
parents:
diff changeset
786 instanceKlassHandle holder (THREAD, method->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
787 int slot = method->method_idnum();
a61af66fc99e Initial load
duke
parents:
diff changeset
788
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
789 Symbol* signature = method->signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
790 int parameter_count = ArgumentCount(signature).size();
a61af66fc99e Initial load
duke
parents:
diff changeset
791 objArrayHandle parameter_types = get_parameter_types(method, parameter_count, NULL, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
792 if (parameter_types.is_null()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
793
a61af66fc99e Initial load
duke
parents:
diff changeset
794 objArrayHandle exception_types = get_exception_types(method, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
795 if (exception_types.is_null()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
796
a61af66fc99e Initial load
duke
parents:
diff changeset
797 int modifiers = method->access_flags().as_int() & JVM_RECOGNIZED_METHOD_MODIFIERS;
a61af66fc99e Initial load
duke
parents:
diff changeset
798
a61af66fc99e Initial load
duke
parents:
diff changeset
799 Handle ch = java_lang_reflect_Constructor::create(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
800
a61af66fc99e Initial load
duke
parents:
diff changeset
801 java_lang_reflect_Constructor::set_clazz(ch(), holder->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
802 java_lang_reflect_Constructor::set_slot(ch(), slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
803 java_lang_reflect_Constructor::set_parameter_types(ch(), parameter_types());
a61af66fc99e Initial load
duke
parents:
diff changeset
804 java_lang_reflect_Constructor::set_exception_types(ch(), exception_types());
a61af66fc99e Initial load
duke
parents:
diff changeset
805 java_lang_reflect_Constructor::set_modifiers(ch(), modifiers);
a61af66fc99e Initial load
duke
parents:
diff changeset
806 java_lang_reflect_Constructor::set_override(ch(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
807 if (java_lang_reflect_Constructor::has_signature_field() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
808 method->generic_signature() != NULL) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
809 Symbol* gs = method->generic_signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
810 Handle sig = java_lang_String::create_from_symbol(gs, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
811 java_lang_reflect_Constructor::set_signature(ch(), sig());
a61af66fc99e Initial load
duke
parents:
diff changeset
812 }
a61af66fc99e Initial load
duke
parents:
diff changeset
813 if (java_lang_reflect_Constructor::has_annotations_field()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
814 typeArrayOop an_oop = Annotations::make_java_array(method->annotations(), CHECK_NULL);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
815 java_lang_reflect_Constructor::set_annotations(ch(), an_oop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
816 }
a61af66fc99e Initial load
duke
parents:
diff changeset
817 if (java_lang_reflect_Constructor::has_parameter_annotations_field()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
818 typeArrayOop an_oop = Annotations::make_java_array(method->parameter_annotations(), CHECK_NULL);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
819 java_lang_reflect_Constructor::set_parameter_annotations(ch(), an_oop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
820 }
10378
a589c78a8811 8014709: Constructor.getAnnotatedReturnType() returns empty AnnotatedType
rbackman
parents: 7588
diff changeset
821 if (java_lang_reflect_Constructor::has_type_annotations_field()) {
a589c78a8811 8014709: Constructor.getAnnotatedReturnType() returns empty AnnotatedType
rbackman
parents: 7588
diff changeset
822 typeArrayOop an_oop = Annotations::make_java_array(method->type_annotations(), CHECK_NULL);
a589c78a8811 8014709: Constructor.getAnnotatedReturnType() returns empty AnnotatedType
rbackman
parents: 7588
diff changeset
823 java_lang_reflect_Constructor::set_type_annotations(ch(), an_oop);
a589c78a8811 8014709: Constructor.getAnnotatedReturnType() returns empty AnnotatedType
rbackman
parents: 7588
diff changeset
824 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
825 return ch();
a61af66fc99e Initial load
duke
parents:
diff changeset
826 }
a61af66fc99e Initial load
duke
parents:
diff changeset
827
a61af66fc99e Initial load
duke
parents:
diff changeset
828
a61af66fc99e Initial load
duke
parents:
diff changeset
829 oop Reflection::new_field(fieldDescriptor* fd, bool intern_name, TRAPS) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
830 Symbol* field_name = fd->name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
831 Handle name;
a61af66fc99e Initial load
duke
parents:
diff changeset
832 if (intern_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
833 // intern_name is only true with UseNewReflection
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
834 oop name_oop = StringTable::intern(field_name, CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
835 name = Handle(THREAD, name_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
836 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
837 name = java_lang_String::create_from_symbol(field_name, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
838 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
839 Symbol* signature = fd->signature();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
840 instanceKlassHandle holder (THREAD, fd->field_holder());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
841 Handle type = new_type(signature, holder, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
842 Handle rh = java_lang_reflect_Field::create(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
843
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6934
diff changeset
844 java_lang_reflect_Field::set_clazz(rh(), fd->field_holder()->java_mirror());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
845 java_lang_reflect_Field::set_slot(rh(), fd->index());
a61af66fc99e Initial load
duke
parents:
diff changeset
846 java_lang_reflect_Field::set_name(rh(), name());
a61af66fc99e Initial load
duke
parents:
diff changeset
847 java_lang_reflect_Field::set_type(rh(), type());
a61af66fc99e Initial load
duke
parents:
diff changeset
848 // Note the ACC_ANNOTATION bit, which is a per-class access flag, is never set here.
a61af66fc99e Initial load
duke
parents:
diff changeset
849 java_lang_reflect_Field::set_modifiers(rh(), fd->access_flags().as_int() & JVM_RECOGNIZED_FIELD_MODIFIERS);
a61af66fc99e Initial load
duke
parents:
diff changeset
850 java_lang_reflect_Field::set_override(rh(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
851 if (java_lang_reflect_Field::has_signature_field() &&
6176
634b8615a6ba 7177409: Perf regression in JVM_GetClassDeclaredFields after generic signature changes.
jiangli
parents: 5967
diff changeset
852 fd->has_generic_signature()) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
853 Symbol* gs = fd->generic_signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
854 Handle sig = java_lang_String::create_from_symbol(gs, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
855 java_lang_reflect_Field::set_signature(rh(), sig());
a61af66fc99e Initial load
duke
parents:
diff changeset
856 }
a61af66fc99e Initial load
duke
parents:
diff changeset
857 if (java_lang_reflect_Field::has_annotations_field()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
858 typeArrayOop an_oop = Annotations::make_java_array(fd->annotations(), CHECK_NULL);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
859 java_lang_reflect_Field::set_annotations(rh(), an_oop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
860 }
7457
35431a769282 8004823: Add VM support for type annotation reflection
stefank
parents: 6983
diff changeset
861 if (java_lang_reflect_Field::has_type_annotations_field()) {
35431a769282 8004823: Add VM support for type annotation reflection
stefank
parents: 6983
diff changeset
862 typeArrayOop an_oop = Annotations::make_java_array(fd->type_annotations(), CHECK_NULL);
35431a769282 8004823: Add VM support for type annotation reflection
stefank
parents: 6983
diff changeset
863 java_lang_reflect_Field::set_type_annotations(rh(), an_oop);
35431a769282 8004823: Add VM support for type annotation reflection
stefank
parents: 6983
diff changeset
864 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
865 return rh();
a61af66fc99e Initial load
duke
parents:
diff changeset
866 }
a61af66fc99e Initial load
duke
parents:
diff changeset
867
7462
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7457
diff changeset
868 oop Reflection::new_parameter(Handle method, int index, Symbol* sym,
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7457
diff changeset
869 int flags, TRAPS) {
7588
f9eb431c3efe 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 7462
diff changeset
870 Handle name;
f9eb431c3efe 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 7462
diff changeset
871
f9eb431c3efe 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 7462
diff changeset
872 // A null symbol here translates to the empty string
f9eb431c3efe 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 7462
diff changeset
873 if(NULL != sym) {
f9eb431c3efe 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 7462
diff changeset
874 name = java_lang_String::create_from_symbol(sym, CHECK_NULL);
f9eb431c3efe 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 7462
diff changeset
875 } else {
f9eb431c3efe 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 7462
diff changeset
876 name = java_lang_String::create_from_str("", CHECK_NULL);
f9eb431c3efe 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 7462
diff changeset
877 }
f9eb431c3efe 8006005: Fix constant pool index validation and alignment trap for method parameter reflection
coleenp
parents: 7462
diff changeset
878
7462
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7457
diff changeset
879 Handle rh = java_lang_reflect_Parameter::create(CHECK_NULL);
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7457
diff changeset
880 java_lang_reflect_Parameter::set_name(rh(), name());
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7457
diff changeset
881 java_lang_reflect_Parameter::set_modifiers(rh(), flags);
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7457
diff changeset
882 java_lang_reflect_Parameter::set_executable(rh(), method());
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7457
diff changeset
883 java_lang_reflect_Parameter::set_index(rh(), index);
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7457
diff changeset
884 return rh();
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7457
diff changeset
885 }
ade95d680b42 8004728: Add hotspot support for parameter reflection
coleenp
parents: 7457
diff changeset
886
0
a61af66fc99e Initial load
duke
parents:
diff changeset
887
a61af66fc99e Initial load
duke
parents:
diff changeset
888 methodHandle Reflection::resolve_interface_call(instanceKlassHandle klass, methodHandle method,
a61af66fc99e Initial load
duke
parents:
diff changeset
889 KlassHandle recv_klass, Handle receiver, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
890 assert(!method.is_null() , "method should not be null");
a61af66fc99e Initial load
duke
parents:
diff changeset
891
a61af66fc99e Initial load
duke
parents:
diff changeset
892 CallInfo info;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
893 Symbol* signature = method->signature();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
894 Symbol* name = method->name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
895 LinkResolver::resolve_interface_call(info, receiver, recv_klass, klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
896 name, signature,
a61af66fc99e Initial load
duke
parents:
diff changeset
897 KlassHandle(), false, true,
a61af66fc99e Initial load
duke
parents:
diff changeset
898 CHECK_(methodHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
899 return info.selected_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
900 }
a61af66fc99e Initial load
duke
parents:
diff changeset
901
a61af66fc99e Initial load
duke
parents:
diff changeset
902
a61af66fc99e Initial load
duke
parents:
diff changeset
903 oop Reflection::invoke(instanceKlassHandle klass, methodHandle reflected_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
904 Handle receiver, bool override, objArrayHandle ptypes,
a61af66fc99e Initial load
duke
parents:
diff changeset
905 BasicType rtype, objArrayHandle args, bool is_method_invoke, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
906 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
907
a61af66fc99e Initial load
duke
parents:
diff changeset
908 methodHandle method; // actual method to invoke
a61af66fc99e Initial load
duke
parents:
diff changeset
909 KlassHandle target_klass; // target klass, receiver's klass for non-static
a61af66fc99e Initial load
duke
parents:
diff changeset
910
a61af66fc99e Initial load
duke
parents:
diff changeset
911 // Ensure klass is initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
912 klass->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
913
a61af66fc99e Initial load
duke
parents:
diff changeset
914 bool is_static = reflected_method->is_static();
a61af66fc99e Initial load
duke
parents:
diff changeset
915 if (is_static) {
a61af66fc99e Initial load
duke
parents:
diff changeset
916 // ignore receiver argument
a61af66fc99e Initial load
duke
parents:
diff changeset
917 method = reflected_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
918 target_klass = klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
919 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
920 // check for null receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
921 if (receiver.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
922 THROW_0(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
923 }
a61af66fc99e Initial load
duke
parents:
diff changeset
924 // Check class of receiver against class declaring method
a61af66fc99e Initial load
duke
parents:
diff changeset
925 if (!receiver->is_a(klass())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
926 THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "object is not an instance of declaring class");
a61af66fc99e Initial load
duke
parents:
diff changeset
927 }
a61af66fc99e Initial load
duke
parents:
diff changeset
928 // target klass is receiver's klass
a61af66fc99e Initial load
duke
parents:
diff changeset
929 target_klass = KlassHandle(THREAD, receiver->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
930 // no need to resolve if method is private or <init>
a61af66fc99e Initial load
duke
parents:
diff changeset
931 if (reflected_method->is_private() || reflected_method->name() == vmSymbols::object_initializer_name()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
932 method = reflected_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
933 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
934 // resolve based on the receiver
6940
18fb7da42534 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 6934
diff changeset
935 if (reflected_method->method_holder()->is_interface()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
936 // resolve interface call
a61af66fc99e Initial load
duke
parents:
diff changeset
937 if (ReflectionWrapResolutionErrors) {
a61af66fc99e Initial load
duke
parents:
diff changeset
938 // new default: 6531596
a61af66fc99e Initial load
duke
parents:
diff changeset
939 // Match resolution errors with those thrown due to reflection inlining
a61af66fc99e Initial load
duke
parents:
diff changeset
940 // Linktime resolution & IllegalAccessCheck already done by Class.getMethod()
a61af66fc99e Initial load
duke
parents:
diff changeset
941 method = resolve_interface_call(klass, reflected_method, target_klass, receiver, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
942 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
943 // Method resolution threw an exception; wrap it in an InvocationTargetException
a61af66fc99e Initial load
duke
parents:
diff changeset
944 oop resolution_exception = PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
945 CLEAR_PENDING_EXCEPTION;
23007
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
946 // JVMTI has already reported the pending exception
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
947 // JVMTI internal flag reset is needed in order to report InvocationTargetException
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
948 if (THREAD->is_Java_thread()) {
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
949 JvmtiExport::clear_detected_exception((JavaThread*) THREAD);
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
950 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
951 JavaCallArguments args(Handle(THREAD, resolution_exception));
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
952 THROW_ARG_0(vmSymbols::java_lang_reflect_InvocationTargetException(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
953 vmSymbols::throwable_void_signature(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
954 &args);
a61af66fc99e Initial load
duke
parents:
diff changeset
955 }
a61af66fc99e Initial load
duke
parents:
diff changeset
956 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
957 method = resolve_interface_call(klass, reflected_method, target_klass, receiver, CHECK_(NULL));
a61af66fc99e Initial load
duke
parents:
diff changeset
958 }
a61af66fc99e Initial load
duke
parents:
diff changeset
959 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
960 // if the method can be overridden, we resolve using the vtable index.
12264
b2e698d2276c 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 11081
diff changeset
961 assert(!reflected_method->has_itable_index(), "");
b2e698d2276c 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 11081
diff changeset
962 int index = reflected_method->vtable_index();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
963 method = reflected_method;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
964 if (index != Method::nonvirtual_vtable_index) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // target_klass might be an arrayKlassOop but all vtables start at
a61af66fc99e Initial load
duke
parents:
diff changeset
966 // the same place. The cast is to avoid virtual call and assertion.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
967 InstanceKlass* inst = (InstanceKlass*)target_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
968 method = methodHandle(THREAD, inst->method_at_vtable(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
969 }
a61af66fc99e Initial load
duke
parents:
diff changeset
970 if (!method.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
971 // Check for abstract methods as well
a61af66fc99e Initial load
duke
parents:
diff changeset
972 if (method->is_abstract()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
973 // new default: 6531596
a61af66fc99e Initial load
duke
parents:
diff changeset
974 if (ReflectionWrapResolutionErrors) {
a61af66fc99e Initial load
duke
parents:
diff changeset
975 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
976 Handle h_origexception = Exceptions::new_exception(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
977 vmSymbols::java_lang_AbstractMethodError(),
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
978 Method::name_and_sig_as_C_string(target_klass(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
979 method->name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
980 method->signature()));
a61af66fc99e Initial load
duke
parents:
diff changeset
981 JavaCallArguments args(h_origexception);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
982 THROW_ARG_0(vmSymbols::java_lang_reflect_InvocationTargetException(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
983 vmSymbols::throwable_void_signature(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
984 &args);
a61af66fc99e Initial load
duke
parents:
diff changeset
985 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
986 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
987 THROW_MSG_0(vmSymbols::java_lang_AbstractMethodError(),
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
988 Method::name_and_sig_as_C_string(target_klass(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
989 method->name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
990 method->signature()));
a61af66fc99e Initial load
duke
parents:
diff changeset
991 }
a61af66fc99e Initial load
duke
parents:
diff changeset
992 }
a61af66fc99e Initial load
duke
parents:
diff changeset
993 }
a61af66fc99e Initial load
duke
parents:
diff changeset
994 }
a61af66fc99e Initial load
duke
parents:
diff changeset
995 }
a61af66fc99e Initial load
duke
parents:
diff changeset
996 }
a61af66fc99e Initial load
duke
parents:
diff changeset
997
a61af66fc99e Initial load
duke
parents:
diff changeset
998 // I believe this is a ShouldNotGetHere case which requires
a61af66fc99e Initial load
duke
parents:
diff changeset
999 // an internal vtable bug. If you ever get this please let Karen know.
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 if (method.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(),
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
1003 Method::name_and_sig_as_C_string(klass(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 reflected_method->name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 reflected_method->signature()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1007
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 // In the JDK 1.4 reflection implementation, the security check is
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 // done at the Java level
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 if (!(JDK_Version::is_gte_jdk14x_version() && UseNewReflection)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1011
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 // Access checking (unless overridden by Method)
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 if (!override) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 if (!(klass->is_public() && reflected_method->is_public())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 bool access = Reflection::reflect_check_access(klass(), reflected_method->access_flags(), target_klass(), is_method_invoke, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 if (!access) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 return NULL; // exception
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1021
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 } // !(Universe::is_gte_jdk14x_version() && UseNewReflection)
a61af66fc99e Initial load
duke
parents:
diff changeset
1023
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 assert(ptypes->is_objArray(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 int args_len = args.is_null() ? 0 : args->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 // Check number of arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 if (ptypes->length() != args_len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "wrong number of arguments");
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1030
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 // Create object to contain parameters for the JavaCall
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 JavaCallArguments java_args(method->size_of_parameters());
a61af66fc99e Initial load
duke
parents:
diff changeset
1033
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 if (!is_static) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 java_args.push_oop(receiver);
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1037
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 for (int i = 0; i < args_len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 oop type_mirror = ptypes->obj_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 oop arg = args->obj_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 if (java_lang_Class::is_primitive(type_mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 jvalue value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 BasicType ptype = basic_type_mirror_to_basic_type(type_mirror, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 BasicType atype = unbox_for_primitive(arg, &value, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 if (ptype != atype) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 widen(&value, atype, ptype, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 switch (ptype) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 case T_BOOLEAN: java_args.push_int(value.z); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 case T_CHAR: java_args.push_int(value.c); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 case T_BYTE: java_args.push_int(value.b); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 case T_SHORT: java_args.push_int(value.s); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 case T_INT: java_args.push_int(value.i); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 case T_LONG: java_args.push_long(value.j); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 case T_FLOAT: java_args.push_float(value.f); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 case T_DOUBLE: java_args.push_double(value.d); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 if (arg != NULL) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
1062 Klass* k = java_lang_Class::as_Klass(type_mirror);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 if (!arg->is_a(k)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 Handle arg_handle(THREAD, arg); // Create handle for argument
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 java_args.push_oop(arg_handle); // Push handle
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1071
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 assert(java_args.size_of_parameters() == method->size_of_parameters(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1073
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 // All oops (including receiver) is passed in as Handles. An potential oop is returned as an
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 // oop (i.e., NOT as an handle)
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 JavaValue result(rtype);
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 JavaCalls::call(&result, method, &java_args, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1078
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 // Method threw an exception; wrap it in an InvocationTargetException
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 oop target_exception = PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 CLEAR_PENDING_EXCEPTION;
23007
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
1083 // JVMTI has already reported the pending exception
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
1084 // JVMTI internal flag reset is needed in order to report InvocationTargetException
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
1085 if (THREAD->is_Java_thread()) {
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
1086 JvmtiExport::clear_detected_exception((JavaThread*) THREAD);
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
1087 }
3c8b53552a43 4505697: nsk/jdi/ExceptionEvent/_itself_/exevent006 and exevent008 tests fail with InvocationTargetException
jbachorik
parents: 18052
diff changeset
1088
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 JavaCallArguments args(Handle(THREAD, target_exception));
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
1090 THROW_ARG_0(vmSymbols::java_lang_reflect_InvocationTargetException(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
1091 vmSymbols::throwable_void_signature(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 &args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 if (rtype == T_BOOLEAN || rtype == T_BYTE || rtype == T_CHAR || rtype == T_SHORT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 narrow((jvalue*) result.get_value_addr(), rtype, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 return box((jvalue*) result.get_value_addr(), rtype, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1099
a61af66fc99e Initial load
duke
parents:
diff changeset
1100
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 void Reflection::narrow(jvalue* value, BasicType narrow_type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 switch (narrow_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 case T_BOOLEAN:
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 23007
diff changeset
1104 value->z = (jboolean) (value->i & 1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 value->b = (jbyte) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 value->c = (jchar) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 value->s = (jshort) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1120
a61af66fc99e Initial load
duke
parents:
diff changeset
1121
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 BasicType Reflection::basic_type_mirror_to_basic_type(oop basic_type_mirror, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 assert(java_lang_Class::is_primitive(basic_type_mirror), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 return java_lang_Class::primitive_type(basic_type_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1126
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 // This would be nicer if, say, java.lang.reflect.Method was a subclass
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 // of java.lang.reflect.Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
1129
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 oop Reflection::invoke_method(oop method_mirror, Handle receiver, objArrayHandle args, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 oop mirror = java_lang_reflect_Method::clazz(method_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 int slot = java_lang_reflect_Method::slot(method_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 bool override = java_lang_reflect_Method::override(method_mirror) != 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 objArrayHandle ptypes(THREAD, objArrayOop(java_lang_reflect_Method::parameter_types(method_mirror)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1135
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 oop return_type_mirror = java_lang_reflect_Method::return_type(method_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 BasicType rtype;
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 if (java_lang_Class::is_primitive(return_type_mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 rtype = basic_type_mirror_to_basic_type(return_type_mirror, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 rtype = T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1143
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
1144 instanceKlassHandle klass(THREAD, java_lang_Class::as_Klass(mirror));
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
1145 Method* m = klass->method_with_idnum(slot);
51
1ffa5cdd0b7e 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 0
diff changeset
1146 if (m == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 THROW_MSG_0(vmSymbols::java_lang_InternalError(), "invoke");
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 }
51
1ffa5cdd0b7e 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 0
diff changeset
1149 methodHandle method(THREAD, m);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1150
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 return invoke(klass, method, receiver, override, ptypes, rtype, args, true, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1153
a61af66fc99e Initial load
duke
parents:
diff changeset
1154
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 oop Reflection::invoke_constructor(oop constructor_mirror, objArrayHandle args, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 oop mirror = java_lang_reflect_Constructor::clazz(constructor_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 int slot = java_lang_reflect_Constructor::slot(constructor_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 bool override = java_lang_reflect_Constructor::override(constructor_mirror) != 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 objArrayHandle ptypes(THREAD, objArrayOop(java_lang_reflect_Constructor::parameter_types(constructor_mirror)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1160
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
1161 instanceKlassHandle klass(THREAD, java_lang_Class::as_Klass(mirror));
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
1162 Method* m = klass->method_with_idnum(slot);
51
1ffa5cdd0b7e 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 0
diff changeset
1163 if (m == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 THROW_MSG_0(vmSymbols::java_lang_InternalError(), "invoke");
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 }
51
1ffa5cdd0b7e 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 0
diff changeset
1166 methodHandle method(THREAD, m);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 assert(method->name() == vmSymbols::object_initializer_name(), "invalid constructor");
a61af66fc99e Initial load
duke
parents:
diff changeset
1168
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 // Make sure klass gets initialize
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 klass->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1171
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 // Create new instance (the receiver)
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 klass->check_valid_for_instantiation(false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 Handle receiver = klass->allocate_instance_handle(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1175
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 // Ignore result from call and return receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 invoke(klass, method, receiver, override, ptypes, T_VOID, args, false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 return receiver();
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 }