src/share/vm/interpreter/interpreterRuntime.cpp

Thu, 27 Dec 2018 11:43:33 +0800

author
aoqi
date
Thu, 27 Dec 2018 11:43:33 +0800
changeset 9448
73d689add964
parent 9301
d47844b56aaf
parent 9138
b56ab8e56604
child 10015
eb7ce841ccec
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1997, 2018, 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  */
    25 /*
    26  * This file has been modified by Loongson Technology in 2015. These
    27  * modifications are Copyright (c) 2015 Loongson Technology, and are made
    28  * available on the same license terms set forth above.
    29  */
    31 #include "precompiled.hpp"
    32 #include "classfile/systemDictionary.hpp"
    33 #include "classfile/vmSymbols.hpp"
    34 #include "compiler/compileBroker.hpp"
    35 #include "compiler/disassembler.hpp"
    36 #include "gc_interface/collectedHeap.hpp"
    37 #include "interpreter/interpreter.hpp"
    38 #include "interpreter/interpreterRuntime.hpp"
    39 #include "interpreter/linkResolver.hpp"
    40 #include "interpreter/templateTable.hpp"
    41 #include "memory/oopFactory.hpp"
    42 #include "memory/universe.inline.hpp"
    43 #include "oops/constantPool.hpp"
    44 #include "oops/instanceKlass.hpp"
    45 #include "oops/methodData.hpp"
    46 #include "oops/objArrayKlass.hpp"
    47 #include "oops/oop.inline.hpp"
    48 #include "oops/symbol.hpp"
    49 #include "prims/jvmtiExport.hpp"
    50 #include "prims/nativeLookup.hpp"
    51 #include "runtime/biasedLocking.hpp"
    52 #include "runtime/compilationPolicy.hpp"
    53 #include "runtime/deoptimization.hpp"
    54 #include "runtime/fieldDescriptor.hpp"
    55 #include "runtime/handles.inline.hpp"
    56 #include "runtime/interfaceSupport.hpp"
    57 #include "runtime/java.hpp"
    58 #include "runtime/jfieldIDWorkaround.hpp"
    59 #include "runtime/osThread.hpp"
    60 #include "runtime/sharedRuntime.hpp"
    61 #include "runtime/stubRoutines.hpp"
    62 #include "runtime/synchronizer.hpp"
    63 #include "runtime/threadCritical.hpp"
    64 #include "utilities/events.hpp"
    65 #ifdef TARGET_ARCH_x86
    66 # include "vm_version_x86.hpp"
    67 #endif
    68 #ifdef TARGET_ARCH_mips
    69 # include "vm_version_mips.hpp"
    70 #endif
    71 #ifdef TARGET_ARCH_sparc
    72 # include "vm_version_sparc.hpp"
    73 #endif
    74 #ifdef TARGET_ARCH_zero
    75 # include "vm_version_zero.hpp"
    76 #endif
    77 #ifdef TARGET_ARCH_arm
    78 # include "vm_version_arm.hpp"
    79 #endif
    80 #ifdef TARGET_ARCH_ppc
    81 # include "vm_version_ppc.hpp"
    82 #endif
    83 #ifdef COMPILER2
    84 #include "opto/runtime.hpp"
    85 #endif
    87 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
    89 class UnlockFlagSaver {
    90   private:
    91     JavaThread* _thread;
    92     bool _do_not_unlock;
    93   public:
    94     UnlockFlagSaver(JavaThread* t) {
    95       _thread = t;
    96       _do_not_unlock = t->do_not_unlock_if_synchronized();
    97       t->set_do_not_unlock_if_synchronized(false);
    98     }
    99     ~UnlockFlagSaver() {
   100       _thread->set_do_not_unlock_if_synchronized(_do_not_unlock);
   101     }
   102 };
   104 //------------------------------------------------------------------------------------------------------------------------
   105 // State accessors
   107 void InterpreterRuntime::set_bcp_and_mdp(address bcp, JavaThread *thread) {
   108   last_frame(thread).interpreter_frame_set_bcp(bcp);
   109   if (ProfileInterpreter) {
   110     // ProfileTraps uses MDOs independently of ProfileInterpreter.
   111     // That is why we must check both ProfileInterpreter and mdo != NULL.
   112     MethodData* mdo = last_frame(thread).interpreter_frame_method()->method_data();
   113     if (mdo != NULL) {
   114       NEEDS_CLEANUP;
   115       last_frame(thread).interpreter_frame_set_mdp(mdo->bci_to_dp(last_frame(thread).interpreter_frame_bci()));
   116     }
   117   }
   118 }
   120 //------------------------------------------------------------------------------------------------------------------------
   121 // Constants
   124 IRT_ENTRY(void, InterpreterRuntime::ldc(JavaThread* thread, bool wide))
   125   // access constant pool
   126   ConstantPool* pool = method(thread)->constants();
   127   int index = wide ? get_index_u2(thread, Bytecodes::_ldc_w) : get_index_u1(thread, Bytecodes::_ldc);
   128   constantTag tag = pool->tag_at(index);
   130   assert (tag.is_unresolved_klass() || tag.is_klass(), "wrong ldc call");
   131   Klass* klass = pool->klass_at(index, CHECK);
   132     oop java_class = klass->java_mirror();
   133     thread->set_vm_result(java_class);
   134 IRT_END
   136 IRT_ENTRY(void, InterpreterRuntime::resolve_ldc(JavaThread* thread, Bytecodes::Code bytecode)) {
   137   assert(bytecode == Bytecodes::_fast_aldc ||
   138          bytecode == Bytecodes::_fast_aldc_w, "wrong bc");
   139   ResourceMark rm(thread);
   140   methodHandle m (thread, method(thread));
   141   Bytecode_loadconstant ldc(m, bci(thread));
   142   oop result = ldc.resolve_constant(CHECK);
   143 #ifdef ASSERT
   144   {
   145     // The bytecode wrappers aren't GC-safe so construct a new one
   146     Bytecode_loadconstant ldc2(m, bci(thread));
   147     oop coop = m->constants()->resolved_references()->obj_at(ldc2.cache_index());
   148     assert(result == coop, "expected result for assembly code");
   149   }
   150 #endif
   151   thread->set_vm_result(result);
   152 }
   153 IRT_END
   156 //------------------------------------------------------------------------------------------------------------------------
   157 // Allocation
   159 IRT_ENTRY(void, InterpreterRuntime::_new(JavaThread* thread, ConstantPool* pool, int index))
   160   Klass* k_oop = pool->klass_at(index, CHECK);
   161   instanceKlassHandle klass (THREAD, k_oop);
   163   // Make sure we are not instantiating an abstract klass
   164   klass->check_valid_for_instantiation(true, CHECK);
   166   // Make sure klass is initialized
   167   klass->initialize(CHECK);
   169   // At this point the class may not be fully initialized
   170   // because of recursive initialization. If it is fully
   171   // initialized & has_finalized is not set, we rewrite
   172   // it into its fast version (Note: no locking is needed
   173   // here since this is an atomic byte write and can be
   174   // done more than once).
   175   //
   176   // Note: In case of classes with has_finalized we don't
   177   //       rewrite since that saves us an extra check in
   178   //       the fast version which then would call the
   179   //       slow version anyway (and do a call back into
   180   //       Java).
   181   //       If we have a breakpoint, then we don't rewrite
   182   //       because the _breakpoint bytecode would be lost.
   183   oop obj = klass->allocate_instance(CHECK);
   184   thread->set_vm_result(obj);
   185 IRT_END
   188 IRT_ENTRY(void, InterpreterRuntime::newarray(JavaThread* thread, BasicType type, jint size))
   189   oop obj = oopFactory::new_typeArray(type, size, CHECK);
   190   thread->set_vm_result(obj);
   191 IRT_END
   194 IRT_ENTRY(void, InterpreterRuntime::anewarray(JavaThread* thread, ConstantPool* pool, int index, jint size))
   195   // Note: no oopHandle for pool & klass needed since they are not used
   196   //       anymore after new_objArray() and no GC can happen before.
   197   //       (This may have to change if this code changes!)
   198   Klass*    klass = pool->klass_at(index, CHECK);
   199   objArrayOop obj = oopFactory::new_objArray(klass, size, CHECK);
   200   thread->set_vm_result(obj);
   201 IRT_END
   204 IRT_ENTRY(void, InterpreterRuntime::multianewarray(JavaThread* thread, jint* first_size_address))
   205   // We may want to pass in more arguments - could make this slightly faster
   206   ConstantPool* constants = method(thread)->constants();
   207   int          i = get_index_u2(thread, Bytecodes::_multianewarray);
   208   Klass* klass = constants->klass_at(i, CHECK);
   209   int   nof_dims = number_of_dimensions(thread);
   210   assert(klass->is_klass(), "not a class");
   211   assert(nof_dims >= 1, "multianewarray rank must be nonzero");
   213   // We must create an array of jints to pass to multi_allocate.
   214   ResourceMark rm(thread);
   215   const int small_dims = 10;
   216   jint dim_array[small_dims];
   217   jint *dims = &dim_array[0];
   218   if (nof_dims > small_dims) {
   219     dims = (jint*) NEW_RESOURCE_ARRAY(jint, nof_dims);
   220   }
   221   for (int index = 0; index < nof_dims; index++) {
   222     // offset from first_size_address is addressed as local[index]
   223     int n = Interpreter::local_offset_in_bytes(index)/jintSize;
   224     dims[index] = first_size_address[n];
   225   }
   226   oop obj = ArrayKlass::cast(klass)->multi_allocate(nof_dims, dims, CHECK);
   227   thread->set_vm_result(obj);
   228 IRT_END
   231 IRT_ENTRY(void, InterpreterRuntime::register_finalizer(JavaThread* thread, oopDesc* obj))
   232   assert(obj->is_oop(), "must be a valid oop");
   233   assert(obj->klass()->has_finalizer(), "shouldn't be here otherwise");
   234   InstanceKlass::register_finalizer(instanceOop(obj), CHECK);
   235 IRT_END
   238 // Quicken instance-of and check-cast bytecodes
   239 IRT_ENTRY(void, InterpreterRuntime::quicken_io_cc(JavaThread* thread))
   240   // Force resolving; quicken the bytecode
   241   int which = get_index_u2(thread, Bytecodes::_checkcast);
   242   ConstantPool* cpool = method(thread)->constants();
   243   // We'd expect to assert that we're only here to quicken bytecodes, but in a multithreaded
   244   // program we might have seen an unquick'd bytecode in the interpreter but have another
   245   // thread quicken the bytecode before we get here.
   246   // assert( cpool->tag_at(which).is_unresolved_klass(), "should only come here to quicken bytecodes" );
   247   Klass* klass = cpool->klass_at(which, CHECK);
   248   thread->set_vm_result_2(klass);
   249 IRT_END
   252 //------------------------------------------------------------------------------------------------------------------------
   253 // Exceptions
   255 void InterpreterRuntime::note_trap_inner(JavaThread* thread, int reason,
   256                                          methodHandle trap_method, int trap_bci, TRAPS) {
   257   if (trap_method.not_null()) {
   258     MethodData* trap_mdo = trap_method->method_data();
   259     if (trap_mdo == NULL) {
   260       Method::build_interpreter_method_data(trap_method, THREAD);
   261       if (HAS_PENDING_EXCEPTION) {
   262         assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())),
   263                "we expect only an OOM error here");
   264         CLEAR_PENDING_EXCEPTION;
   265       }
   266       trap_mdo = trap_method->method_data();
   267       // and fall through...
   268     }
   269     if (trap_mdo != NULL) {
   270       // Update per-method count of trap events.  The interpreter
   271       // is updating the MDO to simulate the effect of compiler traps.
   272       Deoptimization::update_method_data_from_interpreter(trap_mdo, trap_bci, reason);
   273     }
   274   }
   275 }
   277 // Assume the compiler is (or will be) interested in this event.
   278 // If necessary, create an MDO to hold the information, and record it.
   279 void InterpreterRuntime::note_trap(JavaThread* thread, int reason, TRAPS) {
   280   assert(ProfileTraps, "call me only if profiling");
   281   methodHandle trap_method(thread, method(thread));
   282   int trap_bci = trap_method->bci_from(bcp(thread));
   283   note_trap_inner(thread, reason, trap_method, trap_bci, THREAD);
   284 }
   286 #ifdef CC_INTERP
   287 // As legacy note_trap, but we have more arguments.
   288 IRT_ENTRY(void, InterpreterRuntime::note_trap(JavaThread* thread, int reason, Method *method, int trap_bci))
   289   methodHandle trap_method(method);
   290   note_trap_inner(thread, reason, trap_method, trap_bci, THREAD);
   291 IRT_END
   293 // Class Deoptimization is not visible in BytecodeInterpreter, so we need a wrapper
   294 // for each exception.
   295 void InterpreterRuntime::note_nullCheck_trap(JavaThread* thread, Method *method, int trap_bci)
   296   { if (ProfileTraps) note_trap(thread, Deoptimization::Reason_null_check, method, trap_bci); }
   297 void InterpreterRuntime::note_div0Check_trap(JavaThread* thread, Method *method, int trap_bci)
   298   { if (ProfileTraps) note_trap(thread, Deoptimization::Reason_div0_check, method, trap_bci); }
   299 void InterpreterRuntime::note_rangeCheck_trap(JavaThread* thread, Method *method, int trap_bci)
   300   { if (ProfileTraps) note_trap(thread, Deoptimization::Reason_range_check, method, trap_bci); }
   301 void InterpreterRuntime::note_classCheck_trap(JavaThread* thread, Method *method, int trap_bci)
   302   { if (ProfileTraps) note_trap(thread, Deoptimization::Reason_class_check, method, trap_bci); }
   303 void InterpreterRuntime::note_arrayCheck_trap(JavaThread* thread, Method *method, int trap_bci)
   304   { if (ProfileTraps) note_trap(thread, Deoptimization::Reason_array_check, method, trap_bci); }
   305 #endif // CC_INTERP
   308 static Handle get_preinitialized_exception(Klass* k, TRAPS) {
   309   // get klass
   310   InstanceKlass* klass = InstanceKlass::cast(k);
   311   assert(klass->is_initialized(),
   312          "this klass should have been initialized during VM initialization");
   313   // create instance - do not call constructor since we may have no
   314   // (java) stack space left (should assert constructor is empty)
   315   Handle exception;
   316   oop exception_oop = klass->allocate_instance(CHECK_(exception));
   317   exception = Handle(THREAD, exception_oop);
   318   if (StackTraceInThrowable) {
   319     java_lang_Throwable::fill_in_stack_trace(exception);
   320   }
   321   return exception;
   322 }
   324 // Special handling for stack overflow: since we don't have any (java) stack
   325 // space left we use the pre-allocated & pre-initialized StackOverflowError
   326 // klass to create an stack overflow error instance.  We do not call its
   327 // constructor for the same reason (it is empty, anyway).
   328 IRT_ENTRY(void, InterpreterRuntime::throw_StackOverflowError(JavaThread* thread))
   329   Handle exception = get_preinitialized_exception(
   330                                  SystemDictionary::StackOverflowError_klass(),
   331                                  CHECK);
   332   // Increment counter for hs_err file reporting
   333   Atomic::inc(&Exceptions::_stack_overflow_errors);
   334   THROW_HANDLE(exception);
   335 IRT_END
   338 IRT_ENTRY(void, InterpreterRuntime::create_exception(JavaThread* thread, char* name, char* message))
   339   // lookup exception klass
   340   TempNewSymbol s = SymbolTable::new_symbol(name, CHECK);
   341   if (ProfileTraps) {
   342     if (s == vmSymbols::java_lang_ArithmeticException()) {
   343       note_trap(thread, Deoptimization::Reason_div0_check, CHECK);
   344     } else if (s == vmSymbols::java_lang_NullPointerException()) {
   345       note_trap(thread, Deoptimization::Reason_null_check, CHECK);
   346     }
   347   }
   348   // create exception
   349   Handle exception = Exceptions::new_exception(thread, s, message);
   350   thread->set_vm_result(exception());
   351 IRT_END
   354 IRT_ENTRY(void, InterpreterRuntime::create_klass_exception(JavaThread* thread, char* name, oopDesc* obj))
   355   ResourceMark rm(thread);
   356   const char* klass_name = obj->klass()->external_name();
   357   // lookup exception klass
   358   TempNewSymbol s = SymbolTable::new_symbol(name, CHECK);
   359   if (ProfileTraps) {
   360     note_trap(thread, Deoptimization::Reason_class_check, CHECK);
   361   }
   362   // create exception, with klass name as detail message
   363   Handle exception = Exceptions::new_exception(thread, s, klass_name);
   364   thread->set_vm_result(exception());
   365 IRT_END
   368 IRT_ENTRY(void, InterpreterRuntime::throw_ArrayIndexOutOfBoundsException(JavaThread* thread, char* name, jint index))
   369   char message[jintAsStringSize];
   370   // lookup exception klass
   371   TempNewSymbol s = SymbolTable::new_symbol(name, CHECK);
   372   if (ProfileTraps) {
   373     note_trap(thread, Deoptimization::Reason_range_check, CHECK);
   374   }
   375   // create exception
   376   sprintf(message, "%d", index);
   377   THROW_MSG(s, message);
   378 IRT_END
   380 IRT_ENTRY(void, InterpreterRuntime::throw_ClassCastException(
   381   JavaThread* thread, oopDesc* obj))
   383   ResourceMark rm(thread);
   384   char* message = SharedRuntime::generate_class_cast_message(
   385     thread, obj->klass()->external_name());
   387   if (ProfileTraps) {
   388     note_trap(thread, Deoptimization::Reason_class_check, CHECK);
   389   }
   391   // create exception
   392   THROW_MSG(vmSymbols::java_lang_ClassCastException(), message);
   393 IRT_END
   395 // exception_handler_for_exception(...) returns the continuation address,
   396 // the exception oop (via TLS) and sets the bci/bcp for the continuation.
   397 // The exception oop is returned to make sure it is preserved over GC (it
   398 // is only on the stack if the exception was thrown explicitly via athrow).
   399 // During this operation, the expression stack contains the values for the
   400 // bci where the exception happened. If the exception was propagated back
   401 // from a call, the expression stack contains the values for the bci at the
   402 // invoke w/o arguments (i.e., as if one were inside the call).
   403 IRT_ENTRY(address, InterpreterRuntime::exception_handler_for_exception(JavaThread* thread, oopDesc* exception))
   405   Handle             h_exception(thread, exception);
   406   methodHandle       h_method   (thread, method(thread));
   407   constantPoolHandle h_constants(thread, h_method->constants());
   408   bool               should_repeat;
   409   int                handler_bci;
   410   int                current_bci = bci(thread);
   412   if (thread->frames_to_pop_failed_realloc() > 0) {
   413     // Allocation of scalar replaced object used in this frame
   414     // failed. Unconditionally pop the frame.
   415     thread->dec_frames_to_pop_failed_realloc();
   416     thread->set_vm_result(h_exception());
   417     // If the method is synchronized we already unlocked the monitor
   418     // during deoptimization so the interpreter needs to skip it when
   419     // the frame is popped.
   420     thread->set_do_not_unlock_if_synchronized(true);
   421 #ifdef CC_INTERP
   422     return (address) -1;
   423 #else
   424     return Interpreter::remove_activation_entry();
   425 #endif
   426   }
   428   // Need to do this check first since when _do_not_unlock_if_synchronized
   429   // is set, we don't want to trigger any classloading which may make calls
   430   // into java, or surprisingly find a matching exception handler for bci 0
   431   // since at this moment the method hasn't been "officially" entered yet.
   432   if (thread->do_not_unlock_if_synchronized()) {
   433     ResourceMark rm;
   434     assert(current_bci == 0,  "bci isn't zero for do_not_unlock_if_synchronized");
   435     thread->set_vm_result(exception);
   436 #ifdef CC_INTERP
   437     return (address) -1;
   438 #else
   439     return Interpreter::remove_activation_entry();
   440 #endif
   441   }
   443   do {
   444     should_repeat = false;
   446     // assertions
   447 #ifdef ASSERT
   448     assert(h_exception.not_null(), "NULL exceptions should be handled by athrow");
   449     assert(h_exception->is_oop(), "just checking");
   450     // Check that exception is a subclass of Throwable, otherwise we have a VerifyError
   451     if (!(h_exception->is_a(SystemDictionary::Throwable_klass()))) {
   452       if (ExitVMOnVerifyError) vm_exit(-1);
   453       ShouldNotReachHere();
   454     }
   455 #endif
   457     // tracing
   458     if (TraceExceptions) {
   459       ttyLocker ttyl;
   460       ResourceMark rm(thread);
   461       tty->print_cr("Exception <%s> (" INTPTR_FORMAT ")", h_exception->print_value_string(), (address)h_exception());
   462       tty->print_cr(" thrown in interpreter method <%s>", h_method->print_value_string());
   463       tty->print_cr(" at bci %d for thread " INTPTR_FORMAT, current_bci, thread);
   464     }
   465 // Don't go paging in something which won't be used.
   466 //     else if (extable->length() == 0) {
   467 //       // disabled for now - interpreter is not using shortcut yet
   468 //       // (shortcut is not to call runtime if we have no exception handlers)
   469 //       // warning("performance bug: should not call runtime if method has no exception handlers");
   470 //     }
   471     // for AbortVMOnException flag
   472     NOT_PRODUCT(Exceptions::debug_check_abort(h_exception));
   474     // exception handler lookup
   475     KlassHandle h_klass(THREAD, h_exception->klass());
   476     handler_bci = Method::fast_exception_handler_bci_for(h_method, h_klass, current_bci, THREAD);
   477     if (HAS_PENDING_EXCEPTION) {
   478       // We threw an exception while trying to find the exception handler.
   479       // Transfer the new exception to the exception handle which will
   480       // be set into thread local storage, and do another lookup for an
   481       // exception handler for this exception, this time starting at the
   482       // BCI of the exception handler which caused the exception to be
   483       // thrown (bug 4307310).
   484       h_exception = Handle(THREAD, PENDING_EXCEPTION);
   485       CLEAR_PENDING_EXCEPTION;
   486       if (handler_bci >= 0) {
   487         current_bci = handler_bci;
   488         should_repeat = true;
   489       }
   490     }
   491   } while (should_repeat == true);
   493   // notify JVMTI of an exception throw; JVMTI will detect if this is a first
   494   // time throw or a stack unwinding throw and accordingly notify the debugger
   495   if (JvmtiExport::can_post_on_exceptions()) {
   496     JvmtiExport::post_exception_throw(thread, h_method(), bcp(thread), h_exception());
   497   }
   499 #ifdef CC_INTERP
   500   address continuation = (address)(intptr_t) handler_bci;
   501 #else
   502   address continuation = NULL;
   503 #endif
   504   address handler_pc = NULL;
   505   if (handler_bci < 0 || !thread->reguard_stack((address) &continuation)) {
   506     // Forward exception to callee (leaving bci/bcp untouched) because (a) no
   507     // handler in this method, or (b) after a stack overflow there is not yet
   508     // enough stack space available to reprotect the stack.
   509 #ifndef CC_INTERP
   510     continuation = Interpreter::remove_activation_entry();
   511 #endif
   512     // Count this for compilation purposes
   513     h_method->interpreter_throwout_increment(THREAD);
   514   } else {
   515     // handler in this method => change bci/bcp to handler bci/bcp and continue there
   516     handler_pc = h_method->code_base() + handler_bci;
   517 #ifndef CC_INTERP
   518     set_bcp_and_mdp(handler_pc, thread);
   519     continuation = Interpreter::dispatch_table(vtos)[*handler_pc];
   520 #endif
   521   }
   522   // notify debugger of an exception catch
   523   // (this is good for exceptions caught in native methods as well)
   524   if (JvmtiExport::can_post_on_exceptions()) {
   525     JvmtiExport::notice_unwind_due_to_exception(thread, h_method(), handler_pc, h_exception(), (handler_pc != NULL));
   526   }
   528   thread->set_vm_result(h_exception());
   529   return continuation;
   530 IRT_END
   533 IRT_ENTRY(void, InterpreterRuntime::throw_pending_exception(JavaThread* thread))
   534   assert(thread->has_pending_exception(), "must only ne called if there's an exception pending");
   535   // nothing to do - eventually we should remove this code entirely (see comments @ call sites)
   536 IRT_END
   539 IRT_ENTRY(void, InterpreterRuntime::throw_AbstractMethodError(JavaThread* thread))
   540   THROW(vmSymbols::java_lang_AbstractMethodError());
   541 IRT_END
   544 IRT_ENTRY(void, InterpreterRuntime::throw_IncompatibleClassChangeError(JavaThread* thread))
   545   THROW(vmSymbols::java_lang_IncompatibleClassChangeError());
   546 IRT_END
   549 //------------------------------------------------------------------------------------------------------------------------
   550 // Fields
   551 //
   553 IRT_ENTRY(void, InterpreterRuntime::resolve_get_put(JavaThread* thread, Bytecodes::Code bytecode))
   554   // resolve field
   555   fieldDescriptor info;
   556   constantPoolHandle pool(thread, method(thread)->constants());
   557   bool is_put    = (bytecode == Bytecodes::_putfield  || bytecode == Bytecodes::_putstatic);
   558   bool is_static = (bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic);
   560   {
   561     JvmtiHideSingleStepping jhss(thread);
   562     LinkResolver::resolve_field_access(info, pool, get_index_u2_cpcache(thread, bytecode),
   563                                        bytecode, CHECK);
   564   } // end JvmtiHideSingleStepping
   566   // check if link resolution caused cpCache to be updated
   567   if (already_resolved(thread)) return;
   569   // compute auxiliary field attributes
   570   TosState state  = as_TosState(info.field_type());
   572   // We need to delay resolving put instructions on final fields
   573   // until we actually invoke one. This is required so we throw
   574   // exceptions at the correct place. If we do not resolve completely
   575   // in the current pass, leaving the put_code set to zero will
   576   // cause the next put instruction to reresolve.
   577   Bytecodes::Code put_code = (Bytecodes::Code)0;
   579   // We also need to delay resolving getstatic instructions until the
   580   // class is intitialized.  This is required so that access to the static
   581   // field will call the initialization function every time until the class
   582   // is completely initialized ala. in 2.17.5 in JVM Specification.
   583   InstanceKlass* klass = InstanceKlass::cast(info.field_holder());
   584   bool uninitialized_static = ((bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic) &&
   585                                !klass->is_initialized());
   586   Bytecodes::Code get_code = (Bytecodes::Code)0;
   588   if (!uninitialized_static) {
   589     get_code = ((is_static) ? Bytecodes::_getstatic : Bytecodes::_getfield);
   590     if (is_put || !info.access_flags().is_final()) {
   591       put_code = ((is_static) ? Bytecodes::_putstatic : Bytecodes::_putfield);
   592     }
   593   }
   595   cache_entry(thread)->set_field(
   596     get_code,
   597     put_code,
   598     info.field_holder(),
   599     info.index(),
   600     info.offset(),
   601     state,
   602     info.access_flags().is_final(),
   603     info.access_flags().is_volatile(),
   604     pool->pool_holder()
   605   );
   606 IRT_END
   609 //------------------------------------------------------------------------------------------------------------------------
   610 // Synchronization
   611 //
   612 // The interpreter's synchronization code is factored out so that it can
   613 // be shared by method invocation and synchronized blocks.
   614 //%note synchronization_3
   616 //%note monitor_1
   617 IRT_ENTRY_NO_ASYNC(void, InterpreterRuntime::monitorenter(JavaThread* thread, BasicObjectLock* elem))
   618 #ifdef ASSERT
   619   thread->last_frame().interpreter_frame_verify_monitor(elem);
   620 #endif
   621   if (PrintBiasedLockingStatistics) {
   622     Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
   623   }
   624   Handle h_obj(thread, elem->obj());
   625   assert(Universe::heap()->is_in_reserved_or_null(h_obj()),
   626          "must be NULL or an object");
   627   if (UseBiasedLocking) {
   628     // Retry fast entry if bias is revoked to avoid unnecessary inflation
   629     ObjectSynchronizer::fast_enter(h_obj, elem->lock(), true, CHECK);
   630   } else {
   631     ObjectSynchronizer::slow_enter(h_obj, elem->lock(), CHECK);
   632   }
   633   assert(Universe::heap()->is_in_reserved_or_null(elem->obj()),
   634          "must be NULL or an object");
   635 #ifdef ASSERT
   636   thread->last_frame().interpreter_frame_verify_monitor(elem);
   637 #endif
   638 IRT_END
   641 //%note monitor_1
   642 IRT_ENTRY_NO_ASYNC(void, InterpreterRuntime::monitorexit(JavaThread* thread, BasicObjectLock* elem))
   643 #ifdef ASSERT
   644   thread->last_frame().interpreter_frame_verify_monitor(elem);
   645 #endif
   646   Handle h_obj(thread, elem->obj());
   647   assert(Universe::heap()->is_in_reserved_or_null(h_obj()),
   648          "must be NULL or an object");
   649   if (elem == NULL || h_obj()->is_unlocked()) {
   650     THROW(vmSymbols::java_lang_IllegalMonitorStateException());
   651   }
   652   ObjectSynchronizer::slow_exit(h_obj(), elem->lock(), thread);
   653   // Free entry. This must be done here, since a pending exception might be installed on
   654   // exit. If it is not cleared, the exception handling code will try to unlock the monitor again.
   655   elem->set_obj(NULL);
   656 #ifdef ASSERT
   657   thread->last_frame().interpreter_frame_verify_monitor(elem);
   658 #endif
   659 IRT_END
   662 IRT_ENTRY(void, InterpreterRuntime::throw_illegal_monitor_state_exception(JavaThread* thread))
   663   THROW(vmSymbols::java_lang_IllegalMonitorStateException());
   664 IRT_END
   667 IRT_ENTRY(void, InterpreterRuntime::new_illegal_monitor_state_exception(JavaThread* thread))
   668   // Returns an illegal exception to install into the current thread. The
   669   // pending_exception flag is cleared so normal exception handling does not
   670   // trigger. Any current installed exception will be overwritten. This
   671   // method will be called during an exception unwind.
   673   assert(!HAS_PENDING_EXCEPTION, "no pending exception");
   674   Handle exception(thread, thread->vm_result());
   675   assert(exception() != NULL, "vm result should be set");
   676   thread->set_vm_result(NULL); // clear vm result before continuing (may cause memory leaks and assert failures)
   677   if (!exception->is_a(SystemDictionary::ThreadDeath_klass())) {
   678     exception = get_preinitialized_exception(
   679                        SystemDictionary::IllegalMonitorStateException_klass(),
   680                        CATCH);
   681   }
   682   thread->set_vm_result(exception());
   683 IRT_END
   686 //------------------------------------------------------------------------------------------------------------------------
   687 // Invokes
   689 IRT_ENTRY(Bytecodes::Code, InterpreterRuntime::get_original_bytecode_at(JavaThread* thread, Method* method, address bcp))
   690   return method->orig_bytecode_at(method->bci_from(bcp));
   691 IRT_END
   693 IRT_ENTRY(void, InterpreterRuntime::set_original_bytecode_at(JavaThread* thread, Method* method, address bcp, Bytecodes::Code new_code))
   694   method->set_orig_bytecode_at(method->bci_from(bcp), new_code);
   695 IRT_END
   697 IRT_ENTRY(void, InterpreterRuntime::_breakpoint(JavaThread* thread, Method* method, address bcp))
   698   JvmtiExport::post_raw_breakpoint(thread, method, bcp);
   699 IRT_END
   701 IRT_ENTRY(void, InterpreterRuntime::resolve_invoke(JavaThread* thread, Bytecodes::Code bytecode)) {
   702   // extract receiver from the outgoing argument list if necessary
   703   Handle receiver(thread, NULL);
   704   if (bytecode == Bytecodes::_invokevirtual || bytecode == Bytecodes::_invokeinterface ||
   705       bytecode == Bytecodes::_invokespecial) {
   706     ResourceMark rm(thread);
   707     methodHandle m (thread, method(thread));
   708     Bytecode_invoke call(m, bci(thread));
   709     Symbol* signature = call.signature();
   710     receiver = Handle(thread,
   711                   thread->last_frame().interpreter_callee_receiver(signature));
   712     assert(Universe::heap()->is_in_reserved_or_null(receiver()),
   713            "sanity check");
   714     assert(receiver.is_null() ||
   715            !Universe::heap()->is_in_reserved(receiver->klass()),
   716            "sanity check");
   717   }
   719   // resolve method
   720   CallInfo info;
   721   constantPoolHandle pool(thread, method(thread)->constants());
   723   {
   724     JvmtiHideSingleStepping jhss(thread);
   725     LinkResolver::resolve_invoke(info, receiver, pool,
   726                                  get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
   727     if (JvmtiExport::can_hotswap_or_post_breakpoint()) {
   728       int retry_count = 0;
   729       while (info.resolved_method()->is_old()) {
   730         // It is very unlikely that method is redefined more than 100 times
   731         // in the middle of resolve. If it is looping here more than 100 times
   732         // means then there could be a bug here.
   733         guarantee((retry_count++ < 100),
   734                   "Could not resolve to latest version of redefined method");
   735         // method is redefined in the middle of resolve so re-try.
   736         LinkResolver::resolve_invoke(info, receiver, pool,
   737                                      get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
   738       }
   739     }
   740   } // end JvmtiHideSingleStepping
   742   // check if link resolution caused cpCache to be updated
   743   if (already_resolved(thread)) return;
   745   if (bytecode == Bytecodes::_invokeinterface) {
   746     if (TraceItables && Verbose) {
   747       ResourceMark rm(thread);
   748       tty->print_cr("Resolving: klass: %s to method: %s", info.resolved_klass()->name()->as_C_string(), info.resolved_method()->name()->as_C_string());
   749     }
   750   }
   751 #ifdef ASSERT
   752   if (bytecode == Bytecodes::_invokeinterface) {
   753     if (info.resolved_method()->method_holder() ==
   754                                             SystemDictionary::Object_klass()) {
   755       // NOTE: THIS IS A FIX FOR A CORNER CASE in the JVM spec
   756       // (see also CallInfo::set_interface for details)
   757       assert(info.call_kind() == CallInfo::vtable_call ||
   758              info.call_kind() == CallInfo::direct_call, "");
   759       methodHandle rm = info.resolved_method();
   760       assert(rm->is_final() || info.has_vtable_index(),
   761              "should have been set already");
   762     } else if (!info.resolved_method()->has_itable_index()) {
   763       // Resolved something like CharSequence.toString.  Use vtable not itable.
   764       assert(info.call_kind() != CallInfo::itable_call, "");
   765     } else {
   766       // Setup itable entry
   767       assert(info.call_kind() == CallInfo::itable_call, "");
   768       int index = info.resolved_method()->itable_index();
   769       assert(info.itable_index() == index, "");
   770     }
   771   } else if (bytecode == Bytecodes::_invokespecial) {
   772     assert(info.call_kind() == CallInfo::direct_call, "must be direct call");
   773   } else {
   774     assert(info.call_kind() == CallInfo::direct_call ||
   775            info.call_kind() == CallInfo::vtable_call, "");
   776   }
   777 #endif
   778   // Get sender or sender's host_klass, and only set cpCache entry to resolved if
   779   // it is not an interface.  The receiver for invokespecial calls within interface
   780   // methods must be checked for every call.
   781   InstanceKlass* sender = pool->pool_holder();
   782   sender = sender->has_host_klass() ? InstanceKlass::cast(sender->host_klass()) : sender;
   784   switch (info.call_kind()) {
   785   case CallInfo::direct_call:
   786     cache_entry(thread)->set_direct_call(
   787       bytecode,
   788       info.resolved_method(),
   789       sender->is_interface());
   790     break;
   791   case CallInfo::vtable_call:
   792     cache_entry(thread)->set_vtable_call(
   793       bytecode,
   794       info.resolved_method(),
   795       info.vtable_index());
   796     break;
   797   case CallInfo::itable_call:
   798     cache_entry(thread)->set_itable_call(
   799       bytecode,
   800       info.resolved_klass(),
   801       info.resolved_method(),
   802       info.itable_index());
   803     break;
   804   default:  ShouldNotReachHere();
   805   }
   806 }
   807 IRT_END
   810 // First time execution:  Resolve symbols, create a permanent MethodType object.
   811 IRT_ENTRY(void, InterpreterRuntime::resolve_invokehandle(JavaThread* thread)) {
   812   assert(EnableInvokeDynamic, "");
   813   const Bytecodes::Code bytecode = Bytecodes::_invokehandle;
   815   // resolve method
   816   CallInfo info;
   817   constantPoolHandle pool(thread, method(thread)->constants());
   819   {
   820     JvmtiHideSingleStepping jhss(thread);
   821     LinkResolver::resolve_invoke(info, Handle(), pool,
   822                                  get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
   823   } // end JvmtiHideSingleStepping
   825   cache_entry(thread)->set_method_handle(pool, info);
   826 }
   827 IRT_END
   830 // First time execution:  Resolve symbols, create a permanent CallSite object.
   831 IRT_ENTRY(void, InterpreterRuntime::resolve_invokedynamic(JavaThread* thread)) {
   832   assert(EnableInvokeDynamic, "");
   833   const Bytecodes::Code bytecode = Bytecodes::_invokedynamic;
   835   //TO DO: consider passing BCI to Java.
   836   //  int caller_bci = method(thread)->bci_from(bcp(thread));
   838   // resolve method
   839   CallInfo info;
   840   constantPoolHandle pool(thread, method(thread)->constants());
   841   int index = get_index_u4(thread, bytecode);
   842   {
   843     JvmtiHideSingleStepping jhss(thread);
   844     LinkResolver::resolve_invoke(info, Handle(), pool,
   845                                  index, bytecode, CHECK);
   846   } // end JvmtiHideSingleStepping
   848   ConstantPoolCacheEntry* cp_cache_entry = pool->invokedynamic_cp_cache_entry_at(index);
   849   cp_cache_entry->set_dynamic_call(pool, info);
   850 }
   851 IRT_END
   854 //------------------------------------------------------------------------------------------------------------------------
   855 // Miscellaneous
   858 nmethod* InterpreterRuntime::frequency_counter_overflow(JavaThread* thread, address branch_bcp) {
   859   nmethod* nm = frequency_counter_overflow_inner(thread, branch_bcp);
   860   assert(branch_bcp != NULL || nm == NULL, "always returns null for non OSR requests");
   861   if (branch_bcp != NULL && nm != NULL) {
   862     // This was a successful request for an OSR nmethod.  Because
   863     // frequency_counter_overflow_inner ends with a safepoint check,
   864     // nm could have been unloaded so look it up again.  It's unsafe
   865     // to examine nm directly since it might have been freed and used
   866     // for something else.
   867     frame fr = thread->last_frame();
   868     Method* method =  fr.interpreter_frame_method();
   869     int bci = method->bci_from(fr.interpreter_frame_bcp());
   870     nm = method->lookup_osr_nmethod_for(bci, CompLevel_none, false);
   871   }
   872 #ifndef PRODUCT
   873   if (TraceOnStackReplacement) {
   874     if (nm != NULL) {
   875       tty->print("OSR entry @ pc: " INTPTR_FORMAT ": ", nm->osr_entry());
   876       nm->print();
   877     }
   878   }
   879 #endif
   880   return nm;
   881 }
   883 IRT_ENTRY(nmethod*,
   884           InterpreterRuntime::frequency_counter_overflow_inner(JavaThread* thread, address branch_bcp))
   885   // use UnlockFlagSaver to clear and restore the _do_not_unlock_if_synchronized
   886   // flag, in case this method triggers classloading which will call into Java.
   887   UnlockFlagSaver fs(thread);
   889   frame fr = thread->last_frame();
   890   assert(fr.is_interpreted_frame(), "must come from interpreter");
   891   methodHandle method(thread, fr.interpreter_frame_method());
   892   const int branch_bci = branch_bcp != NULL ? method->bci_from(branch_bcp) : InvocationEntryBci;
   893   const int bci = branch_bcp != NULL ? method->bci_from(fr.interpreter_frame_bcp()) : InvocationEntryBci;
   895   assert(!HAS_PENDING_EXCEPTION, "Should not have any exceptions pending");
   896   nmethod* osr_nm = CompilationPolicy::policy()->event(method, method, branch_bci, bci, CompLevel_none, NULL, thread);
   897   assert(!HAS_PENDING_EXCEPTION, "Event handler should not throw any exceptions");
   899   if (osr_nm != NULL) {
   900     // We may need to do on-stack replacement which requires that no
   901     // monitors in the activation are biased because their
   902     // BasicObjectLocks will need to migrate during OSR. Force
   903     // unbiasing of all monitors in the activation now (even though
   904     // the OSR nmethod might be invalidated) because we don't have a
   905     // safepoint opportunity later once the migration begins.
   906     if (UseBiasedLocking) {
   907       ResourceMark rm;
   908       GrowableArray<Handle>* objects_to_revoke = new GrowableArray<Handle>();
   909       for( BasicObjectLock *kptr = fr.interpreter_frame_monitor_end();
   910            kptr < fr.interpreter_frame_monitor_begin();
   911            kptr = fr.next_monitor_in_interpreter_frame(kptr) ) {
   912         if( kptr->obj() != NULL ) {
   913           objects_to_revoke->append(Handle(THREAD, kptr->obj()));
   914         }
   915       }
   916       BiasedLocking::revoke(objects_to_revoke);
   917     }
   918   }
   919   return osr_nm;
   920 IRT_END
   922 IRT_LEAF(jint, InterpreterRuntime::bcp_to_di(Method* method, address cur_bcp))
   923   assert(ProfileInterpreter, "must be profiling interpreter");
   924   int bci = method->bci_from(cur_bcp);
   925   MethodData* mdo = method->method_data();
   926   if (mdo == NULL)  return 0;
   927   return mdo->bci_to_di(bci);
   928 IRT_END
   930 IRT_ENTRY(void, InterpreterRuntime::profile_method(JavaThread* thread))
   931   // use UnlockFlagSaver to clear and restore the _do_not_unlock_if_synchronized
   932   // flag, in case this method triggers classloading which will call into Java.
   933   UnlockFlagSaver fs(thread);
   935   assert(ProfileInterpreter, "must be profiling interpreter");
   936   frame fr = thread->last_frame();
   937   assert(fr.is_interpreted_frame(), "must come from interpreter");
   938   methodHandle method(thread, fr.interpreter_frame_method());
   939   Method::build_interpreter_method_data(method, THREAD);
   940   if (HAS_PENDING_EXCEPTION) {
   941     assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())), "we expect only an OOM error here");
   942     CLEAR_PENDING_EXCEPTION;
   943     // and fall through...
   944   }
   945 IRT_END
   948 #ifdef ASSERT
   949 IRT_LEAF(void, InterpreterRuntime::verify_mdp(Method* method, address bcp, address mdp))
   950   assert(ProfileInterpreter, "must be profiling interpreter");
   952   MethodData* mdo = method->method_data();
   953   assert(mdo != NULL, "must not be null");
   955   int bci = method->bci_from(bcp);
   957   address mdp2 = mdo->bci_to_dp(bci);
   958   if (mdp != mdp2) {
   959     ResourceMark rm;
   960     ResetNoHandleMark rnm; // In a LEAF entry.
   961     HandleMark hm;
   962     tty->print_cr("FAILED verify : actual mdp %p   expected mdp %p @ bci %d", mdp, mdp2, bci);
   963     int current_di = mdo->dp_to_di(mdp);
   964     int expected_di  = mdo->dp_to_di(mdp2);
   965     tty->print_cr("  actual di %d   expected di %d", current_di, expected_di);
   966     int expected_approx_bci = mdo->data_at(expected_di)->bci();
   967     int approx_bci = -1;
   968     if (current_di >= 0) {
   969       approx_bci = mdo->data_at(current_di)->bci();
   970     }
   971     tty->print_cr("  actual bci is %d  expected bci %d", approx_bci, expected_approx_bci);
   972     mdo->print_on(tty);
   973     method->print_codes();
   974   }
   975   assert(mdp == mdp2, "wrong mdp");
   976 IRT_END
   977 #endif // ASSERT
   979 IRT_ENTRY(void, InterpreterRuntime::update_mdp_for_ret(JavaThread* thread, int return_bci))
   980   assert(ProfileInterpreter, "must be profiling interpreter");
   981   ResourceMark rm(thread);
   982   HandleMark hm(thread);
   983   frame fr = thread->last_frame();
   984   assert(fr.is_interpreted_frame(), "must come from interpreter");
   985   MethodData* h_mdo = fr.interpreter_frame_method()->method_data();
   987   // Grab a lock to ensure atomic access to setting the return bci and
   988   // the displacement.  This can block and GC, invalidating all naked oops.
   989   MutexLocker ml(RetData_lock);
   991   // ProfileData is essentially a wrapper around a derived oop, so we
   992   // need to take the lock before making any ProfileData structures.
   993   ProfileData* data = h_mdo->data_at(h_mdo->dp_to_di(fr.interpreter_frame_mdp()));
   994   guarantee(data != NULL, "profile data must be valid");
   995   RetData* rdata = data->as_RetData();
   996   address new_mdp = rdata->fixup_ret(return_bci, h_mdo);
   997   fr.interpreter_frame_set_mdp(new_mdp);
   998 IRT_END
  1000 IRT_ENTRY(MethodCounters*, InterpreterRuntime::build_method_counters(JavaThread* thread, Method* m))
  1001   MethodCounters* mcs = Method::build_method_counters(m, thread);
  1002   if (HAS_PENDING_EXCEPTION) {
  1003     assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())), "we expect only an OOM error here");
  1004     CLEAR_PENDING_EXCEPTION;
  1006   return mcs;
  1007 IRT_END
  1010 IRT_ENTRY(void, InterpreterRuntime::at_safepoint(JavaThread* thread))
  1011   // We used to need an explict preserve_arguments here for invoke bytecodes. However,
  1012   // stack traversal automatically takes care of preserving arguments for invoke, so
  1013   // this is no longer needed.
  1015   // IRT_END does an implicit safepoint check, hence we are guaranteed to block
  1016   // if this is called during a safepoint
  1018   if (JvmtiExport::should_post_single_step()) {
  1019     // We are called during regular safepoints and when the VM is
  1020     // single stepping. If any thread is marked for single stepping,
  1021     // then we may have JVMTI work to do.
  1022     JvmtiExport::at_single_stepping_point(thread, method(thread), bcp(thread));
  1024 IRT_END
  1026 IRT_ENTRY(void, InterpreterRuntime::post_field_access(JavaThread *thread, oopDesc* obj,
  1027 ConstantPoolCacheEntry *cp_entry))
  1029   // check the access_flags for the field in the klass
  1031   InstanceKlass* ik = InstanceKlass::cast(cp_entry->f1_as_klass());
  1032   int index = cp_entry->field_index();
  1033   if ((ik->field_access_flags(index) & JVM_ACC_FIELD_ACCESS_WATCHED) == 0) return;
  1035   switch(cp_entry->flag_state()) {
  1036     case btos:    // fall through
  1037     case ztos:    // fall through
  1038     case ctos:    // fall through
  1039     case stos:    // fall through
  1040     case itos:    // fall through
  1041     case ftos:    // fall through
  1042     case ltos:    // fall through
  1043     case dtos:    // fall through
  1044     case atos: break;
  1045     default: ShouldNotReachHere(); return;
  1047   bool is_static = (obj == NULL);
  1048   HandleMark hm(thread);
  1050   Handle h_obj;
  1051   if (!is_static) {
  1052     // non-static field accessors have an object, but we need a handle
  1053     h_obj = Handle(thread, obj);
  1055   instanceKlassHandle h_cp_entry_f1(thread, (Klass*)cp_entry->f1_as_klass());
  1056   jfieldID fid = jfieldIDWorkaround::to_jfieldID(h_cp_entry_f1, cp_entry->f2_as_index(), is_static);
  1057   JvmtiExport::post_field_access(thread, method(thread), bcp(thread), h_cp_entry_f1, h_obj, fid);
  1058 IRT_END
  1060 IRT_ENTRY(void, InterpreterRuntime::post_field_modification(JavaThread *thread,
  1061   oopDesc* obj, ConstantPoolCacheEntry *cp_entry, jvalue *value))
  1063   Klass* k = (Klass*)cp_entry->f1_as_klass();
  1065   // check the access_flags for the field in the klass
  1066   InstanceKlass* ik = InstanceKlass::cast(k);
  1067   int index = cp_entry->field_index();
  1068   // bail out if field modifications are not watched
  1069   if ((ik->field_access_flags(index) & JVM_ACC_FIELD_MODIFICATION_WATCHED) == 0) return;
  1071   char sig_type = '\0';
  1073   switch(cp_entry->flag_state()) {
  1074     case btos: sig_type = 'B'; break;
  1075     case ztos: sig_type = 'Z'; break;
  1076     case ctos: sig_type = 'C'; break;
  1077     case stos: sig_type = 'S'; break;
  1078     case itos: sig_type = 'I'; break;
  1079     case ftos: sig_type = 'F'; break;
  1080     case atos: sig_type = 'L'; break;
  1081     case ltos: sig_type = 'J'; break;
  1082     case dtos: sig_type = 'D'; break;
  1083     default:  ShouldNotReachHere(); return;
  1085   bool is_static = (obj == NULL);
  1087   HandleMark hm(thread);
  1088   instanceKlassHandle h_klass(thread, k);
  1089   jfieldID fid = jfieldIDWorkaround::to_jfieldID(h_klass, cp_entry->f2_as_index(), is_static);
  1090   jvalue fvalue;
  1091 #ifdef _LP64
  1092   fvalue = *value;
  1093 #else
  1094   // Long/double values are stored unaligned and also noncontiguously with
  1095   // tagged stacks.  We can't just do a simple assignment even in the non-
  1096   // J/D cases because a C++ compiler is allowed to assume that a jvalue is
  1097   // 8-byte aligned, and interpreter stack slots are only 4-byte aligned.
  1098   // We assume that the two halves of longs/doubles are stored in interpreter
  1099   // stack slots in platform-endian order.
  1100   jlong_accessor u;
  1101   jint* newval = (jint*)value;
  1102   u.words[0] = newval[0];
  1103   u.words[1] = newval[Interpreter::stackElementWords]; // skip if tag
  1104   fvalue.j = u.long_value;
  1105 #endif // _LP64
  1107   Handle h_obj;
  1108   if (!is_static) {
  1109     // non-static field accessors have an object, but we need a handle
  1110     h_obj = Handle(thread, obj);
  1113   JvmtiExport::post_raw_field_modification(thread, method(thread), bcp(thread), h_klass, h_obj,
  1114                                            fid, sig_type, &fvalue);
  1115 IRT_END
  1117 IRT_ENTRY(void, InterpreterRuntime::post_method_entry(JavaThread *thread))
  1118   JvmtiExport::post_method_entry(thread, InterpreterRuntime::method(thread), InterpreterRuntime::last_frame(thread));
  1119 IRT_END
  1122 IRT_ENTRY(void, InterpreterRuntime::post_method_exit(JavaThread *thread))
  1123   JvmtiExport::post_method_exit(thread, InterpreterRuntime::method(thread), InterpreterRuntime::last_frame(thread));
  1124 IRT_END
  1126 IRT_LEAF(int, InterpreterRuntime::interpreter_contains(address pc))
  1128   return (Interpreter::contains(pc) ? 1 : 0);
  1130 IRT_END
  1133 // Implementation of SignatureHandlerLibrary
  1135 address SignatureHandlerLibrary::set_handler_blob() {
  1136   BufferBlob* handler_blob = BufferBlob::create("native signature handlers", blob_size);
  1137   if (handler_blob == NULL) {
  1138     return NULL;
  1140   address handler = handler_blob->code_begin();
  1141   _handler_blob = handler_blob;
  1142   _handler = handler;
  1143   return handler;
  1146 void SignatureHandlerLibrary::initialize() {
  1147   if (_fingerprints != NULL) {
  1148     return;
  1150   if (set_handler_blob() == NULL) {
  1151     vm_exit_out_of_memory(blob_size, OOM_MALLOC_ERROR, "native signature handlers");
  1154   BufferBlob* bb = BufferBlob::create("Signature Handler Temp Buffer",
  1155                                       SignatureHandlerLibrary::buffer_size);
  1156   _buffer = bb->code_begin();
  1158   _fingerprints = new(ResourceObj::C_HEAP, mtCode)GrowableArray<uint64_t>(32, true);
  1159   _handlers     = new(ResourceObj::C_HEAP, mtCode)GrowableArray<address>(32, true);
  1162 address SignatureHandlerLibrary::set_handler(CodeBuffer* buffer) {
  1163   address handler   = _handler;
  1164   int     insts_size = buffer->pure_insts_size();
  1165   if (handler + insts_size > _handler_blob->code_end()) {
  1166     // get a new handler blob
  1167     handler = set_handler_blob();
  1169   if (handler != NULL) {
  1170     memcpy(handler, buffer->insts_begin(), insts_size);
  1171     pd_set_handler(handler);
  1172     ICache::invalidate_range(handler, insts_size);
  1173     _handler = handler + insts_size;
  1175   return handler;
  1178 void SignatureHandlerLibrary::add(methodHandle method) {
  1179   if (method->signature_handler() == NULL) {
  1180     // use slow signature handler if we can't do better
  1181     int handler_index = -1;
  1182     // check if we can use customized (fast) signature handler
  1183     if (UseFastSignatureHandlers && method->size_of_parameters() <= Fingerprinter::max_size_of_parameters) {
  1184       // use customized signature handler
  1185       MutexLocker mu(SignatureHandlerLibrary_lock);
  1186       // make sure data structure is initialized
  1187       initialize();
  1188       // lookup method signature's fingerprint
  1189       uint64_t fingerprint = Fingerprinter(method).fingerprint();
  1190       handler_index = _fingerprints->find(fingerprint);
  1191       // create handler if necessary
  1192       if (handler_index < 0) {
  1193         ResourceMark rm;
  1194         ptrdiff_t align_offset = (address)
  1195           round_to((intptr_t)_buffer, CodeEntryAlignment) - (address)_buffer;
  1196         CodeBuffer buffer((address)(_buffer + align_offset),
  1197                           SignatureHandlerLibrary::buffer_size - align_offset);
  1198         InterpreterRuntime::SignatureHandlerGenerator(method, &buffer).generate(fingerprint);
  1199         // copy into code heap
  1200         address handler = set_handler(&buffer);
  1201         if (handler == NULL) {
  1202           // use slow signature handler
  1203         } else {
  1204           // debugging suppport
  1205           if (PrintSignatureHandlers) {
  1206             tty->cr();
  1207             tty->print_cr("argument handler #%d for: %s %s (fingerprint = " UINT64_FORMAT ", %d bytes generated)",
  1208                           _handlers->length(),
  1209                           (method->is_static() ? "static" : "receiver"),
  1210                           method->name_and_sig_as_C_string(),
  1211                           fingerprint,
  1212                           buffer.insts_size());
  1213             Disassembler::decode(handler, handler + buffer.insts_size());
  1214 #ifndef PRODUCT
  1215             tty->print_cr(" --- associated result handler ---");
  1216             address rh_begin = Interpreter::result_handler(method()->result_type());
  1217             address rh_end = rh_begin;
  1218             while (*(int*)rh_end != 0) {
  1219               rh_end += sizeof(int);
  1221             Disassembler::decode(rh_begin, rh_end);
  1222 #endif
  1224           // add handler to library
  1225           _fingerprints->append(fingerprint);
  1226           _handlers->append(handler);
  1227           // set handler index
  1228           assert(_fingerprints->length() == _handlers->length(), "sanity check");
  1229           handler_index = _fingerprints->length() - 1;
  1232       // Set handler under SignatureHandlerLibrary_lock
  1233     if (handler_index < 0) {
  1234       // use generic signature handler
  1235       method->set_signature_handler(Interpreter::slow_signature_handler());
  1236     } else {
  1237       // set handler
  1238       method->set_signature_handler(_handlers->at(handler_index));
  1240     } else {
  1241       CHECK_UNHANDLED_OOPS_ONLY(Thread::current()->clear_unhandled_oops());
  1242       // use generic signature handler
  1243       method->set_signature_handler(Interpreter::slow_signature_handler());
  1246 #ifdef ASSERT
  1247   int handler_index = -1;
  1248   int fingerprint_index = -2;
  1250     // '_handlers' and '_fingerprints' are 'GrowableArray's and are NOT synchronized
  1251     // in any way if accessed from multiple threads. To avoid races with another
  1252     // thread which may change the arrays in the above, mutex protected block, we
  1253     // have to protect this read access here with the same mutex as well!
  1254     MutexLocker mu(SignatureHandlerLibrary_lock);
  1255     if (_handlers != NULL) {
  1256     handler_index = _handlers->find(method->signature_handler());
  1257     fingerprint_index = _fingerprints->find(Fingerprinter(method).fingerprint());
  1260   assert(method->signature_handler() == Interpreter::slow_signature_handler() ||
  1261          handler_index == fingerprint_index, "sanity check");
  1262 #endif // ASSERT
  1266 BufferBlob*              SignatureHandlerLibrary::_handler_blob = NULL;
  1267 address                  SignatureHandlerLibrary::_handler      = NULL;
  1268 GrowableArray<uint64_t>* SignatureHandlerLibrary::_fingerprints = NULL;
  1269 GrowableArray<address>*  SignatureHandlerLibrary::_handlers     = NULL;
  1270 address                  SignatureHandlerLibrary::_buffer       = NULL;
  1273 IRT_ENTRY(void, InterpreterRuntime::prepare_native_call(JavaThread* thread, Method* method))
  1274   methodHandle m(thread, method);
  1275   assert(m->is_native(), "sanity check");
  1276   // lookup native function entry point if it doesn't exist
  1277   bool in_base_library;
  1278   if (!m->has_native_function()) {
  1279     NativeLookup::lookup(m, in_base_library, CHECK);
  1281   // make sure signature handler is installed
  1282   SignatureHandlerLibrary::add(m);
  1283   // The interpreter entry point checks the signature handler first,
  1284   // before trying to fetch the native entry point and klass mirror.
  1285   // We must set the signature handler last, so that multiple processors
  1286   // preparing the same method will be sure to see non-null entry & mirror.
  1287 IRT_END
  1289 #if defined(IA32) || defined(AMD64) || defined(ARM) || defined(MIPS)
  1290 IRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address))
  1291   if (src_address == dest_address) {
  1292     return;
  1294   ResetNoHandleMark rnm; // In a LEAF entry.
  1295   HandleMark hm;
  1296   ResourceMark rm;
  1297   frame fr = thread->last_frame();
  1298   assert(fr.is_interpreted_frame(), "");
  1299   jint bci = fr.interpreter_frame_bci();
  1300   methodHandle mh(thread, fr.interpreter_frame_method());
  1301   Bytecode_invoke invoke(mh, bci);
  1302   ArgumentSizeComputer asc(invoke.signature());
  1303   int size_of_arguments = (asc.size() + (invoke.has_receiver() ? 1 : 0)); // receiver
  1304   Copy::conjoint_jbytes(src_address, dest_address,
  1305                        size_of_arguments * Interpreter::stackElementSize);
  1306 IRT_END
  1307 #endif
  1309 #if INCLUDE_JVMTI
  1310 // This is a support of the JVMTI PopFrame interface.
  1311 // Make sure it is an invokestatic of a polymorphic intrinsic that has a member_name argument
  1312 // and return it as a vm_result so that it can be reloaded in the list of invokestatic parameters.
  1313 // The member_name argument is a saved reference (in local#0) to the member_name.
  1314 // For backward compatibility with some JDK versions (7, 8) it can also be a direct method handle.
  1315 // FIXME: remove DMH case after j.l.i.InvokerBytecodeGenerator code shape is updated.
  1316 IRT_ENTRY(void, InterpreterRuntime::member_name_arg_or_null(JavaThread* thread, address member_name,
  1317                                                             Method* method, address bcp))
  1318   Bytecodes::Code code = Bytecodes::code_at(method, bcp);
  1319   if (code != Bytecodes::_invokestatic) {
  1320     return;
  1322   ConstantPool* cpool = method->constants();
  1323   int cp_index = Bytes::get_native_u2(bcp + 1) + ConstantPool::CPCACHE_INDEX_TAG;
  1324   Symbol* cname = cpool->klass_name_at(cpool->klass_ref_index_at(cp_index));
  1325   Symbol* mname = cpool->name_ref_at(cp_index);
  1327   if (MethodHandles::has_member_arg(cname, mname)) {
  1328     oop member_name_oop = (oop) member_name;
  1329     if (java_lang_invoke_DirectMethodHandle::is_instance(member_name_oop)) {
  1330       // FIXME: remove after j.l.i.InvokerBytecodeGenerator code shape is updated.
  1331       member_name_oop = java_lang_invoke_DirectMethodHandle::member(member_name_oop);
  1333     thread->set_vm_result(member_name_oop);
  1334   } else {
  1335     thread->set_vm_result(NULL);
  1337 IRT_END
  1338 #endif // INCLUDE_JVMTI

mercurial