src/share/vm/interpreter/interpreterRuntime.cpp

Tue, 05 Nov 2013 17:38:04 -0800

author
kvn
date
Tue, 05 Nov 2013 17:38:04 -0800
changeset 6472
2b8e28fdf503
parent 6470
abe03600372a
parent 5732
b2e698d2276c
child 6680
78bbf4d43a14
permissions
-rw-r--r--

Merge

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

mercurial