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