src/cpu/x86/vm/templateTable_x86_64.cpp

Fri, 25 Jan 2013 10:04:08 -0500

author
zgu
date
Fri, 25 Jan 2013 10:04:08 -0500
changeset 4492
8b46b0196eb0
parent 4318
cd3d6a6b95d9
child 4542
db9981fd3124
permissions
-rw-r--r--

8000692: Remove old KERNEL code
Summary: Removed depreciated kernel VM source code from hotspot VM
Reviewed-by: dholmes, acorn

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

mercurial