src/cpu/x86/vm/templateTable_x86_64.cpp

Fri, 29 Sep 2017 14:30:05 -0400

author
dbuck
date
Fri, 29 Sep 2017 14:30:05 -0400
changeset 8997
f8a45a60bc6b
parent 8368
32b682649973
child 9041
95a08233f46c
child 9604
da2e98c027fd
permissions
-rw-r--r--

8174962: Better interface invocations
Reviewed-by: jrose, coleenp, ahgross, acorn, vlivanov

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

mercurial