src/cpu/x86/vm/templateTable_x86_64.cpp

Tue, 24 Jul 2012 10:51:00 -0700

author
twisti
date
Tue, 24 Jul 2012 10:51:00 -0700
changeset 3969
1d7922586cf6
parent 3698
19e197e2a1af
child 4037
da91efe96a93
permissions
-rw-r--r--

7023639: JSR 292 method handle invocation needs a fast path for compiled code
6984705: JSR 292 method handle creation should not go through JNI
Summary: remove assembly code for JDK 7 chained method handles
Reviewed-by: jrose, twisti, kvn, mhaupt
Contributed-by: John Rose <john.r.rose@oracle.com>, Christian Thalinger <christian.thalinger@oracle.com>, Michael Haupt <michael.haupt@oracle.com>

duke@435 1 /*
iveresov@2438 2 * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 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.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "interpreter/interpreter.hpp"
stefank@2314 27 #include "interpreter/interpreterRuntime.hpp"
stefank@2314 28 #include "interpreter/templateTable.hpp"
stefank@2314 29 #include "memory/universe.inline.hpp"
stefank@2314 30 #include "oops/methodDataOop.hpp"
stefank@2314 31 #include "oops/objArrayKlass.hpp"
stefank@2314 32 #include "oops/oop.inline.hpp"
stefank@2314 33 #include "prims/methodHandles.hpp"
stefank@2314 34 #include "runtime/sharedRuntime.hpp"
stefank@2314 35 #include "runtime/stubRoutines.hpp"
stefank@2314 36 #include "runtime/synchronizer.hpp"
duke@435 37
never@739 38 #ifndef CC_INTERP
never@739 39
duke@435 40 #define __ _masm->
duke@435 41
duke@435 42 // Platform-dependent initialization
duke@435 43
duke@435 44 void TemplateTable::pd_initialize() {
duke@435 45 // No amd64 specific initialization
duke@435 46 }
duke@435 47
duke@435 48 // Address computation: local variables
duke@435 49
duke@435 50 static inline Address iaddress(int n) {
duke@435 51 return Address(r14, Interpreter::local_offset_in_bytes(n));
duke@435 52 }
duke@435 53
duke@435 54 static inline Address laddress(int n) {
duke@435 55 return iaddress(n + 1);
duke@435 56 }
duke@435 57
duke@435 58 static inline Address faddress(int n) {
duke@435 59 return iaddress(n);
duke@435 60 }
duke@435 61
duke@435 62 static inline Address daddress(int n) {
duke@435 63 return laddress(n);
duke@435 64 }
duke@435 65
duke@435 66 static inline Address aaddress(int n) {
duke@435 67 return iaddress(n);
duke@435 68 }
duke@435 69
duke@435 70 static inline Address iaddress(Register r) {
twisti@1861 71 return Address(r14, r, Address::times_8);
duke@435 72 }
duke@435 73
duke@435 74 static inline Address laddress(Register r) {
duke@435 75 return Address(r14, r, Address::times_8, Interpreter::local_offset_in_bytes(1));
duke@435 76 }
duke@435 77
duke@435 78 static inline Address faddress(Register r) {
duke@435 79 return iaddress(r);
duke@435 80 }
duke@435 81
duke@435 82 static inline Address daddress(Register r) {
duke@435 83 return laddress(r);
duke@435 84 }
duke@435 85
duke@435 86 static inline Address aaddress(Register r) {
duke@435 87 return iaddress(r);
duke@435 88 }
duke@435 89
duke@435 90 static inline Address at_rsp() {
duke@435 91 return Address(rsp, 0);
duke@435 92 }
duke@435 93
duke@435 94 // At top of Java expression stack which may be different than esp(). It
duke@435 95 // isn't for category 1 objects.
duke@435 96 static inline Address at_tos () {
duke@435 97 return Address(rsp, Interpreter::expr_offset_in_bytes(0));
duke@435 98 }
duke@435 99
duke@435 100 static inline Address at_tos_p1() {
duke@435 101 return Address(rsp, Interpreter::expr_offset_in_bytes(1));
duke@435 102 }
duke@435 103
duke@435 104 static inline Address at_tos_p2() {
duke@435 105 return Address(rsp, Interpreter::expr_offset_in_bytes(2));
duke@435 106 }
duke@435 107
duke@435 108 static inline Address at_tos_p3() {
duke@435 109 return Address(rsp, Interpreter::expr_offset_in_bytes(3));
duke@435 110 }
duke@435 111
duke@435 112 // Condition conversion
duke@435 113 static Assembler::Condition j_not(TemplateTable::Condition cc) {
duke@435 114 switch (cc) {
duke@435 115 case TemplateTable::equal : return Assembler::notEqual;
duke@435 116 case TemplateTable::not_equal : return Assembler::equal;
duke@435 117 case TemplateTable::less : return Assembler::greaterEqual;
duke@435 118 case TemplateTable::less_equal : return Assembler::greater;
duke@435 119 case TemplateTable::greater : return Assembler::lessEqual;
duke@435 120 case TemplateTable::greater_equal: return Assembler::less;
duke@435 121 }
duke@435 122 ShouldNotReachHere();
duke@435 123 return Assembler::zero;
duke@435 124 }
duke@435 125
duke@435 126
duke@435 127 // Miscelaneous helper routines
ysr@777 128 // Store an oop (or NULL) at the address described by obj.
ysr@777 129 // If val == noreg this means store a NULL
ysr@777 130
ysr@777 131 static void do_oop_store(InterpreterMacroAssembler* _masm,
ysr@777 132 Address obj,
ysr@777 133 Register val,
ysr@777 134 BarrierSet::Name barrier,
ysr@777 135 bool precise) {
ysr@777 136 assert(val == noreg || val == rax, "parameter is just for looks");
ysr@777 137 switch (barrier) {
ysr@777 138 #ifndef SERIALGC
ysr@777 139 case BarrierSet::G1SATBCT:
ysr@777 140 case BarrierSet::G1SATBCTLogging:
ysr@777 141 {
ysr@777 142 // flatten object address if needed
ysr@777 143 if (obj.index() == noreg && obj.disp() == 0) {
ysr@777 144 if (obj.base() != rdx) {
ysr@777 145 __ movq(rdx, obj.base());
ysr@777 146 }
ysr@777 147 } else {
ysr@777 148 __ leaq(rdx, obj);
ysr@777 149 }
johnc@2781 150 __ g1_write_barrier_pre(rdx /* obj */,
johnc@2781 151 rbx /* pre_val */,
johnc@2781 152 r15_thread /* thread */,
johnc@2781 153 r8 /* tmp */,
johnc@2781 154 val != noreg /* tosca_live */,
johnc@2781 155 false /* expand_call */);
ysr@777 156 if (val == noreg) {
johnc@1482 157 __ store_heap_oop_null(Address(rdx, 0));
ysr@777 158 } else {
ysr@777 159 __ store_heap_oop(Address(rdx, 0), val);
johnc@2781 160 __ g1_write_barrier_post(rdx /* store_adr */,
johnc@2781 161 val /* new_val */,
johnc@2781 162 r15_thread /* thread */,
johnc@2781 163 r8 /* tmp */,
johnc@2781 164 rbx /* tmp2 */);
ysr@777 165 }
ysr@777 166
ysr@777 167 }
ysr@777 168 break;
ysr@777 169 #endif // SERIALGC
ysr@777 170 case BarrierSet::CardTableModRef:
ysr@777 171 case BarrierSet::CardTableExtension:
ysr@777 172 {
ysr@777 173 if (val == noreg) {
johnc@1482 174 __ store_heap_oop_null(obj);
ysr@777 175 } else {
ysr@777 176 __ store_heap_oop(obj, val);
ysr@777 177 // flatten object address if needed
ysr@777 178 if (!precise || (obj.index() == noreg && obj.disp() == 0)) {
ysr@777 179 __ store_check(obj.base());
ysr@777 180 } else {
ysr@777 181 __ leaq(rdx, obj);
ysr@777 182 __ store_check(rdx);
ysr@777 183 }
ysr@777 184 }
ysr@777 185 }
ysr@777 186 break;
ysr@777 187 case BarrierSet::ModRef:
ysr@777 188 case BarrierSet::Other:
ysr@777 189 if (val == noreg) {
johnc@1482 190 __ store_heap_oop_null(obj);
ysr@777 191 } else {
ysr@777 192 __ store_heap_oop(obj, val);
ysr@777 193 }
ysr@777 194 break;
ysr@777 195 default :
ysr@777 196 ShouldNotReachHere();
ysr@777 197
ysr@777 198 }
ysr@777 199 }
duke@435 200
duke@435 201 Address TemplateTable::at_bcp(int offset) {
duke@435 202 assert(_desc->uses_bcp(), "inconsistent uses_bcp information");
duke@435 203 return Address(r13, offset);
duke@435 204 }
duke@435 205
twisti@3050 206 void TemplateTable::patch_bytecode(Bytecodes::Code bc, Register bc_reg,
twisti@3050 207 Register temp_reg, bool load_bc_into_bc_reg/*=true*/,
twisti@3050 208 int byte_no) {
twisti@3050 209 if (!RewriteBytecodes) return;
twisti@3050 210 Label L_patch_done;
twisti@3050 211
twisti@3050 212 switch (bc) {
twisti@3050 213 case Bytecodes::_fast_aputfield:
twisti@3050 214 case Bytecodes::_fast_bputfield:
twisti@3050 215 case Bytecodes::_fast_cputfield:
twisti@3050 216 case Bytecodes::_fast_dputfield:
twisti@3050 217 case Bytecodes::_fast_fputfield:
twisti@3050 218 case Bytecodes::_fast_iputfield:
twisti@3050 219 case Bytecodes::_fast_lputfield:
twisti@3050 220 case Bytecodes::_fast_sputfield:
twisti@3050 221 {
twisti@3050 222 // We skip bytecode quickening for putfield instructions when
twisti@3050 223 // the put_code written to the constant pool cache is zero.
twisti@3050 224 // This is required so that every execution of this instruction
twisti@3050 225 // calls out to InterpreterRuntime::resolve_get_put to do
twisti@3050 226 // additional, required work.
twisti@3050 227 assert(byte_no == f1_byte || byte_no == f2_byte, "byte_no out of range");
twisti@3050 228 assert(load_bc_into_bc_reg, "we use bc_reg as temp");
twisti@3050 229 __ get_cache_and_index_and_bytecode_at_bcp(temp_reg, bc_reg, temp_reg, byte_no, 1);
twisti@3050 230 __ movl(bc_reg, bc);
twisti@3050 231 __ cmpl(temp_reg, (int) 0);
twisti@3050 232 __ jcc(Assembler::zero, L_patch_done); // don't patch
twisti@3050 233 }
twisti@3050 234 break;
twisti@3050 235 default:
twisti@3050 236 assert(byte_no == -1, "sanity");
twisti@3050 237 // the pair bytecodes have already done the load.
twisti@3050 238 if (load_bc_into_bc_reg) {
twisti@3050 239 __ movl(bc_reg, bc);
twisti@3050 240 }
duke@435 241 }
twisti@3050 242
twisti@3050 243 if (JvmtiExport::can_post_breakpoint()) {
twisti@3050 244 Label L_fast_patch;
twisti@3050 245 // if a breakpoint is present we can't rewrite the stream directly
twisti@3050 246 __ movzbl(temp_reg, at_bcp(0));
twisti@3050 247 __ cmpl(temp_reg, Bytecodes::_breakpoint);
twisti@3050 248 __ jcc(Assembler::notEqual, L_fast_patch);
twisti@3050 249 __ get_method(temp_reg);
twisti@3050 250 // Let breakpoint table handling rewrite to quicker bytecode
twisti@3050 251 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::set_original_bytecode_at), temp_reg, r13, bc_reg);
twisti@3050 252 #ifndef ASSERT
twisti@3050 253 __ jmpb(L_patch_done);
twisti@3050 254 #else
twisti@3050 255 __ jmp(L_patch_done);
twisti@3050 256 #endif
twisti@3050 257 __ bind(L_fast_patch);
duke@435 258 }
twisti@3050 259
twisti@3050 260 #ifdef ASSERT
twisti@3050 261 Label L_okay;
twisti@3050 262 __ load_unsigned_byte(temp_reg, at_bcp(0));
twisti@3050 263 __ cmpl(temp_reg, (int) Bytecodes::java_code(bc));
twisti@3050 264 __ jcc(Assembler::equal, L_okay);
twisti@3050 265 __ cmpl(temp_reg, bc_reg);
twisti@3050 266 __ jcc(Assembler::equal, L_okay);
twisti@3050 267 __ stop("patching the wrong bytecode");
twisti@3050 268 __ bind(L_okay);
twisti@1543 269 #endif
twisti@3050 270
duke@435 271 // patch bytecode
twisti@3050 272 __ movb(at_bcp(0), bc_reg);
twisti@3050 273 __ bind(L_patch_done);
duke@435 274 }
duke@435 275
duke@435 276
duke@435 277 // Individual instructions
duke@435 278
duke@435 279 void TemplateTable::nop() {
duke@435 280 transition(vtos, vtos);
duke@435 281 // nothing to do
duke@435 282 }
duke@435 283
duke@435 284 void TemplateTable::shouldnotreachhere() {
duke@435 285 transition(vtos, vtos);
duke@435 286 __ stop("shouldnotreachhere bytecode");
duke@435 287 }
duke@435 288
duke@435 289 void TemplateTable::aconst_null() {
duke@435 290 transition(vtos, atos);
duke@435 291 __ xorl(rax, rax);
duke@435 292 }
duke@435 293
duke@435 294 void TemplateTable::iconst(int value) {
duke@435 295 transition(vtos, itos);
duke@435 296 if (value == 0) {
duke@435 297 __ xorl(rax, rax);
duke@435 298 } else {
duke@435 299 __ movl(rax, value);
duke@435 300 }
duke@435 301 }
duke@435 302
duke@435 303 void TemplateTable::lconst(int value) {
duke@435 304 transition(vtos, ltos);
duke@435 305 if (value == 0) {
duke@435 306 __ xorl(rax, rax);
duke@435 307 } else {
duke@435 308 __ movl(rax, value);
duke@435 309 }
duke@435 310 }
duke@435 311
duke@435 312 void TemplateTable::fconst(int value) {
duke@435 313 transition(vtos, ftos);
duke@435 314 static float one = 1.0f, two = 2.0f;
duke@435 315 switch (value) {
duke@435 316 case 0:
duke@435 317 __ xorps(xmm0, xmm0);
duke@435 318 break;
duke@435 319 case 1:
duke@435 320 __ movflt(xmm0, ExternalAddress((address) &one));
duke@435 321 break;
duke@435 322 case 2:
duke@435 323 __ movflt(xmm0, ExternalAddress((address) &two));
duke@435 324 break;
duke@435 325 default:
duke@435 326 ShouldNotReachHere();
duke@435 327 break;
duke@435 328 }
duke@435 329 }
duke@435 330
duke@435 331 void TemplateTable::dconst(int value) {
duke@435 332 transition(vtos, dtos);
duke@435 333 static double one = 1.0;
duke@435 334 switch (value) {
duke@435 335 case 0:
duke@435 336 __ xorpd(xmm0, xmm0);
duke@435 337 break;
duke@435 338 case 1:
duke@435 339 __ movdbl(xmm0, ExternalAddress((address) &one));
duke@435 340 break;
duke@435 341 default:
duke@435 342 ShouldNotReachHere();
duke@435 343 break;
duke@435 344 }
duke@435 345 }
duke@435 346
duke@435 347 void TemplateTable::bipush() {
duke@435 348 transition(vtos, itos);
duke@435 349 __ load_signed_byte(rax, at_bcp(1));
duke@435 350 }
duke@435 351
duke@435 352 void TemplateTable::sipush() {
duke@435 353 transition(vtos, itos);
jrose@1057 354 __ load_unsigned_short(rax, at_bcp(1));
duke@435 355 __ bswapl(rax);
duke@435 356 __ sarl(rax, 16);
duke@435 357 }
duke@435 358
duke@435 359 void TemplateTable::ldc(bool wide) {
duke@435 360 transition(vtos, vtos);
duke@435 361 Label call_ldc, notFloat, notClass, Done;
duke@435 362
duke@435 363 if (wide) {
duke@435 364 __ get_unsigned_2_byte_index_at_bcp(rbx, 1);
duke@435 365 } else {
duke@435 366 __ load_unsigned_byte(rbx, at_bcp(1));
duke@435 367 }
duke@435 368
duke@435 369 __ get_cpool_and_tags(rcx, rax);
duke@435 370 const int base_offset = constantPoolOopDesc::header_size() * wordSize;
duke@435 371 const int tags_offset = typeArrayOopDesc::header_size(T_BYTE) * wordSize;
duke@435 372
duke@435 373 // get type
duke@435 374 __ movzbl(rdx, Address(rax, rbx, Address::times_1, tags_offset));
duke@435 375
duke@435 376 // unresolved string - get the resolved string
duke@435 377 __ cmpl(rdx, JVM_CONSTANT_UnresolvedString);
duke@435 378 __ jccb(Assembler::equal, call_ldc);
duke@435 379
duke@435 380 // unresolved class - get the resolved class
duke@435 381 __ cmpl(rdx, JVM_CONSTANT_UnresolvedClass);
duke@435 382 __ jccb(Assembler::equal, call_ldc);
duke@435 383
duke@435 384 // unresolved class in error state - call into runtime to throw the error
duke@435 385 // from the first resolution attempt
duke@435 386 __ cmpl(rdx, JVM_CONSTANT_UnresolvedClassInError);
duke@435 387 __ jccb(Assembler::equal, call_ldc);
duke@435 388
duke@435 389 // resolved class - need to call vm to get java mirror of the class
duke@435 390 __ cmpl(rdx, JVM_CONSTANT_Class);
duke@435 391 __ jcc(Assembler::notEqual, notClass);
duke@435 392
duke@435 393 __ bind(call_ldc);
duke@435 394 __ movl(c_rarg1, wide);
duke@435 395 call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::ldc), c_rarg1);
duke@435 396 __ push_ptr(rax);
duke@435 397 __ verify_oop(rax);
duke@435 398 __ jmp(Done);
duke@435 399
duke@435 400 __ bind(notClass);
duke@435 401 __ cmpl(rdx, JVM_CONSTANT_Float);
duke@435 402 __ jccb(Assembler::notEqual, notFloat);
duke@435 403 // ftos
duke@435 404 __ movflt(xmm0, Address(rcx, rbx, Address::times_8, base_offset));
duke@435 405 __ push_f();
duke@435 406 __ jmp(Done);
duke@435 407
duke@435 408 __ bind(notFloat);
duke@435 409 #ifdef ASSERT
duke@435 410 {
duke@435 411 Label L;
duke@435 412 __ cmpl(rdx, JVM_CONSTANT_Integer);
duke@435 413 __ jcc(Assembler::equal, L);
duke@435 414 __ cmpl(rdx, JVM_CONSTANT_String);
duke@435 415 __ jcc(Assembler::equal, L);
jrose@2982 416 __ cmpl(rdx, JVM_CONSTANT_Object);
jrose@2982 417 __ jcc(Assembler::equal, L);
duke@435 418 __ stop("unexpected tag type in ldc");
duke@435 419 __ bind(L);
duke@435 420 }
duke@435 421 #endif
duke@435 422 // atos and itos
duke@435 423 Label isOop;
duke@435 424 __ cmpl(rdx, JVM_CONSTANT_Integer);
duke@435 425 __ jcc(Assembler::notEqual, isOop);
duke@435 426 __ movl(rax, Address(rcx, rbx, Address::times_8, base_offset));
duke@435 427 __ push_i(rax);
duke@435 428 __ jmp(Done);
duke@435 429
duke@435 430 __ bind(isOop);
never@739 431 __ movptr(rax, Address(rcx, rbx, Address::times_8, base_offset));
duke@435 432 __ push_ptr(rax);
duke@435 433
duke@435 434 if (VerifyOops) {
duke@435 435 __ verify_oop(rax);
duke@435 436 }
duke@435 437
duke@435 438 __ bind(Done);
duke@435 439 }
duke@435 440
jrose@1957 441 // Fast path for caching oop constants.
jrose@1957 442 // %%% We should use this to handle Class and String constants also.
jrose@1957 443 // %%% It will simplify the ldc/primitive path considerably.
jrose@1957 444 void TemplateTable::fast_aldc(bool wide) {
jrose@1957 445 transition(vtos, atos);
jrose@1957 446
twisti@2698 447 if (!EnableInvokeDynamic) {
twisti@2698 448 // We should not encounter this bytecode if !EnableInvokeDynamic.
jrose@1957 449 // The verifier will stop it. However, if we get past the verifier,
jrose@1957 450 // this will stop the thread in a reasonable way, without crashing the JVM.
jrose@1957 451 __ call_VM(noreg, CAST_FROM_FN_PTR(address,
jrose@1957 452 InterpreterRuntime::throw_IncompatibleClassChangeError));
jrose@1957 453 // the call_VM checks for exception, so we should never return here.
jrose@1957 454 __ should_not_reach_here();
jrose@1957 455 return;
jrose@1957 456 }
jrose@1957 457
jrose@1957 458 const Register cache = rcx;
jrose@1957 459 const Register index = rdx;
jrose@1957 460
twisti@3969 461 resolve_cache_and_index(f12_oop, rax, cache, index, wide ? sizeof(u2) : sizeof(u1));
jrose@1957 462 if (VerifyOops) {
jrose@1957 463 __ verify_oop(rax);
jrose@1957 464 }
jrose@2268 465
jrose@2268 466 Label L_done, L_throw_exception;
jrose@2268 467 const Register con_klass_temp = rcx; // same as cache
jrose@2268 468 const Register array_klass_temp = rdx; // same as index
twisti@2807 469 __ load_klass(con_klass_temp, rax);
jrose@2268 470 __ lea(array_klass_temp, ExternalAddress((address)Universe::systemObjArrayKlassObj_addr()));
jrose@2268 471 __ cmpptr(con_klass_temp, Address(array_klass_temp, 0));
jrose@2268 472 __ jcc(Assembler::notEqual, L_done);
jrose@2268 473 __ cmpl(Address(rax, arrayOopDesc::length_offset_in_bytes()), 0);
jrose@2268 474 __ jcc(Assembler::notEqual, L_throw_exception);
jrose@2268 475 __ xorptr(rax, rax);
jrose@2268 476 __ jmp(L_done);
jrose@2268 477
jrose@2268 478 // Load the exception from the system-array which wraps it:
jrose@2268 479 __ bind(L_throw_exception);
twisti@2807 480 __ load_heap_oop(rax, Address(rax, arrayOopDesc::base_offset_in_bytes(T_OBJECT)));
jrose@2268 481 __ jump(ExternalAddress(Interpreter::throw_exception_entry()));
jrose@2268 482
jrose@2268 483 __ bind(L_done);
jrose@1957 484 }
jrose@1957 485
duke@435 486 void TemplateTable::ldc2_w() {
duke@435 487 transition(vtos, vtos);
duke@435 488 Label Long, Done;
duke@435 489 __ get_unsigned_2_byte_index_at_bcp(rbx, 1);
duke@435 490
duke@435 491 __ get_cpool_and_tags(rcx, rax);
duke@435 492 const int base_offset = constantPoolOopDesc::header_size() * wordSize;
duke@435 493 const int tags_offset = typeArrayOopDesc::header_size(T_BYTE) * wordSize;
duke@435 494
duke@435 495 // get type
duke@435 496 __ cmpb(Address(rax, rbx, Address::times_1, tags_offset),
duke@435 497 JVM_CONSTANT_Double);
duke@435 498 __ jccb(Assembler::notEqual, Long);
duke@435 499 // dtos
duke@435 500 __ movdbl(xmm0, Address(rcx, rbx, Address::times_8, base_offset));
duke@435 501 __ push_d();
duke@435 502 __ jmpb(Done);
duke@435 503
duke@435 504 __ bind(Long);
duke@435 505 // ltos
duke@435 506 __ movq(rax, Address(rcx, rbx, Address::times_8, base_offset));
duke@435 507 __ push_l();
duke@435 508
duke@435 509 __ bind(Done);
duke@435 510 }
duke@435 511
duke@435 512 void TemplateTable::locals_index(Register reg, int offset) {
duke@435 513 __ load_unsigned_byte(reg, at_bcp(offset));
never@739 514 __ negptr(reg);
duke@435 515 }
duke@435 516
duke@435 517 void TemplateTable::iload() {
duke@435 518 transition(vtos, itos);
duke@435 519 if (RewriteFrequentPairs) {
duke@435 520 Label rewrite, done;
duke@435 521 const Register bc = c_rarg3;
duke@435 522 assert(rbx != bc, "register damaged");
duke@435 523
duke@435 524 // get next byte
duke@435 525 __ load_unsigned_byte(rbx,
duke@435 526 at_bcp(Bytecodes::length_for(Bytecodes::_iload)));
duke@435 527 // if _iload, wait to rewrite to iload2. We only want to rewrite the
duke@435 528 // last two iloads in a pair. Comparing against fast_iload means that
duke@435 529 // the next bytecode is neither an iload or a caload, and therefore
duke@435 530 // an iload pair.
duke@435 531 __ cmpl(rbx, Bytecodes::_iload);
duke@435 532 __ jcc(Assembler::equal, done);
duke@435 533
duke@435 534 __ cmpl(rbx, Bytecodes::_fast_iload);
duke@435 535 __ movl(bc, Bytecodes::_fast_iload2);
duke@435 536 __ jccb(Assembler::equal, rewrite);
duke@435 537
duke@435 538 // if _caload, rewrite to fast_icaload
duke@435 539 __ cmpl(rbx, Bytecodes::_caload);
duke@435 540 __ movl(bc, Bytecodes::_fast_icaload);
duke@435 541 __ jccb(Assembler::equal, rewrite);
duke@435 542
duke@435 543 // rewrite so iload doesn't check again.
duke@435 544 __ movl(bc, Bytecodes::_fast_iload);
duke@435 545
duke@435 546 // rewrite
duke@435 547 // bc: fast bytecode
duke@435 548 __ bind(rewrite);
duke@435 549 patch_bytecode(Bytecodes::_iload, bc, rbx, false);
duke@435 550 __ bind(done);
duke@435 551 }
duke@435 552
duke@435 553 // Get the local value into tos
duke@435 554 locals_index(rbx);
duke@435 555 __ movl(rax, iaddress(rbx));
duke@435 556 }
duke@435 557
duke@435 558 void TemplateTable::fast_iload2() {
duke@435 559 transition(vtos, itos);
duke@435 560 locals_index(rbx);
duke@435 561 __ movl(rax, iaddress(rbx));
duke@435 562 __ push(itos);
duke@435 563 locals_index(rbx, 3);
duke@435 564 __ movl(rax, iaddress(rbx));
duke@435 565 }
duke@435 566
duke@435 567 void TemplateTable::fast_iload() {
duke@435 568 transition(vtos, itos);
duke@435 569 locals_index(rbx);
duke@435 570 __ movl(rax, iaddress(rbx));
duke@435 571 }
duke@435 572
duke@435 573 void TemplateTable::lload() {
duke@435 574 transition(vtos, ltos);
duke@435 575 locals_index(rbx);
duke@435 576 __ movq(rax, laddress(rbx));
duke@435 577 }
duke@435 578
duke@435 579 void TemplateTable::fload() {
duke@435 580 transition(vtos, ftos);
duke@435 581 locals_index(rbx);
duke@435 582 __ movflt(xmm0, faddress(rbx));
duke@435 583 }
duke@435 584
duke@435 585 void TemplateTable::dload() {
duke@435 586 transition(vtos, dtos);
duke@435 587 locals_index(rbx);
duke@435 588 __ movdbl(xmm0, daddress(rbx));
duke@435 589 }
duke@435 590
duke@435 591 void TemplateTable::aload() {
duke@435 592 transition(vtos, atos);
duke@435 593 locals_index(rbx);
never@739 594 __ movptr(rax, aaddress(rbx));
duke@435 595 }
duke@435 596
duke@435 597 void TemplateTable::locals_index_wide(Register reg) {
duke@435 598 __ movl(reg, at_bcp(2));
duke@435 599 __ bswapl(reg);
duke@435 600 __ shrl(reg, 16);
never@739 601 __ negptr(reg);
duke@435 602 }
duke@435 603
duke@435 604 void TemplateTable::wide_iload() {
duke@435 605 transition(vtos, itos);
duke@435 606 locals_index_wide(rbx);
duke@435 607 __ movl(rax, iaddress(rbx));
duke@435 608 }
duke@435 609
duke@435 610 void TemplateTable::wide_lload() {
duke@435 611 transition(vtos, ltos);
duke@435 612 locals_index_wide(rbx);
duke@435 613 __ movq(rax, laddress(rbx));
duke@435 614 }
duke@435 615
duke@435 616 void TemplateTable::wide_fload() {
duke@435 617 transition(vtos, ftos);
duke@435 618 locals_index_wide(rbx);
duke@435 619 __ movflt(xmm0, faddress(rbx));
duke@435 620 }
duke@435 621
duke@435 622 void TemplateTable::wide_dload() {
duke@435 623 transition(vtos, dtos);
duke@435 624 locals_index_wide(rbx);
duke@435 625 __ movdbl(xmm0, daddress(rbx));
duke@435 626 }
duke@435 627
duke@435 628 void TemplateTable::wide_aload() {
duke@435 629 transition(vtos, atos);
duke@435 630 locals_index_wide(rbx);
never@739 631 __ movptr(rax, aaddress(rbx));
duke@435 632 }
duke@435 633
duke@435 634 void TemplateTable::index_check(Register array, Register index) {
duke@435 635 // destroys rbx
duke@435 636 // check array
duke@435 637 __ null_check(array, arrayOopDesc::length_offset_in_bytes());
duke@435 638 // sign extend index for use by indexed load
never@739 639 __ movl2ptr(index, index);
duke@435 640 // check index
duke@435 641 __ cmpl(index, Address(array, arrayOopDesc::length_offset_in_bytes()));
duke@435 642 if (index != rbx) {
duke@435 643 // ??? convention: move aberrant index into ebx for exception message
duke@435 644 assert(rbx != array, "different registers");
duke@435 645 __ movl(rbx, index);
duke@435 646 }
duke@435 647 __ jump_cc(Assembler::aboveEqual,
duke@435 648 ExternalAddress(Interpreter::_throw_ArrayIndexOutOfBoundsException_entry));
duke@435 649 }
duke@435 650
duke@435 651 void TemplateTable::iaload() {
duke@435 652 transition(itos, itos);
duke@435 653 __ pop_ptr(rdx);
duke@435 654 // eax: index
duke@435 655 // rdx: array
duke@435 656 index_check(rdx, rax); // kills rbx
duke@435 657 __ movl(rax, Address(rdx, rax,
duke@435 658 Address::times_4,
duke@435 659 arrayOopDesc::base_offset_in_bytes(T_INT)));
duke@435 660 }
duke@435 661
duke@435 662 void TemplateTable::laload() {
duke@435 663 transition(itos, ltos);
duke@435 664 __ pop_ptr(rdx);
duke@435 665 // eax: index
duke@435 666 // rdx: array
duke@435 667 index_check(rdx, rax); // kills rbx
duke@435 668 __ movq(rax, Address(rdx, rbx,
duke@435 669 Address::times_8,
duke@435 670 arrayOopDesc::base_offset_in_bytes(T_LONG)));
duke@435 671 }
duke@435 672
duke@435 673 void TemplateTable::faload() {
duke@435 674 transition(itos, ftos);
duke@435 675 __ pop_ptr(rdx);
duke@435 676 // eax: index
duke@435 677 // rdx: array
duke@435 678 index_check(rdx, rax); // kills rbx
duke@435 679 __ movflt(xmm0, Address(rdx, rax,
duke@435 680 Address::times_4,
duke@435 681 arrayOopDesc::base_offset_in_bytes(T_FLOAT)));
duke@435 682 }
duke@435 683
duke@435 684 void TemplateTable::daload() {
duke@435 685 transition(itos, dtos);
duke@435 686 __ pop_ptr(rdx);
duke@435 687 // eax: index
duke@435 688 // rdx: array
duke@435 689 index_check(rdx, rax); // kills rbx
duke@435 690 __ movdbl(xmm0, Address(rdx, rax,
duke@435 691 Address::times_8,
duke@435 692 arrayOopDesc::base_offset_in_bytes(T_DOUBLE)));
duke@435 693 }
duke@435 694
duke@435 695 void TemplateTable::aaload() {
duke@435 696 transition(itos, atos);
duke@435 697 __ pop_ptr(rdx);
duke@435 698 // eax: index
duke@435 699 // rdx: array
duke@435 700 index_check(rdx, rax); // kills rbx
coleenp@548 701 __ load_heap_oop(rax, Address(rdx, rax,
ysr@777 702 UseCompressedOops ? Address::times_4 : Address::times_8,
ysr@777 703 arrayOopDesc::base_offset_in_bytes(T_OBJECT)));
duke@435 704 }
duke@435 705
duke@435 706 void TemplateTable::baload() {
duke@435 707 transition(itos, itos);
duke@435 708 __ pop_ptr(rdx);
duke@435 709 // eax: index
duke@435 710 // rdx: array
duke@435 711 index_check(rdx, rax); // kills rbx
duke@435 712 __ load_signed_byte(rax,
duke@435 713 Address(rdx, rax,
duke@435 714 Address::times_1,
duke@435 715 arrayOopDesc::base_offset_in_bytes(T_BYTE)));
duke@435 716 }
duke@435 717
duke@435 718 void TemplateTable::caload() {
duke@435 719 transition(itos, itos);
duke@435 720 __ pop_ptr(rdx);
duke@435 721 // eax: index
duke@435 722 // rdx: array
duke@435 723 index_check(rdx, rax); // kills rbx
jrose@1057 724 __ load_unsigned_short(rax,
jrose@1057 725 Address(rdx, rax,
jrose@1057 726 Address::times_2,
jrose@1057 727 arrayOopDesc::base_offset_in_bytes(T_CHAR)));
duke@435 728 }
duke@435 729
duke@435 730 // iload followed by caload frequent pair
duke@435 731 void TemplateTable::fast_icaload() {
duke@435 732 transition(vtos, itos);
duke@435 733 // load index out of locals
duke@435 734 locals_index(rbx);
duke@435 735 __ movl(rax, iaddress(rbx));
duke@435 736
duke@435 737 // eax: index
duke@435 738 // rdx: array
duke@435 739 __ pop_ptr(rdx);
duke@435 740 index_check(rdx, rax); // kills rbx
jrose@1057 741 __ load_unsigned_short(rax,
jrose@1057 742 Address(rdx, rax,
jrose@1057 743 Address::times_2,
jrose@1057 744 arrayOopDesc::base_offset_in_bytes(T_CHAR)));
duke@435 745 }
duke@435 746
duke@435 747 void TemplateTable::saload() {
duke@435 748 transition(itos, itos);
duke@435 749 __ pop_ptr(rdx);
duke@435 750 // eax: index
duke@435 751 // rdx: array
duke@435 752 index_check(rdx, rax); // kills rbx
jrose@1057 753 __ load_signed_short(rax,
jrose@1057 754 Address(rdx, rax,
jrose@1057 755 Address::times_2,
jrose@1057 756 arrayOopDesc::base_offset_in_bytes(T_SHORT)));
duke@435 757 }
duke@435 758
duke@435 759 void TemplateTable::iload(int n) {
duke@435 760 transition(vtos, itos);
duke@435 761 __ movl(rax, iaddress(n));
duke@435 762 }
duke@435 763
duke@435 764 void TemplateTable::lload(int n) {
duke@435 765 transition(vtos, ltos);
duke@435 766 __ movq(rax, laddress(n));
duke@435 767 }
duke@435 768
duke@435 769 void TemplateTable::fload(int n) {
duke@435 770 transition(vtos, ftos);
duke@435 771 __ movflt(xmm0, faddress(n));
duke@435 772 }
duke@435 773
duke@435 774 void TemplateTable::dload(int n) {
duke@435 775 transition(vtos, dtos);
duke@435 776 __ movdbl(xmm0, daddress(n));
duke@435 777 }
duke@435 778
duke@435 779 void TemplateTable::aload(int n) {
duke@435 780 transition(vtos, atos);
never@739 781 __ movptr(rax, aaddress(n));
duke@435 782 }
duke@435 783
duke@435 784 void TemplateTable::aload_0() {
duke@435 785 transition(vtos, atos);
duke@435 786 // According to bytecode histograms, the pairs:
duke@435 787 //
duke@435 788 // _aload_0, _fast_igetfield
duke@435 789 // _aload_0, _fast_agetfield
duke@435 790 // _aload_0, _fast_fgetfield
duke@435 791 //
duke@435 792 // occur frequently. If RewriteFrequentPairs is set, the (slow)
duke@435 793 // _aload_0 bytecode checks if the next bytecode is either
duke@435 794 // _fast_igetfield, _fast_agetfield or _fast_fgetfield and then
duke@435 795 // rewrites the current bytecode into a pair bytecode; otherwise it
duke@435 796 // rewrites the current bytecode into _fast_aload_0 that doesn't do
duke@435 797 // the pair check anymore.
duke@435 798 //
duke@435 799 // Note: If the next bytecode is _getfield, the rewrite must be
duke@435 800 // delayed, otherwise we may miss an opportunity for a pair.
duke@435 801 //
duke@435 802 // Also rewrite frequent pairs
duke@435 803 // aload_0, aload_1
duke@435 804 // aload_0, iload_1
duke@435 805 // These bytecodes with a small amount of code are most profitable
duke@435 806 // to rewrite
duke@435 807 if (RewriteFrequentPairs) {
duke@435 808 Label rewrite, done;
duke@435 809 const Register bc = c_rarg3;
duke@435 810 assert(rbx != bc, "register damaged");
duke@435 811 // get next byte
duke@435 812 __ load_unsigned_byte(rbx,
duke@435 813 at_bcp(Bytecodes::length_for(Bytecodes::_aload_0)));
duke@435 814
duke@435 815 // do actual aload_0
duke@435 816 aload(0);
duke@435 817
duke@435 818 // if _getfield then wait with rewrite
duke@435 819 __ cmpl(rbx, Bytecodes::_getfield);
duke@435 820 __ jcc(Assembler::equal, done);
duke@435 821
duke@435 822 // if _igetfield then reqrite to _fast_iaccess_0
duke@435 823 assert(Bytecodes::java_code(Bytecodes::_fast_iaccess_0) ==
duke@435 824 Bytecodes::_aload_0,
duke@435 825 "fix bytecode definition");
duke@435 826 __ cmpl(rbx, Bytecodes::_fast_igetfield);
duke@435 827 __ movl(bc, Bytecodes::_fast_iaccess_0);
duke@435 828 __ jccb(Assembler::equal, rewrite);
duke@435 829
duke@435 830 // if _agetfield then reqrite to _fast_aaccess_0
duke@435 831 assert(Bytecodes::java_code(Bytecodes::_fast_aaccess_0) ==
duke@435 832 Bytecodes::_aload_0,
duke@435 833 "fix bytecode definition");
duke@435 834 __ cmpl(rbx, Bytecodes::_fast_agetfield);
duke@435 835 __ movl(bc, Bytecodes::_fast_aaccess_0);
duke@435 836 __ jccb(Assembler::equal, rewrite);
duke@435 837
duke@435 838 // if _fgetfield then reqrite to _fast_faccess_0
duke@435 839 assert(Bytecodes::java_code(Bytecodes::_fast_faccess_0) ==
duke@435 840 Bytecodes::_aload_0,
duke@435 841 "fix bytecode definition");
duke@435 842 __ cmpl(rbx, Bytecodes::_fast_fgetfield);
duke@435 843 __ movl(bc, Bytecodes::_fast_faccess_0);
duke@435 844 __ jccb(Assembler::equal, rewrite);
duke@435 845
duke@435 846 // else rewrite to _fast_aload0
duke@435 847 assert(Bytecodes::java_code(Bytecodes::_fast_aload_0) ==
duke@435 848 Bytecodes::_aload_0,
duke@435 849 "fix bytecode definition");
duke@435 850 __ movl(bc, Bytecodes::_fast_aload_0);
duke@435 851
duke@435 852 // rewrite
duke@435 853 // bc: fast bytecode
duke@435 854 __ bind(rewrite);
duke@435 855 patch_bytecode(Bytecodes::_aload_0, bc, rbx, false);
duke@435 856
duke@435 857 __ bind(done);
duke@435 858 } else {
duke@435 859 aload(0);
duke@435 860 }
duke@435 861 }
duke@435 862
duke@435 863 void TemplateTable::istore() {
duke@435 864 transition(itos, vtos);
duke@435 865 locals_index(rbx);
duke@435 866 __ movl(iaddress(rbx), rax);
duke@435 867 }
duke@435 868
duke@435 869 void TemplateTable::lstore() {
duke@435 870 transition(ltos, vtos);
duke@435 871 locals_index(rbx);
duke@435 872 __ movq(laddress(rbx), rax);
duke@435 873 }
duke@435 874
duke@435 875 void TemplateTable::fstore() {
duke@435 876 transition(ftos, vtos);
duke@435 877 locals_index(rbx);
duke@435 878 __ movflt(faddress(rbx), xmm0);
duke@435 879 }
duke@435 880
duke@435 881 void TemplateTable::dstore() {
duke@435 882 transition(dtos, vtos);
duke@435 883 locals_index(rbx);
duke@435 884 __ movdbl(daddress(rbx), xmm0);
duke@435 885 }
duke@435 886
duke@435 887 void TemplateTable::astore() {
duke@435 888 transition(vtos, vtos);
twisti@1861 889 __ pop_ptr(rax);
duke@435 890 locals_index(rbx);
never@739 891 __ movptr(aaddress(rbx), rax);
duke@435 892 }
duke@435 893
duke@435 894 void TemplateTable::wide_istore() {
duke@435 895 transition(vtos, vtos);
duke@435 896 __ pop_i();
duke@435 897 locals_index_wide(rbx);
duke@435 898 __ movl(iaddress(rbx), rax);
duke@435 899 }
duke@435 900
duke@435 901 void TemplateTable::wide_lstore() {
duke@435 902 transition(vtos, vtos);
duke@435 903 __ pop_l();
duke@435 904 locals_index_wide(rbx);
duke@435 905 __ movq(laddress(rbx), rax);
duke@435 906 }
duke@435 907
duke@435 908 void TemplateTable::wide_fstore() {
duke@435 909 transition(vtos, vtos);
duke@435 910 __ pop_f();
duke@435 911 locals_index_wide(rbx);
duke@435 912 __ movflt(faddress(rbx), xmm0);
duke@435 913 }
duke@435 914
duke@435 915 void TemplateTable::wide_dstore() {
duke@435 916 transition(vtos, vtos);
duke@435 917 __ pop_d();
duke@435 918 locals_index_wide(rbx);
duke@435 919 __ movdbl(daddress(rbx), xmm0);
duke@435 920 }
duke@435 921
duke@435 922 void TemplateTable::wide_astore() {
duke@435 923 transition(vtos, vtos);
twisti@1861 924 __ pop_ptr(rax);
duke@435 925 locals_index_wide(rbx);
never@739 926 __ movptr(aaddress(rbx), rax);
duke@435 927 }
duke@435 928
duke@435 929 void TemplateTable::iastore() {
duke@435 930 transition(itos, vtos);
duke@435 931 __ pop_i(rbx);
duke@435 932 __ pop_ptr(rdx);
duke@435 933 // eax: value
duke@435 934 // ebx: index
duke@435 935 // rdx: array
duke@435 936 index_check(rdx, rbx); // prefer index in ebx
duke@435 937 __ movl(Address(rdx, rbx,
duke@435 938 Address::times_4,
duke@435 939 arrayOopDesc::base_offset_in_bytes(T_INT)),
duke@435 940 rax);
duke@435 941 }
duke@435 942
duke@435 943 void TemplateTable::lastore() {
duke@435 944 transition(ltos, vtos);
duke@435 945 __ pop_i(rbx);
duke@435 946 __ pop_ptr(rdx);
duke@435 947 // rax: value
duke@435 948 // ebx: index
duke@435 949 // rdx: array
duke@435 950 index_check(rdx, rbx); // prefer index in ebx
duke@435 951 __ movq(Address(rdx, rbx,
duke@435 952 Address::times_8,
duke@435 953 arrayOopDesc::base_offset_in_bytes(T_LONG)),
duke@435 954 rax);
duke@435 955 }
duke@435 956
duke@435 957 void TemplateTable::fastore() {
duke@435 958 transition(ftos, vtos);
duke@435 959 __ pop_i(rbx);
duke@435 960 __ pop_ptr(rdx);
duke@435 961 // xmm0: value
duke@435 962 // ebx: index
duke@435 963 // rdx: array
duke@435 964 index_check(rdx, rbx); // prefer index in ebx
duke@435 965 __ movflt(Address(rdx, rbx,
duke@435 966 Address::times_4,
duke@435 967 arrayOopDesc::base_offset_in_bytes(T_FLOAT)),
duke@435 968 xmm0);
duke@435 969 }
duke@435 970
duke@435 971 void TemplateTable::dastore() {
duke@435 972 transition(dtos, vtos);
duke@435 973 __ pop_i(rbx);
duke@435 974 __ pop_ptr(rdx);
duke@435 975 // xmm0: value
duke@435 976 // ebx: index
duke@435 977 // rdx: array
duke@435 978 index_check(rdx, rbx); // prefer index in ebx
duke@435 979 __ movdbl(Address(rdx, rbx,
duke@435 980 Address::times_8,
duke@435 981 arrayOopDesc::base_offset_in_bytes(T_DOUBLE)),
duke@435 982 xmm0);
duke@435 983 }
duke@435 984
duke@435 985 void TemplateTable::aastore() {
duke@435 986 Label is_null, ok_is_subtype, done;
duke@435 987 transition(vtos, vtos);
duke@435 988 // stack: ..., array, index, value
never@739 989 __ movptr(rax, at_tos()); // value
duke@435 990 __ movl(rcx, at_tos_p1()); // index
never@739 991 __ movptr(rdx, at_tos_p2()); // array
ysr@777 992
ysr@777 993 Address element_address(rdx, rcx,
ysr@777 994 UseCompressedOops? Address::times_4 : Address::times_8,
ysr@777 995 arrayOopDesc::base_offset_in_bytes(T_OBJECT));
ysr@777 996
duke@435 997 index_check(rdx, rcx); // kills rbx
duke@435 998 // do array store check - check for NULL value first
never@739 999 __ testptr(rax, rax);
duke@435 1000 __ jcc(Assembler::zero, is_null);
duke@435 1001
duke@435 1002 // Move subklass into rbx
coleenp@548 1003 __ load_klass(rbx, rax);
duke@435 1004 // Move superklass into rax
coleenp@548 1005 __ load_klass(rax, rdx);
never@739 1006 __ movptr(rax, Address(rax,
stefank@3391 1007 objArrayKlass::element_klass_offset()));
coleenp@548 1008 // Compress array + index*oopSize + 12 into a single register. Frees rcx.
apetrusenko@797 1009 __ lea(rdx, element_address);
duke@435 1010
duke@435 1011 // Generate subtype check. Blows rcx, rdi
duke@435 1012 // Superklass in rax. Subklass in rbx.
duke@435 1013 __ gen_subtype_check(rbx, ok_is_subtype);
duke@435 1014
duke@435 1015 // Come here on failure
duke@435 1016 // object is at TOS
duke@435 1017 __ jump(ExternalAddress(Interpreter::_throw_ArrayStoreException_entry));
duke@435 1018
duke@435 1019 // Come here on success
duke@435 1020 __ bind(ok_is_subtype);
ysr@777 1021
ysr@777 1022 // Get the value we will store
apetrusenko@797 1023 __ movptr(rax, at_tos());
ysr@777 1024 // Now store using the appropriate barrier
ysr@777 1025 do_oop_store(_masm, Address(rdx, 0), rax, _bs->kind(), true);
duke@435 1026 __ jmp(done);
duke@435 1027
duke@435 1028 // Have a NULL in rax, rdx=array, ecx=index. Store NULL at ary[idx]
duke@435 1029 __ bind(is_null);
duke@435 1030 __ profile_null_seen(rbx);
ysr@777 1031
ysr@777 1032 // Store a NULL
ysr@777 1033 do_oop_store(_masm, element_address, noreg, _bs->kind(), true);
duke@435 1034
duke@435 1035 // Pop stack arguments
duke@435 1036 __ bind(done);
twisti@1861 1037 __ addptr(rsp, 3 * Interpreter::stackElementSize);
duke@435 1038 }
duke@435 1039
duke@435 1040 void TemplateTable::bastore() {
duke@435 1041 transition(itos, vtos);
duke@435 1042 __ pop_i(rbx);
duke@435 1043 __ pop_ptr(rdx);
duke@435 1044 // eax: value
duke@435 1045 // ebx: index
duke@435 1046 // rdx: array
duke@435 1047 index_check(rdx, rbx); // prefer index in ebx
duke@435 1048 __ movb(Address(rdx, rbx,
duke@435 1049 Address::times_1,
duke@435 1050 arrayOopDesc::base_offset_in_bytes(T_BYTE)),
duke@435 1051 rax);
duke@435 1052 }
duke@435 1053
duke@435 1054 void TemplateTable::castore() {
duke@435 1055 transition(itos, vtos);
duke@435 1056 __ pop_i(rbx);
duke@435 1057 __ pop_ptr(rdx);
duke@435 1058 // eax: value
duke@435 1059 // ebx: index
duke@435 1060 // rdx: array
duke@435 1061 index_check(rdx, rbx); // prefer index in ebx
duke@435 1062 __ movw(Address(rdx, rbx,
duke@435 1063 Address::times_2,
duke@435 1064 arrayOopDesc::base_offset_in_bytes(T_CHAR)),
duke@435 1065 rax);
duke@435 1066 }
duke@435 1067
duke@435 1068 void TemplateTable::sastore() {
duke@435 1069 castore();
duke@435 1070 }
duke@435 1071
duke@435 1072 void TemplateTable::istore(int n) {
duke@435 1073 transition(itos, vtos);
duke@435 1074 __ movl(iaddress(n), rax);
duke@435 1075 }
duke@435 1076
duke@435 1077 void TemplateTable::lstore(int n) {
duke@435 1078 transition(ltos, vtos);
duke@435 1079 __ movq(laddress(n), rax);
duke@435 1080 }
duke@435 1081
duke@435 1082 void TemplateTable::fstore(int n) {
duke@435 1083 transition(ftos, vtos);
duke@435 1084 __ movflt(faddress(n), xmm0);
duke@435 1085 }
duke@435 1086
duke@435 1087 void TemplateTable::dstore(int n) {
duke@435 1088 transition(dtos, vtos);
duke@435 1089 __ movdbl(daddress(n), xmm0);
duke@435 1090 }
duke@435 1091
duke@435 1092 void TemplateTable::astore(int n) {
duke@435 1093 transition(vtos, vtos);
twisti@1861 1094 __ pop_ptr(rax);
never@739 1095 __ movptr(aaddress(n), rax);
duke@435 1096 }
duke@435 1097
duke@435 1098 void TemplateTable::pop() {
duke@435 1099 transition(vtos, vtos);
twisti@1861 1100 __ addptr(rsp, Interpreter::stackElementSize);
duke@435 1101 }
duke@435 1102
duke@435 1103 void TemplateTable::pop2() {
duke@435 1104 transition(vtos, vtos);
twisti@1861 1105 __ addptr(rsp, 2 * Interpreter::stackElementSize);
duke@435 1106 }
duke@435 1107
duke@435 1108 void TemplateTable::dup() {
duke@435 1109 transition(vtos, vtos);
twisti@1861 1110 __ load_ptr(0, rax);
twisti@1861 1111 __ push_ptr(rax);
duke@435 1112 // stack: ..., a, a
duke@435 1113 }
duke@435 1114
duke@435 1115 void TemplateTable::dup_x1() {
duke@435 1116 transition(vtos, vtos);
duke@435 1117 // stack: ..., a, b
twisti@1861 1118 __ load_ptr( 0, rax); // load b
twisti@1861 1119 __ load_ptr( 1, rcx); // load a
twisti@1861 1120 __ store_ptr(1, rax); // store b
twisti@1861 1121 __ store_ptr(0, rcx); // store a
twisti@1861 1122 __ push_ptr(rax); // push b
duke@435 1123 // stack: ..., b, a, b
duke@435 1124 }
duke@435 1125
duke@435 1126 void TemplateTable::dup_x2() {
duke@435 1127 transition(vtos, vtos);
duke@435 1128 // stack: ..., a, b, c
twisti@1861 1129 __ load_ptr( 0, rax); // load c
twisti@1861 1130 __ load_ptr( 2, rcx); // load a
twisti@1861 1131 __ store_ptr(2, rax); // store c in a
twisti@1861 1132 __ push_ptr(rax); // push c
duke@435 1133 // stack: ..., c, b, c, c
twisti@1861 1134 __ load_ptr( 2, rax); // load b
twisti@1861 1135 __ store_ptr(2, rcx); // store a in b
duke@435 1136 // stack: ..., c, a, c, c
twisti@1861 1137 __ store_ptr(1, rax); // store b in c
duke@435 1138 // stack: ..., c, a, b, c
duke@435 1139 }
duke@435 1140
duke@435 1141 void TemplateTable::dup2() {
duke@435 1142 transition(vtos, vtos);
duke@435 1143 // stack: ..., a, b
twisti@1861 1144 __ load_ptr(1, rax); // load a
twisti@1861 1145 __ push_ptr(rax); // push a
twisti@1861 1146 __ load_ptr(1, rax); // load b
twisti@1861 1147 __ push_ptr(rax); // push b
duke@435 1148 // stack: ..., a, b, a, b
duke@435 1149 }
duke@435 1150
duke@435 1151 void TemplateTable::dup2_x1() {
duke@435 1152 transition(vtos, vtos);
duke@435 1153 // stack: ..., a, b, c
twisti@1861 1154 __ load_ptr( 0, rcx); // load c
twisti@1861 1155 __ load_ptr( 1, rax); // load b
twisti@1861 1156 __ push_ptr(rax); // push b
twisti@1861 1157 __ push_ptr(rcx); // push c
duke@435 1158 // stack: ..., a, b, c, b, c
twisti@1861 1159 __ store_ptr(3, rcx); // store c in b
duke@435 1160 // stack: ..., a, c, c, b, c
twisti@1861 1161 __ load_ptr( 4, rcx); // load a
twisti@1861 1162 __ store_ptr(2, rcx); // store a in 2nd c
duke@435 1163 // stack: ..., a, c, a, b, c
twisti@1861 1164 __ store_ptr(4, rax); // store b in a
duke@435 1165 // stack: ..., b, c, a, b, c
duke@435 1166 }
duke@435 1167
duke@435 1168 void TemplateTable::dup2_x2() {
duke@435 1169 transition(vtos, vtos);
duke@435 1170 // stack: ..., a, b, c, d
twisti@1861 1171 __ load_ptr( 0, rcx); // load d
twisti@1861 1172 __ load_ptr( 1, rax); // load c
twisti@1861 1173 __ push_ptr(rax); // push c
twisti@1861 1174 __ push_ptr(rcx); // push d
duke@435 1175 // stack: ..., a, b, c, d, c, d
twisti@1861 1176 __ load_ptr( 4, rax); // load b
twisti@1861 1177 __ store_ptr(2, rax); // store b in d
twisti@1861 1178 __ store_ptr(4, rcx); // store d in b
duke@435 1179 // stack: ..., a, d, c, b, c, d
twisti@1861 1180 __ load_ptr( 5, rcx); // load a
twisti@1861 1181 __ load_ptr( 3, rax); // load c
twisti@1861 1182 __ store_ptr(3, rcx); // store a in c
twisti@1861 1183 __ store_ptr(5, rax); // store c in a
duke@435 1184 // stack: ..., c, d, a, b, c, d
duke@435 1185 }
duke@435 1186
duke@435 1187 void TemplateTable::swap() {
duke@435 1188 transition(vtos, vtos);
duke@435 1189 // stack: ..., a, b
twisti@1861 1190 __ load_ptr( 1, rcx); // load a
twisti@1861 1191 __ load_ptr( 0, rax); // load b
twisti@1861 1192 __ store_ptr(0, rcx); // store a in b
twisti@1861 1193 __ store_ptr(1, rax); // store b in a
duke@435 1194 // stack: ..., b, a
duke@435 1195 }
duke@435 1196
duke@435 1197 void TemplateTable::iop2(Operation op) {
duke@435 1198 transition(itos, itos);
duke@435 1199 switch (op) {
duke@435 1200 case add : __ pop_i(rdx); __ addl (rax, rdx); break;
duke@435 1201 case sub : __ movl(rdx, rax); __ pop_i(rax); __ subl (rax, rdx); break;
duke@435 1202 case mul : __ pop_i(rdx); __ imull(rax, rdx); break;
duke@435 1203 case _and : __ pop_i(rdx); __ andl (rax, rdx); break;
duke@435 1204 case _or : __ pop_i(rdx); __ orl (rax, rdx); break;
duke@435 1205 case _xor : __ pop_i(rdx); __ xorl (rax, rdx); break;
duke@435 1206 case shl : __ movl(rcx, rax); __ pop_i(rax); __ shll (rax); break;
duke@435 1207 case shr : __ movl(rcx, rax); __ pop_i(rax); __ sarl (rax); break;
duke@435 1208 case ushr : __ movl(rcx, rax); __ pop_i(rax); __ shrl (rax); break;
duke@435 1209 default : ShouldNotReachHere();
duke@435 1210 }
duke@435 1211 }
duke@435 1212
duke@435 1213 void TemplateTable::lop2(Operation op) {
duke@435 1214 transition(ltos, ltos);
duke@435 1215 switch (op) {
twisti@1861 1216 case add : __ pop_l(rdx); __ addptr(rax, rdx); break;
twisti@1861 1217 case sub : __ mov(rdx, rax); __ pop_l(rax); __ subptr(rax, rdx); break;
twisti@1861 1218 case _and : __ pop_l(rdx); __ andptr(rax, rdx); break;
twisti@1861 1219 case _or : __ pop_l(rdx); __ orptr (rax, rdx); break;
twisti@1861 1220 case _xor : __ pop_l(rdx); __ xorptr(rax, rdx); break;
twisti@1861 1221 default : ShouldNotReachHere();
duke@435 1222 }
duke@435 1223 }
duke@435 1224
duke@435 1225 void TemplateTable::idiv() {
duke@435 1226 transition(itos, itos);
duke@435 1227 __ movl(rcx, rax);
duke@435 1228 __ pop_i(rax);
duke@435 1229 // Note: could xor eax and ecx and compare with (-1 ^ min_int). If
duke@435 1230 // they are not equal, one could do a normal division (no correction
duke@435 1231 // needed), which may speed up this implementation for the common case.
duke@435 1232 // (see also JVM spec., p.243 & p.271)
duke@435 1233 __ corrected_idivl(rcx);
duke@435 1234 }
duke@435 1235
duke@435 1236 void TemplateTable::irem() {
duke@435 1237 transition(itos, itos);
duke@435 1238 __ movl(rcx, rax);
duke@435 1239 __ pop_i(rax);
duke@435 1240 // Note: could xor eax and ecx and compare with (-1 ^ min_int). If
duke@435 1241 // they are not equal, one could do a normal division (no correction
duke@435 1242 // needed), which may speed up this implementation for the common case.
duke@435 1243 // (see also JVM spec., p.243 & p.271)
duke@435 1244 __ corrected_idivl(rcx);
duke@435 1245 __ movl(rax, rdx);
duke@435 1246 }
duke@435 1247
duke@435 1248 void TemplateTable::lmul() {
duke@435 1249 transition(ltos, ltos);
duke@435 1250 __ pop_l(rdx);
duke@435 1251 __ imulq(rax, rdx);
duke@435 1252 }
duke@435 1253
duke@435 1254 void TemplateTable::ldiv() {
duke@435 1255 transition(ltos, ltos);
never@739 1256 __ mov(rcx, rax);
duke@435 1257 __ pop_l(rax);
duke@435 1258 // generate explicit div0 check
duke@435 1259 __ testq(rcx, rcx);
duke@435 1260 __ jump_cc(Assembler::zero,
duke@435 1261 ExternalAddress(Interpreter::_throw_ArithmeticException_entry));
duke@435 1262 // Note: could xor rax and rcx and compare with (-1 ^ min_int). If
duke@435 1263 // they are not equal, one could do a normal division (no correction
duke@435 1264 // needed), which may speed up this implementation for the common case.
duke@435 1265 // (see also JVM spec., p.243 & p.271)
duke@435 1266 __ corrected_idivq(rcx); // kills rbx
duke@435 1267 }
duke@435 1268
duke@435 1269 void TemplateTable::lrem() {
duke@435 1270 transition(ltos, ltos);
never@739 1271 __ mov(rcx, rax);
duke@435 1272 __ pop_l(rax);
duke@435 1273 __ testq(rcx, rcx);
duke@435 1274 __ jump_cc(Assembler::zero,
duke@435 1275 ExternalAddress(Interpreter::_throw_ArithmeticException_entry));
duke@435 1276 // Note: could xor rax and rcx and compare with (-1 ^ min_int). If
duke@435 1277 // they are not equal, one could do a normal division (no correction
duke@435 1278 // needed), which may speed up this implementation for the common case.
duke@435 1279 // (see also JVM spec., p.243 & p.271)
duke@435 1280 __ corrected_idivq(rcx); // kills rbx
never@739 1281 __ mov(rax, rdx);
duke@435 1282 }
duke@435 1283
duke@435 1284 void TemplateTable::lshl() {
duke@435 1285 transition(itos, ltos);
duke@435 1286 __ movl(rcx, rax); // get shift count
duke@435 1287 __ pop_l(rax); // get shift value
duke@435 1288 __ shlq(rax);
duke@435 1289 }
duke@435 1290
duke@435 1291 void TemplateTable::lshr() {
duke@435 1292 transition(itos, ltos);
duke@435 1293 __ movl(rcx, rax); // get shift count
duke@435 1294 __ pop_l(rax); // get shift value
duke@435 1295 __ sarq(rax);
duke@435 1296 }
duke@435 1297
duke@435 1298 void TemplateTable::lushr() {
duke@435 1299 transition(itos, ltos);
duke@435 1300 __ movl(rcx, rax); // get shift count
duke@435 1301 __ pop_l(rax); // get shift value
duke@435 1302 __ shrq(rax);
duke@435 1303 }
duke@435 1304
duke@435 1305 void TemplateTable::fop2(Operation op) {
duke@435 1306 transition(ftos, ftos);
duke@435 1307 switch (op) {
duke@435 1308 case add:
duke@435 1309 __ addss(xmm0, at_rsp());
twisti@1861 1310 __ addptr(rsp, Interpreter::stackElementSize);
duke@435 1311 break;
duke@435 1312 case sub:
duke@435 1313 __ movflt(xmm1, xmm0);
duke@435 1314 __ pop_f(xmm0);
duke@435 1315 __ subss(xmm0, xmm1);
duke@435 1316 break;
duke@435 1317 case mul:
duke@435 1318 __ mulss(xmm0, at_rsp());
twisti@1861 1319 __ addptr(rsp, Interpreter::stackElementSize);
duke@435 1320 break;
duke@435 1321 case div:
duke@435 1322 __ movflt(xmm1, xmm0);
duke@435 1323 __ pop_f(xmm0);
duke@435 1324 __ divss(xmm0, xmm1);
duke@435 1325 break;
duke@435 1326 case rem:
duke@435 1327 __ movflt(xmm1, xmm0);
duke@435 1328 __ pop_f(xmm0);
duke@435 1329 __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::frem), 2);
duke@435 1330 break;
duke@435 1331 default:
duke@435 1332 ShouldNotReachHere();
duke@435 1333 break;
duke@435 1334 }
duke@435 1335 }
duke@435 1336
duke@435 1337 void TemplateTable::dop2(Operation op) {
duke@435 1338 transition(dtos, dtos);
duke@435 1339 switch (op) {
duke@435 1340 case add:
duke@435 1341 __ addsd(xmm0, at_rsp());
twisti@1861 1342 __ addptr(rsp, 2 * Interpreter::stackElementSize);
duke@435 1343 break;
duke@435 1344 case sub:
duke@435 1345 __ movdbl(xmm1, xmm0);
duke@435 1346 __ pop_d(xmm0);
duke@435 1347 __ subsd(xmm0, xmm1);
duke@435 1348 break;
duke@435 1349 case mul:
duke@435 1350 __ mulsd(xmm0, at_rsp());
twisti@1861 1351 __ addptr(rsp, 2 * Interpreter::stackElementSize);
duke@435 1352 break;
duke@435 1353 case div:
duke@435 1354 __ movdbl(xmm1, xmm0);
duke@435 1355 __ pop_d(xmm0);
duke@435 1356 __ divsd(xmm0, xmm1);
duke@435 1357 break;
duke@435 1358 case rem:
duke@435 1359 __ movdbl(xmm1, xmm0);
duke@435 1360 __ pop_d(xmm0);
duke@435 1361 __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::drem), 2);
duke@435 1362 break;
duke@435 1363 default:
duke@435 1364 ShouldNotReachHere();
duke@435 1365 break;
duke@435 1366 }
duke@435 1367 }
duke@435 1368
duke@435 1369 void TemplateTable::ineg() {
duke@435 1370 transition(itos, itos);
duke@435 1371 __ negl(rax);
duke@435 1372 }
duke@435 1373
duke@435 1374 void TemplateTable::lneg() {
duke@435 1375 transition(ltos, ltos);
duke@435 1376 __ negq(rax);
duke@435 1377 }
duke@435 1378
duke@435 1379 // Note: 'double' and 'long long' have 32-bits alignment on x86.
duke@435 1380 static jlong* double_quadword(jlong *adr, jlong lo, jlong hi) {
duke@435 1381 // Use the expression (adr)&(~0xF) to provide 128-bits aligned address
duke@435 1382 // of 128-bits operands for SSE instructions.
duke@435 1383 jlong *operand = (jlong*)(((intptr_t)adr)&((intptr_t)(~0xF)));
duke@435 1384 // Store the value to a 128-bits operand.
duke@435 1385 operand[0] = lo;
duke@435 1386 operand[1] = hi;
duke@435 1387 return operand;
duke@435 1388 }
duke@435 1389
duke@435 1390 // Buffer for 128-bits masks used by SSE instructions.
duke@435 1391 static jlong float_signflip_pool[2*2];
duke@435 1392 static jlong double_signflip_pool[2*2];
duke@435 1393
duke@435 1394 void TemplateTable::fneg() {
duke@435 1395 transition(ftos, ftos);
duke@435 1396 static jlong *float_signflip = double_quadword(&float_signflip_pool[1], 0x8000000080000000, 0x8000000080000000);
duke@435 1397 __ xorps(xmm0, ExternalAddress((address) float_signflip));
duke@435 1398 }
duke@435 1399
duke@435 1400 void TemplateTable::dneg() {
duke@435 1401 transition(dtos, dtos);
duke@435 1402 static jlong *double_signflip = double_quadword(&double_signflip_pool[1], 0x8000000000000000, 0x8000000000000000);
duke@435 1403 __ xorpd(xmm0, ExternalAddress((address) double_signflip));
duke@435 1404 }
duke@435 1405
duke@435 1406 void TemplateTable::iinc() {
duke@435 1407 transition(vtos, vtos);
duke@435 1408 __ load_signed_byte(rdx, at_bcp(2)); // get constant
duke@435 1409 locals_index(rbx);
duke@435 1410 __ addl(iaddress(rbx), rdx);
duke@435 1411 }
duke@435 1412
duke@435 1413 void TemplateTable::wide_iinc() {
duke@435 1414 transition(vtos, vtos);
duke@435 1415 __ movl(rdx, at_bcp(4)); // get constant
duke@435 1416 locals_index_wide(rbx);
duke@435 1417 __ bswapl(rdx); // swap bytes & sign-extend constant
duke@435 1418 __ sarl(rdx, 16);
duke@435 1419 __ addl(iaddress(rbx), rdx);
duke@435 1420 // Note: should probably use only one movl to get both
duke@435 1421 // the index and the constant -> fix this
duke@435 1422 }
duke@435 1423
duke@435 1424 void TemplateTable::convert() {
duke@435 1425 // Checking
duke@435 1426 #ifdef ASSERT
duke@435 1427 {
duke@435 1428 TosState tos_in = ilgl;
duke@435 1429 TosState tos_out = ilgl;
duke@435 1430 switch (bytecode()) {
duke@435 1431 case Bytecodes::_i2l: // fall through
duke@435 1432 case Bytecodes::_i2f: // fall through
duke@435 1433 case Bytecodes::_i2d: // fall through
duke@435 1434 case Bytecodes::_i2b: // fall through
duke@435 1435 case Bytecodes::_i2c: // fall through
duke@435 1436 case Bytecodes::_i2s: tos_in = itos; break;
duke@435 1437 case Bytecodes::_l2i: // fall through
duke@435 1438 case Bytecodes::_l2f: // fall through
duke@435 1439 case Bytecodes::_l2d: tos_in = ltos; break;
duke@435 1440 case Bytecodes::_f2i: // fall through
duke@435 1441 case Bytecodes::_f2l: // fall through
duke@435 1442 case Bytecodes::_f2d: tos_in = ftos; break;
duke@435 1443 case Bytecodes::_d2i: // fall through
duke@435 1444 case Bytecodes::_d2l: // fall through
duke@435 1445 case Bytecodes::_d2f: tos_in = dtos; break;
duke@435 1446 default : ShouldNotReachHere();
duke@435 1447 }
duke@435 1448 switch (bytecode()) {
duke@435 1449 case Bytecodes::_l2i: // fall through
duke@435 1450 case Bytecodes::_f2i: // fall through
duke@435 1451 case Bytecodes::_d2i: // fall through
duke@435 1452 case Bytecodes::_i2b: // fall through
duke@435 1453 case Bytecodes::_i2c: // fall through
duke@435 1454 case Bytecodes::_i2s: tos_out = itos; break;
duke@435 1455 case Bytecodes::_i2l: // fall through
duke@435 1456 case Bytecodes::_f2l: // fall through
duke@435 1457 case Bytecodes::_d2l: tos_out = ltos; break;
duke@435 1458 case Bytecodes::_i2f: // fall through
duke@435 1459 case Bytecodes::_l2f: // fall through
duke@435 1460 case Bytecodes::_d2f: tos_out = ftos; break;
duke@435 1461 case Bytecodes::_i2d: // fall through
duke@435 1462 case Bytecodes::_l2d: // fall through
duke@435 1463 case Bytecodes::_f2d: tos_out = dtos; break;
duke@435 1464 default : ShouldNotReachHere();
duke@435 1465 }
duke@435 1466 transition(tos_in, tos_out);
duke@435 1467 }
duke@435 1468 #endif // ASSERT
duke@435 1469
duke@435 1470 static const int64_t is_nan = 0x8000000000000000L;
duke@435 1471
duke@435 1472 // Conversion
duke@435 1473 switch (bytecode()) {
duke@435 1474 case Bytecodes::_i2l:
duke@435 1475 __ movslq(rax, rax);
duke@435 1476 break;
duke@435 1477 case Bytecodes::_i2f:
duke@435 1478 __ cvtsi2ssl(xmm0, rax);
duke@435 1479 break;
duke@435 1480 case Bytecodes::_i2d:
duke@435 1481 __ cvtsi2sdl(xmm0, rax);
duke@435 1482 break;
duke@435 1483 case Bytecodes::_i2b:
duke@435 1484 __ movsbl(rax, rax);
duke@435 1485 break;
duke@435 1486 case Bytecodes::_i2c:
duke@435 1487 __ movzwl(rax, rax);
duke@435 1488 break;
duke@435 1489 case Bytecodes::_i2s:
duke@435 1490 __ movswl(rax, rax);
duke@435 1491 break;
duke@435 1492 case Bytecodes::_l2i:
duke@435 1493 __ movl(rax, rax);
duke@435 1494 break;
duke@435 1495 case Bytecodes::_l2f:
duke@435 1496 __ cvtsi2ssq(xmm0, rax);
duke@435 1497 break;
duke@435 1498 case Bytecodes::_l2d:
duke@435 1499 __ cvtsi2sdq(xmm0, rax);
duke@435 1500 break;
duke@435 1501 case Bytecodes::_f2i:
duke@435 1502 {
duke@435 1503 Label L;
duke@435 1504 __ cvttss2sil(rax, xmm0);
duke@435 1505 __ cmpl(rax, 0x80000000); // NaN or overflow/underflow?
duke@435 1506 __ jcc(Assembler::notEqual, L);
duke@435 1507 __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::f2i), 1);
duke@435 1508 __ bind(L);
duke@435 1509 }
duke@435 1510 break;
duke@435 1511 case Bytecodes::_f2l:
duke@435 1512 {
duke@435 1513 Label L;
duke@435 1514 __ cvttss2siq(rax, xmm0);
duke@435 1515 // NaN or overflow/underflow?
duke@435 1516 __ cmp64(rax, ExternalAddress((address) &is_nan));
duke@435 1517 __ jcc(Assembler::notEqual, L);
duke@435 1518 __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::f2l), 1);
duke@435 1519 __ bind(L);
duke@435 1520 }
duke@435 1521 break;
duke@435 1522 case Bytecodes::_f2d:
duke@435 1523 __ cvtss2sd(xmm0, xmm0);
duke@435 1524 break;
duke@435 1525 case Bytecodes::_d2i:
duke@435 1526 {
duke@435 1527 Label L;
duke@435 1528 __ cvttsd2sil(rax, xmm0);
duke@435 1529 __ cmpl(rax, 0x80000000); // NaN or overflow/underflow?
duke@435 1530 __ jcc(Assembler::notEqual, L);
duke@435 1531 __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::d2i), 1);
duke@435 1532 __ bind(L);
duke@435 1533 }
duke@435 1534 break;
duke@435 1535 case Bytecodes::_d2l:
duke@435 1536 {
duke@435 1537 Label L;
duke@435 1538 __ cvttsd2siq(rax, xmm0);
duke@435 1539 // NaN or overflow/underflow?
duke@435 1540 __ cmp64(rax, ExternalAddress((address) &is_nan));
duke@435 1541 __ jcc(Assembler::notEqual, L);
duke@435 1542 __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::d2l), 1);
duke@435 1543 __ bind(L);
duke@435 1544 }
duke@435 1545 break;
duke@435 1546 case Bytecodes::_d2f:
duke@435 1547 __ cvtsd2ss(xmm0, xmm0);
duke@435 1548 break;
duke@435 1549 default:
duke@435 1550 ShouldNotReachHere();
duke@435 1551 }
duke@435 1552 }
duke@435 1553
duke@435 1554 void TemplateTable::lcmp() {
duke@435 1555 transition(ltos, itos);
duke@435 1556 Label done;
duke@435 1557 __ pop_l(rdx);
duke@435 1558 __ cmpq(rdx, rax);
duke@435 1559 __ movl(rax, -1);
duke@435 1560 __ jccb(Assembler::less, done);
duke@435 1561 __ setb(Assembler::notEqual, rax);
duke@435 1562 __ movzbl(rax, rax);
duke@435 1563 __ bind(done);
duke@435 1564 }
duke@435 1565
duke@435 1566 void TemplateTable::float_cmp(bool is_float, int unordered_result) {
duke@435 1567 Label done;
duke@435 1568 if (is_float) {
duke@435 1569 // XXX get rid of pop here, use ... reg, mem32
duke@435 1570 __ pop_f(xmm1);
duke@435 1571 __ ucomiss(xmm1, xmm0);
duke@435 1572 } else {
duke@435 1573 // XXX get rid of pop here, use ... reg, mem64
duke@435 1574 __ pop_d(xmm1);
duke@435 1575 __ ucomisd(xmm1, xmm0);
duke@435 1576 }
duke@435 1577 if (unordered_result < 0) {
duke@435 1578 __ movl(rax, -1);
duke@435 1579 __ jccb(Assembler::parity, done);
duke@435 1580 __ jccb(Assembler::below, done);
duke@435 1581 __ setb(Assembler::notEqual, rdx);
duke@435 1582 __ movzbl(rax, rdx);
duke@435 1583 } else {
duke@435 1584 __ movl(rax, 1);
duke@435 1585 __ jccb(Assembler::parity, done);
duke@435 1586 __ jccb(Assembler::above, done);
duke@435 1587 __ movl(rax, 0);
duke@435 1588 __ jccb(Assembler::equal, done);
duke@435 1589 __ decrementl(rax);
duke@435 1590 }
duke@435 1591 __ bind(done);
duke@435 1592 }
duke@435 1593
duke@435 1594 void TemplateTable::branch(bool is_jsr, bool is_wide) {
duke@435 1595 __ get_method(rcx); // rcx holds method
duke@435 1596 __ profile_taken_branch(rax, rbx); // rax holds updated MDP, rbx
duke@435 1597 // holds bumped taken count
duke@435 1598
duke@435 1599 const ByteSize be_offset = methodOopDesc::backedge_counter_offset() +
duke@435 1600 InvocationCounter::counter_offset();
duke@435 1601 const ByteSize inv_offset = methodOopDesc::invocation_counter_offset() +
duke@435 1602 InvocationCounter::counter_offset();
duke@435 1603 const int method_offset = frame::interpreter_frame_method_offset * wordSize;
duke@435 1604
duke@435 1605 // Load up edx with the branch displacement
duke@435 1606 __ movl(rdx, at_bcp(1));
duke@435 1607 __ bswapl(rdx);
duke@435 1608
duke@435 1609 if (!is_wide) {
duke@435 1610 __ sarl(rdx, 16);
duke@435 1611 }
never@739 1612 __ movl2ptr(rdx, rdx);
duke@435 1613
duke@435 1614 // Handle all the JSR stuff here, then exit.
duke@435 1615 // It's much shorter and cleaner than intermingling with the non-JSR
twisti@1040 1616 // normal-branch stuff occurring below.
duke@435 1617 if (is_jsr) {
duke@435 1618 // Pre-load the next target bytecode into rbx
duke@435 1619 __ load_unsigned_byte(rbx, Address(r13, rdx, Address::times_1, 0));
duke@435 1620
duke@435 1621 // compute return address as bci in rax
never@739 1622 __ lea(rax, at_bcp((is_wide ? 5 : 3) -
duke@435 1623 in_bytes(constMethodOopDesc::codes_offset())));
never@739 1624 __ subptr(rax, Address(rcx, methodOopDesc::const_offset()));
duke@435 1625 // Adjust the bcp in r13 by the displacement in rdx
never@739 1626 __ addptr(r13, rdx);
duke@435 1627 // jsr returns atos that is not an oop
duke@435 1628 __ push_i(rax);
duke@435 1629 __ dispatch_only(vtos);
duke@435 1630 return;
duke@435 1631 }
duke@435 1632
duke@435 1633 // Normal (non-jsr) branch handling
duke@435 1634
duke@435 1635 // Adjust the bcp in r13 by the displacement in rdx
never@739 1636 __ addptr(r13, rdx);
duke@435 1637
duke@435 1638 assert(UseLoopCounter || !UseOnStackReplacement,
duke@435 1639 "on-stack-replacement requires loop counters");
duke@435 1640 Label backedge_counter_overflow;
duke@435 1641 Label profile_method;
duke@435 1642 Label dispatch;
duke@435 1643 if (UseLoopCounter) {
duke@435 1644 // increment backedge counter for backward branches
duke@435 1645 // rax: MDO
duke@435 1646 // ebx: MDO bumped taken-count
duke@435 1647 // rcx: method
duke@435 1648 // rdx: target offset
duke@435 1649 // r13: target bcp
duke@435 1650 // r14: locals pointer
duke@435 1651 __ testl(rdx, rdx); // check if forward or backward branch
duke@435 1652 __ jcc(Assembler::positive, dispatch); // count only if backward branch
iveresov@2138 1653 if (TieredCompilation) {
iveresov@2138 1654 Label no_mdo;
iveresov@2138 1655 int increment = InvocationCounter::count_increment;
iveresov@2138 1656 int mask = ((1 << Tier0BackedgeNotifyFreqLog) - 1) << InvocationCounter::count_shift;
iveresov@2138 1657 if (ProfileInterpreter) {
iveresov@2138 1658 // Are we profiling?
iveresov@2138 1659 __ movptr(rbx, Address(rcx, in_bytes(methodOopDesc::method_data_offset())));
iveresov@2138 1660 __ testptr(rbx, rbx);
iveresov@2138 1661 __ jccb(Assembler::zero, no_mdo);
iveresov@2138 1662 // Increment the MDO backedge counter
iveresov@2138 1663 const Address mdo_backedge_counter(rbx, in_bytes(methodDataOopDesc::backedge_counter_offset()) +
iveresov@2138 1664 in_bytes(InvocationCounter::counter_offset()));
iveresov@2138 1665 __ increment_mask_and_jump(mdo_backedge_counter, increment, mask,
iveresov@2138 1666 rax, false, Assembler::zero, &backedge_counter_overflow);
iveresov@2138 1667 __ jmp(dispatch);
duke@435 1668 }
iveresov@2138 1669 __ bind(no_mdo);
iveresov@2138 1670 // Increment backedge counter in methodOop
iveresov@2138 1671 __ increment_mask_and_jump(Address(rcx, be_offset), increment, mask,
iveresov@2138 1672 rax, false, Assembler::zero, &backedge_counter_overflow);
duke@435 1673 } else {
iveresov@2138 1674 // increment counter
iveresov@2138 1675 __ movl(rax, Address(rcx, be_offset)); // load backedge counter
iveresov@2138 1676 __ incrementl(rax, InvocationCounter::count_increment); // increment counter
iveresov@2138 1677 __ movl(Address(rcx, be_offset), rax); // store counter
iveresov@2138 1678
iveresov@2138 1679 __ movl(rax, Address(rcx, inv_offset)); // load invocation counter
iveresov@2138 1680 __ andl(rax, InvocationCounter::count_mask_value); // and the status bits
iveresov@2138 1681 __ addl(rax, Address(rcx, be_offset)); // add both counters
iveresov@2138 1682
iveresov@2138 1683 if (ProfileInterpreter) {
iveresov@2138 1684 // Test to see if we should create a method data oop
duke@435 1685 __ cmp32(rax,
iveresov@2138 1686 ExternalAddress((address) &InvocationCounter::InterpreterProfileLimit));
iveresov@2138 1687 __ jcc(Assembler::less, dispatch);
iveresov@2138 1688
iveresov@2138 1689 // if no method data exists, go to profile method
iveresov@2138 1690 __ test_method_data_pointer(rax, profile_method);
iveresov@2138 1691
iveresov@2138 1692 if (UseOnStackReplacement) {
iveresov@2138 1693 // check for overflow against ebx which is the MDO taken count
iveresov@2138 1694 __ cmp32(rbx,
iveresov@2138 1695 ExternalAddress((address) &InvocationCounter::InterpreterBackwardBranchLimit));
iveresov@2138 1696 __ jcc(Assembler::below, dispatch);
iveresov@2138 1697
iveresov@2138 1698 // When ProfileInterpreter is on, the backedge_count comes
iveresov@2138 1699 // from the methodDataOop, which value does not get reset on
iveresov@2138 1700 // the call to frequency_counter_overflow(). To avoid
iveresov@2138 1701 // excessive calls to the overflow routine while the method is
iveresov@2138 1702 // being compiled, add a second test to make sure the overflow
iveresov@2138 1703 // function is called only once every overflow_frequency.
iveresov@2138 1704 const int overflow_frequency = 1024;
iveresov@2138 1705 __ andl(rbx, overflow_frequency - 1);
iveresov@2138 1706 __ jcc(Assembler::zero, backedge_counter_overflow);
iveresov@2138 1707
iveresov@2138 1708 }
iveresov@2138 1709 } else {
iveresov@2138 1710 if (UseOnStackReplacement) {
iveresov@2138 1711 // check for overflow against eax, which is the sum of the
iveresov@2138 1712 // counters
iveresov@2138 1713 __ cmp32(rax,
iveresov@2138 1714 ExternalAddress((address) &InvocationCounter::InterpreterBackwardBranchLimit));
iveresov@2138 1715 __ jcc(Assembler::aboveEqual, backedge_counter_overflow);
iveresov@2138 1716
iveresov@2138 1717 }
duke@435 1718 }
duke@435 1719 }
duke@435 1720 __ bind(dispatch);
duke@435 1721 }
duke@435 1722
duke@435 1723 // Pre-load the next target bytecode into rbx
duke@435 1724 __ load_unsigned_byte(rbx, Address(r13, 0));
duke@435 1725
duke@435 1726 // continue with the bytecode @ target
duke@435 1727 // eax: return bci for jsr's, unused otherwise
duke@435 1728 // ebx: target bytecode
duke@435 1729 // r13: target bcp
duke@435 1730 __ dispatch_only(vtos);
duke@435 1731
duke@435 1732 if (UseLoopCounter) {
duke@435 1733 if (ProfileInterpreter) {
duke@435 1734 // Out-of-line code to allocate method data oop.
duke@435 1735 __ bind(profile_method);
iveresov@2438 1736 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method));
duke@435 1737 __ load_unsigned_byte(rbx, Address(r13, 0)); // restore target bytecode
iveresov@2438 1738 __ set_method_data_pointer_for_bcp();
duke@435 1739 __ jmp(dispatch);
duke@435 1740 }
duke@435 1741
duke@435 1742 if (UseOnStackReplacement) {
duke@435 1743 // invocation counter overflow
duke@435 1744 __ bind(backedge_counter_overflow);
never@739 1745 __ negptr(rdx);
never@739 1746 __ addptr(rdx, r13); // branch bcp
duke@435 1747 // IcoResult frequency_counter_overflow([JavaThread*], address branch_bcp)
duke@435 1748 __ call_VM(noreg,
duke@435 1749 CAST_FROM_FN_PTR(address,
duke@435 1750 InterpreterRuntime::frequency_counter_overflow),
duke@435 1751 rdx);
duke@435 1752 __ load_unsigned_byte(rbx, Address(r13, 0)); // restore target bytecode
duke@435 1753
duke@435 1754 // rax: osr nmethod (osr ok) or NULL (osr not possible)
duke@435 1755 // ebx: target bytecode
duke@435 1756 // rdx: scratch
duke@435 1757 // r14: locals pointer
duke@435 1758 // r13: bcp
never@739 1759 __ testptr(rax, rax); // test result
duke@435 1760 __ jcc(Assembler::zero, dispatch); // no osr if null
duke@435 1761 // nmethod may have been invalidated (VM may block upon call_VM return)
duke@435 1762 __ movl(rcx, Address(rax, nmethod::entry_bci_offset()));
duke@435 1763 __ cmpl(rcx, InvalidOSREntryBci);
duke@435 1764 __ jcc(Assembler::equal, dispatch);
duke@435 1765
duke@435 1766 // We have the address of an on stack replacement routine in eax
duke@435 1767 // We need to prepare to execute the OSR method. First we must
duke@435 1768 // migrate the locals and monitors off of the stack.
duke@435 1769
never@739 1770 __ mov(r13, rax); // save the nmethod
duke@435 1771
duke@435 1772 call_VM(noreg, CAST_FROM_FN_PTR(address, SharedRuntime::OSR_migration_begin));
duke@435 1773
duke@435 1774 // eax is OSR buffer, move it to expected parameter location
never@739 1775 __ mov(j_rarg0, rax);
duke@435 1776
duke@435 1777 // We use j_rarg definitions here so that registers don't conflict as parameter
duke@435 1778 // registers change across platforms as we are in the midst of a calling
duke@435 1779 // sequence to the OSR nmethod and we don't want collision. These are NOT parameters.
duke@435 1780
duke@435 1781 const Register retaddr = j_rarg2;
duke@435 1782 const Register sender_sp = j_rarg1;
duke@435 1783
duke@435 1784 // pop the interpreter frame
never@739 1785 __ movptr(sender_sp, Address(rbp, frame::interpreter_frame_sender_sp_offset * wordSize)); // get sender sp
duke@435 1786 __ leave(); // remove frame anchor
never@739 1787 __ pop(retaddr); // get return address
never@739 1788 __ mov(rsp, sender_sp); // set sp to sender sp
duke@435 1789 // Ensure compiled code always sees stack at proper alignment
never@739 1790 __ andptr(rsp, -(StackAlignmentInBytes));
duke@435 1791
duke@435 1792 // unlike x86 we need no specialized return from compiled code
duke@435 1793 // to the interpreter or the call stub.
duke@435 1794
duke@435 1795 // push the return address
never@739 1796 __ push(retaddr);
duke@435 1797
duke@435 1798 // and begin the OSR nmethod
duke@435 1799 __ jmp(Address(r13, nmethod::osr_entry_point_offset()));
duke@435 1800 }
duke@435 1801 }
duke@435 1802 }
duke@435 1803
duke@435 1804
duke@435 1805 void TemplateTable::if_0cmp(Condition cc) {
duke@435 1806 transition(itos, vtos);
duke@435 1807 // assume branch is more often taken than not (loops use backward branches)
duke@435 1808 Label not_taken;
duke@435 1809 __ testl(rax, rax);
duke@435 1810 __ jcc(j_not(cc), not_taken);
duke@435 1811 branch(false, false);
duke@435 1812 __ bind(not_taken);
duke@435 1813 __ profile_not_taken_branch(rax);
duke@435 1814 }
duke@435 1815
duke@435 1816 void TemplateTable::if_icmp(Condition cc) {
duke@435 1817 transition(itos, vtos);
duke@435 1818 // assume branch is more often taken than not (loops use backward branches)
duke@435 1819 Label not_taken;
duke@435 1820 __ pop_i(rdx);
duke@435 1821 __ cmpl(rdx, rax);
duke@435 1822 __ jcc(j_not(cc), not_taken);
duke@435 1823 branch(false, false);
duke@435 1824 __ bind(not_taken);
duke@435 1825 __ profile_not_taken_branch(rax);
duke@435 1826 }
duke@435 1827
duke@435 1828 void TemplateTable::if_nullcmp(Condition cc) {
duke@435 1829 transition(atos, vtos);
duke@435 1830 // assume branch is more often taken than not (loops use backward branches)
duke@435 1831 Label not_taken;
never@739 1832 __ testptr(rax, rax);
duke@435 1833 __ jcc(j_not(cc), not_taken);
duke@435 1834 branch(false, false);
duke@435 1835 __ bind(not_taken);
duke@435 1836 __ profile_not_taken_branch(rax);
duke@435 1837 }
duke@435 1838
duke@435 1839 void TemplateTable::if_acmp(Condition cc) {
duke@435 1840 transition(atos, vtos);
duke@435 1841 // assume branch is more often taken than not (loops use backward branches)
duke@435 1842 Label not_taken;
duke@435 1843 __ pop_ptr(rdx);
never@739 1844 __ cmpptr(rdx, rax);
duke@435 1845 __ jcc(j_not(cc), not_taken);
duke@435 1846 branch(false, false);
duke@435 1847 __ bind(not_taken);
duke@435 1848 __ profile_not_taken_branch(rax);
duke@435 1849 }
duke@435 1850
duke@435 1851 void TemplateTable::ret() {
duke@435 1852 transition(vtos, vtos);
duke@435 1853 locals_index(rbx);
never@739 1854 __ movslq(rbx, iaddress(rbx)); // get return bci, compute return bcp
duke@435 1855 __ profile_ret(rbx, rcx);
duke@435 1856 __ get_method(rax);
never@739 1857 __ movptr(r13, Address(rax, methodOopDesc::const_offset()));
never@739 1858 __ lea(r13, Address(r13, rbx, Address::times_1,
never@739 1859 constMethodOopDesc::codes_offset()));
duke@435 1860 __ dispatch_next(vtos);
duke@435 1861 }
duke@435 1862
duke@435 1863 void TemplateTable::wide_ret() {
duke@435 1864 transition(vtos, vtos);
duke@435 1865 locals_index_wide(rbx);
never@739 1866 __ movptr(rbx, aaddress(rbx)); // get return bci, compute return bcp
duke@435 1867 __ profile_ret(rbx, rcx);
duke@435 1868 __ get_method(rax);
never@739 1869 __ movptr(r13, Address(rax, methodOopDesc::const_offset()));
never@739 1870 __ lea(r13, Address(r13, rbx, Address::times_1, constMethodOopDesc::codes_offset()));
duke@435 1871 __ dispatch_next(vtos);
duke@435 1872 }
duke@435 1873
duke@435 1874 void TemplateTable::tableswitch() {
duke@435 1875 Label default_case, continue_execution;
duke@435 1876 transition(itos, vtos);
duke@435 1877 // align r13
never@739 1878 __ lea(rbx, at_bcp(BytesPerInt));
never@739 1879 __ andptr(rbx, -BytesPerInt);
duke@435 1880 // load lo & hi
duke@435 1881 __ movl(rcx, Address(rbx, BytesPerInt));
duke@435 1882 __ movl(rdx, Address(rbx, 2 * BytesPerInt));
duke@435 1883 __ bswapl(rcx);
duke@435 1884 __ bswapl(rdx);
duke@435 1885 // check against lo & hi
duke@435 1886 __ cmpl(rax, rcx);
duke@435 1887 __ jcc(Assembler::less, default_case);
duke@435 1888 __ cmpl(rax, rdx);
duke@435 1889 __ jcc(Assembler::greater, default_case);
duke@435 1890 // lookup dispatch offset
duke@435 1891 __ subl(rax, rcx);
duke@435 1892 __ movl(rdx, Address(rbx, rax, Address::times_4, 3 * BytesPerInt));
duke@435 1893 __ profile_switch_case(rax, rbx, rcx);
duke@435 1894 // continue execution
duke@435 1895 __ bind(continue_execution);
duke@435 1896 __ bswapl(rdx);
never@739 1897 __ movl2ptr(rdx, rdx);
duke@435 1898 __ load_unsigned_byte(rbx, Address(r13, rdx, Address::times_1));
never@739 1899 __ addptr(r13, rdx);
duke@435 1900 __ dispatch_only(vtos);
duke@435 1901 // handle default
duke@435 1902 __ bind(default_case);
duke@435 1903 __ profile_switch_default(rax);
duke@435 1904 __ movl(rdx, Address(rbx, 0));
duke@435 1905 __ jmp(continue_execution);
duke@435 1906 }
duke@435 1907
duke@435 1908 void TemplateTable::lookupswitch() {
duke@435 1909 transition(itos, itos);
duke@435 1910 __ stop("lookupswitch bytecode should have been rewritten");
duke@435 1911 }
duke@435 1912
duke@435 1913 void TemplateTable::fast_linearswitch() {
duke@435 1914 transition(itos, vtos);
duke@435 1915 Label loop_entry, loop, found, continue_execution;
duke@435 1916 // bswap rax so we can avoid bswapping the table entries
duke@435 1917 __ bswapl(rax);
duke@435 1918 // align r13
never@739 1919 __ lea(rbx, at_bcp(BytesPerInt)); // btw: should be able to get rid of
never@739 1920 // this instruction (change offsets
never@739 1921 // below)
never@739 1922 __ andptr(rbx, -BytesPerInt);
duke@435 1923 // set counter
duke@435 1924 __ movl(rcx, Address(rbx, BytesPerInt));
duke@435 1925 __ bswapl(rcx);
duke@435 1926 __ jmpb(loop_entry);
duke@435 1927 // table search
duke@435 1928 __ bind(loop);
duke@435 1929 __ cmpl(rax, Address(rbx, rcx, Address::times_8, 2 * BytesPerInt));
duke@435 1930 __ jcc(Assembler::equal, found);
duke@435 1931 __ bind(loop_entry);
duke@435 1932 __ decrementl(rcx);
duke@435 1933 __ jcc(Assembler::greaterEqual, loop);
duke@435 1934 // default case
duke@435 1935 __ profile_switch_default(rax);
duke@435 1936 __ movl(rdx, Address(rbx, 0));
duke@435 1937 __ jmp(continue_execution);
duke@435 1938 // entry found -> get offset
duke@435 1939 __ bind(found);
duke@435 1940 __ movl(rdx, Address(rbx, rcx, Address::times_8, 3 * BytesPerInt));
duke@435 1941 __ profile_switch_case(rcx, rax, rbx);
duke@435 1942 // continue execution
duke@435 1943 __ bind(continue_execution);
duke@435 1944 __ bswapl(rdx);
never@739 1945 __ movl2ptr(rdx, rdx);
duke@435 1946 __ load_unsigned_byte(rbx, Address(r13, rdx, Address::times_1));
never@739 1947 __ addptr(r13, rdx);
duke@435 1948 __ dispatch_only(vtos);
duke@435 1949 }
duke@435 1950
duke@435 1951 void TemplateTable::fast_binaryswitch() {
duke@435 1952 transition(itos, vtos);
duke@435 1953 // Implementation using the following core algorithm:
duke@435 1954 //
duke@435 1955 // int binary_search(int key, LookupswitchPair* array, int n) {
duke@435 1956 // // Binary search according to "Methodik des Programmierens" by
duke@435 1957 // // Edsger W. Dijkstra and W.H.J. Feijen, Addison Wesley Germany 1985.
duke@435 1958 // int i = 0;
duke@435 1959 // int j = n;
duke@435 1960 // while (i+1 < j) {
duke@435 1961 // // invariant P: 0 <= i < j <= n and (a[i] <= key < a[j] or Q)
duke@435 1962 // // with Q: for all i: 0 <= i < n: key < a[i]
duke@435 1963 // // where a stands for the array and assuming that the (inexisting)
duke@435 1964 // // element a[n] is infinitely big.
duke@435 1965 // int h = (i + j) >> 1;
duke@435 1966 // // i < h < j
duke@435 1967 // if (key < array[h].fast_match()) {
duke@435 1968 // j = h;
duke@435 1969 // } else {
duke@435 1970 // i = h;
duke@435 1971 // }
duke@435 1972 // }
duke@435 1973 // // R: a[i] <= key < a[i+1] or Q
duke@435 1974 // // (i.e., if key is within array, i is the correct index)
duke@435 1975 // return i;
duke@435 1976 // }
duke@435 1977
duke@435 1978 // Register allocation
duke@435 1979 const Register key = rax; // already set (tosca)
duke@435 1980 const Register array = rbx;
duke@435 1981 const Register i = rcx;
duke@435 1982 const Register j = rdx;
duke@435 1983 const Register h = rdi;
duke@435 1984 const Register temp = rsi;
duke@435 1985
duke@435 1986 // Find array start
never@739 1987 __ lea(array, at_bcp(3 * BytesPerInt)); // btw: should be able to
never@739 1988 // get rid of this
never@739 1989 // instruction (change
never@739 1990 // offsets below)
never@739 1991 __ andptr(array, -BytesPerInt);
duke@435 1992
duke@435 1993 // Initialize i & j
duke@435 1994 __ xorl(i, i); // i = 0;
duke@435 1995 __ movl(j, Address(array, -BytesPerInt)); // j = length(array);
duke@435 1996
duke@435 1997 // Convert j into native byteordering
duke@435 1998 __ bswapl(j);
duke@435 1999
duke@435 2000 // And start
duke@435 2001 Label entry;
duke@435 2002 __ jmp(entry);
duke@435 2003
duke@435 2004 // binary search loop
duke@435 2005 {
duke@435 2006 Label loop;
duke@435 2007 __ bind(loop);
duke@435 2008 // int h = (i + j) >> 1;
duke@435 2009 __ leal(h, Address(i, j, Address::times_1)); // h = i + j;
duke@435 2010 __ sarl(h, 1); // h = (i + j) >> 1;
duke@435 2011 // if (key < array[h].fast_match()) {
duke@435 2012 // j = h;
duke@435 2013 // } else {
duke@435 2014 // i = h;
duke@435 2015 // }
duke@435 2016 // Convert array[h].match to native byte-ordering before compare
duke@435 2017 __ movl(temp, Address(array, h, Address::times_8));
duke@435 2018 __ bswapl(temp);
duke@435 2019 __ cmpl(key, temp);
duke@435 2020 // j = h if (key < array[h].fast_match())
duke@435 2021 __ cmovl(Assembler::less, j, h);
duke@435 2022 // i = h if (key >= array[h].fast_match())
duke@435 2023 __ cmovl(Assembler::greaterEqual, i, h);
duke@435 2024 // while (i+1 < j)
duke@435 2025 __ bind(entry);
duke@435 2026 __ leal(h, Address(i, 1)); // i+1
duke@435 2027 __ cmpl(h, j); // i+1 < j
duke@435 2028 __ jcc(Assembler::less, loop);
duke@435 2029 }
duke@435 2030
duke@435 2031 // end of binary search, result index is i (must check again!)
duke@435 2032 Label default_case;
duke@435 2033 // Convert array[i].match to native byte-ordering before compare
duke@435 2034 __ movl(temp, Address(array, i, Address::times_8));
duke@435 2035 __ bswapl(temp);
duke@435 2036 __ cmpl(key, temp);
duke@435 2037 __ jcc(Assembler::notEqual, default_case);
duke@435 2038
duke@435 2039 // entry found -> j = offset
duke@435 2040 __ movl(j , Address(array, i, Address::times_8, BytesPerInt));
duke@435 2041 __ profile_switch_case(i, key, array);
duke@435 2042 __ bswapl(j);
never@739 2043 __ movl2ptr(j, j);
duke@435 2044 __ load_unsigned_byte(rbx, Address(r13, j, Address::times_1));
never@739 2045 __ addptr(r13, j);
duke@435 2046 __ dispatch_only(vtos);
duke@435 2047
duke@435 2048 // default case -> j = default offset
duke@435 2049 __ bind(default_case);
duke@435 2050 __ profile_switch_default(i);
duke@435 2051 __ movl(j, Address(array, -2 * BytesPerInt));
duke@435 2052 __ bswapl(j);
never@739 2053 __ movl2ptr(j, j);
duke@435 2054 __ load_unsigned_byte(rbx, Address(r13, j, Address::times_1));
never@739 2055 __ addptr(r13, j);
duke@435 2056 __ dispatch_only(vtos);
duke@435 2057 }
duke@435 2058
duke@435 2059
duke@435 2060 void TemplateTable::_return(TosState state) {
duke@435 2061 transition(state, state);
duke@435 2062 assert(_desc->calls_vm(),
duke@435 2063 "inconsistent calls_vm information"); // call in remove_activation
duke@435 2064
duke@435 2065 if (_desc->bytecode() == Bytecodes::_return_register_finalizer) {
duke@435 2066 assert(state == vtos, "only valid state");
never@739 2067 __ movptr(c_rarg1, aaddress(0));
coleenp@548 2068 __ load_klass(rdi, c_rarg1);
stefank@3391 2069 __ movl(rdi, Address(rdi, Klass::access_flags_offset()));
duke@435 2070 __ testl(rdi, JVM_ACC_HAS_FINALIZER);
duke@435 2071 Label skip_register_finalizer;
duke@435 2072 __ jcc(Assembler::zero, skip_register_finalizer);
duke@435 2073
duke@435 2074 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::register_finalizer), c_rarg1);
duke@435 2075
duke@435 2076 __ bind(skip_register_finalizer);
duke@435 2077 }
duke@435 2078
duke@435 2079 __ remove_activation(state, r13);
duke@435 2080 __ jmp(r13);
duke@435 2081 }
duke@435 2082
duke@435 2083 // ----------------------------------------------------------------------------
duke@435 2084 // Volatile variables demand their effects be made known to all CPU's
duke@435 2085 // in order. Store buffers on most chips allow reads & writes to
duke@435 2086 // reorder; the JMM's ReadAfterWrite.java test fails in -Xint mode
duke@435 2087 // without some kind of memory barrier (i.e., it's not sufficient that
duke@435 2088 // the interpreter does not reorder volatile references, the hardware
duke@435 2089 // also must not reorder them).
duke@435 2090 //
duke@435 2091 // According to the new Java Memory Model (JMM):
duke@435 2092 // (1) All volatiles are serialized wrt to each other. ALSO reads &
duke@435 2093 // writes act as aquire & release, so:
duke@435 2094 // (2) A read cannot let unrelated NON-volatile memory refs that
duke@435 2095 // happen after the read float up to before the read. It's OK for
duke@435 2096 // non-volatile memory refs that happen before the volatile read to
duke@435 2097 // float down below it.
duke@435 2098 // (3) Similar a volatile write cannot let unrelated NON-volatile
duke@435 2099 // memory refs that happen BEFORE the write float down to after the
duke@435 2100 // write. It's OK for non-volatile memory refs that happen after the
duke@435 2101 // volatile write to float up before it.
duke@435 2102 //
duke@435 2103 // We only put in barriers around volatile refs (they are expensive),
duke@435 2104 // not _between_ memory refs (that would require us to track the
duke@435 2105 // flavor of the previous memory refs). Requirements (2) and (3)
duke@435 2106 // require some barriers before volatile stores and after volatile
duke@435 2107 // loads. These nearly cover requirement (1) but miss the
duke@435 2108 // volatile-store-volatile-load case. This final case is placed after
duke@435 2109 // volatile-stores although it could just as well go before
duke@435 2110 // volatile-loads.
duke@435 2111 void TemplateTable::volatile_barrier(Assembler::Membar_mask_bits
duke@435 2112 order_constraint) {
duke@435 2113 // Helper function to insert a is-volatile test and memory barrier
duke@435 2114 if (os::is_MP()) { // Not needed on single CPU
duke@435 2115 __ membar(order_constraint);
duke@435 2116 }
duke@435 2117 }
duke@435 2118
jrose@1920 2119 void TemplateTable::resolve_cache_and_index(int byte_no,
jrose@1920 2120 Register result,
jrose@1920 2121 Register Rcache,
jrose@1920 2122 Register index,
jrose@1920 2123 size_t index_size) {
duke@435 2124 const Register temp = rbx;
jrose@1920 2125 assert_different_registers(result, Rcache, index, temp);
jrose@1920 2126
duke@435 2127 Label resolved;
twisti@3969 2128 if (byte_no == f12_oop) {
twisti@3969 2129 // We are resolved if the f1 field contains a non-null object (CallSite, MethodType, etc.)
twisti@3969 2130 // This kind of CP cache entry does not need to match bytecode_1 or bytecode_2, because
jrose@1920 2131 // there is a 1-1 relation between bytecode type and CP entry type.
twisti@3969 2132 // The caller will also load a methodOop from f2.
jrose@1920 2133 assert(result != noreg, ""); //else do cmpptr(Address(...), (int32_t) NULL_WORD)
twisti@3050 2134 __ get_cache_and_index_at_bcp(Rcache, index, 1, index_size);
jrose@1920 2135 __ movptr(result, Address(Rcache, index, Address::times_ptr, constantPoolCacheOopDesc::base_offset() + ConstantPoolCacheEntry::f1_offset()));
jrose@1920 2136 __ testptr(result, result);
twisti@1543 2137 __ jcc(Assembler::notEqual, resolved);
twisti@1543 2138 } else {
jrose@1920 2139 assert(byte_no == f1_byte || byte_no == f2_byte, "byte_no out of range");
jrose@1920 2140 assert(result == noreg, ""); //else change code for setting result
twisti@3050 2141 __ get_cache_and_index_and_bytecode_at_bcp(Rcache, index, temp, byte_no, 1, index_size);
twisti@3050 2142 __ cmpl(temp, (int) bytecode()); // have we resolved this bytecode?
twisti@1543 2143 __ jcc(Assembler::equal, resolved);
twisti@1543 2144 }
duke@435 2145
duke@435 2146 // resolve first time through
duke@435 2147 address entry;
duke@435 2148 switch (bytecode()) {
duke@435 2149 case Bytecodes::_getstatic:
duke@435 2150 case Bytecodes::_putstatic:
duke@435 2151 case Bytecodes::_getfield:
duke@435 2152 case Bytecodes::_putfield:
duke@435 2153 entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_get_put);
duke@435 2154 break;
duke@435 2155 case Bytecodes::_invokevirtual:
duke@435 2156 case Bytecodes::_invokespecial:
duke@435 2157 case Bytecodes::_invokestatic:
duke@435 2158 case Bytecodes::_invokeinterface:
duke@435 2159 entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_invoke);
duke@435 2160 break;
twisti@3969 2161 case Bytecodes::_invokehandle:
twisti@3969 2162 entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_invokehandle);
twisti@3969 2163 break;
twisti@1543 2164 case Bytecodes::_invokedynamic:
twisti@1543 2165 entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_invokedynamic);
twisti@1543 2166 break;
jrose@1957 2167 case Bytecodes::_fast_aldc:
jrose@1957 2168 entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_ldc);
jrose@1957 2169 break;
jrose@1957 2170 case Bytecodes::_fast_aldc_w:
jrose@1957 2171 entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_ldc);
jrose@1957 2172 break;
duke@435 2173 default:
twisti@3969 2174 fatal(err_msg("unexpected bytecode: %s", Bytecodes::name(bytecode())));
duke@435 2175 break;
duke@435 2176 }
duke@435 2177 __ movl(temp, (int) bytecode());
duke@435 2178 __ call_VM(noreg, entry, temp);
duke@435 2179
duke@435 2180 // Update registers with resolved info
jrose@1920 2181 __ get_cache_and_index_at_bcp(Rcache, index, 1, index_size);
jrose@1920 2182 if (result != noreg)
jrose@1920 2183 __ movptr(result, Address(Rcache, index, Address::times_ptr, constantPoolCacheOopDesc::base_offset() + ConstantPoolCacheEntry::f1_offset()));
duke@435 2184 __ bind(resolved);
duke@435 2185 }
duke@435 2186
twisti@3969 2187 // The cache and index registers must be set before call
duke@435 2188 void TemplateTable::load_field_cp_cache_entry(Register obj,
duke@435 2189 Register cache,
duke@435 2190 Register index,
duke@435 2191 Register off,
duke@435 2192 Register flags,
duke@435 2193 bool is_static = false) {
duke@435 2194 assert_different_registers(cache, index, flags, off);
duke@435 2195
duke@435 2196 ByteSize cp_base_offset = constantPoolCacheOopDesc::base_offset();
duke@435 2197 // Field offset
twisti@3969 2198 __ movptr(off, Address(cache, index, Address::times_ptr,
never@739 2199 in_bytes(cp_base_offset +
never@739 2200 ConstantPoolCacheEntry::f2_offset())));
duke@435 2201 // Flags
twisti@3969 2202 __ movl(flags, Address(cache, index, Address::times_ptr,
duke@435 2203 in_bytes(cp_base_offset +
duke@435 2204 ConstantPoolCacheEntry::flags_offset())));
duke@435 2205
duke@435 2206 // klass overwrite register
duke@435 2207 if (is_static) {
twisti@3969 2208 __ movptr(obj, Address(cache, index, Address::times_ptr,
never@739 2209 in_bytes(cp_base_offset +
never@739 2210 ConstantPoolCacheEntry::f1_offset())));
duke@435 2211 }
duke@435 2212 }
duke@435 2213
duke@435 2214 void TemplateTable::load_invoke_cp_cache_entry(int byte_no,
duke@435 2215 Register method,
duke@435 2216 Register itable_index,
duke@435 2217 Register flags,
duke@435 2218 bool is_invokevirtual,
jrose@1920 2219 bool is_invokevfinal, /*unused*/
jrose@1920 2220 bool is_invokedynamic) {
duke@435 2221 // setup registers
duke@435 2222 const Register cache = rcx;
duke@435 2223 const Register index = rdx;
duke@435 2224 assert_different_registers(method, flags);
duke@435 2225 assert_different_registers(method, cache, index);
duke@435 2226 assert_different_registers(itable_index, flags);
duke@435 2227 assert_different_registers(itable_index, cache, index);
duke@435 2228 // determine constant pool cache field offsets
twisti@3969 2229 assert(is_invokevirtual == (byte_no == f2_byte), "is_invokevirtual flag redundant");
duke@435 2230 const int method_offset = in_bytes(
duke@435 2231 constantPoolCacheOopDesc::base_offset() +
twisti@3969 2232 ((byte_no == f2_byte)
duke@435 2233 ? ConstantPoolCacheEntry::f2_offset()
duke@435 2234 : ConstantPoolCacheEntry::f1_offset()));
duke@435 2235 const int flags_offset = in_bytes(constantPoolCacheOopDesc::base_offset() +
duke@435 2236 ConstantPoolCacheEntry::flags_offset());
duke@435 2237 // access constant pool cache fields
duke@435 2238 const int index_offset = in_bytes(constantPoolCacheOopDesc::base_offset() +
duke@435 2239 ConstantPoolCacheEntry::f2_offset());
duke@435 2240
twisti@3969 2241 if (byte_no == f12_oop) {
twisti@3969 2242 // Resolved f1_oop (CallSite, MethodType, etc.) goes into 'itable_index'.
twisti@3969 2243 // Resolved f2_oop (methodOop invoker) will go into 'method' (at index_offset).
twisti@3969 2244 // See ConstantPoolCacheEntry::set_dynamic_call and set_method_handle.
twisti@3969 2245 size_t index_size = (is_invokedynamic ? sizeof(u4) : sizeof(u2));
twisti@3969 2246 resolve_cache_and_index(byte_no, itable_index, cache, index, index_size);
twisti@3969 2247 __ movptr(method, Address(cache, index, Address::times_ptr, index_offset));
twisti@3969 2248 itable_index = noreg; // hack to disable load below
jrose@1920 2249 } else {
jrose@1920 2250 resolve_cache_and_index(byte_no, noreg, cache, index, sizeof(u2));
jrose@1920 2251 __ movptr(method, Address(cache, index, Address::times_ptr, method_offset));
jrose@1920 2252 }
duke@435 2253 if (itable_index != noreg) {
twisti@3969 2254 // pick up itable index from f2 also:
twisti@3969 2255 assert(byte_no == f1_byte, "already picked up f1");
jrose@1920 2256 __ movptr(itable_index, Address(cache, index, Address::times_ptr, index_offset));
duke@435 2257 }
jrose@1920 2258 __ movl(flags, Address(cache, index, Address::times_ptr, flags_offset));
duke@435 2259 }
duke@435 2260
duke@435 2261
duke@435 2262 // The registers cache and index expected to be set before call.
duke@435 2263 // Correct values of the cache and index registers are preserved.
duke@435 2264 void TemplateTable::jvmti_post_field_access(Register cache, Register index,
duke@435 2265 bool is_static, bool has_tos) {
duke@435 2266 // do the JVMTI work here to avoid disturbing the register state below
duke@435 2267 // We use c_rarg registers here because we want to use the register used in
duke@435 2268 // the call to the VM
duke@435 2269 if (JvmtiExport::can_post_field_access()) {
duke@435 2270 // Check to see if a field access watch has been set before we
duke@435 2271 // take the time to call into the VM.
duke@435 2272 Label L1;
duke@435 2273 assert_different_registers(cache, index, rax);
duke@435 2274 __ mov32(rax, ExternalAddress((address) JvmtiExport::get_field_access_count_addr()));
duke@435 2275 __ testl(rax, rax);
duke@435 2276 __ jcc(Assembler::zero, L1);
duke@435 2277
duke@435 2278 __ get_cache_and_index_at_bcp(c_rarg2, c_rarg3, 1);
duke@435 2279
duke@435 2280 // cache entry pointer
never@739 2281 __ addptr(c_rarg2, in_bytes(constantPoolCacheOopDesc::base_offset()));
duke@435 2282 __ shll(c_rarg3, LogBytesPerWord);
never@739 2283 __ addptr(c_rarg2, c_rarg3);
duke@435 2284 if (is_static) {
duke@435 2285 __ xorl(c_rarg1, c_rarg1); // NULL object reference
duke@435 2286 } else {
never@739 2287 __ movptr(c_rarg1, at_tos()); // get object pointer without popping it
duke@435 2288 __ verify_oop(c_rarg1);
duke@435 2289 }
duke@435 2290 // c_rarg1: object pointer or NULL
duke@435 2291 // c_rarg2: cache entry pointer
duke@435 2292 // c_rarg3: jvalue object on the stack
duke@435 2293 __ call_VM(noreg, CAST_FROM_FN_PTR(address,
duke@435 2294 InterpreterRuntime::post_field_access),
duke@435 2295 c_rarg1, c_rarg2, c_rarg3);
duke@435 2296 __ get_cache_and_index_at_bcp(cache, index, 1);
duke@435 2297 __ bind(L1);
duke@435 2298 }
duke@435 2299 }
duke@435 2300
duke@435 2301 void TemplateTable::pop_and_check_object(Register r) {
duke@435 2302 __ pop_ptr(r);
duke@435 2303 __ null_check(r); // for field access must check obj.
duke@435 2304 __ verify_oop(r);
duke@435 2305 }
duke@435 2306
duke@435 2307 void TemplateTable::getfield_or_static(int byte_no, bool is_static) {
duke@435 2308 transition(vtos, vtos);
duke@435 2309
duke@435 2310 const Register cache = rcx;
duke@435 2311 const Register index = rdx;
duke@435 2312 const Register obj = c_rarg3;
duke@435 2313 const Register off = rbx;
duke@435 2314 const Register flags = rax;
duke@435 2315 const Register bc = c_rarg3; // uses same reg as obj, so don't mix them
duke@435 2316
jrose@1920 2317 resolve_cache_and_index(byte_no, noreg, cache, index, sizeof(u2));
duke@435 2318 jvmti_post_field_access(cache, index, is_static, false);
duke@435 2319 load_field_cp_cache_entry(obj, cache, index, off, flags, is_static);
duke@435 2320
duke@435 2321 if (!is_static) {
duke@435 2322 // obj is on the stack
duke@435 2323 pop_and_check_object(obj);
duke@435 2324 }
duke@435 2325
duke@435 2326 const Address field(obj, off, Address::times_1);
duke@435 2327
duke@435 2328 Label Done, notByte, notInt, notShort, notChar,
duke@435 2329 notLong, notFloat, notObj, notDouble;
duke@435 2330
twisti@3969 2331 __ shrl(flags, ConstantPoolCacheEntry::tos_state_shift);
twisti@3969 2332 // Make sure we don't need to mask edx after the above shift
duke@435 2333 assert(btos == 0, "change code, btos != 0");
duke@435 2334
twisti@3969 2335 __ andl(flags, ConstantPoolCacheEntry::tos_state_mask);
duke@435 2336 __ jcc(Assembler::notZero, notByte);
duke@435 2337 // btos
duke@435 2338 __ load_signed_byte(rax, field);
duke@435 2339 __ push(btos);
duke@435 2340 // Rewrite bytecode to be faster
duke@435 2341 if (!is_static) {
duke@435 2342 patch_bytecode(Bytecodes::_fast_bgetfield, bc, rbx);
duke@435 2343 }
duke@435 2344 __ jmp(Done);
duke@435 2345
duke@435 2346 __ bind(notByte);
duke@435 2347 __ cmpl(flags, atos);
duke@435 2348 __ jcc(Assembler::notEqual, notObj);
duke@435 2349 // atos
coleenp@548 2350 __ load_heap_oop(rax, field);
duke@435 2351 __ push(atos);
duke@435 2352 if (!is_static) {
duke@435 2353 patch_bytecode(Bytecodes::_fast_agetfield, bc, rbx);
duke@435 2354 }
duke@435 2355 __ jmp(Done);
duke@435 2356
duke@435 2357 __ bind(notObj);
duke@435 2358 __ cmpl(flags, itos);
duke@435 2359 __ jcc(Assembler::notEqual, notInt);
duke@435 2360 // itos
duke@435 2361 __ movl(rax, field);
duke@435 2362 __ push(itos);
duke@435 2363 // Rewrite bytecode to be faster
duke@435 2364 if (!is_static) {
duke@435 2365 patch_bytecode(Bytecodes::_fast_igetfield, bc, rbx);
duke@435 2366 }
duke@435 2367 __ jmp(Done);
duke@435 2368
duke@435 2369 __ bind(notInt);
duke@435 2370 __ cmpl(flags, ctos);
duke@435 2371 __ jcc(Assembler::notEqual, notChar);
duke@435 2372 // ctos
jrose@1057 2373 __ load_unsigned_short(rax, field);
duke@435 2374 __ push(ctos);
duke@435 2375 // Rewrite bytecode to be faster
duke@435 2376 if (!is_static) {
duke@435 2377 patch_bytecode(Bytecodes::_fast_cgetfield, bc, rbx);
duke@435 2378 }
duke@435 2379 __ jmp(Done);
duke@435 2380
duke@435 2381 __ bind(notChar);
duke@435 2382 __ cmpl(flags, stos);
duke@435 2383 __ jcc(Assembler::notEqual, notShort);
duke@435 2384 // stos
jrose@1057 2385 __ load_signed_short(rax, field);
duke@435 2386 __ push(stos);
duke@435 2387 // Rewrite bytecode to be faster
duke@435 2388 if (!is_static) {
duke@435 2389 patch_bytecode(Bytecodes::_fast_sgetfield, bc, rbx);
duke@435 2390 }
duke@435 2391 __ jmp(Done);
duke@435 2392
duke@435 2393 __ bind(notShort);
duke@435 2394 __ cmpl(flags, ltos);
duke@435 2395 __ jcc(Assembler::notEqual, notLong);
duke@435 2396 // ltos
duke@435 2397 __ movq(rax, field);
duke@435 2398 __ push(ltos);
duke@435 2399 // Rewrite bytecode to be faster
duke@435 2400 if (!is_static) {
duke@435 2401 patch_bytecode(Bytecodes::_fast_lgetfield, bc, rbx);
duke@435 2402 }
duke@435 2403 __ jmp(Done);
duke@435 2404
duke@435 2405 __ bind(notLong);
duke@435 2406 __ cmpl(flags, ftos);
duke@435 2407 __ jcc(Assembler::notEqual, notFloat);
duke@435 2408 // ftos
duke@435 2409 __ movflt(xmm0, field);
duke@435 2410 __ push(ftos);
duke@435 2411 // Rewrite bytecode to be faster
duke@435 2412 if (!is_static) {
duke@435 2413 patch_bytecode(Bytecodes::_fast_fgetfield, bc, rbx);
duke@435 2414 }
duke@435 2415 __ jmp(Done);
duke@435 2416
duke@435 2417 __ bind(notFloat);
duke@435 2418 #ifdef ASSERT
duke@435 2419 __ cmpl(flags, dtos);
duke@435 2420 __ jcc(Assembler::notEqual, notDouble);
duke@435 2421 #endif
duke@435 2422 // dtos
duke@435 2423 __ movdbl(xmm0, field);
duke@435 2424 __ push(dtos);
duke@435 2425 // Rewrite bytecode to be faster
duke@435 2426 if (!is_static) {
duke@435 2427 patch_bytecode(Bytecodes::_fast_dgetfield, bc, rbx);
duke@435 2428 }
duke@435 2429 #ifdef ASSERT
duke@435 2430 __ jmp(Done);
duke@435 2431
duke@435 2432 __ bind(notDouble);
duke@435 2433 __ stop("Bad state");
duke@435 2434 #endif
duke@435 2435
duke@435 2436 __ bind(Done);
duke@435 2437 // [jk] not needed currently
duke@435 2438 // volatile_barrier(Assembler::Membar_mask_bits(Assembler::LoadLoad |
duke@435 2439 // Assembler::LoadStore));
duke@435 2440 }
duke@435 2441
duke@435 2442
duke@435 2443 void TemplateTable::getfield(int byte_no) {
duke@435 2444 getfield_or_static(byte_no, false);
duke@435 2445 }
duke@435 2446
duke@435 2447 void TemplateTable::getstatic(int byte_no) {
duke@435 2448 getfield_or_static(byte_no, true);
duke@435 2449 }
duke@435 2450
duke@435 2451 // The registers cache and index expected to be set before call.
duke@435 2452 // The function may destroy various registers, just not the cache and index registers.
duke@435 2453 void TemplateTable::jvmti_post_field_mod(Register cache, Register index, bool is_static) {
duke@435 2454 transition(vtos, vtos);
duke@435 2455
duke@435 2456 ByteSize cp_base_offset = constantPoolCacheOopDesc::base_offset();
duke@435 2457
duke@435 2458 if (JvmtiExport::can_post_field_modification()) {
duke@435 2459 // Check to see if a field modification watch has been set before
duke@435 2460 // we take the time to call into the VM.
duke@435 2461 Label L1;
duke@435 2462 assert_different_registers(cache, index, rax);
duke@435 2463 __ mov32(rax, ExternalAddress((address)JvmtiExport::get_field_modification_count_addr()));
duke@435 2464 __ testl(rax, rax);
duke@435 2465 __ jcc(Assembler::zero, L1);
duke@435 2466
duke@435 2467 __ get_cache_and_index_at_bcp(c_rarg2, rscratch1, 1);
duke@435 2468
duke@435 2469 if (is_static) {
duke@435 2470 // Life is simple. Null out the object pointer.
duke@435 2471 __ xorl(c_rarg1, c_rarg1);
duke@435 2472 } else {
duke@435 2473 // Life is harder. The stack holds the value on top, followed by
duke@435 2474 // the object. We don't know the size of the value, though; it
duke@435 2475 // could be one or two words depending on its type. As a result,
duke@435 2476 // we must find the type to determine where the object is.
duke@435 2477 __ movl(c_rarg3, Address(c_rarg2, rscratch1,
duke@435 2478 Address::times_8,
duke@435 2479 in_bytes(cp_base_offset +
duke@435 2480 ConstantPoolCacheEntry::flags_offset())));
twisti@3969 2481 __ shrl(c_rarg3, ConstantPoolCacheEntry::tos_state_shift);
twisti@3969 2482 // Make sure we don't need to mask rcx after the above shift
twisti@3969 2483 ConstantPoolCacheEntry::verify_tos_state_shift();
never@739 2484 __ movptr(c_rarg1, at_tos_p1()); // initially assume a one word jvalue
duke@435 2485 __ cmpl(c_rarg3, ltos);
never@739 2486 __ cmovptr(Assembler::equal,
never@739 2487 c_rarg1, at_tos_p2()); // ltos (two word jvalue)
duke@435 2488 __ cmpl(c_rarg3, dtos);
never@739 2489 __ cmovptr(Assembler::equal,
never@739 2490 c_rarg1, at_tos_p2()); // dtos (two word jvalue)
duke@435 2491 }
duke@435 2492 // cache entry pointer
never@739 2493 __ addptr(c_rarg2, in_bytes(cp_base_offset));
duke@435 2494 __ shll(rscratch1, LogBytesPerWord);
never@739 2495 __ addptr(c_rarg2, rscratch1);
duke@435 2496 // object (tos)
never@739 2497 __ mov(c_rarg3, rsp);
duke@435 2498 // c_rarg1: object pointer set up above (NULL if static)
duke@435 2499 // c_rarg2: cache entry pointer
duke@435 2500 // c_rarg3: jvalue object on the stack
duke@435 2501 __ call_VM(noreg,
duke@435 2502 CAST_FROM_FN_PTR(address,
duke@435 2503 InterpreterRuntime::post_field_modification),
duke@435 2504 c_rarg1, c_rarg2, c_rarg3);
duke@435 2505 __ get_cache_and_index_at_bcp(cache, index, 1);
duke@435 2506 __ bind(L1);
duke@435 2507 }
duke@435 2508 }
duke@435 2509
duke@435 2510 void TemplateTable::putfield_or_static(int byte_no, bool is_static) {
duke@435 2511 transition(vtos, vtos);
duke@435 2512
duke@435 2513 const Register cache = rcx;
duke@435 2514 const Register index = rdx;
duke@435 2515 const Register obj = rcx;
duke@435 2516 const Register off = rbx;
duke@435 2517 const Register flags = rax;
duke@435 2518 const Register bc = c_rarg3;
duke@435 2519
jrose@1920 2520 resolve_cache_and_index(byte_no, noreg, cache, index, sizeof(u2));
duke@435 2521 jvmti_post_field_mod(cache, index, is_static);
duke@435 2522 load_field_cp_cache_entry(obj, cache, index, off, flags, is_static);
duke@435 2523
duke@435 2524 // [jk] not needed currently
duke@435 2525 // volatile_barrier(Assembler::Membar_mask_bits(Assembler::LoadStore |
duke@435 2526 // Assembler::StoreStore));
duke@435 2527
duke@435 2528 Label notVolatile, Done;
duke@435 2529 __ movl(rdx, flags);
twisti@3969 2530 __ shrl(rdx, ConstantPoolCacheEntry::is_volatile_shift);
duke@435 2531 __ andl(rdx, 0x1);
duke@435 2532
duke@435 2533 // field address
duke@435 2534 const Address field(obj, off, Address::times_1);
duke@435 2535
duke@435 2536 Label notByte, notInt, notShort, notChar,
duke@435 2537 notLong, notFloat, notObj, notDouble;
duke@435 2538
twisti@3969 2539 __ shrl(flags, ConstantPoolCacheEntry::tos_state_shift);
duke@435 2540
duke@435 2541 assert(btos == 0, "change code, btos != 0");
twisti@3969 2542 __ andl(flags, ConstantPoolCacheEntry::tos_state_mask);
duke@435 2543 __ jcc(Assembler::notZero, notByte);
twisti@3050 2544
duke@435 2545 // btos
twisti@3050 2546 {
twisti@3050 2547 __ pop(btos);
twisti@3050 2548 if (!is_static) pop_and_check_object(obj);
twisti@3050 2549 __ movb(field, rax);
twisti@3050 2550 if (!is_static) {
twisti@3050 2551 patch_bytecode(Bytecodes::_fast_bputfield, bc, rbx, true, byte_no);
twisti@3050 2552 }
twisti@3050 2553 __ jmp(Done);
duke@435 2554 }
duke@435 2555
duke@435 2556 __ bind(notByte);
duke@435 2557 __ cmpl(flags, atos);
duke@435 2558 __ jcc(Assembler::notEqual, notObj);
twisti@3050 2559
duke@435 2560 // atos
twisti@3050 2561 {
twisti@3050 2562 __ pop(atos);
twisti@3050 2563 if (!is_static) pop_and_check_object(obj);
twisti@3050 2564 // Store into the field
twisti@3050 2565 do_oop_store(_masm, field, rax, _bs->kind(), false);
twisti@3050 2566 if (!is_static) {
twisti@3050 2567 patch_bytecode(Bytecodes::_fast_aputfield, bc, rbx, true, byte_no);
twisti@3050 2568 }
twisti@3050 2569 __ jmp(Done);
duke@435 2570 }
duke@435 2571
duke@435 2572 __ bind(notObj);
duke@435 2573 __ cmpl(flags, itos);
duke@435 2574 __ jcc(Assembler::notEqual, notInt);
twisti@3050 2575
duke@435 2576 // itos
twisti@3050 2577 {
twisti@3050 2578 __ pop(itos);
twisti@3050 2579 if (!is_static) pop_and_check_object(obj);
twisti@3050 2580 __ movl(field, rax);
twisti@3050 2581 if (!is_static) {
twisti@3050 2582 patch_bytecode(Bytecodes::_fast_iputfield, bc, rbx, true, byte_no);
twisti@3050 2583 }
twisti@3050 2584 __ jmp(Done);
duke@435 2585 }
duke@435 2586
duke@435 2587 __ bind(notInt);
duke@435 2588 __ cmpl(flags, ctos);
duke@435 2589 __ jcc(Assembler::notEqual, notChar);
twisti@3050 2590
duke@435 2591 // ctos
twisti@3050 2592 {
twisti@3050 2593 __ pop(ctos);
twisti@3050 2594 if (!is_static) pop_and_check_object(obj);
twisti@3050 2595 __ movw(field, rax);
twisti@3050 2596 if (!is_static) {
twisti@3050 2597 patch_bytecode(Bytecodes::_fast_cputfield, bc, rbx, true, byte_no);
twisti@3050 2598 }
twisti@3050 2599 __ jmp(Done);
duke@435 2600 }
duke@435 2601
duke@435 2602 __ bind(notChar);
duke@435 2603 __ cmpl(flags, stos);
duke@435 2604 __ jcc(Assembler::notEqual, notShort);
twisti@3050 2605
duke@435 2606 // stos
twisti@3050 2607 {
twisti@3050 2608 __ pop(stos);
twisti@3050 2609 if (!is_static) pop_and_check_object(obj);
twisti@3050 2610 __ movw(field, rax);
twisti@3050 2611 if (!is_static) {
twisti@3050 2612 patch_bytecode(Bytecodes::_fast_sputfield, bc, rbx, true, byte_no);
twisti@3050 2613 }
twisti@3050 2614 __ jmp(Done);
duke@435 2615 }
duke@435 2616
duke@435 2617 __ bind(notShort);
duke@435 2618 __ cmpl(flags, ltos);
duke@435 2619 __ jcc(Assembler::notEqual, notLong);
twisti@3050 2620
duke@435 2621 // ltos
twisti@3050 2622 {
twisti@3050 2623 __ pop(ltos);
twisti@3050 2624 if (!is_static) pop_and_check_object(obj);
twisti@3050 2625 __ movq(field, rax);
twisti@3050 2626 if (!is_static) {
twisti@3050 2627 patch_bytecode(Bytecodes::_fast_lputfield, bc, rbx, true, byte_no);
twisti@3050 2628 }
twisti@3050 2629 __ jmp(Done);
duke@435 2630 }
duke@435 2631
duke@435 2632 __ bind(notLong);
duke@435 2633 __ cmpl(flags, ftos);
duke@435 2634 __ jcc(Assembler::notEqual, notFloat);
twisti@3050 2635
duke@435 2636 // ftos
twisti@3050 2637 {
twisti@3050 2638 __ pop(ftos);
twisti@3050 2639 if (!is_static) pop_and_check_object(obj);
twisti@3050 2640 __ movflt(field, xmm0);
twisti@3050 2641 if (!is_static) {
twisti@3050 2642 patch_bytecode(Bytecodes::_fast_fputfield, bc, rbx, true, byte_no);
twisti@3050 2643 }
twisti@3050 2644 __ jmp(Done);
duke@435 2645 }
duke@435 2646
duke@435 2647 __ bind(notFloat);
duke@435 2648 #ifdef ASSERT
duke@435 2649 __ cmpl(flags, dtos);
duke@435 2650 __ jcc(Assembler::notEqual, notDouble);
duke@435 2651 #endif
twisti@3050 2652
duke@435 2653 // dtos
twisti@3050 2654 {
twisti@3050 2655 __ pop(dtos);
twisti@3050 2656 if (!is_static) pop_and_check_object(obj);
twisti@3050 2657 __ movdbl(field, xmm0);
twisti@3050 2658 if (!is_static) {
twisti@3050 2659 patch_bytecode(Bytecodes::_fast_dputfield, bc, rbx, true, byte_no);
twisti@3050 2660 }
duke@435 2661 }
duke@435 2662
duke@435 2663 #ifdef ASSERT
duke@435 2664 __ jmp(Done);
duke@435 2665
duke@435 2666 __ bind(notDouble);
duke@435 2667 __ stop("Bad state");
duke@435 2668 #endif
duke@435 2669
duke@435 2670 __ bind(Done);
twisti@3050 2671
duke@435 2672 // Check for volatile store
duke@435 2673 __ testl(rdx, rdx);
duke@435 2674 __ jcc(Assembler::zero, notVolatile);
duke@435 2675 volatile_barrier(Assembler::Membar_mask_bits(Assembler::StoreLoad |
duke@435 2676 Assembler::StoreStore));
duke@435 2677 __ bind(notVolatile);
duke@435 2678 }
duke@435 2679
duke@435 2680 void TemplateTable::putfield(int byte_no) {
duke@435 2681 putfield_or_static(byte_no, false);
duke@435 2682 }
duke@435 2683
duke@435 2684 void TemplateTable::putstatic(int byte_no) {
duke@435 2685 putfield_or_static(byte_no, true);
duke@435 2686 }
duke@435 2687
duke@435 2688 void TemplateTable::jvmti_post_fast_field_mod() {
duke@435 2689 if (JvmtiExport::can_post_field_modification()) {
duke@435 2690 // Check to see if a field modification watch has been set before
duke@435 2691 // we take the time to call into the VM.
duke@435 2692 Label L2;
duke@435 2693 __ mov32(c_rarg3, ExternalAddress((address)JvmtiExport::get_field_modification_count_addr()));
duke@435 2694 __ testl(c_rarg3, c_rarg3);
duke@435 2695 __ jcc(Assembler::zero, L2);
duke@435 2696 __ pop_ptr(rbx); // copy the object pointer from tos
duke@435 2697 __ verify_oop(rbx);
duke@435 2698 __ push_ptr(rbx); // put the object pointer back on tos
coleenp@3698 2699 // Save tos values before call_VM() clobbers them. Since we have
coleenp@3698 2700 // to do it for every data type, we use the saved values as the
coleenp@3698 2701 // jvalue object.
duke@435 2702 switch (bytecode()) { // load values into the jvalue object
coleenp@3698 2703 case Bytecodes::_fast_aputfield: __ push_ptr(rax); break;
coleenp@3698 2704 case Bytecodes::_fast_bputfield: // fall through
duke@435 2705 case Bytecodes::_fast_sputfield: // fall through
coleenp@3698 2706 case Bytecodes::_fast_cputfield: // fall through
coleenp@3698 2707 case Bytecodes::_fast_iputfield: __ push_i(rax); break;
coleenp@3698 2708 case Bytecodes::_fast_dputfield: __ push_d(); break;
coleenp@3698 2709 case Bytecodes::_fast_fputfield: __ push_f(); break;
coleenp@3698 2710 case Bytecodes::_fast_lputfield: __ push_l(rax); break;
coleenp@3698 2711
duke@435 2712 default:
duke@435 2713 ShouldNotReachHere();
duke@435 2714 }
coleenp@3698 2715 __ mov(c_rarg3, rsp); // points to jvalue on the stack
duke@435 2716 // access constant pool cache entry
duke@435 2717 __ get_cache_entry_pointer_at_bcp(c_rarg2, rax, 1);
duke@435 2718 __ verify_oop(rbx);
duke@435 2719 // rbx: object pointer copied above
duke@435 2720 // c_rarg2: cache entry pointer
duke@435 2721 // c_rarg3: jvalue object on the stack
duke@435 2722 __ call_VM(noreg,
duke@435 2723 CAST_FROM_FN_PTR(address,
duke@435 2724 InterpreterRuntime::post_field_modification),
duke@435 2725 rbx, c_rarg2, c_rarg3);
coleenp@3698 2726
coleenp@3698 2727 switch (bytecode()) { // restore tos values
coleenp@3698 2728 case Bytecodes::_fast_aputfield: __ pop_ptr(rax); break;
coleenp@3698 2729 case Bytecodes::_fast_bputfield: // fall through
coleenp@3698 2730 case Bytecodes::_fast_sputfield: // fall through
coleenp@3698 2731 case Bytecodes::_fast_cputfield: // fall through
coleenp@3698 2732 case Bytecodes::_fast_iputfield: __ pop_i(rax); break;
coleenp@3698 2733 case Bytecodes::_fast_dputfield: __ pop_d(); break;
coleenp@3698 2734 case Bytecodes::_fast_fputfield: __ pop_f(); break;
coleenp@3698 2735 case Bytecodes::_fast_lputfield: __ pop_l(rax); break;
coleenp@3698 2736 }
duke@435 2737 __ bind(L2);
duke@435 2738 }
duke@435 2739 }
duke@435 2740
duke@435 2741 void TemplateTable::fast_storefield(TosState state) {
duke@435 2742 transition(state, vtos);
duke@435 2743
duke@435 2744 ByteSize base = constantPoolCacheOopDesc::base_offset();
duke@435 2745
duke@435 2746 jvmti_post_fast_field_mod();
duke@435 2747
duke@435 2748 // access constant pool cache
duke@435 2749 __ get_cache_and_index_at_bcp(rcx, rbx, 1);
duke@435 2750
duke@435 2751 // test for volatile with rdx
duke@435 2752 __ movl(rdx, Address(rcx, rbx, Address::times_8,
duke@435 2753 in_bytes(base +
duke@435 2754 ConstantPoolCacheEntry::flags_offset())));
duke@435 2755
duke@435 2756 // replace index with field offset from cache entry
never@739 2757 __ movptr(rbx, Address(rcx, rbx, Address::times_8,
never@739 2758 in_bytes(base + ConstantPoolCacheEntry::f2_offset())));
duke@435 2759
duke@435 2760 // [jk] not needed currently
duke@435 2761 // volatile_barrier(Assembler::Membar_mask_bits(Assembler::LoadStore |
duke@435 2762 // Assembler::StoreStore));
duke@435 2763
duke@435 2764 Label notVolatile;
twisti@3969 2765 __ shrl(rdx, ConstantPoolCacheEntry::is_volatile_shift);
duke@435 2766 __ andl(rdx, 0x1);
duke@435 2767
duke@435 2768 // Get object from stack
duke@435 2769 pop_and_check_object(rcx);
duke@435 2770
duke@435 2771 // field address
duke@435 2772 const Address field(rcx, rbx, Address::times_1);
duke@435 2773
duke@435 2774 // access field
duke@435 2775 switch (bytecode()) {
duke@435 2776 case Bytecodes::_fast_aputfield:
ysr@777 2777 do_oop_store(_masm, field, rax, _bs->kind(), false);
duke@435 2778 break;
duke@435 2779 case Bytecodes::_fast_lputfield:
duke@435 2780 __ movq(field, rax);
duke@435 2781 break;
duke@435 2782 case Bytecodes::_fast_iputfield:
duke@435 2783 __ movl(field, rax);
duke@435 2784 break;
duke@435 2785 case Bytecodes::_fast_bputfield:
duke@435 2786 __ movb(field, rax);
duke@435 2787 break;
duke@435 2788 case Bytecodes::_fast_sputfield:
duke@435 2789 // fall through
duke@435 2790 case Bytecodes::_fast_cputfield:
duke@435 2791 __ movw(field, rax);
duke@435 2792 break;
duke@435 2793 case Bytecodes::_fast_fputfield:
duke@435 2794 __ movflt(field, xmm0);
duke@435 2795 break;
duke@435 2796 case Bytecodes::_fast_dputfield:
duke@435 2797 __ movdbl(field, xmm0);
duke@435 2798 break;
duke@435 2799 default:
duke@435 2800 ShouldNotReachHere();
duke@435 2801 }
duke@435 2802
duke@435 2803 // Check for volatile store
duke@435 2804 __ testl(rdx, rdx);
duke@435 2805 __ jcc(Assembler::zero, notVolatile);
duke@435 2806 volatile_barrier(Assembler::Membar_mask_bits(Assembler::StoreLoad |
duke@435 2807 Assembler::StoreStore));
duke@435 2808 __ bind(notVolatile);
duke@435 2809 }
duke@435 2810
duke@435 2811
duke@435 2812 void TemplateTable::fast_accessfield(TosState state) {
duke@435 2813 transition(atos, state);
duke@435 2814
duke@435 2815 // Do the JVMTI work here to avoid disturbing the register state below
duke@435 2816 if (JvmtiExport::can_post_field_access()) {
duke@435 2817 // Check to see if a field access watch has been set before we
duke@435 2818 // take the time to call into the VM.
duke@435 2819 Label L1;
duke@435 2820 __ mov32(rcx, ExternalAddress((address) JvmtiExport::get_field_access_count_addr()));
duke@435 2821 __ testl(rcx, rcx);
duke@435 2822 __ jcc(Assembler::zero, L1);
duke@435 2823 // access constant pool cache entry
duke@435 2824 __ get_cache_entry_pointer_at_bcp(c_rarg2, rcx, 1);
coleenp@548 2825 __ verify_oop(rax);
coleenp@2318 2826 __ push_ptr(rax); // save object pointer before call_VM() clobbers it
never@739 2827 __ mov(c_rarg1, rax);
duke@435 2828 // c_rarg1: object pointer copied above
duke@435 2829 // c_rarg2: cache entry pointer
duke@435 2830 __ call_VM(noreg,
duke@435 2831 CAST_FROM_FN_PTR(address,
duke@435 2832 InterpreterRuntime::post_field_access),
duke@435 2833 c_rarg1, c_rarg2);
coleenp@2318 2834 __ pop_ptr(rax); // restore object pointer
duke@435 2835 __ bind(L1);
duke@435 2836 }
duke@435 2837
duke@435 2838 // access constant pool cache
duke@435 2839 __ get_cache_and_index_at_bcp(rcx, rbx, 1);
duke@435 2840 // replace index with field offset from cache entry
duke@435 2841 // [jk] not needed currently
duke@435 2842 // if (os::is_MP()) {
duke@435 2843 // __ movl(rdx, Address(rcx, rbx, Address::times_8,
duke@435 2844 // in_bytes(constantPoolCacheOopDesc::base_offset() +
duke@435 2845 // ConstantPoolCacheEntry::flags_offset())));
twisti@3969 2846 // __ shrl(rdx, ConstantPoolCacheEntry::is_volatile_shift);
duke@435 2847 // __ andl(rdx, 0x1);
duke@435 2848 // }
never@739 2849 __ movptr(rbx, Address(rcx, rbx, Address::times_8,
never@739 2850 in_bytes(constantPoolCacheOopDesc::base_offset() +
never@739 2851 ConstantPoolCacheEntry::f2_offset())));
duke@435 2852
duke@435 2853 // rax: object
duke@435 2854 __ verify_oop(rax);
duke@435 2855 __ null_check(rax);
duke@435 2856 Address field(rax, rbx, Address::times_1);
duke@435 2857
duke@435 2858 // access field
duke@435 2859 switch (bytecode()) {
duke@435 2860 case Bytecodes::_fast_agetfield:
coleenp@548 2861 __ load_heap_oop(rax, field);
duke@435 2862 __ verify_oop(rax);
duke@435 2863 break;
duke@435 2864 case Bytecodes::_fast_lgetfield:
duke@435 2865 __ movq(rax, field);
duke@435 2866 break;
duke@435 2867 case Bytecodes::_fast_igetfield:
duke@435 2868 __ movl(rax, field);
duke@435 2869 break;
duke@435 2870 case Bytecodes::_fast_bgetfield:
duke@435 2871 __ movsbl(rax, field);
duke@435 2872 break;
duke@435 2873 case Bytecodes::_fast_sgetfield:
jrose@1057 2874 __ load_signed_short(rax, field);
duke@435 2875 break;
duke@435 2876 case Bytecodes::_fast_cgetfield:
jrose@1057 2877 __ load_unsigned_short(rax, field);
duke@435 2878 break;
duke@435 2879 case Bytecodes::_fast_fgetfield:
duke@435 2880 __ movflt(xmm0, field);
duke@435 2881 break;
duke@435 2882 case Bytecodes::_fast_dgetfield:
duke@435 2883 __ movdbl(xmm0, field);
duke@435 2884 break;
duke@435 2885 default:
duke@435 2886 ShouldNotReachHere();
duke@435 2887 }
duke@435 2888 // [jk] not needed currently
duke@435 2889 // if (os::is_MP()) {
duke@435 2890 // Label notVolatile;
duke@435 2891 // __ testl(rdx, rdx);
duke@435 2892 // __ jcc(Assembler::zero, notVolatile);
duke@435 2893 // __ membar(Assembler::LoadLoad);
duke@435 2894 // __ bind(notVolatile);
duke@435 2895 //};
duke@435 2896 }
duke@435 2897
duke@435 2898 void TemplateTable::fast_xaccess(TosState state) {
duke@435 2899 transition(vtos, state);
duke@435 2900
duke@435 2901 // get receiver
never@739 2902 __ movptr(rax, aaddress(0));
duke@435 2903 // access constant pool cache
duke@435 2904 __ get_cache_and_index_at_bcp(rcx, rdx, 2);
never@739 2905 __ movptr(rbx,
never@739 2906 Address(rcx, rdx, Address::times_8,
never@739 2907 in_bytes(constantPoolCacheOopDesc::base_offset() +
never@739 2908 ConstantPoolCacheEntry::f2_offset())));
duke@435 2909 // make sure exception is reported in correct bcp range (getfield is
duke@435 2910 // next instruction)
never@739 2911 __ increment(r13);
duke@435 2912 __ null_check(rax);
duke@435 2913 switch (state) {
duke@435 2914 case itos:
duke@435 2915 __ movl(rax, Address(rax, rbx, Address::times_1));
duke@435 2916 break;
duke@435 2917 case atos:
coleenp@548 2918 __ load_heap_oop(rax, Address(rax, rbx, Address::times_1));
duke@435 2919 __ verify_oop(rax);
duke@435 2920 break;
duke@435 2921 case ftos:
duke@435 2922 __ movflt(xmm0, Address(rax, rbx, Address::times_1));
duke@435 2923 break;
duke@435 2924 default:
duke@435 2925 ShouldNotReachHere();
duke@435 2926 }
duke@435 2927
duke@435 2928 // [jk] not needed currently
duke@435 2929 // if (os::is_MP()) {
duke@435 2930 // Label notVolatile;
duke@435 2931 // __ movl(rdx, Address(rcx, rdx, Address::times_8,
duke@435 2932 // in_bytes(constantPoolCacheOopDesc::base_offset() +
duke@435 2933 // ConstantPoolCacheEntry::flags_offset())));
twisti@3969 2934 // __ shrl(rdx, ConstantPoolCacheEntry::is_volatile_shift);
duke@435 2935 // __ testl(rdx, 0x1);
duke@435 2936 // __ jcc(Assembler::zero, notVolatile);
duke@435 2937 // __ membar(Assembler::LoadLoad);
duke@435 2938 // __ bind(notVolatile);
duke@435 2939 // }
duke@435 2940
never@739 2941 __ decrement(r13);
duke@435 2942 }
duke@435 2943
duke@435 2944
duke@435 2945
duke@435 2946 //-----------------------------------------------------------------------------
duke@435 2947 // Calls
duke@435 2948
duke@435 2949 void TemplateTable::count_calls(Register method, Register temp) {
duke@435 2950 // implemented elsewhere
duke@435 2951 ShouldNotReachHere();
duke@435 2952 }
duke@435 2953
twisti@3969 2954 void TemplateTable::prepare_invoke(int byte_no,
twisti@3969 2955 Register method, // linked method (or i-klass)
twisti@3969 2956 Register index, // itable index, MethodType, etc.
twisti@3969 2957 Register recv, // if caller wants to see it
twisti@3969 2958 Register flags // if caller wants to test it
twisti@3969 2959 ) {
duke@435 2960 // determine flags
twisti@3969 2961 const Bytecodes::Code code = bytecode();
duke@435 2962 const bool is_invokeinterface = code == Bytecodes::_invokeinterface;
twisti@1543 2963 const bool is_invokedynamic = code == Bytecodes::_invokedynamic;
twisti@3969 2964 const bool is_invokehandle = code == Bytecodes::_invokehandle;
duke@435 2965 const bool is_invokevirtual = code == Bytecodes::_invokevirtual;
duke@435 2966 const bool is_invokespecial = code == Bytecodes::_invokespecial;
twisti@3969 2967 const bool load_receiver = (recv != noreg);
twisti@3969 2968 const bool save_flags = (flags != noreg);
twisti@3969 2969 assert(load_receiver == (code != Bytecodes::_invokestatic && code != Bytecodes::_invokedynamic), "");
twisti@3969 2970 assert(save_flags == (is_invokeinterface || is_invokevirtual), "need flags for vfinal");
twisti@3969 2971 assert(flags == noreg || flags == rdx, "");
twisti@3969 2972 assert(recv == noreg || recv == rcx, "");
twisti@3969 2973
duke@435 2974 // setup registers & access constant pool cache
twisti@3969 2975 if (recv == noreg) recv = rcx;
twisti@3969 2976 if (flags == noreg) flags = rdx;
duke@435 2977 assert_different_registers(method, index, recv, flags);
duke@435 2978
duke@435 2979 // save 'interpreter return address'
duke@435 2980 __ save_bcp();
duke@435 2981
jrose@1920 2982 load_invoke_cp_cache_entry(byte_no, method, index, flags, is_invokevirtual, false, is_invokedynamic);
duke@435 2983
twisti@3969 2984 // maybe push appendix to arguments (just before return address)
twisti@3969 2985 if (is_invokedynamic || is_invokehandle) {
twisti@3969 2986 Label L_no_push;
twisti@3969 2987 __ verify_oop(index);
twisti@3969 2988 __ testl(flags, (1 << ConstantPoolCacheEntry::has_appendix_shift));
twisti@3969 2989 __ jccb(Assembler::zero, L_no_push);
twisti@3969 2990 // Push the appendix as a trailing parameter.
twisti@3969 2991 // This must be done before we get the receiver,
twisti@3969 2992 // since the parameter_size includes it.
twisti@3969 2993 __ push(index); // push appendix (MethodType, CallSite, etc.)
twisti@3969 2994 __ bind(L_no_push);
twisti@3969 2995 }
twisti@3969 2996
twisti@3969 2997 // load receiver if needed (after appendix is pushed so parameter size is correct)
twisti@3969 2998 // Note: no return address pushed yet
duke@435 2999 if (load_receiver) {
duke@435 3000 __ movl(recv, flags);
twisti@3969 3001 __ andl(recv, ConstantPoolCacheEntry::parameter_size_mask);
twisti@3969 3002 const int no_return_pc_pushed_yet = -1; // argument slot correction before we push return address
twisti@3969 3003 const int receiver_is_at_end = -1; // back off one slot to get receiver
twisti@3969 3004 Address recv_addr = __ argument_address(recv, no_return_pc_pushed_yet + receiver_is_at_end);
twisti@1739 3005 __ movptr(recv, recv_addr);
twisti@1739 3006 __ verify_oop(recv);
duke@435 3007 }
duke@435 3008
duke@435 3009 if (save_flags) {
duke@435 3010 __ movl(r13, flags);
duke@435 3011 }
duke@435 3012
duke@435 3013 // compute return type
twisti@3969 3014 __ shrl(flags, ConstantPoolCacheEntry::tos_state_shift);
twisti@3969 3015 // Make sure we don't need to mask flags after the above shift
twisti@3969 3016 ConstantPoolCacheEntry::verify_tos_state_shift();
duke@435 3017 // load return address
duke@435 3018 {
twisti@3969 3019 const address table_addr = (is_invokeinterface || is_invokedynamic) ?
twisti@3969 3020 (address)Interpreter::return_5_addrs_by_index_table() :
twisti@3969 3021 (address)Interpreter::return_3_addrs_by_index_table();
twisti@1543 3022 ExternalAddress table(table_addr);
twisti@1543 3023 __ lea(rscratch1, table);
twisti@1543 3024 __ movptr(flags, Address(rscratch1, flags, Address::times_ptr));
duke@435 3025 }
duke@435 3026
duke@435 3027 // push return address
never@739 3028 __ push(flags);
duke@435 3029
twisti@3969 3030 // Restore flags value from the constant pool cache, and restore rsi
duke@435 3031 // for later null checks. r13 is the bytecode pointer
duke@435 3032 if (save_flags) {
duke@435 3033 __ movl(flags, r13);
duke@435 3034 __ restore_bcp();
duke@435 3035 }
duke@435 3036 }
duke@435 3037
duke@435 3038
duke@435 3039 void TemplateTable::invokevirtual_helper(Register index,
duke@435 3040 Register recv,
duke@435 3041 Register flags) {
iveresov@2138 3042 // Uses temporary registers rax, rdx
iveresov@2138 3043 assert_different_registers(index, recv, rax, rdx);
twisti@3969 3044 assert(index == rbx, "");
twisti@3969 3045 assert(recv == rcx, "");
duke@435 3046
duke@435 3047 // Test for an invoke of a final method
duke@435 3048 Label notFinal;
duke@435 3049 __ movl(rax, flags);
twisti@3969 3050 __ andl(rax, (1 << ConstantPoolCacheEntry::is_vfinal_shift));
duke@435 3051 __ jcc(Assembler::zero, notFinal);
duke@435 3052
duke@435 3053 const Register method = index; // method must be rbx
duke@435 3054 assert(method == rbx,
duke@435 3055 "methodOop must be rbx for interpreter calling convention");
duke@435 3056
duke@435 3057 // do the call - the index is actually the method to call
twisti@3969 3058 // that is, f2 is a vtable index if !is_vfinal, else f2 is a methodOop
duke@435 3059 __ verify_oop(method);
duke@435 3060
duke@435 3061 // It's final, need a null check here!
duke@435 3062 __ null_check(recv);
duke@435 3063
duke@435 3064 // profile this call
duke@435 3065 __ profile_final_call(rax);
duke@435 3066
duke@435 3067 __ jump_from_interpreted(method, rax);
duke@435 3068
duke@435 3069 __ bind(notFinal);
duke@435 3070
duke@435 3071 // get receiver klass
duke@435 3072 __ null_check(recv, oopDesc::klass_offset_in_bytes());
coleenp@548 3073 __ load_klass(rax, recv);
duke@435 3074 __ verify_oop(rax);
duke@435 3075
duke@435 3076 // profile this call
duke@435 3077 __ profile_virtual_call(rax, r14, rdx);
duke@435 3078
duke@435 3079 // get target methodOop & entry point
twisti@3969 3080 __ lookup_virtual_method(rax, index, method);
duke@435 3081 __ jump_from_interpreted(method, rdx);
duke@435 3082 }
duke@435 3083
duke@435 3084
duke@435 3085 void TemplateTable::invokevirtual(int byte_no) {
duke@435 3086 transition(vtos, vtos);
jrose@1920 3087 assert(byte_no == f2_byte, "use this argument");
twisti@3969 3088 prepare_invoke(byte_no,
twisti@3969 3089 rbx, // method or vtable index
twisti@3969 3090 noreg, // unused itable index
twisti@3969 3091 rcx, rdx); // recv, flags
duke@435 3092
duke@435 3093 // rbx: index
duke@435 3094 // rcx: receiver
duke@435 3095 // rdx: flags
duke@435 3096
duke@435 3097 invokevirtual_helper(rbx, rcx, rdx);
duke@435 3098 }
duke@435 3099
duke@435 3100
duke@435 3101 void TemplateTable::invokespecial(int byte_no) {
duke@435 3102 transition(vtos, vtos);
jrose@1920 3103 assert(byte_no == f1_byte, "use this argument");
twisti@3969 3104 prepare_invoke(byte_no, rbx, noreg, // get f1 methodOop
twisti@3969 3105 rcx); // get receiver also for null check
twisti@3969 3106 __ verify_oop(rcx);
twisti@3969 3107 __ null_check(rcx);
duke@435 3108 // do the call
duke@435 3109 __ verify_oop(rbx);
duke@435 3110 __ profile_call(rax);
duke@435 3111 __ jump_from_interpreted(rbx, rax);
duke@435 3112 }
duke@435 3113
duke@435 3114
duke@435 3115 void TemplateTable::invokestatic(int byte_no) {
duke@435 3116 transition(vtos, vtos);
jrose@1920 3117 assert(byte_no == f1_byte, "use this argument");
twisti@3969 3118 prepare_invoke(byte_no, rbx); // get f1 methodOop
duke@435 3119 // do the call
duke@435 3120 __ verify_oop(rbx);
duke@435 3121 __ profile_call(rax);
duke@435 3122 __ jump_from_interpreted(rbx, rax);
duke@435 3123 }
duke@435 3124
duke@435 3125 void TemplateTable::fast_invokevfinal(int byte_no) {
duke@435 3126 transition(vtos, vtos);
jrose@1920 3127 assert(byte_no == f2_byte, "use this argument");
duke@435 3128 __ stop("fast_invokevfinal not used on amd64");
duke@435 3129 }
duke@435 3130
duke@435 3131 void TemplateTable::invokeinterface(int byte_no) {
duke@435 3132 transition(vtos, vtos);
jrose@1920 3133 assert(byte_no == f1_byte, "use this argument");
twisti@3969 3134 prepare_invoke(byte_no, rax, rbx, // get f1 klassOop, f2 itable index
twisti@3969 3135 rcx, rdx); // recv, flags
twisti@3969 3136
twisti@3969 3137 // rax: interface klass (from f1)
twisti@3969 3138 // rbx: itable index (from f2)
duke@435 3139 // rcx: receiver
duke@435 3140 // rdx: flags
duke@435 3141
duke@435 3142 // Special case of invokeinterface called for virtual method of
duke@435 3143 // java.lang.Object. See cpCacheOop.cpp for details.
duke@435 3144 // This code isn't produced by javac, but could be produced by
duke@435 3145 // another compliant java compiler.
duke@435 3146 Label notMethod;
duke@435 3147 __ movl(r14, rdx);
twisti@3969 3148 __ andl(r14, (1 << ConstantPoolCacheEntry::is_forced_virtual_shift));
duke@435 3149 __ jcc(Assembler::zero, notMethod);
duke@435 3150
duke@435 3151 invokevirtual_helper(rbx, rcx, rdx);
duke@435 3152 __ bind(notMethod);
duke@435 3153
duke@435 3154 // Get receiver klass into rdx - also a null check
twisti@3969 3155 __ restore_locals(); // restore r14
twisti@3969 3156 __ null_check(rcx, oopDesc::klass_offset_in_bytes());
coleenp@548 3157 __ load_klass(rdx, rcx);
duke@435 3158 __ verify_oop(rdx);
duke@435 3159
duke@435 3160 // profile this call
duke@435 3161 __ profile_virtual_call(rdx, r13, r14);
duke@435 3162
jrose@1058 3163 Label no_such_interface, no_such_method;
jrose@1058 3164
jrose@1058 3165 __ lookup_interface_method(// inputs: rec. class, interface, itable index
jrose@1058 3166 rdx, rax, rbx,
jrose@1058 3167 // outputs: method, scan temp. reg
jrose@1058 3168 rbx, r13,
jrose@1058 3169 no_such_interface);
jrose@1058 3170
twisti@3969 3171 // rbx: methodOop to call
jrose@1058 3172 // rcx: receiver
jrose@1058 3173 // Check for abstract method error
jrose@1058 3174 // Note: This should be done more efficiently via a throw_abstract_method_error
jrose@1058 3175 // interpreter entry point and a conditional jump to it in case of a null
jrose@1058 3176 // method.
jrose@1058 3177 __ testptr(rbx, rbx);
jrose@1058 3178 __ jcc(Assembler::zero, no_such_method);
jrose@1058 3179
jrose@1058 3180 // do the call
jrose@1058 3181 // rcx: receiver
jrose@1058 3182 // rbx,: methodOop
jrose@1058 3183 __ jump_from_interpreted(rbx, rdx);
jrose@1058 3184 __ should_not_reach_here();
jrose@1058 3185
jrose@1058 3186 // exception handling code follows...
jrose@1058 3187 // note: must restore interpreter registers to canonical
jrose@1058 3188 // state for exception handling to work correctly!
jrose@1058 3189
jrose@1058 3190 __ bind(no_such_method);
duke@435 3191 // throw exception
jrose@1058 3192 __ pop(rbx); // pop return address (pushed by prepare_invoke)
jrose@1058 3193 __ restore_bcp(); // r13 must be correct for exception handler (was destroyed)
jrose@1058 3194 __ restore_locals(); // make sure locals pointer is correct as well (was destroyed)
jrose@1058 3195 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_AbstractMethodError));
jrose@1058 3196 // the call_VM checks for exception, so we should never return here.
jrose@1058 3197 __ should_not_reach_here();
jrose@1058 3198
jrose@1058 3199 __ bind(no_such_interface);
jrose@1058 3200 // throw exception
jrose@1058 3201 __ pop(rbx); // pop return address (pushed by prepare_invoke)
jrose@1058 3202 __ restore_bcp(); // r13 must be correct for exception handler (was destroyed)
jrose@1058 3203 __ restore_locals(); // make sure locals pointer is correct as well (was destroyed)
duke@435 3204 __ call_VM(noreg, CAST_FROM_FN_PTR(address,
duke@435 3205 InterpreterRuntime::throw_IncompatibleClassChangeError));
duke@435 3206 // the call_VM checks for exception, so we should never return here.
duke@435 3207 __ should_not_reach_here();
duke@435 3208 }
duke@435 3209
twisti@3969 3210
twisti@3969 3211 void TemplateTable::invokehandle(int byte_no) {
twisti@3969 3212 transition(vtos, vtos);
twisti@3969 3213 assert(byte_no == f12_oop, "use this argument");
twisti@3969 3214 const Register rbx_method = rbx; // f2
twisti@3969 3215 const Register rax_mtype = rax; // f1
twisti@3969 3216 const Register rcx_recv = rcx;
twisti@3969 3217 const Register rdx_flags = rdx;
twisti@3969 3218
twisti@3969 3219 if (!EnableInvokeDynamic) {
twisti@3969 3220 // rewriter does not generate this bytecode
twisti@3969 3221 __ should_not_reach_here();
twisti@3969 3222 return;
twisti@3969 3223 }
twisti@3969 3224
twisti@3969 3225 prepare_invoke(byte_no,
twisti@3969 3226 rbx_method, rax_mtype, // get f2 methodOop, f1 MethodType
twisti@3969 3227 rcx_recv);
twisti@3969 3228 __ verify_oop(rbx_method);
twisti@3969 3229 __ verify_oop(rcx_recv);
twisti@3969 3230 __ null_check(rcx_recv);
twisti@3969 3231
twisti@3969 3232 // Note: rax_mtype is already pushed (if necessary) by prepare_invoke
twisti@3969 3233
twisti@3969 3234 // FIXME: profile the LambdaForm also
twisti@3969 3235 __ profile_final_call(rax);
twisti@3969 3236
twisti@3969 3237 __ jump_from_interpreted(rbx_method, rdx);
twisti@3969 3238 }
twisti@3969 3239
twisti@3969 3240
jrose@1161 3241 void TemplateTable::invokedynamic(int byte_no) {
jrose@1161 3242 transition(vtos, vtos);
twisti@3969 3243 assert(byte_no == f12_oop, "use this argument");
jrose@1161 3244
jrose@1161 3245 if (!EnableInvokeDynamic) {
jrose@1161 3246 // We should not encounter this bytecode if !EnableInvokeDynamic.
jrose@1161 3247 // The verifier will stop it. However, if we get past the verifier,
jrose@1161 3248 // this will stop the thread in a reasonable way, without crashing the JVM.
jrose@1161 3249 __ call_VM(noreg, CAST_FROM_FN_PTR(address,
jrose@1161 3250 InterpreterRuntime::throw_IncompatibleClassChangeError));
jrose@1161 3251 // the call_VM checks for exception, so we should never return here.
jrose@1161 3252 __ should_not_reach_here();
jrose@1161 3253 return;
jrose@1161 3254 }
jrose@1161 3255
twisti@3969 3256 const Register rbx_method = rbx;
twisti@3969 3257 const Register rax_callsite = rax;
twisti@3969 3258
twisti@3969 3259 prepare_invoke(byte_no, rbx_method, rax_callsite);
twisti@3969 3260
twisti@3969 3261 // rax: CallSite object (from f1)
twisti@3969 3262 // rbx: MH.linkToCallSite method (from f2)
twisti@3969 3263
twisti@3969 3264 // Note: rax_callsite is already pushed by prepare_invoke
twisti@2201 3265
twisti@2811 3266 // %%% should make a type profile for any invokedynamic that takes a ref argument
twisti@2811 3267 // profile this call
twisti@2811 3268 __ profile_call(r13);
twisti@2811 3269
twisti@2811 3270 __ verify_oop(rax_callsite);
twisti@3969 3271
twisti@3969 3272 __ jump_from_interpreted(rbx_method, rdx);
jrose@1161 3273 }
jrose@1161 3274
jrose@1058 3275
duke@435 3276 //-----------------------------------------------------------------------------
duke@435 3277 // Allocation
duke@435 3278
duke@435 3279 void TemplateTable::_new() {
duke@435 3280 transition(vtos, atos);
duke@435 3281 __ get_unsigned_2_byte_index_at_bcp(rdx, 1);
duke@435 3282 Label slow_case;
duke@435 3283 Label done;
duke@435 3284 Label initialize_header;
duke@435 3285 Label initialize_object; // including clearing the fields
duke@435 3286 Label allocate_shared;
duke@435 3287
duke@435 3288 __ get_cpool_and_tags(rsi, rax);
bobv@2036 3289 // Make sure the class we're about to instantiate has been resolved.
bobv@2036 3290 // This is done before loading instanceKlass to be consistent with the order
bobv@2036 3291 // how Constant Pool is updated (see constantPoolOopDesc::klass_at_put)
duke@435 3292 const int tags_offset = typeArrayOopDesc::header_size(T_BYTE) * wordSize;
duke@435 3293 __ cmpb(Address(rax, rdx, Address::times_1, tags_offset),
duke@435 3294 JVM_CONSTANT_Class);
duke@435 3295 __ jcc(Assembler::notEqual, slow_case);
duke@435 3296
bobv@2036 3297 // get instanceKlass
bobv@2036 3298 __ movptr(rsi, Address(rsi, rdx,
bobv@2036 3299 Address::times_8, sizeof(constantPoolOopDesc)));
bobv@2036 3300
duke@435 3301 // make sure klass is initialized & doesn't have finalizer
duke@435 3302 // make sure klass is fully initialized
coleenp@3368 3303 __ cmpb(Address(rsi,
stefank@3391 3304 instanceKlass::init_state_offset()),
duke@435 3305 instanceKlass::fully_initialized);
duke@435 3306 __ jcc(Assembler::notEqual, slow_case);
duke@435 3307
duke@435 3308 // get instance_size in instanceKlass (scaled to a count of bytes)
duke@435 3309 __ movl(rdx,
duke@435 3310 Address(rsi,
stefank@3391 3311 Klass::layout_helper_offset()));
duke@435 3312 // test to see if it has a finalizer or is malformed in some way
duke@435 3313 __ testl(rdx, Klass::_lh_instance_slow_path_bit);
duke@435 3314 __ jcc(Assembler::notZero, slow_case);
duke@435 3315
duke@435 3316 // Allocate the instance
duke@435 3317 // 1) Try to allocate in the TLAB
duke@435 3318 // 2) if fail and the object is large allocate in the shared Eden
duke@435 3319 // 3) if the above fails (or is not applicable), go to a slow case
duke@435 3320 // (creates a new TLAB, etc.)
duke@435 3321
duke@435 3322 const bool allow_shared_alloc =
duke@435 3323 Universe::heap()->supports_inline_contig_alloc() && !CMSIncrementalMode;
duke@435 3324
duke@435 3325 if (UseTLAB) {
never@739 3326 __ movptr(rax, Address(r15_thread, in_bytes(JavaThread::tlab_top_offset())));
never@739 3327 __ lea(rbx, Address(rax, rdx, Address::times_1));
never@739 3328 __ cmpptr(rbx, Address(r15_thread, in_bytes(JavaThread::tlab_end_offset())));
duke@435 3329 __ jcc(Assembler::above, allow_shared_alloc ? allocate_shared : slow_case);
never@739 3330 __ movptr(Address(r15_thread, in_bytes(JavaThread::tlab_top_offset())), rbx);
duke@435 3331 if (ZeroTLAB) {
duke@435 3332 // the fields have been already cleared
duke@435 3333 __ jmp(initialize_header);
duke@435 3334 } else {
duke@435 3335 // initialize both the header and fields
duke@435 3336 __ jmp(initialize_object);
duke@435 3337 }
duke@435 3338 }
duke@435 3339
duke@435 3340 // Allocation in the shared Eden, if allowed.
duke@435 3341 //
duke@435 3342 // rdx: instance size in bytes
duke@435 3343 if (allow_shared_alloc) {
duke@435 3344 __ bind(allocate_shared);
duke@435 3345
ysr@777 3346 ExternalAddress top((address)Universe::heap()->top_addr());
ysr@777 3347 ExternalAddress end((address)Universe::heap()->end_addr());
ysr@777 3348
duke@435 3349 const Register RtopAddr = rscratch1;
duke@435 3350 const Register RendAddr = rscratch2;
duke@435 3351
duke@435 3352 __ lea(RtopAddr, top);
duke@435 3353 __ lea(RendAddr, end);
never@739 3354 __ movptr(rax, Address(RtopAddr, 0));
duke@435 3355
duke@435 3356 // For retries rax gets set by cmpxchgq
duke@435 3357 Label retry;
duke@435 3358 __ bind(retry);
never@739 3359 __ lea(rbx, Address(rax, rdx, Address::times_1));
never@739 3360 __ cmpptr(rbx, Address(RendAddr, 0));
duke@435 3361 __ jcc(Assembler::above, slow_case);
duke@435 3362
duke@435 3363 // Compare rax with the top addr, and if still equal, store the new
duke@435 3364 // top addr in rbx at the address of the top addr pointer. Sets ZF if was
duke@435 3365 // equal, and clears it otherwise. Use lock prefix for atomicity on MPs.
duke@435 3366 //
duke@435 3367 // rax: object begin
duke@435 3368 // rbx: object end
duke@435 3369 // rdx: instance size in bytes
duke@435 3370 if (os::is_MP()) {
duke@435 3371 __ lock();
duke@435 3372 }
never@739 3373 __ cmpxchgptr(rbx, Address(RtopAddr, 0));
duke@435 3374
duke@435 3375 // if someone beat us on the allocation, try again, otherwise continue
duke@435 3376 __ jcc(Assembler::notEqual, retry);
phh@2423 3377
phh@2423 3378 __ incr_allocated_bytes(r15_thread, rdx, 0);
duke@435 3379 }
duke@435 3380
duke@435 3381 if (UseTLAB || Universe::heap()->supports_inline_contig_alloc()) {
duke@435 3382 // The object is initialized before the header. If the object size is
duke@435 3383 // zero, go directly to the header initialization.
duke@435 3384 __ bind(initialize_object);
duke@435 3385 __ decrementl(rdx, sizeof(oopDesc));
duke@435 3386 __ jcc(Assembler::zero, initialize_header);
duke@435 3387
duke@435 3388 // Initialize object fields
duke@435 3389 __ xorl(rcx, rcx); // use zero reg to clear memory (shorter code)
duke@435 3390 __ shrl(rdx, LogBytesPerLong); // divide by oopSize to simplify the loop
duke@435 3391 {
duke@435 3392 Label loop;
duke@435 3393 __ bind(loop);
duke@435 3394 __ movq(Address(rax, rdx, Address::times_8,
duke@435 3395 sizeof(oopDesc) - oopSize),
duke@435 3396 rcx);
duke@435 3397 __ decrementl(rdx);
duke@435 3398 __ jcc(Assembler::notZero, loop);
duke@435 3399 }
duke@435 3400
duke@435 3401 // initialize object header only.
duke@435 3402 __ bind(initialize_header);
duke@435 3403 if (UseBiasedLocking) {
stefank@3391 3404 __ movptr(rscratch1, Address(rsi, Klass::prototype_header_offset()));
never@739 3405 __ movptr(Address(rax, oopDesc::mark_offset_in_bytes()), rscratch1);
duke@435 3406 } else {
duke@435 3407 __ movptr(Address(rax, oopDesc::mark_offset_in_bytes()),
duke@435 3408 (intptr_t) markOopDesc::prototype()); // header (address 0x1)
duke@435 3409 }
coleenp@602 3410 __ xorl(rcx, rcx); // use zero reg to clear memory (shorter code)
coleenp@602 3411 __ store_klass_gap(rax, rcx); // zero klass gap for compressed oops
coleenp@602 3412 __ store_klass(rax, rsi); // store klass last
kamg@1683 3413
kamg@1683 3414 {
kamg@1683 3415 SkipIfEqual skip(_masm, &DTraceAllocProbes, false);
kamg@1683 3416 // Trigger dtrace event for fastpath
kamg@1683 3417 __ push(atos); // save the return value
kamg@1683 3418 __ call_VM_leaf(
kamg@1683 3419 CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_object_alloc), rax);
kamg@1683 3420 __ pop(atos); // restore the return value
kamg@1683 3421
kamg@1683 3422 }
duke@435 3423 __ jmp(done);
duke@435 3424 }
duke@435 3425
duke@435 3426
duke@435 3427 // slow case
duke@435 3428 __ bind(slow_case);
duke@435 3429 __ get_constant_pool(c_rarg1);
duke@435 3430 __ get_unsigned_2_byte_index_at_bcp(c_rarg2, 1);
duke@435 3431 call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::_new), c_rarg1, c_rarg2);
duke@435 3432 __ verify_oop(rax);
duke@435 3433
duke@435 3434 // continue
duke@435 3435 __ bind(done);
duke@435 3436 }
duke@435 3437
duke@435 3438 void TemplateTable::newarray() {
duke@435 3439 transition(itos, atos);
duke@435 3440 __ load_unsigned_byte(c_rarg1, at_bcp(1));
duke@435 3441 __ movl(c_rarg2, rax);
duke@435 3442 call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::newarray),
duke@435 3443 c_rarg1, c_rarg2);
duke@435 3444 }
duke@435 3445
duke@435 3446 void TemplateTable::anewarray() {
duke@435 3447 transition(itos, atos);
duke@435 3448 __ get_unsigned_2_byte_index_at_bcp(c_rarg2, 1);
duke@435 3449 __ get_constant_pool(c_rarg1);
duke@435 3450 __ movl(c_rarg3, rax);
duke@435 3451 call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::anewarray),
duke@435 3452 c_rarg1, c_rarg2, c_rarg3);
duke@435 3453 }
duke@435 3454
duke@435 3455 void TemplateTable::arraylength() {
duke@435 3456 transition(atos, itos);
duke@435 3457 __ null_check(rax, arrayOopDesc::length_offset_in_bytes());
duke@435 3458 __ movl(rax, Address(rax, arrayOopDesc::length_offset_in_bytes()));
duke@435 3459 }
duke@435 3460
duke@435 3461 void TemplateTable::checkcast() {
duke@435 3462 transition(atos, atos);
duke@435 3463 Label done, is_null, ok_is_subtype, quicked, resolved;
never@739 3464 __ testptr(rax, rax); // object is in rax
duke@435 3465 __ jcc(Assembler::zero, is_null);
duke@435 3466
duke@435 3467 // Get cpool & tags index
duke@435 3468 __ get_cpool_and_tags(rcx, rdx); // rcx=cpool, rdx=tags array
duke@435 3469 __ get_unsigned_2_byte_index_at_bcp(rbx, 1); // rbx=index
duke@435 3470 // See if bytecode has already been quicked
duke@435 3471 __ cmpb(Address(rdx, rbx,
duke@435 3472 Address::times_1,
duke@435 3473 typeArrayOopDesc::header_size(T_BYTE) * wordSize),
duke@435 3474 JVM_CONSTANT_Class);
duke@435 3475 __ jcc(Assembler::equal, quicked);
coleenp@548 3476 __ push(atos); // save receiver for result, and for GC
duke@435 3477 call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::quicken_io_cc));
duke@435 3478 __ pop_ptr(rdx); // restore receiver
duke@435 3479 __ jmpb(resolved);
duke@435 3480
duke@435 3481 // Get superklass in rax and subklass in rbx
duke@435 3482 __ bind(quicked);
never@739 3483 __ mov(rdx, rax); // Save object in rdx; rax needed for subtype check
never@739 3484 __ movptr(rax, Address(rcx, rbx,
duke@435 3485 Address::times_8, sizeof(constantPoolOopDesc)));
duke@435 3486
duke@435 3487 __ bind(resolved);
coleenp@548 3488 __ load_klass(rbx, rdx);
duke@435 3489
duke@435 3490 // Generate subtype check. Blows rcx, rdi. Object in rdx.
duke@435 3491 // Superklass in rax. Subklass in rbx.
duke@435 3492 __ gen_subtype_check(rbx, ok_is_subtype);
duke@435 3493
duke@435 3494 // Come here on failure
duke@435 3495 __ push_ptr(rdx);
duke@435 3496 // object is at TOS
duke@435 3497 __ jump(ExternalAddress(Interpreter::_throw_ClassCastException_entry));
duke@435 3498
duke@435 3499 // Come here on success
duke@435 3500 __ bind(ok_is_subtype);
never@739 3501 __ mov(rax, rdx); // Restore object in rdx
duke@435 3502
duke@435 3503 // Collect counts on whether this check-cast sees NULLs a lot or not.
duke@435 3504 if (ProfileInterpreter) {
duke@435 3505 __ jmp(done);
duke@435 3506 __ bind(is_null);
duke@435 3507 __ profile_null_seen(rcx);
duke@435 3508 } else {
duke@435 3509 __ bind(is_null); // same as 'done'
duke@435 3510 }
duke@435 3511 __ bind(done);
duke@435 3512 }
duke@435 3513
duke@435 3514 void TemplateTable::instanceof() {
duke@435 3515 transition(atos, itos);
duke@435 3516 Label done, is_null, ok_is_subtype, quicked, resolved;
never@739 3517 __ testptr(rax, rax);
duke@435 3518 __ jcc(Assembler::zero, is_null);
duke@435 3519
duke@435 3520 // Get cpool & tags index
duke@435 3521 __ get_cpool_and_tags(rcx, rdx); // rcx=cpool, rdx=tags array
duke@435 3522 __ get_unsigned_2_byte_index_at_bcp(rbx, 1); // rbx=index
duke@435 3523 // See if bytecode has already been quicked
duke@435 3524 __ cmpb(Address(rdx, rbx,
duke@435 3525 Address::times_1,
duke@435 3526 typeArrayOopDesc::header_size(T_BYTE) * wordSize),
duke@435 3527 JVM_CONSTANT_Class);
duke@435 3528 __ jcc(Assembler::equal, quicked);
duke@435 3529
coleenp@548 3530 __ push(atos); // save receiver for result, and for GC
duke@435 3531 call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::quicken_io_cc));
duke@435 3532 __ pop_ptr(rdx); // restore receiver
coleenp@2318 3533 __ verify_oop(rdx);
coleenp@548 3534 __ load_klass(rdx, rdx);
duke@435 3535 __ jmpb(resolved);
duke@435 3536
duke@435 3537 // Get superklass in rax and subklass in rdx
duke@435 3538 __ bind(quicked);
coleenp@548 3539 __ load_klass(rdx, rax);
never@739 3540 __ movptr(rax, Address(rcx, rbx,
never@739 3541 Address::times_8, sizeof(constantPoolOopDesc)));
duke@435 3542
duke@435 3543 __ bind(resolved);
duke@435 3544
duke@435 3545 // Generate subtype check. Blows rcx, rdi
duke@435 3546 // Superklass in rax. Subklass in rdx.
duke@435 3547 __ gen_subtype_check(rdx, ok_is_subtype);
duke@435 3548
duke@435 3549 // Come here on failure
duke@435 3550 __ xorl(rax, rax);
duke@435 3551 __ jmpb(done);
duke@435 3552 // Come here on success
duke@435 3553 __ bind(ok_is_subtype);
duke@435 3554 __ movl(rax, 1);
duke@435 3555
duke@435 3556 // Collect counts on whether this test sees NULLs a lot or not.
duke@435 3557 if (ProfileInterpreter) {
duke@435 3558 __ jmp(done);
duke@435 3559 __ bind(is_null);
duke@435 3560 __ profile_null_seen(rcx);
duke@435 3561 } else {
duke@435 3562 __ bind(is_null); // same as 'done'
duke@435 3563 }
duke@435 3564 __ bind(done);
duke@435 3565 // rax = 0: obj == NULL or obj is not an instanceof the specified klass
duke@435 3566 // rax = 1: obj != NULL and obj is an instanceof the specified klass
duke@435 3567 }
duke@435 3568
duke@435 3569 //-----------------------------------------------------------------------------
duke@435 3570 // Breakpoints
duke@435 3571 void TemplateTable::_breakpoint() {
duke@435 3572 // Note: We get here even if we are single stepping..
duke@435 3573 // jbug inists on setting breakpoints at every bytecode
duke@435 3574 // even if we are in single step mode.
duke@435 3575
duke@435 3576 transition(vtos, vtos);
duke@435 3577
duke@435 3578 // get the unpatched byte code
duke@435 3579 __ get_method(c_rarg1);
duke@435 3580 __ call_VM(noreg,
duke@435 3581 CAST_FROM_FN_PTR(address,
duke@435 3582 InterpreterRuntime::get_original_bytecode_at),
duke@435 3583 c_rarg1, r13);
never@739 3584 __ mov(rbx, rax);
duke@435 3585
duke@435 3586 // post the breakpoint event
duke@435 3587 __ get_method(c_rarg1);
duke@435 3588 __ call_VM(noreg,
duke@435 3589 CAST_FROM_FN_PTR(address, InterpreterRuntime::_breakpoint),
duke@435 3590 c_rarg1, r13);
duke@435 3591
duke@435 3592 // complete the execution of original bytecode
duke@435 3593 __ dispatch_only_normal(vtos);
duke@435 3594 }
duke@435 3595
duke@435 3596 //-----------------------------------------------------------------------------
duke@435 3597 // Exceptions
duke@435 3598
duke@435 3599 void TemplateTable::athrow() {
duke@435 3600 transition(atos, vtos);
duke@435 3601 __ null_check(rax);
duke@435 3602 __ jump(ExternalAddress(Interpreter::throw_exception_entry()));
duke@435 3603 }
duke@435 3604
duke@435 3605 //-----------------------------------------------------------------------------
duke@435 3606 // Synchronization
duke@435 3607 //
duke@435 3608 // Note: monitorenter & exit are symmetric routines; which is reflected
duke@435 3609 // in the assembly code structure as well
duke@435 3610 //
duke@435 3611 // Stack layout:
duke@435 3612 //
duke@435 3613 // [expressions ] <--- rsp = expression stack top
duke@435 3614 // ..
duke@435 3615 // [expressions ]
duke@435 3616 // [monitor entry] <--- monitor block top = expression stack bot
duke@435 3617 // ..
duke@435 3618 // [monitor entry]
duke@435 3619 // [frame data ] <--- monitor block bot
duke@435 3620 // ...
duke@435 3621 // [saved rbp ] <--- rbp
duke@435 3622 void TemplateTable::monitorenter() {
duke@435 3623 transition(atos, vtos);
duke@435 3624
duke@435 3625 // check for NULL object
duke@435 3626 __ null_check(rax);
duke@435 3627
duke@435 3628 const Address monitor_block_top(
duke@435 3629 rbp, frame::interpreter_frame_monitor_block_top_offset * wordSize);
duke@435 3630 const Address monitor_block_bot(
duke@435 3631 rbp, frame::interpreter_frame_initial_sp_offset * wordSize);
duke@435 3632 const int entry_size = frame::interpreter_frame_monitor_size() * wordSize;
duke@435 3633
duke@435 3634 Label allocated;
duke@435 3635
duke@435 3636 // initialize entry pointer
duke@435 3637 __ xorl(c_rarg1, c_rarg1); // points to free slot or NULL
duke@435 3638
duke@435 3639 // find a free slot in the monitor block (result in c_rarg1)
duke@435 3640 {
duke@435 3641 Label entry, loop, exit;
never@739 3642 __ movptr(c_rarg3, monitor_block_top); // points to current entry,
duke@435 3643 // starting with top-most entry
never@739 3644 __ lea(c_rarg2, monitor_block_bot); // points to word before bottom
duke@435 3645 // of monitor block
duke@435 3646 __ jmpb(entry);
duke@435 3647
duke@435 3648 __ bind(loop);
duke@435 3649 // check if current entry is used
never@739 3650 __ cmpptr(Address(c_rarg3, BasicObjectLock::obj_offset_in_bytes()), (int32_t) NULL_WORD);
duke@435 3651 // if not used then remember entry in c_rarg1
never@739 3652 __ cmov(Assembler::equal, c_rarg1, c_rarg3);
duke@435 3653 // check if current entry is for same object
never@739 3654 __ cmpptr(rax, Address(c_rarg3, BasicObjectLock::obj_offset_in_bytes()));
duke@435 3655 // if same object then stop searching
duke@435 3656 __ jccb(Assembler::equal, exit);
duke@435 3657 // otherwise advance to next entry
never@739 3658 __ addptr(c_rarg3, entry_size);
duke@435 3659 __ bind(entry);
duke@435 3660 // check if bottom reached
never@739 3661 __ cmpptr(c_rarg3, c_rarg2);
duke@435 3662 // if not at bottom then check this entry
duke@435 3663 __ jcc(Assembler::notEqual, loop);
duke@435 3664 __ bind(exit);
duke@435 3665 }
duke@435 3666
never@739 3667 __ testptr(c_rarg1, c_rarg1); // check if a slot has been found
duke@435 3668 __ jcc(Assembler::notZero, allocated); // if found, continue with that one
duke@435 3669
duke@435 3670 // allocate one if there's no free slot
duke@435 3671 {
duke@435 3672 Label entry, loop;
never@739 3673 // 1. compute new pointers // rsp: old expression stack top
never@739 3674 __ movptr(c_rarg1, monitor_block_bot); // c_rarg1: old expression stack bottom
never@739 3675 __ subptr(rsp, entry_size); // move expression stack top
never@739 3676 __ subptr(c_rarg1, entry_size); // move expression stack bottom
never@739 3677 __ mov(c_rarg3, rsp); // set start value for copy loop
never@739 3678 __ movptr(monitor_block_bot, c_rarg1); // set new monitor block bottom
duke@435 3679 __ jmp(entry);
duke@435 3680 // 2. move expression stack contents
duke@435 3681 __ bind(loop);
never@739 3682 __ movptr(c_rarg2, Address(c_rarg3, entry_size)); // load expression stack
never@739 3683 // word from old location
never@739 3684 __ movptr(Address(c_rarg3, 0), c_rarg2); // and store it at new location
never@739 3685 __ addptr(c_rarg3, wordSize); // advance to next word
duke@435 3686 __ bind(entry);
never@739 3687 __ cmpptr(c_rarg3, c_rarg1); // check if bottom reached
duke@435 3688 __ jcc(Assembler::notEqual, loop); // if not at bottom then
duke@435 3689 // copy next word
duke@435 3690 }
duke@435 3691
duke@435 3692 // call run-time routine
duke@435 3693 // c_rarg1: points to monitor entry
duke@435 3694 __ bind(allocated);
duke@435 3695
duke@435 3696 // Increment bcp to point to the next bytecode, so exception
duke@435 3697 // handling for async. exceptions work correctly.
duke@435 3698 // The object has already been poped from the stack, so the
duke@435 3699 // expression stack looks correct.
never@739 3700 __ increment(r13);
duke@435 3701
duke@435 3702 // store object
never@739 3703 __ movptr(Address(c_rarg1, BasicObjectLock::obj_offset_in_bytes()), rax);
duke@435 3704 __ lock_object(c_rarg1);
duke@435 3705
duke@435 3706 // check to make sure this monitor doesn't cause stack overflow after locking
duke@435 3707 __ save_bcp(); // in case of exception
duke@435 3708 __ generate_stack_overflow_check(0);
duke@435 3709
duke@435 3710 // The bcp has already been incremented. Just need to dispatch to
duke@435 3711 // next instruction.
duke@435 3712 __ dispatch_next(vtos);
duke@435 3713 }
duke@435 3714
duke@435 3715
duke@435 3716 void TemplateTable::monitorexit() {
duke@435 3717 transition(atos, vtos);
duke@435 3718
duke@435 3719 // check for NULL object
duke@435 3720 __ null_check(rax);
duke@435 3721
duke@435 3722 const Address monitor_block_top(
duke@435 3723 rbp, frame::interpreter_frame_monitor_block_top_offset * wordSize);
duke@435 3724 const Address monitor_block_bot(
duke@435 3725 rbp, frame::interpreter_frame_initial_sp_offset * wordSize);
duke@435 3726 const int entry_size = frame::interpreter_frame_monitor_size() * wordSize;
duke@435 3727
duke@435 3728 Label found;
duke@435 3729
duke@435 3730 // find matching slot
duke@435 3731 {
duke@435 3732 Label entry, loop;
never@739 3733 __ movptr(c_rarg1, monitor_block_top); // points to current entry,
duke@435 3734 // starting with top-most entry
never@739 3735 __ lea(c_rarg2, monitor_block_bot); // points to word before bottom
duke@435 3736 // of monitor block
duke@435 3737 __ jmpb(entry);
duke@435 3738
duke@435 3739 __ bind(loop);
duke@435 3740 // check if current entry is for same object
never@739 3741 __ cmpptr(rax, Address(c_rarg1, BasicObjectLock::obj_offset_in_bytes()));
duke@435 3742 // if same object then stop searching
duke@435 3743 __ jcc(Assembler::equal, found);
duke@435 3744 // otherwise advance to next entry
never@739 3745 __ addptr(c_rarg1, entry_size);
duke@435 3746 __ bind(entry);
duke@435 3747 // check if bottom reached
never@739 3748 __ cmpptr(c_rarg1, c_rarg2);
duke@435 3749 // if not at bottom then check this entry
duke@435 3750 __ jcc(Assembler::notEqual, loop);
duke@435 3751 }
duke@435 3752
duke@435 3753 // error handling. Unlocking was not block-structured
duke@435 3754 __ call_VM(noreg, CAST_FROM_FN_PTR(address,
duke@435 3755 InterpreterRuntime::throw_illegal_monitor_state_exception));
duke@435 3756 __ should_not_reach_here();
duke@435 3757
duke@435 3758 // call run-time routine
duke@435 3759 // rsi: points to monitor entry
duke@435 3760 __ bind(found);
duke@435 3761 __ push_ptr(rax); // make sure object is on stack (contract with oopMaps)
duke@435 3762 __ unlock_object(c_rarg1);
duke@435 3763 __ pop_ptr(rax); // discard object
duke@435 3764 }
duke@435 3765
duke@435 3766
duke@435 3767 // Wide instructions
duke@435 3768 void TemplateTable::wide() {
duke@435 3769 transition(vtos, vtos);
duke@435 3770 __ load_unsigned_byte(rbx, at_bcp(1));
duke@435 3771 __ lea(rscratch1, ExternalAddress((address)Interpreter::_wentry_point));
duke@435 3772 __ jmp(Address(rscratch1, rbx, Address::times_8));
duke@435 3773 // Note: the r13 increment step is part of the individual wide
duke@435 3774 // bytecode implementations
duke@435 3775 }
duke@435 3776
duke@435 3777
duke@435 3778 // Multi arrays
duke@435 3779 void TemplateTable::multianewarray() {
duke@435 3780 transition(vtos, atos);
duke@435 3781 __ load_unsigned_byte(rax, at_bcp(3)); // get number of dimensions
duke@435 3782 // last dim is on top of stack; we want address of first one:
duke@435 3783 // first_addr = last_addr + (ndims - 1) * wordSize
never@739 3784 __ lea(c_rarg1, Address(rsp, rax, Address::times_8, -wordSize));
duke@435 3785 call_VM(rax,
duke@435 3786 CAST_FROM_FN_PTR(address, InterpreterRuntime::multianewarray),
duke@435 3787 c_rarg1);
duke@435 3788 __ load_unsigned_byte(rbx, at_bcp(3));
never@739 3789 __ lea(rsp, Address(rsp, rbx, Address::times_8));
duke@435 3790 }
never@739 3791 #endif // !CC_INTERP

mercurial