51 #include "oops/method.inline.hpp"
52 #include "oops/objArrayKlass.hpp"
53 #include "oops/objArrayOop.inline.hpp"
54 #include "oops/oop.inline.hpp"
55 #include "oops/symbol.hpp"
56 #include "prims/jvmtiExport.hpp"
57 #include "prims/methodHandles.hpp"
58 #include "prims/nativeLookup.hpp"
59 #include "runtime/atomic.hpp"
60 #include "runtime/continuation.hpp"
61 #include "runtime/deoptimization.hpp"
62 #include "runtime/fieldDescriptor.inline.hpp"
63 #include "runtime/frame.inline.hpp"
64 #include "runtime/handles.inline.hpp"
65 #include "runtime/icache.hpp"
66 #include "runtime/interfaceSupport.inline.hpp"
67 #include "runtime/java.hpp"
68 #include "runtime/javaCalls.hpp"
69 #include "runtime/jfieldIDWorkaround.hpp"
70 #include "runtime/osThread.hpp"
71 #include "runtime/sharedRuntime.hpp"
72 #include "runtime/stackWatermarkSet.hpp"
73 #include "runtime/stubRoutines.hpp"
74 #include "runtime/synchronizer.inline.hpp"
75 #include "runtime/threadCritical.hpp"
76 #include "utilities/align.hpp"
77 #include "utilities/checkedCast.hpp"
78 #include "utilities/copy.hpp"
79 #include "utilities/events.hpp"
80 #ifdef COMPILER2
81 #include "opto/runtime.hpp"
82 #endif
83
84 // Helper class to access current interpreter state
85 class LastFrameAccessor : public StackObj {
86 frame _last_frame;
87 public:
88 LastFrameAccessor(JavaThread* current) {
89 assert(current == Thread::current(), "sanity");
90 _last_frame = current->last_frame();
91 }
92 bool is_interpreted_frame() const { return _last_frame.is_interpreted_frame(); }
93 Method* method() const { return _last_frame.interpreter_frame_method(); }
94 address bcp() const { return _last_frame.interpreter_frame_bcp(); }
95 int bci() const { return _last_frame.interpreter_frame_bci(); }
106 int get_index_u2(Bytecodes::Code bc) const { return bytecode().get_index_u2(bc); }
107 int get_index_u4(Bytecodes::Code bc) const { return bytecode().get_index_u4(bc); }
108 int number_of_dimensions() const { return bcp()[3]; }
109
110 oop callee_receiver(Symbol* signature) {
111 return _last_frame.interpreter_callee_receiver(signature);
112 }
113 BasicObjectLock* monitor_begin() const {
114 return _last_frame.interpreter_frame_monitor_begin();
115 }
116 BasicObjectLock* monitor_end() const {
117 return _last_frame.interpreter_frame_monitor_end();
118 }
119 BasicObjectLock* next_monitor(BasicObjectLock* current) const {
120 return _last_frame.next_monitor_in_interpreter_frame(current);
121 }
122
123 frame& get_frame() { return _last_frame; }
124 };
125
126 //------------------------------------------------------------------------------------------------------------------------
127 // State accessors
128
129 void InterpreterRuntime::set_bcp_and_mdp(address bcp, JavaThread* current) {
130 LastFrameAccessor last_frame(current);
131 last_frame.set_bcp(bcp);
132 if (ProfileInterpreter) {
133 // ProfileTraps uses MDOs independently of ProfileInterpreter.
134 // That is why we must check both ProfileInterpreter and mdo != nullptr.
135 MethodData* mdo = last_frame.method()->method_data();
136 if (mdo != nullptr) {
137 NEEDS_CLEANUP;
138 last_frame.set_mdp(mdo->bci_to_dp(last_frame.bci()));
139 }
140 }
141 }
142
143 //------------------------------------------------------------------------------------------------------------------------
144 // Constants
145
146
147 JRT_ENTRY(void, InterpreterRuntime::ldc(JavaThread* current, bool wide))
148 // access constant pool
149 LastFrameAccessor last_frame(current);
150 ConstantPool* pool = last_frame.method()->constants();
151 int cp_index = wide ? last_frame.get_index_u2(Bytecodes::_ldc_w) : last_frame.get_index_u1(Bytecodes::_ldc);
152 constantTag tag = pool->tag_at(cp_index);
153
154 assert (tag.is_unresolved_klass() || tag.is_klass(), "wrong ldc call");
155 Klass* klass = pool->klass_at(cp_index, CHECK);
156 oop java_class = klass->java_mirror();
157 current->set_vm_result(java_class);
158 JRT_END
159
160 JRT_ENTRY(void, InterpreterRuntime::resolve_ldc(JavaThread* current, Bytecodes::Code bytecode)) {
161 assert(bytecode == Bytecodes::_ldc ||
162 bytecode == Bytecodes::_ldc_w ||
163 bytecode == Bytecodes::_ldc2_w ||
164 bytecode == Bytecodes::_fast_aldc ||
165 bytecode == Bytecodes::_fast_aldc_w, "wrong bc");
166 ResourceMark rm(current);
167 const bool is_fast_aldc = (bytecode == Bytecodes::_fast_aldc ||
168 bytecode == Bytecodes::_fast_aldc_w);
169 LastFrameAccessor last_frame(current);
170 methodHandle m (current, last_frame.method());
171 Bytecode_loadconstant ldc(m, last_frame.bci());
172
173 // Double-check the size. (Condy can have any type.)
174 BasicType type = ldc.result_type();
175 switch (type2size[type]) {
176 case 2: guarantee(bytecode == Bytecodes::_ldc2_w, ""); break;
177 case 1: guarantee(bytecode != Bytecodes::_ldc2_w, ""); break;
178 default: ShouldNotReachHere();
179 }
180
196 assert(roop == coop, "expected result for assembly code");
197 }
198 }
199 #endif
200 current->set_vm_result(result);
201 if (!is_fast_aldc) {
202 // Tell the interpreter how to unbox the primitive.
203 guarantee(java_lang_boxing_object::is_instance(result, type), "");
204 int offset = java_lang_boxing_object::value_offset(type);
205 intptr_t flags = ((as_TosState(type) << ConstantPoolCache::tos_state_shift)
206 | (offset & ConstantPoolCache::field_index_mask));
207 current->set_vm_result_2((Metadata*)flags);
208 }
209 }
210 JRT_END
211
212
213 //------------------------------------------------------------------------------------------------------------------------
214 // Allocation
215
216 JRT_ENTRY(void, InterpreterRuntime::_new(JavaThread* current, ConstantPool* pool, int index))
217 Klass* k = pool->klass_at(index, CHECK);
218 InstanceKlass* klass = InstanceKlass::cast(k);
219
220 // Make sure we are not instantiating an abstract klass
221 klass->check_valid_for_instantiation(true, CHECK);
222
223 // Make sure klass is initialized
224 klass->initialize(CHECK);
225
226 oop obj = klass->allocate_instance(CHECK);
227 current->set_vm_result(obj);
228 JRT_END
229
230
231 JRT_ENTRY(void, InterpreterRuntime::newarray(JavaThread* current, BasicType type, jint size))
232 oop obj = oopFactory::new_typeArray(type, size, CHECK);
233 current->set_vm_result(obj);
234 JRT_END
235
236
237 JRT_ENTRY(void, InterpreterRuntime::anewarray(JavaThread* current, ConstantPool* pool, int index, jint size))
238 Klass* klass = pool->klass_at(index, CHECK);
239 objArrayOop obj = oopFactory::new_objArray(klass, size, CHECK);
240 current->set_vm_result(obj);
241 JRT_END
242
243
244 JRT_ENTRY(void, InterpreterRuntime::multianewarray(JavaThread* current, jint* first_size_address))
245 // We may want to pass in more arguments - could make this slightly faster
246 LastFrameAccessor last_frame(current);
247 ConstantPool* constants = last_frame.method()->constants();
248 int i = last_frame.get_index_u2(Bytecodes::_multianewarray);
249 Klass* klass = constants->klass_at(i, CHECK);
250 int nof_dims = last_frame.number_of_dimensions();
251 assert(klass->is_klass(), "not a class");
252 assert(nof_dims >= 1, "multianewarray rank must be nonzero");
253
254 // We must create an array of jints to pass to multi_allocate.
255 ResourceMark rm(current);
256 const int small_dims = 10;
257 jint dim_array[small_dims];
258 jint *dims = &dim_array[0];
259 if (nof_dims > small_dims) {
260 dims = (jint*) NEW_RESOURCE_ARRAY(jint, nof_dims);
261 }
262 for (int index = 0; index < nof_dims; index++) {
263 // offset from first_size_address is addressed as local[index]
264 int n = Interpreter::local_offset_in_bytes(index)/jintSize;
265 dims[index] = first_size_address[n];
266 }
267 oop obj = ArrayKlass::cast(klass)->multi_allocate(nof_dims, dims, CHECK);
268 current->set_vm_result(obj);
269 JRT_END
270
271
272 JRT_ENTRY(void, InterpreterRuntime::register_finalizer(JavaThread* current, oopDesc* obj))
273 assert(oopDesc::is_oop(obj), "must be a valid oop");
274 assert(obj->klass()->has_finalizer(), "shouldn't be here otherwise");
275 InstanceKlass::register_finalizer(instanceOop(obj), CHECK);
276 JRT_END
277
278
279 // Quicken instance-of and check-cast bytecodes
280 JRT_ENTRY(void, InterpreterRuntime::quicken_io_cc(JavaThread* current))
281 // Force resolving; quicken the bytecode
282 LastFrameAccessor last_frame(current);
283 int which = last_frame.get_index_u2(Bytecodes::_checkcast);
284 ConstantPool* cpool = last_frame.method()->constants();
285 // We'd expect to assert that we're only here to quicken bytecodes, but in a multithreaded
286 // program we might have seen an unquick'd bytecode in the interpreter but have another
287 // thread quicken the bytecode before we get here.
288 // assert( cpool->tag_at(which).is_unresolved_klass(), "should only come here to quicken bytecodes" );
289 Klass* klass = cpool->klass_at(which, CHECK);
290 current->set_vm_result_2(klass);
291 JRT_END
292
293
294 //------------------------------------------------------------------------------------------------------------------------
295 // Exceptions
296
297 void InterpreterRuntime::note_trap_inner(JavaThread* current, int reason,
298 const methodHandle& trap_method, int trap_bci) {
299 if (trap_method.not_null()) {
300 MethodData* trap_mdo = trap_method->method_data();
332 static Handle get_preinitialized_exception(Klass* k, TRAPS) {
333 // get klass
334 InstanceKlass* klass = InstanceKlass::cast(k);
335 assert(klass->is_initialized(),
336 "this klass should have been initialized during VM initialization");
337 // create instance - do not call constructor since we may have no
338 // (java) stack space left (should assert constructor is empty)
339 Handle exception;
340 oop exception_oop = klass->allocate_instance(CHECK_(exception));
341 exception = Handle(THREAD, exception_oop);
342 if (StackTraceInThrowable) {
343 java_lang_Throwable::fill_in_stack_trace(exception);
344 }
345 return exception;
346 }
347
348 // Special handling for stack overflow: since we don't have any (java) stack
349 // space left we use the pre-allocated & pre-initialized StackOverflowError
350 // klass to create an stack overflow error instance. We do not call its
351 // constructor for the same reason (it is empty, anyway).
352 JRT_ENTRY(void, InterpreterRuntime::throw_StackOverflowError(JavaThread* current))
353 Handle exception = get_preinitialized_exception(
354 vmClasses::StackOverflowError_klass(),
355 CHECK);
356 // Increment counter for hs_err file reporting
357 Atomic::inc(&Exceptions::_stack_overflow_errors);
358 // Remove the ScopedValue bindings in case we got a StackOverflowError
359 // while we were trying to manipulate ScopedValue bindings.
360 current->clear_scopedValueBindings();
361 THROW_HANDLE(exception);
362 JRT_END
363
364 JRT_ENTRY(void, InterpreterRuntime::throw_delayed_StackOverflowError(JavaThread* current))
365 Handle exception = get_preinitialized_exception(
366 vmClasses::StackOverflowError_klass(),
367 CHECK);
368 java_lang_Throwable::set_message(exception(),
369 Universe::delayed_stack_overflow_error_message());
370 // Increment counter for hs_err file reporting
371 Atomic::inc(&Exceptions::_stack_overflow_errors);
372 // Remove the ScopedValue bindings in case we got a StackOverflowError
373 // while we were trying to manipulate ScopedValue bindings.
374 current->clear_scopedValueBindings();
375 THROW_HANDLE(exception);
376 JRT_END
377
378 JRT_ENTRY(void, InterpreterRuntime::create_exception(JavaThread* current, char* name, char* message))
379 // lookup exception klass
380 TempNewSymbol s = SymbolTable::new_symbol(name);
381 if (ProfileTraps) {
382 if (s == vmSymbols::java_lang_ArithmeticException()) {
383 note_trap(current, Deoptimization::Reason_div0_check);
384 } else if (s == vmSymbols::java_lang_NullPointerException()) {
385 note_trap(current, Deoptimization::Reason_null_check);
386 }
387 }
388 // create exception
389 Handle exception = Exceptions::new_exception(current, s, message);
390 current->set_vm_result(exception());
391 JRT_END
392
393
394 JRT_ENTRY(void, InterpreterRuntime::create_klass_exception(JavaThread* current, char* name, oopDesc* obj))
395 // Produce the error message first because note_trap can safepoint
396 ResourceMark rm(current);
397 const char* klass_name = obj->klass()->external_name();
398 // lookup exception klass
399 TempNewSymbol s = SymbolTable::new_symbol(name);
400 if (ProfileTraps) {
401 if (s == vmSymbols::java_lang_ArrayStoreException()) {
402 note_trap(current, Deoptimization::Reason_array_check);
403 } else {
404 note_trap(current, Deoptimization::Reason_class_check);
405 }
406 }
407 // create exception, with klass name as detail message
408 Handle exception = Exceptions::new_exception(current, s, klass_name);
409 current->set_vm_result(exception());
410 JRT_END
411
412 JRT_ENTRY(void, InterpreterRuntime::throw_ArrayIndexOutOfBoundsException(JavaThread* current, arrayOopDesc* a, jint index))
413 // Produce the error message first because note_trap can safepoint
414 ResourceMark rm(current);
415 stringStream ss;
416 ss.print("Index %d out of bounds for length %d", index, a->length());
417
418 if (ProfileTraps) {
419 note_trap(current, Deoptimization::Reason_range_check);
420 }
421
422 THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), ss.as_string());
423 JRT_END
424
425 JRT_ENTRY(void, InterpreterRuntime::throw_ClassCastException(
426 JavaThread* current, oopDesc* obj))
427
428 // Produce the error message first because note_trap can safepoint
429 ResourceMark rm(current);
430 char* message = SharedRuntime::generate_class_cast_message(
431 current, obj->klass());
432
433 if (ProfileTraps) {
434 note_trap(current, Deoptimization::Reason_class_check);
435 }
436
437 // create exception
438 THROW_MSG(vmSymbols::java_lang_ClassCastException(), message);
439 JRT_END
440
441 // exception_handler_for_exception(...) returns the continuation address,
442 // the exception oop (via TLS) and sets the bci/bcp for the continuation.
443 // The exception oop is returned to make sure it is preserved over GC (it
444 // is only on the stack if the exception was thrown explicitly via athrow).
445 // During this operation, the expression stack contains the values for the
446 // bci where the exception happened. If the exception was propagated back
447 // from a call, the expression stack contains the values for the bci at the
448 // invoke w/o arguments (i.e., as if one were inside the call).
449 // Note that the implementation of this method assumes it's only called when an exception has actually occured
450 JRT_ENTRY(address, InterpreterRuntime::exception_handler_for_exception(JavaThread* current, oopDesc* exception))
451 // We get here after we have unwound from a callee throwing an exception
452 // into the interpreter. Any deferred stack processing is notified of
453 // the event via the StackWatermarkSet.
454 StackWatermarkSet::after_unwind(current);
455
456 LastFrameAccessor last_frame(current);
457 Handle h_exception(current, exception);
458 methodHandle h_method (current, last_frame.method());
459 constantPoolHandle h_constants(current, h_method->constants());
460 bool should_repeat;
461 int handler_bci;
462 int current_bci = last_frame.bci();
463
464 if (current->frames_to_pop_failed_realloc() > 0) {
465 // Allocation of scalar replaced object used in this frame
466 // failed. Unconditionally pop the frame.
467 current->dec_frames_to_pop_failed_realloc();
468 current->set_vm_result(h_exception());
469 // If the method is synchronized we already unlocked the monitor
470 // during deoptimization so the interpreter needs to skip it when
569 h_method->set_exception_handler_entered(handler_bci); // profiling
570 #ifndef ZERO
571 set_bcp_and_mdp(handler_pc, current);
572 continuation = Interpreter::dispatch_table(vtos)[*handler_pc];
573 #else
574 continuation = (address)(intptr_t) handler_bci;
575 #endif
576 }
577
578 // notify debugger of an exception catch
579 // (this is good for exceptions caught in native methods as well)
580 if (JvmtiExport::can_post_on_exceptions()) {
581 JvmtiExport::notice_unwind_due_to_exception(current, h_method(), handler_pc, h_exception(), (handler_pc != nullptr));
582 }
583
584 current->set_vm_result(h_exception());
585 return continuation;
586 JRT_END
587
588
589 JRT_ENTRY(void, InterpreterRuntime::throw_pending_exception(JavaThread* current))
590 assert(current->has_pending_exception(), "must only be called if there's an exception pending");
591 // nothing to do - eventually we should remove this code entirely (see comments @ call sites)
592 JRT_END
593
594
595 JRT_ENTRY(void, InterpreterRuntime::throw_AbstractMethodError(JavaThread* current))
596 THROW(vmSymbols::java_lang_AbstractMethodError());
597 JRT_END
598
599 // This method is called from the "abstract_entry" of the interpreter.
600 // At that point, the arguments have already been removed from the stack
601 // and therefore we don't have the receiver object at our fingertips. (Though,
602 // on some platforms the receiver still resides in a register...). Thus,
603 // we have no choice but print an error message not containing the receiver
604 // type.
605 JRT_ENTRY(void, InterpreterRuntime::throw_AbstractMethodErrorWithMethod(JavaThread* current,
606 Method* missingMethod))
607 ResourceMark rm(current);
608 assert(missingMethod != nullptr, "sanity");
609 methodHandle m(current, missingMethod);
610 LinkResolver::throw_abstract_method_error(m, THREAD);
611 JRT_END
612
613 JRT_ENTRY(void, InterpreterRuntime::throw_AbstractMethodErrorVerbose(JavaThread* current,
614 Klass* recvKlass,
615 Method* missingMethod))
616 ResourceMark rm(current);
617 methodHandle mh = methodHandle(current, missingMethod);
618 LinkResolver::throw_abstract_method_error(mh, recvKlass, THREAD);
619 JRT_END
620
621
622 JRT_ENTRY(void, InterpreterRuntime::throw_IncompatibleClassChangeError(JavaThread* current))
623 THROW(vmSymbols::java_lang_IncompatibleClassChangeError());
624 JRT_END
625
626 JRT_ENTRY(void, InterpreterRuntime::throw_IncompatibleClassChangeErrorVerbose(JavaThread* current,
627 Klass* recvKlass,
628 Klass* interfaceKlass))
629 ResourceMark rm(current);
630 char buf[1000];
631 buf[0] = '\0';
632 jio_snprintf(buf, sizeof(buf),
633 "Class %s does not implement the requested interface %s",
634 recvKlass ? recvKlass->external_name() : "nullptr",
635 interfaceKlass ? interfaceKlass->external_name() : "nullptr");
636 THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
637 JRT_END
638
639 JRT_ENTRY(void, InterpreterRuntime::throw_NullPointerException(JavaThread* current))
640 THROW(vmSymbols::java_lang_NullPointerException());
641 JRT_END
642
643 //------------------------------------------------------------------------------------------------------------------------
644 // Fields
645 //
646
647 void InterpreterRuntime::resolve_get_put(JavaThread* current, Bytecodes::Code bytecode) {
648 LastFrameAccessor last_frame(current);
649 constantPoolHandle pool(current, last_frame.method()->constants());
650 methodHandle m(current, last_frame.method());
651
652 resolve_get_put(bytecode, last_frame.get_index_u2(bytecode), m, pool, true /*initialize_holder*/, current);
653 }
654
655 void InterpreterRuntime::resolve_get_put(Bytecodes::Code bytecode, int field_index,
656 methodHandle& m,
657 constantPoolHandle& pool,
658 bool initialize_holder, TRAPS) {
659 fieldDescriptor info;
660 bool is_put = (bytecode == Bytecodes::_putfield || bytecode == Bytecodes::_nofast_putfield ||
661 bytecode == Bytecodes::_putstatic);
662 bool is_static = (bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic);
663
664 {
665 JvmtiHideSingleStepping jhss(THREAD);
666 LinkResolver::resolve_field_access(info, pool, field_index,
684 // an IllegalAccessError if the instruction is not in an instance
685 // initializer method <init>. If resolution were not inhibited, a putfield
686 // in an initializer method could be resolved in the initializer. Subsequent
687 // putfield instructions to the same field would then use cached information.
688 // As a result, those instructions would not pass through the VM. That is,
689 // checks in resolve_field_access() would not be executed for those instructions
690 // and the required IllegalAccessError would not be thrown.
691 //
692 // Also, we need to delay resolving getstatic and putstatic instructions until the
693 // class is initialized. This is required so that access to the static
694 // field will call the initialization function every time until the class
695 // is completely initialized ala. in 2.17.5 in JVM Specification.
696 InstanceKlass* klass = info.field_holder();
697 bool uninitialized_static = is_static && !klass->is_initialized();
698 bool has_initialized_final_update = info.field_holder()->major_version() >= 53 &&
699 info.has_initialized_final_update();
700 assert(!(has_initialized_final_update && !info.access_flags().is_final()), "Fields with initialized final updates must be final");
701
702 Bytecodes::Code get_code = (Bytecodes::Code)0;
703 Bytecodes::Code put_code = (Bytecodes::Code)0;
704 if (!uninitialized_static) {
705 get_code = ((is_static) ? Bytecodes::_getstatic : Bytecodes::_getfield);
706 if ((is_put && !has_initialized_final_update) || !info.access_flags().is_final()) {
707 put_code = ((is_static) ? Bytecodes::_putstatic : Bytecodes::_putfield);
708 }
709 }
710
711 ResolvedFieldEntry* entry = pool->resolved_field_entry_at(field_index);
712 entry->set_flags(info.access_flags().is_final(), info.access_flags().is_volatile());
713 entry->fill_in(info.field_holder(), info.offset(),
714 checked_cast<u2>(info.index()), checked_cast<u1>(state),
715 static_cast<u1>(get_code), static_cast<u1>(put_code));
716 }
717
718
719 //------------------------------------------------------------------------------------------------------------------------
720 // Synchronization
721 //
722 // The interpreter's synchronization code is factored out so that it can
723 // be shared by method invocation and synchronized blocks.
724 //%note synchronization_3
725
726 //%note monitor_1
727 JRT_ENTRY_NO_ASYNC(void, InterpreterRuntime::monitorenter(JavaThread* current, BasicObjectLock* elem))
728 #ifdef ASSERT
729 current->last_frame().interpreter_frame_verify_monitor(elem);
730 #endif
731 Handle h_obj(current, elem->obj());
732 assert(Universe::heap()->is_in_or_null(h_obj()),
733 "must be null or an object");
734 ObjectSynchronizer::enter(h_obj, elem->lock(), current);
735 assert(Universe::heap()->is_in_or_null(elem->obj()),
736 "must be null or an object");
737 #ifdef ASSERT
738 if (!current->preempting()) current->last_frame().interpreter_frame_verify_monitor(elem);
739 #endif
740 JRT_END
741
742 JRT_LEAF(void, InterpreterRuntime::monitorexit(BasicObjectLock* elem))
743 oop obj = elem->obj();
744 assert(Universe::heap()->is_in(obj), "must be an object");
745 // The object could become unlocked through a JNI call, which we have no other checks for.
746 // Give a fatal message if CheckJNICalls. Otherwise we ignore it.
747 if (obj->is_unlocked()) {
748 if (CheckJNICalls) {
749 fatal("Object has been unlocked by JNI");
750 }
751 return;
752 }
753 ObjectSynchronizer::exit(obj, elem->lock(), JavaThread::current());
754 // Free entry. If it is not cleared, the exception handling code will try to unlock the monitor
755 // again at method exit or in the case of an exception.
756 elem->set_obj(nullptr);
757 JRT_END
758
759
760 JRT_ENTRY(void, InterpreterRuntime::throw_illegal_monitor_state_exception(JavaThread* current))
761 THROW(vmSymbols::java_lang_IllegalMonitorStateException());
762 JRT_END
763
764
765 JRT_ENTRY(void, InterpreterRuntime::new_illegal_monitor_state_exception(JavaThread* current))
766 // Returns an illegal exception to install into the current thread. The
767 // pending_exception flag is cleared so normal exception handling does not
768 // trigger. Any current installed exception will be overwritten. This
769 // method will be called during an exception unwind.
770
771 assert(!HAS_PENDING_EXCEPTION, "no pending exception");
772 Handle exception(current, current->vm_result());
773 assert(exception() != nullptr, "vm result should be set");
774 current->set_vm_result(nullptr); // clear vm result before continuing (may cause memory leaks and assert failures)
775 exception = get_preinitialized_exception(vmClasses::IllegalMonitorStateException_klass(), CATCH);
776 current->set_vm_result(exception());
777 JRT_END
778
779
780 //------------------------------------------------------------------------------------------------------------------------
781 // Invokes
782
783 JRT_ENTRY(Bytecodes::Code, InterpreterRuntime::get_original_bytecode_at(JavaThread* current, Method* method, address bcp))
784 return method->orig_bytecode_at(method->bci_from(bcp));
785 JRT_END
786
787 JRT_ENTRY(void, InterpreterRuntime::set_original_bytecode_at(JavaThread* current, Method* method, address bcp, Bytecodes::Code new_code))
788 method->set_orig_bytecode_at(method->bci_from(bcp), new_code);
789 JRT_END
790
791 JRT_ENTRY(void, InterpreterRuntime::_breakpoint(JavaThread* current, Method* method, address bcp))
792 JvmtiExport::post_raw_breakpoint(current, method, bcp);
793 JRT_END
794
795 void InterpreterRuntime::resolve_invoke(JavaThread* current, Bytecodes::Code bytecode) {
796 LastFrameAccessor last_frame(current);
797 // extract receiver from the outgoing argument list if necessary
798 Handle receiver(current, nullptr);
799 if (bytecode == Bytecodes::_invokevirtual || bytecode == Bytecodes::_invokeinterface ||
800 bytecode == Bytecodes::_invokespecial) {
801 ResourceMark rm(current);
802 methodHandle m (current, last_frame.method());
803 Bytecode_invoke call(m, last_frame.bci());
804 Symbol* signature = call.signature();
805 receiver = Handle(current, last_frame.callee_receiver(signature));
806
807 assert(Universe::heap()->is_in_or_null(receiver()),
808 "sanity check");
809 assert(receiver.is_null() ||
810 !Universe::heap()->is_in(receiver->klass()),
811 "sanity check");
812 }
813
814 // resolve method
893 cache->set_itable_call(
894 bytecode,
895 method_index,
896 info.resolved_klass(),
897 resolved_method,
898 info.itable_index());
899 break;
900 default: ShouldNotReachHere();
901 }
902 }
903
904 void InterpreterRuntime::cds_resolve_invoke(Bytecodes::Code bytecode, int method_index,
905 constantPoolHandle& pool, TRAPS) {
906 LinkInfo link_info(pool, method_index, bytecode, CHECK);
907
908 if (!link_info.resolved_klass()->is_instance_klass() || InstanceKlass::cast(link_info.resolved_klass())->is_linked()) {
909 CallInfo call_info;
910 switch (bytecode) {
911 case Bytecodes::_invokevirtual: LinkResolver::cds_resolve_virtual_call (call_info, link_info, CHECK); break;
912 case Bytecodes::_invokeinterface: LinkResolver::cds_resolve_interface_call(call_info, link_info, CHECK); break;
913 case Bytecodes::_invokespecial: LinkResolver::cds_resolve_special_call (call_info, link_info, CHECK); break;
914
915 default: fatal("Unimplemented: %s", Bytecodes::name(bytecode));
916 }
917 methodHandle resolved_method(THREAD, call_info.resolved_method());
918 guarantee(resolved_method->method_holder()->is_linked(), "");
919 update_invoke_cp_cache_entry(call_info, bytecode, resolved_method, pool, method_index);
920 } else {
921 // FIXME: why a shared class is not linked yet?
922 // Can't link it here since there are no guarantees it'll be prelinked on the next run.
923 ResourceMark rm;
924 InstanceKlass* resolved_iklass = InstanceKlass::cast(link_info.resolved_klass());
925 log_info(cds, resolve)("Not resolved: class not linked: %s %s %s",
926 resolved_iklass->is_shared() ? "is_shared" : "",
927 resolved_iklass->init_state_name(),
928 resolved_iklass->external_name());
929 }
930 }
931
932 // First time execution: Resolve symbols, create a permanent MethodType object.
933 void InterpreterRuntime::resolve_invokehandle(JavaThread* current) {
934 const Bytecodes::Code bytecode = Bytecodes::_invokehandle;
935 LastFrameAccessor last_frame(current);
936
937 // resolve method
938 CallInfo info;
939 constantPoolHandle pool(current, last_frame.method()->constants());
940 int method_index = last_frame.get_index_u2(bytecode);
941 {
942 JvmtiHideSingleStepping jhss(current);
943 JavaThread* THREAD = current; // For exception macros.
944 LinkResolver::resolve_invoke(info, Handle(), pool,
945 method_index, bytecode,
946 CHECK);
947 } // end JvmtiHideSingleStepping
948
949 pool->cache()->set_method_handle(method_index, info);
950 }
951
952 void InterpreterRuntime::cds_resolve_invokehandle(int raw_index,
953 constantPoolHandle& pool, TRAPS) {
954 const Bytecodes::Code bytecode = Bytecodes::_invokehandle;
955 CallInfo info;
956 LinkResolver::resolve_invoke(info, Handle(), pool, raw_index, bytecode, CHECK);
957
958 pool->cache()->set_method_handle(raw_index, info);
959 }
960
961 // First time execution: Resolve symbols, create a permanent CallSite object.
962 void InterpreterRuntime::resolve_invokedynamic(JavaThread* current) {
963 LastFrameAccessor last_frame(current);
964 const Bytecodes::Code bytecode = Bytecodes::_invokedynamic;
965
966 // resolve method
967 CallInfo info;
968 constantPoolHandle pool(current, last_frame.method()->constants());
969 int index = last_frame.get_index_u4(bytecode);
970 {
971 JvmtiHideSingleStepping jhss(current);
972 JavaThread* THREAD = current; // For exception macros.
973 LinkResolver::resolve_invoke(info, Handle(), pool,
974 index, bytecode, CHECK);
975 } // end JvmtiHideSingleStepping
976
977 pool->cache()->set_dynamic_call(info, index);
978 }
979
980 void InterpreterRuntime::cds_resolve_invokedynamic(int raw_index,
981 constantPoolHandle& pool, TRAPS) {
982 const Bytecodes::Code bytecode = Bytecodes::_invokedynamic;
983 CallInfo info;
984 LinkResolver::resolve_invoke(info, Handle(), pool, raw_index, bytecode, CHECK);
985 pool->cache()->set_dynamic_call(info, raw_index);
986 }
987
988 // This function is the interface to the assembly code. It returns the resolved
989 // cpCache entry. This doesn't safepoint, but the helper routines safepoint.
990 // This function will check for redefinition!
991 JRT_ENTRY(void, InterpreterRuntime::resolve_from_cache(JavaThread* current, Bytecodes::Code bytecode)) {
992 switch (bytecode) {
993 case Bytecodes::_getstatic:
994 case Bytecodes::_putstatic:
995 case Bytecodes::_getfield:
996 case Bytecodes::_putfield:
997 resolve_get_put(current, bytecode);
998 break;
999 case Bytecodes::_invokevirtual:
1000 case Bytecodes::_invokespecial:
1001 case Bytecodes::_invokestatic:
1002 case Bytecodes::_invokeinterface:
1003 resolve_invoke(current, bytecode);
1004 break;
1005 case Bytecodes::_invokehandle:
1006 resolve_invokehandle(current);
1007 break;
1008 case Bytecodes::_invokedynamic:
1009 resolve_invokedynamic(current);
1010 break;
1011 default:
1012 fatal("unexpected bytecode: %s", Bytecodes::name(bytecode));
1013 break;
1014 }
1015 }
1016 JRT_END
1017
1018 //------------------------------------------------------------------------------------------------------------------------
1019 // Miscellaneous
1020
1021
1022 nmethod* InterpreterRuntime::frequency_counter_overflow(JavaThread* current, address branch_bcp) {
1023 // Enable WXWrite: the function is called directly by interpreter.
1024 MACOS_AARCH64_ONLY(ThreadWXEnable wx(WXWrite, current));
1025
1026 // frequency_counter_overflow_inner can throw async exception.
1027 nmethod* nm = frequency_counter_overflow_inner(current, branch_bcp);
1028 assert(branch_bcp != nullptr || nm == nullptr, "always returns null for non OSR requests");
1029 if (branch_bcp != nullptr && nm != nullptr) {
1030 // This was a successful request for an OSR nmethod. Because
1046 }
1047 if (nm != nullptr && current->is_interp_only_mode()) {
1048 // Normally we never get an nm if is_interp_only_mode() is true, because
1049 // policy()->event has a check for this and won't compile the method when
1050 // true. However, it's possible for is_interp_only_mode() to become true
1051 // during the compilation. We don't want to return the nm in that case
1052 // because we want to continue to execute interpreted.
1053 nm = nullptr;
1054 }
1055 #ifndef PRODUCT
1056 if (TraceOnStackReplacement) {
1057 if (nm != nullptr) {
1058 tty->print("OSR entry @ pc: " INTPTR_FORMAT ": ", p2i(nm->osr_entry()));
1059 nm->print();
1060 }
1061 }
1062 #endif
1063 return nm;
1064 }
1065
1066 JRT_ENTRY(nmethod*,
1067 InterpreterRuntime::frequency_counter_overflow_inner(JavaThread* current, address branch_bcp))
1068 // use UnlockFlagSaver to clear and restore the _do_not_unlock_if_synchronized
1069 // flag, in case this method triggers classloading which will call into Java.
1070 UnlockFlagSaver fs(current);
1071
1072 LastFrameAccessor last_frame(current);
1073 assert(last_frame.is_interpreted_frame(), "must come from interpreter");
1074 methodHandle method(current, last_frame.method());
1075 const int branch_bci = branch_bcp != nullptr ? method->bci_from(branch_bcp) : InvocationEntryBci;
1076 const int bci = branch_bcp != nullptr ? method->bci_from(last_frame.bcp()) : InvocationEntryBci;
1077
1078 nmethod* osr_nm = CompilationPolicy::event(method, method, branch_bci, bci, CompLevel_none, nullptr, CHECK_NULL);
1079
1080 BarrierSetNMethod* bs_nm = BarrierSet::barrier_set()->barrier_set_nmethod();
1081 if (osr_nm != nullptr && bs_nm != nullptr) {
1082 if (!bs_nm->nmethod_osr_entry_barrier(osr_nm)) {
1083 osr_nm = nullptr;
1084 }
1085 }
1086 return osr_nm;
1087 JRT_END
1088
1089 JRT_LEAF(jint, InterpreterRuntime::bcp_to_di(Method* method, address cur_bcp))
1090 assert(ProfileInterpreter, "must be profiling interpreter");
1091 int bci = method->bci_from(cur_bcp);
1092 MethodData* mdo = method->method_data();
1093 if (mdo == nullptr) return 0;
1094 return mdo->bci_to_di(bci);
1095 JRT_END
1096
1097 #ifdef ASSERT
1098 JRT_LEAF(void, InterpreterRuntime::verify_mdp(Method* method, address bcp, address mdp))
1099 assert(ProfileInterpreter, "must be profiling interpreter");
1100
1101 MethodData* mdo = method->method_data();
1102 assert(mdo != nullptr, "must not be null");
1103
1104 int bci = method->bci_from(bcp);
1105
1106 address mdp2 = mdo->bci_to_dp(bci);
1107 if (mdp != mdp2) {
1108 ResourceMark rm;
1109 tty->print_cr("FAILED verify : actual mdp %p expected mdp %p @ bci %d", mdp, mdp2, bci);
1110 int current_di = mdo->dp_to_di(mdp);
1111 int expected_di = mdo->dp_to_di(mdp2);
1112 tty->print_cr(" actual di %d expected di %d", current_di, expected_di);
1113 int expected_approx_bci = mdo->data_at(expected_di)->bci();
1114 int approx_bci = -1;
1115 if (current_di >= 0) {
1116 approx_bci = mdo->data_at(current_di)->bci();
1117 }
1118 tty->print_cr(" actual bci is %d expected bci %d", approx_bci, expected_approx_bci);
1119 mdo->print_on(tty);
1120 method->print_codes();
1121 }
1122 assert(mdp == mdp2, "wrong mdp");
1123 JRT_END
1124 #endif // ASSERT
1125
1126 JRT_ENTRY(void, InterpreterRuntime::update_mdp_for_ret(JavaThread* current, int return_bci))
1127 assert(ProfileInterpreter, "must be profiling interpreter");
1128 ResourceMark rm(current);
1129 LastFrameAccessor last_frame(current);
1130 assert(last_frame.is_interpreted_frame(), "must come from interpreter");
1131 MethodData* h_mdo = last_frame.method()->method_data();
1132
1133 // Grab a lock to ensure atomic access to setting the return bci and
1134 // the displacement. This can block and GC, invalidating all naked oops.
1135 MutexLocker ml(RetData_lock);
1136
1137 // ProfileData is essentially a wrapper around a derived oop, so we
1138 // need to take the lock before making any ProfileData structures.
1139 ProfileData* data = h_mdo->data_at(h_mdo->dp_to_di(last_frame.mdp()));
1140 guarantee(data != nullptr, "profile data must be valid");
1141 RetData* rdata = data->as_RetData();
1142 address new_mdp = rdata->fixup_ret(return_bci, h_mdo);
1143 last_frame.set_mdp(new_mdp);
1144 JRT_END
1145
1146 JRT_ENTRY(MethodCounters*, InterpreterRuntime::build_method_counters(JavaThread* current, Method* m))
1147 return Method::build_method_counters(current, m);
1148 JRT_END
1149
1150
1151 JRT_ENTRY(void, InterpreterRuntime::at_safepoint(JavaThread* current))
1152 // We used to need an explicit preserve_arguments here for invoke bytecodes. However,
1153 // stack traversal automatically takes care of preserving arguments for invoke, so
1154 // this is no longer needed.
1155
1156 // JRT_END does an implicit safepoint check, hence we are guaranteed to block
1157 // if this is called during a safepoint
1158
1159 if (JvmtiExport::should_post_single_step()) {
1160 // This function is called by the interpreter when single stepping. Such single
1161 // stepping could unwind a frame. Then, it is important that we process any frames
1162 // that we might return into.
1163 StackWatermarkSet::before_unwind(current);
1164
1165 // We are called during regular safepoints and when the VM is
1166 // single stepping. If any thread is marked for single stepping,
1167 // then we may have JVMTI work to do.
1168 LastFrameAccessor last_frame(current);
1169 JvmtiExport::at_single_stepping_point(current, last_frame.method(), last_frame.bcp());
1170 }
1171 JRT_END
1172
1173 JRT_LEAF(void, InterpreterRuntime::at_unwind(JavaThread* current))
1174 assert(current == JavaThread::current(), "pre-condition");
1175 // This function is called by the interpreter when the return poll found a reason
1176 // to call the VM. The reason could be that we are returning into a not yet safe
1177 // to access frame. We handle that below.
1178 // Note that this path does not check for single stepping, because we do not want
1179 // to single step when unwinding frames for an exception being thrown. Instead,
1180 // such single stepping code will use the safepoint table, which will use the
1181 // InterpreterRuntime::at_safepoint callback.
1182 StackWatermarkSet::before_unwind(current);
1183 JRT_END
1184
1185 JRT_ENTRY(void, InterpreterRuntime::post_field_access(JavaThread* current, oopDesc* obj,
1186 ResolvedFieldEntry *entry))
1187
1188 // check the access_flags for the field in the klass
1189
1190 InstanceKlass* ik = entry->field_holder();
1191 int index = entry->field_index();
1192 if (!ik->field_status(index).is_access_watched()) return;
1193
1194 bool is_static = (obj == nullptr);
1195 HandleMark hm(current);
1196
1197 Handle h_obj;
1198 if (!is_static) {
1199 // non-static field accessors have an object, but we need a handle
1200 h_obj = Handle(current, obj);
1201 }
1202 InstanceKlass* field_holder = entry->field_holder(); // HERE
1203 jfieldID fid = jfieldIDWorkaround::to_jfieldID(field_holder, entry->field_offset(), is_static);
1204 LastFrameAccessor last_frame(current);
1205 JvmtiExport::post_field_access(current, last_frame.method(), last_frame.bcp(), field_holder, h_obj, fid);
1206 JRT_END
1207
1208 JRT_ENTRY(void, InterpreterRuntime::post_field_modification(JavaThread* current, oopDesc* obj,
1209 ResolvedFieldEntry *entry, jvalue *value))
1210
1211 InstanceKlass* ik = entry->field_holder();
1212
1213 // check the access_flags for the field in the klass
1214 int index = entry->field_index();
1215 // bail out if field modifications are not watched
1216 if (!ik->field_status(index).is_modification_watched()) return;
1217
1218 char sig_type = '\0';
1219
1220 switch((TosState)entry->tos_state()) {
1221 case btos: sig_type = JVM_SIGNATURE_BYTE; break;
1222 case ztos: sig_type = JVM_SIGNATURE_BOOLEAN; break;
1223 case ctos: sig_type = JVM_SIGNATURE_CHAR; break;
1224 case stos: sig_type = JVM_SIGNATURE_SHORT; break;
1225 case itos: sig_type = JVM_SIGNATURE_INT; break;
1226 case ftos: sig_type = JVM_SIGNATURE_FLOAT; break;
1227 case atos: sig_type = JVM_SIGNATURE_CLASS; break;
1228 case ltos: sig_type = JVM_SIGNATURE_LONG; break;
1229 case dtos: sig_type = JVM_SIGNATURE_DOUBLE; break;
1244 // We assume that the two halves of longs/doubles are stored in interpreter
1245 // stack slots in platform-endian order.
1246 jlong_accessor u;
1247 jint* newval = (jint*)value;
1248 u.words[0] = newval[0];
1249 u.words[1] = newval[Interpreter::stackElementWords]; // skip if tag
1250 fvalue.j = u.long_value;
1251 #endif // _LP64
1252
1253 Handle h_obj;
1254 if (!is_static) {
1255 // non-static field accessors have an object, but we need a handle
1256 h_obj = Handle(current, obj);
1257 }
1258
1259 LastFrameAccessor last_frame(current);
1260 JvmtiExport::post_raw_field_modification(current, last_frame.method(), last_frame.bcp(), ik, h_obj,
1261 fid, sig_type, &fvalue);
1262 JRT_END
1263
1264 JRT_ENTRY(void, InterpreterRuntime::post_method_entry(JavaThread* current))
1265 LastFrameAccessor last_frame(current);
1266 JvmtiExport::post_method_entry(current, last_frame.method(), last_frame.get_frame());
1267 JRT_END
1268
1269
1270 // This is a JRT_BLOCK_ENTRY because we have to stash away the return oop
1271 // before transitioning to VM, and restore it after transitioning back
1272 // to Java. The return oop at the top-of-stack, is not walked by the GC.
1273 JRT_BLOCK_ENTRY(void, InterpreterRuntime::post_method_exit(JavaThread* current))
1274 LastFrameAccessor last_frame(current);
1275 JvmtiExport::post_method_exit(current, last_frame.method(), last_frame.get_frame());
1276 JRT_END
1277
1278 JRT_LEAF(int, InterpreterRuntime::interpreter_contains(address pc))
1279 {
1280 return (Interpreter::contains(Continuation::get_top_return_pc_post_barrier(JavaThread::current(), pc)) ? 1 : 0);
1281 }
1282 JRT_END
1283
1284
1285 // Implementation of SignatureHandlerLibrary
1286
1287 #ifndef SHARING_FAST_NATIVE_FINGERPRINTS
1288 // Dummy definition (else normalization method is defined in CPU
1289 // dependent code)
1290 uint64_t InterpreterRuntime::normalize_fast_native_fingerprint(uint64_t fingerprint) {
1291 return fingerprint;
1292 }
1293 #endif
1294
1295 address SignatureHandlerLibrary::set_handler_blob() {
1296 BufferBlob* handler_blob = BufferBlob::create("native signature handlers", blob_size);
1297 if (handler_blob == nullptr) {
1298 return nullptr;
1456 } else {
1457 if (PrintSignatureHandlers) {
1458 tty->cr();
1459 tty->print_cr("duplicate argument handler #%d for fingerprint " UINT64_FORMAT "(old: " PTR_FORMAT ", new : " PTR_FORMAT ")",
1460 _handlers->length(),
1461 fingerprint,
1462 p2i(_handlers->at(handler_index)),
1463 p2i(handler));
1464 }
1465 }
1466 }
1467
1468
1469 BufferBlob* SignatureHandlerLibrary::_handler_blob = nullptr;
1470 address SignatureHandlerLibrary::_handler = nullptr;
1471 GrowableArray<uint64_t>* SignatureHandlerLibrary::_fingerprints = nullptr;
1472 GrowableArray<address>* SignatureHandlerLibrary::_handlers = nullptr;
1473 address SignatureHandlerLibrary::_buffer = nullptr;
1474
1475
1476 JRT_ENTRY(void, InterpreterRuntime::prepare_native_call(JavaThread* current, Method* method))
1477 methodHandle m(current, method);
1478 assert(m->is_native(), "sanity check");
1479 // lookup native function entry point if it doesn't exist
1480 if (!m->has_native_function()) {
1481 NativeLookup::lookup(m, CHECK);
1482 }
1483 // make sure signature handler is installed
1484 SignatureHandlerLibrary::add(m);
1485 // The interpreter entry point checks the signature handler first,
1486 // before trying to fetch the native entry point and klass mirror.
1487 // We must set the signature handler last, so that multiple processors
1488 // preparing the same method will be sure to see non-null entry & mirror.
1489 JRT_END
1490
1491 #if defined(IA32) || defined(AMD64) || defined(ARM)
1492 JRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* current, void* src_address, void* dest_address))
1493 assert(current == JavaThread::current(), "pre-condition");
1494 if (src_address == dest_address) {
1495 return;
1496 }
1497 ResourceMark rm;
1498 LastFrameAccessor last_frame(current);
1499 assert(last_frame.is_interpreted_frame(), "");
1500 jint bci = last_frame.bci();
1501 methodHandle mh(current, last_frame.method());
1502 Bytecode_invoke invoke(mh, bci);
1503 ArgumentSizeComputer asc(invoke.signature());
1504 int size_of_arguments = (asc.size() + (invoke.has_receiver() ? 1 : 0)); // receiver
1505 Copy::conjoint_jbytes(src_address, dest_address,
1506 size_of_arguments * Interpreter::stackElementSize);
1507 JRT_END
1508 #endif
1509
1510 #if INCLUDE_JVMTI
1511 // This is a support of the JVMTI PopFrame interface.
1512 // Make sure it is an invokestatic of a polymorphic intrinsic that has a member_name argument
1513 // and return it as a vm_result so that it can be reloaded in the list of invokestatic parameters.
1514 // The member_name argument is a saved reference (in local#0) to the member_name.
1515 // For backward compatibility with some JDK versions (7, 8) it can also be a direct method handle.
1516 // FIXME: remove DMH case after j.l.i.InvokerBytecodeGenerator code shape is updated.
1517 JRT_ENTRY(void, InterpreterRuntime::member_name_arg_or_null(JavaThread* current, address member_name,
1518 Method* method, address bcp))
1519 Bytecodes::Code code = Bytecodes::code_at(method, bcp);
1520 if (code != Bytecodes::_invokestatic) {
1521 return;
1522 }
1523 ConstantPool* cpool = method->constants();
1524 int cp_index = Bytes::get_native_u2(bcp + 1);
1525 Symbol* cname = cpool->klass_name_at(cpool->klass_ref_index_at(cp_index, code));
1526 Symbol* mname = cpool->name_ref_at(cp_index, code);
1527
1528 if (MethodHandles::has_member_arg(cname, mname)) {
1529 oop member_name_oop = cast_to_oop(member_name);
1530 if (java_lang_invoke_DirectMethodHandle::is_instance(member_name_oop)) {
1531 // FIXME: remove after j.l.i.InvokerBytecodeGenerator code shape is updated.
1532 member_name_oop = java_lang_invoke_DirectMethodHandle::member(member_name_oop);
1533 }
1534 current->set_vm_result(member_name_oop);
1535 } else {
1536 current->set_vm_result(nullptr);
1537 }
1538 JRT_END
1539 #endif // INCLUDE_JVMTI
1540
1541 #ifndef PRODUCT
1542 // This must be a JRT_LEAF function because the interpreter must save registers on x86 to
1543 // call this, which changes rsp and makes the interpreter's expression stack not walkable.
1544 // The generated code still uses call_VM because that will set up the frame pointer for
1545 // bcp and method.
1546 JRT_LEAF(intptr_t, InterpreterRuntime::trace_bytecode(JavaThread* current, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2))
1547 assert(current == JavaThread::current(), "pre-condition");
1548 LastFrameAccessor last_frame(current);
1549 assert(last_frame.is_interpreted_frame(), "must be an interpreted frame");
1550 methodHandle mh(current, last_frame.method());
1551 BytecodeTracer::trace_interpreter(mh, last_frame.bcp(), tos, tos2);
1552 return preserve_this_value;
1553 JRT_END
1554 #endif // !PRODUCT
|
51 #include "oops/method.inline.hpp"
52 #include "oops/objArrayKlass.hpp"
53 #include "oops/objArrayOop.inline.hpp"
54 #include "oops/oop.inline.hpp"
55 #include "oops/symbol.hpp"
56 #include "prims/jvmtiExport.hpp"
57 #include "prims/methodHandles.hpp"
58 #include "prims/nativeLookup.hpp"
59 #include "runtime/atomic.hpp"
60 #include "runtime/continuation.hpp"
61 #include "runtime/deoptimization.hpp"
62 #include "runtime/fieldDescriptor.inline.hpp"
63 #include "runtime/frame.inline.hpp"
64 #include "runtime/handles.inline.hpp"
65 #include "runtime/icache.hpp"
66 #include "runtime/interfaceSupport.inline.hpp"
67 #include "runtime/java.hpp"
68 #include "runtime/javaCalls.hpp"
69 #include "runtime/jfieldIDWorkaround.hpp"
70 #include "runtime/osThread.hpp"
71 #include "runtime/perfData.inline.hpp"
72 #include "runtime/sharedRuntime.hpp"
73 #include "runtime/stackWatermarkSet.hpp"
74 #include "runtime/stubRoutines.hpp"
75 #include "runtime/synchronizer.inline.hpp"
76 #include "runtime/threadCritical.hpp"
77 #include "services/management.hpp"
78 #include "utilities/align.hpp"
79 #include "utilities/checkedCast.hpp"
80 #include "utilities/copy.hpp"
81 #include "utilities/events.hpp"
82 #ifdef COMPILER2
83 #include "opto/runtime.hpp"
84 #endif
85
86 // Helper class to access current interpreter state
87 class LastFrameAccessor : public StackObj {
88 frame _last_frame;
89 public:
90 LastFrameAccessor(JavaThread* current) {
91 assert(current == Thread::current(), "sanity");
92 _last_frame = current->last_frame();
93 }
94 bool is_interpreted_frame() const { return _last_frame.is_interpreted_frame(); }
95 Method* method() const { return _last_frame.interpreter_frame_method(); }
96 address bcp() const { return _last_frame.interpreter_frame_bcp(); }
97 int bci() const { return _last_frame.interpreter_frame_bci(); }
108 int get_index_u2(Bytecodes::Code bc) const { return bytecode().get_index_u2(bc); }
109 int get_index_u4(Bytecodes::Code bc) const { return bytecode().get_index_u4(bc); }
110 int number_of_dimensions() const { return bcp()[3]; }
111
112 oop callee_receiver(Symbol* signature) {
113 return _last_frame.interpreter_callee_receiver(signature);
114 }
115 BasicObjectLock* monitor_begin() const {
116 return _last_frame.interpreter_frame_monitor_begin();
117 }
118 BasicObjectLock* monitor_end() const {
119 return _last_frame.interpreter_frame_monitor_end();
120 }
121 BasicObjectLock* next_monitor(BasicObjectLock* current) const {
122 return _last_frame.next_monitor_in_interpreter_frame(current);
123 }
124
125 frame& get_frame() { return _last_frame; }
126 };
127
128 static bool is_resolved(JavaThread* current) {
129 LastFrameAccessor last_frame(current);
130 ConstantPool* constants = last_frame.method()->constants();
131 Bytecodes::Code bc = last_frame.code();
132
133 if (bc == Bytecodes::_ldc || bc == Bytecodes::_ldc_w || bc == Bytecodes::_ldc2_w ||
134 bc == Bytecodes::_fast_aldc || bc == Bytecodes::_fast_aldc_w) {
135 bool is_wide = (bc != Bytecodes::_ldc) && (bc != Bytecodes::_fast_aldc);
136 int index = (is_wide ? last_frame.get_index_u1(bc) : last_frame.get_index_u2(bc));
137 constantTag tag = constants->tag_at(index);
138 assert(tag.is_klass_or_reference(), "unknown tag: %s", tag.internal_name());
139 return constants->tag_at(index).is_klass();
140 } else if (bc == Bytecodes::_invokedynamic) {
141 int index = last_frame.get_index_u4(bc);
142 int indy_index = index;
143 ResolvedIndyEntry* indy_entry = constants->resolved_indy_entry_at(indy_index);
144 return indy_entry->is_resolved();
145 } else if (Bytecodes::is_invoke(bc)) {
146 int index = last_frame.get_index_u2(bc);
147 ResolvedMethodEntry* rme = constants->resolved_method_entry_at(index);
148 return rme->is_resolved(bc);
149 } else if (Bytecodes::is_field_code(bc) || bc == Bytecodes::_nofast_getfield || bc == Bytecodes::_nofast_putfield) {
150 if (bc == Bytecodes::_nofast_getfield) {
151 bc = Bytecodes::_getfield;
152 } else if (bc == Bytecodes::_nofast_putfield) {
153 bc = Bytecodes::_putfield;
154 }
155 int index = last_frame.get_index_u2(bc);
156 ResolvedFieldEntry* field_entry = constants->cache()->resolved_field_entry_at(index);
157 return field_entry->is_resolved(bc);
158 } else if (bc == Bytecodes::_new) {
159 int index = last_frame.get_index_u2(bc);
160 constantTag tag = constants->tag_at(index);
161 assert(tag.is_klass_or_reference(), "unknown tag: %s", tag.internal_name());
162 return constants->tag_at(index).is_klass();
163 }
164 return false;
165 }
166
167 static void trace_current_location(JavaThread* current) {
168 LogStreamHandle(Debug, init, interpreter) log;
169 if (current->profile_rt_calls() && log.is_enabled()) {
170 ResourceMark rm(current);
171 LastFrameAccessor last_frame(current);
172 Method* caller = last_frame.method();
173 ConstantPool* constants = caller->constants();
174 Bytecodes::Code bc = last_frame.code();
175 log.print("InterpreterRuntime: " INTPTR_FORMAT ": %s: " INTPTR_FORMAT,
176 p2i(current), Bytecodes::name(bc), p2i(caller));
177 if (caller->is_shared()) {
178 log.print(" shared");
179 }
180 if (is_resolved(current)) {
181 log.print(" resolved");
182 }
183 log.print(" ");
184 caller->print_short_name(&log);
185 log.print(" @ %d:", last_frame.bci());
186 int instruction_size = last_frame.bytecode().instruction_size();
187
188 if (Bytecodes::is_invoke(bc) && bc != Bytecodes::_invokedynamic) {
189 int index = last_frame.get_index_u2(bc);
190 ResolvedMethodEntry* rme = constants->resolved_method_entry_at(index);
191 if (rme->is_resolved(bc)) {
192 Method* m = rme->method();
193 if (m != nullptr) {
194 log.print(" %s", m->method_holder()->init_state_name());
195 } else {
196 log.print(" null");
197 }
198 }
199 } else if (Bytecodes::is_field_code(bc) || bc == Bytecodes::_nofast_getfield || bc == Bytecodes::_nofast_putfield) {
200 if (bc == Bytecodes::_nofast_getfield) {
201 bc = Bytecodes::_getfield;
202 } else if (bc == Bytecodes::_nofast_putfield) {
203 bc = Bytecodes::_putfield;
204 }
205 int index = last_frame.get_index_u2(bc);
206 ResolvedFieldEntry* field_entry = constants->cache()->resolved_field_entry_at(index);
207
208 if (field_entry->is_resolved(bc)) {
209 log.print(" %s", field_entry->field_holder()->init_state_name());
210 }
211 } else if (bc == Bytecodes::_new) {
212 int index = last_frame.get_index_u2(bc);
213 constantTag tag = constants->tag_at(index);
214 assert(tag.is_klass_or_reference(), "unknown tag: %s", tag.internal_name());
215 if (constants->tag_at(index).is_klass()) {
216 CPKlassSlot kslot = constants->klass_slot_at(index);
217 int resolved_klass_index = kslot.resolved_klass_index();
218 Klass* k = constants->resolved_klasses()->at(resolved_klass_index);
219 log.print(": %s", InstanceKlass::cast(k)->init_state_name());
220 }
221 }
222 log.print(" ");
223 caller->print_codes_on(last_frame.bci(), last_frame.bci() + instruction_size, &log, /*flags*/ 0);
224
225 LogStreamHandle(Trace, init, interpreter) log1;
226 if (log1.is_enabled()) {
227 if (bc == Bytecodes::_invokedynamic) {
228 int index = last_frame.get_index_u4(bc);
229 int indy_index = index;
230 ResolvedIndyEntry* indy_entry = constants->resolved_indy_entry_at(indy_index);
231 indy_entry->print_on(&log1);
232 } else if (Bytecodes::is_invoke(bc)) {
233 int index = last_frame.get_index_u2(bc);
234 ResolvedMethodEntry* rme = constants->resolved_method_entry_at(index);
235 rme->print_on(&log1);
236 } else if (Bytecodes::is_field_code(bc) || bc == Bytecodes::_nofast_getfield || bc == Bytecodes::_nofast_putfield) {
237 int index = last_frame.get_index_u2(bc);
238 ResolvedFieldEntry* field_entry = constants->cache()->resolved_field_entry_at(index);
239 field_entry->print_on(&log1);
240 }
241 }
242 }
243 }
244
245 //------------------------------------------------------------------------------------------------------------------------
246 // State accessors
247
248 void InterpreterRuntime::set_bcp_and_mdp(address bcp, JavaThread* current) {
249 LastFrameAccessor last_frame(current);
250 last_frame.set_bcp(bcp);
251 if (ProfileInterpreter) {
252 // ProfileTraps uses MDOs independently of ProfileInterpreter.
253 // That is why we must check both ProfileInterpreter and mdo != nullptr.
254 MethodData* mdo = last_frame.method()->method_data();
255 if (mdo != nullptr) {
256 NEEDS_CLEANUP;
257 last_frame.set_mdp(mdo->bci_to_dp(last_frame.bci()));
258 }
259 }
260 }
261
262 //------------------------------------------------------------------------------------------------------------------------
263 // Constants
264
265
266 JRT_ENTRY_PROF(void, InterpreterRuntime, ldc, InterpreterRuntime::ldc(JavaThread* current, bool wide))
267 // access constant pool
268 LastFrameAccessor last_frame(current);
269 ConstantPool* pool = last_frame.method()->constants();
270 int cp_index = wide ? last_frame.get_index_u2(Bytecodes::_ldc_w) : last_frame.get_index_u1(Bytecodes::_ldc);
271 constantTag tag = pool->tag_at(cp_index);
272
273 assert (tag.is_unresolved_klass() || tag.is_klass(), "wrong ldc call");
274 Klass* klass = pool->klass_at(cp_index, CHECK);
275 oop java_class = klass->java_mirror();
276 current->set_vm_result(java_class);
277 JRT_END
278
279 JRT_ENTRY_PROF(void, InterpreterRuntime, resolve_ldc, InterpreterRuntime::resolve_ldc(JavaThread* current, Bytecodes::Code bytecode)) {
280 assert(bytecode == Bytecodes::_ldc ||
281 bytecode == Bytecodes::_ldc_w ||
282 bytecode == Bytecodes::_ldc2_w ||
283 bytecode == Bytecodes::_fast_aldc ||
284 bytecode == Bytecodes::_fast_aldc_w, "wrong bc");
285 ResourceMark rm(current);
286 const bool is_fast_aldc = (bytecode == Bytecodes::_fast_aldc ||
287 bytecode == Bytecodes::_fast_aldc_w);
288 LastFrameAccessor last_frame(current);
289 methodHandle m (current, last_frame.method());
290 Bytecode_loadconstant ldc(m, last_frame.bci());
291
292 // Double-check the size. (Condy can have any type.)
293 BasicType type = ldc.result_type();
294 switch (type2size[type]) {
295 case 2: guarantee(bytecode == Bytecodes::_ldc2_w, ""); break;
296 case 1: guarantee(bytecode != Bytecodes::_ldc2_w, ""); break;
297 default: ShouldNotReachHere();
298 }
299
315 assert(roop == coop, "expected result for assembly code");
316 }
317 }
318 #endif
319 current->set_vm_result(result);
320 if (!is_fast_aldc) {
321 // Tell the interpreter how to unbox the primitive.
322 guarantee(java_lang_boxing_object::is_instance(result, type), "");
323 int offset = java_lang_boxing_object::value_offset(type);
324 intptr_t flags = ((as_TosState(type) << ConstantPoolCache::tos_state_shift)
325 | (offset & ConstantPoolCache::field_index_mask));
326 current->set_vm_result_2((Metadata*)flags);
327 }
328 }
329 JRT_END
330
331
332 //------------------------------------------------------------------------------------------------------------------------
333 // Allocation
334
335 JRT_ENTRY_PROF(void, InterpreterRuntime, new, InterpreterRuntime::_new(JavaThread* current, ConstantPool* pool, int index))
336 Klass* k = pool->klass_at(index, CHECK);
337 InstanceKlass* klass = InstanceKlass::cast(k);
338
339 // Make sure we are not instantiating an abstract klass
340 klass->check_valid_for_instantiation(true, CHECK);
341
342 // Make sure klass is initialized
343 klass->initialize(CHECK);
344
345 oop obj = klass->allocate_instance(CHECK);
346 current->set_vm_result(obj);
347 JRT_END
348
349
350 JRT_ENTRY_PROF(void, InterpreterRuntime, newarray, InterpreterRuntime::newarray(JavaThread* current, BasicType type, jint size))
351 oop obj = oopFactory::new_typeArray(type, size, CHECK);
352 current->set_vm_result(obj);
353 JRT_END
354
355
356 JRT_ENTRY_PROF(void, InterpreterRuntime, anewarray, InterpreterRuntime::anewarray(JavaThread* current, ConstantPool* pool, int index, jint size))
357 Klass* klass = pool->klass_at(index, CHECK);
358 objArrayOop obj = oopFactory::new_objArray(klass, size, CHECK);
359 current->set_vm_result(obj);
360 JRT_END
361
362
363 JRT_ENTRY_PROF(void, InterpreterRuntime, multianewarray, InterpreterRuntime::multianewarray(JavaThread* current, jint* first_size_address))
364 // We may want to pass in more arguments - could make this slightly faster
365 LastFrameAccessor last_frame(current);
366 ConstantPool* constants = last_frame.method()->constants();
367 int i = last_frame.get_index_u2(Bytecodes::_multianewarray);
368 Klass* klass = constants->klass_at(i, CHECK);
369 int nof_dims = last_frame.number_of_dimensions();
370 assert(klass->is_klass(), "not a class");
371 assert(nof_dims >= 1, "multianewarray rank must be nonzero");
372
373 // We must create an array of jints to pass to multi_allocate.
374 ResourceMark rm(current);
375 const int small_dims = 10;
376 jint dim_array[small_dims];
377 jint *dims = &dim_array[0];
378 if (nof_dims > small_dims) {
379 dims = (jint*) NEW_RESOURCE_ARRAY(jint, nof_dims);
380 }
381 for (int index = 0; index < nof_dims; index++) {
382 // offset from first_size_address is addressed as local[index]
383 int n = Interpreter::local_offset_in_bytes(index)/jintSize;
384 dims[index] = first_size_address[n];
385 }
386 oop obj = ArrayKlass::cast(klass)->multi_allocate(nof_dims, dims, CHECK);
387 current->set_vm_result(obj);
388 JRT_END
389
390
391 JRT_ENTRY_PROF(void, InterpreterRuntime, register_finalizer, InterpreterRuntime::register_finalizer(JavaThread* current, oopDesc* obj))
392 assert(oopDesc::is_oop(obj), "must be a valid oop");
393 assert(obj->klass()->has_finalizer(), "shouldn't be here otherwise");
394 InstanceKlass::register_finalizer(instanceOop(obj), CHECK);
395 JRT_END
396
397
398 // Quicken instance-of and check-cast bytecodes
399 JRT_ENTRY_PROF(void, InterpreterRuntime, quicken_io_cc, InterpreterRuntime::quicken_io_cc(JavaThread* current))
400 // Force resolving; quicken the bytecode
401 LastFrameAccessor last_frame(current);
402 int which = last_frame.get_index_u2(Bytecodes::_checkcast);
403 ConstantPool* cpool = last_frame.method()->constants();
404 // We'd expect to assert that we're only here to quicken bytecodes, but in a multithreaded
405 // program we might have seen an unquick'd bytecode in the interpreter but have another
406 // thread quicken the bytecode before we get here.
407 // assert( cpool->tag_at(which).is_unresolved_klass(), "should only come here to quicken bytecodes" );
408 Klass* klass = cpool->klass_at(which, CHECK);
409 current->set_vm_result_2(klass);
410 JRT_END
411
412
413 //------------------------------------------------------------------------------------------------------------------------
414 // Exceptions
415
416 void InterpreterRuntime::note_trap_inner(JavaThread* current, int reason,
417 const methodHandle& trap_method, int trap_bci) {
418 if (trap_method.not_null()) {
419 MethodData* trap_mdo = trap_method->method_data();
451 static Handle get_preinitialized_exception(Klass* k, TRAPS) {
452 // get klass
453 InstanceKlass* klass = InstanceKlass::cast(k);
454 assert(klass->is_initialized(),
455 "this klass should have been initialized during VM initialization");
456 // create instance - do not call constructor since we may have no
457 // (java) stack space left (should assert constructor is empty)
458 Handle exception;
459 oop exception_oop = klass->allocate_instance(CHECK_(exception));
460 exception = Handle(THREAD, exception_oop);
461 if (StackTraceInThrowable) {
462 java_lang_Throwable::fill_in_stack_trace(exception);
463 }
464 return exception;
465 }
466
467 // Special handling for stack overflow: since we don't have any (java) stack
468 // space left we use the pre-allocated & pre-initialized StackOverflowError
469 // klass to create an stack overflow error instance. We do not call its
470 // constructor for the same reason (it is empty, anyway).
471 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_StackOverflowError,
472 InterpreterRuntime::throw_StackOverflowError(JavaThread* current))
473 Handle exception = get_preinitialized_exception(
474 vmClasses::StackOverflowError_klass(),
475 CHECK);
476 // Increment counter for hs_err file reporting
477 Atomic::inc(&Exceptions::_stack_overflow_errors);
478 // Remove the ScopedValue bindings in case we got a StackOverflowError
479 // while we were trying to manipulate ScopedValue bindings.
480 current->clear_scopedValueBindings();
481 THROW_HANDLE(exception);
482 JRT_END
483
484 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_delayed_StackOverflowError,
485 InterpreterRuntime::throw_delayed_StackOverflowError(JavaThread* current))
486 Handle exception = get_preinitialized_exception(
487 vmClasses::StackOverflowError_klass(),
488 CHECK);
489 java_lang_Throwable::set_message(exception(),
490 Universe::delayed_stack_overflow_error_message());
491 // Increment counter for hs_err file reporting
492 Atomic::inc(&Exceptions::_stack_overflow_errors);
493 // Remove the ScopedValue bindings in case we got a StackOverflowError
494 // while we were trying to manipulate ScopedValue bindings.
495 current->clear_scopedValueBindings();
496 THROW_HANDLE(exception);
497 JRT_END
498
499 JRT_ENTRY_PROF(void, InterpreterRuntime, create_exception,
500 InterpreterRuntime::create_exception(JavaThread* current, char* name, char* message))
501 // lookup exception klass
502 TempNewSymbol s = SymbolTable::new_symbol(name);
503 if (ProfileTraps) {
504 if (s == vmSymbols::java_lang_ArithmeticException()) {
505 note_trap(current, Deoptimization::Reason_div0_check);
506 } else if (s == vmSymbols::java_lang_NullPointerException()) {
507 note_trap(current, Deoptimization::Reason_null_check);
508 }
509 }
510 // create exception
511 Handle exception = Exceptions::new_exception(current, s, message);
512 current->set_vm_result(exception());
513 JRT_END
514
515
516 JRT_ENTRY_PROF(void, InterpreterRuntime, create_klass_exception,
517 InterpreterRuntime::create_klass_exception(JavaThread* current, char* name, oopDesc* obj))
518 // Produce the error message first because note_trap can safepoint
519 ResourceMark rm(current);
520 const char* klass_name = obj->klass()->external_name();
521 // lookup exception klass
522 TempNewSymbol s = SymbolTable::new_symbol(name);
523 if (ProfileTraps) {
524 if (s == vmSymbols::java_lang_ArrayStoreException()) {
525 note_trap(current, Deoptimization::Reason_array_check);
526 } else {
527 note_trap(current, Deoptimization::Reason_class_check);
528 }
529 }
530 // create exception, with klass name as detail message
531 Handle exception = Exceptions::new_exception(current, s, klass_name);
532 current->set_vm_result(exception());
533 JRT_END
534
535 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_ArrayIndexOutOfBoundsException,
536 InterpreterRuntime::throw_ArrayIndexOutOfBoundsException(JavaThread* current, arrayOopDesc* a, jint index))
537 // Produce the error message first because note_trap can safepoint
538 ResourceMark rm(current);
539 stringStream ss;
540 ss.print("Index %d out of bounds for length %d", index, a->length());
541
542 if (ProfileTraps) {
543 note_trap(current, Deoptimization::Reason_range_check);
544 }
545
546 THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), ss.as_string());
547 JRT_END
548
549 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_ClassCastException,
550 InterpreterRuntime::throw_ClassCastException(
551 JavaThread* current, oopDesc* obj))
552
553 // Produce the error message first because note_trap can safepoint
554 ResourceMark rm(current);
555 char* message = SharedRuntime::generate_class_cast_message(
556 current, obj->klass());
557
558 if (ProfileTraps) {
559 note_trap(current, Deoptimization::Reason_class_check);
560 }
561
562 // create exception
563 THROW_MSG(vmSymbols::java_lang_ClassCastException(), message);
564 JRT_END
565
566 // exception_handler_for_exception(...) returns the continuation address,
567 // the exception oop (via TLS) and sets the bci/bcp for the continuation.
568 // The exception oop is returned to make sure it is preserved over GC (it
569 // is only on the stack if the exception was thrown explicitly via athrow).
570 // During this operation, the expression stack contains the values for the
571 // bci where the exception happened. If the exception was propagated back
572 // from a call, the expression stack contains the values for the bci at the
573 // invoke w/o arguments (i.e., as if one were inside the call).
574 // Note that the implementation of this method assumes it's only called when an exception has actually occured
575 JRT_ENTRY_PROF(address, InterpreterRuntime, exception_handler_for_exception,
576 InterpreterRuntime::exception_handler_for_exception(JavaThread* current, oopDesc* exception))
577 // We get here after we have unwound from a callee throwing an exception
578 // into the interpreter. Any deferred stack processing is notified of
579 // the event via the StackWatermarkSet.
580 StackWatermarkSet::after_unwind(current);
581
582 LastFrameAccessor last_frame(current);
583 Handle h_exception(current, exception);
584 methodHandle h_method (current, last_frame.method());
585 constantPoolHandle h_constants(current, h_method->constants());
586 bool should_repeat;
587 int handler_bci;
588 int current_bci = last_frame.bci();
589
590 if (current->frames_to_pop_failed_realloc() > 0) {
591 // Allocation of scalar replaced object used in this frame
592 // failed. Unconditionally pop the frame.
593 current->dec_frames_to_pop_failed_realloc();
594 current->set_vm_result(h_exception());
595 // If the method is synchronized we already unlocked the monitor
596 // during deoptimization so the interpreter needs to skip it when
695 h_method->set_exception_handler_entered(handler_bci); // profiling
696 #ifndef ZERO
697 set_bcp_and_mdp(handler_pc, current);
698 continuation = Interpreter::dispatch_table(vtos)[*handler_pc];
699 #else
700 continuation = (address)(intptr_t) handler_bci;
701 #endif
702 }
703
704 // notify debugger of an exception catch
705 // (this is good for exceptions caught in native methods as well)
706 if (JvmtiExport::can_post_on_exceptions()) {
707 JvmtiExport::notice_unwind_due_to_exception(current, h_method(), handler_pc, h_exception(), (handler_pc != nullptr));
708 }
709
710 current->set_vm_result(h_exception());
711 return continuation;
712 JRT_END
713
714
715 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_pending_exception, InterpreterRuntime::throw_pending_exception(JavaThread* current))
716 assert(current->has_pending_exception(), "must only be called if there's an exception pending");
717 // nothing to do - eventually we should remove this code entirely (see comments @ call sites)
718 JRT_END
719
720
721 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_AbstractMethodError, InterpreterRuntime::throw_AbstractMethodError(JavaThread* current))
722 THROW(vmSymbols::java_lang_AbstractMethodError());
723 JRT_END
724
725 // This method is called from the "abstract_entry" of the interpreter.
726 // At that point, the arguments have already been removed from the stack
727 // and therefore we don't have the receiver object at our fingertips. (Though,
728 // on some platforms the receiver still resides in a register...). Thus,
729 // we have no choice but print an error message not containing the receiver
730 // type.
731 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_AbstractMethodErrorWithMethod,
732 InterpreterRuntime::throw_AbstractMethodErrorWithMethod(JavaThread* current,
733 Method* missingMethod))
734 ResourceMark rm(current);
735 assert(missingMethod != nullptr, "sanity");
736 methodHandle m(current, missingMethod);
737 LinkResolver::throw_abstract_method_error(m, THREAD);
738 JRT_END
739
740 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_AbstractMethodErrorVerbose,
741 InterpreterRuntime::throw_AbstractMethodErrorVerbose(JavaThread* current,
742 Klass* recvKlass,
743 Method* missingMethod))
744 ResourceMark rm(current);
745 methodHandle mh = methodHandle(current, missingMethod);
746 LinkResolver::throw_abstract_method_error(mh, recvKlass, THREAD);
747 JRT_END
748
749
750 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_IncompatibleClassChangeError,
751 InterpreterRuntime::throw_IncompatibleClassChangeError(JavaThread* current))
752 THROW(vmSymbols::java_lang_IncompatibleClassChangeError());
753 JRT_END
754
755 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_IncompatibleClassChangeErrorVerbose,
756 InterpreterRuntime::throw_IncompatibleClassChangeErrorVerbose(JavaThread* current,
757 Klass* recvKlass,
758 Klass* interfaceKlass))
759 ResourceMark rm(current);
760 char buf[1000];
761 buf[0] = '\0';
762 jio_snprintf(buf, sizeof(buf),
763 "Class %s does not implement the requested interface %s",
764 recvKlass ? recvKlass->external_name() : "nullptr",
765 interfaceKlass ? interfaceKlass->external_name() : "nullptr");
766 THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(), buf);
767 JRT_END
768
769 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_NullPointerException,
770 InterpreterRuntime::throw_NullPointerException(JavaThread* current))
771 THROW(vmSymbols::java_lang_NullPointerException());
772 JRT_END
773
774 //------------------------------------------------------------------------------------------------------------------------
775 // Fields
776 //
777
778 PROF_ENTRY(void, InterpreterRuntime, resolve_getfield, InterpreterRuntime::resolve_getfield(JavaThread* current))
779 resolve_get_put(current, Bytecodes::_getfield);
780 PROF_END
781
782 PROF_ENTRY(void, InterpreterRuntime, resolve_putfield, InterpreterRuntime::resolve_putfield(JavaThread* current))
783 resolve_get_put(current, Bytecodes::_putfield);
784 PROF_END
785
786 PROF_ENTRY(void, InterpreterRuntime, resolve_getstatic, InterpreterRuntime::resolve_getstatic(JavaThread* current))
787 resolve_get_put(current, Bytecodes::_getstatic);
788 PROF_END
789
790 PROF_ENTRY(void, InterpreterRuntime, resolve_putstatic, InterpreterRuntime::resolve_putstatic(JavaThread* current))
791 resolve_get_put(current, Bytecodes::_putstatic);
792 PROF_END
793
794 void InterpreterRuntime::resolve_get_put(JavaThread* current, Bytecodes::Code bytecode) {
795 LastFrameAccessor last_frame(current);
796 constantPoolHandle pool(current, last_frame.method()->constants());
797 methodHandle m(current, last_frame.method());
798
799 resolve_get_put(bytecode, last_frame.get_index_u2(bytecode), m, pool, true /*initialize_holder*/, current);
800 }
801
802 void InterpreterRuntime::resolve_get_put(Bytecodes::Code bytecode, int field_index,
803 methodHandle& m,
804 constantPoolHandle& pool,
805 bool initialize_holder, TRAPS) {
806 fieldDescriptor info;
807 bool is_put = (bytecode == Bytecodes::_putfield || bytecode == Bytecodes::_nofast_putfield ||
808 bytecode == Bytecodes::_putstatic);
809 bool is_static = (bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic);
810
811 {
812 JvmtiHideSingleStepping jhss(THREAD);
813 LinkResolver::resolve_field_access(info, pool, field_index,
831 // an IllegalAccessError if the instruction is not in an instance
832 // initializer method <init>. If resolution were not inhibited, a putfield
833 // in an initializer method could be resolved in the initializer. Subsequent
834 // putfield instructions to the same field would then use cached information.
835 // As a result, those instructions would not pass through the VM. That is,
836 // checks in resolve_field_access() would not be executed for those instructions
837 // and the required IllegalAccessError would not be thrown.
838 //
839 // Also, we need to delay resolving getstatic and putstatic instructions until the
840 // class is initialized. This is required so that access to the static
841 // field will call the initialization function every time until the class
842 // is completely initialized ala. in 2.17.5 in JVM Specification.
843 InstanceKlass* klass = info.field_holder();
844 bool uninitialized_static = is_static && !klass->is_initialized();
845 bool has_initialized_final_update = info.field_holder()->major_version() >= 53 &&
846 info.has_initialized_final_update();
847 assert(!(has_initialized_final_update && !info.access_flags().is_final()), "Fields with initialized final updates must be final");
848
849 Bytecodes::Code get_code = (Bytecodes::Code)0;
850 Bytecodes::Code put_code = (Bytecodes::Code)0;
851 if (!uninitialized_static || VM_Version::supports_fast_class_init_checks()) {
852 #if !defined(X86) && !defined(AARCH64)
853 guarantee(!uninitialized_static, "fast class init checks missing in interpreter"); // FIXME
854 #endif // !X86 && !AARCH64
855 get_code = ((is_static) ? Bytecodes::_getstatic : Bytecodes::_getfield);
856 if ((is_put && !has_initialized_final_update) || !info.access_flags().is_final()) {
857 put_code = ((is_static) ? Bytecodes::_putstatic : Bytecodes::_putfield);
858 }
859 }
860
861 ResolvedFieldEntry* entry = pool->resolved_field_entry_at(field_index);
862 entry->set_flags(info.access_flags().is_final(), info.access_flags().is_volatile());
863 entry->fill_in(info.field_holder(), info.offset(),
864 checked_cast<u2>(info.index()), checked_cast<u1>(state),
865 static_cast<u1>(get_code), static_cast<u1>(put_code));
866 }
867
868
869 //------------------------------------------------------------------------------------------------------------------------
870 // Synchronization
871 //
872 // The interpreter's synchronization code is factored out so that it can
873 // be shared by method invocation and synchronized blocks.
874 //%note synchronization_3
875
876 //%note monitor_1
877 JRT_ENTRY_NO_ASYNC_PROF(void, InterpreterRuntime, monitorenter, InterpreterRuntime::monitorenter(JavaThread* current, BasicObjectLock* elem))
878 #ifdef ASSERT
879 current->last_frame().interpreter_frame_verify_monitor(elem);
880 #endif
881 Handle h_obj(current, elem->obj());
882 assert(Universe::heap()->is_in_or_null(h_obj()),
883 "must be null or an object");
884 ObjectSynchronizer::enter(h_obj, elem->lock(), current);
885 assert(Universe::heap()->is_in_or_null(elem->obj()),
886 "must be null or an object");
887 #ifdef ASSERT
888 if (!current->preempting()) current->last_frame().interpreter_frame_verify_monitor(elem);
889 #endif
890 JRT_END
891
892 JRT_LEAF_PROF_NO_THREAD(void, InterpreterRuntime, monitorexit, InterpreterRuntime::monitorexit(BasicObjectLock* elem))
893 oop obj = elem->obj();
894 assert(Universe::heap()->is_in(obj), "must be an object");
895 // The object could become unlocked through a JNI call, which we have no other checks for.
896 // Give a fatal message if CheckJNICalls. Otherwise we ignore it.
897 if (obj->is_unlocked()) {
898 if (CheckJNICalls) {
899 fatal("Object has been unlocked by JNI");
900 }
901 return;
902 }
903 ObjectSynchronizer::exit(obj, elem->lock(), JavaThread::current());
904 // Free entry. If it is not cleared, the exception handling code will try to unlock the monitor
905 // again at method exit or in the case of an exception.
906 elem->set_obj(nullptr);
907 JRT_END
908
909
910 JRT_ENTRY_PROF(void, InterpreterRuntime, throw_illegal_monitor_state_exception,
911 InterpreterRuntime::throw_illegal_monitor_state_exception(JavaThread* current))
912 THROW(vmSymbols::java_lang_IllegalMonitorStateException());
913 JRT_END
914
915
916 JRT_ENTRY_PROF(void, InterpreterRuntime, new_illegal_monitor_state_exception,
917 InterpreterRuntime::new_illegal_monitor_state_exception(JavaThread* current))
918 // Returns an illegal exception to install into the current thread. The
919 // pending_exception flag is cleared so normal exception handling does not
920 // trigger. Any current installed exception will be overwritten. This
921 // method will be called during an exception unwind.
922
923 assert(!HAS_PENDING_EXCEPTION, "no pending exception");
924 Handle exception(current, current->vm_result());
925 assert(exception() != nullptr, "vm result should be set");
926 current->set_vm_result(nullptr); // clear vm result before continuing (may cause memory leaks and assert failures)
927 exception = get_preinitialized_exception(vmClasses::IllegalMonitorStateException_klass(), CATCH);
928 current->set_vm_result(exception());
929 JRT_END
930
931
932 //------------------------------------------------------------------------------------------------------------------------
933 // Invokes
934
935 JRT_ENTRY_PROF(Bytecodes::Code, InterpreterRuntime, get_original_bytecode_at, InterpreterRuntime::get_original_bytecode_at(JavaThread* current, Method* method, address bcp))
936 return method->orig_bytecode_at(method->bci_from(bcp));
937 JRT_END
938
939 JRT_ENTRY_PROF(void, InterpreterRuntime, set_original_bytecode_at, InterpreterRuntime::set_original_bytecode_at(JavaThread* current, Method* method, address bcp, Bytecodes::Code new_code))
940 method->set_orig_bytecode_at(method->bci_from(bcp), new_code);
941 JRT_END
942
943 JRT_ENTRY_PROF(void, InterpreterRuntime, breakpoint, InterpreterRuntime::_breakpoint(JavaThread* current, Method* method, address bcp))
944 JvmtiExport::post_raw_breakpoint(current, method, bcp);
945 JRT_END
946
947 PROF_ENTRY(void, InterpreterRuntime, resolve_invokevirtual, InterpreterRuntime::resolve_invokevirtual(JavaThread* current))
948 resolve_invoke(current, Bytecodes::_invokevirtual);
949 PROF_END
950
951 PROF_ENTRY(void, InterpreterRuntime, resolve_invokespecial, InterpreterRuntime::resolve_invokespecial(JavaThread* current))
952 resolve_invoke(current, Bytecodes::_invokespecial);
953 PROF_END
954
955 PROF_ENTRY(void, InterpreterRuntime, resolve_invokestatic, InterpreterRuntime::resolve_invokestatic(JavaThread* current))
956 resolve_invoke(current, Bytecodes::_invokestatic);
957 PROF_END
958
959 PROF_ENTRY(void, InterpreterRuntime, resolve_invokeinterface, InterpreterRuntime::resolve_invokeinterface(JavaThread* current))
960 resolve_invoke(current, Bytecodes::_invokeinterface);
961 PROF_END
962
963 void InterpreterRuntime::resolve_invoke(JavaThread* current, Bytecodes::Code bytecode) {
964 LastFrameAccessor last_frame(current);
965 // extract receiver from the outgoing argument list if necessary
966 Handle receiver(current, nullptr);
967 if (bytecode == Bytecodes::_invokevirtual || bytecode == Bytecodes::_invokeinterface ||
968 bytecode == Bytecodes::_invokespecial) {
969 ResourceMark rm(current);
970 methodHandle m (current, last_frame.method());
971 Bytecode_invoke call(m, last_frame.bci());
972 Symbol* signature = call.signature();
973 receiver = Handle(current, last_frame.callee_receiver(signature));
974
975 assert(Universe::heap()->is_in_or_null(receiver()),
976 "sanity check");
977 assert(receiver.is_null() ||
978 !Universe::heap()->is_in(receiver->klass()),
979 "sanity check");
980 }
981
982 // resolve method
1061 cache->set_itable_call(
1062 bytecode,
1063 method_index,
1064 info.resolved_klass(),
1065 resolved_method,
1066 info.itable_index());
1067 break;
1068 default: ShouldNotReachHere();
1069 }
1070 }
1071
1072 void InterpreterRuntime::cds_resolve_invoke(Bytecodes::Code bytecode, int method_index,
1073 constantPoolHandle& pool, TRAPS) {
1074 LinkInfo link_info(pool, method_index, bytecode, CHECK);
1075
1076 if (!link_info.resolved_klass()->is_instance_klass() || InstanceKlass::cast(link_info.resolved_klass())->is_linked()) {
1077 CallInfo call_info;
1078 switch (bytecode) {
1079 case Bytecodes::_invokevirtual: LinkResolver::cds_resolve_virtual_call (call_info, link_info, CHECK); break;
1080 case Bytecodes::_invokeinterface: LinkResolver::cds_resolve_interface_call(call_info, link_info, CHECK); break;
1081 case Bytecodes::_invokestatic: LinkResolver::cds_resolve_static_call (call_info, link_info, CHECK); break;
1082 case Bytecodes::_invokespecial: LinkResolver::cds_resolve_special_call (call_info, link_info, CHECK); break;
1083
1084 default: fatal("Unimplemented: %s", Bytecodes::name(bytecode));
1085 }
1086 methodHandle resolved_method(THREAD, call_info.resolved_method());
1087 guarantee(resolved_method->method_holder()->is_linked(), "");
1088 update_invoke_cp_cache_entry(call_info, bytecode, resolved_method, pool, method_index);
1089 } else {
1090 // FIXME: why a shared class is not linked yet?
1091 // Can't link it here since there are no guarantees it'll be prelinked on the next run.
1092 ResourceMark rm;
1093 InstanceKlass* resolved_iklass = InstanceKlass::cast(link_info.resolved_klass());
1094 log_info(cds, resolve)("Not resolved: class not linked: %s %s %s",
1095 resolved_iklass->is_shared() ? "is_shared" : "",
1096 resolved_iklass->init_state_name(),
1097 resolved_iklass->external_name());
1098 }
1099 }
1100
1101 // First time execution: Resolve symbols, create a permanent MethodType object.
1102 PROF_ENTRY(void, InterpreterRuntime, resolve_invokehandle, InterpreterRuntime::resolve_invokehandle(JavaThread* current))
1103 const Bytecodes::Code bytecode = Bytecodes::_invokehandle;
1104 LastFrameAccessor last_frame(current);
1105
1106 // resolve method
1107 CallInfo info;
1108 constantPoolHandle pool(current, last_frame.method()->constants());
1109 int method_index = last_frame.get_index_u2(bytecode);
1110 {
1111 JvmtiHideSingleStepping jhss(current);
1112 JavaThread* THREAD = current; // For exception macros.
1113 LinkResolver::resolve_invoke(info, Handle(), pool,
1114 method_index, bytecode,
1115 CHECK);
1116 } // end JvmtiHideSingleStepping
1117
1118 pool->cache()->set_method_handle(method_index, info);
1119 PROF_END
1120
1121 void InterpreterRuntime::cds_resolve_invokehandle(int raw_index,
1122 constantPoolHandle& pool, TRAPS) {
1123 const Bytecodes::Code bytecode = Bytecodes::_invokehandle;
1124 CallInfo info;
1125 LinkResolver::resolve_invoke(info, Handle(), pool, raw_index, bytecode, CHECK);
1126
1127 pool->cache()->set_method_handle(raw_index, info);
1128 }
1129
1130 // First time execution: Resolve symbols, create a permanent CallSite object.
1131 PROF_ENTRY(void, InterpreterRuntime, resolve_invokedynamic, InterpreterRuntime::resolve_invokedynamic(JavaThread* current))
1132 LastFrameAccessor last_frame(current);
1133 const Bytecodes::Code bytecode = Bytecodes::_invokedynamic;
1134
1135 // resolve method
1136 CallInfo info;
1137 constantPoolHandle pool(current, last_frame.method()->constants());
1138 int index = last_frame.get_index_u4(bytecode);
1139 {
1140 JvmtiHideSingleStepping jhss(current);
1141 JavaThread* THREAD = current; // For exception macros.
1142 LinkResolver::resolve_invoke(info, Handle(), pool,
1143 index, bytecode, CHECK);
1144 } // end JvmtiHideSingleStepping
1145
1146 pool->cache()->set_dynamic_call(info, index);
1147 PROF_END
1148
1149 void InterpreterRuntime::cds_resolve_invokedynamic(int raw_index,
1150 constantPoolHandle& pool, TRAPS) {
1151 const Bytecodes::Code bytecode = Bytecodes::_invokedynamic;
1152 CallInfo info;
1153 LinkResolver::resolve_invoke(info, Handle(), pool, raw_index, bytecode, CHECK);
1154 pool->cache()->set_dynamic_call(info, raw_index);
1155 }
1156
1157 // This function is the interface to the assembly code. It returns the resolved
1158 // cpCache entry. This doesn't safepoint, but the helper routines safepoint.
1159 // This function will check for redefinition!
1160 JRT_ENTRY(void, InterpreterRuntime::resolve_from_cache(JavaThread* current, Bytecodes::Code bytecode)) {
1161 trace_current_location(current);
1162
1163 switch (bytecode) {
1164 case Bytecodes::_getstatic: resolve_getstatic(current); break;
1165 case Bytecodes::_putstatic: resolve_putstatic(current); break;
1166 case Bytecodes::_getfield: resolve_getfield(current); break;
1167 case Bytecodes::_putfield: resolve_putfield(current); break;
1168
1169 case Bytecodes::_invokevirtual: resolve_invokevirtual(current); break;
1170 case Bytecodes::_invokespecial: resolve_invokespecial(current); break;
1171 case Bytecodes::_invokestatic: resolve_invokestatic(current); break;
1172 case Bytecodes::_invokeinterface: resolve_invokeinterface(current); break;
1173 case Bytecodes::_invokehandle: resolve_invokehandle(current); break;
1174 case Bytecodes::_invokedynamic: resolve_invokedynamic(current); break;
1175
1176 default:
1177 fatal("unexpected bytecode: %s", Bytecodes::name(bytecode));
1178 break;
1179 }
1180 }
1181 JRT_END
1182
1183 //------------------------------------------------------------------------------------------------------------------------
1184 // Miscellaneous
1185
1186
1187 nmethod* InterpreterRuntime::frequency_counter_overflow(JavaThread* current, address branch_bcp) {
1188 // Enable WXWrite: the function is called directly by interpreter.
1189 MACOS_AARCH64_ONLY(ThreadWXEnable wx(WXWrite, current));
1190
1191 // frequency_counter_overflow_inner can throw async exception.
1192 nmethod* nm = frequency_counter_overflow_inner(current, branch_bcp);
1193 assert(branch_bcp != nullptr || nm == nullptr, "always returns null for non OSR requests");
1194 if (branch_bcp != nullptr && nm != nullptr) {
1195 // This was a successful request for an OSR nmethod. Because
1211 }
1212 if (nm != nullptr && current->is_interp_only_mode()) {
1213 // Normally we never get an nm if is_interp_only_mode() is true, because
1214 // policy()->event has a check for this and won't compile the method when
1215 // true. However, it's possible for is_interp_only_mode() to become true
1216 // during the compilation. We don't want to return the nm in that case
1217 // because we want to continue to execute interpreted.
1218 nm = nullptr;
1219 }
1220 #ifndef PRODUCT
1221 if (TraceOnStackReplacement) {
1222 if (nm != nullptr) {
1223 tty->print("OSR entry @ pc: " INTPTR_FORMAT ": ", p2i(nm->osr_entry()));
1224 nm->print();
1225 }
1226 }
1227 #endif
1228 return nm;
1229 }
1230
1231 JRT_ENTRY_PROF(nmethod*, InterpreterRuntime, frequency_counter_overflow,
1232 InterpreterRuntime::frequency_counter_overflow_inner(JavaThread* current, address branch_bcp))
1233 // use UnlockFlagSaver to clear and restore the _do_not_unlock_if_synchronized
1234 // flag, in case this method triggers classloading which will call into Java.
1235 UnlockFlagSaver fs(current);
1236
1237 LastFrameAccessor last_frame(current);
1238 assert(last_frame.is_interpreted_frame(), "must come from interpreter");
1239 methodHandle method(current, last_frame.method());
1240 const int branch_bci = branch_bcp != nullptr ? method->bci_from(branch_bcp) : InvocationEntryBci;
1241 const int bci = branch_bcp != nullptr ? method->bci_from(last_frame.bcp()) : InvocationEntryBci;
1242
1243 nmethod* osr_nm = CompilationPolicy::event(method, method, branch_bci, bci, CompLevel_none, nullptr, CHECK_NULL);
1244
1245 BarrierSetNMethod* bs_nm = BarrierSet::barrier_set()->barrier_set_nmethod();
1246 if (osr_nm != nullptr && bs_nm != nullptr) {
1247 if (!bs_nm->nmethod_osr_entry_barrier(osr_nm)) {
1248 osr_nm = nullptr;
1249 }
1250 }
1251 return osr_nm;
1252 JRT_END
1253
1254 JRT_LEAF_PROF_NO_THREAD(jint, InterpreterRuntime, bcp_to_di, InterpreterRuntime::bcp_to_di(Method* method, address cur_bcp))
1255 assert(ProfileInterpreter, "must be profiling interpreter");
1256 int bci = method->bci_from(cur_bcp);
1257 MethodData* mdo = method->method_data();
1258 if (mdo == nullptr) return 0;
1259 return mdo->bci_to_di(bci);
1260 JRT_END
1261
1262 #ifdef ASSERT
1263 JRT_LEAF(void, InterpreterRuntime::verify_mdp(Method* method, address bcp, address mdp))
1264 assert(ProfileInterpreter, "must be profiling interpreter");
1265
1266 MethodData* mdo = method->method_data();
1267 assert(mdo != nullptr, "must not be null");
1268
1269 int bci = method->bci_from(bcp);
1270
1271 address mdp2 = mdo->bci_to_dp(bci);
1272 if (mdp != mdp2) {
1273 ResourceMark rm;
1274 tty->print_cr("FAILED verify : actual mdp %p expected mdp %p @ bci %d", mdp, mdp2, bci);
1275 int current_di = mdo->dp_to_di(mdp);
1276 int expected_di = mdo->dp_to_di(mdp2);
1277 tty->print_cr(" actual di %d expected di %d", current_di, expected_di);
1278 int expected_approx_bci = mdo->data_at(expected_di)->bci();
1279 int approx_bci = -1;
1280 if (current_di >= 0) {
1281 approx_bci = mdo->data_at(current_di)->bci();
1282 }
1283 tty->print_cr(" actual bci is %d expected bci %d", approx_bci, expected_approx_bci);
1284 mdo->print_on(tty);
1285 method->print_codes();
1286 }
1287 assert(mdp == mdp2, "wrong mdp");
1288 JRT_END
1289 #endif // ASSERT
1290
1291 JRT_ENTRY_PROF(void, InterpreterRuntime, update_mdp_for_ret, InterpreterRuntime::update_mdp_for_ret(JavaThread* current, int return_bci))
1292 assert(ProfileInterpreter, "must be profiling interpreter");
1293 ResourceMark rm(current);
1294 LastFrameAccessor last_frame(current);
1295 assert(last_frame.is_interpreted_frame(), "must come from interpreter");
1296 MethodData* h_mdo = last_frame.method()->method_data();
1297
1298 // Grab a lock to ensure atomic access to setting the return bci and
1299 // the displacement. This can block and GC, invalidating all naked oops.
1300 MutexLocker ml(RetData_lock);
1301
1302 // ProfileData is essentially a wrapper around a derived oop, so we
1303 // need to take the lock before making any ProfileData structures.
1304 ProfileData* data = h_mdo->data_at(h_mdo->dp_to_di(last_frame.mdp()));
1305 guarantee(data != nullptr, "profile data must be valid");
1306 RetData* rdata = data->as_RetData();
1307 address new_mdp = rdata->fixup_ret(return_bci, h_mdo);
1308 last_frame.set_mdp(new_mdp);
1309 JRT_END
1310
1311 JRT_ENTRY_PROF(MethodCounters*, InterpreterRuntime, build_method_counters, InterpreterRuntime::build_method_counters(JavaThread* current, Method* m))
1312 return Method::build_method_counters(current, m);
1313 JRT_END
1314
1315
1316 JRT_ENTRY_PROF(void, InterpreterRuntime, at_safepoint, InterpreterRuntime::at_safepoint(JavaThread* current))
1317 // We used to need an explicit preserve_arguments here for invoke bytecodes. However,
1318 // stack traversal automatically takes care of preserving arguments for invoke, so
1319 // this is no longer needed.
1320
1321 // JRT_END does an implicit safepoint check, hence we are guaranteed to block
1322 // if this is called during a safepoint
1323
1324 if (JvmtiExport::should_post_single_step()) {
1325 // This function is called by the interpreter when single stepping. Such single
1326 // stepping could unwind a frame. Then, it is important that we process any frames
1327 // that we might return into.
1328 StackWatermarkSet::before_unwind(current);
1329
1330 // We are called during regular safepoints and when the VM is
1331 // single stepping. If any thread is marked for single stepping,
1332 // then we may have JVMTI work to do.
1333 LastFrameAccessor last_frame(current);
1334 JvmtiExport::at_single_stepping_point(current, last_frame.method(), last_frame.bcp());
1335 }
1336 JRT_END
1337
1338 JRT_LEAF_PROF(void, InterpreterRuntime, at_unwind, InterpreterRuntime::at_unwind(JavaThread* current))
1339 assert(current == JavaThread::current(), "pre-condition");
1340 // This function is called by the interpreter when the return poll found a reason
1341 // to call the VM. The reason could be that we are returning into a not yet safe
1342 // to access frame. We handle that below.
1343 // Note that this path does not check for single stepping, because we do not want
1344 // to single step when unwinding frames for an exception being thrown. Instead,
1345 // such single stepping code will use the safepoint table, which will use the
1346 // InterpreterRuntime::at_safepoint callback.
1347 StackWatermarkSet::before_unwind(current);
1348 JRT_END
1349
1350 JRT_ENTRY_PROF(void, InterpreterRuntime, post_field_access, InterpreterRuntime::post_field_access(JavaThread* current, oopDesc* obj,
1351 ResolvedFieldEntry *entry))
1352
1353 // check the access_flags for the field in the klass
1354
1355 InstanceKlass* ik = entry->field_holder();
1356 int index = entry->field_index();
1357 if (!ik->field_status(index).is_access_watched()) return;
1358
1359 bool is_static = (obj == nullptr);
1360 HandleMark hm(current);
1361
1362 Handle h_obj;
1363 if (!is_static) {
1364 // non-static field accessors have an object, but we need a handle
1365 h_obj = Handle(current, obj);
1366 }
1367 InstanceKlass* field_holder = entry->field_holder(); // HERE
1368 jfieldID fid = jfieldIDWorkaround::to_jfieldID(field_holder, entry->field_offset(), is_static);
1369 LastFrameAccessor last_frame(current);
1370 JvmtiExport::post_field_access(current, last_frame.method(), last_frame.bcp(), field_holder, h_obj, fid);
1371 JRT_END
1372
1373 JRT_ENTRY_PROF(void, InterpreterRuntime, post_field_modification, InterpreterRuntime::post_field_modification(JavaThread* current, oopDesc* obj,
1374 ResolvedFieldEntry *entry, jvalue *value))
1375
1376 InstanceKlass* ik = entry->field_holder();
1377
1378 // check the access_flags for the field in the klass
1379 int index = entry->field_index();
1380 // bail out if field modifications are not watched
1381 if (!ik->field_status(index).is_modification_watched()) return;
1382
1383 char sig_type = '\0';
1384
1385 switch((TosState)entry->tos_state()) {
1386 case btos: sig_type = JVM_SIGNATURE_BYTE; break;
1387 case ztos: sig_type = JVM_SIGNATURE_BOOLEAN; break;
1388 case ctos: sig_type = JVM_SIGNATURE_CHAR; break;
1389 case stos: sig_type = JVM_SIGNATURE_SHORT; break;
1390 case itos: sig_type = JVM_SIGNATURE_INT; break;
1391 case ftos: sig_type = JVM_SIGNATURE_FLOAT; break;
1392 case atos: sig_type = JVM_SIGNATURE_CLASS; break;
1393 case ltos: sig_type = JVM_SIGNATURE_LONG; break;
1394 case dtos: sig_type = JVM_SIGNATURE_DOUBLE; break;
1409 // We assume that the two halves of longs/doubles are stored in interpreter
1410 // stack slots in platform-endian order.
1411 jlong_accessor u;
1412 jint* newval = (jint*)value;
1413 u.words[0] = newval[0];
1414 u.words[1] = newval[Interpreter::stackElementWords]; // skip if tag
1415 fvalue.j = u.long_value;
1416 #endif // _LP64
1417
1418 Handle h_obj;
1419 if (!is_static) {
1420 // non-static field accessors have an object, but we need a handle
1421 h_obj = Handle(current, obj);
1422 }
1423
1424 LastFrameAccessor last_frame(current);
1425 JvmtiExport::post_raw_field_modification(current, last_frame.method(), last_frame.bcp(), ik, h_obj,
1426 fid, sig_type, &fvalue);
1427 JRT_END
1428
1429 JRT_ENTRY_PROF(void, InterpreterRuntime, post_method_entry, InterpreterRuntime::post_method_entry(JavaThread* current))
1430 LastFrameAccessor last_frame(current);
1431 JvmtiExport::post_method_entry(current, last_frame.method(), last_frame.get_frame());
1432 JRT_END
1433
1434
1435 // This is a JRT_BLOCK_ENTRY because we have to stash away the return oop
1436 // before transitioning to VM, and restore it after transitioning back
1437 // to Java. The return oop at the top-of-stack, is not walked by the GC.
1438 JRT_BLOCK_ENTRY_PROF(void, InterpreterRuntime, post_method_exit, InterpreterRuntime::post_method_exit(JavaThread* current))
1439 LastFrameAccessor last_frame(current);
1440 JvmtiExport::post_method_exit(current, last_frame.method(), last_frame.get_frame());
1441 JRT_END
1442
1443 JRT_LEAF_PROF_NO_THREAD(int, InterpreterRuntime, interpreter_contains, InterpreterRuntime::interpreter_contains(address pc))
1444 {
1445 return (Interpreter::contains(Continuation::get_top_return_pc_post_barrier(JavaThread::current(), pc)) ? 1 : 0);
1446 }
1447 JRT_END
1448
1449
1450 // Implementation of SignatureHandlerLibrary
1451
1452 #ifndef SHARING_FAST_NATIVE_FINGERPRINTS
1453 // Dummy definition (else normalization method is defined in CPU
1454 // dependent code)
1455 uint64_t InterpreterRuntime::normalize_fast_native_fingerprint(uint64_t fingerprint) {
1456 return fingerprint;
1457 }
1458 #endif
1459
1460 address SignatureHandlerLibrary::set_handler_blob() {
1461 BufferBlob* handler_blob = BufferBlob::create("native signature handlers", blob_size);
1462 if (handler_blob == nullptr) {
1463 return nullptr;
1621 } else {
1622 if (PrintSignatureHandlers) {
1623 tty->cr();
1624 tty->print_cr("duplicate argument handler #%d for fingerprint " UINT64_FORMAT "(old: " PTR_FORMAT ", new : " PTR_FORMAT ")",
1625 _handlers->length(),
1626 fingerprint,
1627 p2i(_handlers->at(handler_index)),
1628 p2i(handler));
1629 }
1630 }
1631 }
1632
1633
1634 BufferBlob* SignatureHandlerLibrary::_handler_blob = nullptr;
1635 address SignatureHandlerLibrary::_handler = nullptr;
1636 GrowableArray<uint64_t>* SignatureHandlerLibrary::_fingerprints = nullptr;
1637 GrowableArray<address>* SignatureHandlerLibrary::_handlers = nullptr;
1638 address SignatureHandlerLibrary::_buffer = nullptr;
1639
1640
1641 JRT_ENTRY_PROF(void, InterpreterRuntime, prepare_native_call, InterpreterRuntime::prepare_native_call(JavaThread* current, Method* method))
1642 methodHandle m(current, method);
1643 assert(m->is_native(), "sanity check");
1644 // lookup native function entry point if it doesn't exist
1645 if (!m->has_native_function()) {
1646 NativeLookup::lookup(m, CHECK);
1647 }
1648 // make sure signature handler is installed
1649 SignatureHandlerLibrary::add(m);
1650 // The interpreter entry point checks the signature handler first,
1651 // before trying to fetch the native entry point and klass mirror.
1652 // We must set the signature handler last, so that multiple processors
1653 // preparing the same method will be sure to see non-null entry & mirror.
1654 JRT_END
1655
1656 #if defined(IA32) || defined(AMD64) || defined(ARM)
1657 JRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* current, void* src_address, void* dest_address))
1658 assert(current == JavaThread::current(), "pre-condition");
1659 if (src_address == dest_address) {
1660 return;
1661 }
1662 ResourceMark rm;
1663 LastFrameAccessor last_frame(current);
1664 assert(last_frame.is_interpreted_frame(), "");
1665 jint bci = last_frame.bci();
1666 methodHandle mh(current, last_frame.method());
1667 Bytecode_invoke invoke(mh, bci);
1668 ArgumentSizeComputer asc(invoke.signature());
1669 int size_of_arguments = (asc.size() + (invoke.has_receiver() ? 1 : 0)); // receiver
1670 Copy::conjoint_jbytes(src_address, dest_address,
1671 size_of_arguments * Interpreter::stackElementSize);
1672 JRT_END
1673 #endif
1674
1675 #if INCLUDE_JVMTI
1676 // This is a support of the JVMTI PopFrame interface.
1677 // Make sure it is an invokestatic of a polymorphic intrinsic that has a member_name argument
1678 // and return it as a vm_result so that it can be reloaded in the list of invokestatic parameters.
1679 // The member_name argument is a saved reference (in local#0) to the member_name.
1680 // For backward compatibility with some JDK versions (7, 8) it can also be a direct method handle.
1681 // FIXME: remove DMH case after j.l.i.InvokerBytecodeGenerator code shape is updated.
1682 JRT_ENTRY_PROF(void, InterpreterRuntime, member_name_arg_or_null,
1683 InterpreterRuntime::member_name_arg_or_null(JavaThread* current, address member_name,
1684 Method* method, address bcp))
1685 Bytecodes::Code code = Bytecodes::code_at(method, bcp);
1686 if (code != Bytecodes::_invokestatic) {
1687 return;
1688 }
1689 ConstantPool* cpool = method->constants();
1690 int cp_index = Bytes::get_native_u2(bcp + 1);
1691 Symbol* cname = cpool->klass_name_at(cpool->klass_ref_index_at(cp_index, code));
1692 Symbol* mname = cpool->name_ref_at(cp_index, code);
1693
1694 if (MethodHandles::has_member_arg(cname, mname)) {
1695 oop member_name_oop = cast_to_oop(member_name);
1696 if (java_lang_invoke_DirectMethodHandle::is_instance(member_name_oop)) {
1697 // FIXME: remove after j.l.i.InvokerBytecodeGenerator code shape is updated.
1698 member_name_oop = java_lang_invoke_DirectMethodHandle::member(member_name_oop);
1699 }
1700 current->set_vm_result(member_name_oop);
1701 } else {
1702 current->set_vm_result(nullptr);
1703 }
1704 JRT_END
1705 #endif // INCLUDE_JVMTI
1706
1707 #ifndef PRODUCT
1708 // This must be a JRT_LEAF function because the interpreter must save registers on x86 to
1709 // call this, which changes rsp and makes the interpreter's expression stack not walkable.
1710 // The generated code still uses call_VM because that will set up the frame pointer for
1711 // bcp and method.
1712 JRT_LEAF(intptr_t, InterpreterRuntime::trace_bytecode(JavaThread* current, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2))
1713 assert(current == JavaThread::current(), "pre-condition");
1714 LastFrameAccessor last_frame(current);
1715 assert(last_frame.is_interpreted_frame(), "must be an interpreted frame");
1716 methodHandle mh(current, last_frame.method());
1717 BytecodeTracer::trace_interpreter(mh, last_frame.bcp(), tos, tos2);
1718 return preserve_this_value;
1719 JRT_END
1720 #endif // !PRODUCT
1721
1722 #define DO_COUNTERS(macro) \
1723 macro(InterpreterRuntime, ldc) \
1724 macro(InterpreterRuntime, resolve_ldc) \
1725 macro(InterpreterRuntime, new) \
1726 macro(InterpreterRuntime, newarray) \
1727 macro(InterpreterRuntime, anewarray) \
1728 macro(InterpreterRuntime, multianewarray) \
1729 macro(InterpreterRuntime, register_finalizer) \
1730 macro(InterpreterRuntime, quicken_io_cc) \
1731 macro(InterpreterRuntime, throw_StackOverflowError) \
1732 macro(InterpreterRuntime, throw_delayed_StackOverflowError) \
1733 macro(InterpreterRuntime, create_exception) \
1734 macro(InterpreterRuntime, create_klass_exception) \
1735 macro(InterpreterRuntime, throw_ArrayIndexOutOfBoundsException) \
1736 macro(InterpreterRuntime, throw_ClassCastException) \
1737 macro(InterpreterRuntime, exception_handler_for_exception) \
1738 macro(InterpreterRuntime, throw_pending_exception) \
1739 macro(InterpreterRuntime, throw_AbstractMethodError) \
1740 macro(InterpreterRuntime, throw_AbstractMethodErrorWithMethod) \
1741 macro(InterpreterRuntime, throw_AbstractMethodErrorVerbose) \
1742 macro(InterpreterRuntime, throw_IncompatibleClassChangeError) \
1743 macro(InterpreterRuntime, throw_IncompatibleClassChangeErrorVerbose) \
1744 macro(InterpreterRuntime, throw_NullPointerException) \
1745 macro(InterpreterRuntime, monitorenter) \
1746 macro(InterpreterRuntime, monitorexit) \
1747 macro(InterpreterRuntime, throw_illegal_monitor_state_exception) \
1748 macro(InterpreterRuntime, new_illegal_monitor_state_exception) \
1749 macro(InterpreterRuntime, get_original_bytecode_at) \
1750 macro(InterpreterRuntime, set_original_bytecode_at) \
1751 macro(InterpreterRuntime, breakpoint) \
1752 macro(InterpreterRuntime, resolve_getfield) \
1753 macro(InterpreterRuntime, resolve_putfield) \
1754 macro(InterpreterRuntime, resolve_getstatic) \
1755 macro(InterpreterRuntime, resolve_putstatic) \
1756 macro(InterpreterRuntime, resolve_invokevirtual) \
1757 macro(InterpreterRuntime, resolve_invokespecial) \
1758 macro(InterpreterRuntime, resolve_invokestatic) \
1759 macro(InterpreterRuntime, resolve_invokeinterface) \
1760 macro(InterpreterRuntime, resolve_invokehandle) \
1761 macro(InterpreterRuntime, resolve_invokedynamic) \
1762 macro(InterpreterRuntime, frequency_counter_overflow) \
1763 macro(InterpreterRuntime, bcp_to_di) \
1764 macro(InterpreterRuntime, update_mdp_for_ret) \
1765 macro(InterpreterRuntime, build_method_counters) \
1766 macro(InterpreterRuntime, at_safepoint) \
1767 macro(InterpreterRuntime, at_unwind) \
1768 macro(InterpreterRuntime, post_field_access) \
1769 macro(InterpreterRuntime, post_field_modification) \
1770 macro(InterpreterRuntime, post_method_entry) \
1771 macro(InterpreterRuntime, post_method_exit) \
1772 macro(InterpreterRuntime, interpreter_contains) \
1773 macro(InterpreterRuntime, prepare_native_call)
1774
1775 #if INCLUDE_JVMTI
1776 #define DO_JVMTI_COUNTERS(macro) \
1777 macro(InterpreterRuntime, member_name_arg_or_null)
1778 #else
1779 #define DO_JVMTI_COUNTERS(macro)
1780 #endif /* INCLUDE_JVMTI */
1781
1782 #define INIT_COUNTER(sub, name) \
1783 NEWPERFTICKCOUNTERS(_perf_##sub##_##name##_timer, SUN_CI, #sub "::" #name); \
1784 NEWPERFEVENTCOUNTER(_perf_##sub##_##name##_count, SUN_CI, #sub "::" #name "_count");
1785
1786 void InterpreterRuntime::init_counters() {
1787 if (UsePerfData) {
1788 EXCEPTION_MARK;
1789
1790 DO_COUNTERS(INIT_COUNTER)
1791 DO_JVMTI_COUNTERS(INIT_COUNTER)
1792
1793 if (HAS_PENDING_EXCEPTION) {
1794 vm_exit_during_initialization("jvm_perf_init failed unexpectedly");
1795 }
1796 }
1797 }
1798 #undef INIT_COUNTER
1799
1800 #define PRINT_COUNTER(sub, name) { \
1801 jlong count = _perf_##sub##_##name##_count->get_value(); \
1802 if (count > 0) { \
1803 st->print_cr(" %-50s = " JLONG_FORMAT_W(6) "us (elapsed) " JLONG_FORMAT_W(6) "us (thread) (" JLONG_FORMAT_W(5) " events)", \
1804 #sub "::" #name, \
1805 _perf_##sub##_##name##_timer->elapsed_counter_value_us(), \
1806 _perf_##sub##_##name##_timer->thread_counter_value_us(), \
1807 count); \
1808 }}
1809
1810 void InterpreterRuntime::print_counters_on(outputStream* st) {
1811 if (UsePerfData && ProfileRuntimeCalls) {
1812 DO_COUNTERS(PRINT_COUNTER)
1813 DO_JVMTI_COUNTERS(PRINT_COUNTER)
1814 } else {
1815 st->print_cr(" InterpreterRuntime: no info (%s is disabled)", (UsePerfData ? "ProfileRuntimeCalls" : "UsePerfData"));
1816 }
1817 }
1818
1819 #undef PRINT_COUNTER
1820 #undef DO_JVMTI_COUNTERS
1821 #undef DO_COUNTERS
1822
|