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