blob: 377e013c601e98b20ec6eb47a28b1365ae587e78 [file] [log] [blame]
J. Duke81537792007-12-01 00:00:00 +00001/*
Jiangli Zhou56df3bd2012-06-26 19:08:44 -04002 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
J. Duke81537792007-12-01 00:00:00 +00003 * 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 *
Erik Trimbleba7c1732010-05-27 19:08:38 -070019 * 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.
J. Duke81537792007-12-01 00:00:00 +000022 *
23 */
24
Stefan Karlsson8006fe82010-11-23 13:22:55 -080025#include "precompiled.hpp"
26#include "classfile/systemDictionary.hpp"
27#include "classfile/vmSymbols.hpp"
28#include "compiler/compileBroker.hpp"
29#include "gc_interface/collectedHeap.hpp"
30#include "interpreter/interpreter.hpp"
31#include "interpreter/interpreterRuntime.hpp"
32#include "interpreter/linkResolver.hpp"
33#include "interpreter/templateTable.hpp"
34#include "memory/oopFactory.hpp"
35#include "memory/universe.inline.hpp"
Jon Masamitsu5c58d272012-09-01 13:25:18 -040036#include "oops/constantPool.hpp"
Stefan Karlsson8006fe82010-11-23 13:22:55 -080037#include "oops/instanceKlass.hpp"
Jon Masamitsu5c58d272012-09-01 13:25:18 -040038#include "oops/methodData.hpp"
Stefan Karlsson8006fe82010-11-23 13:22:55 -080039#include "oops/objArrayKlass.hpp"
40#include "oops/oop.inline.hpp"
Coleen Phillimore7b4f8072011-01-27 16:11:27 -080041#include "oops/symbol.hpp"
Stefan Karlsson8006fe82010-11-23 13:22:55 -080042#include "prims/jvmtiExport.hpp"
43#include "prims/nativeLookup.hpp"
44#include "runtime/biasedLocking.hpp"
45#include "runtime/compilationPolicy.hpp"
46#include "runtime/deoptimization.hpp"
47#include "runtime/fieldDescriptor.hpp"
48#include "runtime/handles.inline.hpp"
49#include "runtime/interfaceSupport.hpp"
50#include "runtime/java.hpp"
51#include "runtime/jfieldIDWorkaround.hpp"
52#include "runtime/osThread.hpp"
53#include "runtime/sharedRuntime.hpp"
54#include "runtime/stubRoutines.hpp"
55#include "runtime/synchronizer.hpp"
56#include "runtime/threadCritical.hpp"
57#include "utilities/events.hpp"
58#ifdef TARGET_ARCH_x86
59# include "vm_version_x86.hpp"
60#endif
61#ifdef TARGET_ARCH_sparc
62# include "vm_version_sparc.hpp"
63#endif
64#ifdef TARGET_ARCH_zero
65# include "vm_version_zero.hpp"
66#endif
Bob Vandette31e3fe42011-02-02 11:35:26 -050067#ifdef TARGET_ARCH_arm
68# include "vm_version_arm.hpp"
69#endif
70#ifdef TARGET_ARCH_ppc
71# include "vm_version_ppc.hpp"
72#endif
Stefan Karlsson8006fe82010-11-23 13:22:55 -080073#ifdef COMPILER2
74#include "opto/runtime.hpp"
75#endif
J. Duke81537792007-12-01 00:00:00 +000076
77class 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//------------------------------------------------------------------------------------------------------------------------
93// State accessors
94
95void InterpreterRuntime::set_bcp_and_mdp(address bcp, JavaThread *thread) {
96 last_frame(thread).interpreter_frame_set_bcp(bcp);
97 if (ProfileInterpreter) {
98 // ProfileTraps uses MDOs independently of ProfileInterpreter.
99 // That is why we must check both ProfileInterpreter and mdo != NULL.
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400100 MethodData* mdo = last_frame(thread).interpreter_frame_method()->method_data();
J. Duke81537792007-12-01 00:00:00 +0000101 if (mdo != NULL) {
102 NEEDS_CLEANUP;
103 last_frame(thread).interpreter_frame_set_mdp(mdo->bci_to_dp(last_frame(thread).interpreter_frame_bci()));
104 }
105 }
106}
107
108//------------------------------------------------------------------------------------------------------------------------
109// Constants
110
111
112IRT_ENTRY(void, InterpreterRuntime::ldc(JavaThread* thread, bool wide))
113 // access constant pool
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400114 ConstantPool* pool = method(thread)->constants();
John R Rose581521b2010-05-23 01:38:26 -0700115 int index = wide ? get_index_u2(thread, Bytecodes::_ldc_w) : get_index_u1(thread, Bytecodes::_ldc);
J. Duke81537792007-12-01 00:00:00 +0000116 constantTag tag = pool->tag_at(index);
117
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400118 assert (tag.is_unresolved_klass() || tag.is_klass(), "wrong ldc call");
119 Klass* klass = pool->klass_at(index, CHECK);
Tom Rodriguez6e8a2632011-03-18 16:00:34 -0700120 oop java_class = klass->java_mirror();
J. Duke81537792007-12-01 00:00:00 +0000121 thread->set_vm_result(java_class);
J. Duke81537792007-12-01 00:00:00 +0000122IRT_END
123
John R Rose1f4cfb02010-06-09 18:50:45 -0700124IRT_ENTRY(void, InterpreterRuntime::resolve_ldc(JavaThread* thread, Bytecodes::Code bytecode)) {
125 assert(bytecode == Bytecodes::_fast_aldc ||
126 bytecode == Bytecodes::_fast_aldc_w, "wrong bc");
127 ResourceMark rm(thread);
128 methodHandle m (thread, method(thread));
Tom Rodriguez423f5872011-01-13 22:15:41 -0800129 Bytecode_loadconstant ldc(m, bci(thread));
Tom Rodriguezf6d95d92011-05-25 16:04:09 -0700130 oop result = ldc.resolve_constant(CHECK);
131#ifdef ASSERT
132 {
133 // The bytecode wrappers aren't GC-safe so construct a new one
134 Bytecode_loadconstant ldc2(m, bci(thread));
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400135 oop coop = m->constants()->resolved_references()->obj_at(ldc2.cache_index());
136 assert(result == coop, "expected result for assembly code");
Tom Rodriguezf6d95d92011-05-25 16:04:09 -0700137 }
138#endif
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400139 thread->set_vm_result(result);
John R Rose1f4cfb02010-06-09 18:50:45 -0700140}
141IRT_END
142
J. Duke81537792007-12-01 00:00:00 +0000143
144//------------------------------------------------------------------------------------------------------------------------
145// Allocation
146
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400147IRT_ENTRY(void, InterpreterRuntime::_new(JavaThread* thread, ConstantPool* pool, int index))
148 Klass* k_oop = pool->klass_at(index, CHECK);
J. Duke81537792007-12-01 00:00:00 +0000149 instanceKlassHandle klass (THREAD, k_oop);
150
151 // Make sure we are not instantiating an abstract klass
152 klass->check_valid_for_instantiation(true, CHECK);
153
154 // Make sure klass is initialized
155 klass->initialize(CHECK);
156
157 // At this point the class may not be fully initialized
158 // because of recursive initialization. If it is fully
159 // initialized & has_finalized is not set, we rewrite
160 // it into its fast version (Note: no locking is needed
161 // here since this is an atomic byte write and can be
162 // done more than once).
163 //
164 // Note: In case of classes with has_finalized we don't
165 // rewrite since that saves us an extra check in
166 // the fast version which then would call the
167 // slow version anyway (and do a call back into
168 // Java).
169 // If we have a breakpoint, then we don't rewrite
170 // because the _breakpoint bytecode would be lost.
171 oop obj = klass->allocate_instance(CHECK);
172 thread->set_vm_result(obj);
173IRT_END
174
175
176IRT_ENTRY(void, InterpreterRuntime::newarray(JavaThread* thread, BasicType type, jint size))
177 oop obj = oopFactory::new_typeArray(type, size, CHECK);
178 thread->set_vm_result(obj);
179IRT_END
180
181
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400182IRT_ENTRY(void, InterpreterRuntime::anewarray(JavaThread* thread, ConstantPool* pool, int index, jint size))
J. Duke81537792007-12-01 00:00:00 +0000183 // Note: no oopHandle for pool & klass needed since they are not used
184 // anymore after new_objArray() and no GC can happen before.
185 // (This may have to change if this code changes!)
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400186 Klass* klass = pool->klass_at(index, CHECK);
J. Duke81537792007-12-01 00:00:00 +0000187 objArrayOop obj = oopFactory::new_objArray(klass, size, CHECK);
188 thread->set_vm_result(obj);
189IRT_END
190
191
192IRT_ENTRY(void, InterpreterRuntime::multianewarray(JavaThread* thread, jint* first_size_address))
193 // We may want to pass in more arguments - could make this slightly faster
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400194 ConstantPool* constants = method(thread)->constants();
John R Rose581521b2010-05-23 01:38:26 -0700195 int i = get_index_u2(thread, Bytecodes::_multianewarray);
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400196 Klass* klass = constants->klass_at(i, CHECK);
J. Duke81537792007-12-01 00:00:00 +0000197 int nof_dims = number_of_dimensions(thread);
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400198 assert(klass->is_klass(), "not a class");
J. Duke81537792007-12-01 00:00:00 +0000199 assert(nof_dims >= 1, "multianewarray rank must be nonzero");
200
201 // We must create an array of jints to pass to multi_allocate.
202 ResourceMark rm(thread);
203 const int small_dims = 10;
204 jint dim_array[small_dims];
205 jint *dims = &dim_array[0];
206 if (nof_dims > small_dims) {
207 dims = (jint*) NEW_RESOURCE_ARRAY(jint, nof_dims);
208 }
209 for (int index = 0; index < nof_dims; index++) {
210 // offset from first_size_address is addressed as local[index]
211 int n = Interpreter::local_offset_in_bytes(index)/jintSize;
212 dims[index] = first_size_address[n];
213 }
Coleen Phillimore28047d62012-09-29 06:40:00 -0400214 oop obj = ArrayKlass::cast(klass)->multi_allocate(nof_dims, dims, CHECK);
J. Duke81537792007-12-01 00:00:00 +0000215 thread->set_vm_result(obj);
216IRT_END
217
218
219IRT_ENTRY(void, InterpreterRuntime::register_finalizer(JavaThread* thread, oopDesc* obj))
220 assert(obj->is_oop(), "must be a valid oop");
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400221 assert(obj->klass()->has_finalizer(), "shouldn't be here otherwise");
222 InstanceKlass::register_finalizer(instanceOop(obj), CHECK);
J. Duke81537792007-12-01 00:00:00 +0000223IRT_END
224
225
226// Quicken instance-of and check-cast bytecodes
227IRT_ENTRY(void, InterpreterRuntime::quicken_io_cc(JavaThread* thread))
228 // Force resolving; quicken the bytecode
John R Rose581521b2010-05-23 01:38:26 -0700229 int which = get_index_u2(thread, Bytecodes::_checkcast);
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400230 ConstantPool* cpool = method(thread)->constants();
J. Duke81537792007-12-01 00:00:00 +0000231 // We'd expect to assert that we're only here to quicken bytecodes, but in a multithreaded
232 // program we might have seen an unquick'd bytecode in the interpreter but have another
233 // thread quicken the bytecode before we get here.
234 // assert( cpool->tag_at(which).is_unresolved_klass(), "should only come here to quicken bytecodes" );
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400235 Klass* klass = cpool->klass_at(which, CHECK);
236 thread->set_vm_result_2(klass);
J. Duke81537792007-12-01 00:00:00 +0000237IRT_END
238
239
240//------------------------------------------------------------------------------------------------------------------------
241// Exceptions
242
243// Assume the compiler is (or will be) interested in this event.
244// If necessary, create an MDO to hold the information, and record it.
245void InterpreterRuntime::note_trap(JavaThread* thread, int reason, TRAPS) {
246 assert(ProfileTraps, "call me only if profiling");
247 methodHandle trap_method(thread, method(thread));
John R Rose52e3d262010-09-13 23:24:30 -0700248
J. Duke81537792007-12-01 00:00:00 +0000249 if (trap_method.not_null()) {
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400250 MethodData* trap_mdo = trap_method->method_data();
251 if (trap_mdo == NULL) {
252 Method::build_interpreter_method_data(trap_method, THREAD);
J. Duke81537792007-12-01 00:00:00 +0000253 if (HAS_PENDING_EXCEPTION) {
254 assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())), "we expect only an OOM error here");
255 CLEAR_PENDING_EXCEPTION;
256 }
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400257 trap_mdo = trap_method->method_data();
J. Duke81537792007-12-01 00:00:00 +0000258 // and fall through...
259 }
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400260 if (trap_mdo != NULL) {
J. Duke81537792007-12-01 00:00:00 +0000261 // Update per-method count of trap events. The interpreter
262 // is updating the MDO to simulate the effect of compiler traps.
263 int trap_bci = trap_method->bci_from(bcp(thread));
264 Deoptimization::update_method_data_from_interpreter(trap_mdo, trap_bci, reason);
265 }
266 }
267}
268
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400269static Handle get_preinitialized_exception(Klass* k, TRAPS) {
J. Duke81537792007-12-01 00:00:00 +0000270 // get klass
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400271 InstanceKlass* klass = InstanceKlass::cast(k);
J. Duke81537792007-12-01 00:00:00 +0000272 assert(klass->is_initialized(),
273 "this klass should have been initialized during VM initialization");
274 // create instance - do not call constructor since we may have no
275 // (java) stack space left (should assert constructor is empty)
276 Handle exception;
277 oop exception_oop = klass->allocate_instance(CHECK_(exception));
278 exception = Handle(THREAD, exception_oop);
279 if (StackTraceInThrowable) {
280 java_lang_Throwable::fill_in_stack_trace(exception);
281 }
282 return exception;
283}
284
285// Special handling for stack overflow: since we don't have any (java) stack
286// space left we use the pre-allocated & pre-initialized StackOverflowError
287// klass to create an stack overflow error instance. We do not call its
288// constructor for the same reason (it is empty, anyway).
289IRT_ENTRY(void, InterpreterRuntime::throw_StackOverflowError(JavaThread* thread))
290 Handle exception = get_preinitialized_exception(
291 SystemDictionary::StackOverflowError_klass(),
292 CHECK);
293 THROW_HANDLE(exception);
294IRT_END
295
296
297IRT_ENTRY(void, InterpreterRuntime::create_exception(JavaThread* thread, char* name, char* message))
298 // lookup exception klass
Coleen Phillimore7b4f8072011-01-27 16:11:27 -0800299 TempNewSymbol s = SymbolTable::new_symbol(name, CHECK);
J. Duke81537792007-12-01 00:00:00 +0000300 if (ProfileTraps) {
301 if (s == vmSymbols::java_lang_ArithmeticException()) {
302 note_trap(thread, Deoptimization::Reason_div0_check, CHECK);
303 } else if (s == vmSymbols::java_lang_NullPointerException()) {
304 note_trap(thread, Deoptimization::Reason_null_check, CHECK);
305 }
306 }
307 // create exception
Coleen Phillimore7b4f8072011-01-27 16:11:27 -0800308 Handle exception = Exceptions::new_exception(thread, s, message);
J. Duke81537792007-12-01 00:00:00 +0000309 thread->set_vm_result(exception());
310IRT_END
311
312
313IRT_ENTRY(void, InterpreterRuntime::create_klass_exception(JavaThread* thread, char* name, oopDesc* obj))
314 ResourceMark rm(thread);
315 const char* klass_name = Klass::cast(obj->klass())->external_name();
316 // lookup exception klass
Coleen Phillimore7b4f8072011-01-27 16:11:27 -0800317 TempNewSymbol s = SymbolTable::new_symbol(name, CHECK);
J. Duke81537792007-12-01 00:00:00 +0000318 if (ProfileTraps) {
319 note_trap(thread, Deoptimization::Reason_class_check, CHECK);
320 }
321 // create exception, with klass name as detail message
Coleen Phillimore7b4f8072011-01-27 16:11:27 -0800322 Handle exception = Exceptions::new_exception(thread, s, klass_name);
J. Duke81537792007-12-01 00:00:00 +0000323 thread->set_vm_result(exception());
324IRT_END
325
326
327IRT_ENTRY(void, InterpreterRuntime::throw_ArrayIndexOutOfBoundsException(JavaThread* thread, char* name, jint index))
328 char message[jintAsStringSize];
329 // lookup exception klass
Coleen Phillimore7b4f8072011-01-27 16:11:27 -0800330 TempNewSymbol s = SymbolTable::new_symbol(name, CHECK);
J. Duke81537792007-12-01 00:00:00 +0000331 if (ProfileTraps) {
332 note_trap(thread, Deoptimization::Reason_range_check, CHECK);
333 }
334 // create exception
335 sprintf(message, "%d", index);
Coleen Phillimore7b4f8072011-01-27 16:11:27 -0800336 THROW_MSG(s, message);
J. Duke81537792007-12-01 00:00:00 +0000337IRT_END
338
339IRT_ENTRY(void, InterpreterRuntime::throw_ClassCastException(
340 JavaThread* thread, oopDesc* obj))
341
342 ResourceMark rm(thread);
343 char* message = SharedRuntime::generate_class_cast_message(
344 thread, Klass::cast(obj->klass())->external_name());
345
346 if (ProfileTraps) {
347 note_trap(thread, Deoptimization::Reason_class_check, CHECK);
348 }
349
350 // create exception
351 THROW_MSG(vmSymbols::java_lang_ClassCastException(), message);
352IRT_END
353
J. Duke81537792007-12-01 00:00:00 +0000354// exception_handler_for_exception(...) returns the continuation address,
355// the exception oop (via TLS) and sets the bci/bcp for the continuation.
356// The exception oop is returned to make sure it is preserved over GC (it
357// is only on the stack if the exception was thrown explicitly via athrow).
358// During this operation, the expression stack contains the values for the
359// bci where the exception happened. If the exception was propagated back
360// from a call, the expression stack contains the values for the bci at the
361// invoke w/o arguments (i.e., as if one were inside the call).
362IRT_ENTRY(address, InterpreterRuntime::exception_handler_for_exception(JavaThread* thread, oopDesc* exception))
363
364 Handle h_exception(thread, exception);
365 methodHandle h_method (thread, method(thread));
366 constantPoolHandle h_constants(thread, h_method->constants());
J. Duke81537792007-12-01 00:00:00 +0000367 bool should_repeat;
368 int handler_bci;
John R Rose1f4cfb02010-06-09 18:50:45 -0700369 int current_bci = bci(thread);
J. Duke81537792007-12-01 00:00:00 +0000370
371 // Need to do this check first since when _do_not_unlock_if_synchronized
372 // is set, we don't want to trigger any classloading which may make calls
373 // into java, or surprisingly find a matching exception handler for bci 0
374 // since at this moment the method hasn't been "officially" entered yet.
375 if (thread->do_not_unlock_if_synchronized()) {
376 ResourceMark rm;
377 assert(current_bci == 0, "bci isn't zero for do_not_unlock_if_synchronized");
378 thread->set_vm_result(exception);
379#ifdef CC_INTERP
380 return (address) -1;
381#else
382 return Interpreter::remove_activation_entry();
383#endif
384 }
385
386 do {
387 should_repeat = false;
388
389 // assertions
390#ifdef ASSERT
391 assert(h_exception.not_null(), "NULL exceptions should be handled by athrow");
392 assert(h_exception->is_oop(), "just checking");
393 // Check that exception is a subclass of Throwable, otherwise we have a VerifyError
Tom Rodriguez98449cf2010-01-06 14:22:39 -0800394 if (!(h_exception->is_a(SystemDictionary::Throwable_klass()))) {
J. Duke81537792007-12-01 00:00:00 +0000395 if (ExitVMOnVerifyError) vm_exit(-1);
396 ShouldNotReachHere();
397 }
398#endif
399
400 // tracing
401 if (TraceExceptions) {
402 ttyLocker ttyl;
403 ResourceMark rm(thread);
404 tty->print_cr("Exception <%s> (" INTPTR_FORMAT ")", h_exception->print_value_string(), (address)h_exception());
405 tty->print_cr(" thrown in interpreter method <%s>", h_method->print_value_string());
406 tty->print_cr(" at bci %d for thread " INTPTR_FORMAT, current_bci, thread);
407 }
408// Don't go paging in something which won't be used.
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400409// else if (extable->length() == 0) {
J. Duke81537792007-12-01 00:00:00 +0000410// // disabled for now - interpreter is not using shortcut yet
411// // (shortcut is not to call runtime if we have no exception handlers)
412// // warning("performance bug: should not call runtime if method has no exception handlers");
413// }
414 // for AbortVMOnException flag
415 NOT_PRODUCT(Exceptions::debug_check_abort(h_exception));
416
417 // exception handler lookup
418 KlassHandle h_klass(THREAD, h_exception->klass());
419 handler_bci = h_method->fast_exception_handler_bci_for(h_klass, current_bci, THREAD);
420 if (HAS_PENDING_EXCEPTION) {
421 // We threw an exception while trying to find the exception handler.
422 // Transfer the new exception to the exception handle which will
423 // be set into thread local storage, and do another lookup for an
424 // exception handler for this exception, this time starting at the
425 // BCI of the exception handler which caused the exception to be
426 // thrown (bug 4307310).
427 h_exception = Handle(THREAD, PENDING_EXCEPTION);
428 CLEAR_PENDING_EXCEPTION;
429 if (handler_bci >= 0) {
430 current_bci = handler_bci;
431 should_repeat = true;
432 }
433 }
434 } while (should_repeat == true);
435
436 // notify JVMTI of an exception throw; JVMTI will detect if this is a first
437 // time throw or a stack unwinding throw and accordingly notify the debugger
Tom Deneauf23b68b2010-02-01 17:35:05 -0700438 if (JvmtiExport::can_post_on_exceptions()) {
J. Duke81537792007-12-01 00:00:00 +0000439 JvmtiExport::post_exception_throw(thread, h_method(), bcp(thread), h_exception());
440 }
441
442#ifdef CC_INTERP
443 address continuation = (address)(intptr_t) handler_bci;
444#else
445 address continuation = NULL;
446#endif
447 address handler_pc = NULL;
448 if (handler_bci < 0 || !thread->reguard_stack((address) &continuation)) {
449 // Forward exception to callee (leaving bci/bcp untouched) because (a) no
450 // handler in this method, or (b) after a stack overflow there is not yet
451 // enough stack space available to reprotect the stack.
452#ifndef CC_INTERP
453 continuation = Interpreter::remove_activation_entry();
454#endif
455 // Count this for compilation purposes
456 h_method->interpreter_throwout_increment();
457 } else {
458 // handler in this method => change bci/bcp to handler bci/bcp and continue there
459 handler_pc = h_method->code_base() + handler_bci;
460#ifndef CC_INTERP
461 set_bcp_and_mdp(handler_pc, thread);
462 continuation = Interpreter::dispatch_table(vtos)[*handler_pc];
463#endif
464 }
465 // notify debugger of an exception catch
466 // (this is good for exceptions caught in native methods as well)
Tom Deneauf23b68b2010-02-01 17:35:05 -0700467 if (JvmtiExport::can_post_on_exceptions()) {
J. Duke81537792007-12-01 00:00:00 +0000468 JvmtiExport::notice_unwind_due_to_exception(thread, h_method(), handler_pc, h_exception(), (handler_pc != NULL));
469 }
470
471 thread->set_vm_result(h_exception());
472 return continuation;
473IRT_END
474
475
476IRT_ENTRY(void, InterpreterRuntime::throw_pending_exception(JavaThread* thread))
477 assert(thread->has_pending_exception(), "must only ne called if there's an exception pending");
478 // nothing to do - eventually we should remove this code entirely (see comments @ call sites)
479IRT_END
480
481
482IRT_ENTRY(void, InterpreterRuntime::throw_AbstractMethodError(JavaThread* thread))
483 THROW(vmSymbols::java_lang_AbstractMethodError());
484IRT_END
485
486
487IRT_ENTRY(void, InterpreterRuntime::throw_IncompatibleClassChangeError(JavaThread* thread))
488 THROW(vmSymbols::java_lang_IncompatibleClassChangeError());
489IRT_END
490
491
492//------------------------------------------------------------------------------------------------------------------------
493// Fields
494//
495
496IRT_ENTRY(void, InterpreterRuntime::resolve_get_put(JavaThread* thread, Bytecodes::Code bytecode))
497 // resolve field
498 FieldAccessInfo info;
499 constantPoolHandle pool(thread, method(thread)->constants());
Christian Thalinger134c40b2011-08-16 04:14:05 -0700500 bool is_put = (bytecode == Bytecodes::_putfield || bytecode == Bytecodes::_putstatic);
J. Duke81537792007-12-01 00:00:00 +0000501 bool is_static = (bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic);
502
503 {
504 JvmtiHideSingleStepping jhss(thread);
John R Rose581521b2010-05-23 01:38:26 -0700505 LinkResolver::resolve_field(info, pool, get_index_u2_cpcache(thread, bytecode),
J. Duke81537792007-12-01 00:00:00 +0000506 bytecode, false, CHECK);
507 } // end JvmtiHideSingleStepping
508
509 // check if link resolution caused cpCache to be updated
510 if (already_resolved(thread)) return;
511
512 // compute auxiliary field attributes
513 TosState state = as_TosState(info.field_type());
514
515 // We need to delay resolving put instructions on final fields
516 // until we actually invoke one. This is required so we throw
517 // exceptions at the correct place. If we do not resolve completely
518 // in the current pass, leaving the put_code set to zero will
519 // cause the next put instruction to reresolve.
J. Duke81537792007-12-01 00:00:00 +0000520 Bytecodes::Code put_code = (Bytecodes::Code)0;
521
522 // We also need to delay resolving getstatic instructions until the
523 // class is intitialized. This is required so that access to the static
524 // field will call the initialization function every time until the class
525 // is completely initialized ala. in 2.17.5 in JVM Specification.
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400526 InstanceKlass *klass = InstanceKlass::cast(info.klass()());
J. Duke81537792007-12-01 00:00:00 +0000527 bool uninitialized_static = ((bytecode == Bytecodes::_getstatic || bytecode == Bytecodes::_putstatic) &&
528 !klass->is_initialized());
529 Bytecodes::Code get_code = (Bytecodes::Code)0;
530
J. Duke81537792007-12-01 00:00:00 +0000531 if (!uninitialized_static) {
532 get_code = ((is_static) ? Bytecodes::_getstatic : Bytecodes::_getfield);
533 if (is_put || !info.access_flags().is_final()) {
534 put_code = ((is_static) ? Bytecodes::_putstatic : Bytecodes::_putfield);
535 }
536 }
537
538 cache_entry(thread)->set_field(
539 get_code,
540 put_code,
541 info.klass(),
542 info.field_index(),
543 info.field_offset(),
544 state,
545 info.access_flags().is_final(),
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400546 info.access_flags().is_volatile(),
547 pool->pool_holder()
J. Duke81537792007-12-01 00:00:00 +0000548 );
549IRT_END
550
551
552//------------------------------------------------------------------------------------------------------------------------
553// Synchronization
554//
555// The interpreter's synchronization code is factored out so that it can
556// be shared by method invocation and synchronized blocks.
557//%note synchronization_3
558
559static void trace_locking(Handle& h_locking_obj, bool is_locking) {
560 ObjectSynchronizer::trace_locking(h_locking_obj, false, true, is_locking);
561}
562
563
564//%note monitor_1
565IRT_ENTRY_NO_ASYNC(void, InterpreterRuntime::monitorenter(JavaThread* thread, BasicObjectLock* elem))
566#ifdef ASSERT
567 thread->last_frame().interpreter_frame_verify_monitor(elem);
568#endif
569 if (PrintBiasedLockingStatistics) {
570 Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
571 }
572 Handle h_obj(thread, elem->obj());
573 assert(Universe::heap()->is_in_reserved_or_null(h_obj()),
574 "must be NULL or an object");
575 if (UseBiasedLocking) {
576 // Retry fast entry if bias is revoked to avoid unnecessary inflation
577 ObjectSynchronizer::fast_enter(h_obj, elem->lock(), true, CHECK);
578 } else {
579 ObjectSynchronizer::slow_enter(h_obj, elem->lock(), CHECK);
580 }
581 assert(Universe::heap()->is_in_reserved_or_null(elem->obj()),
582 "must be NULL or an object");
583#ifdef ASSERT
584 thread->last_frame().interpreter_frame_verify_monitor(elem);
585#endif
586IRT_END
587
588
589//%note monitor_1
590IRT_ENTRY_NO_ASYNC(void, InterpreterRuntime::monitorexit(JavaThread* thread, BasicObjectLock* elem))
591#ifdef ASSERT
592 thread->last_frame().interpreter_frame_verify_monitor(elem);
593#endif
594 Handle h_obj(thread, elem->obj());
595 assert(Universe::heap()->is_in_reserved_or_null(h_obj()),
596 "must be NULL or an object");
597 if (elem == NULL || h_obj()->is_unlocked()) {
598 THROW(vmSymbols::java_lang_IllegalMonitorStateException());
599 }
600 ObjectSynchronizer::slow_exit(h_obj(), elem->lock(), thread);
601 // Free entry. This must be done here, since a pending exception might be installed on
602 // exit. If it is not cleared, the exception handling code will try to unlock the monitor again.
603 elem->set_obj(NULL);
604#ifdef ASSERT
605 thread->last_frame().interpreter_frame_verify_monitor(elem);
606#endif
607IRT_END
608
609
610IRT_ENTRY(void, InterpreterRuntime::throw_illegal_monitor_state_exception(JavaThread* thread))
611 THROW(vmSymbols::java_lang_IllegalMonitorStateException());
612IRT_END
613
614
615IRT_ENTRY(void, InterpreterRuntime::new_illegal_monitor_state_exception(JavaThread* thread))
616 // Returns an illegal exception to install into the current thread. The
617 // pending_exception flag is cleared so normal exception handling does not
618 // trigger. Any current installed exception will be overwritten. This
619 // method will be called during an exception unwind.
620
621 assert(!HAS_PENDING_EXCEPTION, "no pending exception");
622 Handle exception(thread, thread->vm_result());
623 assert(exception() != NULL, "vm result should be set");
624 thread->set_vm_result(NULL); // clear vm result before continuing (may cause memory leaks and assert failures)
Tom Rodriguez98449cf2010-01-06 14:22:39 -0800625 if (!exception->is_a(SystemDictionary::ThreadDeath_klass())) {
J. Duke81537792007-12-01 00:00:00 +0000626 exception = get_preinitialized_exception(
627 SystemDictionary::IllegalMonitorStateException_klass(),
628 CATCH);
629 }
630 thread->set_vm_result(exception());
631IRT_END
632
633
634//------------------------------------------------------------------------------------------------------------------------
635// Invokes
636
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400637IRT_ENTRY(Bytecodes::Code, InterpreterRuntime::get_original_bytecode_at(JavaThread* thread, Method* method, address bcp))
J. Duke81537792007-12-01 00:00:00 +0000638 return method->orig_bytecode_at(method->bci_from(bcp));
639IRT_END
640
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400641IRT_ENTRY(void, InterpreterRuntime::set_original_bytecode_at(JavaThread* thread, Method* method, address bcp, Bytecodes::Code new_code))
J. Duke81537792007-12-01 00:00:00 +0000642 method->set_orig_bytecode_at(method->bci_from(bcp), new_code);
643IRT_END
644
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400645IRT_ENTRY(void, InterpreterRuntime::_breakpoint(JavaThread* thread, Method* method, address bcp))
J. Duke81537792007-12-01 00:00:00 +0000646 JvmtiExport::post_raw_breakpoint(thread, method, bcp);
647IRT_END
648
Christian Thalinger12901d02012-07-24 10:51:00 -0700649IRT_ENTRY(void, InterpreterRuntime::resolve_invoke(JavaThread* thread, Bytecodes::Code bytecode)) {
J. Duke81537792007-12-01 00:00:00 +0000650 // extract receiver from the outgoing argument list if necessary
651 Handle receiver(thread, NULL);
652 if (bytecode == Bytecodes::_invokevirtual || bytecode == Bytecodes::_invokeinterface) {
653 ResourceMark rm(thread);
654 methodHandle m (thread, method(thread));
Tom Rodriguez423f5872011-01-13 22:15:41 -0800655 Bytecode_invoke call(m, bci(thread));
Coleen Phillimore7b4f8072011-01-27 16:11:27 -0800656 Symbol* signature = call.signature();
J. Duke81537792007-12-01 00:00:00 +0000657 receiver = Handle(thread,
658 thread->last_frame().interpreter_callee_receiver(signature));
659 assert(Universe::heap()->is_in_reserved_or_null(receiver()),
660 "sanity check");
661 assert(receiver.is_null() ||
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400662 !Universe::heap()->is_in_reserved(receiver->klass()),
J. Duke81537792007-12-01 00:00:00 +0000663 "sanity check");
664 }
665
666 // resolve method
667 CallInfo info;
668 constantPoolHandle pool(thread, method(thread)->constants());
669
670 {
671 JvmtiHideSingleStepping jhss(thread);
672 LinkResolver::resolve_invoke(info, receiver, pool,
John R Rose581521b2010-05-23 01:38:26 -0700673 get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
J. Duke81537792007-12-01 00:00:00 +0000674 if (JvmtiExport::can_hotswap_or_post_breakpoint()) {
675 int retry_count = 0;
676 while (info.resolved_method()->is_old()) {
677 // It is very unlikely that method is redefined more than 100 times
678 // in the middle of resolve. If it is looping here more than 100 times
679 // means then there could be a bug here.
680 guarantee((retry_count++ < 100),
681 "Could not resolve to latest version of redefined method");
682 // method is redefined in the middle of resolve so re-try.
683 LinkResolver::resolve_invoke(info, receiver, pool,
John R Rose581521b2010-05-23 01:38:26 -0700684 get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
J. Duke81537792007-12-01 00:00:00 +0000685 }
686 }
687 } // end JvmtiHideSingleStepping
688
689 // check if link resolution caused cpCache to be updated
690 if (already_resolved(thread)) return;
691
692 if (bytecode == Bytecodes::_invokeinterface) {
693
694 if (TraceItables && Verbose) {
695 ResourceMark rm(thread);
696 tty->print_cr("Resolving: klass: %s to method: %s", info.resolved_klass()->name()->as_C_string(), info.resolved_method()->name()->as_C_string());
697 }
698 if (info.resolved_method()->method_holder() ==
Tom Rodriguez98449cf2010-01-06 14:22:39 -0800699 SystemDictionary::Object_klass()) {
J. Duke81537792007-12-01 00:00:00 +0000700 // NOTE: THIS IS A FIX FOR A CORNER CASE in the JVM spec
701 // (see also cpCacheOop.cpp for details)
702 methodHandle rm = info.resolved_method();
703 assert(rm->is_final() || info.has_vtable_index(),
704 "should have been set already");
705 cache_entry(thread)->set_method(bytecode, rm, info.vtable_index());
706 } else {
707 // Setup itable entry
708 int index = klassItable::compute_itable_index(info.resolved_method()());
709 cache_entry(thread)->set_interface_call(info.resolved_method(), index);
710 }
711 } else {
712 cache_entry(thread)->set_method(
713 bytecode,
714 info.resolved_method(),
715 info.vtable_index());
716 }
Christian Thalinger12901d02012-07-24 10:51:00 -0700717}
718IRT_END
719
720
721// First time execution: Resolve symbols, create a permanent MethodType object.
722IRT_ENTRY(void, InterpreterRuntime::resolve_invokehandle(JavaThread* thread)) {
723 assert(EnableInvokeDynamic, "");
724 const Bytecodes::Code bytecode = Bytecodes::_invokehandle;
725
726 // resolve method
727 CallInfo info;
728 constantPoolHandle pool(thread, method(thread)->constants());
729
730 {
731 JvmtiHideSingleStepping jhss(thread);
732 LinkResolver::resolve_invoke(info, Handle(), pool,
733 get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
734 } // end JvmtiHideSingleStepping
735
Bharadwaj Yadavalli642c6b42012-11-02 12:30:46 -0700736 cache_entry(thread)->set_method_handle(pool, info);
Christian Thalinger12901d02012-07-24 10:51:00 -0700737}
J. Duke81537792007-12-01 00:00:00 +0000738IRT_END
739
740
John R Rose903247c2009-10-30 16:22:59 -0700741// First time execution: Resolve symbols, create a permanent CallSite object.
John R Rose34c1d722009-04-21 23:21:04 -0700742IRT_ENTRY(void, InterpreterRuntime::resolve_invokedynamic(JavaThread* thread)) {
John R Rose34c1d722009-04-21 23:21:04 -0700743 assert(EnableInvokeDynamic, "");
John R Rose34c1d722009-04-21 23:21:04 -0700744 const Bytecodes::Code bytecode = Bytecodes::_invokedynamic;
745
Christian Thalinger12901d02012-07-24 10:51:00 -0700746 //TO DO: consider passing BCI to Java.
747 // int caller_bci = method(thread)->bci_from(bcp(thread));
John R Rose34c1d722009-04-21 23:21:04 -0700748
Christian Thalinger12901d02012-07-24 10:51:00 -0700749 // resolve method
750 CallInfo info;
751 constantPoolHandle pool(thread, method(thread)->constants());
752 int index = get_index_u4(thread, bytecode);
Christian Thalinger12901d02012-07-24 10:51:00 -0700753 {
John R Rose34c1d722009-04-21 23:21:04 -0700754 JvmtiHideSingleStepping jhss(thread);
Christian Thalinger12901d02012-07-24 10:51:00 -0700755 LinkResolver::resolve_invoke(info, Handle(), pool,
756 index, bytecode, CHECK);
757 } // end JvmtiHideSingleStepping
John R Rose34c1d722009-04-21 23:21:04 -0700758
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400759 ConstantPoolCacheEntry* cp_cache_entry = pool->invokedynamic_cp_cache_entry_at(index);
Bharadwaj Yadavalli642c6b42012-11-02 12:30:46 -0700760 cp_cache_entry->set_dynamic_call(pool, info);
John R Rose34c1d722009-04-21 23:21:04 -0700761}
762IRT_END
763
764
J. Duke81537792007-12-01 00:00:00 +0000765//------------------------------------------------------------------------------------------------------------------------
766// Miscellaneous
767
768
Y. Srinivas Ramakrishnac6763b52009-09-02 00:04:29 -0700769nmethod* InterpreterRuntime::frequency_counter_overflow(JavaThread* thread, address branch_bcp) {
770 nmethod* nm = frequency_counter_overflow_inner(thread, branch_bcp);
771 assert(branch_bcp != NULL || nm == NULL, "always returns null for non OSR requests");
772 if (branch_bcp != NULL && nm != NULL) {
773 // This was a successful request for an OSR nmethod. Because
774 // frequency_counter_overflow_inner ends with a safepoint check,
775 // nm could have been unloaded so look it up again. It's unsafe
776 // to examine nm directly since it might have been freed and used
777 // for something else.
778 frame fr = thread->last_frame();
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400779 Method* method = fr.interpreter_frame_method();
Y. Srinivas Ramakrishnac6763b52009-09-02 00:04:29 -0700780 int bci = method->bci_from(fr.interpreter_frame_bcp());
Igor Veresov2c66a6c2010-09-03 17:51:07 -0700781 nm = method->lookup_osr_nmethod_for(bci, CompLevel_none, false);
Y. Srinivas Ramakrishnac6763b52009-09-02 00:04:29 -0700782 }
Christian Thalinger301e9f92012-06-13 11:36:03 -0700783#ifndef PRODUCT
784 if (TraceOnStackReplacement) {
785 if (nm != NULL) {
786 tty->print("OSR entry @ pc: " INTPTR_FORMAT ": ", nm->osr_entry());
787 nm->print();
788 }
789 }
790#endif
Y. Srinivas Ramakrishnac6763b52009-09-02 00:04:29 -0700791 return nm;
792}
793
J. Duke81537792007-12-01 00:00:00 +0000794IRT_ENTRY(nmethod*,
Y. Srinivas Ramakrishnac6763b52009-09-02 00:04:29 -0700795 InterpreterRuntime::frequency_counter_overflow_inner(JavaThread* thread, address branch_bcp))
J. Duke81537792007-12-01 00:00:00 +0000796 // use UnlockFlagSaver to clear and restore the _do_not_unlock_if_synchronized
797 // flag, in case this method triggers classloading which will call into Java.
798 UnlockFlagSaver fs(thread);
799
800 frame fr = thread->last_frame();
801 assert(fr.is_interpreted_frame(), "must come from interpreter");
802 methodHandle method(thread, fr.interpreter_frame_method());
Igor Veresov2c66a6c2010-09-03 17:51:07 -0700803 const int branch_bci = branch_bcp != NULL ? method->bci_from(branch_bcp) : InvocationEntryBci;
804 const int bci = branch_bcp != NULL ? method->bci_from(fr.interpreter_frame_bcp()) : InvocationEntryBci;
J. Duke81537792007-12-01 00:00:00 +0000805
Igor Veresov84dda872012-01-26 12:15:24 -0800806 assert(!HAS_PENDING_EXCEPTION, "Should not have any exceptions pending");
Igor Veresov47caaa42011-07-01 10:37:37 -0700807 nmethod* osr_nm = CompilationPolicy::policy()->event(method, method, branch_bci, bci, CompLevel_none, NULL, thread);
Igor Veresov84dda872012-01-26 12:15:24 -0800808 assert(!HAS_PENDING_EXCEPTION, "Event handler should not throw any exceptions");
J. Duke81537792007-12-01 00:00:00 +0000809
Igor Veresov2c66a6c2010-09-03 17:51:07 -0700810 if (osr_nm != NULL) {
811 // We may need to do on-stack replacement which requires that no
812 // monitors in the activation are biased because their
813 // BasicObjectLocks will need to migrate during OSR. Force
814 // unbiasing of all monitors in the activation now (even though
815 // the OSR nmethod might be invalidated) because we don't have a
816 // safepoint opportunity later once the migration begins.
817 if (UseBiasedLocking) {
818 ResourceMark rm;
819 GrowableArray<Handle>* objects_to_revoke = new GrowableArray<Handle>();
820 for( BasicObjectLock *kptr = fr.interpreter_frame_monitor_end();
821 kptr < fr.interpreter_frame_monitor_begin();
822 kptr = fr.next_monitor_in_interpreter_frame(kptr) ) {
823 if( kptr->obj() != NULL ) {
824 objects_to_revoke->append(Handle(THREAD, kptr->obj()));
J. Duke81537792007-12-01 00:00:00 +0000825 }
J. Duke81537792007-12-01 00:00:00 +0000826 }
Igor Veresov2c66a6c2010-09-03 17:51:07 -0700827 BiasedLocking::revoke(objects_to_revoke);
J. Duke81537792007-12-01 00:00:00 +0000828 }
829 }
Igor Veresov2c66a6c2010-09-03 17:51:07 -0700830 return osr_nm;
J. Duke81537792007-12-01 00:00:00 +0000831IRT_END
832
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400833IRT_LEAF(jint, InterpreterRuntime::bcp_to_di(Method* method, address cur_bcp))
J. Duke81537792007-12-01 00:00:00 +0000834 assert(ProfileInterpreter, "must be profiling interpreter");
835 int bci = method->bci_from(cur_bcp);
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400836 MethodData* mdo = method->method_data();
J. Duke81537792007-12-01 00:00:00 +0000837 if (mdo == NULL) return 0;
838 return mdo->bci_to_di(bci);
839IRT_END
840
Igor Veresov6a80d212011-01-10 18:46:29 -0800841IRT_ENTRY(void, InterpreterRuntime::profile_method(JavaThread* thread))
J. Duke81537792007-12-01 00:00:00 +0000842 // use UnlockFlagSaver to clear and restore the _do_not_unlock_if_synchronized
843 // flag, in case this method triggers classloading which will call into Java.
844 UnlockFlagSaver fs(thread);
845
846 assert(ProfileInterpreter, "must be profiling interpreter");
847 frame fr = thread->last_frame();
848 assert(fr.is_interpreted_frame(), "must come from interpreter");
849 methodHandle method(thread, fr.interpreter_frame_method());
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400850 Method::build_interpreter_method_data(method, THREAD);
J. Duke81537792007-12-01 00:00:00 +0000851 if (HAS_PENDING_EXCEPTION) {
852 assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())), "we expect only an OOM error here");
853 CLEAR_PENDING_EXCEPTION;
854 // and fall through...
855 }
J. Duke81537792007-12-01 00:00:00 +0000856IRT_END
857
858
859#ifdef ASSERT
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400860IRT_LEAF(void, InterpreterRuntime::verify_mdp(Method* method, address bcp, address mdp))
J. Duke81537792007-12-01 00:00:00 +0000861 assert(ProfileInterpreter, "must be profiling interpreter");
862
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400863 MethodData* mdo = method->method_data();
J. Duke81537792007-12-01 00:00:00 +0000864 assert(mdo != NULL, "must not be null");
865
866 int bci = method->bci_from(bcp);
867
868 address mdp2 = mdo->bci_to_dp(bci);
869 if (mdp != mdp2) {
870 ResourceMark rm;
871 ResetNoHandleMark rnm; // In a LEAF entry.
872 HandleMark hm;
873 tty->print_cr("FAILED verify : actual mdp %p expected mdp %p @ bci %d", mdp, mdp2, bci);
874 int current_di = mdo->dp_to_di(mdp);
875 int expected_di = mdo->dp_to_di(mdp2);
876 tty->print_cr(" actual di %d expected di %d", current_di, expected_di);
877 int expected_approx_bci = mdo->data_at(expected_di)->bci();
878 int approx_bci = -1;
879 if (current_di >= 0) {
880 approx_bci = mdo->data_at(current_di)->bci();
881 }
882 tty->print_cr(" actual bci is %d expected bci %d", approx_bci, expected_approx_bci);
883 mdo->print_on(tty);
884 method->print_codes();
885 }
886 assert(mdp == mdp2, "wrong mdp");
887IRT_END
888#endif // ASSERT
889
890IRT_ENTRY(void, InterpreterRuntime::update_mdp_for_ret(JavaThread* thread, int return_bci))
891 assert(ProfileInterpreter, "must be profiling interpreter");
892 ResourceMark rm(thread);
893 HandleMark hm(thread);
894 frame fr = thread->last_frame();
895 assert(fr.is_interpreted_frame(), "must come from interpreter");
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400896 MethodData* h_mdo = fr.interpreter_frame_method()->method_data();
J. Duke81537792007-12-01 00:00:00 +0000897
898 // Grab a lock to ensure atomic access to setting the return bci and
899 // the displacement. This can block and GC, invalidating all naked oops.
900 MutexLocker ml(RetData_lock);
901
902 // ProfileData is essentially a wrapper around a derived oop, so we
903 // need to take the lock before making any ProfileData structures.
904 ProfileData* data = h_mdo->data_at(h_mdo->dp_to_di(fr.interpreter_frame_mdp()));
905 RetData* rdata = data->as_RetData();
906 address new_mdp = rdata->fixup_ret(return_bci, h_mdo);
907 fr.interpreter_frame_set_mdp(new_mdp);
908IRT_END
909
910
911IRT_ENTRY(void, InterpreterRuntime::at_safepoint(JavaThread* thread))
912 // We used to need an explict preserve_arguments here for invoke bytecodes. However,
913 // stack traversal automatically takes care of preserving arguments for invoke, so
914 // this is no longer needed.
915
916 // IRT_END does an implicit safepoint check, hence we are guaranteed to block
917 // if this is called during a safepoint
918
919 if (JvmtiExport::should_post_single_step()) {
920 // We are called during regular safepoints and when the VM is
921 // single stepping. If any thread is marked for single stepping,
922 // then we may have JVMTI work to do.
923 JvmtiExport::at_single_stepping_point(thread, method(thread), bcp(thread));
924 }
925IRT_END
926
927IRT_ENTRY(void, InterpreterRuntime::post_field_access(JavaThread *thread, oopDesc* obj,
928ConstantPoolCacheEntry *cp_entry))
929
930 // check the access_flags for the field in the klass
Tom Rodriguez6e8a2632011-03-18 16:00:34 -0700931
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400932 InstanceKlass* ik = InstanceKlass::cast(cp_entry->f1_as_klass());
J. Duke81537792007-12-01 00:00:00 +0000933 int index = cp_entry->field_index();
Tom Rodrigueze39ba1a2011-09-10 17:29:02 -0700934 if ((ik->field_access_flags(index) & JVM_ACC_FIELD_ACCESS_WATCHED) == 0) return;
J. Duke81537792007-12-01 00:00:00 +0000935
936 switch(cp_entry->flag_state()) {
937 case btos: // fall through
938 case ctos: // fall through
939 case stos: // fall through
940 case itos: // fall through
941 case ftos: // fall through
942 case ltos: // fall through
943 case dtos: // fall through
944 case atos: break;
945 default: ShouldNotReachHere(); return;
946 }
947 bool is_static = (obj == NULL);
948 HandleMark hm(thread);
949
950 Handle h_obj;
951 if (!is_static) {
952 // non-static field accessors have an object, but we need a handle
953 h_obj = Handle(thread, obj);
954 }
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400955 instanceKlassHandle h_cp_entry_f1(thread, (Klass*)cp_entry->f1_as_klass());
Christian Thalinger12901d02012-07-24 10:51:00 -0700956 jfieldID fid = jfieldIDWorkaround::to_jfieldID(h_cp_entry_f1, cp_entry->f2_as_index(), is_static);
J. Duke81537792007-12-01 00:00:00 +0000957 JvmtiExport::post_field_access(thread, method(thread), bcp(thread), h_cp_entry_f1, h_obj, fid);
958IRT_END
959
960IRT_ENTRY(void, InterpreterRuntime::post_field_modification(JavaThread *thread,
961 oopDesc* obj, ConstantPoolCacheEntry *cp_entry, jvalue *value))
962
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400963 Klass* k = (Klass*)cp_entry->f1_as_klass();
J. Duke81537792007-12-01 00:00:00 +0000964
965 // check the access_flags for the field in the klass
Jon Masamitsu5c58d272012-09-01 13:25:18 -0400966 InstanceKlass* ik = InstanceKlass::cast(k);
J. Duke81537792007-12-01 00:00:00 +0000967 int index = cp_entry->field_index();
J. Duke81537792007-12-01 00:00:00 +0000968 // bail out if field modifications are not watched
Tom Rodrigueze39ba1a2011-09-10 17:29:02 -0700969 if ((ik->field_access_flags(index) & JVM_ACC_FIELD_MODIFICATION_WATCHED) == 0) return;
J. Duke81537792007-12-01 00:00:00 +0000970
971 char sig_type = '\0';
972
973 switch(cp_entry->flag_state()) {
974 case btos: sig_type = 'Z'; break;
975 case ctos: sig_type = 'C'; break;
976 case stos: sig_type = 'S'; break;
977 case itos: sig_type = 'I'; break;
978 case ftos: sig_type = 'F'; break;
979 case atos: sig_type = 'L'; break;
980 case ltos: sig_type = 'J'; break;
981 case dtos: sig_type = 'D'; break;
982 default: ShouldNotReachHere(); return;
983 }
984 bool is_static = (obj == NULL);
985
986 HandleMark hm(thread);
987 instanceKlassHandle h_klass(thread, k);
Christian Thalinger12901d02012-07-24 10:51:00 -0700988 jfieldID fid = jfieldIDWorkaround::to_jfieldID(h_klass, cp_entry->f2_as_index(), is_static);
J. Duke81537792007-12-01 00:00:00 +0000989 jvalue fvalue;
990#ifdef _LP64
991 fvalue = *value;
992#else
993 // Long/double values are stored unaligned and also noncontiguously with
994 // tagged stacks. We can't just do a simple assignment even in the non-
995 // J/D cases because a C++ compiler is allowed to assume that a jvalue is
996 // 8-byte aligned, and interpreter stack slots are only 4-byte aligned.
997 // We assume that the two halves of longs/doubles are stored in interpreter
998 // stack slots in platform-endian order.
999 jlong_accessor u;
1000 jint* newval = (jint*)value;
1001 u.words[0] = newval[0];
Christian Thalinger0211f972010-04-30 08:37:24 -07001002 u.words[1] = newval[Interpreter::stackElementWords]; // skip if tag
J. Duke81537792007-12-01 00:00:00 +00001003 fvalue.j = u.long_value;
1004#endif // _LP64
1005
1006 Handle h_obj;
1007 if (!is_static) {
1008 // non-static field accessors have an object, but we need a handle
1009 h_obj = Handle(thread, obj);
1010 }
1011
1012 JvmtiExport::post_raw_field_modification(thread, method(thread), bcp(thread), h_klass, h_obj,
1013 fid, sig_type, &fvalue);
1014IRT_END
1015
1016IRT_ENTRY(void, InterpreterRuntime::post_method_entry(JavaThread *thread))
1017 JvmtiExport::post_method_entry(thread, InterpreterRuntime::method(thread), InterpreterRuntime::last_frame(thread));
1018IRT_END
1019
1020
1021IRT_ENTRY(void, InterpreterRuntime::post_method_exit(JavaThread *thread))
1022 JvmtiExport::post_method_exit(thread, InterpreterRuntime::method(thread), InterpreterRuntime::last_frame(thread));
1023IRT_END
1024
1025IRT_LEAF(int, InterpreterRuntime::interpreter_contains(address pc))
1026{
1027 return (Interpreter::contains(pc) ? 1 : 0);
1028}
1029IRT_END
1030
1031
1032// Implementation of SignatureHandlerLibrary
1033
1034address SignatureHandlerLibrary::set_handler_blob() {
1035 BufferBlob* handler_blob = BufferBlob::create("native signature handlers", blob_size);
1036 if (handler_blob == NULL) {
1037 return NULL;
1038 }
Christian Thalingera4b2fe32010-08-25 05:27:54 -07001039 address handler = handler_blob->code_begin();
J. Duke81537792007-12-01 00:00:00 +00001040 _handler_blob = handler_blob;
1041 _handler = handler;
1042 return handler;
1043}
1044
1045void SignatureHandlerLibrary::initialize() {
1046 if (_fingerprints != NULL) {
1047 return;
1048 }
1049 if (set_handler_blob() == NULL) {
1050 vm_exit_out_of_memory(blob_size, "native signature handlers");
1051 }
1052
1053 BufferBlob* bb = BufferBlob::create("Signature Handler Temp Buffer",
1054 SignatureHandlerLibrary::buffer_size);
Christian Thalingera4b2fe32010-08-25 05:27:54 -07001055 _buffer = bb->code_begin();
J. Duke81537792007-12-01 00:00:00 +00001056
Zhengyu Gua39b1762012-06-28 17:03:16 -04001057 _fingerprints = new(ResourceObj::C_HEAP, mtCode)GrowableArray<uint64_t>(32, true);
1058 _handlers = new(ResourceObj::C_HEAP, mtCode)GrowableArray<address>(32, true);
J. Duke81537792007-12-01 00:00:00 +00001059}
1060
1061address SignatureHandlerLibrary::set_handler(CodeBuffer* buffer) {
1062 address handler = _handler;
Christian Thalingera4b2fe32010-08-25 05:27:54 -07001063 int insts_size = buffer->pure_insts_size();
1064 if (handler + insts_size > _handler_blob->code_end()) {
J. Duke81537792007-12-01 00:00:00 +00001065 // get a new handler blob
1066 handler = set_handler_blob();
1067 }
1068 if (handler != NULL) {
Christian Thalingera4b2fe32010-08-25 05:27:54 -07001069 memcpy(handler, buffer->insts_begin(), insts_size);
J. Duke81537792007-12-01 00:00:00 +00001070 pd_set_handler(handler);
Christian Thalingera4b2fe32010-08-25 05:27:54 -07001071 ICache::invalidate_range(handler, insts_size);
1072 _handler = handler + insts_size;
J. Duke81537792007-12-01 00:00:00 +00001073 }
1074 return handler;
1075}
1076
1077void SignatureHandlerLibrary::add(methodHandle method) {
1078 if (method->signature_handler() == NULL) {
1079 // use slow signature handler if we can't do better
1080 int handler_index = -1;
1081 // check if we can use customized (fast) signature handler
1082 if (UseFastSignatureHandlers && method->size_of_parameters() <= Fingerprinter::max_size_of_parameters) {
1083 // use customized signature handler
1084 MutexLocker mu(SignatureHandlerLibrary_lock);
1085 // make sure data structure is initialized
1086 initialize();
1087 // lookup method signature's fingerprint
1088 uint64_t fingerprint = Fingerprinter(method).fingerprint();
1089 handler_index = _fingerprints->find(fingerprint);
1090 // create handler if necessary
1091 if (handler_index < 0) {
1092 ResourceMark rm;
1093 ptrdiff_t align_offset = (address)
1094 round_to((intptr_t)_buffer, CodeEntryAlignment) - (address)_buffer;
1095 CodeBuffer buffer((address)(_buffer + align_offset),
1096 SignatureHandlerLibrary::buffer_size - align_offset);
1097 InterpreterRuntime::SignatureHandlerGenerator(method, &buffer).generate(fingerprint);
1098 // copy into code heap
1099 address handler = set_handler(&buffer);
1100 if (handler == NULL) {
1101 // use slow signature handler
1102 } else {
1103 // debugging suppport
1104 if (PrintSignatureHandlers) {
1105 tty->cr();
1106 tty->print_cr("argument handler #%d for: %s %s (fingerprint = " UINT64_FORMAT ", %d bytes generated)",
1107 _handlers->length(),
1108 (method->is_static() ? "static" : "receiver"),
1109 method->name_and_sig_as_C_string(),
1110 fingerprint,
Christian Thalingera4b2fe32010-08-25 05:27:54 -07001111 buffer.insts_size());
1112 Disassembler::decode(handler, handler + buffer.insts_size());
J. Duke81537792007-12-01 00:00:00 +00001113#ifndef PRODUCT
1114 tty->print_cr(" --- associated result handler ---");
1115 address rh_begin = Interpreter::result_handler(method()->result_type());
1116 address rh_end = rh_begin;
1117 while (*(int*)rh_end != 0) {
1118 rh_end += sizeof(int);
1119 }
1120 Disassembler::decode(rh_begin, rh_end);
1121#endif
1122 }
1123 // add handler to library
1124 _fingerprints->append(fingerprint);
1125 _handlers->append(handler);
1126 // set handler index
1127 assert(_fingerprints->length() == _handlers->length(), "sanity check");
1128 handler_index = _fingerprints->length() - 1;
1129 }
1130 }
Coleen Phillimore052aed62011-02-02 18:38:40 -05001131 // Set handler under SignatureHandlerLibrary_lock
J. Duke81537792007-12-01 00:00:00 +00001132 if (handler_index < 0) {
1133 // use generic signature handler
1134 method->set_signature_handler(Interpreter::slow_signature_handler());
1135 } else {
1136 // set handler
1137 method->set_signature_handler(_handlers->at(handler_index));
1138 }
Coleen Phillimore052aed62011-02-02 18:38:40 -05001139 } else {
1140 CHECK_UNHANDLED_OOPS_ONLY(Thread::current()->clear_unhandled_oops());
1141 // use generic signature handler
1142 method->set_signature_handler(Interpreter::slow_signature_handler());
1143 }
J. Duke81537792007-12-01 00:00:00 +00001144 }
Volker Simonisdf6c2c22010-12-04 00:09:05 -05001145#ifdef ASSERT
Coleen Phillimore052aed62011-02-02 18:38:40 -05001146 int handler_index = -1;
1147 int fingerprint_index = -2;
Volker Simonisdf6c2c22010-12-04 00:09:05 -05001148 {
1149 // '_handlers' and '_fingerprints' are 'GrowableArray's and are NOT synchronized
1150 // in any way if accessed from multiple threads. To avoid races with another
1151 // thread which may change the arrays in the above, mutex protected block, we
1152 // have to protect this read access here with the same mutex as well!
1153 MutexLocker mu(SignatureHandlerLibrary_lock);
Coleen Phillimore052aed62011-02-02 18:38:40 -05001154 if (_handlers != NULL) {
Volker Simonisdf6c2c22010-12-04 00:09:05 -05001155 handler_index = _handlers->find(method->signature_handler());
1156 fingerprint_index = _fingerprints->find(Fingerprinter(method).fingerprint());
1157 }
Coleen Phillimore052aed62011-02-02 18:38:40 -05001158 }
J. Duke81537792007-12-01 00:00:00 +00001159 assert(method->signature_handler() == Interpreter::slow_signature_handler() ||
Volker Simonisdf6c2c22010-12-04 00:09:05 -05001160 handler_index == fingerprint_index, "sanity check");
Coleen Phillimore052aed62011-02-02 18:38:40 -05001161#endif // ASSERT
J. Duke81537792007-12-01 00:00:00 +00001162}
1163
1164
1165BufferBlob* SignatureHandlerLibrary::_handler_blob = NULL;
1166address SignatureHandlerLibrary::_handler = NULL;
1167GrowableArray<uint64_t>* SignatureHandlerLibrary::_fingerprints = NULL;
1168GrowableArray<address>* SignatureHandlerLibrary::_handlers = NULL;
1169address SignatureHandlerLibrary::_buffer = NULL;
1170
1171
Jon Masamitsu5c58d272012-09-01 13:25:18 -04001172IRT_ENTRY(void, InterpreterRuntime::prepare_native_call(JavaThread* thread, Method* method))
J. Duke81537792007-12-01 00:00:00 +00001173 methodHandle m(thread, method);
1174 assert(m->is_native(), "sanity check");
1175 // lookup native function entry point if it doesn't exist
1176 bool in_base_library;
1177 if (!m->has_native_function()) {
1178 NativeLookup::lookup(m, in_base_library, CHECK);
1179 }
1180 // make sure signature handler is installed
1181 SignatureHandlerLibrary::add(m);
1182 // The interpreter entry point checks the signature handler first,
1183 // before trying to fetch the native entry point and klass mirror.
1184 // We must set the signature handler last, so that multiple processors
1185 // preparing the same method will be sure to see non-null entry & mirror.
1186IRT_END
1187
Roland Westrelin90844ca2011-09-07 14:15:07 +02001188#if defined(IA32) || defined(AMD64) || defined(ARM)
J. Duke81537792007-12-01 00:00:00 +00001189IRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address))
1190 if (src_address == dest_address) {
1191 return;
1192 }
1193 ResetNoHandleMark rnm; // In a LEAF entry.
1194 HandleMark hm;
1195 ResourceMark rm;
1196 frame fr = thread->last_frame();
1197 assert(fr.is_interpreted_frame(), "");
1198 jint bci = fr.interpreter_frame_bci();
1199 methodHandle mh(thread, fr.interpreter_frame_method());
Tom Rodriguez423f5872011-01-13 22:15:41 -08001200 Bytecode_invoke invoke(mh, bci);
1201 ArgumentSizeComputer asc(invoke.signature());
1202 int size_of_arguments = (asc.size() + (invoke.has_receiver() ? 1 : 0)); // receiver
Vladimir Kozlov9c7b4302010-06-10 13:04:20 -07001203 Copy::conjoint_jbytes(src_address, dest_address,
Christian Thalinger0211f972010-04-30 08:37:24 -07001204 size_of_arguments * Interpreter::stackElementSize);
J. Duke81537792007-12-01 00:00:00 +00001205IRT_END
1206#endif