author | jrose |
Sat, 17 Oct 2009 19:51:05 -0700 | |
changeset 4094 | 1f424b2b2171 |
parent 2534 | 08dac9ce0cd7 |
child 5050 | 47ecd86932ce |
permissions | -rw-r--r-- |
2534 | 1 |
/* |
2 |
* Copyright 2008-2009 Sun Microsystems, Inc. All Rights Reserved. |
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
class MacroAssembler; |
|
26 |
class Label; |
|
27 |
class MethodHandleEntry; |
|
28 |
||
29 |
class MethodHandles: AllStatic { |
|
30 |
// JVM support for MethodHandle, MethodType, and related types |
|
31 |
// in java.dyn and java.dyn.hotspot. |
|
32 |
// See also javaClasses for layouts java_dyn_Method{Handle,Type,Type::Form}. |
|
33 |
public: |
|
34 |
enum EntryKind { |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
35 |
_raise_exception, // stub for error generation from other stubs |
2534 | 36 |
_invokestatic_mh, // how a MH emulates invokestatic |
37 |
_invokespecial_mh, // ditto for the other invokes... |
|
38 |
_invokevirtual_mh, |
|
39 |
_invokeinterface_mh, |
|
40 |
_bound_ref_mh, // reference argument is bound |
|
41 |
_bound_int_mh, // int argument is bound (via an Integer or Float) |
|
42 |
_bound_long_mh, // long argument is bound (via a Long or Double) |
|
43 |
_bound_ref_direct_mh, // same as above, with direct linkage to methodOop |
|
44 |
_bound_int_direct_mh, |
|
45 |
_bound_long_direct_mh, |
|
46 |
||
47 |
_adapter_mh_first, // adapter sequence goes here... |
|
48 |
_adapter_retype_only = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_RETYPE_ONLY, |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
49 |
_adapter_retype_raw = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_RETYPE_RAW, |
2534 | 50 |
_adapter_check_cast = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_CHECK_CAST, |
51 |
_adapter_prim_to_prim = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_PRIM_TO_PRIM, |
|
52 |
_adapter_ref_to_prim = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_REF_TO_PRIM, |
|
53 |
_adapter_prim_to_ref = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_PRIM_TO_REF, |
|
54 |
_adapter_swap_args = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_SWAP_ARGS, |
|
55 |
_adapter_rot_args = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_ROT_ARGS, |
|
56 |
_adapter_dup_args = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_DUP_ARGS, |
|
57 |
_adapter_drop_args = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_DROP_ARGS, |
|
58 |
_adapter_collect_args = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_COLLECT_ARGS, |
|
59 |
_adapter_spread_args = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_SPREAD_ARGS, |
|
60 |
_adapter_flyby = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_FLYBY, |
|
61 |
_adapter_ricochet = _adapter_mh_first + sun_dyn_AdapterMethodHandle::OP_RICOCHET, |
|
62 |
_adapter_mh_last = _adapter_mh_first + sun_dyn_AdapterMethodHandle::CONV_OP_LIMIT - 1, |
|
63 |
||
64 |
// Optimized adapter types |
|
65 |
||
66 |
// argument list reordering |
|
67 |
_adapter_opt_swap_1, |
|
68 |
_adapter_opt_swap_2, |
|
69 |
_adapter_opt_rot_1_up, |
|
70 |
_adapter_opt_rot_1_down, |
|
71 |
_adapter_opt_rot_2_up, |
|
72 |
_adapter_opt_rot_2_down, |
|
73 |
// primitive single to single: |
|
74 |
_adapter_opt_i2i, // i2c, i2z, i2b, i2s |
|
75 |
// primitive double to single: |
|
76 |
_adapter_opt_l2i, |
|
77 |
_adapter_opt_d2f, |
|
78 |
// primitive single to double: |
|
79 |
_adapter_opt_i2l, |
|
80 |
_adapter_opt_f2d, |
|
81 |
// conversion between floating point and integer type is handled by Java |
|
82 |
||
83 |
// reference to primitive: |
|
84 |
_adapter_opt_unboxi, |
|
85 |
_adapter_opt_unboxl, |
|
86 |
||
87 |
// spreading (array length cases 0, 1, >=2) |
|
88 |
_adapter_opt_spread_0, |
|
89 |
_adapter_opt_spread_1, |
|
90 |
_adapter_opt_spread_more, |
|
91 |
||
92 |
_EK_LIMIT, |
|
93 |
_EK_FIRST = 0 |
|
94 |
}; |
|
95 |
||
96 |
public: |
|
97 |
static bool enabled() { return _enabled; } |
|
98 |
static void set_enabled(bool z); |
|
99 |
||
100 |
private: |
|
101 |
enum { // import sun_dyn_AdapterMethodHandle::CONV_OP_* |
|
102 |
CONV_OP_LIMIT = sun_dyn_AdapterMethodHandle::CONV_OP_LIMIT, |
|
103 |
CONV_OP_MASK = sun_dyn_AdapterMethodHandle::CONV_OP_MASK, |
|
104 |
CONV_VMINFO_MASK = sun_dyn_AdapterMethodHandle::CONV_VMINFO_MASK, |
|
105 |
CONV_VMINFO_SHIFT = sun_dyn_AdapterMethodHandle::CONV_VMINFO_SHIFT, |
|
106 |
CONV_OP_SHIFT = sun_dyn_AdapterMethodHandle::CONV_OP_SHIFT, |
|
107 |
CONV_DEST_TYPE_SHIFT = sun_dyn_AdapterMethodHandle::CONV_DEST_TYPE_SHIFT, |
|
108 |
CONV_SRC_TYPE_SHIFT = sun_dyn_AdapterMethodHandle::CONV_SRC_TYPE_SHIFT, |
|
109 |
CONV_STACK_MOVE_SHIFT = sun_dyn_AdapterMethodHandle::CONV_STACK_MOVE_SHIFT, |
|
110 |
CONV_STACK_MOVE_MASK = sun_dyn_AdapterMethodHandle::CONV_STACK_MOVE_MASK |
|
111 |
}; |
|
112 |
||
113 |
static bool _enabled; |
|
114 |
static MethodHandleEntry* _entries[_EK_LIMIT]; |
|
115 |
static const char* _entry_names[_EK_LIMIT+1]; |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
116 |
static jobject _raise_exception_method; |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
117 |
|
2534 | 118 |
static bool ek_valid(EntryKind ek) { return (uint)ek < (uint)_EK_LIMIT; } |
119 |
static bool conv_op_valid(int op) { return (uint)op < (uint)CONV_OP_LIMIT; } |
|
120 |
||
121 |
public: |
|
122 |
static bool have_entry(EntryKind ek) { return ek_valid(ek) && _entries[ek] != NULL; } |
|
123 |
static MethodHandleEntry* entry(EntryKind ek) { assert(ek_valid(ek), "initialized"); |
|
124 |
return _entries[ek]; } |
|
125 |
static const char* entry_name(EntryKind ek) { assert(ek_valid(ek), "oob"); |
|
126 |
return _entry_names[ek]; } |
|
127 |
static EntryKind adapter_entry_kind(int op) { assert(conv_op_valid(op), "oob"); |
|
128 |
return EntryKind(_adapter_mh_first + op); } |
|
129 |
||
130 |
static void init_entry(EntryKind ek, MethodHandleEntry* me) { |
|
131 |
assert(ek_valid(ek), "oob"); |
|
132 |
assert(_entries[ek] == NULL, "no double initialization"); |
|
133 |
_entries[ek] = me; |
|
134 |
} |
|
135 |
||
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
136 |
static methodOop raise_exception_method() { |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
137 |
oop rem = JNIHandles::resolve(_raise_exception_method); |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
138 |
assert(rem == NULL || rem->is_method(), ""); |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
139 |
return (methodOop) rem; |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
140 |
} |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
141 |
static void set_raise_exception_method(methodOop rem) { |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
142 |
assert(_raise_exception_method == NULL, ""); |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
143 |
_raise_exception_method = JNIHandles::make_global(Handle(rem)); |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
144 |
} |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
145 |
|
2534 | 146 |
static jint adapter_conversion(int conv_op, BasicType src, BasicType dest, |
147 |
int stack_move = 0, int vminfo = 0) { |
|
148 |
assert(conv_op_valid(conv_op), "oob"); |
|
149 |
jint conv = ((conv_op << CONV_OP_SHIFT) |
|
150 |
| (src << CONV_SRC_TYPE_SHIFT) |
|
151 |
| (dest << CONV_DEST_TYPE_SHIFT) |
|
152 |
| (stack_move << CONV_STACK_MOVE_SHIFT) |
|
153 |
| (vminfo << CONV_VMINFO_SHIFT) |
|
154 |
); |
|
155 |
assert(adapter_conversion_op(conv) == conv_op, "decode conv_op"); |
|
156 |
assert(adapter_conversion_src_type(conv) == src, "decode src"); |
|
157 |
assert(adapter_conversion_dest_type(conv) == dest, "decode dest"); |
|
158 |
assert(adapter_conversion_stack_move(conv) == stack_move, "decode stack_move"); |
|
159 |
assert(adapter_conversion_vminfo(conv) == vminfo, "decode vminfo"); |
|
160 |
return conv; |
|
161 |
} |
|
162 |
static int adapter_conversion_op(jint conv) { |
|
163 |
return ((conv >> CONV_OP_SHIFT) & 0xF); |
|
164 |
} |
|
165 |
static BasicType adapter_conversion_src_type(jint conv) { |
|
166 |
return (BasicType)((conv >> CONV_SRC_TYPE_SHIFT) & 0xF); |
|
167 |
} |
|
168 |
static BasicType adapter_conversion_dest_type(jint conv) { |
|
169 |
return (BasicType)((conv >> CONV_DEST_TYPE_SHIFT) & 0xF); |
|
170 |
} |
|
171 |
static int adapter_conversion_stack_move(jint conv) { |
|
172 |
return (conv >> CONV_STACK_MOVE_SHIFT); |
|
173 |
} |
|
174 |
static int adapter_conversion_vminfo(jint conv) { |
|
175 |
return (conv >> CONV_VMINFO_SHIFT) & CONV_VMINFO_MASK; |
|
176 |
} |
|
177 |
||
178 |
// Offset in words that the interpreter stack pointer moves when an argument is pushed. |
|
179 |
// The stack_move value must always be a multiple of this. |
|
180 |
static int stack_move_unit() { |
|
181 |
return frame::interpreter_frame_expression_stack_direction() * Interpreter::stackElementWords(); |
|
182 |
} |
|
183 |
||
184 |
enum { CONV_VMINFO_SIGN_FLAG = 0x80 }; |
|
185 |
static int adapter_subword_vminfo(BasicType dest) { |
|
186 |
if (dest == T_BOOLEAN) return (BitsPerInt - 1); |
|
187 |
if (dest == T_CHAR) return (BitsPerInt - 16); |
|
188 |
if (dest == T_BYTE) return (BitsPerInt - 8) | CONV_VMINFO_SIGN_FLAG; |
|
189 |
if (dest == T_SHORT) return (BitsPerInt - 16) | CONV_VMINFO_SIGN_FLAG; |
|
190 |
return 0; // case T_INT |
|
191 |
} |
|
192 |
// Here is the transformation the i2i adapter must perform: |
|
193 |
static int truncate_subword_from_vminfo(jint value, int vminfo) { |
|
194 |
jint tem = value << vminfo; |
|
195 |
if ((vminfo & CONV_VMINFO_SIGN_FLAG) != 0) { |
|
196 |
return (jint)tem >> vminfo; |
|
197 |
} else { |
|
198 |
return (juint)tem >> vminfo; |
|
199 |
} |
|
200 |
} |
|
201 |
||
202 |
static inline address from_compiled_entry(EntryKind ek); |
|
203 |
static inline address from_interpreted_entry(EntryKind ek); |
|
204 |
||
205 |
// helpers for decode_method. |
|
206 |
static methodOop decode_methodOop(methodOop m, int& decode_flags_result); |
|
207 |
static methodOop decode_vmtarget(oop vmtarget, int vmindex, oop mtype, klassOop& receiver_limit_result, int& decode_flags_result); |
|
208 |
static methodOop decode_MemberName(oop mname, klassOop& receiver_limit_result, int& decode_flags_result); |
|
209 |
static methodOop decode_MethodHandle(oop mh, klassOop& receiver_limit_result, int& decode_flags_result); |
|
210 |
static methodOop decode_DirectMethodHandle(oop mh, klassOop& receiver_limit_result, int& decode_flags_result); |
|
211 |
static methodOop decode_BoundMethodHandle(oop mh, klassOop& receiver_limit_result, int& decode_flags_result); |
|
212 |
static methodOop decode_AdapterMethodHandle(oop mh, klassOop& receiver_limit_result, int& decode_flags_result); |
|
213 |
||
214 |
// Find out how many stack slots an mh pushes or pops. |
|
215 |
// The result is *not* reported as a multiple of stack_move_unit(); |
|
216 |
// It is a signed net number of pushes (a difference in vmslots). |
|
217 |
// To compare with a stack_move value, first multiply by stack_move_unit(). |
|
218 |
static int decode_MethodHandle_stack_pushes(oop mh); |
|
219 |
||
220 |
public: |
|
221 |
// working with member names |
|
222 |
static void resolve_MemberName(Handle mname, TRAPS); // compute vmtarget/vmindex from name/type |
|
223 |
static void expand_MemberName(Handle mname, int suppress, TRAPS); // expand defc/name/type if missing |
|
224 |
static void init_MemberName(oop mname_oop, oop target); // compute vmtarget/vmindex from target |
|
225 |
static void init_MemberName(oop mname_oop, methodOop m, bool do_dispatch); |
|
226 |
static void init_MemberName(oop mname_oop, klassOop field_holder, AccessFlags mods, int offset); |
|
227 |
static int find_MemberNames(klassOop k, symbolOop name, symbolOop sig, |
|
228 |
int mflags, klassOop caller, |
|
229 |
int skip, objArrayOop results); |
|
230 |
// bit values for suppress argument to expand_MemberName: |
|
231 |
enum { _suppress_defc = 1, _suppress_name = 2, _suppress_type = 4 }; |
|
232 |
||
233 |
// called from InterpreterGenerator and StubGenerator |
|
234 |
static address generate_method_handle_interpreter_entry(MacroAssembler* _masm); |
|
235 |
static void generate_method_handle_stub(MacroAssembler* _masm, EntryKind ek); |
|
236 |
||
237 |
// argument list parsing |
|
238 |
static int argument_slot(oop method_type, int arg); |
|
239 |
static int argument_slot_count(oop method_type) { return argument_slot(method_type, -1); } |
|
240 |
static int argument_slot_to_argnum(oop method_type, int argslot); |
|
241 |
||
242 |
// Runtime support |
|
243 |
enum { // bit-encoded flags from decode_method or decode_vmref |
|
244 |
_dmf_has_receiver = 0x01, // target method has leading reference argument |
|
245 |
_dmf_does_dispatch = 0x02, // method handle performs virtual or interface dispatch |
|
246 |
_dmf_from_interface = 0x04, // peforms interface dispatch |
|
247 |
_DMF_DIRECT_MASK = (_dmf_from_interface*2 - _dmf_has_receiver), |
|
248 |
_dmf_binds_method = 0x08, |
|
249 |
_dmf_binds_argument = 0x10, |
|
250 |
_DMF_BOUND_MASK = (_dmf_binds_argument*2 - _dmf_binds_method), |
|
251 |
_dmf_adapter_lsb = 0x20, |
|
252 |
_DMF_ADAPTER_MASK = (_dmf_adapter_lsb << CONV_OP_LIMIT) - _dmf_adapter_lsb |
|
253 |
}; |
|
254 |
static methodOop decode_method(oop x, klassOop& receiver_limit_result, int& decode_flags_result); |
|
255 |
enum { |
|
256 |
// format of query to getConstant: |
|
257 |
GC_JVM_PUSH_LIMIT = 0, |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
258 |
GC_JVM_STACK_MOVE_UNIT = 1, |
2534 | 259 |
|
260 |
// format of result from getTarget / encode_target: |
|
261 |
ETF_HANDLE_OR_METHOD_NAME = 0, // all available data (immediate MH or method) |
|
262 |
ETF_DIRECT_HANDLE = 1, // ultimate method handle (will be a DMH, may be self) |
|
263 |
ETF_METHOD_NAME = 2, // ultimate method as MemberName |
|
264 |
ETF_REFLECT_METHOD = 3 // ultimate method as java.lang.reflect object (sans refClass) |
|
265 |
}; |
|
266 |
static int get_named_constant(int which, Handle name_box, TRAPS); |
|
267 |
static oop encode_target(Handle mh, int format, TRAPS); // report vmtarget (to Java code) |
|
268 |
static bool class_cast_needed(klassOop src, klassOop dst); |
|
269 |
||
270 |
private: |
|
271 |
// These checkers operate on a pair of whole MethodTypes: |
|
272 |
static const char* check_method_type_change(oop src_mtype, int src_beg, int src_end, |
|
273 |
int insert_argnum, oop insert_type, |
|
274 |
int change_argnum, oop change_type, |
|
275 |
int delete_argnum, |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
276 |
oop dst_mtype, int dst_beg, int dst_end, |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
277 |
bool raw = false); |
2534 | 278 |
static const char* check_method_type_insertion(oop src_mtype, |
279 |
int insert_argnum, oop insert_type, |
|
280 |
oop dst_mtype) { |
|
281 |
oop no_ref = NULL; |
|
282 |
return check_method_type_change(src_mtype, 0, -1, |
|
283 |
insert_argnum, insert_type, |
|
284 |
-1, no_ref, -1, dst_mtype, 0, -1); |
|
285 |
} |
|
286 |
static const char* check_method_type_conversion(oop src_mtype, |
|
287 |
int change_argnum, oop change_type, |
|
288 |
oop dst_mtype) { |
|
289 |
oop no_ref = NULL; |
|
290 |
return check_method_type_change(src_mtype, 0, -1, -1, no_ref, |
|
291 |
change_argnum, change_type, |
|
292 |
-1, dst_mtype, 0, -1); |
|
293 |
} |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
294 |
static const char* check_method_type_passthrough(oop src_mtype, oop dst_mtype, bool raw) { |
2534 | 295 |
oop no_ref = NULL; |
296 |
return check_method_type_change(src_mtype, 0, -1, |
|
297 |
-1, no_ref, -1, no_ref, -1, |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
298 |
dst_mtype, 0, -1, raw); |
2534 | 299 |
} |
300 |
||
301 |
// These checkers operate on pairs of argument or return types: |
|
302 |
static const char* check_argument_type_change(BasicType src_type, klassOop src_klass, |
|
303 |
BasicType dst_type, klassOop dst_klass, |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
304 |
int argnum, bool raw = false); |
2534 | 305 |
|
306 |
static const char* check_argument_type_change(oop src_type, oop dst_type, |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
307 |
int argnum, bool raw = false) { |
2534 | 308 |
klassOop src_klass = NULL, dst_klass = NULL; |
309 |
BasicType src_bt = java_lang_Class::as_BasicType(src_type, &src_klass); |
|
310 |
BasicType dst_bt = java_lang_Class::as_BasicType(dst_type, &dst_klass); |
|
311 |
return check_argument_type_change(src_bt, src_klass, |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
312 |
dst_bt, dst_klass, argnum, raw); |
2534 | 313 |
} |
314 |
||
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
315 |
static const char* check_return_type_change(oop src_type, oop dst_type, bool raw = false) { |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
316 |
return check_argument_type_change(src_type, dst_type, -1, raw); |
2534 | 317 |
} |
318 |
||
319 |
static const char* check_return_type_change(BasicType src_type, klassOop src_klass, |
|
320 |
BasicType dst_type, klassOop dst_klass) { |
|
321 |
return check_argument_type_change(src_type, src_klass, dst_type, dst_klass, -1); |
|
322 |
} |
|
323 |
||
324 |
static const char* check_method_receiver(methodOop m, klassOop passed_recv_type); |
|
325 |
||
326 |
// These verifiers can block, and will throw an error if the checking fails: |
|
327 |
static void verify_vmslots(Handle mh, TRAPS); |
|
328 |
static void verify_vmargslot(Handle mh, int argnum, int argslot, TRAPS); |
|
329 |
||
330 |
static void verify_method_type(methodHandle m, Handle mtype, |
|
331 |
bool has_bound_oop, |
|
332 |
KlassHandle bound_oop_type, |
|
333 |
TRAPS); |
|
334 |
||
335 |
static void verify_method_signature(methodHandle m, Handle mtype, |
|
336 |
int first_ptype_pos, |
|
337 |
KlassHandle insert_ptype, TRAPS); |
|
338 |
||
339 |
static void verify_DirectMethodHandle(Handle mh, methodHandle m, TRAPS); |
|
340 |
static void verify_BoundMethodHandle(Handle mh, Handle target, int argnum, |
|
341 |
bool direct_to_method, TRAPS); |
|
342 |
static void verify_BoundMethodHandle_with_receiver(Handle mh, methodHandle m, TRAPS); |
|
343 |
static void verify_AdapterMethodHandle(Handle mh, int argnum, TRAPS); |
|
344 |
||
345 |
public: |
|
346 |
||
347 |
// Fill in the fields of a DirectMethodHandle mh. (MH.type must be pre-filled.) |
|
348 |
static void init_DirectMethodHandle(Handle mh, methodHandle method, bool do_dispatch, TRAPS); |
|
349 |
||
350 |
// Fill in the fields of a BoundMethodHandle mh. (MH.type, BMH.argument must be pre-filled.) |
|
351 |
static void init_BoundMethodHandle(Handle mh, Handle target, int argnum, TRAPS); |
|
352 |
static void init_BoundMethodHandle_with_receiver(Handle mh, |
|
353 |
methodHandle original_m, |
|
354 |
KlassHandle receiver_limit, |
|
355 |
int decode_flags, |
|
356 |
TRAPS); |
|
357 |
||
358 |
// Fill in the fields of an AdapterMethodHandle mh. (MH.type must be pre-filled.) |
|
359 |
static void init_AdapterMethodHandle(Handle mh, Handle target, int argnum, TRAPS); |
|
360 |
||
361 |
#ifdef ASSERT |
|
362 |
static bool spot_check_entry_names(); |
|
363 |
#endif |
|
364 |
||
365 |
private: |
|
366 |
static methodHandle dispatch_decoded_method(methodHandle m, |
|
367 |
KlassHandle receiver_limit, |
|
368 |
int decode_flags, |
|
369 |
KlassHandle receiver_klass, |
|
370 |
TRAPS); |
|
371 |
||
372 |
static bool same_basic_type_for_arguments(BasicType src, BasicType dst, |
|
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
373 |
bool raw = false, |
2534 | 374 |
bool for_return = false); |
4094
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
375 |
static bool same_basic_type_for_returns(BasicType src, BasicType dst, bool raw = false) { |
1f424b2b2171
6815692: method handle code needs some cleanup (post-6655638)
jrose
parents:
2534
diff
changeset
|
376 |
return same_basic_type_for_arguments(src, dst, raw, true); |
2534 | 377 |
} |
378 |
||
379 |
enum { // arg_mask values |
|
380 |
_INSERT_NO_MASK = -1, |
|
381 |
_INSERT_REF_MASK = 0, |
|
382 |
_INSERT_INT_MASK = 1, |
|
383 |
_INSERT_LONG_MASK = 3 |
|
384 |
}; |
|
385 |
static void insert_arg_slots(MacroAssembler* _masm, |
|
386 |
RegisterOrConstant arg_slots, |
|
387 |
int arg_mask, |
|
388 |
Register rax_argslot, |
|
389 |
Register rbx_temp, Register rdx_temp); |
|
390 |
||
391 |
static void remove_arg_slots(MacroAssembler* _masm, |
|
392 |
RegisterOrConstant arg_slots, |
|
393 |
Register rax_argslot, |
|
394 |
Register rbx_temp, Register rdx_temp); |
|
395 |
}; |
|
396 |
||
397 |
||
398 |
// Access methods for the "entry" field of a java.dyn.MethodHandle. |
|
399 |
// The field is primarily a jump target for compiled calls. |
|
400 |
// However, we squirrel away some nice pointers for other uses, |
|
401 |
// just before the jump target. |
|
402 |
// Aspects of a method handle entry: |
|
403 |
// - from_compiled_entry - stub used when compiled code calls the MH |
|
404 |
// - from_interpreted_entry - stub used when the interpreter calls the MH |
|
405 |
// - type_checking_entry - stub for runtime casting between MHForm siblings (NYI) |
|
406 |
class MethodHandleEntry { |
|
407 |
public: |
|
408 |
class Data { |
|
409 |
friend class MethodHandleEntry; |
|
410 |
size_t _total_size; // size including Data and code stub |
|
411 |
MethodHandleEntry* _type_checking_entry; |
|
412 |
address _from_interpreted_entry; |
|
413 |
MethodHandleEntry* method_entry() { return (MethodHandleEntry*)(this + 1); } |
|
414 |
}; |
|
415 |
||
416 |
Data* data() { return (Data*)this - 1; } |
|
417 |
||
418 |
address start_address() { return (address) data(); } |
|
419 |
address end_address() { return start_address() + data()->_total_size; } |
|
420 |
||
421 |
address from_compiled_entry() { return (address) this; } |
|
422 |
||
423 |
address from_interpreted_entry() { return data()->_from_interpreted_entry; } |
|
424 |
void set_from_interpreted_entry(address e) { data()->_from_interpreted_entry = e; } |
|
425 |
||
426 |
MethodHandleEntry* type_checking_entry() { return data()->_type_checking_entry; } |
|
427 |
void set_type_checking_entry(MethodHandleEntry* e) { data()->_type_checking_entry = e; } |
|
428 |
||
429 |
void set_end_address(address end_addr) { |
|
430 |
size_t total_size = end_addr - start_address(); |
|
431 |
assert(total_size > 0 && total_size < 0x1000, "reasonable end address"); |
|
432 |
data()->_total_size = total_size; |
|
433 |
} |
|
434 |
||
435 |
// Compiler support: |
|
436 |
static int from_interpreted_entry_offset_in_bytes() { |
|
437 |
return (int)( offset_of(Data, _from_interpreted_entry) - sizeof(Data) ); |
|
438 |
} |
|
439 |
static int type_checking_entry_offset_in_bytes() { |
|
440 |
return (int)( offset_of(Data, _from_interpreted_entry) - sizeof(Data) ); |
|
441 |
} |
|
442 |
||
443 |
static address start_compiled_entry(MacroAssembler* _masm, |
|
444 |
address interpreted_entry = NULL); |
|
445 |
static MethodHandleEntry* finish_compiled_entry(MacroAssembler* masm, address start_addr); |
|
446 |
}; |
|
447 |
||
448 |
address MethodHandles::from_compiled_entry(EntryKind ek) { return entry(ek)->from_compiled_entry(); } |
|
449 |
address MethodHandles::from_interpreted_entry(EntryKind ek) { return entry(ek)->from_interpreted_entry(); } |