1 /*
   2  * Copyright (c) 1997, 2025, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "classfile/javaClasses.inline.hpp"
  26 #include "classfile/symbolTable.hpp"
  27 #include "classfile/systemDictionary.hpp"
  28 #include "classfile/vmClasses.hpp"
  29 #include "classfile/vmSymbols.hpp"
  30 #include "code/codeCache.hpp"
  31 #include "compiler/compilationPolicy.hpp"
  32 #include "compiler/compileBroker.hpp"
  33 #include "compiler/disassembler.hpp"
  34 #include "gc/shared/barrierSetNMethod.hpp"
  35 #include "gc/shared/collectedHeap.hpp"
  36 #include "interpreter/bytecodeTracer.hpp"
  37 #include "interpreter/interpreter.hpp"
  38 #include "interpreter/interpreterRuntime.hpp"
  39 #include "interpreter/linkResolver.hpp"
  40 #include "interpreter/templateTable.hpp"
  41 #include "jvm_io.h"
  42 #include "logging/log.hpp"
  43 #include "memory/oopFactory.hpp"
  44 #include "memory/resourceArea.hpp"
  45 #include "memory/universe.hpp"
  46 #include "oops/constantPool.inline.hpp"
  47 #include "oops/cpCache.inline.hpp"
  48 #include "oops/flatArrayKlass.hpp"
  49 #include "oops/flatArrayOop.inline.hpp"
  50 #include "oops/inlineKlass.inline.hpp"
  51 #include "oops/instanceKlass.inline.hpp"
  52 #include "oops/klass.inline.hpp"
  53 #include "oops/method.inline.hpp"
  54 #include "oops/methodData.hpp"
  55 #include "oops/objArrayKlass.hpp"
  56 #include "oops/objArrayOop.inline.hpp"
  57 #include "oops/oop.inline.hpp"
  58 #include "oops/symbol.hpp"
  59 #include "prims/jvmtiExport.hpp"
  60 #include "prims/methodHandles.hpp"
  61 #include "prims/nativeLookup.hpp"
  62 #include "runtime/atomicAccess.hpp"
  63 #include "runtime/continuation.hpp"
  64 #include "runtime/deoptimization.hpp"
  65 #include "runtime/fieldDescriptor.inline.hpp"
  66 #include "runtime/frame.inline.hpp"
  67 #include "runtime/handles.inline.hpp"
  68 #include "runtime/icache.hpp"
  69 #include "runtime/interfaceSupport.inline.hpp"
  70 #include "runtime/java.hpp"
  71 #include "runtime/javaCalls.hpp"
  72 #include "runtime/jfieldIDWorkaround.hpp"
  73 #include "runtime/osThread.hpp"
  74 #include "runtime/sharedRuntime.hpp"
  75 #include "runtime/stackWatermarkSet.hpp"
  76 #include "runtime/stubRoutines.hpp"
  77 #include "runtime/synchronizer.inline.hpp"
  78 #include "utilities/align.hpp"
  79 #include "utilities/checkedCast.hpp"
  80 #include "utilities/copy.hpp"
  81 #include "utilities/events.hpp"
  82 #include "utilities/globalDefinitions.hpp"
  83 #if INCLUDE_JFR
  84 #include "jfr/jfr.inline.hpp"
  85 #endif
  86 
  87 // Helper class to access current interpreter state
  88 class LastFrameAccessor : public StackObj {
  89   frame _last_frame;
  90 public:
  91   LastFrameAccessor(JavaThread* current) {
  92     assert(current == Thread::current(), "sanity");
  93     _last_frame = current->last_frame();
  94   }
  95   bool is_interpreted_frame() const              { return _last_frame.is_interpreted_frame(); }
  96   Method*   method() const                       { return _last_frame.interpreter_frame_method(); }
  97   address   bcp() const                          { return _last_frame.interpreter_frame_bcp(); }
  98   int       bci() const                          { return _last_frame.interpreter_frame_bci(); }
  99   address   mdp() const                          { return _last_frame.interpreter_frame_mdp(); }
 100 
 101   void      set_bcp(address bcp)                 { _last_frame.interpreter_frame_set_bcp(bcp); }
 102   void      set_mdp(address dp)                  { _last_frame.interpreter_frame_set_mdp(dp); }
 103 
 104   // pass method to avoid calling unsafe bcp_to_method (partial fix 4926272)
 105   Bytecodes::Code code() const                   { return Bytecodes::code_at(method(), bcp()); }
 106 
 107   Bytecode  bytecode() const                     { return Bytecode(method(), bcp()); }
 108   int get_index_u1(Bytecodes::Code bc) const     { return bytecode().get_index_u1(bc); }
 109   int get_index_u2(Bytecodes::Code bc) const     { return bytecode().get_index_u2(bc); }
 110   int get_index_u4(Bytecodes::Code bc) const     { return bytecode().get_index_u4(bc); }
 111   int number_of_dimensions() const               { return bcp()[3]; }
 112 
 113   oop callee_receiver(Symbol* signature) {
 114     return _last_frame.interpreter_callee_receiver(signature);
 115   }
 116   BasicObjectLock* monitor_begin() const {
 117     return _last_frame.interpreter_frame_monitor_begin();
 118   }
 119   BasicObjectLock* monitor_end() const {
 120     return _last_frame.interpreter_frame_monitor_end();
 121   }
 122   BasicObjectLock* next_monitor(BasicObjectLock* current) const {
 123     return _last_frame.next_monitor_in_interpreter_frame(current);
 124   }
 125 
 126   frame& get_frame()                             { return _last_frame; }
 127 };
 128 
 129 //------------------------------------------------------------------------------------------------------------------------
 130 // State accessors
 131 
 132 void InterpreterRuntime::set_bcp_and_mdp(address bcp, JavaThread* current) {
 133   LastFrameAccessor last_frame(current);
 134   last_frame.set_bcp(bcp);
 135   if (ProfileInterpreter) {
 136     // ProfileTraps uses MDOs independently of ProfileInterpreter.
 137     // That is why we must check both ProfileInterpreter and mdo != nullptr.
 138     MethodData* mdo = last_frame.method()->method_data();
 139     if (mdo != nullptr) {
 140       NEEDS_CLEANUP;
 141       last_frame.set_mdp(mdo->bci_to_dp(last_frame.bci()));
 142     }
 143   }
 144 }
 145 
 146 //------------------------------------------------------------------------------------------------------------------------
 147 // Constants
 148 
 149 
 150 JRT_ENTRY(void, InterpreterRuntime::ldc(JavaThread* current, bool wide))
 151   // access constant pool
 152   LastFrameAccessor last_frame(current);
 153   ConstantPool* pool = last_frame.method()->constants();
 154   int cp_index = wide ? last_frame.get_index_u2(Bytecodes::_ldc_w) : last_frame.get_index_u1(Bytecodes::_ldc);
 155   constantTag tag = pool->tag_at(cp_index);
 156 
 157   assert (tag.is_unresolved_klass() || tag.is_klass(), "wrong ldc call");
 158   Klass* klass = pool->klass_at(cp_index, CHECK);
 159   oop java_class = klass->java_mirror();
 160   current->set_vm_result_oop(java_class);
 161 JRT_END
 162 
 163 JRT_ENTRY(void, InterpreterRuntime::resolve_ldc(JavaThread* current, Bytecodes::Code bytecode)) {
 164   assert(bytecode == Bytecodes::_ldc ||
 165          bytecode == Bytecodes::_ldc_w ||
 166          bytecode == Bytecodes::_ldc2_w ||
 167          bytecode == Bytecodes::_fast_aldc ||
 168          bytecode == Bytecodes::_fast_aldc_w, "wrong bc");
 169   ResourceMark rm(current);
 170   const bool is_fast_aldc = (bytecode == Bytecodes::_fast_aldc ||
 171                              bytecode == Bytecodes::_fast_aldc_w);
 172   LastFrameAccessor last_frame(current);
 173   methodHandle m (current, last_frame.method());
 174   Bytecode_loadconstant ldc(m, last_frame.bci());
 175 
 176   // Double-check the size.  (Condy can have any type.)
 177   BasicType type = ldc.result_type();
 178   switch (type2size[type]) {
 179   case 2: guarantee(bytecode == Bytecodes::_ldc2_w, ""); break;
 180   case 1: guarantee(bytecode != Bytecodes::_ldc2_w, ""); break;
 181   default: ShouldNotReachHere();
 182   }
 183 
 184   // Resolve the constant.  This does not do unboxing.
 185   // But it does replace Universe::the_null_sentinel by null.
 186   oop result = ldc.resolve_constant(CHECK);
 187   assert(result != nullptr || is_fast_aldc, "null result only valid for fast_aldc");
 188 
 189 #ifdef ASSERT
 190   {
 191     // The bytecode wrappers aren't GC-safe so construct a new one
 192     Bytecode_loadconstant ldc2(m, last_frame.bci());
 193     int rindex = ldc2.cache_index();
 194     if (rindex < 0)
 195       rindex = m->constants()->cp_to_object_index(ldc2.pool_index());
 196     if (rindex >= 0) {
 197       oop coop = m->constants()->resolved_reference_at(rindex);
 198       oop roop = (result == nullptr ? Universe::the_null_sentinel() : result);
 199       assert(roop == coop, "expected result for assembly code");
 200     }
 201   }
 202 #endif
 203   current->set_vm_result_oop(result);
 204   if (!is_fast_aldc) {
 205     // Tell the interpreter how to unbox the primitive.
 206     guarantee(java_lang_boxing_object::is_instance(result, type), "");
 207     int offset = java_lang_boxing_object::value_offset(type);
 208     intptr_t flags = ((as_TosState(type) << ConstantPoolCache::tos_state_shift)
 209                       | (offset & ConstantPoolCache::field_index_mask));
 210     current->set_vm_result_metadata((Metadata*)flags);
 211   }
 212 }
 213 JRT_END
 214 
 215 
 216 //------------------------------------------------------------------------------------------------------------------------
 217 // Allocation
 218 
 219 JRT_ENTRY(void, InterpreterRuntime::_new(JavaThread* current, ConstantPool* pool, int index))
 220   Klass* k = pool->klass_at(index, CHECK);
 221   InstanceKlass* klass = InstanceKlass::cast(k);
 222 
 223   // Make sure we are not instantiating an abstract klass
 224   klass->check_valid_for_instantiation(true, CHECK);
 225 
 226   // Make sure klass is initialized
 227   klass->initialize_preemptable(CHECK_AND_CLEAR_PREEMPTED);
 228 
 229   oop obj = klass->allocate_instance(CHECK);
 230   current->set_vm_result_oop(obj);
 231 JRT_END
 232 
 233 JRT_ENTRY(void, InterpreterRuntime::read_flat_field(JavaThread* current, oopDesc* obj, ResolvedFieldEntry* entry))
 234   assert(oopDesc::is_oop(obj), "Sanity check");
 235   Handle obj_h(THREAD, obj);
 236 
 237   InstanceKlass* holder = InstanceKlass::cast(entry->field_holder());
 238   assert(entry->field_holder()->field_is_flat(entry->field_index()), "Sanity check");
 239 
 240   InlineLayoutInfo* layout_info = holder->inline_layout_info_adr(entry->field_index());
 241   InlineKlass* field_vklass = layout_info->klass();
 242 
 243 #ifdef ASSERT
 244   fieldDescriptor fd;
 245   bool found = holder->find_field_from_offset(entry->field_offset(), false, &fd);
 246   assert(found, "Field not found");
 247   assert(fd.is_flat(), "Field must be flat");
 248 #endif // ASSERT
 249 
 250   oop res = field_vklass->read_payload_from_addr(obj_h(), entry->field_offset(), layout_info->kind(), CHECK);
 251   current->set_vm_result_oop(res);
 252 JRT_END
 253 
 254 JRT_ENTRY(void, InterpreterRuntime::write_flat_field(JavaThread* current, oopDesc* obj, oopDesc* value, ResolvedFieldEntry* entry))
 255   assert(oopDesc::is_oop(obj), "Sanity check");
 256   Handle obj_h(THREAD, obj);
 257   assert(value == nullptr || oopDesc::is_oop(value), "Sanity check");
 258   Handle val_h(THREAD, value);
 259 
 260   InstanceKlass* holder = entry->field_holder();
 261   InlineLayoutInfo* li = holder->inline_layout_info_adr(entry->field_index());
 262   InlineKlass* vk = li->klass();
 263   vk->write_value_to_addr(val_h(), ((char*)(oopDesc*)obj_h()) + entry->field_offset(), li->kind(), true, CHECK);
 264 JRT_END
 265 
 266 JRT_ENTRY(void, InterpreterRuntime::newarray(JavaThread* current, BasicType type, jint size))
 267   oop obj = oopFactory::new_typeArray(type, size, CHECK);
 268   current->set_vm_result_oop(obj);
 269 JRT_END
 270 
 271 
 272 JRT_ENTRY(void, InterpreterRuntime::anewarray(JavaThread* current, ConstantPool* pool, int index, jint size))
 273   Klass*    klass = pool->klass_at(index, CHECK);
 274   arrayOop obj = oopFactory::new_objArray(klass, size, CHECK);
 275   current->set_vm_result_oop(obj);
 276 JRT_END
 277 
 278 JRT_ENTRY(void, InterpreterRuntime::flat_array_load(JavaThread* current, arrayOopDesc* array, int index))
 279   assert(array->is_flatArray(), "Must be");
 280   flatArrayOop farray = (flatArrayOop)array;
 281   oop res = farray->obj_at(index, CHECK);
 282   current->set_vm_result_oop(res);
 283 JRT_END
 284 
 285 JRT_ENTRY(void, InterpreterRuntime::flat_array_store(JavaThread* current, oopDesc* val, arrayOopDesc* array, int index))
 286   assert(array->is_flatArray(), "Must be");
 287   flatArrayOop farray = (flatArrayOop)array;
 288   farray->obj_at_put(index, val, CHECK);
 289 JRT_END
 290 
 291 JRT_ENTRY(void, InterpreterRuntime::multianewarray(JavaThread* current, jint* first_size_address))
 292   // We may want to pass in more arguments - could make this slightly faster
 293   LastFrameAccessor last_frame(current);
 294   ConstantPool* constants = last_frame.method()->constants();
 295   int i = last_frame.get_index_u2(Bytecodes::_multianewarray);
 296   Klass* klass = constants->klass_at(i, CHECK);
 297   int   nof_dims = last_frame.number_of_dimensions();
 298   assert(klass->is_klass(), "not a class");
 299   assert(nof_dims >= 1, "multianewarray rank must be nonzero");
 300 
 301   // We must create an array of jints to pass to multi_allocate.
 302   ResourceMark rm(current);
 303   const int small_dims = 10;
 304   jint dim_array[small_dims];
 305   jint *dims = &dim_array[0];
 306   if (nof_dims > small_dims) {
 307     dims = (jint*) NEW_RESOURCE_ARRAY(jint, nof_dims);
 308   }
 309   for (int index = 0; index < nof_dims; index++) {
 310     // offset from first_size_address is addressed as local[index]
 311     int n = Interpreter::local_offset_in_bytes(index)/jintSize;
 312     dims[index] = first_size_address[n];
 313   }
 314   oop obj = ArrayKlass::cast(klass)->multi_allocate(nof_dims, dims, CHECK);
 315   current->set_vm_result_oop(obj);
 316 JRT_END
 317 
 318 
 319 JRT_ENTRY(void, InterpreterRuntime::register_finalizer(JavaThread* current, oopDesc* obj))
 320   assert(oopDesc::is_oop(obj), "must be a valid oop");
 321   assert(obj->klass()->has_finalizer(), "shouldn't be here otherwise");
 322   InstanceKlass::register_finalizer(instanceOop(obj), CHECK);
 323 JRT_END
 324 
 325 JRT_ENTRY(jboolean, InterpreterRuntime::is_substitutable(JavaThread* current, oopDesc* aobj, oopDesc* bobj))
 326   assert(oopDesc::is_oop(aobj) && oopDesc::is_oop(bobj), "must be valid oops");
 327 
 328   Handle ha(THREAD, aobj);
 329   Handle hb(THREAD, bobj);
 330   JavaValue result(T_BOOLEAN);
 331   JavaCallArguments args;
 332   args.push_oop(ha);
 333   args.push_oop(hb);
 334   methodHandle method(current, UseAltSubstitutabilityMethod ?  Universe::is_substitutableAlt_method() : Universe::is_substitutable_method());
 335   method->method_holder()->initialize(CHECK_false); // Ensure class ValueObjectMethods is initialized
 336   JavaCalls::call(&result, method, &args, THREAD);
 337   if (HAS_PENDING_EXCEPTION) {
 338     // Something really bad happened because isSubstitutable() should not throw exceptions
 339     // If it is an error, just let it propagate
 340     // If it is an exception, wrap it into an InternalError
 341     if (!PENDING_EXCEPTION->is_a(vmClasses::Error_klass())) {
 342       Handle e(THREAD, PENDING_EXCEPTION);
 343       CLEAR_PENDING_EXCEPTION;
 344       THROW_MSG_CAUSE_(vmSymbols::java_lang_InternalError(), "Internal error in substitutability test", e, false);
 345     }
 346   }
 347   return result.get_jboolean();
 348 JRT_END
 349 
 350 // Quicken instance-of and check-cast bytecodes
 351 JRT_ENTRY(void, InterpreterRuntime::quicken_io_cc(JavaThread* current))
 352   // Force resolving; quicken the bytecode
 353   LastFrameAccessor last_frame(current);
 354   int which = last_frame.get_index_u2(Bytecodes::_checkcast);
 355   ConstantPool* cpool = last_frame.method()->constants();
 356   // We'd expect to assert that we're only here to quicken bytecodes, but in a multithreaded
 357   // program we might have seen an unquick'd bytecode in the interpreter but have another
 358   // thread quicken the bytecode before we get here.
 359   // assert( cpool->tag_at(which).is_unresolved_klass(), "should only come here to quicken bytecodes" );
 360   Klass* klass = cpool->klass_at(which, CHECK);
 361   current->set_vm_result_metadata(klass);
 362 JRT_END
 363 
 364 
 365 //------------------------------------------------------------------------------------------------------------------------
 366 // Exceptions
 367 
 368 void InterpreterRuntime::note_trap_inner(JavaThread* current, int reason,
 369                                          const methodHandle& trap_method, int trap_bci) {
 370   if (trap_method.not_null()) {
 371     MethodData* trap_mdo = trap_method->method_data();
 372     if (trap_mdo == nullptr) {
 373       ExceptionMark em(current);
 374       JavaThread* THREAD = current; // For exception macros.
 375       Method::build_profiling_method_data(trap_method, THREAD);
 376       if (HAS_PENDING_EXCEPTION) {
 377         // Only metaspace OOM is expected. No Java code executed.
 378         assert((PENDING_EXCEPTION->is_a(vmClasses::OutOfMemoryError_klass())),
 379                "we expect only an OOM error here");
 380         CLEAR_PENDING_EXCEPTION;
 381       }
 382       trap_mdo = trap_method->method_data();
 383       // and fall through...
 384     }
 385     if (trap_mdo != nullptr) {
 386       // Update per-method count of trap events.  The interpreter
 387       // is updating the MDO to simulate the effect of compiler traps.
 388       Deoptimization::update_method_data_from_interpreter(trap_mdo, trap_bci, reason);
 389     }
 390   }
 391 }
 392 
 393 // Assume the compiler is (or will be) interested in this event.
 394 // If necessary, create an MDO to hold the information, and record it.
 395 void InterpreterRuntime::note_trap(JavaThread* current, int reason) {
 396   assert(ProfileTraps, "call me only if profiling");
 397   LastFrameAccessor last_frame(current);
 398   methodHandle trap_method(current, last_frame.method());
 399   int trap_bci = trap_method->bci_from(last_frame.bcp());
 400   note_trap_inner(current, reason, trap_method, trap_bci);
 401 }
 402 
 403 static Handle get_preinitialized_exception(Klass* k, TRAPS) {
 404   // get klass
 405   InstanceKlass* klass = InstanceKlass::cast(k);
 406   assert(klass->is_initialized(),
 407          "this klass should have been initialized during VM initialization");
 408   // create instance - do not call constructor since we may have no
 409   // (java) stack space left (should assert constructor is empty)
 410   Handle exception;
 411   oop exception_oop = klass->allocate_instance(CHECK_(exception));
 412   exception = Handle(THREAD, exception_oop);
 413   if (StackTraceInThrowable) {
 414     java_lang_Throwable::fill_in_stack_trace(exception);
 415   }
 416   return exception;
 417 }
 418 
 419 // Special handling for stack overflow: since we don't have any (java) stack
 420 // space left we use the pre-allocated & pre-initialized StackOverflowError
 421 // klass to create an stack overflow error instance.  We do not call its
 422 // constructor for the same reason (it is empty, anyway).
 423 JRT_ENTRY(void, InterpreterRuntime::throw_StackOverflowError(JavaThread* current))
 424   Handle exception = get_preinitialized_exception(
 425                                  vmClasses::StackOverflowError_klass(),
 426                                  CHECK);
 427   // Increment counter for hs_err file reporting
 428   AtomicAccess::inc(&Exceptions::_stack_overflow_errors);
 429   // Remove the ScopedValue bindings in case we got a StackOverflowError
 430   // while we were trying to manipulate ScopedValue bindings.
 431   current->clear_scopedValueBindings();
 432   THROW_HANDLE(exception);
 433 JRT_END
 434 
 435 JRT_ENTRY(void, InterpreterRuntime::throw_delayed_StackOverflowError(JavaThread* current))
 436   Handle exception = get_preinitialized_exception(
 437                                  vmClasses::StackOverflowError_klass(),
 438                                  CHECK);
 439   java_lang_Throwable::set_message(exception(),
 440           Universe::delayed_stack_overflow_error_message());
 441   // Increment counter for hs_err file reporting
 442   AtomicAccess::inc(&Exceptions::_stack_overflow_errors);
 443   // Remove the ScopedValue bindings in case we got a StackOverflowError
 444   // while we were trying to manipulate ScopedValue bindings.
 445   current->clear_scopedValueBindings();
 446   THROW_HANDLE(exception);
 447 JRT_END
 448 
 449 JRT_ENTRY(void, InterpreterRuntime::create_exception(JavaThread* current, char* name, char* message))
 450   // lookup exception klass
 451   TempNewSymbol s = SymbolTable::new_symbol(name);
 452   if (ProfileTraps) {
 453     if (s == vmSymbols::java_lang_ArithmeticException()) {
 454       note_trap(current, Deoptimization::Reason_div0_check);
 455     } else if (s == vmSymbols::java_lang_NullPointerException()) {
 456       note_trap(current, Deoptimization::Reason_null_check);
 457     }
 458   }
 459   // create exception
 460   Handle exception = Exceptions::new_exception(current, s, message);
 461   current->set_vm_result_oop(exception());
 462 JRT_END
 463 
 464 
 465 JRT_ENTRY(void, InterpreterRuntime::create_klass_exception(JavaThread* current, char* name, oopDesc* obj))
 466   // Produce the error message first because note_trap can safepoint
 467   ResourceMark rm(current);
 468   const char* klass_name = obj->klass()->external_name();
 469   // lookup exception klass
 470   TempNewSymbol s = SymbolTable::new_symbol(name);
 471   if (ProfileTraps) {
 472     if (s == vmSymbols::java_lang_ArrayStoreException()) {
 473       note_trap(current, Deoptimization::Reason_array_check);
 474     } else {
 475       note_trap(current, Deoptimization::Reason_class_check);
 476     }
 477   }
 478   // create exception, with klass name as detail message
 479   Handle exception = Exceptions::new_exception(current, s, klass_name);
 480   current->set_vm_result_oop(exception());
 481 JRT_END
 482 
 483 JRT_ENTRY(void, InterpreterRuntime::throw_ArrayIndexOutOfBoundsException(JavaThread* current, arrayOopDesc* a, jint index))
 484   // Produce the error message first because note_trap can safepoint
 485   ResourceMark rm(current);
 486   stringStream ss;
 487   ss.print("Index %d out of bounds for length %d", index, a->length());
 488 
 489   if (ProfileTraps) {
 490     note_trap(current, Deoptimization::Reason_range_check);
 491   }
 492 
 493   THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), ss.as_string());
 494 JRT_END
 495 
 496 JRT_ENTRY(void, InterpreterRuntime::throw_ClassCastException(
 497   JavaThread* current, oopDesc* obj))
 498 
 499   // Produce the error message first because note_trap can safepoint
 500   ResourceMark rm(current);
 501   char* message = SharedRuntime::generate_class_cast_message(
 502     current, obj->klass());
 503 
 504   if (ProfileTraps) {
 505     note_trap(current, Deoptimization::Reason_class_check);
 506   }
 507 
 508   // create exception
 509   THROW_MSG(vmSymbols::java_lang_ClassCastException(), message);
 510 JRT_END
 511 
 512 // exception_handler_for_exception(...) returns the continuation address,
 513 // the exception oop (via TLS) and sets the bci/bcp for the continuation.
 514 // The exception oop is returned to make sure it is preserved over GC (it
 515 // is only on the stack if the exception was thrown explicitly via athrow).
 516 // During this operation, the expression stack contains the values for the
 517 // bci where the exception happened. If the exception was propagated back
 518 // from a call, the expression stack contains the values for the bci at the
 519 // invoke w/o arguments (i.e., as if one were inside the call).
 520 // Note that the implementation of this method assumes it's only called when an exception has actually occured
 521 JRT_ENTRY(address, InterpreterRuntime::exception_handler_for_exception(JavaThread* current, oopDesc* exception))
 522   // We get here after we have unwound from a callee throwing an exception
 523   // into the interpreter. Any deferred stack processing is notified of
 524   // the event via the StackWatermarkSet.
 525   StackWatermarkSet::after_unwind(current);
 526 
 527   LastFrameAccessor last_frame(current);
 528   Handle             h_exception(current, exception);
 529   methodHandle       h_method   (current, last_frame.method());
 530   constantPoolHandle h_constants(current, h_method->constants());
 531   bool               should_repeat;
 532   int                handler_bci;
 533   int                current_bci = last_frame.bci();
 534 
 535   if (current->frames_to_pop_failed_realloc() > 0) {
 536     // Allocation of scalar replaced object used in this frame
 537     // failed. Unconditionally pop the frame.
 538     current->dec_frames_to_pop_failed_realloc();
 539     current->set_vm_result_oop(h_exception());
 540     // If the method is synchronized we already unlocked the monitor
 541     // during deoptimization so the interpreter needs to skip it when
 542     // the frame is popped.
 543     current->set_do_not_unlock_if_synchronized(true);
 544     return Interpreter::remove_activation_entry();
 545   }
 546 
 547   // Need to do this check first since when _do_not_unlock_if_synchronized
 548   // is set, we don't want to trigger any classloading which may make calls
 549   // into java, or surprisingly find a matching exception handler for bci 0
 550   // since at this moment the method hasn't been "officially" entered yet.
 551   if (current->do_not_unlock_if_synchronized()) {
 552     ResourceMark rm;
 553     assert(current_bci == 0,  "bci isn't zero for do_not_unlock_if_synchronized");
 554     current->set_vm_result_oop(exception);
 555     return Interpreter::remove_activation_entry();
 556   }
 557 
 558   do {
 559     should_repeat = false;
 560 
 561     // assertions
 562     assert(h_exception.not_null(), "null exceptions should be handled by athrow");
 563     // Check that exception is a subclass of Throwable.
 564     assert(h_exception->is_a(vmClasses::Throwable_klass()),
 565            "Exception not subclass of Throwable");
 566 
 567     // tracing
 568     if (log_is_enabled(Info, exceptions)) {
 569       ResourceMark rm(current);
 570       stringStream tempst;
 571       tempst.print("interpreter method <%s>\n"
 572                    " at bci %d for thread " INTPTR_FORMAT " (%s)",
 573                    h_method->print_value_string(), current_bci, p2i(current), current->name());
 574       Exceptions::log_exception(h_exception, tempst.as_string());
 575     }
 576     if (log_is_enabled(Info, exceptions, stacktrace)) {
 577       Exceptions::log_exception_stacktrace(h_exception, h_method, current_bci);
 578     }
 579 
 580 // Don't go paging in something which won't be used.
 581 //     else if (extable->length() == 0) {
 582 //       // disabled for now - interpreter is not using shortcut yet
 583 //       // (shortcut is not to call runtime if we have no exception handlers)
 584 //       // warning("performance bug: should not call runtime if method has no exception handlers");
 585 //     }
 586     // for AbortVMOnException flag
 587     Exceptions::debug_check_abort(h_exception);
 588 
 589     // exception handler lookup
 590     Klass* klass = h_exception->klass();
 591     handler_bci = Method::fast_exception_handler_bci_for(h_method, klass, current_bci, THREAD);
 592     if (HAS_PENDING_EXCEPTION) {
 593       // We threw an exception while trying to find the exception handler.
 594       // Transfer the new exception to the exception handle which will
 595       // be set into thread local storage, and do another lookup for an
 596       // exception handler for this exception, this time starting at the
 597       // BCI of the exception handler which caused the exception to be
 598       // thrown (bug 4307310).
 599       h_exception = Handle(THREAD, PENDING_EXCEPTION);
 600       CLEAR_PENDING_EXCEPTION;
 601       if (handler_bci >= 0) {
 602         current_bci = handler_bci;
 603         should_repeat = true;
 604       }
 605     }
 606   } while (should_repeat == true);
 607 
 608 #if INCLUDE_JVMCI
 609   if (EnableJVMCI && h_method->method_data() != nullptr) {
 610     ResourceMark rm(current);
 611     MethodData* mdo = h_method->method_data();
 612 
 613     // Lock to read ProfileData, and ensure lock is not broken by a safepoint
 614     MutexLocker ml(mdo->extra_data_lock(), Mutex::_no_safepoint_check_flag);
 615 
 616     ProfileData* pdata = mdo->allocate_bci_to_data(current_bci, nullptr);
 617     if (pdata != nullptr && pdata->is_BitData()) {
 618       BitData* bit_data = (BitData*) pdata;
 619       bit_data->set_exception_seen();
 620     }
 621   }
 622 #endif
 623 
 624   // notify JVMTI of an exception throw; JVMTI will detect if this is a first
 625   // time throw or a stack unwinding throw and accordingly notify the debugger
 626   if (JvmtiExport::can_post_on_exceptions()) {
 627     JvmtiExport::post_exception_throw(current, h_method(), last_frame.bcp(), h_exception());
 628   }
 629 
 630   address continuation = nullptr;
 631   address handler_pc = nullptr;
 632   if (handler_bci < 0 || !current->stack_overflow_state()->reguard_stack((address) &continuation)) {
 633     // Forward exception to callee (leaving bci/bcp untouched) because (a) no
 634     // handler in this method, or (b) after a stack overflow there is not yet
 635     // enough stack space available to reprotect the stack.
 636     continuation = Interpreter::remove_activation_entry();
 637 #if COMPILER2_OR_JVMCI
 638     // Count this for compilation purposes
 639     h_method->interpreter_throwout_increment(THREAD);
 640 #endif
 641   } else {
 642     // handler in this method => change bci/bcp to handler bci/bcp and continue there
 643     handler_pc = h_method->code_base() + handler_bci;
 644     h_method->set_exception_handler_entered(handler_bci); // profiling
 645 #ifndef ZERO
 646     set_bcp_and_mdp(handler_pc, current);
 647     continuation = Interpreter::dispatch_table(vtos)[*handler_pc];
 648 #else
 649     continuation = (address)(intptr_t) handler_bci;
 650 #endif
 651   }
 652 
 653   // notify debugger of an exception catch
 654   // (this is good for exceptions caught in native methods as well)
 655   if (JvmtiExport::can_post_on_exceptions()) {
 656     JvmtiExport::notice_unwind_due_to_exception(current, h_method(), handler_pc, h_exception(), (handler_pc != nullptr));
 657   }
 658 
 659   current->set_vm_result_oop(h_exception());
 660   return continuation;
 661 JRT_END
 662 
 663 
 664 JRT_ENTRY(void, InterpreterRuntime::throw_pending_exception(JavaThread* current))
 665   assert(current->has_pending_exception(), "must only be called if there's an exception pending");
 666   // nothing to do - eventually we should remove this code entirely (see comments @ call sites)
 667 JRT_END
 668 
 669 
 670 JRT_ENTRY(void, InterpreterRuntime::throw_AbstractMethodError(JavaThread* current))
 671   THROW(vmSymbols::java_lang_AbstractMethodError());
 672 JRT_END
 673 
 674 // This method is called from the "abstract_entry" of the interpreter.
 675 // At that point, the arguments have already been removed from the stack
 676 // and therefore we don't have the receiver object at our fingertips. (Though,
 677 // on some platforms the receiver still resides in a register...). Thus,
 678 // we have no choice but print an error message not containing the receiver
 679 // type.
 680 JRT_ENTRY(void, InterpreterRuntime::throw_AbstractMethodErrorWithMethod(JavaThread* current,
 681                                                                         Method* missingMethod))
 682   ResourceMark rm(current);
 683   assert(missingMethod != nullptr, "sanity");
 684   methodHandle m(current, missingMethod);
 685   LinkResolver::throw_abstract_method_error(m, THREAD);
 686 JRT_END
 687 
 688 JRT_ENTRY(void, InterpreterRuntime::throw_AbstractMethodErrorVerbose(JavaThread* current,
 689                                                                      Klass* recvKlass,
 690                                                                      Method* missingMethod))
 691   ResourceMark rm(current);
 692   methodHandle mh = methodHandle(current, missingMethod);
 693   LinkResolver::throw_abstract_method_error(mh, recvKlass, THREAD);
 694 JRT_END
 695 
 696 JRT_ENTRY(void, InterpreterRuntime::throw_InstantiationError(JavaThread* current))
 697   THROW(vmSymbols::java_lang_InstantiationError());
 698 JRT_END
 699 
 700 
 701 JRT_ENTRY(void, InterpreterRuntime::throw_IncompatibleClassChangeError(JavaThread* current))
 702   THROW(vmSymbols::java_lang_IncompatibleClassChangeError());
 703 JRT_END
 704 
 705 JRT_ENTRY(void, InterpreterRuntime::throw_IncompatibleClassChangeErrorVerbose(JavaThread* current,
 706                                                                               Klass* recvKlass,
 707                                                                               Klass* interfaceKlass))
 708   ResourceMark rm(current);
 709   char buf[1000];
 710   buf[0] = '\0';
 711   jio_snprintf(buf, sizeof(buf),
 712                "Class %s does not implement the requested interface %s",
 713                recvKlass ? recvKlass->external_name() : "nullptr",
 714                interfaceKlass ? interfaceKlass->external_name() : "nullptr");
 715   THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
 716 JRT_END
 717 
 718 JRT_ENTRY(void, InterpreterRuntime::throw_NullPointerException(JavaThread* current))
 719   THROW(vmSymbols::java_lang_NullPointerException());
 720 JRT_END
 721 
 722 //------------------------------------------------------------------------------------------------------------------------
 723 // Fields
 724 //
 725 
 726 void InterpreterRuntime::resolve_get_put(Bytecodes::Code bytecode, TRAPS) {
 727   JavaThread* current = THREAD;
 728   LastFrameAccessor last_frame(current);
 729   constantPoolHandle pool(current, last_frame.method()->constants());
 730   methodHandle m(current, last_frame.method());
 731 
 732   resolve_get_put(bytecode, last_frame.get_index_u2(bytecode), m, pool, ClassInitMode::init_preemptable, THREAD);
 733 }
 734 
 735 void InterpreterRuntime::resolve_get_put(Bytecodes::Code bytecode, int field_index,
 736                                          methodHandle& m,
 737                                          constantPoolHandle& pool,
 738                                          ClassInitMode init_mode, TRAPS) {
 739   fieldDescriptor info;
 740   bool is_put    = (bytecode == Bytecodes::_putfield  || bytecode == Bytecodes::_nofast_putfield ||
 741                     bytecode == Bytecodes::_putstatic);
 742   bool is_static = (bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic);
 743 
 744   {
 745     JvmtiHideSingleStepping jhss(THREAD);
 746     LinkResolver::resolve_field_access(info, pool, field_index, m, bytecode, init_mode, CHECK);
 747   } // end JvmtiHideSingleStepping
 748 
 749   // check if link resolution caused cpCache to be updated
 750   if (pool->resolved_field_entry_at(field_index)->is_resolved(bytecode)) return;
 751 
 752   // compute auxiliary field attributes
 753   TosState state  = as_TosState(info.field_type());
 754 
 755   // Resolution of put instructions on final fields is delayed. That is required so that
 756   // exceptions are thrown at the correct place (when the instruction is actually invoked).
 757   // If we do not resolve an instruction in the current pass, leaving the put_code
 758   // set to zero will cause the next put instruction to the same field to reresolve.
 759 
 760   // Resolution of put instructions to final instance fields with invalid updates (i.e.,
 761   // to final instance fields with updates originating from a method different than <init>)
 762   // is inhibited. A putfield instruction targeting an instance final field must throw
 763   // an IllegalAccessError if the instruction is not in an instance
 764   // initializer method <init>. If resolution were not inhibited, a putfield
 765   // in an initializer method could be resolved in the initializer. Subsequent
 766   // putfield instructions to the same field would then use cached information.
 767   // As a result, those instructions would not pass through the VM. That is,
 768   // checks in resolve_field_access() would not be executed for those instructions
 769   // and the required IllegalAccessError would not be thrown.
 770   //
 771   // Also, we need to delay resolving getstatic and putstatic instructions until the
 772   // class is initialized.  This is required so that access to the static
 773   // field will call the initialization function every time until the class
 774   // is completely initialized ala. in 2.17.5 in JVM Specification.
 775   InstanceKlass* klass = info.field_holder();
 776   bool uninitialized_static = is_static && !klass->is_initialized();
 777   bool has_initialized_final_update = info.field_holder()->major_version() >= 53 &&
 778                                       info.has_initialized_final_update();
 779   bool strict_static_final = info.is_strict() && info.is_static() && info.is_final();
 780   assert(!(has_initialized_final_update && !info.access_flags().is_final()), "Fields with initialized final updates must be final");
 781 
 782   Bytecodes::Code get_code = (Bytecodes::Code)0;
 783   Bytecodes::Code put_code = (Bytecodes::Code)0;
 784   if (uninitialized_static && (info.is_strict_static_unset() || strict_static_final)) {
 785     // During <clinit>, closely track the state of strict statics.
 786     // 1. if we are reading an uninitialized strict static, throw
 787     // 2. if we are writing one, clear the "unset" flag
 788     //
 789     // Note: If we were handling an attempted write of a null to a
 790     // null-restricted strict static, we would NOT clear the "unset"
 791     // flag.
 792     assert(klass->is_being_initialized(), "else should have thrown");
 793     assert(klass->is_reentrant_initialization(THREAD),
 794       "<clinit> must be running in current thread");
 795     klass->notify_strict_static_access(info.index(), is_put, CHECK);
 796     assert(!info.is_strict_static_unset(), "after initialization, no unset flags");
 797   } else if (!uninitialized_static || VM_Version::supports_fast_class_init_checks()) {
 798     get_code = ((is_static) ? Bytecodes::_getstatic : Bytecodes::_getfield);
 799     if ((is_put && !has_initialized_final_update) || !info.access_flags().is_final()) {
 800       put_code = ((is_static) ? Bytecodes::_putstatic : Bytecodes::_putfield);
 801     }
 802   }
 803 
 804   ResolvedFieldEntry* entry = pool->resolved_field_entry_at(field_index);
 805   entry->set_flags(info.access_flags().is_final(), info.access_flags().is_volatile(),
 806                    info.is_flat(), info.is_null_free_inline_type(),
 807                    info.has_null_marker());
 808 
 809   entry->fill_in(info.field_holder(), info.offset(),
 810                  checked_cast<u2>(info.index()), checked_cast<u1>(state),
 811                  static_cast<u1>(get_code), static_cast<u1>(put_code));
 812 }
 813 
 814 
 815 //------------------------------------------------------------------------------------------------------------------------
 816 // Synchronization
 817 //
 818 // The interpreter's synchronization code is factored out so that it can
 819 // be shared by method invocation and synchronized blocks.
 820 //%note synchronization_3
 821 
 822 //%note monitor_1
 823 JRT_ENTRY_NO_ASYNC(void, InterpreterRuntime::monitorenter(JavaThread* current, BasicObjectLock* elem))
 824 #ifdef ASSERT
 825   current->last_frame().interpreter_frame_verify_monitor(elem);
 826 #endif
 827   Handle h_obj(current, elem->obj());
 828   assert(Universe::heap()->is_in_or_null(h_obj()),
 829          "must be null or an object");
 830   ObjectSynchronizer::enter(h_obj, elem->lock(), current);
 831   assert(Universe::heap()->is_in_or_null(elem->obj()),
 832          "must be null or an object");
 833 #ifdef ASSERT
 834   if (!current->preempting()) current->last_frame().interpreter_frame_verify_monitor(elem);
 835 #endif
 836 JRT_END
 837 
 838 JRT_LEAF(void, InterpreterRuntime::monitorexit(BasicObjectLock* elem))
 839   oop obj = elem->obj();
 840   assert(Universe::heap()->is_in(obj), "must be an object");
 841   // The object could become unlocked through a JNI call, which we have no other checks for.
 842   // Give a fatal message if CheckJNICalls. Otherwise we ignore it.
 843   if (obj->is_unlocked()) {
 844     if (CheckJNICalls) {
 845       fatal("Object has been unlocked by JNI");
 846     }
 847     return;
 848   }
 849   ObjectSynchronizer::exit(obj, elem->lock(), JavaThread::current());
 850   // Free entry. If it is not cleared, the exception handling code will try to unlock the monitor
 851   // again at method exit or in the case of an exception.
 852   elem->set_obj(nullptr);
 853 JRT_END
 854 
 855 JRT_ENTRY(void, InterpreterRuntime::throw_illegal_monitor_state_exception(JavaThread* current))
 856   THROW(vmSymbols::java_lang_IllegalMonitorStateException());
 857 JRT_END
 858 
 859 JRT_ENTRY(void, InterpreterRuntime::new_illegal_monitor_state_exception(JavaThread* current))
 860   // Returns an illegal exception to install into the current thread. The
 861   // pending_exception flag is cleared so normal exception handling does not
 862   // trigger. Any current installed exception will be overwritten. This
 863   // method will be called during an exception unwind.
 864 
 865   assert(!HAS_PENDING_EXCEPTION, "no pending exception");
 866   Handle exception(current, current->vm_result_oop());
 867   assert(exception() != nullptr, "vm result should be set");
 868   current->set_vm_result_oop(nullptr); // clear vm result before continuing (may cause memory leaks and assert failures)
 869   exception = get_preinitialized_exception(vmClasses::IllegalMonitorStateException_klass(), CATCH);
 870   current->set_vm_result_oop(exception());
 871 JRT_END
 872 
 873 JRT_ENTRY(void, InterpreterRuntime::throw_identity_exception(JavaThread* current, oopDesc* obj))
 874   Klass* klass = cast_to_oop(obj)->klass();
 875   ResourceMark rm(THREAD);
 876   const char* desc = "Cannot synchronize on an instance of value class ";
 877   const char* className = klass->external_name();
 878   size_t msglen = strlen(desc) + strlen(className) + 1;
 879   char* message = NEW_RESOURCE_ARRAY(char, msglen);
 880   if (nullptr == message) {
 881     // Out of memory: can't create detailed error message
 882     THROW_MSG(vmSymbols::java_lang_IdentityException(), className);
 883   } else {
 884     jio_snprintf(message, msglen, "%s%s", desc, className);
 885     THROW_MSG(vmSymbols::java_lang_IdentityException(), message);
 886   }
 887 JRT_END
 888 
 889 //------------------------------------------------------------------------------------------------------------------------
 890 // Invokes
 891 
 892 JRT_ENTRY(Bytecodes::Code, InterpreterRuntime::get_original_bytecode_at(JavaThread* current, Method* method, address bcp))
 893   return method->orig_bytecode_at(method->bci_from(bcp));
 894 JRT_END
 895 
 896 JRT_ENTRY(void, InterpreterRuntime::set_original_bytecode_at(JavaThread* current, Method* method, address bcp, Bytecodes::Code new_code))
 897   method->set_orig_bytecode_at(method->bci_from(bcp), new_code);
 898 JRT_END
 899 
 900 JRT_ENTRY(void, InterpreterRuntime::_breakpoint(JavaThread* current, Method* method, address bcp))
 901   JvmtiExport::post_raw_breakpoint(current, method, bcp);
 902 JRT_END
 903 
 904 void InterpreterRuntime::resolve_invoke(Bytecodes::Code bytecode, TRAPS) {
 905   JavaThread* current = THREAD;
 906   LastFrameAccessor last_frame(current);
 907   // extract receiver from the outgoing argument list if necessary
 908   Handle receiver(current, nullptr);
 909   if (bytecode == Bytecodes::_invokevirtual || bytecode == Bytecodes::_invokeinterface ||
 910       bytecode == Bytecodes::_invokespecial) {
 911     ResourceMark rm(current);
 912     methodHandle m (current, last_frame.method());
 913     Bytecode_invoke call(m, last_frame.bci());
 914     Symbol* signature = call.signature();
 915     receiver = Handle(current, last_frame.callee_receiver(signature));
 916 
 917     assert(Universe::heap()->is_in_or_null(receiver()),
 918            "sanity check");
 919     assert(receiver.is_null() ||
 920            !Universe::heap()->is_in(receiver->klass()),
 921            "sanity check");
 922   }
 923 
 924   // resolve method
 925   CallInfo info;
 926   constantPoolHandle pool(current, last_frame.method()->constants());
 927 
 928   methodHandle resolved_method;
 929 
 930   int method_index = last_frame.get_index_u2(bytecode);
 931   {
 932     JvmtiHideSingleStepping jhss(current);
 933     LinkResolver::resolve_invoke(info, receiver, pool,
 934                                  method_index, bytecode,
 935                                  ClassInitMode::init_preemptable, THREAD);
 936 
 937     if (HAS_PENDING_EXCEPTION) {
 938       if (ProfileTraps && PENDING_EXCEPTION->klass()->name() == vmSymbols::java_lang_NullPointerException()) {
 939         // Preserve the original exception across the call to note_trap()
 940         PreserveExceptionMark pm(current);
 941         // Recording the trap will help the compiler to potentially recognize this exception as "hot"
 942         note_trap(current, Deoptimization::Reason_null_check);
 943       }
 944       return;
 945     }
 946 
 947     resolved_method = methodHandle(current, info.resolved_method());
 948   } // end JvmtiHideSingleStepping
 949 
 950   update_invoke_cp_cache_entry(info, bytecode, resolved_method, pool, method_index);
 951 }
 952 
 953 void InterpreterRuntime::update_invoke_cp_cache_entry(CallInfo& info, Bytecodes::Code bytecode,
 954                                                       methodHandle& resolved_method,
 955                                                       constantPoolHandle& pool,
 956                                                       int method_index) {
 957   // Don't allow safepoints until the method is cached.
 958   NoSafepointVerifier nsv;
 959 
 960   // check if link resolution caused cpCache to be updated
 961   ConstantPoolCache* cache = pool->cache();
 962   if (cache->resolved_method_entry_at(method_index)->is_resolved(bytecode)) return;
 963 
 964 #ifdef ASSERT
 965   if (bytecode == Bytecodes::_invokeinterface) {
 966     if (resolved_method->method_holder() == vmClasses::Object_klass()) {
 967       // NOTE: THIS IS A FIX FOR A CORNER CASE in the JVM spec
 968       // (see also CallInfo::set_interface for details)
 969       assert(info.call_kind() == CallInfo::vtable_call ||
 970              info.call_kind() == CallInfo::direct_call, "");
 971       assert(resolved_method->is_final() || info.has_vtable_index(),
 972              "should have been set already");
 973     } else if (!resolved_method->has_itable_index()) {
 974       // Resolved something like CharSequence.toString.  Use vtable not itable.
 975       assert(info.call_kind() != CallInfo::itable_call, "");
 976     } else {
 977       // Setup itable entry
 978       assert(info.call_kind() == CallInfo::itable_call, "");
 979       int index = resolved_method->itable_index();
 980       assert(info.itable_index() == index, "");
 981     }
 982   } else if (bytecode == Bytecodes::_invokespecial) {
 983     assert(info.call_kind() == CallInfo::direct_call, "must be direct call");
 984   } else {
 985     assert(info.call_kind() == CallInfo::direct_call ||
 986            info.call_kind() == CallInfo::vtable_call, "");
 987   }
 988 #endif
 989   // Get sender and only set cpCache entry to resolved if it is not an
 990   // interface.  The receiver for invokespecial calls within interface
 991   // methods must be checked for every call.
 992   InstanceKlass* sender = pool->pool_holder();
 993 
 994   switch (info.call_kind()) {
 995   case CallInfo::direct_call:
 996     cache->set_direct_call(bytecode, method_index, resolved_method, sender->is_interface());
 997     break;
 998   case CallInfo::vtable_call:
 999     cache->set_vtable_call(bytecode, method_index, resolved_method, info.vtable_index());
1000     break;
1001   case CallInfo::itable_call:
1002     cache->set_itable_call(
1003       bytecode,
1004       method_index,
1005       info.resolved_klass(),
1006       resolved_method,
1007       info.itable_index());
1008     break;
1009   default:  ShouldNotReachHere();
1010   }
1011 }
1012 
1013 void InterpreterRuntime::cds_resolve_invoke(Bytecodes::Code bytecode, int method_index,
1014                                             constantPoolHandle& pool, TRAPS) {
1015   LinkInfo link_info(pool, method_index, bytecode, CHECK);
1016 
1017   if (!link_info.resolved_klass()->is_instance_klass() || InstanceKlass::cast(link_info.resolved_klass())->is_linked()) {
1018     CallInfo call_info;
1019     switch (bytecode) {
1020       case Bytecodes::_invokevirtual:   LinkResolver::cds_resolve_virtual_call  (call_info, link_info, CHECK); break;
1021       case Bytecodes::_invokeinterface: LinkResolver::cds_resolve_interface_call(call_info, link_info, CHECK); break;
1022       case Bytecodes::_invokestatic:    LinkResolver::cds_resolve_static_call   (call_info, link_info, CHECK); break;
1023       case Bytecodes::_invokespecial:   LinkResolver::cds_resolve_special_call  (call_info, link_info, CHECK); break;
1024 
1025       default: fatal("Unimplemented: %s", Bytecodes::name(bytecode));
1026     }
1027     methodHandle resolved_method(THREAD, call_info.resolved_method());
1028     guarantee(resolved_method->method_holder()->is_linked(), "");
1029     update_invoke_cp_cache_entry(call_info, bytecode, resolved_method, pool, method_index);
1030   } else {
1031     // FIXME: why a shared class is not linked yet?
1032     // Can't link it here since there are no guarantees it'll be prelinked on the next run.
1033     ResourceMark rm;
1034     InstanceKlass* resolved_iklass = InstanceKlass::cast(link_info.resolved_klass());
1035     log_info(aot, resolve)("Not resolved: class not linked: %s %s %s",
1036                            resolved_iklass->in_aot_cache() ? "in_aot_cache" : "",
1037                            resolved_iklass->init_state_name(),
1038                            resolved_iklass->external_name());
1039   }
1040 }
1041 
1042 // First time execution:  Resolve symbols, create a permanent MethodType object.
1043 void InterpreterRuntime::resolve_invokehandle(TRAPS) {
1044   JavaThread* current = THREAD;
1045   const Bytecodes::Code bytecode = Bytecodes::_invokehandle;
1046   LastFrameAccessor last_frame(current);
1047 
1048   // resolve method
1049   CallInfo info;
1050   constantPoolHandle pool(current, last_frame.method()->constants());
1051   int method_index = last_frame.get_index_u2(bytecode);
1052   {
1053     JvmtiHideSingleStepping jhss(current);
1054     JavaThread* THREAD = current; // For exception macros.
1055     LinkResolver::resolve_invoke(info, Handle(), pool,
1056                                  method_index, bytecode,
1057                                  CHECK);
1058   } // end JvmtiHideSingleStepping
1059 
1060   pool->cache()->set_method_handle(method_index, info);
1061 }
1062 
1063 void InterpreterRuntime::cds_resolve_invokehandle(int raw_index,
1064                                                   constantPoolHandle& pool, TRAPS) {
1065   const Bytecodes::Code bytecode = Bytecodes::_invokehandle;
1066   CallInfo info;
1067   LinkResolver::resolve_invoke(info, Handle(), pool, raw_index, bytecode, CHECK);
1068 
1069   pool->cache()->set_method_handle(raw_index, info);
1070 }
1071 
1072 // First time execution:  Resolve symbols, create a permanent CallSite object.
1073 void InterpreterRuntime::resolve_invokedynamic(TRAPS) {
1074   JavaThread* current = THREAD;
1075   LastFrameAccessor last_frame(current);
1076   const Bytecodes::Code bytecode = Bytecodes::_invokedynamic;
1077 
1078   // resolve method
1079   CallInfo info;
1080   constantPoolHandle pool(current, last_frame.method()->constants());
1081   int index = last_frame.get_index_u4(bytecode);
1082   {
1083     JvmtiHideSingleStepping jhss(current);
1084     JavaThread* THREAD = current; // For exception macros.
1085     LinkResolver::resolve_invoke(info, Handle(), pool,
1086                                  index, bytecode, CHECK);
1087   } // end JvmtiHideSingleStepping
1088 
1089   pool->cache()->set_dynamic_call(info, index);
1090 }
1091 
1092 void InterpreterRuntime::cds_resolve_invokedynamic(int raw_index,
1093                                                    constantPoolHandle& pool, TRAPS) {
1094   const Bytecodes::Code bytecode = Bytecodes::_invokedynamic;
1095   CallInfo info;
1096   LinkResolver::resolve_invoke(info, Handle(), pool, raw_index, bytecode, CHECK);
1097   pool->cache()->set_dynamic_call(info, raw_index);
1098 }
1099 
1100 // This function is the interface to the assembly code. It returns the resolved
1101 // cpCache entry.  This doesn't safepoint, but the helper routines safepoint.
1102 // This function will check for redefinition!
1103 JRT_ENTRY(void, InterpreterRuntime::resolve_from_cache(JavaThread* current, Bytecodes::Code bytecode)) {
1104   switch (bytecode) {
1105   case Bytecodes::_getstatic:
1106   case Bytecodes::_putstatic:
1107   case Bytecodes::_getfield:
1108   case Bytecodes::_putfield:
1109     resolve_get_put(bytecode, CHECK_AND_CLEAR_PREEMPTED);
1110     break;
1111   case Bytecodes::_invokevirtual:
1112   case Bytecodes::_invokespecial:
1113   case Bytecodes::_invokestatic:
1114   case Bytecodes::_invokeinterface:
1115     resolve_invoke(bytecode, CHECK_AND_CLEAR_PREEMPTED);
1116     break;
1117   case Bytecodes::_invokehandle:
1118     resolve_invokehandle(THREAD);
1119     break;
1120   case Bytecodes::_invokedynamic:
1121     resolve_invokedynamic(THREAD);
1122     break;
1123   default:
1124     fatal("unexpected bytecode: %s", Bytecodes::name(bytecode));
1125     break;
1126   }
1127 }
1128 JRT_END
1129 
1130 //------------------------------------------------------------------------------------------------------------------------
1131 // Miscellaneous
1132 
1133 
1134 nmethod* InterpreterRuntime::frequency_counter_overflow(JavaThread* current, address branch_bcp) {
1135   // Enable WXWrite: the function is called directly by interpreter.
1136   MACOS_AARCH64_ONLY(ThreadWXEnable wx(WXWrite, current));
1137 
1138   // frequency_counter_overflow_inner can throw async exception.
1139   nmethod* nm = frequency_counter_overflow_inner(current, branch_bcp);
1140   assert(branch_bcp != nullptr || nm == nullptr, "always returns null for non OSR requests");
1141   if (branch_bcp != nullptr && nm != nullptr) {
1142     // This was a successful request for an OSR nmethod.  Because
1143     // frequency_counter_overflow_inner ends with a safepoint check,
1144     // nm could have been unloaded so look it up again.  It's unsafe
1145     // to examine nm directly since it might have been freed and used
1146     // for something else.
1147     LastFrameAccessor last_frame(current);
1148     Method* method =  last_frame.method();
1149     int bci = method->bci_from(last_frame.bcp());
1150     nm = method->lookup_osr_nmethod_for(bci, CompLevel_none, false);
1151     BarrierSetNMethod* bs_nm = BarrierSet::barrier_set()->barrier_set_nmethod();
1152     if (nm != nullptr) {
1153       // in case the transition passed a safepoint we need to barrier this again
1154       if (!bs_nm->nmethod_osr_entry_barrier(nm)) {
1155         nm = nullptr;
1156       }
1157     }
1158   }
1159   if (nm != nullptr && current->is_interp_only_mode()) {
1160     // Normally we never get an nm if is_interp_only_mode() is true, because
1161     // policy()->event has a check for this and won't compile the method when
1162     // true. However, it's possible for is_interp_only_mode() to become true
1163     // during the compilation. We don't want to return the nm in that case
1164     // because we want to continue to execute interpreted.
1165     nm = nullptr;
1166   }
1167 #ifndef PRODUCT
1168   if (TraceOnStackReplacement) {
1169     if (nm != nullptr) {
1170       tty->print("OSR entry @ pc: " INTPTR_FORMAT ": ", p2i(nm->osr_entry()));
1171       nm->print();
1172     }
1173   }
1174 #endif
1175   return nm;
1176 }
1177 
1178 JRT_ENTRY(nmethod*,
1179           InterpreterRuntime::frequency_counter_overflow_inner(JavaThread* current, address branch_bcp))
1180   // use UnlockFlagSaver to clear and restore the _do_not_unlock_if_synchronized
1181   // flag, in case this method triggers classloading which will call into Java.
1182   UnlockFlagSaver fs(current);
1183 
1184   LastFrameAccessor last_frame(current);
1185   assert(last_frame.is_interpreted_frame(), "must come from interpreter");
1186   methodHandle method(current, last_frame.method());
1187   const int branch_bci = branch_bcp != nullptr ? method->bci_from(branch_bcp) : InvocationEntryBci;
1188   const int bci = branch_bcp != nullptr ? method->bci_from(last_frame.bcp()) : InvocationEntryBci;
1189 
1190   nmethod* osr_nm = CompilationPolicy::event(method, method, branch_bci, bci, CompLevel_none, nullptr, CHECK_NULL);
1191 
1192   BarrierSetNMethod* bs_nm = BarrierSet::barrier_set()->barrier_set_nmethod();
1193   if (osr_nm != nullptr) {
1194     if (!bs_nm->nmethod_osr_entry_barrier(osr_nm)) {
1195       osr_nm = nullptr;
1196     }
1197   }
1198   return osr_nm;
1199 JRT_END
1200 
1201 JRT_LEAF(jint, InterpreterRuntime::bcp_to_di(Method* method, address cur_bcp))
1202   assert(ProfileInterpreter, "must be profiling interpreter");
1203   int bci = method->bci_from(cur_bcp);
1204   MethodData* mdo = method->method_data();
1205   if (mdo == nullptr)  return 0;
1206   return mdo->bci_to_di(bci);
1207 JRT_END
1208 
1209 #ifdef ASSERT
1210 JRT_LEAF(void, InterpreterRuntime::verify_mdp(Method* method, address bcp, address mdp))
1211   assert(ProfileInterpreter, "must be profiling interpreter");
1212 
1213   MethodData* mdo = method->method_data();
1214   assert(mdo != nullptr, "must not be null");
1215 
1216   int bci = method->bci_from(bcp);
1217 
1218   address mdp2 = mdo->bci_to_dp(bci);
1219   if (mdp != mdp2) {
1220     ResourceMark rm;
1221     tty->print_cr("FAILED verify : actual mdp %p   expected mdp %p @ bci %d", mdp, mdp2, bci);
1222     int current_di = mdo->dp_to_di(mdp);
1223     int expected_di  = mdo->dp_to_di(mdp2);
1224     tty->print_cr("  actual di %d   expected di %d", current_di, expected_di);
1225     int expected_approx_bci = mdo->data_at(expected_di)->bci();
1226     int approx_bci = -1;
1227     if (current_di >= 0) {
1228       approx_bci = mdo->data_at(current_di)->bci();
1229     }
1230     tty->print_cr("  actual bci is %d  expected bci %d", approx_bci, expected_approx_bci);
1231     mdo->print_on(tty);
1232     method->print_codes();
1233   }
1234   assert(mdp == mdp2, "wrong mdp");
1235 JRT_END
1236 #endif // ASSERT
1237 
1238 JRT_ENTRY(void, InterpreterRuntime::update_mdp_for_ret(JavaThread* current, int return_bci))
1239   assert(ProfileInterpreter, "must be profiling interpreter");
1240   ResourceMark rm(current);
1241   LastFrameAccessor last_frame(current);
1242   assert(last_frame.is_interpreted_frame(), "must come from interpreter");
1243   MethodData* h_mdo = last_frame.method()->method_data();
1244 
1245   // Grab a lock to ensure atomic access to setting the return bci and
1246   // the displacement.  This can block and GC, invalidating all naked oops.
1247   MutexLocker ml(RetData_lock);
1248 
1249   // ProfileData is essentially a wrapper around a derived oop, so we
1250   // need to take the lock before making any ProfileData structures.
1251   ProfileData* data = h_mdo->data_at(h_mdo->dp_to_di(last_frame.mdp()));
1252   guarantee(data != nullptr, "profile data must be valid");
1253   RetData* rdata = data->as_RetData();
1254   address new_mdp = rdata->fixup_ret(return_bci, h_mdo);
1255   last_frame.set_mdp(new_mdp);
1256 JRT_END
1257 
1258 JRT_ENTRY(MethodCounters*, InterpreterRuntime::build_method_counters(JavaThread* current, Method* m))
1259   return Method::build_method_counters(current, m);
1260 JRT_END
1261 
1262 
1263 JRT_ENTRY(void, InterpreterRuntime::at_safepoint(JavaThread* current))
1264   // We used to need an explicit preserve_arguments here for invoke bytecodes. However,
1265   // stack traversal automatically takes care of preserving arguments for invoke, so
1266   // this is no longer needed.
1267 
1268   // JRT_END does an implicit safepoint check, hence we are guaranteed to block
1269   // if this is called during a safepoint
1270 
1271   if (JvmtiExport::should_post_single_step()) {
1272     // This function is called by the interpreter when single stepping. Such single
1273     // stepping could unwind a frame. Then, it is important that we process any frames
1274     // that we might return into.
1275     StackWatermarkSet::before_unwind(current);
1276 
1277     // We are called during regular safepoints and when the VM is
1278     // single stepping. If any thread is marked for single stepping,
1279     // then we may have JVMTI work to do.
1280     LastFrameAccessor last_frame(current);
1281     JvmtiExport::at_single_stepping_point(current, last_frame.method(), last_frame.bcp());
1282   }
1283 JRT_END
1284 
1285 JRT_LEAF(void, InterpreterRuntime::at_unwind(JavaThread* current))
1286   assert(current == JavaThread::current(), "pre-condition");
1287   JFR_ONLY(Jfr::check_and_process_sample_request(current);)
1288   // This function is called by the interpreter when the return poll found a reason
1289   // to call the VM. The reason could be that we are returning into a not yet safe
1290   // to access frame. We handle that below.
1291   // Note that this path does not check for single stepping, because we do not want
1292   // to single step when unwinding frames for an exception being thrown. Instead,
1293   // such single stepping code will use the safepoint table, which will use the
1294   // InterpreterRuntime::at_safepoint callback.
1295   StackWatermarkSet::before_unwind(current);
1296 JRT_END
1297 
1298 JRT_ENTRY(void, InterpreterRuntime::post_field_access(JavaThread* current, oopDesc* obj,
1299                                                       ResolvedFieldEntry *entry))
1300 
1301   assert(entry->is_valid(), "Invalid ResolvedFieldEntry");
1302   // check the access_flags for the field in the klass
1303 
1304   InstanceKlass* ik = entry->field_holder();
1305   int index = entry->field_index();
1306   if (!ik->field_status(index).is_access_watched()) return;
1307 
1308   bool is_static = (obj == nullptr);
1309   bool is_flat = entry->is_flat();
1310   HandleMark hm(current);
1311 
1312   Handle h_obj;
1313   if (!is_static) {
1314     // non-static field accessors have an object, but we need a handle
1315     h_obj = Handle(current, obj);
1316   }
1317   InstanceKlass* field_holder = entry->field_holder(); // HERE
1318   jfieldID fid = jfieldIDWorkaround::to_jfieldID(field_holder, entry->field_offset(), is_static, is_flat);
1319   LastFrameAccessor last_frame(current);
1320   JvmtiExport::post_field_access(current, last_frame.method(), last_frame.bcp(), field_holder, h_obj, fid);
1321 JRT_END
1322 
1323 JRT_ENTRY(void, InterpreterRuntime::post_field_modification(JavaThread* current, oopDesc* obj,
1324                                                             ResolvedFieldEntry *entry, jvalue *value))
1325 
1326   assert(entry->is_valid(), "Invalid ResolvedFieldEntry");
1327   InstanceKlass* ik = entry->field_holder();
1328 
1329   // check the access_flags for the field in the klass
1330   int index = entry->field_index();
1331   // bail out if field modifications are not watched
1332   if (!ik->field_status(index).is_modification_watched()) return;
1333 
1334   char sig_type = '\0';
1335 
1336   switch((TosState)entry->tos_state()) {
1337     case btos: sig_type = JVM_SIGNATURE_BYTE;    break;
1338     case ztos: sig_type = JVM_SIGNATURE_BOOLEAN; break;
1339     case ctos: sig_type = JVM_SIGNATURE_CHAR;    break;
1340     case stos: sig_type = JVM_SIGNATURE_SHORT;   break;
1341     case itos: sig_type = JVM_SIGNATURE_INT;     break;
1342     case ftos: sig_type = JVM_SIGNATURE_FLOAT;   break;
1343     case atos: sig_type = JVM_SIGNATURE_CLASS;   break;
1344     case ltos: sig_type = JVM_SIGNATURE_LONG;    break;
1345     case dtos: sig_type = JVM_SIGNATURE_DOUBLE;  break;
1346     default:  ShouldNotReachHere(); return;
1347   }
1348 
1349   bool is_static = (obj == nullptr);
1350   bool is_flat = entry->is_flat();
1351 
1352   HandleMark hm(current);
1353   jfieldID fid = jfieldIDWorkaround::to_jfieldID(ik, entry->field_offset(), is_static, is_flat);
1354   jvalue fvalue;
1355 #ifdef _LP64
1356   fvalue = *value;
1357 #else
1358   // Long/double values are stored unaligned and also noncontiguously with
1359   // tagged stacks.  We can't just do a simple assignment even in the non-
1360   // J/D cases because a C++ compiler is allowed to assume that a jvalue is
1361   // 8-byte aligned, and interpreter stack slots are only 4-byte aligned.
1362   // We assume that the two halves of longs/doubles are stored in interpreter
1363   // stack slots in platform-endian order.
1364   jlong_accessor u;
1365   jint* newval = (jint*)value;
1366   u.words[0] = newval[0];
1367   u.words[1] = newval[Interpreter::stackElementWords]; // skip if tag
1368   fvalue.j = u.long_value;
1369 #endif // _LP64
1370 
1371   Handle h_obj;
1372   if (!is_static) {
1373     // non-static field accessors have an object, but we need a handle
1374     h_obj = Handle(current, obj);
1375   }
1376 
1377   LastFrameAccessor last_frame(current);
1378   JvmtiExport::post_raw_field_modification(current, last_frame.method(), last_frame.bcp(), ik, h_obj,
1379                                            fid, sig_type, &fvalue);
1380 JRT_END
1381 
1382 JRT_ENTRY(void, InterpreterRuntime::post_method_entry(JavaThread* current))
1383   LastFrameAccessor last_frame(current);
1384   JvmtiExport::post_method_entry(current, last_frame.method(), last_frame.get_frame());
1385 JRT_END
1386 
1387 
1388 // This is a JRT_BLOCK_ENTRY because we have to stash away the return oop
1389 // before transitioning to VM, and restore it after transitioning back
1390 // to Java. The return oop at the top-of-stack, is not walked by the GC.
1391 JRT_BLOCK_ENTRY(void, InterpreterRuntime::post_method_exit(JavaThread* current))
1392   LastFrameAccessor last_frame(current);
1393   JvmtiExport::post_method_exit(current, last_frame.method(), last_frame.get_frame());
1394 JRT_END
1395 
1396 JRT_LEAF(int, InterpreterRuntime::interpreter_contains(address pc))
1397 {
1398   return (Interpreter::contains(Continuation::get_top_return_pc_post_barrier(JavaThread::current(), pc)) ? 1 : 0);
1399 }
1400 JRT_END
1401 
1402 
1403 // Implementation of SignatureHandlerLibrary
1404 
1405 #ifndef SHARING_FAST_NATIVE_FINGERPRINTS
1406 // Dummy definition (else normalization method is defined in CPU
1407 // dependent code)
1408 uint64_t InterpreterRuntime::normalize_fast_native_fingerprint(uint64_t fingerprint) {
1409   return fingerprint;
1410 }
1411 #endif
1412 
1413 address SignatureHandlerLibrary::set_handler_blob() {
1414   BufferBlob* handler_blob = BufferBlob::create("native signature handlers", blob_size);
1415   if (handler_blob == nullptr) {
1416     return nullptr;
1417   }
1418   address handler = handler_blob->code_begin();
1419   _handler_blob = handler_blob;
1420   _handler = handler;
1421   return handler;
1422 }
1423 
1424 void SignatureHandlerLibrary::initialize() {
1425   if (_fingerprints != nullptr) {
1426     return;
1427   }
1428   if (set_handler_blob() == nullptr) {
1429     vm_exit_out_of_memory(blob_size, OOM_MALLOC_ERROR, "native signature handlers");
1430   }
1431 
1432   BufferBlob* bb = BufferBlob::create("Signature Handler Temp Buffer",
1433                                       SignatureHandlerLibrary::buffer_size);
1434   _buffer = bb->code_begin();
1435 
1436   _fingerprints = new (mtCode) GrowableArray<uint64_t>(32, mtCode);
1437   _handlers     = new (mtCode) GrowableArray<address>(32, mtCode);
1438 }
1439 
1440 address SignatureHandlerLibrary::set_handler(CodeBuffer* buffer) {
1441   address handler   = _handler;
1442   int     insts_size = buffer->pure_insts_size();
1443   if (handler + insts_size > _handler_blob->code_end()) {
1444     // get a new handler blob
1445     handler = set_handler_blob();
1446   }
1447   if (handler != nullptr) {
1448     memcpy(handler, buffer->insts_begin(), insts_size);
1449     pd_set_handler(handler);
1450     ICache::invalidate_range(handler, insts_size);
1451     _handler = handler + insts_size;
1452   }
1453   return handler;
1454 }
1455 
1456 void SignatureHandlerLibrary::add(const methodHandle& method) {
1457   if (method->signature_handler() == nullptr) {
1458     // use slow signature handler if we can't do better
1459     int handler_index = -1;
1460     // check if we can use customized (fast) signature handler
1461     if (UseFastSignatureHandlers && method->size_of_parameters() <= Fingerprinter::fp_max_size_of_parameters) {
1462       // use customized signature handler
1463       MutexLocker mu(SignatureHandlerLibrary_lock);
1464       // make sure data structure is initialized
1465       initialize();
1466       // lookup method signature's fingerprint
1467       uint64_t fingerprint = Fingerprinter(method).fingerprint();
1468       // allow CPU dependent code to optimize the fingerprints for the fast handler
1469       fingerprint = InterpreterRuntime::normalize_fast_native_fingerprint(fingerprint);
1470       handler_index = _fingerprints->find(fingerprint);
1471       // create handler if necessary
1472       if (handler_index < 0) {
1473         ResourceMark rm;
1474         ptrdiff_t align_offset = align_up(_buffer, CodeEntryAlignment) - (address)_buffer;
1475         CodeBuffer buffer((address)(_buffer + align_offset),
1476                           checked_cast<int>(SignatureHandlerLibrary::buffer_size - align_offset));
1477         InterpreterRuntime::SignatureHandlerGenerator(method, &buffer).generate(fingerprint);
1478         // copy into code heap
1479         address handler = set_handler(&buffer);
1480         if (handler == nullptr) {
1481           // use slow signature handler (without memorizing it in the fingerprints)
1482         } else {
1483           // debugging support
1484           if (PrintSignatureHandlers && (handler != Interpreter::slow_signature_handler())) {
1485             ttyLocker ttyl;
1486             tty->cr();
1487             tty->print_cr("argument handler #%d for: %s %s (fingerprint = " UINT64_FORMAT ", %d bytes generated)",
1488                           _handlers->length(),
1489                           (method->is_static() ? "static" : "receiver"),
1490                           method->name_and_sig_as_C_string(),
1491                           fingerprint,
1492                           buffer.insts_size());
1493             if (buffer.insts_size() > 0) {
1494               Disassembler::decode(handler, handler + buffer.insts_size(), tty
1495                                    NOT_PRODUCT(COMMA &buffer.asm_remarks()));
1496             }
1497 #ifndef PRODUCT
1498             address rh_begin = Interpreter::result_handler(method()->result_type());
1499             if (CodeCache::contains(rh_begin)) {
1500               // else it might be special platform dependent values
1501               tty->print_cr(" --- associated result handler ---");
1502               address rh_end = rh_begin;
1503               while (*(int*)rh_end != 0) {
1504                 rh_end += sizeof(int);
1505               }
1506               Disassembler::decode(rh_begin, rh_end);
1507             } else {
1508               tty->print_cr(" associated result handler: " PTR_FORMAT, p2i(rh_begin));
1509             }
1510 #endif
1511           }
1512           // add handler to library
1513           _fingerprints->append(fingerprint);
1514           _handlers->append(handler);
1515           // set handler index
1516           assert(_fingerprints->length() == _handlers->length(), "sanity check");
1517           handler_index = _fingerprints->length() - 1;
1518         }
1519       }
1520       // Set handler under SignatureHandlerLibrary_lock
1521       if (handler_index < 0) {
1522         // use generic signature handler
1523         method->set_signature_handler(Interpreter::slow_signature_handler());
1524       } else {
1525         // set handler
1526         method->set_signature_handler(_handlers->at(handler_index));
1527       }
1528     } else {
1529       DEBUG_ONLY(JavaThread::current()->check_possible_safepoint());
1530       // use generic signature handler
1531       method->set_signature_handler(Interpreter::slow_signature_handler());
1532     }
1533   }
1534 #ifdef ASSERT
1535   int handler_index = -1;
1536   int fingerprint_index = -2;
1537   {
1538     // '_handlers' and '_fingerprints' are 'GrowableArray's and are NOT synchronized
1539     // in any way if accessed from multiple threads. To avoid races with another
1540     // thread which may change the arrays in the above, mutex protected block, we
1541     // have to protect this read access here with the same mutex as well!
1542     MutexLocker mu(SignatureHandlerLibrary_lock);
1543     if (_handlers != nullptr) {
1544       handler_index = _handlers->find(method->signature_handler());
1545       uint64_t fingerprint = Fingerprinter(method).fingerprint();
1546       fingerprint = InterpreterRuntime::normalize_fast_native_fingerprint(fingerprint);
1547       fingerprint_index = _fingerprints->find(fingerprint);
1548     }
1549   }
1550   assert(method->signature_handler() == Interpreter::slow_signature_handler() ||
1551          handler_index == fingerprint_index, "sanity check");
1552 #endif // ASSERT
1553 }
1554 
1555 BufferBlob*              SignatureHandlerLibrary::_handler_blob = nullptr;
1556 address                  SignatureHandlerLibrary::_handler      = nullptr;
1557 GrowableArray<uint64_t>* SignatureHandlerLibrary::_fingerprints = nullptr;
1558 GrowableArray<address>*  SignatureHandlerLibrary::_handlers     = nullptr;
1559 address                  SignatureHandlerLibrary::_buffer       = nullptr;
1560 
1561 
1562 JRT_ENTRY(void, InterpreterRuntime::prepare_native_call(JavaThread* current, Method* method))
1563   methodHandle m(current, method);
1564   assert(m->is_native(), "sanity check");
1565   // lookup native function entry point if it doesn't exist
1566   if (!m->has_native_function()) {
1567     NativeLookup::lookup(m, CHECK);
1568   }
1569   // make sure signature handler is installed
1570   SignatureHandlerLibrary::add(m);
1571   // The interpreter entry point checks the signature handler first,
1572   // before trying to fetch the native entry point and klass mirror.
1573   // We must set the signature handler last, so that multiple processors
1574   // preparing the same method will be sure to see non-null entry & mirror.
1575 JRT_END
1576 
1577 #if defined(AMD64) || defined(ARM)
1578 JRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* current, void* src_address, void* dest_address))
1579   assert(current == JavaThread::current(), "pre-condition");
1580   if (src_address == dest_address) {
1581     return;
1582   }
1583   ResourceMark rm;
1584   LastFrameAccessor last_frame(current);
1585   assert(last_frame.is_interpreted_frame(), "");
1586   jint bci = last_frame.bci();
1587   methodHandle mh(current, last_frame.method());
1588   Bytecode_invoke invoke(mh, bci);
1589   ArgumentSizeComputer asc(invoke.signature());
1590   int size_of_arguments = (asc.size() + (invoke.has_receiver() ? 1 : 0)); // receiver
1591   Copy::conjoint_jbytes(src_address, dest_address,
1592                        size_of_arguments * Interpreter::stackElementSize);
1593 JRT_END
1594 #endif
1595 
1596 #if INCLUDE_JVMTI
1597 // This is a support of the JVMTI PopFrame interface.
1598 // Make sure it is an invokestatic of a polymorphic intrinsic that has a member_name argument
1599 // and return it as a vm_result_oop so that it can be reloaded in the list of invokestatic parameters.
1600 // The member_name argument is a saved reference (in local#0) to the member_name.
1601 // For backward compatibility with some JDK versions (7, 8) it can also be a direct method handle.
1602 // FIXME: remove DMH case after j.l.i.InvokerBytecodeGenerator code shape is updated.
1603 JRT_ENTRY(void, InterpreterRuntime::member_name_arg_or_null(JavaThread* current, address member_name,
1604                                                             Method* method, address bcp))
1605   Bytecodes::Code code = Bytecodes::code_at(method, bcp);
1606   if (code != Bytecodes::_invokestatic) {
1607     return;
1608   }
1609   ConstantPool* cpool = method->constants();
1610   int cp_index = Bytes::get_native_u2(bcp + 1);
1611   Symbol* cname = cpool->klass_name_at(cpool->klass_ref_index_at(cp_index, code));
1612   Symbol* mname = cpool->name_ref_at(cp_index, code);
1613 
1614   if (MethodHandles::has_member_arg(cname, mname)) {
1615     oop member_name_oop = cast_to_oop(member_name);
1616     if (java_lang_invoke_DirectMethodHandle::is_instance(member_name_oop)) {
1617       // FIXME: remove after j.l.i.InvokerBytecodeGenerator code shape is updated.
1618       member_name_oop = java_lang_invoke_DirectMethodHandle::member(member_name_oop);
1619     }
1620     current->set_vm_result_oop(member_name_oop);
1621   } else {
1622     current->set_vm_result_oop(nullptr);
1623   }
1624 JRT_END
1625 #endif // INCLUDE_JVMTI
1626 
1627 #ifndef PRODUCT
1628 // This must be a JRT_LEAF function because the interpreter must save registers on x86 to
1629 // call this, which changes rsp and makes the interpreter's expression stack not walkable.
1630 // The generated code still uses call_VM because that will set up the frame pointer for
1631 // bcp and method.
1632 JRT_LEAF(intptr_t, InterpreterRuntime::trace_bytecode(JavaThread* current, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2))
1633   assert(current == JavaThread::current(), "pre-condition");
1634   LastFrameAccessor last_frame(current);
1635   assert(last_frame.is_interpreted_frame(), "must be an interpreted frame");
1636   methodHandle mh(current, last_frame.method());
1637   BytecodeTracer::trace_interpreter(mh, last_frame.bcp(), tos, tos2);
1638   return preserve_this_value;
1639 JRT_END
1640 #endif // !PRODUCT
1641 
1642 #ifdef ASSERT
1643 bool InterpreterRuntime::is_preemptable_call(address entry_point) {
1644   return entry_point == CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorenter) ||
1645          entry_point == CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_from_cache) ||
1646          entry_point == CAST_FROM_FN_PTR(address, InterpreterRuntime::_new);
1647 }
1648 #endif // ASSERT