annotate src/share/vm/runtime/sharedRuntime.hpp @ 665:c89f86385056

6814659: separable cleanups and subroutines for 6655638 Summary: preparatory but separable changes for method handles Reviewed-by: kvn, never
author jrose
date Fri, 20 Mar 2009 23:19:36 -0700
parents 70998f2e05ef
children e5b0439ef4ae
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
2 * Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class AdapterHandlerEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class vframeStream;
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Runtime is the base class for various runtime interfaces
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // (InterpreterRuntime, CompilerRuntime, etc.). It provides
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // shared functionality such as exception forwarding (C++ to
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // Java exceptions), locking/unlocking mechanisms, statistical
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // information, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class SharedRuntime: AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
36 static methodHandle resolve_sub_helper(JavaThread *thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
37 bool is_virtual,
a61af66fc99e Initial load
duke
parents:
diff changeset
38 bool is_optimized, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // Shared stub locations
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static RuntimeStub* _wrong_method_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 static RuntimeStub* _ic_miss_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 static RuntimeStub* _resolve_opt_virtual_call_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 static RuntimeStub* _resolve_virtual_call_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 static RuntimeStub* _resolve_static_call_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static SafepointBlob* _polling_page_safepoint_handler_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 static SafepointBlob* _polling_page_return_handler_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
51 static ExceptionBlob* _exception_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 static UncommonTrapBlob* _uncommon_trap_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Counters
a61af66fc99e Initial load
duke
parents:
diff changeset
58 static int _nof_megamorphic_calls; // total # of megamorphic calls (through vtable)
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
61 public:
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
62
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
63 // max bytes for each dtrace string parameter
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
64 enum { max_dtrace_string_size = 256 };
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
65
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // The following arithmetic routines are used on platforms that do
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // not have machine instructions to implement their functionality.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // Do not remove these.
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // long arithmetics
a61af66fc99e Initial load
duke
parents:
diff changeset
71 static jlong lmul(jlong y, jlong x);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 static jlong ldiv(jlong y, jlong x);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 static jlong lrem(jlong y, jlong x);
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // float and double remainder
a61af66fc99e Initial load
duke
parents:
diff changeset
76 static jfloat frem(jfloat x, jfloat y);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 static jdouble drem(jdouble x, jdouble y);
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // float conversion (needs to set appropriate rounding mode)
a61af66fc99e Initial load
duke
parents:
diff changeset
80 static jint f2i (jfloat x);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 static jlong f2l (jfloat x);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 static jint d2i (jdouble x);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static jlong d2l (jdouble x);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 static jfloat d2f (jdouble x);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 static jfloat l2f (jlong x);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 static jdouble l2d (jlong x);
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // double trigonometrics and transcendentals
a61af66fc99e Initial load
duke
parents:
diff changeset
89 static jdouble dsin(jdouble x);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 static jdouble dcos(jdouble x);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 static jdouble dtan(jdouble x);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 static jdouble dlog(jdouble x);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 static jdouble dlog10(jdouble x);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 static jdouble dexp(jdouble x);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 static jdouble dpow(jdouble x, jdouble y);
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // exception handling across interpreter/compiler boundaries
a61af66fc99e Initial load
duke
parents:
diff changeset
99 static address raw_exception_handler_for_return_address(address return_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 static address exception_handler_for_return_address(address return_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
101
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 116
diff changeset
102 #ifndef SERIALGC
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 116
diff changeset
103 // G1 write barriers
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 116
diff changeset
104 static void g1_wb_pre(oopDesc* orig, JavaThread *thread);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 116
diff changeset
105 static void g1_wb_post(void* card_addr, JavaThread* thread);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 116
diff changeset
106 #endif // !SERIALGC
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 116
diff changeset
107
0
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // exception handling and implicit exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
109 static address compute_compiled_exc_handler(nmethod* nm, address ret_pc, Handle& exception,
a61af66fc99e Initial load
duke
parents:
diff changeset
110 bool force_unwind, bool top_frame_only);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 enum ImplicitExceptionKind {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 IMPLICIT_NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
113 IMPLICIT_DIVIDE_BY_ZERO,
a61af66fc99e Initial load
duke
parents:
diff changeset
114 STACK_OVERFLOW
a61af66fc99e Initial load
duke
parents:
diff changeset
115 };
a61af66fc99e Initial load
duke
parents:
diff changeset
116 static void throw_AbstractMethodError(JavaThread* thread);
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
117 static void throw_IncompatibleClassChangeError(JavaThread* thread);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
118 static void throw_ArithmeticException(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 static void throw_NullPointerException(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 static void throw_NullPointerException_at_call(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 static void throw_StackOverflowError(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 static address continuation_for_implicit_exception(JavaThread* thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
123 address faulting_pc,
a61af66fc99e Initial load
duke
parents:
diff changeset
124 ImplicitExceptionKind exception_kind);
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // Shared stub locations
a61af66fc99e Initial load
duke
parents:
diff changeset
127 static address get_poll_stub(address pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 static address get_ic_miss_stub() {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 assert(_ic_miss_blob!= NULL, "oops");
a61af66fc99e Initial load
duke
parents:
diff changeset
131 return _ic_miss_blob->instructions_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 static address get_handle_wrong_method_stub() {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 assert(_wrong_method_blob!= NULL, "oops");
a61af66fc99e Initial load
duke
parents:
diff changeset
136 return _wrong_method_blob->instructions_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
140 static void generate_uncommon_trap_blob(void);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 static UncommonTrapBlob* uncommon_trap_blob() { return _uncommon_trap_blob; }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 static address get_resolve_opt_virtual_call_stub(){
a61af66fc99e Initial load
duke
parents:
diff changeset
145 assert(_resolve_opt_virtual_call_blob != NULL, "oops");
a61af66fc99e Initial load
duke
parents:
diff changeset
146 return _resolve_opt_virtual_call_blob->instructions_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148 static address get_resolve_virtual_call_stub() {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 assert(_resolve_virtual_call_blob != NULL, "oops");
a61af66fc99e Initial load
duke
parents:
diff changeset
150 return _resolve_virtual_call_blob->instructions_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 static address get_resolve_static_call_stub() {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 assert(_resolve_static_call_blob != NULL, "oops");
a61af66fc99e Initial load
duke
parents:
diff changeset
154 return _resolve_static_call_blob->instructions_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 static SafepointBlob* polling_page_return_handler_blob() { return _polling_page_return_handler_blob; }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 static SafepointBlob* polling_page_safepoint_handler_blob() { return _polling_page_safepoint_handler_blob; }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // Counters
a61af66fc99e Initial load
duke
parents:
diff changeset
161 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
162 static address nof_megamorphic_calls_addr() { return (address)&_nof_megamorphic_calls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
163 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // Helper routine for full-speed JVMTI exception throwing support
a61af66fc99e Initial load
duke
parents:
diff changeset
166 static void throw_and_post_jvmti_exception(JavaThread *thread, Handle h_exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 static void throw_and_post_jvmti_exception(JavaThread *thread, symbolOop name, const char *message = NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
168
610
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 356
diff changeset
169 // RedefineClasses() tracing support for obsolete method entry
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 356
diff changeset
170 static int rc_trace_method_entry(JavaThread* thread, methodOopDesc* m);
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 356
diff changeset
171
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // To be used as the entry point for unresolved native methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
173 static address native_method_throw_unsatisfied_link_error_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // bytecode tracing is only used by the TraceBytecodes
a61af66fc99e Initial load
duke
parents:
diff changeset
176 static intptr_t trace_bytecode(JavaThread* thread, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2) PRODUCT_RETURN0;
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // Used to back off a spin lock that is under heavy contention
a61af66fc99e Initial load
duke
parents:
diff changeset
179 static void yield_all(JavaThread* thread, int attempts = 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 static oop retrieve_receiver( symbolHandle sig, frame caller );
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 static void register_finalizer(JavaThread* thread, oopDesc* obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // dtrace notifications
a61af66fc99e Initial load
duke
parents:
diff changeset
186 static int dtrace_object_alloc(oopDesc* o);
a61af66fc99e Initial load
duke
parents:
diff changeset
187 static int dtrace_object_alloc_base(Thread* thread, oopDesc* o);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 static int dtrace_method_entry(JavaThread* thread, methodOopDesc* m);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 static int dtrace_method_exit(JavaThread* thread, methodOopDesc* m);
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // Utility method for retrieving the Java thread id, returns 0 if the
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // thread is not a well formed Java thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
193 static jlong get_java_tid(Thread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // used by native wrappers to reenable yellow if overflow happened in native code
a61af66fc99e Initial load
duke
parents:
diff changeset
197 static void reguard_yellow_pages();
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 /**
a61af66fc99e Initial load
duke
parents:
diff changeset
200 * Fill in the "X cannot be cast to a Y" message for ClassCastException
a61af66fc99e Initial load
duke
parents:
diff changeset
201 *
a61af66fc99e Initial load
duke
parents:
diff changeset
202 * @param thr the current thread
a61af66fc99e Initial load
duke
parents:
diff changeset
203 * @param name the name of the class of the object attempted to be cast
a61af66fc99e Initial load
duke
parents:
diff changeset
204 * @return the dynamically allocated exception message (must be freed
a61af66fc99e Initial load
duke
parents:
diff changeset
205 * by the caller using a resource mark)
a61af66fc99e Initial load
duke
parents:
diff changeset
206 *
a61af66fc99e Initial load
duke
parents:
diff changeset
207 * BCP must refer to the current 'checkcast' opcode for the frame
a61af66fc99e Initial load
duke
parents:
diff changeset
208 * on top of the stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
209 * The caller (or one of it's callers) must use a ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
210 * in order to correctly free the result.
a61af66fc99e Initial load
duke
parents:
diff changeset
211 */
a61af66fc99e Initial load
duke
parents:
diff changeset
212 static char* generate_class_cast_message(JavaThread* thr, const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 /**
a61af66fc99e Initial load
duke
parents:
diff changeset
215 * Fill in the "X cannot be cast to a Y" message for ClassCastException
a61af66fc99e Initial load
duke
parents:
diff changeset
216 *
a61af66fc99e Initial load
duke
parents:
diff changeset
217 * @param name the name of the class of the object attempted to be cast
a61af66fc99e Initial load
duke
parents:
diff changeset
218 * @param klass the name of the target klass attempt
a61af66fc99e Initial load
duke
parents:
diff changeset
219 * @return the dynamically allocated exception message (must be freed
a61af66fc99e Initial load
duke
parents:
diff changeset
220 * by the caller using a resource mark)
a61af66fc99e Initial load
duke
parents:
diff changeset
221 *
a61af66fc99e Initial load
duke
parents:
diff changeset
222 * This version does not require access the frame, so it can be called
a61af66fc99e Initial load
duke
parents:
diff changeset
223 * from interpreted code
a61af66fc99e Initial load
duke
parents:
diff changeset
224 * The caller (or one of it's callers) must use a ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
225 * in order to correctly free the result.
a61af66fc99e Initial load
duke
parents:
diff changeset
226 */
a61af66fc99e Initial load
duke
parents:
diff changeset
227 static char* generate_class_cast_message(const char* name, const char* klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // Resolves a call site- may patch in the destination of the call into the
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // compiled code.
a61af66fc99e Initial load
duke
parents:
diff changeset
231 static methodHandle resolve_helper(JavaThread *thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
232 bool is_virtual,
a61af66fc99e Initial load
duke
parents:
diff changeset
233 bool is_optimized, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 static void generate_stubs(void);
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // deopt blob
a61af66fc99e Initial load
duke
parents:
diff changeset
239 static void generate_deopt_blob(void);
a61af66fc99e Initial load
duke
parents:
diff changeset
240 static DeoptimizationBlob* _deopt_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
243 static DeoptimizationBlob* deopt_blob(void) { return _deopt_blob; }
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Resets a call-site in compiled code so it will get resolved again.
a61af66fc99e Initial load
duke
parents:
diff changeset
246 static methodHandle reresolve_call_site(JavaThread *thread, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // In the code prolog, if the klass comparison fails, the inline cache
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // misses and the call site is patched to megamorphic
a61af66fc99e Initial load
duke
parents:
diff changeset
250 static methodHandle handle_ic_miss_helper(JavaThread* thread, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // Find the method that called us.
a61af66fc99e Initial load
duke
parents:
diff changeset
253 static methodHandle find_callee_method(JavaThread* thread, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
257 static Handle find_callee_info(JavaThread* thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
258 Bytecodes::Code& bc,
a61af66fc99e Initial load
duke
parents:
diff changeset
259 CallInfo& callinfo, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
260 static Handle find_callee_info_helper(JavaThread* thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
261 vframeStream& vfst,
a61af66fc99e Initial load
duke
parents:
diff changeset
262 Bytecodes::Code& bc,
a61af66fc99e Initial load
duke
parents:
diff changeset
263 CallInfo& callinfo, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 static address clean_virtual_call_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
266 static address clean_opt_virtual_call_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
267 static address clean_static_call_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // Read the array of BasicTypes from a Java signature, and compute where
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // compiled Java code would like to put the results. Values in reg_lo and
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // reg_hi refer to 4-byte quantities. Values less than SharedInfo::stack0 are
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // registers, those above refer to 4-byte stack slots. All stack slots are
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // based off of the window top. SharedInfo::stack0 refers to the first usable
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // slot in the bottom of the frame. SharedInfo::stack0+1 refers to the memory word
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // 4-bytes higher. So for sparc because the register window save area is at
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // the bottom of the frame the first 16 words will be skipped and SharedInfo::stack0
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // will be just above it. (
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // return value is the maximum number of VMReg stack slots the convention will use.
a61af66fc99e Initial load
duke
parents:
diff changeset
281 static int java_calling_convention(const BasicType *sig_bt, VMRegPair *regs, int total_args_passed, int is_outgoing);
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283 // Ditto except for calling C
a61af66fc99e Initial load
duke
parents:
diff changeset
284 static int c_calling_convention(const BasicType *sig_bt, VMRegPair *regs, int total_args_passed);
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // Generate I2C and C2I adapters. These adapters are simple argument marshalling
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // blobs. Unlike adapters in the tiger and earlier releases the code in these
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // blobs does not create a new frame and are therefore virtually invisible
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // to the stack walking code. In general these blobs extend the callers stack
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // as needed for the conversion of argument locations.
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // When calling a c2i blob the code will always call the interpreter even if
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // by the time we reach the blob there is compiled code available. This allows
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // the blob to pass the incoming stack pointer (the sender sp) in a known
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // location for the interpreter to record. This is used by the frame code
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // to correct the sender code to match up with the stack pointer when the
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // thread left the compiled code. In addition it allows the interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // to remove the space the c2i adapter allocated to do it argument conversion.
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // Although a c2i blob will always run interpreted even if compiled code is
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // present if we see that compiled code is present the compiled call site
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // will be patched/re-resolved so that later calls will run compiled.
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // Aditionally a c2i blob need to have a unverified entry because it can be reached
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // in situations where the call site is an inlined cache site and may go megamorphic.
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // A i2c adapter is simpler than the c2i adapter. This is because it is assumed
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // that the interpreter before it does any call dispatch will record the current
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // stack pointer in the interpreter frame. On return it will restore the stack
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // pointer as needed. This means the i2c adapter code doesn't need any special
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // handshaking path with compiled code to keep the stack walking correct.
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 static AdapterHandlerEntry* generate_i2c2i_adapters(MacroAssembler *_masm,
a61af66fc99e Initial load
duke
parents:
diff changeset
314 int total_args_passed,
a61af66fc99e Initial load
duke
parents:
diff changeset
315 int max_arg,
a61af66fc99e Initial load
duke
parents:
diff changeset
316 const BasicType *sig_bt,
a61af66fc99e Initial load
duke
parents:
diff changeset
317 const VMRegPair *regs);
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // OSR support
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // OSR_migration_begin will extract the jvm state from an interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // frame (locals, monitors) and store the data in a piece of C heap
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // storage. This then allows the interpreter frame to be removed from the
a61af66fc99e Initial load
duke
parents:
diff changeset
324 // stack and the OSR nmethod to be called. That method is called with a
a61af66fc99e Initial load
duke
parents:
diff changeset
325 // pointer to the C heap storage. This pointer is the return value from
a61af66fc99e Initial load
duke
parents:
diff changeset
326 // OSR_migration_begin.
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 static intptr_t* OSR_migration_begin( JavaThread *thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // OSR_migration_end is a trivial routine. It is called after the compiled
a61af66fc99e Initial load
duke
parents:
diff changeset
331 // method has extracted the jvm state from the C heap that OSR_migration_begin
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // created. It's entire job is to simply free this storage.
a61af66fc99e Initial load
duke
parents:
diff changeset
333 static void OSR_migration_end ( intptr_t* buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
334
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // Convert a sig into a calling convention register layout
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // and find interesting things about it.
a61af66fc99e Initial load
duke
parents:
diff changeset
337 static VMRegPair* find_callee_arguments(symbolOop sig, bool is_static, int *arg_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
338 static VMReg name_for_receiver();
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // "Top of Stack" slots that may be unused by the calling convention but must
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // otherwise be preserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // On Intel these are not necessary and the value can be zero.
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // On Sparc this describes the words reserved for storing a register window
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // when an interrupt occurs.
a61af66fc99e Initial load
duke
parents:
diff changeset
345 static uint out_preserve_stack_slots();
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // Save and restore a native result
a61af66fc99e Initial load
duke
parents:
diff changeset
348 static void save_native_result(MacroAssembler *_masm, BasicType ret_type, int frame_slots );
a61af66fc99e Initial load
duke
parents:
diff changeset
349 static void restore_native_result(MacroAssembler *_masm, BasicType ret_type, int frame_slots );
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // Generate a native wrapper for a given method. The method takes arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // in the Java compiled code convention, marshals them to the native
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // convention (handlizes oops, etc), transitions to native, makes the call,
a61af66fc99e Initial load
duke
parents:
diff changeset
354 // returns to java state (possibly blocking), unhandlizes any result and
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // returns.
a61af66fc99e Initial load
duke
parents:
diff changeset
356 static nmethod *generate_native_wrapper(MacroAssembler* masm,
a61af66fc99e Initial load
duke
parents:
diff changeset
357 methodHandle method,
a61af66fc99e Initial load
duke
parents:
diff changeset
358 int total_args_passed,
a61af66fc99e Initial load
duke
parents:
diff changeset
359 int max_arg,
a61af66fc99e Initial load
duke
parents:
diff changeset
360 BasicType *sig_bt,
a61af66fc99e Initial load
duke
parents:
diff changeset
361 VMRegPair *regs,
a61af66fc99e Initial load
duke
parents:
diff changeset
362 BasicType ret_type );
a61af66fc99e Initial load
duke
parents:
diff changeset
363
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
364 #ifdef HAVE_DTRACE_H
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
365 // Generate a dtrace wrapper for a given method. The method takes arguments
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
366 // in the Java compiled code convention, marshals them to the native
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
367 // convention (handlizes oops, etc), transitions to native, makes the call,
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
368 // returns to java state (possibly blocking), unhandlizes any result and
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
369 // returns.
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
370 static nmethod *generate_dtrace_nmethod(MacroAssembler* masm,
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
371 methodHandle method);
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
372
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
373 // dtrace support to convert a Java string to utf8
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
374 static void get_utf(oopDesc* src, address dst);
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
375 #endif // def HAVE_DTRACE_H
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
376
0
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // A compiled caller has just called the interpreter, but compiled code
a61af66fc99e Initial load
duke
parents:
diff changeset
378 // exists. Patch the caller so he no longer calls into the interpreter.
a61af66fc99e Initial load
duke
parents:
diff changeset
379 static void fixup_callers_callsite(methodOopDesc* moop, address ret_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 // Slow-path Locking and Unlocking
a61af66fc99e Initial load
duke
parents:
diff changeset
382 static void complete_monitor_locking_C(oopDesc* obj, BasicLock* lock, JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 static void complete_monitor_unlocking_C(oopDesc* obj, BasicLock* lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // Resolving of calls
a61af66fc99e Initial load
duke
parents:
diff changeset
386 static address resolve_static_call_C (JavaThread *thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 static address resolve_virtual_call_C (JavaThread *thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 static address resolve_opt_virtual_call_C(JavaThread *thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
389
a61af66fc99e Initial load
duke
parents:
diff changeset
390 // arraycopy, the non-leaf version. (See StubRoutines for all the leaf calls.)
a61af66fc99e Initial load
duke
parents:
diff changeset
391 static void slow_arraycopy_C(oopDesc* src, jint src_pos,
a61af66fc99e Initial load
duke
parents:
diff changeset
392 oopDesc* dest, jint dest_pos,
a61af66fc99e Initial load
duke
parents:
diff changeset
393 jint length, JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // handle ic miss with caller being compiled code
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // wrong method handling (inline cache misses, zombie methods)
a61af66fc99e Initial load
duke
parents:
diff changeset
397 static address handle_wrong_method(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
398 static address handle_wrong_method_ic_miss(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
399
a61af66fc99e Initial load
duke
parents:
diff changeset
400 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // Collect and print inline cache miss statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
403 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
404 enum { maxICmiss_count = 100 };
a61af66fc99e Initial load
duke
parents:
diff changeset
405 static int _ICmiss_index; // length of IC miss histogram
a61af66fc99e Initial load
duke
parents:
diff changeset
406 static int _ICmiss_count[maxICmiss_count]; // miss counts
a61af66fc99e Initial load
duke
parents:
diff changeset
407 static address _ICmiss_at[maxICmiss_count]; // miss addresses
a61af66fc99e Initial load
duke
parents:
diff changeset
408 static void trace_ic_miss(address at);
a61af66fc99e Initial load
duke
parents:
diff changeset
409
a61af66fc99e Initial load
duke
parents:
diff changeset
410 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
411 static int _monitor_enter_ctr; // monitor enter slow
a61af66fc99e Initial load
duke
parents:
diff changeset
412 static int _monitor_exit_ctr; // monitor exit slow
a61af66fc99e Initial load
duke
parents:
diff changeset
413 static int _throw_null_ctr; // throwing a null-pointer exception
a61af66fc99e Initial load
duke
parents:
diff changeset
414 static int _ic_miss_ctr; // total # of IC misses
a61af66fc99e Initial load
duke
parents:
diff changeset
415 static int _wrong_method_ctr;
a61af66fc99e Initial load
duke
parents:
diff changeset
416 static int _resolve_static_ctr;
a61af66fc99e Initial load
duke
parents:
diff changeset
417 static int _resolve_virtual_ctr;
a61af66fc99e Initial load
duke
parents:
diff changeset
418 static int _resolve_opt_virtual_ctr;
a61af66fc99e Initial load
duke
parents:
diff changeset
419 static int _implicit_null_throws;
a61af66fc99e Initial load
duke
parents:
diff changeset
420 static int _implicit_div0_throws;
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 static int _jbyte_array_copy_ctr; // Slow-path byte array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
423 static int _jshort_array_copy_ctr; // Slow-path short array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
424 static int _jint_array_copy_ctr; // Slow-path int array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
425 static int _jlong_array_copy_ctr; // Slow-path long array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
426 static int _oop_array_copy_ctr; // Slow-path oop array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
427 static int _checkcast_array_copy_ctr; // Slow-path oop array copy, with cast
a61af66fc99e Initial load
duke
parents:
diff changeset
428 static int _unsafe_array_copy_ctr; // Slow-path includes alignment checks
a61af66fc99e Initial load
duke
parents:
diff changeset
429 static int _generic_array_copy_ctr; // Slow-path includes type decoding
a61af66fc99e Initial load
duke
parents:
diff changeset
430 static int _slow_array_copy_ctr; // Slow-path failed out to a method call
a61af66fc99e Initial load
duke
parents:
diff changeset
431
a61af66fc99e Initial load
duke
parents:
diff changeset
432 static int _new_instance_ctr; // 'new' object requires GC
a61af66fc99e Initial load
duke
parents:
diff changeset
433 static int _new_array_ctr; // 'new' array requires GC
a61af66fc99e Initial load
duke
parents:
diff changeset
434 static int _multi1_ctr, _multi2_ctr, _multi3_ctr, _multi4_ctr, _multi5_ctr;
a61af66fc99e Initial load
duke
parents:
diff changeset
435 static int _find_handler_ctr; // find exception handler
a61af66fc99e Initial load
duke
parents:
diff changeset
436 static int _rethrow_ctr; // rethrow exception
a61af66fc99e Initial load
duke
parents:
diff changeset
437 static int _mon_enter_stub_ctr; // monitor enter stub
a61af66fc99e Initial load
duke
parents:
diff changeset
438 static int _mon_exit_stub_ctr; // monitor exit stub
a61af66fc99e Initial load
duke
parents:
diff changeset
439 static int _mon_enter_ctr; // monitor enter slow
a61af66fc99e Initial load
duke
parents:
diff changeset
440 static int _mon_exit_ctr; // monitor exit slow
a61af66fc99e Initial load
duke
parents:
diff changeset
441 static int _partial_subtype_ctr; // SubRoutines::partial_subtype_check
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 // Statistics code
a61af66fc99e Initial load
duke
parents:
diff changeset
444 // stats for "normal" compiled calls (non-interface)
a61af66fc99e Initial load
duke
parents:
diff changeset
445 static int _nof_normal_calls; // total # of calls
a61af66fc99e Initial load
duke
parents:
diff changeset
446 static int _nof_optimized_calls; // total # of statically-bound calls
a61af66fc99e Initial load
duke
parents:
diff changeset
447 static int _nof_inlined_calls; // total # of inlined normal calls
a61af66fc99e Initial load
duke
parents:
diff changeset
448 static int _nof_static_calls; // total # of calls to static methods or super methods (invokespecial)
a61af66fc99e Initial load
duke
parents:
diff changeset
449 static int _nof_inlined_static_calls; // total # of inlined static calls
a61af66fc99e Initial load
duke
parents:
diff changeset
450 // stats for compiled interface calls
a61af66fc99e Initial load
duke
parents:
diff changeset
451 static int _nof_interface_calls; // total # of compiled calls
a61af66fc99e Initial load
duke
parents:
diff changeset
452 static int _nof_optimized_interface_calls; // total # of statically-bound interface calls
a61af66fc99e Initial load
duke
parents:
diff changeset
453 static int _nof_inlined_interface_calls; // total # of inlined interface calls
a61af66fc99e Initial load
duke
parents:
diff changeset
454 static int _nof_megamorphic_interface_calls;// total # of megamorphic interface calls
a61af66fc99e Initial load
duke
parents:
diff changeset
455 // stats for runtime exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
456 static int _nof_removable_exceptions; // total # of exceptions that could be replaced by branches due to inlining
a61af66fc99e Initial load
duke
parents:
diff changeset
457
a61af66fc99e Initial load
duke
parents:
diff changeset
458 public: // for compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
459 static address nof_normal_calls_addr() { return (address)&_nof_normal_calls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
460 static address nof_optimized_calls_addr() { return (address)&_nof_optimized_calls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
461 static address nof_inlined_calls_addr() { return (address)&_nof_inlined_calls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 static address nof_static_calls_addr() { return (address)&_nof_static_calls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
463 static address nof_inlined_static_calls_addr() { return (address)&_nof_inlined_static_calls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
464 static address nof_interface_calls_addr() { return (address)&_nof_interface_calls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
465 static address nof_optimized_interface_calls_addr() { return (address)&_nof_optimized_interface_calls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
466 static address nof_inlined_interface_calls_addr() { return (address)&_nof_inlined_interface_calls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
467 static address nof_megamorphic_interface_calls_addr() { return (address)&_nof_megamorphic_interface_calls; }
a61af66fc99e Initial load
duke
parents:
diff changeset
468 static void print_call_statistics(int comp_total);
a61af66fc99e Initial load
duke
parents:
diff changeset
469 static void print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
470 static void print_ic_miss_histogram();
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
473 };
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 // ---------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
477 // Implementation of AdapterHandlerLibrary
a61af66fc99e Initial load
duke
parents:
diff changeset
478 //
a61af66fc99e Initial load
duke
parents:
diff changeset
479 // This library manages argument marshaling adapters and native wrappers.
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // There are 2 flavors of adapters: I2C and C2I.
a61af66fc99e Initial load
duke
parents:
diff changeset
481 //
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // The I2C flavor takes a stock interpreted call setup, marshals the arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // for a Java-compiled call, and jumps to Rmethod-> code()->
a61af66fc99e Initial load
duke
parents:
diff changeset
484 // instructions_begin(). It is broken to call it without an nmethod assigned.
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // The usual behavior is to lift any register arguments up out of the stack
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // and possibly re-pack the extra arguments to be contigious. I2C adapters
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // will save what the interpreter's stack pointer will be after arguments are
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // popped, then adjust the interpreter's frame size to force alignment and
a61af66fc99e Initial load
duke
parents:
diff changeset
489 // possibly to repack the arguments. After re-packing, it jumps to the
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // compiled code start. There are no safepoints in this adapter code and a GC
a61af66fc99e Initial load
duke
parents:
diff changeset
491 // cannot happen while marshaling is in progress.
a61af66fc99e Initial load
duke
parents:
diff changeset
492 //
a61af66fc99e Initial load
duke
parents:
diff changeset
493 // The C2I flavor takes a stock compiled call setup plus the target method in
a61af66fc99e Initial load
duke
parents:
diff changeset
494 // Rmethod, marshals the arguments for an interpreted call and jumps to
a61af66fc99e Initial load
duke
parents:
diff changeset
495 // Rmethod->_i2i_entry. On entry, the interpreted frame has not yet been
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // setup. Compiled frames are fixed-size and the args are likely not in the
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // right place. Hence all the args will likely be copied into the
a61af66fc99e Initial load
duke
parents:
diff changeset
498 // interpreter's frame, forcing that frame to grow. The compiled frame's
a61af66fc99e Initial load
duke
parents:
diff changeset
499 // outgoing stack args will be dead after the copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
500 //
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // Native wrappers, like adapters, marshal arguments. Unlike adapters they
a61af66fc99e Initial load
duke
parents:
diff changeset
502 // also perform an offical frame push & pop. They have a call to the native
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // routine in their middles and end in a return (instead of ending in a jump).
a61af66fc99e Initial load
duke
parents:
diff changeset
504 // The native wrappers are stored in real nmethods instead of the BufferBlobs
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // used by the adapters. The code generation happens here because it's very
a61af66fc99e Initial load
duke
parents:
diff changeset
506 // similar to what the adapters have to do.
a61af66fc99e Initial load
duke
parents:
diff changeset
507
a61af66fc99e Initial load
duke
parents:
diff changeset
508 class AdapterHandlerEntry : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
510 address _i2c_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 address _c2i_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
512 address _c2i_unverified_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
513
a61af66fc99e Initial load
duke
parents:
diff changeset
514 public:
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
515
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
516 // The name we give all buffer blobs
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
517 static const char* name;
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
518
0
a61af66fc99e Initial load
duke
parents:
diff changeset
519 AdapterHandlerEntry(address i2c_entry, address c2i_entry, address c2i_unverified_entry):
a61af66fc99e Initial load
duke
parents:
diff changeset
520 _i2c_entry(i2c_entry),
a61af66fc99e Initial load
duke
parents:
diff changeset
521 _c2i_entry(c2i_entry),
a61af66fc99e Initial load
duke
parents:
diff changeset
522 _c2i_unverified_entry(c2i_unverified_entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525 address get_i2c_entry() { return _i2c_entry; }
a61af66fc99e Initial load
duke
parents:
diff changeset
526 address get_c2i_entry() { return _c2i_entry; }
a61af66fc99e Initial load
duke
parents:
diff changeset
527 address get_c2i_unverified_entry() { return _c2i_unverified_entry; }
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
528
0
a61af66fc99e Initial load
duke
parents:
diff changeset
529 void relocate(address new_base);
a61af66fc99e Initial load
duke
parents:
diff changeset
530 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
531 void print();
a61af66fc99e Initial load
duke
parents:
diff changeset
532 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
533 };
a61af66fc99e Initial load
duke
parents:
diff changeset
534
a61af66fc99e Initial load
duke
parents:
diff changeset
535 class AdapterHandlerLibrary: public AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
536 private:
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
537 static u_char _buffer[]; // the temporary code buffer
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
538 static GrowableArray<uint64_t>* _fingerprints; // the fingerprint collection
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
539 static GrowableArray<AdapterHandlerEntry*> * _handlers; // the corresponding handlers
0
a61af66fc99e Initial load
duke
parents:
diff changeset
540 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
541 AbstractMethodHandler = 1 // special handler for abstract methods
a61af66fc99e Initial load
duke
parents:
diff changeset
542 };
a61af66fc99e Initial load
duke
parents:
diff changeset
543 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
544 static int get_create_adapter_index(methodHandle method);
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
545 static address get_i2c_entry( int index ) {
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
546 return get_entry(index)->get_i2c_entry();
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
547 }
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
548 static address get_c2i_entry( int index ) {
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
549 return get_entry(index)->get_c2i_entry();
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
550 }
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
551 static address get_c2i_unverified_entry( int index ) {
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
552 return get_entry(index)->get_c2i_unverified_entry();
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
553 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
554
a61af66fc99e Initial load
duke
parents:
diff changeset
555 public:
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
556 static AdapterHandlerEntry* get_entry( int index ) { return _handlers->at(index); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
557 static nmethod* create_native_wrapper(methodHandle method);
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
558 static AdapterHandlerEntry* get_adapter(methodHandle method) {
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
559 return get_entry(get_create_adapter_index(method));
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
560 }
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
561 #ifdef HAVE_DTRACE_H
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
562 static nmethod* create_dtrace_nmethod (methodHandle method);
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 16
diff changeset
563 #endif // HAVE_DTRACE_H
0
a61af66fc99e Initial load
duke
parents:
diff changeset
564
a61af66fc99e Initial load
duke
parents:
diff changeset
565 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
566 static void print_handler(CodeBlob* b);
a61af66fc99e Initial load
duke
parents:
diff changeset
567 static bool contains(CodeBlob* b);
a61af66fc99e Initial load
duke
parents:
diff changeset
568 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570 };