src/cpu/sparc/vm/methodHandles_sparc.cpp

Thu, 12 May 2011 14:04:48 -0700

author
twisti
date
Thu, 12 May 2011 14:04:48 -0700
changeset 2903
fabcf26ee72f
parent 2874
8d944991dbf9
child 2950
cba7b5c2d53f
permissions
-rw-r--r--

6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
Reviewed-by: jrose, kvn, never

jrose@1145 1 /*
twisti@2436 2 * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
jrose@1145 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jrose@1145 4 *
jrose@1145 5 * This code is free software; you can redistribute it and/or modify it
jrose@1145 6 * under the terms of the GNU General Public License version 2 only, as
jrose@1145 7 * published by the Free Software Foundation.
jrose@1145 8 *
jrose@1145 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jrose@1145 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jrose@1145 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jrose@1145 12 * version 2 for more details (a copy is included in the LICENSE file that
jrose@1145 13 * accompanied this code).
jrose@1145 14 *
jrose@1145 15 * You should have received a copy of the GNU General Public License version
jrose@1145 16 * 2 along with this work; if not, write to the Free Software Foundation,
jrose@1145 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jrose@1145 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
jrose@1145 22 *
jrose@1145 23 */
jrose@1145 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "interpreter/interpreter.hpp"
stefank@2314 27 #include "memory/allocation.inline.hpp"
stefank@2314 28 #include "prims/methodHandles.hpp"
jrose@1145 29
jrose@1145 30 #define __ _masm->
jrose@1145 31
twisti@2204 32 #ifdef PRODUCT
twisti@2204 33 #define BLOCK_COMMENT(str) /* nothing */
twisti@2204 34 #else
twisti@2204 35 #define BLOCK_COMMENT(str) __ block_comment(str)
twisti@2204 36 #endif
twisti@2204 37
twisti@2204 38 #define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
twisti@2204 39
jrose@1145 40 address MethodHandleEntry::start_compiled_entry(MacroAssembler* _masm,
jrose@1145 41 address interpreted_entry) {
twisti@1858 42 // Just before the actual machine code entry point, allocate space
twisti@1858 43 // for a MethodHandleEntry::Data record, so that we can manage everything
twisti@1858 44 // from one base pointer.
jrose@1145 45 __ align(wordSize);
jrose@1145 46 address target = __ pc() + sizeof(Data);
jrose@1145 47 while (__ pc() < target) {
jrose@1145 48 __ nop();
jrose@1145 49 __ align(wordSize);
jrose@1145 50 }
jrose@1145 51
jrose@1145 52 MethodHandleEntry* me = (MethodHandleEntry*) __ pc();
jrose@1145 53 me->set_end_address(__ pc()); // set a temporary end_address
jrose@1145 54 me->set_from_interpreted_entry(interpreted_entry);
jrose@1145 55 me->set_type_checking_entry(NULL);
jrose@1145 56
jrose@1145 57 return (address) me;
jrose@1145 58 }
jrose@1145 59
jrose@1145 60 MethodHandleEntry* MethodHandleEntry::finish_compiled_entry(MacroAssembler* _masm,
jrose@1145 61 address start_addr) {
jrose@1145 62 MethodHandleEntry* me = (MethodHandleEntry*) start_addr;
jrose@1145 63 assert(me->end_address() == start_addr, "valid ME");
jrose@1145 64
jrose@1145 65 // Fill in the real end_address:
jrose@1145 66 __ align(wordSize);
jrose@1145 67 me->set_end_address(__ pc());
jrose@1145 68
jrose@1145 69 return me;
jrose@1145 70 }
jrose@1145 71
jrose@1145 72
jrose@1145 73 // Code generation
jrose@1145 74 address MethodHandles::generate_method_handle_interpreter_entry(MacroAssembler* _masm) {
twisti@2271 75 // I5_savedSP/O5_savedSP: sender SP (must preserve)
twisti@1858 76 // G4 (Gargs): incoming argument list (must preserve)
twisti@2271 77 // G5_method: invoke methodOop
twisti@1858 78 // G3_method_handle: receiver method handle (must load from sp[MethodTypeForm.vmslots])
twisti@2271 79 // O0, O1, O2, O3, O4: garbage temps, blown away
twisti@2271 80 Register O0_mtype = O0;
twisti@1858 81 Register O1_scratch = O1;
jrose@2266 82 Register O2_scratch = O2;
jrose@2266 83 Register O3_scratch = O3;
twisti@2271 84 Register O4_argslot = O4;
jrose@2266 85 Register O4_argbase = O4;
twisti@1858 86
twisti@1858 87 // emit WrongMethodType path first, to enable back-branch from main path
twisti@1858 88 Label wrong_method_type;
twisti@1858 89 __ bind(wrong_method_type);
jrose@2266 90 Label invoke_generic_slow_path;
jrose@2266 91 assert(methodOopDesc::intrinsic_id_size_in_bytes() == sizeof(u1), "");;
jrose@2266 92 __ ldub(Address(G5_method, methodOopDesc::intrinsic_id_offset_in_bytes()), O1_scratch);
jrose@2266 93 __ cmp(O1_scratch, (int) vmIntrinsics::_invokeExact);
jrose@2266 94 __ brx(Assembler::notEqual, false, Assembler::pt, invoke_generic_slow_path);
jrose@2266 95 __ delayed()->nop();
twisti@2271 96 __ mov(O0_mtype, G5_method_type); // required by throw_WrongMethodType
jrose@2266 97 // mov(G3_method_handle, G3_method_handle); // already in this register
twisti@1858 98 __ jump_to(AddressLiteral(Interpreter::throw_WrongMethodType_entry()), O1_scratch);
twisti@1858 99 __ delayed()->nop();
twisti@1858 100
twisti@1858 101 // here's where control starts out:
twisti@1858 102 __ align(CodeEntryAlignment);
twisti@1858 103 address entry_point = __ pc();
twisti@1858 104
jrose@2266 105 // fetch the MethodType from the method handle
twisti@1858 106 {
twisti@1858 107 Register tem = G5_method;
twisti@1858 108 for (jint* pchase = methodOopDesc::method_type_offsets_chain(); (*pchase) != -1; pchase++) {
twisti@2271 109 __ ld_ptr(Address(tem, *pchase), O0_mtype);
twisti@2271 110 tem = O0_mtype; // in case there is another indirection
twisti@1858 111 }
twisti@1858 112 }
twisti@1858 113
twisti@1858 114 // given the MethodType, find out where the MH argument is buried
jrose@2639 115 __ load_heap_oop(Address(O0_mtype, __ delayed_value(java_lang_invoke_MethodType::form_offset_in_bytes, O1_scratch)), O4_argslot);
jrose@2639 116 __ ldsw( Address(O4_argslot, __ delayed_value(java_lang_invoke_MethodTypeForm::vmslots_offset_in_bytes, O1_scratch)), O4_argslot);
twisti@2271 117 __ add(Gargs, __ argument_offset(O4_argslot, 1), O4_argbase);
jrose@2266 118 // Note: argument_address uses its input as a scratch register!
jrose@2266 119 __ ld_ptr(Address(O4_argbase, -Interpreter::stackElementSize), G3_method_handle);
twisti@1858 120
jrose@2266 121 trace_method_handle(_masm, "invokeExact");
jrose@2266 122
twisti@2271 123 __ check_method_handle_type(O0_mtype, G3_method_handle, O1_scratch, wrong_method_type);
twisti@1858 124 __ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
twisti@1858 125
jrose@2266 126 // for invokeGeneric (only), apply argument and result conversions on the fly
jrose@2266 127 __ bind(invoke_generic_slow_path);
jrose@2266 128 #ifdef ASSERT
jrose@2266 129 { Label L;
jrose@2266 130 __ ldub(Address(G5_method, methodOopDesc::intrinsic_id_offset_in_bytes()), O1_scratch);
jrose@2266 131 __ cmp(O1_scratch, (int) vmIntrinsics::_invokeGeneric);
jrose@2266 132 __ brx(Assembler::equal, false, Assembler::pt, L);
jrose@2266 133 __ delayed()->nop();
jrose@2266 134 __ stop("bad methodOop::intrinsic_id");
jrose@2266 135 __ bind(L);
jrose@2266 136 }
jrose@2266 137 #endif //ASSERT
jrose@2266 138
jrose@2266 139 // make room on the stack for another pointer:
twisti@2271 140 insert_arg_slots(_masm, 2 * stack_move_unit(), _INSERT_REF_MASK, O4_argbase, O1_scratch, O2_scratch, O3_scratch);
jrose@2266 141 // load up an adapter from the calling type (Java weaves this)
jrose@2266 142 Register O2_form = O2_scratch;
jrose@2266 143 Register O3_adapter = O3_scratch;
jrose@2639 144 __ load_heap_oop(Address(O0_mtype, __ delayed_value(java_lang_invoke_MethodType::form_offset_in_bytes, O1_scratch)), O2_form);
twisti@2903 145 __ load_heap_oop(Address(O2_form, __ delayed_value(java_lang_invoke_MethodTypeForm::genericInvoker_offset_in_bytes, O1_scratch)), O3_adapter);
twisti@2903 146 __ verify_oop(O3_adapter);
jrose@2266 147 __ st_ptr(O3_adapter, Address(O4_argbase, 1 * Interpreter::stackElementSize));
jrose@2266 148 // As a trusted first argument, pass the type being called, so the adapter knows
jrose@2266 149 // the actual types of the arguments and return values.
jrose@2266 150 // (Generic invokers are shared among form-families of method-type.)
twisti@2271 151 __ st_ptr(O0_mtype, Address(O4_argbase, 0 * Interpreter::stackElementSize));
jrose@2266 152 // FIXME: assert that O3_adapter is of the right method-type.
jrose@2266 153 __ mov(O3_adapter, G3_method_handle);
jrose@2266 154 trace_method_handle(_masm, "invokeGeneric");
jrose@2266 155 __ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
jrose@2266 156
twisti@1858 157 return entry_point;
jrose@1145 158 }
jrose@1145 159
twisti@1858 160
twisti@1858 161 #ifdef ASSERT
twisti@1858 162 static void verify_argslot(MacroAssembler* _masm, Register argslot_reg, Register temp_reg, const char* error_message) {
twisti@1858 163 // Verify that argslot lies within (Gargs, FP].
twisti@1858 164 Label L_ok, L_bad;
twisti@2204 165 BLOCK_COMMENT("{ verify_argslot");
twisti@1858 166 #ifdef _LP64
twisti@1858 167 __ add(FP, STACK_BIAS, temp_reg);
twisti@1858 168 __ cmp(argslot_reg, temp_reg);
twisti@1858 169 #else
twisti@1858 170 __ cmp(argslot_reg, FP);
twisti@1858 171 #endif
twisti@1858 172 __ brx(Assembler::greaterUnsigned, false, Assembler::pn, L_bad);
twisti@1858 173 __ delayed()->nop();
twisti@1858 174 __ cmp(Gargs, argslot_reg);
twisti@1858 175 __ brx(Assembler::lessEqualUnsigned, false, Assembler::pt, L_ok);
twisti@1858 176 __ delayed()->nop();
twisti@1858 177 __ bind(L_bad);
twisti@1858 178 __ stop(error_message);
twisti@1858 179 __ bind(L_ok);
twisti@2204 180 BLOCK_COMMENT("} verify_argslot");
twisti@1858 181 }
twisti@1858 182 #endif
twisti@1858 183
twisti@1858 184
twisti@1858 185 // Helper to insert argument slots into the stack.
twisti@1858 186 // arg_slots must be a multiple of stack_move_unit() and <= 0
twisti@1858 187 void MethodHandles::insert_arg_slots(MacroAssembler* _masm,
twisti@1858 188 RegisterOrConstant arg_slots,
twisti@1858 189 int arg_mask,
twisti@1858 190 Register argslot_reg,
twisti@1858 191 Register temp_reg, Register temp2_reg, Register temp3_reg) {
twisti@1858 192 assert(temp3_reg != noreg, "temp3 required");
twisti@1858 193 assert_different_registers(argslot_reg, temp_reg, temp2_reg, temp3_reg,
twisti@1858 194 (!arg_slots.is_register() ? Gargs : arg_slots.as_register()));
twisti@1858 195
twisti@1858 196 #ifdef ASSERT
twisti@1858 197 verify_argslot(_masm, argslot_reg, temp_reg, "insertion point must fall within current frame");
twisti@1858 198 if (arg_slots.is_register()) {
twisti@1858 199 Label L_ok, L_bad;
twisti@1858 200 __ cmp(arg_slots.as_register(), (int32_t) NULL_WORD);
twisti@1858 201 __ br(Assembler::greater, false, Assembler::pn, L_bad);
twisti@1858 202 __ delayed()->nop();
twisti@1858 203 __ btst(-stack_move_unit() - 1, arg_slots.as_register());
twisti@1858 204 __ br(Assembler::zero, false, Assembler::pt, L_ok);
twisti@1858 205 __ delayed()->nop();
twisti@1858 206 __ bind(L_bad);
twisti@1858 207 __ stop("assert arg_slots <= 0 and clear low bits");
twisti@1858 208 __ bind(L_ok);
twisti@1858 209 } else {
twisti@1858 210 assert(arg_slots.as_constant() <= 0, "");
twisti@1858 211 assert(arg_slots.as_constant() % -stack_move_unit() == 0, "");
twisti@1858 212 }
twisti@1858 213 #endif // ASSERT
twisti@1858 214
twisti@1858 215 #ifdef _LP64
twisti@1858 216 if (arg_slots.is_register()) {
twisti@1858 217 // Was arg_slots register loaded as signed int?
twisti@1858 218 Label L_ok;
twisti@1858 219 __ sll(arg_slots.as_register(), BitsPerInt, temp_reg);
twisti@1858 220 __ sra(temp_reg, BitsPerInt, temp_reg);
twisti@1858 221 __ cmp(arg_slots.as_register(), temp_reg);
twisti@1858 222 __ br(Assembler::equal, false, Assembler::pt, L_ok);
twisti@1858 223 __ delayed()->nop();
twisti@1858 224 __ stop("arg_slots register not loaded as signed int");
twisti@1858 225 __ bind(L_ok);
twisti@1858 226 }
twisti@1858 227 #endif
twisti@1858 228
twisti@1858 229 // Make space on the stack for the inserted argument(s).
twisti@1858 230 // Then pull down everything shallower than argslot_reg.
twisti@1858 231 // The stacked return address gets pulled down with everything else.
twisti@1858 232 // That is, copy [sp, argslot) downward by -size words. In pseudo-code:
twisti@1858 233 // sp -= size;
twisti@1858 234 // for (temp = sp + size; temp < argslot; temp++)
twisti@1858 235 // temp[-size] = temp[0]
twisti@1858 236 // argslot -= size;
twisti@2204 237 BLOCK_COMMENT("insert_arg_slots {");
twisti@1858 238 RegisterOrConstant offset = __ regcon_sll_ptr(arg_slots, LogBytesPerWord, temp3_reg);
twisti@1858 239
twisti@1858 240 // Keep the stack pointer 2*wordSize aligned.
twisti@1858 241 const int TwoWordAlignmentMask = right_n_bits(LogBytesPerWord + 1);
twisti@1858 242 RegisterOrConstant masked_offset = __ regcon_andn_ptr(offset, TwoWordAlignmentMask, temp_reg);
twisti@1858 243 __ add(SP, masked_offset, SP);
twisti@1858 244
twisti@1858 245 __ mov(Gargs, temp_reg); // source pointer for copy
twisti@1858 246 __ add(Gargs, offset, Gargs);
twisti@1858 247
twisti@1858 248 {
twisti@1858 249 Label loop;
twisti@2204 250 __ BIND(loop);
twisti@1858 251 // pull one word down each time through the loop
twisti@1858 252 __ ld_ptr(Address(temp_reg, 0), temp2_reg);
twisti@1858 253 __ st_ptr(temp2_reg, Address(temp_reg, offset));
twisti@1858 254 __ add(temp_reg, wordSize, temp_reg);
twisti@1858 255 __ cmp(temp_reg, argslot_reg);
twisti@1858 256 __ brx(Assembler::less, false, Assembler::pt, loop);
twisti@1858 257 __ delayed()->nop(); // FILLME
twisti@1858 258 }
twisti@1858 259
twisti@1858 260 // Now move the argslot down, to point to the opened-up space.
twisti@1858 261 __ add(argslot_reg, offset, argslot_reg);
twisti@2204 262 BLOCK_COMMENT("} insert_arg_slots");
twisti@1858 263 }
twisti@1858 264
twisti@1858 265
twisti@1858 266 // Helper to remove argument slots from the stack.
twisti@1858 267 // arg_slots must be a multiple of stack_move_unit() and >= 0
twisti@1858 268 void MethodHandles::remove_arg_slots(MacroAssembler* _masm,
twisti@1858 269 RegisterOrConstant arg_slots,
twisti@1858 270 Register argslot_reg,
twisti@1858 271 Register temp_reg, Register temp2_reg, Register temp3_reg) {
twisti@1858 272 assert(temp3_reg != noreg, "temp3 required");
twisti@1858 273 assert_different_registers(argslot_reg, temp_reg, temp2_reg, temp3_reg,
twisti@1858 274 (!arg_slots.is_register() ? Gargs : arg_slots.as_register()));
twisti@1858 275
twisti@1858 276 RegisterOrConstant offset = __ regcon_sll_ptr(arg_slots, LogBytesPerWord, temp3_reg);
twisti@1858 277
twisti@1858 278 #ifdef ASSERT
twisti@1858 279 // Verify that [argslot..argslot+size) lies within (Gargs, FP).
twisti@1858 280 __ add(argslot_reg, offset, temp2_reg);
twisti@1858 281 verify_argslot(_masm, temp2_reg, temp_reg, "deleted argument(s) must fall within current frame");
twisti@1858 282 if (arg_slots.is_register()) {
twisti@1858 283 Label L_ok, L_bad;
twisti@1858 284 __ cmp(arg_slots.as_register(), (int32_t) NULL_WORD);
twisti@1858 285 __ br(Assembler::less, false, Assembler::pn, L_bad);
twisti@1858 286 __ delayed()->nop();
twisti@1858 287 __ btst(-stack_move_unit() - 1, arg_slots.as_register());
twisti@1858 288 __ br(Assembler::zero, false, Assembler::pt, L_ok);
twisti@1858 289 __ delayed()->nop();
twisti@1858 290 __ bind(L_bad);
twisti@1858 291 __ stop("assert arg_slots >= 0 and clear low bits");
twisti@1858 292 __ bind(L_ok);
twisti@1858 293 } else {
twisti@1858 294 assert(arg_slots.as_constant() >= 0, "");
twisti@1858 295 assert(arg_slots.as_constant() % -stack_move_unit() == 0, "");
twisti@1858 296 }
twisti@1858 297 #endif // ASSERT
twisti@1858 298
twisti@2204 299 BLOCK_COMMENT("remove_arg_slots {");
twisti@1858 300 // Pull up everything shallower than argslot.
twisti@1858 301 // Then remove the excess space on the stack.
twisti@1858 302 // The stacked return address gets pulled up with everything else.
twisti@1858 303 // That is, copy [sp, argslot) upward by size words. In pseudo-code:
twisti@1858 304 // for (temp = argslot-1; temp >= sp; --temp)
twisti@1858 305 // temp[size] = temp[0]
twisti@1858 306 // argslot += size;
twisti@1858 307 // sp += size;
twisti@1858 308 __ sub(argslot_reg, wordSize, temp_reg); // source pointer for copy
twisti@1858 309 {
twisti@1858 310 Label loop;
twisti@2204 311 __ BIND(loop);
twisti@1858 312 // pull one word up each time through the loop
twisti@1858 313 __ ld_ptr(Address(temp_reg, 0), temp2_reg);
twisti@1858 314 __ st_ptr(temp2_reg, Address(temp_reg, offset));
twisti@1858 315 __ sub(temp_reg, wordSize, temp_reg);
twisti@1858 316 __ cmp(temp_reg, Gargs);
twisti@1858 317 __ brx(Assembler::greaterEqual, false, Assembler::pt, loop);
twisti@1858 318 __ delayed()->nop(); // FILLME
twisti@1858 319 }
twisti@1858 320
twisti@1858 321 // Now move the argslot up, to point to the just-copied block.
twisti@1858 322 __ add(Gargs, offset, Gargs);
twisti@1858 323 // And adjust the argslot address to point at the deletion point.
twisti@1858 324 __ add(argslot_reg, offset, argslot_reg);
twisti@1858 325
twisti@1858 326 // Keep the stack pointer 2*wordSize aligned.
twisti@1858 327 const int TwoWordAlignmentMask = right_n_bits(LogBytesPerWord + 1);
twisti@1858 328 RegisterOrConstant masked_offset = __ regcon_andn_ptr(offset, TwoWordAlignmentMask, temp_reg);
twisti@1858 329 __ add(SP, masked_offset, SP);
twisti@2204 330 BLOCK_COMMENT("} remove_arg_slots");
twisti@1858 331 }
twisti@1858 332
twisti@1858 333
twisti@1858 334 #ifndef PRODUCT
twisti@1858 335 extern "C" void print_method_handle(oop mh);
twisti@1858 336 void trace_method_handle_stub(const char* adaptername,
never@2868 337 oopDesc* mh,
never@2868 338 intptr_t* saved_sp) {
never@2868 339 tty->print_cr("MH %s mh="INTPTR_FORMAT " saved_sp=" INTPTR_FORMAT, adaptername, (intptr_t) mh, saved_sp);
twisti@1858 340 print_method_handle(mh);
twisti@1858 341 }
twisti@2204 342 void MethodHandles::trace_method_handle(MacroAssembler* _masm, const char* adaptername) {
twisti@2204 343 if (!TraceMethodHandles) return;
twisti@2204 344 BLOCK_COMMENT("trace_method_handle {");
twisti@2204 345 // save: Gargs, O5_savedSP
twisti@2204 346 __ save_frame(16);
twisti@2204 347 __ set((intptr_t) adaptername, O0);
twisti@2204 348 __ mov(G3_method_handle, O1);
never@2868 349 __ mov(I5_savedSP, O2);
twisti@2204 350 __ mov(G3_method_handle, L3);
twisti@2204 351 __ mov(Gargs, L4);
twisti@2204 352 __ mov(G5_method_type, L5);
twisti@2204 353 __ call_VM_leaf(L7, CAST_FROM_FN_PTR(address, trace_method_handle_stub));
twisti@2204 354
twisti@2204 355 __ mov(L3, G3_method_handle);
twisti@2204 356 __ mov(L4, Gargs);
twisti@2204 357 __ mov(L5, G5_method_type);
twisti@2204 358 __ restore();
twisti@2204 359 BLOCK_COMMENT("} trace_method_handle");
twisti@2204 360 }
twisti@1858 361 #endif // PRODUCT
twisti@1858 362
jrose@1862 363 // which conversion op types are implemented here?
jrose@1862 364 int MethodHandles::adapter_conversion_ops_supported_mask() {
jrose@2639 365 return ((1<<java_lang_invoke_AdapterMethodHandle::OP_RETYPE_ONLY)
jrose@2639 366 |(1<<java_lang_invoke_AdapterMethodHandle::OP_RETYPE_RAW)
jrose@2639 367 |(1<<java_lang_invoke_AdapterMethodHandle::OP_CHECK_CAST)
jrose@2639 368 |(1<<java_lang_invoke_AdapterMethodHandle::OP_PRIM_TO_PRIM)
jrose@2639 369 |(1<<java_lang_invoke_AdapterMethodHandle::OP_REF_TO_PRIM)
jrose@2639 370 |(1<<java_lang_invoke_AdapterMethodHandle::OP_SWAP_ARGS)
jrose@2639 371 |(1<<java_lang_invoke_AdapterMethodHandle::OP_ROT_ARGS)
jrose@2639 372 |(1<<java_lang_invoke_AdapterMethodHandle::OP_DUP_ARGS)
jrose@2639 373 |(1<<java_lang_invoke_AdapterMethodHandle::OP_DROP_ARGS)
jrose@2639 374 //|(1<<java_lang_invoke_AdapterMethodHandle::OP_SPREAD_ARGS) //BUG!
jrose@1862 375 );
jrose@1862 376 // FIXME: MethodHandlesTest gets a crash if we enable OP_SPREAD_ARGS.
jrose@1862 377 }
twisti@1858 378
twisti@1858 379 //------------------------------------------------------------------------------
twisti@1858 380 // MethodHandles::generate_method_handle_stub
twisti@1858 381 //
jrose@1145 382 // Generate an "entry" field for a method handle.
jrose@1145 383 // This determines how the method handle will respond to calls.
twisti@2436 384 void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHandles::EntryKind ek) {
twisti@1858 385 // Here is the register state during an interpreted call,
twisti@1858 386 // as set up by generate_method_handle_interpreter_entry():
twisti@1858 387 // - G5: garbage temp (was MethodHandle.invoke methodOop, unused)
twisti@1858 388 // - G3: receiver method handle
twisti@1858 389 // - O5_savedSP: sender SP (must preserve)
twisti@1858 390
twisti@2411 391 const Register O0_argslot = O0;
twisti@2411 392 const Register O1_scratch = O1;
twisti@2411 393 const Register O2_scratch = O2;
twisti@2411 394 const Register O3_scratch = O3;
twisti@2411 395 const Register G5_index = G5;
twisti@2411 396
twisti@2411 397 // Argument registers for _raise_exception.
twisti@2411 398 const Register O0_code = O0;
twisti@2411 399 const Register O1_actual = O1;
twisti@2411 400 const Register O2_required = O2;
twisti@1858 401
jrose@2639 402 guarantee(java_lang_invoke_MethodHandle::vmentry_offset_in_bytes() != 0, "must have offsets");
twisti@1858 403
twisti@1858 404 // Some handy addresses:
twisti@1858 405 Address G5_method_fie( G5_method, in_bytes(methodOopDesc::from_interpreted_offset()));
twisti@2603 406 Address G5_method_fce( G5_method, in_bytes(methodOopDesc::from_compiled_offset()));
twisti@1858 407
jrose@2639 408 Address G3_mh_vmtarget( G3_method_handle, java_lang_invoke_MethodHandle::vmtarget_offset_in_bytes());
twisti@1858 409
jrose@2639 410 Address G3_dmh_vmindex( G3_method_handle, java_lang_invoke_DirectMethodHandle::vmindex_offset_in_bytes());
twisti@1858 411
jrose@2639 412 Address G3_bmh_vmargslot( G3_method_handle, java_lang_invoke_BoundMethodHandle::vmargslot_offset_in_bytes());
jrose@2639 413 Address G3_bmh_argument( G3_method_handle, java_lang_invoke_BoundMethodHandle::argument_offset_in_bytes());
twisti@1858 414
jrose@2639 415 Address G3_amh_vmargslot( G3_method_handle, java_lang_invoke_AdapterMethodHandle::vmargslot_offset_in_bytes());
jrose@2639 416 Address G3_amh_argument ( G3_method_handle, java_lang_invoke_AdapterMethodHandle::argument_offset_in_bytes());
jrose@2639 417 Address G3_amh_conversion(G3_method_handle, java_lang_invoke_AdapterMethodHandle::conversion_offset_in_bytes());
twisti@1858 418
twisti@1858 419 const int java_mirror_offset = klassOopDesc::klass_part_offset_in_bytes() + Klass::java_mirror_offset_in_bytes();
twisti@1858 420
twisti@1858 421 if (have_entry(ek)) {
twisti@1858 422 __ nop(); // empty stubs make SG sick
twisti@1858 423 return;
twisti@1858 424 }
twisti@1858 425
twisti@1858 426 address interp_entry = __ pc();
twisti@1858 427
twisti@2204 428 trace_method_handle(_masm, entry_name(ek));
twisti@1858 429
twisti@1858 430 switch ((int) ek) {
twisti@1858 431 case _raise_exception:
twisti@1858 432 {
twisti@1858 433 // Not a real MH entry, but rather shared code for raising an
twisti@2603 434 // exception. Since we use the compiled entry, arguments are
twisti@2603 435 // expected in compiler argument registers.
twisti@2436 436 assert(raise_exception_method(), "must be set");
twisti@2603 437 assert(raise_exception_method()->from_compiled_entry(), "method must be linked");
twisti@1858 438
twisti@1858 439 __ mov(O5_savedSP, SP); // Cut the stack back to where the caller started.
twisti@1858 440
twisti@2411 441 Label L_no_method;
jrose@2639 442 // FIXME: fill in _raise_exception_method with a suitable java.lang.invoke method
twisti@1858 443 __ set(AddressLiteral((address) &_raise_exception_method), G5_method);
twisti@1858 444 __ ld_ptr(Address(G5_method, 0), G5_method);
twisti@1858 445 __ tst(G5_method);
twisti@2411 446 __ brx(Assembler::zero, false, Assembler::pn, L_no_method);
twisti@1858 447 __ delayed()->nop();
twisti@1858 448
twisti@2411 449 const int jobject_oop_offset = 0;
twisti@1858 450 __ ld_ptr(Address(G5_method, jobject_oop_offset), G5_method);
twisti@1858 451 __ tst(G5_method);
twisti@2411 452 __ brx(Assembler::zero, false, Assembler::pn, L_no_method);
twisti@1858 453 __ delayed()->nop();
twisti@1858 454
twisti@1858 455 __ verify_oop(G5_method);
twisti@2603 456 __ jump_indirect_to(G5_method_fce, O3_scratch); // jump to compiled entry
twisti@1858 457 __ delayed()->nop();
twisti@1858 458
twisti@1858 459 // Do something that is at least causes a valid throw from the interpreter.
twisti@2411 460 __ bind(L_no_method);
twisti@2411 461 __ unimplemented("call throw_WrongMethodType_entry");
twisti@1858 462 }
twisti@1858 463 break;
twisti@1858 464
twisti@1858 465 case _invokestatic_mh:
twisti@1858 466 case _invokespecial_mh:
twisti@1858 467 {
twisti@2201 468 __ load_heap_oop(G3_mh_vmtarget, G5_method); // target is a methodOop
twisti@1858 469 __ verify_oop(G5_method);
twisti@1858 470 // Same as TemplateTable::invokestatic or invokespecial,
twisti@1858 471 // minus the CP setup and profiling:
twisti@1858 472 if (ek == _invokespecial_mh) {
twisti@1858 473 // Must load & check the first argument before entering the target method.
twisti@1858 474 __ load_method_handle_vmslots(O0_argslot, G3_method_handle, O1_scratch);
never@2809 475 __ ld_ptr(__ argument_address(O0_argslot, -1), G3_method_handle);
twisti@1858 476 __ null_check(G3_method_handle);
twisti@1858 477 __ verify_oop(G3_method_handle);
twisti@1858 478 }
twisti@1858 479 __ jump_indirect_to(G5_method_fie, O1_scratch);
twisti@1858 480 __ delayed()->nop();
twisti@1858 481 }
twisti@1858 482 break;
twisti@1858 483
twisti@1858 484 case _invokevirtual_mh:
twisti@1858 485 {
twisti@1858 486 // Same as TemplateTable::invokevirtual,
twisti@1858 487 // minus the CP setup and profiling:
twisti@1858 488
twisti@1858 489 // Pick out the vtable index and receiver offset from the MH,
twisti@1858 490 // and then we can discard it:
twisti@1858 491 __ load_method_handle_vmslots(O0_argslot, G3_method_handle, O1_scratch);
twisti@1858 492 __ ldsw(G3_dmh_vmindex, G5_index);
twisti@1858 493 // Note: The verifier allows us to ignore G3_mh_vmtarget.
twisti@1858 494 __ ld_ptr(__ argument_address(O0_argslot, -1), G3_method_handle);
twisti@1858 495 __ null_check(G3_method_handle, oopDesc::klass_offset_in_bytes());
twisti@1858 496
twisti@1858 497 // Get receiver klass:
twisti@1858 498 Register O0_klass = O0_argslot;
twisti@1858 499 __ load_klass(G3_method_handle, O0_klass);
twisti@1858 500 __ verify_oop(O0_klass);
twisti@1858 501
twisti@1858 502 // Get target methodOop & entry point:
twisti@1858 503 const int base = instanceKlass::vtable_start_offset() * wordSize;
twisti@1858 504 assert(vtableEntry::size() * wordSize == wordSize, "adjust the scaling in the code below");
twisti@1858 505
twisti@1858 506 __ sll_ptr(G5_index, LogBytesPerWord, G5_index);
twisti@1858 507 __ add(O0_klass, G5_index, O0_klass);
twisti@1858 508 Address vtable_entry_addr(O0_klass, base + vtableEntry::method_offset_in_bytes());
twisti@1858 509 __ ld_ptr(vtable_entry_addr, G5_method);
twisti@1858 510
twisti@1858 511 __ verify_oop(G5_method);
twisti@1858 512 __ jump_indirect_to(G5_method_fie, O1_scratch);
twisti@1858 513 __ delayed()->nop();
twisti@1858 514 }
twisti@1858 515 break;
twisti@1858 516
twisti@1858 517 case _invokeinterface_mh:
twisti@1858 518 {
twisti@1858 519 // Same as TemplateTable::invokeinterface,
twisti@1858 520 // minus the CP setup and profiling:
twisti@1858 521 __ load_method_handle_vmslots(O0_argslot, G3_method_handle, O1_scratch);
twisti@1858 522 Register O1_intf = O1_scratch;
twisti@2201 523 __ load_heap_oop(G3_mh_vmtarget, O1_intf);
twisti@1858 524 __ ldsw(G3_dmh_vmindex, G5_index);
twisti@1858 525 __ ld_ptr(__ argument_address(O0_argslot, -1), G3_method_handle);
twisti@1858 526 __ null_check(G3_method_handle, oopDesc::klass_offset_in_bytes());
twisti@1858 527
twisti@1858 528 // Get receiver klass:
twisti@1858 529 Register O0_klass = O0_argslot;
twisti@1858 530 __ load_klass(G3_method_handle, O0_klass);
twisti@1858 531 __ verify_oop(O0_klass);
twisti@1858 532
twisti@1858 533 // Get interface:
twisti@1858 534 Label no_such_interface;
twisti@1858 535 __ verify_oop(O1_intf);
twisti@1858 536 __ lookup_interface_method(O0_klass, O1_intf,
twisti@1858 537 // Note: next two args must be the same:
twisti@1858 538 G5_index, G5_method,
twisti@1858 539 O2_scratch,
twisti@1858 540 O3_scratch,
twisti@1858 541 no_such_interface);
twisti@1858 542
twisti@1858 543 __ verify_oop(G5_method);
twisti@1858 544 __ jump_indirect_to(G5_method_fie, O1_scratch);
twisti@1858 545 __ delayed()->nop();
twisti@1858 546
twisti@1858 547 __ bind(no_such_interface);
twisti@1858 548 // Throw an exception.
twisti@1858 549 // For historical reasons, it will be IncompatibleClassChangeError.
twisti@1858 550 __ unimplemented("not tested yet");
twisti@2411 551 __ ld_ptr(Address(O1_intf, java_mirror_offset), O2_required); // required interface
twisti@2411 552 __ mov( O0_klass, O1_actual); // bad receiver
twisti@2411 553 __ jump_to(AddressLiteral(from_interpreted_entry(_raise_exception)), O3_scratch);
twisti@2411 554 __ delayed()->mov(Bytecodes::_invokeinterface, O0_code); // who is complaining?
twisti@1858 555 }
twisti@1858 556 break;
twisti@1858 557
twisti@1858 558 case _bound_ref_mh:
twisti@1858 559 case _bound_int_mh:
twisti@1858 560 case _bound_long_mh:
twisti@1858 561 case _bound_ref_direct_mh:
twisti@1858 562 case _bound_int_direct_mh:
twisti@1858 563 case _bound_long_direct_mh:
twisti@1858 564 {
twisti@1858 565 const bool direct_to_method = (ek >= _bound_ref_direct_mh);
twisti@1858 566 BasicType arg_type = T_ILLEGAL;
twisti@1858 567 int arg_mask = _INSERT_NO_MASK;
twisti@1858 568 int arg_slots = -1;
twisti@1858 569 get_ek_bound_mh_info(ek, arg_type, arg_mask, arg_slots);
twisti@1858 570
twisti@1858 571 // Make room for the new argument:
twisti@1858 572 __ ldsw(G3_bmh_vmargslot, O0_argslot);
twisti@1858 573 __ add(Gargs, __ argument_offset(O0_argslot), O0_argslot);
twisti@1858 574
twisti@1858 575 insert_arg_slots(_masm, arg_slots * stack_move_unit(), arg_mask, O0_argslot, O1_scratch, O2_scratch, G5_index);
twisti@1858 576
twisti@1858 577 // Store bound argument into the new stack slot:
twisti@2201 578 __ load_heap_oop(G3_bmh_argument, O1_scratch);
twisti@1858 579 if (arg_type == T_OBJECT) {
twisti@1858 580 __ st_ptr(O1_scratch, Address(O0_argslot, 0));
twisti@1858 581 } else {
twisti@1858 582 Address prim_value_addr(O1_scratch, java_lang_boxing_object::value_offset_in_bytes(arg_type));
twisti@2565 583 const int arg_size = type2aelembytes(arg_type);
twisti@2565 584 __ load_sized_value(prim_value_addr, O2_scratch, arg_size, is_signed_subword_type(arg_type));
twisti@2565 585 __ store_sized_value(O2_scratch, Address(O0_argslot, 0), arg_size); // long store uses O2/O3 on !_LP64
twisti@1858 586 }
twisti@1858 587
twisti@1858 588 if (direct_to_method) {
twisti@2201 589 __ load_heap_oop(G3_mh_vmtarget, G5_method); // target is a methodOop
twisti@1858 590 __ verify_oop(G5_method);
twisti@1858 591 __ jump_indirect_to(G5_method_fie, O1_scratch);
twisti@1858 592 __ delayed()->nop();
twisti@1858 593 } else {
twisti@2201 594 __ load_heap_oop(G3_mh_vmtarget, G3_method_handle); // target is a methodOop
twisti@1858 595 __ verify_oop(G3_method_handle);
twisti@1858 596 __ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
twisti@1858 597 }
twisti@1858 598 }
twisti@1858 599 break;
twisti@1858 600
twisti@1858 601 case _adapter_retype_only:
twisti@1858 602 case _adapter_retype_raw:
twisti@1858 603 // Immediately jump to the next MH layer:
twisti@2201 604 __ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
twisti@1858 605 __ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
twisti@1858 606 // This is OK when all parameter types widen.
twisti@1858 607 // It is also OK when a return type narrows.
twisti@1858 608 break;
twisti@1858 609
twisti@1858 610 case _adapter_check_cast:
twisti@1858 611 {
twisti@1858 612 // Temps:
twisti@1858 613 Register G5_klass = G5_index; // Interesting AMH data.
twisti@1858 614
twisti@1858 615 // Check a reference argument before jumping to the next layer of MH:
twisti@1858 616 __ ldsw(G3_amh_vmargslot, O0_argslot);
twisti@1858 617 Address vmarg = __ argument_address(O0_argslot);
twisti@1858 618
twisti@1858 619 // What class are we casting to?
twisti@2201 620 __ load_heap_oop(G3_amh_argument, G5_klass); // This is a Class object!
twisti@2201 621 __ load_heap_oop(Address(G5_klass, java_lang_Class::klass_offset_in_bytes()), G5_klass);
twisti@1858 622
twisti@1858 623 Label done;
twisti@1858 624 __ ld_ptr(vmarg, O1_scratch);
twisti@1858 625 __ tst(O1_scratch);
twisti@1858 626 __ brx(Assembler::zero, false, Assembler::pn, done); // No cast if null.
twisti@1858 627 __ delayed()->nop();
twisti@1858 628 __ load_klass(O1_scratch, O1_scratch);
twisti@1858 629
twisti@1858 630 // Live at this point:
twisti@1858 631 // - G5_klass : klass required by the target method
twisti@2874 632 // - O0_argslot : argslot index in vmarg; may be required in the failing path
twisti@1858 633 // - O1_scratch : argument klass to test
twisti@1858 634 // - G3_method_handle: adapter method handle
twisti@2874 635 __ check_klass_subtype(O1_scratch, G5_klass, O2_scratch, O3_scratch, done);
twisti@1858 636
twisti@1858 637 // If we get here, the type check failed!
twisti@2411 638 __ load_heap_oop(G3_amh_argument, O2_required); // required class
twisti@2411 639 __ ld_ptr( vmarg, O1_actual); // bad object
twisti@2411 640 __ jump_to(AddressLiteral(from_interpreted_entry(_raise_exception)), O3_scratch);
twisti@2411 641 __ delayed()->mov(Bytecodes::_checkcast, O0_code); // who is complaining?
twisti@1858 642
twisti@1858 643 __ bind(done);
twisti@1858 644 // Get the new MH:
twisti@2201 645 __ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
twisti@1858 646 __ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
twisti@1858 647 }
twisti@1858 648 break;
twisti@1858 649
twisti@1858 650 case _adapter_prim_to_prim:
twisti@1858 651 case _adapter_ref_to_prim:
twisti@1858 652 // Handled completely by optimized cases.
twisti@1858 653 __ stop("init_AdapterMethodHandle should not issue this");
twisti@1858 654 break;
twisti@1858 655
twisti@1858 656 case _adapter_opt_i2i: // optimized subcase of adapt_prim_to_prim
twisti@1858 657 //case _adapter_opt_f2i: // optimized subcase of adapt_prim_to_prim
twisti@1858 658 case _adapter_opt_l2i: // optimized subcase of adapt_prim_to_prim
twisti@1858 659 case _adapter_opt_unboxi: // optimized subcase of adapt_ref_to_prim
twisti@1858 660 {
twisti@1858 661 // Perform an in-place conversion to int or an int subword.
twisti@1858 662 __ ldsw(G3_amh_vmargslot, O0_argslot);
twisti@2351 663 Address value;
twisti@1858 664 Address vmarg = __ argument_address(O0_argslot);
twisti@1858 665 bool value_left_justified = false;
twisti@1858 666
twisti@1858 667 switch (ek) {
twisti@1858 668 case _adapter_opt_i2i:
twisti@2256 669 value = vmarg;
twisti@2256 670 break;
twisti@1858 671 case _adapter_opt_l2i:
twisti@2256 672 {
twisti@2256 673 // just delete the extra slot
twisti@2351 674 #ifdef _LP64
twisti@2351 675 // In V9, longs are given 2 64-bit slots in the interpreter, but the
twisti@2351 676 // data is passed in only 1 slot.
twisti@2351 677 // Keep the second slot.
twisti@2351 678 __ add(Gargs, __ argument_offset(O0_argslot, -1), O0_argslot);
twisti@2351 679 remove_arg_slots(_masm, -stack_move_unit(), O0_argslot, O1_scratch, O2_scratch, O3_scratch);
twisti@2351 680 value = Address(O0_argslot, 4); // Get least-significant 32-bit of 64-bit value.
twisti@2351 681 vmarg = Address(O0_argslot, Interpreter::stackElementSize);
twisti@2351 682 #else
twisti@2351 683 // Keep the first slot.
twisti@2256 684 __ add(Gargs, __ argument_offset(O0_argslot), O0_argslot);
twisti@2256 685 remove_arg_slots(_masm, -stack_move_unit(), O0_argslot, O1_scratch, O2_scratch, O3_scratch);
twisti@2351 686 value = Address(O0_argslot, 0);
twisti@2351 687 vmarg = value;
twisti@2351 688 #endif
twisti@2256 689 }
twisti@1858 690 break;
twisti@1858 691 case _adapter_opt_unboxi:
twisti@1858 692 {
twisti@1858 693 // Load the value up from the heap.
twisti@1858 694 __ ld_ptr(vmarg, O1_scratch);
twisti@1858 695 int value_offset = java_lang_boxing_object::value_offset_in_bytes(T_INT);
twisti@1858 696 #ifdef ASSERT
twisti@1858 697 for (int bt = T_BOOLEAN; bt < T_INT; bt++) {
twisti@1858 698 if (is_subword_type(BasicType(bt)))
twisti@1858 699 assert(value_offset == java_lang_boxing_object::value_offset_in_bytes(BasicType(bt)), "");
twisti@1858 700 }
twisti@1858 701 #endif
twisti@1858 702 __ null_check(O1_scratch, value_offset);
twisti@1858 703 value = Address(O1_scratch, value_offset);
twisti@1858 704 #ifdef _BIG_ENDIAN
twisti@1858 705 // Values stored in objects are packed.
twisti@1858 706 value_left_justified = true;
twisti@1858 707 #endif
twisti@1858 708 }
twisti@1858 709 break;
twisti@1858 710 default:
twisti@1858 711 ShouldNotReachHere();
twisti@1858 712 }
twisti@1858 713
twisti@1858 714 // This check is required on _BIG_ENDIAN
twisti@1858 715 Register G5_vminfo = G5_index;
twisti@1858 716 __ ldsw(G3_amh_conversion, G5_vminfo);
twisti@1858 717 assert(CONV_VMINFO_SHIFT == 0, "preshifted");
twisti@1858 718
twisti@1858 719 // Original 32-bit vmdata word must be of this form:
twisti@1858 720 // | MBZ:6 | signBitCount:8 | srcDstTypes:8 | conversionOp:8 |
twisti@1858 721 __ lduw(value, O1_scratch);
twisti@1858 722 if (!value_left_justified)
twisti@1858 723 __ sll(O1_scratch, G5_vminfo, O1_scratch);
twisti@1858 724 Label zero_extend, done;
twisti@1858 725 __ btst(CONV_VMINFO_SIGN_FLAG, G5_vminfo);
twisti@1858 726 __ br(Assembler::zero, false, Assembler::pn, zero_extend);
twisti@1858 727 __ delayed()->nop();
twisti@1858 728
twisti@1858 729 // this path is taken for int->byte, int->short
twisti@1858 730 __ sra(O1_scratch, G5_vminfo, O1_scratch);
twisti@1858 731 __ ba(false, done);
twisti@1858 732 __ delayed()->nop();
twisti@1858 733
twisti@1858 734 __ bind(zero_extend);
twisti@1858 735 // this is taken for int->char
twisti@1858 736 __ srl(O1_scratch, G5_vminfo, O1_scratch);
twisti@1858 737
twisti@1858 738 __ bind(done);
twisti@1858 739 __ st(O1_scratch, vmarg);
twisti@1858 740
twisti@1858 741 // Get the new MH:
twisti@2201 742 __ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
twisti@1858 743 __ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
twisti@1858 744 }
twisti@1858 745 break;
twisti@1858 746
twisti@1858 747 case _adapter_opt_i2l: // optimized subcase of adapt_prim_to_prim
twisti@1858 748 case _adapter_opt_unboxl: // optimized subcase of adapt_ref_to_prim
twisti@1858 749 {
twisti@1858 750 // Perform an in-place int-to-long or ref-to-long conversion.
twisti@1858 751 __ ldsw(G3_amh_vmargslot, O0_argslot);
twisti@1858 752
twisti@1858 753 // On big-endian machine we duplicate the slot and store the MSW
twisti@1858 754 // in the first slot.
twisti@1858 755 __ add(Gargs, __ argument_offset(O0_argslot, 1), O0_argslot);
twisti@1858 756
twisti@1858 757 insert_arg_slots(_masm, stack_move_unit(), _INSERT_INT_MASK, O0_argslot, O1_scratch, O2_scratch, G5_index);
twisti@1858 758
twisti@1858 759 Address arg_lsw(O0_argslot, 0);
twisti@1861 760 Address arg_msw(O0_argslot, -Interpreter::stackElementSize);
twisti@1858 761
twisti@1858 762 switch (ek) {
twisti@1858 763 case _adapter_opt_i2l:
twisti@1858 764 {
twisti@2664 765 #ifdef _LP64
twisti@2664 766 __ ldsw(arg_lsw, O2_scratch); // Load LSW sign-extended
twisti@2664 767 #else
twisti@2664 768 __ ldsw(arg_lsw, O3_scratch); // Load LSW sign-extended
twisti@2664 769 __ srlx(O3_scratch, BitsPerInt, O2_scratch); // Move MSW value to lower 32-bits for std
twisti@2664 770 #endif
twisti@2664 771 __ st_long(O2_scratch, arg_msw); // Uses O2/O3 on !_LP64
twisti@1858 772 }
twisti@1858 773 break;
twisti@1858 774 case _adapter_opt_unboxl:
twisti@1858 775 {
twisti@1858 776 // Load the value up from the heap.
twisti@1858 777 __ ld_ptr(arg_lsw, O1_scratch);
twisti@1858 778 int value_offset = java_lang_boxing_object::value_offset_in_bytes(T_LONG);
twisti@1858 779 assert(value_offset == java_lang_boxing_object::value_offset_in_bytes(T_DOUBLE), "");
twisti@1858 780 __ null_check(O1_scratch, value_offset);
twisti@1858 781 __ ld_long(Address(O1_scratch, value_offset), O2_scratch); // Uses O2/O3 on !_LP64
twisti@1858 782 __ st_long(O2_scratch, arg_msw);
twisti@1858 783 }
twisti@1858 784 break;
twisti@1858 785 default:
twisti@1858 786 ShouldNotReachHere();
twisti@1858 787 }
twisti@1858 788
twisti@2201 789 __ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
twisti@1858 790 __ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
twisti@1858 791 }
twisti@1858 792 break;
twisti@1858 793
twisti@1858 794 case _adapter_opt_f2d: // optimized subcase of adapt_prim_to_prim
twisti@1858 795 case _adapter_opt_d2f: // optimized subcase of adapt_prim_to_prim
twisti@1858 796 {
twisti@1858 797 // perform an in-place floating primitive conversion
twisti@1858 798 __ unimplemented(entry_name(ek));
twisti@1858 799 }
twisti@1858 800 break;
twisti@1858 801
twisti@1858 802 case _adapter_prim_to_ref:
twisti@1858 803 __ unimplemented(entry_name(ek)); // %%% FIXME: NYI
twisti@1858 804 break;
twisti@1858 805
twisti@1858 806 case _adapter_swap_args:
twisti@1858 807 case _adapter_rot_args:
twisti@1858 808 // handled completely by optimized cases
twisti@1858 809 __ stop("init_AdapterMethodHandle should not issue this");
twisti@1858 810 break;
twisti@1858 811
twisti@1858 812 case _adapter_opt_swap_1:
twisti@1858 813 case _adapter_opt_swap_2:
twisti@1858 814 case _adapter_opt_rot_1_up:
twisti@1858 815 case _adapter_opt_rot_1_down:
twisti@1858 816 case _adapter_opt_rot_2_up:
twisti@1858 817 case _adapter_opt_rot_2_down:
twisti@1858 818 {
twisti@1858 819 int swap_bytes = 0, rotate = 0;
twisti@1858 820 get_ek_adapter_opt_swap_rot_info(ek, swap_bytes, rotate);
twisti@1858 821
twisti@1858 822 // 'argslot' is the position of the first argument to swap.
twisti@1858 823 __ ldsw(G3_amh_vmargslot, O0_argslot);
twisti@1858 824 __ add(Gargs, __ argument_offset(O0_argslot), O0_argslot);
twisti@1858 825
twisti@1858 826 // 'vminfo' is the second.
twisti@1858 827 Register O1_destslot = O1_scratch;
twisti@1858 828 __ ldsw(G3_amh_conversion, O1_destslot);
twisti@1858 829 assert(CONV_VMINFO_SHIFT == 0, "preshifted");
twisti@1858 830 __ and3(O1_destslot, CONV_VMINFO_MASK, O1_destslot);
twisti@1858 831 __ add(Gargs, __ argument_offset(O1_destslot), O1_destslot);
twisti@1858 832
twisti@1858 833 if (!rotate) {
twisti@1858 834 for (int i = 0; i < swap_bytes; i += wordSize) {
twisti@1858 835 __ ld_ptr(Address(O0_argslot, i), O2_scratch);
twisti@1858 836 __ ld_ptr(Address(O1_destslot, i), O3_scratch);
twisti@1858 837 __ st_ptr(O3_scratch, Address(O0_argslot, i));
twisti@1858 838 __ st_ptr(O2_scratch, Address(O1_destslot, i));
twisti@1858 839 }
twisti@1858 840 } else {
twisti@1858 841 // Save the first chunk, which is going to get overwritten.
twisti@1858 842 switch (swap_bytes) {
twisti@1858 843 case 4 : __ lduw(Address(O0_argslot, 0), O2_scratch); break;
twisti@1858 844 case 16: __ ldx( Address(O0_argslot, 8), O3_scratch); //fall-thru
twisti@1858 845 case 8 : __ ldx( Address(O0_argslot, 0), O2_scratch); break;
twisti@1858 846 default: ShouldNotReachHere();
twisti@1858 847 }
twisti@1858 848
twisti@1858 849 if (rotate > 0) {
twisti@1858 850 // Rorate upward.
twisti@1858 851 __ sub(O0_argslot, swap_bytes, O0_argslot);
twisti@1858 852 #if ASSERT
twisti@1858 853 {
twisti@1858 854 // Verify that argslot > destslot, by at least swap_bytes.
twisti@1858 855 Label L_ok;
twisti@1858 856 __ cmp(O0_argslot, O1_destslot);
twisti@1858 857 __ brx(Assembler::greaterEqualUnsigned, false, Assembler::pt, L_ok);
twisti@1858 858 __ delayed()->nop();
twisti@1858 859 __ stop("source must be above destination (upward rotation)");
twisti@1858 860 __ bind(L_ok);
twisti@1858 861 }
twisti@1858 862 #endif
twisti@1858 863 // Work argslot down to destslot, copying contiguous data upwards.
twisti@1858 864 // Pseudo-code:
twisti@1858 865 // argslot = src_addr - swap_bytes
twisti@1858 866 // destslot = dest_addr
twisti@1858 867 // while (argslot >= destslot) {
twisti@1858 868 // *(argslot + swap_bytes) = *(argslot + 0);
twisti@1858 869 // argslot--;
twisti@1858 870 // }
twisti@1858 871 Label loop;
twisti@1858 872 __ bind(loop);
twisti@1858 873 __ ld_ptr(Address(O0_argslot, 0), G5_index);
twisti@1858 874 __ st_ptr(G5_index, Address(O0_argslot, swap_bytes));
twisti@1858 875 __ sub(O0_argslot, wordSize, O0_argslot);
twisti@1858 876 __ cmp(O0_argslot, O1_destslot);
twisti@1858 877 __ brx(Assembler::greaterEqualUnsigned, false, Assembler::pt, loop);
twisti@1858 878 __ delayed()->nop(); // FILLME
twisti@1858 879 } else {
twisti@1858 880 __ add(O0_argslot, swap_bytes, O0_argslot);
twisti@1858 881 #if ASSERT
twisti@1858 882 {
twisti@1858 883 // Verify that argslot < destslot, by at least swap_bytes.
twisti@1858 884 Label L_ok;
twisti@1858 885 __ cmp(O0_argslot, O1_destslot);
twisti@1858 886 __ brx(Assembler::lessEqualUnsigned, false, Assembler::pt, L_ok);
twisti@1858 887 __ delayed()->nop();
twisti@1858 888 __ stop("source must be above destination (upward rotation)");
twisti@1858 889 __ bind(L_ok);
twisti@1858 890 }
twisti@1858 891 #endif
twisti@1858 892 // Work argslot up to destslot, copying contiguous data downwards.
twisti@1858 893 // Pseudo-code:
twisti@1858 894 // argslot = src_addr + swap_bytes
twisti@1858 895 // destslot = dest_addr
twisti@1858 896 // while (argslot >= destslot) {
twisti@1858 897 // *(argslot - swap_bytes) = *(argslot + 0);
twisti@1858 898 // argslot++;
twisti@1858 899 // }
twisti@1858 900 Label loop;
twisti@1858 901 __ bind(loop);
twisti@1858 902 __ ld_ptr(Address(O0_argslot, 0), G5_index);
twisti@1858 903 __ st_ptr(G5_index, Address(O0_argslot, -swap_bytes));
twisti@1858 904 __ add(O0_argslot, wordSize, O0_argslot);
twisti@1858 905 __ cmp(O0_argslot, O1_destslot);
twisti@1858 906 __ brx(Assembler::lessEqualUnsigned, false, Assembler::pt, loop);
twisti@1858 907 __ delayed()->nop(); // FILLME
twisti@1858 908 }
twisti@1858 909
twisti@1858 910 // Store the original first chunk into the destination slot, now free.
twisti@1858 911 switch (swap_bytes) {
twisti@1858 912 case 4 : __ stw(O2_scratch, Address(O1_destslot, 0)); break;
twisti@1858 913 case 16: __ stx(O3_scratch, Address(O1_destslot, 8)); // fall-thru
twisti@1858 914 case 8 : __ stx(O2_scratch, Address(O1_destslot, 0)); break;
twisti@1858 915 default: ShouldNotReachHere();
twisti@1858 916 }
twisti@1858 917 }
twisti@1858 918
twisti@2201 919 __ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
twisti@1858 920 __ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
twisti@1858 921 }
twisti@1858 922 break;
twisti@1858 923
twisti@1858 924 case _adapter_dup_args:
twisti@1858 925 {
twisti@1858 926 // 'argslot' is the position of the first argument to duplicate.
twisti@1858 927 __ ldsw(G3_amh_vmargslot, O0_argslot);
twisti@1858 928 __ add(Gargs, __ argument_offset(O0_argslot), O0_argslot);
twisti@1858 929
twisti@1858 930 // 'stack_move' is negative number of words to duplicate.
twisti@1858 931 Register G5_stack_move = G5_index;
twisti@1858 932 __ ldsw(G3_amh_conversion, G5_stack_move);
twisti@1858 933 __ sra(G5_stack_move, CONV_STACK_MOVE_SHIFT, G5_stack_move);
twisti@1858 934
twisti@1858 935 // Remember the old Gargs (argslot[0]).
twisti@1858 936 Register O1_oldarg = O1_scratch;
twisti@1858 937 __ mov(Gargs, O1_oldarg);
twisti@1858 938
twisti@1858 939 // Move Gargs down to make room for dups.
twisti@1858 940 __ sll_ptr(G5_stack_move, LogBytesPerWord, G5_stack_move);
twisti@1858 941 __ add(Gargs, G5_stack_move, Gargs);
twisti@1858 942
twisti@1858 943 // Compute the new Gargs (argslot[0]).
twisti@1858 944 Register O2_newarg = O2_scratch;
twisti@1858 945 __ mov(Gargs, O2_newarg);
twisti@1858 946
twisti@1858 947 // Copy from oldarg[0...] down to newarg[0...]
twisti@1858 948 // Pseude-code:
twisti@1858 949 // O1_oldarg = old-Gargs
twisti@1858 950 // O2_newarg = new-Gargs
twisti@1858 951 // O0_argslot = argslot
twisti@1858 952 // while (O2_newarg < O1_oldarg) *O2_newarg = *O0_argslot++
twisti@1858 953 Label loop;
twisti@1858 954 __ bind(loop);
twisti@1858 955 __ ld_ptr(Address(O0_argslot, 0), O3_scratch);
twisti@1858 956 __ st_ptr(O3_scratch, Address(O2_newarg, 0));
twisti@1858 957 __ add(O0_argslot, wordSize, O0_argslot);
twisti@1858 958 __ add(O2_newarg, wordSize, O2_newarg);
twisti@1858 959 __ cmp(O2_newarg, O1_oldarg);
twisti@1858 960 __ brx(Assembler::less, false, Assembler::pt, loop);
twisti@1858 961 __ delayed()->nop(); // FILLME
twisti@1858 962
twisti@2201 963 __ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
twisti@1858 964 __ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
twisti@1858 965 }
twisti@1858 966 break;
twisti@1858 967
twisti@1858 968 case _adapter_drop_args:
twisti@1858 969 {
twisti@1858 970 // 'argslot' is the position of the first argument to nuke.
twisti@1858 971 __ ldsw(G3_amh_vmargslot, O0_argslot);
twisti@1858 972 __ add(Gargs, __ argument_offset(O0_argslot), O0_argslot);
twisti@1858 973
twisti@1858 974 // 'stack_move' is number of words to drop.
twisti@1858 975 Register G5_stack_move = G5_index;
twisti@1858 976 __ ldsw(G3_amh_conversion, G5_stack_move);
twisti@1858 977 __ sra(G5_stack_move, CONV_STACK_MOVE_SHIFT, G5_stack_move);
twisti@1858 978
twisti@1858 979 remove_arg_slots(_masm, G5_stack_move, O0_argslot, O1_scratch, O2_scratch, O3_scratch);
twisti@1858 980
twisti@2201 981 __ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
twisti@1858 982 __ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
twisti@1858 983 }
twisti@1858 984 break;
twisti@1858 985
twisti@1858 986 case _adapter_collect_args:
twisti@1858 987 __ unimplemented(entry_name(ek)); // %%% FIXME: NYI
twisti@1858 988 break;
twisti@1858 989
twisti@1858 990 case _adapter_spread_args:
twisti@1858 991 // Handled completely by optimized cases.
twisti@1858 992 __ stop("init_AdapterMethodHandle should not issue this");
twisti@1858 993 break;
twisti@1858 994
twisti@1858 995 case _adapter_opt_spread_0:
twisti@1858 996 case _adapter_opt_spread_1:
twisti@1858 997 case _adapter_opt_spread_more:
twisti@1858 998 {
twisti@1858 999 // spread an array out into a group of arguments
twisti@1858 1000 __ unimplemented(entry_name(ek));
twisti@1858 1001 }
twisti@1858 1002 break;
twisti@1858 1003
twisti@1858 1004 case _adapter_flyby:
twisti@1858 1005 case _adapter_ricochet:
twisti@1858 1006 __ unimplemented(entry_name(ek)); // %%% FIXME: NYI
twisti@1858 1007 break;
twisti@1858 1008
twisti@1858 1009 default:
twisti@1858 1010 ShouldNotReachHere();
twisti@1858 1011 }
twisti@1858 1012
twisti@1858 1013 address me_cookie = MethodHandleEntry::start_compiled_entry(_masm, interp_entry);
twisti@1858 1014 __ unimplemented(entry_name(ek)); // %%% FIXME: NYI
twisti@1858 1015
twisti@1858 1016 init_entry(ek, MethodHandleEntry::finish_compiled_entry(_masm, me_cookie));
jrose@1145 1017 }

mercurial