annotate src/share/vm/runtime/reflection.cpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children 3582bf76420e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1152
diff changeset
2 * Copyright (c) 1997, 2010, 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"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
39 #include "prims/methodHandleWalk.hpp"
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
a61af66fc99e Initial load
duke
parents:
diff changeset
48 #define JAVA_1_5_VERSION 49
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 static void trace_class_resolution(klassOop to_class) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 int line_number = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 const char * source_file = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 klassOop caller = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 JavaThread* jthread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
56 if (jthread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 vframeStream vfst(jthread);
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // skip over any frames belonging to java.lang.Class
a61af66fc99e Initial load
duke
parents:
diff changeset
59 while (!vfst.at_end() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
60 instanceKlass::cast(vfst.method()->method_holder())->name() == vmSymbols::java_lang_Class()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 vfst.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (!vfst.at_end()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // this frame is a likely suspect
a61af66fc99e Initial load
duke
parents:
diff changeset
65 caller = vfst.method()->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
66 line_number = vfst.method()->line_number_from_bci(vfst.bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
67 symbolOop s = instanceKlass::cast(vfst.method()->method_holder())->source_file_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
68 if (s != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 source_file = s->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 if (caller != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 const char * from = Klass::cast(caller)->external_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
75 const char * to = Klass::cast(to_class)->external_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // print in a single call to reduce interleaving between threads
a61af66fc99e Initial load
duke
parents:
diff changeset
77 if (source_file != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 tty->print("RESOLVE %s %s %s:%d (reflection)\n", from, to, source_file, line_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 tty->print("RESOLVE %s %s (reflection)\n", from, to);
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
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 oop Reflection::box(jvalue* value, BasicType type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 if (type == T_VOID) {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 if (type == T_OBJECT || type == T_ARRAY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // regular objects are not boxed
a61af66fc99e Initial load
duke
parents:
diff changeset
92 return (oop) value->l;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 oop result = java_lang_boxing_object::create(type, value, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 if (result == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 THROW_(vmSymbols::java_lang_IllegalArgumentException(), result);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 BasicType Reflection::unbox_for_primitive(oop box, jvalue* value, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 if (box == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 THROW_(vmSymbols::java_lang_IllegalArgumentException(), T_ILLEGAL);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 return java_lang_boxing_object::get_value(box, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 BasicType Reflection::unbox_for_regular_object(oop box, jvalue* value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // Note: box is really the unboxed oop. It might even be a Short, etc.!
a61af66fc99e Initial load
duke
parents:
diff changeset
111 value->l = (jobject) box;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 return T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 void Reflection::widen(jvalue* value, BasicType current_type, BasicType wide_type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 assert(wide_type != current_type, "widen should not be called with identical types");
a61af66fc99e Initial load
duke
parents:
diff changeset
118 switch (wide_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
119 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
120 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
121 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
122 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
123 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
124 switch (current_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
126 value->s = (jshort) value->b;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
130 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
131 switch (current_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
133 value->i = (jint) value->b;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
136 value->i = (jint) value->c;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
138 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
139 value->i = (jint) value->s;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
143 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
144 switch (current_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
146 value->j = (jlong) value->b;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
149 value->j = (jlong) value->c;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
152 value->j = (jlong) value->s;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
155 value->j = (jlong) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
159 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
160 switch (current_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
162 value->f = (jfloat) value->b;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
165 value->f = (jfloat) value->c;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
168 value->f = (jfloat) value->s;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
171 value->f = (jfloat) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
174 value->f = (jfloat) value->j;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
178 case T_DOUBLE:
a61af66fc99e Initial load
duke
parents:
diff changeset
179 switch (current_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
181 value->d = (jdouble) value->b;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
184 value->d = (jdouble) value->c;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
187 value->d = (jdouble) value->s;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
190 value->d = (jdouble) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
193 value->d = (jdouble) value->f;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
196 value->d = (jdouble) value->j;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
200 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
201 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 BasicType Reflection::array_get(jvalue* value, arrayOop a, int index, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 if (!a->is_within_bounds(index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
209 THROW_(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), T_ILLEGAL);
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211 if (a->is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
212 value->l = (jobject) objArrayOop(a)->obj_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 return T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
214 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 assert(a->is_typeArray(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
216 BasicType type = typeArrayKlass::cast(a->klass())->element_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
217 switch (type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
219 value->z = typeArrayOop(a)->bool_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
221 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
222 value->c = typeArrayOop(a)->char_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
225 value->f = typeArrayOop(a)->float_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 case T_DOUBLE:
a61af66fc99e Initial load
duke
parents:
diff changeset
228 value->d = typeArrayOop(a)->double_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
229 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
231 value->b = typeArrayOop(a)->byte_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
232 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
234 value->s = typeArrayOop(a)->short_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
235 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
237 value->i = typeArrayOop(a)->int_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
240 value->j = typeArrayOop(a)->long_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
241 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
243 return T_ILLEGAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245 return type;
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 void Reflection::array_set(jvalue* value, arrayOop a, int index, BasicType value_type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 if (!a->is_within_bounds(index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
252 THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException());
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254 if (a->is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if (value_type == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 oop obj = (oop) value->l;
a61af66fc99e Initial load
duke
parents:
diff changeset
257 if (obj != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
258 klassOop element_klass = objArrayKlass::cast(a->klass())->element_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
259 if (!obj->is_a(element_klass)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
260 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "array element type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263 objArrayOop(a)->obj_at_put(index, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 assert(a->is_typeArray(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
267 BasicType array_type = typeArrayKlass::cast(a->klass())->element_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
268 if (array_type != value_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // The widen operation can potentially throw an exception, but cannot block,
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // so typeArrayOop a is safe if the call succeeds.
a61af66fc99e Initial load
duke
parents:
diff changeset
271 widen(value, value_type, array_type, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
272 }
a61af66fc99e Initial load
duke
parents:
diff changeset
273 switch (array_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
275 typeArrayOop(a)->bool_at_put(index, value->z);
a61af66fc99e Initial load
duke
parents:
diff changeset
276 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
277 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
278 typeArrayOop(a)->char_at_put(index, value->c);
a61af66fc99e Initial load
duke
parents:
diff changeset
279 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
280 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
281 typeArrayOop(a)->float_at_put(index, value->f);
a61af66fc99e Initial load
duke
parents:
diff changeset
282 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
283 case T_DOUBLE:
a61af66fc99e Initial load
duke
parents:
diff changeset
284 typeArrayOop(a)->double_at_put(index, value->d);
a61af66fc99e Initial load
duke
parents:
diff changeset
285 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
286 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
287 typeArrayOop(a)->byte_at_put(index, value->b);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
289 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
290 typeArrayOop(a)->short_at_put(index, value->s);
a61af66fc99e Initial load
duke
parents:
diff changeset
291 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
292 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
293 typeArrayOop(a)->int_at_put(index, value->i);
a61af66fc99e Initial load
duke
parents:
diff changeset
294 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
295 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
296 typeArrayOop(a)->long_at_put(index, value->j);
a61af66fc99e Initial load
duke
parents:
diff changeset
297 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
298 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
299 THROW(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304
a61af66fc99e Initial load
duke
parents:
diff changeset
305 klassOop Reflection::basic_type_mirror_to_arrayklass(oop basic_type_mirror, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
306 assert(java_lang_Class::is_primitive(basic_type_mirror), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
307 BasicType type = java_lang_Class::primitive_type(basic_type_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
308 if (type == T_VOID) {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
310 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 return Universe::typeArrayKlassObj(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
313 }
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315
a61af66fc99e Initial load
duke
parents:
diff changeset
316 oop Reflection:: basic_type_arrayklass_to_mirror(klassOop basic_type_arrayklass, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
317 BasicType type = typeArrayKlass::cast(basic_type_arrayklass)->element_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
318 return Universe::java_mirror(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
319 }
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321
a61af66fc99e Initial load
duke
parents:
diff changeset
322 arrayOop Reflection::reflect_new_array(oop element_mirror, jint length, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
323 if (element_mirror == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 THROW_0(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
326 if (length < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 THROW_0(vmSymbols::java_lang_NegativeArraySizeException());
a61af66fc99e Initial load
duke
parents:
diff changeset
328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
329 if (java_lang_Class::is_primitive(element_mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
330 klassOop tak = basic_type_mirror_to_arrayklass(element_mirror, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
331 return typeArrayKlass::cast(tak)->allocate(length, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
332 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 klassOop k = java_lang_Class::as_klassOop(element_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
334 if (Klass::cast(k)->oop_is_array() && arrayKlass::cast(k)->dimension() >= MAX_DIM) {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337 return oopFactory::new_objArray(k, length, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339 }
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 arrayOop Reflection::reflect_new_multi_array(oop element_mirror, typeArrayOop dim_array, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
343 assert(dim_array->is_typeArray(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
344 assert(typeArrayKlass::cast(dim_array->klass())->element_type() == T_INT, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 if (element_mirror == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
347 THROW_0(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
348 }
a61af66fc99e Initial load
duke
parents:
diff changeset
349
a61af66fc99e Initial load
duke
parents:
diff changeset
350 int len = dim_array->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
351 if (len <= 0 || len > MAX_DIM) {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 jint dimensions[MAX_DIM]; // C array copy of intArrayOop
a61af66fc99e Initial load
duke
parents:
diff changeset
356 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
357 int d = dim_array->int_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
358 if (d < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
359 THROW_0(vmSymbols::java_lang_NegativeArraySizeException());
a61af66fc99e Initial load
duke
parents:
diff changeset
360 }
a61af66fc99e Initial load
duke
parents:
diff changeset
361 dimensions[i] = d;
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 klassOop klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
365 int dim = len;
a61af66fc99e Initial load
duke
parents:
diff changeset
366 if (java_lang_Class::is_primitive(element_mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 klass = basic_type_mirror_to_arrayklass(element_mirror, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
368 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
369 klass = java_lang_Class::as_klassOop(element_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
370 if (Klass::cast(klass)->oop_is_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
371 int k_dim = arrayKlass::cast(klass)->dimension();
a61af66fc99e Initial load
duke
parents:
diff changeset
372 if (k_dim + len > MAX_DIM) {
a61af66fc99e Initial load
duke
parents:
diff changeset
373 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 dim += k_dim;
a61af66fc99e Initial load
duke
parents:
diff changeset
376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
378 klass = Klass::cast(klass)->array_klass(dim, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
379 oop obj = arrayKlass::cast(klass)->multi_allocate(len, dimensions, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
380 assert(obj->is_array(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
381 return arrayOop(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
382 }
a61af66fc99e Initial load
duke
parents:
diff changeset
383
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 oop Reflection::array_component_type(oop mirror, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
386 if (java_lang_Class::is_primitive(mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
387 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389
a61af66fc99e Initial load
duke
parents:
diff changeset
390 klassOop klass = java_lang_Class::as_klassOop(mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
391 if (!Klass::cast(klass)->oop_is_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
392 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 }
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 oop result = arrayKlass::cast(klass)->component_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
396 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
397 oop result2 = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
398 if (arrayKlass::cast(klass)->dimension() == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
399 if (Klass::cast(klass)->oop_is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
400 result2 = basic_type_arrayklass_to_mirror(klass, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
401 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
402 result2 = Klass::cast(objArrayKlass::cast(klass)->element_klass())->java_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
403 }
a61af66fc99e Initial load
duke
parents:
diff changeset
404 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
405 klassOop lower_dim = arrayKlass::cast(klass)->lower_dimension();
a61af66fc99e Initial load
duke
parents:
diff changeset
406 assert(Klass::cast(lower_dim)->oop_is_array(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
407 result2 = Klass::cast(lower_dim)->java_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
408 }
a61af66fc99e Initial load
duke
parents:
diff changeset
409 assert(result == result2, "results must be consistent");
a61af66fc99e Initial load
duke
parents:
diff changeset
410 #endif //ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
411 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
412 }
a61af66fc99e Initial load
duke
parents:
diff changeset
413
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 bool Reflection::reflect_check_access(klassOop field_class, AccessFlags acc, klassOop target_class, bool is_method_invoke, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // field_class : declaring class
a61af66fc99e Initial load
duke
parents:
diff changeset
417 // acc : declared field access
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // target_class : for protected
a61af66fc99e Initial load
duke
parents:
diff changeset
419
a61af66fc99e Initial load
duke
parents:
diff changeset
420 // Check if field or method is accessible to client. Throw an
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // IllegalAccessException and return false if not.
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423 // The "client" is the class associated with the nearest real frame
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // getCallerClass already skips Method.invoke frames, so pass 0 in
a61af66fc99e Initial load
duke
parents:
diff changeset
425 // that case (same as classic).
a61af66fc99e Initial load
duke
parents:
diff changeset
426 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
427 assert(THREAD->is_Java_thread(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
428 klassOop client_class = ((JavaThread *)THREAD)->security_get_caller_class(is_method_invoke ? 0 : 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 if (client_class != field_class) {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 if (!verify_class_access(client_class, field_class, false)
a61af66fc99e Initial load
duke
parents:
diff changeset
432 || !verify_field_access(client_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
433 field_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
434 field_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
435 acc,
a61af66fc99e Initial load
duke
parents:
diff changeset
436 false)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
437 THROW_(vmSymbols::java_lang_IllegalAccessException(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
438 }
a61af66fc99e Initial load
duke
parents:
diff changeset
439 }
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 // Additional test for protected members: JLS 6.6.2
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 if (acc.is_protected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 if (target_class != client_class) {
a61af66fc99e Initial load
duke
parents:
diff changeset
445 if (!is_same_class_package(client_class, field_class)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
446 if (!Klass::cast(target_class)->is_subclass_of(client_class)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
447 THROW_(vmSymbols::java_lang_IllegalAccessException(), false);
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 }
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 // Passed all tests
a61af66fc99e Initial load
duke
parents:
diff changeset
454 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457
a61af66fc99e Initial load
duke
parents:
diff changeset
458 bool Reflection::verify_class_access(klassOop current_class, klassOop new_class, bool classloader_only) {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 // Verify that current_class can access new_class. If the classloader_only
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // flag is set, we automatically allow any accesses in which current_class
a61af66fc99e Initial load
duke
parents:
diff changeset
461 // doesn't have a classloader.
a61af66fc99e Initial load
duke
parents:
diff changeset
462 if ((current_class == NULL) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
463 (current_class == new_class) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
464 (instanceKlass::cast(new_class)->is_public()) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
465 is_same_class_package(current_class, new_class)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
466 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
468 // New (1.4) reflection implementation. Allow all accesses from
a61af66fc99e Initial load
duke
parents:
diff changeset
469 // sun/reflect/MagicAccessorImpl subclasses to succeed trivially.
a61af66fc99e Initial load
duke
parents:
diff changeset
470 if ( JDK_Version::is_gte_jdk14x_version()
a61af66fc99e Initial load
duke
parents:
diff changeset
471 && UseNewReflection
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 665
diff changeset
472 && Klass::cast(current_class)->is_subclass_of(SystemDictionary::reflect_MagicAccessorImpl_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
473 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
474 }
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 return can_relax_access_check_for(current_class, new_class, classloader_only);
a61af66fc99e Initial load
duke
parents:
diff changeset
477 }
a61af66fc99e Initial load
duke
parents:
diff changeset
478
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
479 static bool under_host_klass(instanceKlass* ik, klassOop host_klass) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
480 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
481 for (;;) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
482 klassOop hc = (klassOop) ik->host_klass();
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
483 if (hc == NULL) return false;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
484 if (hc == host_klass) return true;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
485 ik = instanceKlass::cast(hc);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
486
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
487 // There's no way to make a host class loop short of patching memory.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
488 // Therefore there cannot be a loop here unles there's another bug.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
489 // Still, let's check for it.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
490 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
491 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
492 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
493
0
a61af66fc99e Initial load
duke
parents:
diff changeset
494 bool Reflection::can_relax_access_check_for(
a61af66fc99e Initial load
duke
parents:
diff changeset
495 klassOop accessor, klassOop accessee, bool classloader_only) {
a61af66fc99e Initial load
duke
parents:
diff changeset
496 instanceKlass* accessor_ik = instanceKlass::cast(accessor);
a61af66fc99e Initial load
duke
parents:
diff changeset
497 instanceKlass* accessee_ik = instanceKlass::cast(accessee);
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
498
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
499 // 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
500 // because one is inside the other.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
501 if (under_host_klass(accessor_ik, accessee) ||
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
502 under_host_klass(accessee_ik, accessor))
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
503 return true;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 196
diff changeset
504
1152
cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 1142
diff changeset
505 // Adapter frames can access anything.
cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 1142
diff changeset
506 if (MethodHandleCompiler::klass_is_method_handle_adapter_holder(accessor))
cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 1142
diff changeset
507 // This is an internal adapter frame from the MethodHandleCompiler.
cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 1142
diff changeset
508 return true;
cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 1142
diff changeset
509
0
a61af66fc99e Initial load
duke
parents:
diff changeset
510 if (RelaxAccessControlCheck ||
a61af66fc99e Initial load
duke
parents:
diff changeset
511 (accessor_ik->major_version() < JAVA_1_5_VERSION &&
a61af66fc99e Initial load
duke
parents:
diff changeset
512 accessee_ik->major_version() < JAVA_1_5_VERSION)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
513 return classloader_only &&
a61af66fc99e Initial load
duke
parents:
diff changeset
514 Verifier::relax_verify_for(accessor_ik->class_loader()) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
515 accessor_ik->protection_domain() == accessee_ik->protection_domain() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
516 accessor_ik->class_loader() == accessee_ik->class_loader();
a61af66fc99e Initial load
duke
parents:
diff changeset
517 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
518 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
520 }
a61af66fc99e Initial load
duke
parents:
diff changeset
521
a61af66fc99e Initial load
duke
parents:
diff changeset
522 bool Reflection::verify_field_access(klassOop current_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
523 klassOop resolved_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
524 klassOop field_class,
a61af66fc99e Initial load
duke
parents:
diff changeset
525 AccessFlags access,
a61af66fc99e Initial load
duke
parents:
diff changeset
526 bool classloader_only,
a61af66fc99e Initial load
duke
parents:
diff changeset
527 bool protected_restriction) {
a61af66fc99e Initial load
duke
parents:
diff changeset
528 // Verify that current_class can access a field of field_class, where that
a61af66fc99e Initial load
duke
parents:
diff changeset
529 // field's access bits are "access". We assume that we've already verified
a61af66fc99e Initial load
duke
parents:
diff changeset
530 // that current_class can access field_class.
a61af66fc99e Initial load
duke
parents:
diff changeset
531 //
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // If the classloader_only flag is set, we automatically allow any accesses
a61af66fc99e Initial load
duke
parents:
diff changeset
533 // in which current_class doesn't have a classloader.
a61af66fc99e Initial load
duke
parents:
diff changeset
534 //
a61af66fc99e Initial load
duke
parents:
diff changeset
535 // "resolved_class" is the runtime type of "field_class". Sometimes we don't
a61af66fc99e Initial load
duke
parents:
diff changeset
536 // need this distinction (e.g. if all we have is the runtime type, or during
a61af66fc99e Initial load
duke
parents:
diff changeset
537 // class file parsing when we only care about the static type); in that case
a61af66fc99e Initial load
duke
parents:
diff changeset
538 // callers should ensure that resolved_class == field_class.
a61af66fc99e Initial load
duke
parents:
diff changeset
539 //
a61af66fc99e Initial load
duke
parents:
diff changeset
540 if ((current_class == NULL) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
541 (current_class == field_class) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
542 access.is_public()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
543 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 if (access.is_protected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
547 if (!protected_restriction) {
a61af66fc99e Initial load
duke
parents:
diff changeset
548 // See if current_class is a subclass of field_class
a61af66fc99e Initial load
duke
parents:
diff changeset
549 if (Klass::cast(current_class)->is_subclass_of(field_class)) {
115
e7a91a357527 6622385: Accessing protected static methods
kamg
parents: 51
diff changeset
550 if (access.is_static() || // static fields are ok, see 6622385
e7a91a357527 6622385: Accessing protected static methods
kamg
parents: 51
diff changeset
551 current_class == resolved_class ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
552 field_class == resolved_class ||
a61af66fc99e Initial load
duke
parents:
diff changeset
553 Klass::cast(current_class)->is_subclass_of(resolved_class) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
554 Klass::cast(resolved_class)->is_subclass_of(current_class)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
555 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
556 }
a61af66fc99e Initial load
duke
parents:
diff changeset
557 }
a61af66fc99e Initial load
duke
parents:
diff changeset
558 }
a61af66fc99e Initial load
duke
parents:
diff changeset
559 }
a61af66fc99e Initial load
duke
parents:
diff changeset
560
a61af66fc99e Initial load
duke
parents:
diff changeset
561 if (!access.is_private() && is_same_class_package(current_class, field_class)) {
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 // New (1.4) reflection implementation. Allow all accesses from
a61af66fc99e Initial load
duke
parents:
diff changeset
566 // sun/reflect/MagicAccessorImpl subclasses to succeed trivially.
a61af66fc99e Initial load
duke
parents:
diff changeset
567 if ( JDK_Version::is_gte_jdk14x_version()
a61af66fc99e Initial load
duke
parents:
diff changeset
568 && UseNewReflection
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 665
diff changeset
569 && Klass::cast(current_class)->is_subclass_of(SystemDictionary::reflect_MagicAccessorImpl_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
570 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
571 }
a61af66fc99e Initial load
duke
parents:
diff changeset
572
a61af66fc99e Initial load
duke
parents:
diff changeset
573 return can_relax_access_check_for(
a61af66fc99e Initial load
duke
parents:
diff changeset
574 current_class, field_class, classloader_only);
a61af66fc99e Initial load
duke
parents:
diff changeset
575 }
a61af66fc99e Initial load
duke
parents:
diff changeset
576
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578 bool Reflection::is_same_class_package(klassOop class1, klassOop class2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
579 return instanceKlass::cast(class1)->is_same_class_package(class2);
a61af66fc99e Initial load
duke
parents:
diff changeset
580 }
a61af66fc99e Initial load
duke
parents:
diff changeset
581
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
582 bool Reflection::is_same_package_member(klassOop class1, klassOop class2, TRAPS) {
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
583 return instanceKlass::cast(class1)->is_same_package_member(class2, THREAD);
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
584 }
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
585
0
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587 // Checks that the 'outer' klass has declared 'inner' as being an inner klass. If not,
a61af66fc99e Initial load
duke
parents:
diff changeset
588 // throw an incompatible class change exception
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
589 // 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
590 // 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
591 // 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
592 void Reflection::check_for_inner_class(instanceKlassHandle outer, instanceKlassHandle inner,
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
593 bool inner_is_member, TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
594 const int inner_class_info_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
595 const int outer_class_info_index = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
596
a61af66fc99e Initial load
duke
parents:
diff changeset
597 typeArrayHandle icls (THREAD, outer->inner_classes());
a61af66fc99e Initial load
duke
parents:
diff changeset
598 constantPoolHandle cp (THREAD, outer->constants());
a61af66fc99e Initial load
duke
parents:
diff changeset
599 for(int i = 0; i < icls->length(); i += 4) {
a61af66fc99e Initial load
duke
parents:
diff changeset
600 int ioff = icls->ushort_at(i + inner_class_info_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
601 int ooff = icls->ushort_at(i + outer_class_info_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
602
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
603 if (inner_is_member && ioff != 0 && ooff != 0) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
604 klassOop o = cp->klass_at(ooff, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
605 if (o == outer()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
606 klassOop i = cp->klass_at(ioff, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
607 if (i == inner()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
608 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
609 }
a61af66fc99e Initial load
duke
parents:
diff changeset
610 }
a61af66fc99e Initial load
duke
parents:
diff changeset
611 }
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
612 if (!inner_is_member && ioff != 0 && ooff == 0 &&
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
613 cp->klass_name_at_matches(inner, ioff)) {
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
614 klassOop i = cp->klass_at(ioff, CHECK);
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
615 if (i == inner()) {
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
616 return;
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
617 }
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 431
diff changeset
618 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
619 }
a61af66fc99e Initial load
duke
parents:
diff changeset
620
a61af66fc99e Initial load
duke
parents:
diff changeset
621 // 'inner' not declared as an inner klass in outer
a61af66fc99e Initial load
duke
parents:
diff changeset
622 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
623 Exceptions::fthrow(
a61af66fc99e Initial load
duke
parents:
diff changeset
624 THREAD_AND_LOCATION,
a61af66fc99e Initial load
duke
parents:
diff changeset
625 vmSymbolHandles::java_lang_IncompatibleClassChangeError(),
a61af66fc99e Initial load
duke
parents:
diff changeset
626 "%s and %s disagree on InnerClasses attribute",
a61af66fc99e Initial load
duke
parents:
diff changeset
627 outer->external_name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
628 inner->external_name()
a61af66fc99e Initial load
duke
parents:
diff changeset
629 );
a61af66fc99e Initial load
duke
parents:
diff changeset
630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
631
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // Utility method converting a single SignatureStream element into java.lang.Class instance
a61af66fc99e Initial load
duke
parents:
diff changeset
633
a61af66fc99e Initial load
duke
parents:
diff changeset
634 oop get_mirror_from_signature(methodHandle method, SignatureStream* ss, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
635 switch (ss->type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
636 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
637 assert(ss->type() != T_VOID || ss->at_return_type(), "T_VOID should only appear as return type");
a61af66fc99e Initial load
duke
parents:
diff changeset
638 return java_lang_Class::primitive_mirror(ss->type());
a61af66fc99e Initial load
duke
parents:
diff changeset
639 case T_OBJECT:
a61af66fc99e Initial load
duke
parents:
diff changeset
640 case T_ARRAY:
a61af66fc99e Initial load
duke
parents:
diff changeset
641 symbolOop name = ss->as_symbol(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
642 oop loader = instanceKlass::cast(method->method_holder())->class_loader();
a61af66fc99e Initial load
duke
parents:
diff changeset
643 oop protection_domain = instanceKlass::cast(method->method_holder())->protection_domain();
a61af66fc99e Initial load
duke
parents:
diff changeset
644 klassOop k = SystemDictionary::resolve_or_fail(
a61af66fc99e Initial load
duke
parents:
diff changeset
645 symbolHandle(THREAD, name),
a61af66fc99e Initial load
duke
parents:
diff changeset
646 Handle(THREAD, loader),
a61af66fc99e Initial load
duke
parents:
diff changeset
647 Handle(THREAD, protection_domain),
a61af66fc99e Initial load
duke
parents:
diff changeset
648 true, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
649 if (TraceClassResolution) {
a61af66fc99e Initial load
duke
parents:
diff changeset
650 trace_class_resolution(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
651 }
a61af66fc99e Initial load
duke
parents:
diff changeset
652 return k->klass_part()->java_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
653 };
a61af66fc99e Initial load
duke
parents:
diff changeset
654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
655
a61af66fc99e Initial load
duke
parents:
diff changeset
656
a61af66fc99e Initial load
duke
parents:
diff changeset
657 objArrayHandle Reflection::get_parameter_types(methodHandle method, int parameter_count, oop* return_type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
658 // Allocate array holding parameter types (java.lang.Class instances)
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 665
diff changeset
659 objArrayOop m = oopFactory::new_objArray(SystemDictionary::Class_klass(), parameter_count, CHECK_(objArrayHandle()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
660 objArrayHandle mirrors (THREAD, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
661 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
662 // Collect parameter types
a61af66fc99e Initial load
duke
parents:
diff changeset
663 symbolHandle signature (THREAD, method->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
664 SignatureStream ss(signature);
a61af66fc99e Initial load
duke
parents:
diff changeset
665 while (!ss.at_return_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
666 oop mirror = get_mirror_from_signature(method, &ss, CHECK_(objArrayHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
667 mirrors->obj_at_put(index++, mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
668 ss.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
669 }
a61af66fc99e Initial load
duke
parents:
diff changeset
670 assert(index == parameter_count, "invalid parameter count");
a61af66fc99e Initial load
duke
parents:
diff changeset
671 if (return_type != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
672 // Collect return type as well
a61af66fc99e Initial load
duke
parents:
diff changeset
673 assert(ss.at_return_type(), "return type should be present");
a61af66fc99e Initial load
duke
parents:
diff changeset
674 *return_type = get_mirror_from_signature(method, &ss, CHECK_(objArrayHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
675 }
a61af66fc99e Initial load
duke
parents:
diff changeset
676 return mirrors;
a61af66fc99e Initial load
duke
parents:
diff changeset
677 }
a61af66fc99e Initial load
duke
parents:
diff changeset
678
a61af66fc99e Initial load
duke
parents:
diff changeset
679 objArrayHandle Reflection::get_exception_types(methodHandle method, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
680 return method->resolved_checked_exceptions(CHECK_(objArrayHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
681 }
a61af66fc99e Initial load
duke
parents:
diff changeset
682
a61af66fc99e Initial load
duke
parents:
diff changeset
683
a61af66fc99e Initial load
duke
parents:
diff changeset
684 Handle Reflection::new_type(symbolHandle signature, KlassHandle k, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
685 // Basic types
a61af66fc99e Initial load
duke
parents:
diff changeset
686 BasicType type = vmSymbols::signature_type(signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
687 if (type != T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
688 return Handle(THREAD, Universe::java_mirror(type));
a61af66fc99e Initial load
duke
parents:
diff changeset
689 }
a61af66fc99e Initial load
duke
parents:
diff changeset
690
a61af66fc99e Initial load
duke
parents:
diff changeset
691 oop loader = instanceKlass::cast(k())->class_loader();
a61af66fc99e Initial load
duke
parents:
diff changeset
692 oop protection_domain = Klass::cast(k())->protection_domain();
a61af66fc99e Initial load
duke
parents:
diff changeset
693 klassOop result = SystemDictionary::resolve_or_fail(signature,
a61af66fc99e Initial load
duke
parents:
diff changeset
694 Handle(THREAD, loader),
a61af66fc99e Initial load
duke
parents:
diff changeset
695 Handle(THREAD, protection_domain),
a61af66fc99e Initial load
duke
parents:
diff changeset
696 true, CHECK_(Handle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
697
a61af66fc99e Initial load
duke
parents:
diff changeset
698 if (TraceClassResolution) {
a61af66fc99e Initial load
duke
parents:
diff changeset
699 trace_class_resolution(result);
a61af66fc99e Initial load
duke
parents:
diff changeset
700 }
a61af66fc99e Initial load
duke
parents:
diff changeset
701
a61af66fc99e Initial load
duke
parents:
diff changeset
702 oop nt = Klass::cast(result)->java_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
703 return Handle(THREAD, nt);
a61af66fc99e Initial load
duke
parents:
diff changeset
704 }
a61af66fc99e Initial load
duke
parents:
diff changeset
705
a61af66fc99e Initial load
duke
parents:
diff changeset
706
a61af66fc99e Initial load
duke
parents:
diff changeset
707 oop Reflection::new_method(methodHandle method, bool intern_name, bool for_constant_pool_access, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
708 // In jdk1.2.x, getMethods on an interface erroneously includes <clinit>, thus the complicated assert.
a61af66fc99e Initial load
duke
parents:
diff changeset
709 // Also allow sun.reflect.ConstantPool to refer to <clinit> methods as java.lang.reflect.Methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
710 assert(!method()->is_initializer() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
711 (for_constant_pool_access && method()->is_static()) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
712 (method()->name() == vmSymbols::class_initializer_name()
a61af66fc99e Initial load
duke
parents:
diff changeset
713 && Klass::cast(method()->method_holder())->is_interface() && JDK_Version::is_jdk12x_version()), "should call new_constructor instead");
a61af66fc99e Initial load
duke
parents:
diff changeset
714 instanceKlassHandle holder (THREAD, method->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
715 int slot = method->method_idnum();
a61af66fc99e Initial load
duke
parents:
diff changeset
716
a61af66fc99e Initial load
duke
parents:
diff changeset
717 symbolHandle signature (THREAD, method->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
718 int parameter_count = ArgumentCount(signature).size();
a61af66fc99e Initial load
duke
parents:
diff changeset
719 oop return_type_oop = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
720 objArrayHandle parameter_types = get_parameter_types(method, parameter_count, &return_type_oop, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
721 if (parameter_types.is_null() || return_type_oop == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
722
a61af66fc99e Initial load
duke
parents:
diff changeset
723 Handle return_type(THREAD, return_type_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
724
a61af66fc99e Initial load
duke
parents:
diff changeset
725 objArrayHandle exception_types = get_exception_types(method, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
726
a61af66fc99e Initial load
duke
parents:
diff changeset
727 if (exception_types.is_null()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
728
a61af66fc99e Initial load
duke
parents:
diff changeset
729 symbolHandle method_name(THREAD, method->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
730 Handle name;
a61af66fc99e Initial load
duke
parents:
diff changeset
731 if (intern_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
732 // intern_name is only true with UseNewReflection
a61af66fc99e Initial load
duke
parents:
diff changeset
733 oop name_oop = StringTable::intern(method_name(), CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
734 name = Handle(THREAD, name_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
735 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
736 name = java_lang_String::create_from_symbol(method_name, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
737 }
a61af66fc99e Initial load
duke
parents:
diff changeset
738 if (name.is_null()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
739
a61af66fc99e Initial load
duke
parents:
diff changeset
740 int modifiers = method->access_flags().as_int() & JVM_RECOGNIZED_METHOD_MODIFIERS;
a61af66fc99e Initial load
duke
parents:
diff changeset
741
a61af66fc99e Initial load
duke
parents:
diff changeset
742 Handle mh = java_lang_reflect_Method::create(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
743
a61af66fc99e Initial load
duke
parents:
diff changeset
744 java_lang_reflect_Method::set_clazz(mh(), holder->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
745 java_lang_reflect_Method::set_slot(mh(), slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
746 java_lang_reflect_Method::set_name(mh(), name());
a61af66fc99e Initial load
duke
parents:
diff changeset
747 java_lang_reflect_Method::set_return_type(mh(), return_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
748 java_lang_reflect_Method::set_parameter_types(mh(), parameter_types());
a61af66fc99e Initial load
duke
parents:
diff changeset
749 java_lang_reflect_Method::set_exception_types(mh(), exception_types());
a61af66fc99e Initial load
duke
parents:
diff changeset
750 java_lang_reflect_Method::set_modifiers(mh(), modifiers);
a61af66fc99e Initial load
duke
parents:
diff changeset
751 java_lang_reflect_Method::set_override(mh(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
752 if (java_lang_reflect_Method::has_signature_field() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
753 method->generic_signature() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
754 symbolHandle gs(THREAD, method->generic_signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
755 Handle sig = java_lang_String::create_from_symbol(gs, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
756 java_lang_reflect_Method::set_signature(mh(), sig());
a61af66fc99e Initial load
duke
parents:
diff changeset
757 }
a61af66fc99e Initial load
duke
parents:
diff changeset
758 if (java_lang_reflect_Method::has_annotations_field()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
759 java_lang_reflect_Method::set_annotations(mh(), method->annotations());
a61af66fc99e Initial load
duke
parents:
diff changeset
760 }
a61af66fc99e Initial load
duke
parents:
diff changeset
761 if (java_lang_reflect_Method::has_parameter_annotations_field()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
762 java_lang_reflect_Method::set_parameter_annotations(mh(), method->parameter_annotations());
a61af66fc99e Initial load
duke
parents:
diff changeset
763 }
a61af66fc99e Initial load
duke
parents:
diff changeset
764 if (java_lang_reflect_Method::has_annotation_default_field()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
765 java_lang_reflect_Method::set_annotation_default(mh(), method->annotation_default());
a61af66fc99e Initial load
duke
parents:
diff changeset
766 }
a61af66fc99e Initial load
duke
parents:
diff changeset
767 return mh();
a61af66fc99e Initial load
duke
parents:
diff changeset
768 }
a61af66fc99e Initial load
duke
parents:
diff changeset
769
a61af66fc99e Initial load
duke
parents:
diff changeset
770
a61af66fc99e Initial load
duke
parents:
diff changeset
771 oop Reflection::new_constructor(methodHandle method, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
772 assert(method()->is_initializer(), "should call new_method instead");
a61af66fc99e Initial load
duke
parents:
diff changeset
773
a61af66fc99e Initial load
duke
parents:
diff changeset
774 instanceKlassHandle holder (THREAD, method->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
775 int slot = method->method_idnum();
a61af66fc99e Initial load
duke
parents:
diff changeset
776
a61af66fc99e Initial load
duke
parents:
diff changeset
777 symbolHandle signature (THREAD, method->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
778 int parameter_count = ArgumentCount(signature).size();
a61af66fc99e Initial load
duke
parents:
diff changeset
779 objArrayHandle parameter_types = get_parameter_types(method, parameter_count, NULL, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
780 if (parameter_types.is_null()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
781
a61af66fc99e Initial load
duke
parents:
diff changeset
782 objArrayHandle exception_types = get_exception_types(method, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
783 if (exception_types.is_null()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
784
a61af66fc99e Initial load
duke
parents:
diff changeset
785 int modifiers = method->access_flags().as_int() & JVM_RECOGNIZED_METHOD_MODIFIERS;
a61af66fc99e Initial load
duke
parents:
diff changeset
786
a61af66fc99e Initial load
duke
parents:
diff changeset
787 Handle ch = java_lang_reflect_Constructor::create(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
788
a61af66fc99e Initial load
duke
parents:
diff changeset
789 java_lang_reflect_Constructor::set_clazz(ch(), holder->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
790 java_lang_reflect_Constructor::set_slot(ch(), slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
791 java_lang_reflect_Constructor::set_parameter_types(ch(), parameter_types());
a61af66fc99e Initial load
duke
parents:
diff changeset
792 java_lang_reflect_Constructor::set_exception_types(ch(), exception_types());
a61af66fc99e Initial load
duke
parents:
diff changeset
793 java_lang_reflect_Constructor::set_modifiers(ch(), modifiers);
a61af66fc99e Initial load
duke
parents:
diff changeset
794 java_lang_reflect_Constructor::set_override(ch(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
795 if (java_lang_reflect_Constructor::has_signature_field() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
796 method->generic_signature() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
797 symbolHandle gs(THREAD, method->generic_signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
798 Handle sig = java_lang_String::create_from_symbol(gs, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
799 java_lang_reflect_Constructor::set_signature(ch(), sig());
a61af66fc99e Initial load
duke
parents:
diff changeset
800 }
a61af66fc99e Initial load
duke
parents:
diff changeset
801 if (java_lang_reflect_Constructor::has_annotations_field()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
802 java_lang_reflect_Constructor::set_annotations(ch(), method->annotations());
a61af66fc99e Initial load
duke
parents:
diff changeset
803 }
a61af66fc99e Initial load
duke
parents:
diff changeset
804 if (java_lang_reflect_Constructor::has_parameter_annotations_field()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
805 java_lang_reflect_Constructor::set_parameter_annotations(ch(), method->parameter_annotations());
a61af66fc99e Initial load
duke
parents:
diff changeset
806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
807 return ch();
a61af66fc99e Initial load
duke
parents:
diff changeset
808 }
a61af66fc99e Initial load
duke
parents:
diff changeset
809
a61af66fc99e Initial load
duke
parents:
diff changeset
810
a61af66fc99e Initial load
duke
parents:
diff changeset
811 oop Reflection::new_field(fieldDescriptor* fd, bool intern_name, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
812 symbolHandle field_name(THREAD, fd->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
813 Handle name;
a61af66fc99e Initial load
duke
parents:
diff changeset
814 if (intern_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
815 // intern_name is only true with UseNewReflection
a61af66fc99e Initial load
duke
parents:
diff changeset
816 oop name_oop = StringTable::intern(field_name(), CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
817 name = Handle(THREAD, name_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
818 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
819 name = java_lang_String::create_from_symbol(field_name, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
820 }
a61af66fc99e Initial load
duke
parents:
diff changeset
821 symbolHandle signature (THREAD, fd->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
822 KlassHandle holder (THREAD, fd->field_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
823 Handle type = new_type(signature, holder, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
824 Handle rh = java_lang_reflect_Field::create(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
825
a61af66fc99e Initial load
duke
parents:
diff changeset
826 java_lang_reflect_Field::set_clazz(rh(), Klass::cast(fd->field_holder())->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
827 java_lang_reflect_Field::set_slot(rh(), fd->index());
a61af66fc99e Initial load
duke
parents:
diff changeset
828 java_lang_reflect_Field::set_name(rh(), name());
a61af66fc99e Initial load
duke
parents:
diff changeset
829 java_lang_reflect_Field::set_type(rh(), type());
a61af66fc99e Initial load
duke
parents:
diff changeset
830 // Note the ACC_ANNOTATION bit, which is a per-class access flag, is never set here.
a61af66fc99e Initial load
duke
parents:
diff changeset
831 java_lang_reflect_Field::set_modifiers(rh(), fd->access_flags().as_int() & JVM_RECOGNIZED_FIELD_MODIFIERS);
a61af66fc99e Initial load
duke
parents:
diff changeset
832 java_lang_reflect_Field::set_override(rh(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
833 if (java_lang_reflect_Field::has_signature_field() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
834 fd->generic_signature() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
835 symbolHandle gs(THREAD, fd->generic_signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
836 Handle sig = java_lang_String::create_from_symbol(gs, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
837 java_lang_reflect_Field::set_signature(rh(), sig());
a61af66fc99e Initial load
duke
parents:
diff changeset
838 }
a61af66fc99e Initial load
duke
parents:
diff changeset
839 if (java_lang_reflect_Field::has_annotations_field()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
840 java_lang_reflect_Field::set_annotations(rh(), fd->annotations());
a61af66fc99e Initial load
duke
parents:
diff changeset
841 }
a61af66fc99e Initial load
duke
parents:
diff changeset
842 return rh();
a61af66fc99e Initial load
duke
parents:
diff changeset
843 }
a61af66fc99e Initial load
duke
parents:
diff changeset
844
a61af66fc99e Initial load
duke
parents:
diff changeset
845
a61af66fc99e Initial load
duke
parents:
diff changeset
846 //---------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
847 //
a61af66fc99e Initial load
duke
parents:
diff changeset
848 // Supporting routines for old native code-based reflection (pre-JDK 1.4).
a61af66fc99e Initial load
duke
parents:
diff changeset
849 //
a61af66fc99e Initial load
duke
parents:
diff changeset
850 // See reflection.hpp for details.
a61af66fc99e Initial load
duke
parents:
diff changeset
851 //
a61af66fc99e Initial load
duke
parents:
diff changeset
852 //---------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
853
a61af66fc99e Initial load
duke
parents:
diff changeset
854 #ifdef SUPPORT_OLD_REFLECTION
a61af66fc99e Initial load
duke
parents:
diff changeset
855
a61af66fc99e Initial load
duke
parents:
diff changeset
856 methodHandle Reflection::resolve_interface_call(instanceKlassHandle klass, methodHandle method,
a61af66fc99e Initial load
duke
parents:
diff changeset
857 KlassHandle recv_klass, Handle receiver, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
858 assert(!method.is_null() , "method should not be null");
a61af66fc99e Initial load
duke
parents:
diff changeset
859
a61af66fc99e Initial load
duke
parents:
diff changeset
860 CallInfo info;
a61af66fc99e Initial load
duke
parents:
diff changeset
861 symbolHandle signature (THREAD, method->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
862 symbolHandle name (THREAD, method->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
863 LinkResolver::resolve_interface_call(info, receiver, recv_klass, klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
864 name, signature,
a61af66fc99e Initial load
duke
parents:
diff changeset
865 KlassHandle(), false, true,
a61af66fc99e Initial load
duke
parents:
diff changeset
866 CHECK_(methodHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
867 return info.selected_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
868 }
a61af66fc99e Initial load
duke
parents:
diff changeset
869
a61af66fc99e Initial load
duke
parents:
diff changeset
870
a61af66fc99e Initial load
duke
parents:
diff changeset
871 oop Reflection::invoke(instanceKlassHandle klass, methodHandle reflected_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
872 Handle receiver, bool override, objArrayHandle ptypes,
a61af66fc99e Initial load
duke
parents:
diff changeset
873 BasicType rtype, objArrayHandle args, bool is_method_invoke, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
874 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
875
a61af66fc99e Initial load
duke
parents:
diff changeset
876 methodHandle method; // actual method to invoke
a61af66fc99e Initial load
duke
parents:
diff changeset
877 KlassHandle target_klass; // target klass, receiver's klass for non-static
a61af66fc99e Initial load
duke
parents:
diff changeset
878
a61af66fc99e Initial load
duke
parents:
diff changeset
879 // Ensure klass is initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
880 klass->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
881
a61af66fc99e Initial load
duke
parents:
diff changeset
882 bool is_static = reflected_method->is_static();
a61af66fc99e Initial load
duke
parents:
diff changeset
883 if (is_static) {
a61af66fc99e Initial load
duke
parents:
diff changeset
884 // ignore receiver argument
a61af66fc99e Initial load
duke
parents:
diff changeset
885 method = reflected_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
886 target_klass = klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
887 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
888 // check for null receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
889 if (receiver.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
890 THROW_0(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
891 }
a61af66fc99e Initial load
duke
parents:
diff changeset
892 // Check class of receiver against class declaring method
a61af66fc99e Initial load
duke
parents:
diff changeset
893 if (!receiver->is_a(klass())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
894 THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "object is not an instance of declaring class");
a61af66fc99e Initial load
duke
parents:
diff changeset
895 }
a61af66fc99e Initial load
duke
parents:
diff changeset
896 // target klass is receiver's klass
a61af66fc99e Initial load
duke
parents:
diff changeset
897 target_klass = KlassHandle(THREAD, receiver->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
898 // no need to resolve if method is private or <init>
a61af66fc99e Initial load
duke
parents:
diff changeset
899 if (reflected_method->is_private() || reflected_method->name() == vmSymbols::object_initializer_name()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
900 method = reflected_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
901 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
902 // resolve based on the receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
903 if (instanceKlass::cast(reflected_method->method_holder())->is_interface()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
904 // resolve interface call
a61af66fc99e Initial load
duke
parents:
diff changeset
905 if (ReflectionWrapResolutionErrors) {
a61af66fc99e Initial load
duke
parents:
diff changeset
906 // new default: 6531596
a61af66fc99e Initial load
duke
parents:
diff changeset
907 // Match resolution errors with those thrown due to reflection inlining
a61af66fc99e Initial load
duke
parents:
diff changeset
908 // Linktime resolution & IllegalAccessCheck already done by Class.getMethod()
a61af66fc99e Initial load
duke
parents:
diff changeset
909 method = resolve_interface_call(klass, reflected_method, target_klass, receiver, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
910 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
911 // Method resolution threw an exception; wrap it in an InvocationTargetException
a61af66fc99e Initial load
duke
parents:
diff changeset
912 oop resolution_exception = PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
913 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
914 JavaCallArguments args(Handle(THREAD, resolution_exception));
a61af66fc99e Initial load
duke
parents:
diff changeset
915 THROW_ARG_0(vmSymbolHandles::java_lang_reflect_InvocationTargetException(),
a61af66fc99e Initial load
duke
parents:
diff changeset
916 vmSymbolHandles::throwable_void_signature(),
a61af66fc99e Initial load
duke
parents:
diff changeset
917 &args);
a61af66fc99e Initial load
duke
parents:
diff changeset
918 }
a61af66fc99e Initial load
duke
parents:
diff changeset
919 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
920 method = resolve_interface_call(klass, reflected_method, target_klass, receiver, CHECK_(NULL));
a61af66fc99e Initial load
duke
parents:
diff changeset
921 }
a61af66fc99e Initial load
duke
parents:
diff changeset
922 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
923 // if the method can be overridden, we resolve using the vtable index.
a61af66fc99e Initial load
duke
parents:
diff changeset
924 int index = reflected_method->vtable_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
925 method = reflected_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
926 if (index != methodOopDesc::nonvirtual_vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
927 // target_klass might be an arrayKlassOop but all vtables start at
a61af66fc99e Initial load
duke
parents:
diff changeset
928 // the same place. The cast is to avoid virtual call and assertion.
a61af66fc99e Initial load
duke
parents:
diff changeset
929 instanceKlass* inst = (instanceKlass*)target_klass()->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
930 method = methodHandle(THREAD, inst->method_at_vtable(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
931 }
a61af66fc99e Initial load
duke
parents:
diff changeset
932 if (!method.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
933 // Check for abstract methods as well
a61af66fc99e Initial load
duke
parents:
diff changeset
934 if (method->is_abstract()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
935 // new default: 6531596
a61af66fc99e Initial load
duke
parents:
diff changeset
936 if (ReflectionWrapResolutionErrors) {
a61af66fc99e Initial load
duke
parents:
diff changeset
937 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
938 Handle h_origexception = Exceptions::new_exception(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
939 vmSymbols::java_lang_AbstractMethodError(),
a61af66fc99e Initial load
duke
parents:
diff changeset
940 methodOopDesc::name_and_sig_as_C_string(Klass::cast(target_klass()),
a61af66fc99e Initial load
duke
parents:
diff changeset
941 method->name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
942 method->signature()));
a61af66fc99e Initial load
duke
parents:
diff changeset
943 JavaCallArguments args(h_origexception);
a61af66fc99e Initial load
duke
parents:
diff changeset
944 THROW_ARG_0(vmSymbolHandles::java_lang_reflect_InvocationTargetException(),
a61af66fc99e Initial load
duke
parents:
diff changeset
945 vmSymbolHandles::throwable_void_signature(),
a61af66fc99e Initial load
duke
parents:
diff changeset
946 &args);
a61af66fc99e Initial load
duke
parents:
diff changeset
947 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
948 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
949 THROW_MSG_0(vmSymbols::java_lang_AbstractMethodError(),
a61af66fc99e Initial load
duke
parents:
diff changeset
950 methodOopDesc::name_and_sig_as_C_string(Klass::cast(target_klass()),
a61af66fc99e Initial load
duke
parents:
diff changeset
951 method->name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
952 method->signature()));
a61af66fc99e Initial load
duke
parents:
diff changeset
953 }
a61af66fc99e Initial load
duke
parents:
diff changeset
954 }
a61af66fc99e Initial load
duke
parents:
diff changeset
955 }
a61af66fc99e Initial load
duke
parents:
diff changeset
956 }
a61af66fc99e Initial load
duke
parents:
diff changeset
957 }
a61af66fc99e Initial load
duke
parents:
diff changeset
958 }
a61af66fc99e Initial load
duke
parents:
diff changeset
959
a61af66fc99e Initial load
duke
parents:
diff changeset
960 // I believe this is a ShouldNotGetHere case which requires
a61af66fc99e Initial load
duke
parents:
diff changeset
961 // an internal vtable bug. If you ever get this please let Karen know.
a61af66fc99e Initial load
duke
parents:
diff changeset
962 if (method.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
963 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
964 THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(),
a61af66fc99e Initial load
duke
parents:
diff changeset
965 methodOopDesc::name_and_sig_as_C_string(Klass::cast(klass()),
a61af66fc99e Initial load
duke
parents:
diff changeset
966 reflected_method->name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
967 reflected_method->signature()));
a61af66fc99e Initial load
duke
parents:
diff changeset
968 }
a61af66fc99e Initial load
duke
parents:
diff changeset
969
a61af66fc99e Initial load
duke
parents:
diff changeset
970 // In the JDK 1.4 reflection implementation, the security check is
a61af66fc99e Initial load
duke
parents:
diff changeset
971 // done at the Java level
a61af66fc99e Initial load
duke
parents:
diff changeset
972 if (!(JDK_Version::is_gte_jdk14x_version() && UseNewReflection)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
973
a61af66fc99e Initial load
duke
parents:
diff changeset
974 // Access checking (unless overridden by Method)
a61af66fc99e Initial load
duke
parents:
diff changeset
975 if (!override) {
a61af66fc99e Initial load
duke
parents:
diff changeset
976 if (!(klass->is_public() && reflected_method->is_public())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
977 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
978 if (!access) {
a61af66fc99e Initial load
duke
parents:
diff changeset
979 return NULL; // exception
a61af66fc99e Initial load
duke
parents:
diff changeset
980 }
a61af66fc99e Initial load
duke
parents:
diff changeset
981 }
a61af66fc99e Initial load
duke
parents:
diff changeset
982 }
a61af66fc99e Initial load
duke
parents:
diff changeset
983
a61af66fc99e Initial load
duke
parents:
diff changeset
984 } // !(Universe::is_gte_jdk14x_version() && UseNewReflection)
a61af66fc99e Initial load
duke
parents:
diff changeset
985
a61af66fc99e Initial load
duke
parents:
diff changeset
986 assert(ptypes->is_objArray(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
987 int args_len = args.is_null() ? 0 : args->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
988 // Check number of arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
989 if (ptypes->length() != args_len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
990 THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "wrong number of arguments");
a61af66fc99e Initial load
duke
parents:
diff changeset
991 }
a61af66fc99e Initial load
duke
parents:
diff changeset
992
a61af66fc99e Initial load
duke
parents:
diff changeset
993 // Create object to contain parameters for the JavaCall
a61af66fc99e Initial load
duke
parents:
diff changeset
994 JavaCallArguments java_args(method->size_of_parameters());
a61af66fc99e Initial load
duke
parents:
diff changeset
995
a61af66fc99e Initial load
duke
parents:
diff changeset
996 if (!is_static) {
a61af66fc99e Initial load
duke
parents:
diff changeset
997 java_args.push_oop(receiver);
a61af66fc99e Initial load
duke
parents:
diff changeset
998 }
a61af66fc99e Initial load
duke
parents:
diff changeset
999
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 for (int i = 0; i < args_len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 oop type_mirror = ptypes->obj_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 oop arg = args->obj_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 if (java_lang_Class::is_primitive(type_mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 jvalue value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 BasicType ptype = basic_type_mirror_to_basic_type(type_mirror, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 BasicType atype = unbox_for_primitive(arg, &value, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 if (ptype != atype) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 widen(&value, atype, ptype, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 switch (ptype) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 case T_BOOLEAN: java_args.push_int(value.z); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 case T_CHAR: java_args.push_int(value.c); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 case T_BYTE: java_args.push_int(value.b); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 case T_SHORT: java_args.push_int(value.s); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 case T_INT: java_args.push_int(value.i); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 case T_LONG: java_args.push_long(value.j); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 case T_FLOAT: java_args.push_float(value.f); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 case T_DOUBLE: java_args.push_double(value.d); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 if (arg != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 klassOop k = java_lang_Class::as_klassOop(type_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 if (!arg->is_a(k)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 Handle arg_handle(THREAD, arg); // Create handle for argument
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 java_args.push_oop(arg_handle); // Push handle
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1033
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 assert(java_args.size_of_parameters() == method->size_of_parameters(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1035
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 // All oops (including receiver) is passed in as Handles. An potential oop is returned as an
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 // oop (i.e., NOT as an handle)
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 JavaValue result(rtype);
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 JavaCalls::call(&result, method, &java_args, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1040
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 // Method threw an exception; wrap it in an InvocationTargetException
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 oop target_exception = PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 JavaCallArguments args(Handle(THREAD, target_exception));
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 THROW_ARG_0(vmSymbolHandles::java_lang_reflect_InvocationTargetException(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 vmSymbolHandles::throwable_void_signature(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 &args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 if (rtype == T_BOOLEAN || rtype == T_BYTE || rtype == T_CHAR || rtype == T_SHORT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 narrow((jvalue*) result.get_value_addr(), rtype, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 return box((jvalue*) result.get_value_addr(), rtype, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1055
a61af66fc99e Initial load
duke
parents:
diff changeset
1056
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 void Reflection::narrow(jvalue* value, BasicType narrow_type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 switch (narrow_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 value->z = (jboolean) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 value->b = (jbyte) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 value->c = (jchar) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 value->s = (jshort) value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 break; // fail
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "argument type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1076
a61af66fc99e Initial load
duke
parents:
diff changeset
1077
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 BasicType Reflection::basic_type_mirror_to_basic_type(oop basic_type_mirror, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 assert(java_lang_Class::is_primitive(basic_type_mirror), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 return java_lang_Class::primitive_type(basic_type_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1082
a61af66fc99e Initial load
duke
parents:
diff changeset
1083
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 bool Reflection::match_parameter_types(methodHandle method, objArrayHandle types, int parameter_count, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 int types_len = types.is_null() ? 0 : types->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 if (types_len != parameter_count) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 if (parameter_count > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 objArrayHandle method_types = get_parameter_types(method, parameter_count, NULL, CHECK_false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 for (int index = 0; index < parameter_count; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 if (types->obj_at(index) != method_types->obj_at(index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1097
a61af66fc99e Initial load
duke
parents:
diff changeset
1098
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 oop Reflection::new_field(FieldStream* st, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 symbolHandle field_name(THREAD, st->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 Handle name = java_lang_String::create_from_symbol(field_name, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 symbolHandle signature(THREAD, st->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 Handle type = new_type(signature, st->klass(), CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 Handle rh = java_lang_reflect_Field::create(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 oop result = rh();
a61af66fc99e Initial load
duke
parents:
diff changeset
1106
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 java_lang_reflect_Field::set_clazz(result, st->klass()->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 java_lang_reflect_Field::set_slot(result, st->index());
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 java_lang_reflect_Field::set_name(result, name());
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 java_lang_reflect_Field::set_type(result, type());
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 // Note the ACC_ANNOTATION bit, which is a per-class access flag, is never set here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 java_lang_reflect_Field::set_modifiers(result, st->access_flags().as_int() & JVM_RECOGNIZED_FIELD_MODIFIERS);
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 java_lang_reflect_Field::set_override(result, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1116
a61af66fc99e Initial load
duke
parents:
diff changeset
1117
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 bool Reflection::resolve_field(Handle field_mirror, Handle& receiver, fieldDescriptor* fd, bool check_final, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 if (field_mirror.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 THROW_(vmSymbols::java_lang_NullPointerException(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1122
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 instanceKlassHandle klass (THREAD, java_lang_Class::as_klassOop(java_lang_reflect_Field::clazz(field_mirror())));
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 int slot = java_lang_reflect_Field::slot(field_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
1125
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 // Ensure klass is initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 klass->initialize(CHECK_false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 fd->initialize(klass(), slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
1129
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 bool is_static = fd->is_static();
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 KlassHandle receiver_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
1132
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 if (is_static) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 receiver = KlassHandle(THREAD, klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 receiver_klass = klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 // Check object is a non-null instance of declaring class
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 if (receiver.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 THROW_(vmSymbols::java_lang_NullPointerException(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 if (!receiver->is_a(klass())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(), "object is not an instance of declaring class", false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 receiver_klass = KlassHandle(THREAD, receiver->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1146
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 // Access checking (unless overridden by Field)
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 if (!java_lang_reflect_Field::override(field_mirror())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 if (!(klass->is_public() && fd->is_public())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 bool access_check = reflect_check_access(klass(), fd->access_flags(), receiver_klass(), false, CHECK_false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 if (!access_check) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 return false; // exception
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1156
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 if (check_final && fd->is_final()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 // In 1.3 we always throw an error when attempting to set a final field.
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 // In 1.2.x, this was allowed in the override bit was set by calling Field.setAccessible(true).
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 // We currently maintain backwards compatibility. See bug 4250960.
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 bool strict_final_check = !JDK_Version::is_jdk12x_version();
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 if (strict_final_check || !java_lang_reflect_Field::override(field_mirror())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 THROW_MSG_(vmSymbols::java_lang_IllegalAccessException(), "field is final", false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1168
a61af66fc99e Initial load
duke
parents:
diff changeset
1169
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 BasicType Reflection::field_get(jvalue* value, fieldDescriptor* fd, Handle receiver) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 BasicType field_type = fd->field_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 int offset = fd->offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 switch (field_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 value->z = receiver->bool_field(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 value->c = receiver->char_field(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 value->f = receiver->float_field(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 case T_DOUBLE:
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 value->d = receiver->double_field(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 value->b = receiver->byte_field(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 value->s = receiver->short_field(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 value->i = receiver->int_field(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 value->j = receiver->long_field(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 case T_OBJECT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 case T_ARRAY:
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 value->l = (jobject) receiver->obj_field(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 return T_ILLEGAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 return field_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1207
a61af66fc99e Initial load
duke
parents:
diff changeset
1208
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 void Reflection::field_set(jvalue* value, fieldDescriptor* fd, Handle receiver, BasicType value_type, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 BasicType field_type = fd->field_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 if (field_type != value_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 widen(value, value_type, field_type, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1214
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 int offset = fd->offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 switch (field_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 receiver->bool_field_put(offset, value->z);
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 receiver->char_field_put(offset, value->c);
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 case T_FLOAT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 receiver->float_field_put(offset, value->f);
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 case T_DOUBLE:
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 receiver->double_field_put(offset, value->d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 receiver->byte_field_put(offset, value->b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 receiver->short_field_put(offset, value->s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 receiver->int_field_put(offset, value->i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 case T_LONG:
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 receiver->long_field_put(offset, value->j);
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 case T_OBJECT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 case T_ARRAY: {
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 Handle obj(THREAD, (oop) value->l);
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 if (obj.not_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 symbolHandle signature(THREAD, fd->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 Handle loader (THREAD, fd->loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 Handle protect (THREAD, Klass::cast(fd->field_holder())->protection_domain());
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 klassOop k = SystemDictionary::resolve_or_fail(signature, loader, protect, true, CHECK); // may block
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 if (!obj->is_a(k)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "field type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 receiver->obj_field_put(offset, obj());
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "field type mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1260
a61af66fc99e Initial load
duke
parents:
diff changeset
1261
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 oop Reflection::reflect_field(oop mirror, symbolOop field_name, jint which, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 // Exclude primitive types and array types
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 if (java_lang_Class::is_primitive(mirror)) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 if (Klass::cast(java_lang_Class::as_klassOop(mirror))->oop_is_array()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1266
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 instanceKlassHandle k(THREAD, java_lang_Class::as_klassOop(mirror));
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 bool local_fields_only = (which == DECLARED);
a61af66fc99e Initial load
duke
parents:
diff changeset
1269
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 // Ensure class is linked
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 k->link_class(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1272
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 // Search class and interface fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 for (FieldStream st(k, local_fields_only, false); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 if (st.name() == field_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 if (local_fields_only || st.access_flags().is_public()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 return new_field(&st, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1281
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1284
a61af66fc99e Initial load
duke
parents:
diff changeset
1285
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 objArrayOop Reflection::reflect_fields(oop mirror, jint which, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 // Exclude primitive types and array types
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 if (java_lang_Class::is_primitive(mirror)
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 || Klass::cast(java_lang_Class::as_klassOop(mirror))->oop_is_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 symbolHandle name = vmSymbolHandles::java_lang_reflect_Field();
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 klassOop klass = SystemDictionary::resolve_or_fail(name, true, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 return oopFactory::new_objArray(klass, 0, CHECK_NULL); // Return empty array
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1294
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 instanceKlassHandle k(THREAD, java_lang_Class::as_klassOop(mirror));
a61af66fc99e Initial load
duke
parents:
diff changeset
1296
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 // Ensure class is linked
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 k->link_class(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1299
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 bool local_fields_only = (which == DECLARED);
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 int count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 { // Compute fields count for class and interface fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 for (FieldStream st(k, local_fields_only, false); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 if (local_fields_only || st.access_flags().is_public()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1309
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 // Allocate result
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 symbolHandle name = vmSymbolHandles::java_lang_reflect_Field();
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 klassOop klass = SystemDictionary::resolve_or_fail(name, true, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 objArrayOop r = oopFactory::new_objArray(klass, count, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 objArrayHandle result (THREAD, r);
a61af66fc99e Initial load
duke
parents:
diff changeset
1315
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 // Fill in results backwards
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 for (FieldStream st(k, local_fields_only, false); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 if (local_fields_only || st.access_flags().is_public()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 oop field = new_field(&st, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 result->obj_at_put(--count, field);
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 assert(count == 0, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 return result();
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1328
a61af66fc99e Initial load
duke
parents:
diff changeset
1329
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 oop Reflection::reflect_method(oop mirror, symbolHandle method_name, objArrayHandle types, jint which, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 if (java_lang_Class::is_primitive(mirror)) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 klassOop klass = java_lang_Class::as_klassOop(mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 if (Klass::cast(klass)->oop_is_array() && which == MEMBER_DECLARED) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1334
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 if (Klass::cast(java_lang_Class::as_klassOop(mirror))->oop_is_array()) {
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 665
diff changeset
1336 klass = SystemDictionary::Object_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 instanceKlassHandle h_k(THREAD, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
1339
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 // Ensure klass is linked (need not be initialized)
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 h_k->link_class(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1342
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 // For interfaces include static initializers under jdk1.2.x (since classic does that)
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 bool include_clinit = JDK_Version::is_jdk12x_version() && h_k->is_interface();
a61af66fc99e Initial load
duke
parents:
diff changeset
1345
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 switch (which) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 case MEMBER_PUBLIC:
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 // First the public non-static methods (works if method holder is an interface)
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 // Note that we can ignore checks for overridden methods, since we go up the hierarchy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 for (MethodStream st(h_k, false, false); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 methodHandle m(THREAD, st.method());
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 // For interfaces include static initializers since classic does that!
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 if (method_name() == m->name() && (include_clinit || (m->is_public() && !m->is_static() && !m->is_initializer()))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 symbolHandle signature(THREAD, m->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 bool parameter_match = match_parameter_types(m, types, ArgumentCount(signature).size(), CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 if (parameter_match) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 return new_method(m, false, false, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 // Then the public static methods (works if method holder is an interface)
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 for (MethodStream st(h_k, false, false); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 methodHandle m(THREAD, st.method());
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 if (method_name() == m->name() && m->is_public() && m->is_static() && !m->is_initializer()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 symbolHandle signature(THREAD, m->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 bool parameter_match = match_parameter_types(m, types, ArgumentCount(signature).size(), CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 if (parameter_match) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 return new_method(m, false, false, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 case MEMBER_DECLARED:
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 // All local methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 for (MethodStream st(h_k, true, true); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 methodHandle m(THREAD, st.method());
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 if (method_name() == m->name() && !m->is_initializer()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 symbolHandle signature(THREAD, m->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 bool parameter_match = match_parameter_types(m, types, ArgumentCount(signature).size(), CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 if (parameter_match) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 return new_method(m, false, false, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1397
a61af66fc99e Initial load
duke
parents:
diff changeset
1398
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 objArrayOop Reflection::reflect_methods(oop mirror, jint which, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 // Exclude primitive types
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 if (java_lang_Class::is_primitive(mirror) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 (Klass::cast(java_lang_Class::as_klassOop(mirror))->oop_is_array() && (which == MEMBER_DECLARED))) {
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 665
diff changeset
1403 klassOop klass = SystemDictionary::reflect_Method_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 return oopFactory::new_objArray(klass, 0, CHECK_NULL); // Return empty array
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1406
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 klassOop klass = java_lang_Class::as_klassOop(mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 if (Klass::cast(java_lang_Class::as_klassOop(mirror))->oop_is_array()) {
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 665
diff changeset
1409 klass = SystemDictionary::Object_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 instanceKlassHandle h_k(THREAD, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
1412
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 // Ensure klass is linked (need not be initialized)
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 h_k->link_class(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1415
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 // We search the (super)interfaces only if h_k is an interface itself
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 bool is_interface = h_k->is_interface();
a61af66fc99e Initial load
duke
parents:
diff changeset
1418
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 // For interfaces include static initializers under jdk1.2.x (since classic does that)
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 bool include_clinit = JDK_Version::is_jdk12x_version() && is_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
1421
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 switch (which) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 case MEMBER_PUBLIC:
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1425
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 // Count public methods (non-static and static)
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 int count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 for (MethodStream st(h_k, false, false); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 methodOop m = st.method();
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 // For interfaces include static initializers since classic does that!
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 if (include_clinit || (!m->is_initializer() && m->is_public() && !m->is_overridden_in(h_k()))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1437
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 // Allocate result
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 665
diff changeset
1439 klassOop klass = SystemDictionary::reflect_Method_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 objArrayOop r = oopFactory::new_objArray(klass, count, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 objArrayHandle h_result (THREAD, r);
a61af66fc99e Initial load
duke
parents:
diff changeset
1442
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 // Fill in results backwards
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 // First the non-static public methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 for (MethodStream st(h_k, false, false); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 methodHandle m (THREAD, st.method());
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 if (!m->is_static() && !m->is_initializer() && m->is_public() && !m->is_overridden_in(h_k())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 oop method = new_method(m, false, false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 if (method == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 h_result->obj_at_put(--count, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 // Then the static public methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 for (MethodStream st(h_k, false, !is_interface); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 methodHandle m (THREAD, st.method());
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 if (m->is_static() && (include_clinit || (!m->is_initializer()) && m->is_public() && !m->is_overridden_in(h_k()))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 oop method = new_method(m, false, false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 if (method == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 h_result->obj_at_put(--count, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1472
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 assert(count == 0, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 return h_result();
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1476
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 case MEMBER_DECLARED:
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 // Count all methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 int count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 for (MethodStream st(h_k, true, !is_interface); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 methodOop m = st.method();
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 if (!m->is_initializer()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 // Allocate result
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 665
diff changeset
1490 klassOop klass = SystemDictionary::reflect_Method_klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 objArrayOop r = oopFactory::new_objArray(klass, count, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 objArrayHandle h_result (THREAD, r);
a61af66fc99e Initial load
duke
parents:
diff changeset
1493
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 // Fill in results backwards
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 for (MethodStream st(h_k, true, true); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 methodHandle m (THREAD, st.method());
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 if (!m->is_initializer()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 oop method = new_method(m, false, false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 if (method == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 h_result->obj_at_put(--count, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 assert(count == 0, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 return h_result();
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1515
a61af66fc99e Initial load
duke
parents:
diff changeset
1516
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 oop Reflection::reflect_constructor(oop mirror, objArrayHandle types, jint which, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1518
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 // Exclude primitive, interface and array types
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 bool prim = java_lang_Class::is_primitive(mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 Klass* klass = prim ? NULL : Klass::cast(java_lang_Class::as_klassOop(mirror));
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 if (prim || klass->is_interface() || klass->oop_is_array()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1523
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 // Must be instance klass
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 instanceKlassHandle h_k(THREAD, java_lang_Class::as_klassOop(mirror));
a61af66fc99e Initial load
duke
parents:
diff changeset
1526
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 // Ensure klass is linked (need not be initialized)
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 h_k->link_class(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1529
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 bool local_only = (which == MEMBER_DECLARED);
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 for (MethodStream st(h_k, true, true); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 methodHandle m(THREAD, st.method());
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 if (m->name() == vmSymbols::object_initializer_name() && (local_only || m->is_public())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 symbolHandle signature(THREAD, m->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 bool parameter_match = match_parameter_types(m, types, ArgumentCount(signature).size(), CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 if (parameter_match) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 return new_constructor(m, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1541
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1544
a61af66fc99e Initial load
duke
parents:
diff changeset
1545
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 objArrayOop Reflection::reflect_constructors(oop mirror, jint which, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 // Exclude primitive, interface and array types
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 bool prim = java_lang_Class::is_primitive(mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 Klass* k = prim ? NULL : Klass::cast(java_lang_Class::as_klassOop(mirror));
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 if (prim || k->is_interface() || k->oop_is_array()) {
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 665
diff changeset
1551 return oopFactory::new_objArray(SystemDictionary::reflect_Constructor_klass(), 0, CHECK_NULL); // Return empty array
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1553
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 // Must be instanceKlass at this point
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 instanceKlassHandle h_k(THREAD, java_lang_Class::as_klassOop(mirror));
a61af66fc99e Initial load
duke
parents:
diff changeset
1556
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 // Ensure klass is linked (need not be initialized)
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 h_k->link_class(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1559
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 bool local_only = (which == MEMBER_DECLARED);
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 int count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 for (MethodStream st(h_k, true, true); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 methodOop m = st.method();
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 if (m->name() == vmSymbols::object_initializer_name() && (local_only || m->is_public())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1570
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 // Allocate result
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 symbolHandle name = vmSymbolHandles::java_lang_reflect_Constructor();
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 klassOop klass = SystemDictionary::resolve_or_fail(name, true, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 objArrayOop r = oopFactory::new_objArray(klass, count, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 objArrayHandle h_result (THREAD, r);
a61af66fc99e Initial load
duke
parents:
diff changeset
1576
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 // Fill in results backwards
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 for (MethodStream st(h_k, true, true); !st.eos(); st.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 methodHandle m (THREAD, st.method());
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 if (m->name() == vmSymbols::object_initializer_name() && (local_only || m->is_public())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 oop constr = new_constructor(m, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 if (constr == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 h_result->obj_at_put(--count, constr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 assert(count == 0, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 return h_result();
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1594
a61af66fc99e Initial load
duke
parents:
diff changeset
1595
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 // This would be nicer if, say, java.lang.reflect.Method was a subclass
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 // of java.lang.reflect.Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
1598
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 oop Reflection::invoke_method(oop method_mirror, Handle receiver, objArrayHandle args, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 oop mirror = java_lang_reflect_Method::clazz(method_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 int slot = java_lang_reflect_Method::slot(method_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 bool override = java_lang_reflect_Method::override(method_mirror) != 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 objArrayHandle ptypes(THREAD, objArrayOop(java_lang_reflect_Method::parameter_types(method_mirror)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1604
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 oop return_type_mirror = java_lang_reflect_Method::return_type(method_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 BasicType rtype;
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 if (java_lang_Class::is_primitive(return_type_mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 rtype = basic_type_mirror_to_basic_type(return_type_mirror, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 rtype = T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1612
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 instanceKlassHandle klass(THREAD, java_lang_Class::as_klassOop(mirror));
51
1ffa5cdd0b7e 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 0
diff changeset
1614 methodOop m = klass->method_with_idnum(slot);
1ffa5cdd0b7e 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 0
diff changeset
1615 if (m == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 THROW_MSG_0(vmSymbols::java_lang_InternalError(), "invoke");
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 }
51
1ffa5cdd0b7e 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 0
diff changeset
1618 methodHandle method(THREAD, m);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1619
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 return invoke(klass, method, receiver, override, ptypes, rtype, args, true, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1622
a61af66fc99e Initial load
duke
parents:
diff changeset
1623
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 oop Reflection::invoke_constructor(oop constructor_mirror, objArrayHandle args, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 oop mirror = java_lang_reflect_Constructor::clazz(constructor_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 int slot = java_lang_reflect_Constructor::slot(constructor_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 bool override = java_lang_reflect_Constructor::override(constructor_mirror) != 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 objArrayHandle ptypes(THREAD, objArrayOop(java_lang_reflect_Constructor::parameter_types(constructor_mirror)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1629
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 instanceKlassHandle klass(THREAD, java_lang_Class::as_klassOop(mirror));
51
1ffa5cdd0b7e 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 0
diff changeset
1631 methodOop m = klass->method_with_idnum(slot);
1ffa5cdd0b7e 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 0
diff changeset
1632 if (m == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 THROW_MSG_0(vmSymbols::java_lang_InternalError(), "invoke");
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 }
51
1ffa5cdd0b7e 6667089: 3/3 multiple redefinitions of a class break reflection
dcubed
parents: 0
diff changeset
1635 methodHandle method(THREAD, m);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 assert(method->name() == vmSymbols::object_initializer_name(), "invalid constructor");
a61af66fc99e Initial load
duke
parents:
diff changeset
1637
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 // Make sure klass gets initialize
a61af66fc99e Initial load
duke
parents:
diff changeset
1639 klass->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1640
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 // Create new instance (the receiver)
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 klass->check_valid_for_instantiation(false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 Handle receiver = klass->allocate_instance_handle(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1644
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 // Ignore result from call and return receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 invoke(klass, method, receiver, override, ptypes, T_VOID, args, false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 return receiver();
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1649
a61af66fc99e Initial load
duke
parents:
diff changeset
1650
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 #endif /* SUPPORT_OLD_REFLECTION */