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