author | coleenp |
Sat, 01 Sep 2012 13:25:18 -0400 | |
changeset 13728 | 882756847a04 |
parent 13391 | 30245956af37 |
child 13887 | 89b873bcc55b |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2 |
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4564
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4564
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4564
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "asm/assembler.hpp" |
|
27 |
#include "interpreter/bytecodeHistogram.hpp" |
|
28 |
#include "interpreter/bytecodeInterpreter.hpp" |
|
29 |
#include "interpreter/interpreter.hpp" |
|
30 |
#include "interpreter/interpreterRuntime.hpp" |
|
31 |
#include "interpreter/templateTable.hpp" |
|
32 |
#include "memory/allocation.inline.hpp" |
|
33 |
#include "memory/resourceArea.hpp" |
|
34 |
#include "oops/arrayOop.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
35 |
#include "oops/methodData.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
36 |
#include "oops/method.hpp" |
7397 | 37 |
#include "oops/oop.inline.hpp" |
38 |
#include "prims/forte.hpp" |
|
39 |
#include "prims/jvmtiExport.hpp" |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
40 |
#include "prims/methodHandles.hpp" |
7397 | 41 |
#include "runtime/handles.inline.hpp" |
42 |
#include "runtime/sharedRuntime.hpp" |
|
43 |
#include "runtime/stubRoutines.hpp" |
|
44 |
#include "runtime/timer.hpp" |
|
1 | 45 |
|
46 |
# define __ _masm-> |
|
47 |
||
48 |
||
49 |
//------------------------------------------------------------------------------------------------------------------------ |
|
50 |
// Implementation of InterpreterCodelet |
|
51 |
||
52 |
void InterpreterCodelet::initialize(const char* description, Bytecodes::Code bytecode) { |
|
53 |
_description = description; |
|
54 |
_bytecode = bytecode; |
|
55 |
} |
|
56 |
||
57 |
||
58 |
void InterpreterCodelet::verify() { |
|
59 |
} |
|
60 |
||
61 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
62 |
void InterpreterCodelet::print_on(outputStream* st) const { |
1 | 63 |
if (PrintInterpreter) { |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
64 |
st->cr(); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
65 |
st->print_cr("----------------------------------------------------------------------"); |
1 | 66 |
} |
67 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
68 |
if (description() != NULL) st->print("%s ", description()); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
69 |
if (bytecode() >= 0 ) st->print("%d %s ", bytecode(), Bytecodes::name(bytecode())); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
70 |
st->print_cr("[" INTPTR_FORMAT ", " INTPTR_FORMAT "] %d bytes", |
1 | 71 |
code_begin(), code_end(), code_size()); |
72 |
||
73 |
if (PrintInterpreter) { |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
74 |
st->cr(); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
75 |
Disassembler::decode(code_begin(), code_end(), st); |
1 | 76 |
} |
77 |
} |
|
78 |
||
79 |
||
80 |
//------------------------------------------------------------------------------------------------------------------------ |
|
81 |
// Implementation of platform independent aspects of Interpreter |
|
82 |
||
83 |
void AbstractInterpreter::initialize() { |
|
84 |
if (_code != NULL) return; |
|
85 |
||
86 |
// make sure 'imported' classes are initialized |
|
87 |
if (CountBytecodes || TraceBytecodes || StopInterpreterAt) BytecodeCounter::reset(); |
|
88 |
if (PrintBytecodeHistogram) BytecodeHistogram::reset(); |
|
89 |
if (PrintBytecodePairHistogram) BytecodePairHistogram::reset(); |
|
90 |
||
91 |
InvocationCounter::reinitialize(DelayCompilationDuringStartup); |
|
92 |
||
93 |
} |
|
94 |
||
95 |
void AbstractInterpreter::print() { |
|
96 |
tty->cr(); |
|
97 |
tty->print_cr("----------------------------------------------------------------------"); |
|
98 |
tty->print_cr("Interpreter"); |
|
99 |
tty->cr(); |
|
100 |
tty->print_cr("code size = %6dK bytes", (int)_code->used_space()/1024); |
|
101 |
tty->print_cr("total space = %6dK bytes", (int)_code->total_space()/1024); |
|
102 |
tty->print_cr("wasted space = %6dK bytes", (int)_code->available_space()/1024); |
|
103 |
tty->cr(); |
|
104 |
tty->print_cr("# of codelets = %6d" , _code->number_of_stubs()); |
|
105 |
tty->print_cr("avg codelet size = %6d bytes", _code->used_space() / _code->number_of_stubs()); |
|
106 |
tty->cr(); |
|
107 |
_code->print(); |
|
108 |
tty->print_cr("----------------------------------------------------------------------"); |
|
109 |
tty->cr(); |
|
110 |
} |
|
111 |
||
112 |
||
113 |
void interpreter_init() { |
|
114 |
Interpreter::initialize(); |
|
115 |
#ifndef PRODUCT |
|
116 |
if (TraceBytecodes) BytecodeTracer::set_closure(BytecodeTracer::std_closure()); |
|
117 |
#endif // PRODUCT |
|
118 |
// need to hit every safepoint in order to call zapping routine |
|
119 |
// register the interpreter |
|
120 |
Forte::register_stub( |
|
121 |
"Interpreter", |
|
122 |
AbstractInterpreter::code()->code_start(), |
|
123 |
AbstractInterpreter::code()->code_end() |
|
124 |
); |
|
125 |
||
126 |
// notify JVMTI profiler |
|
127 |
if (JvmtiExport::should_post_dynamic_code_generated()) { |
|
128 |
JvmtiExport::post_dynamic_code_generated("Interpreter", |
|
129 |
AbstractInterpreter::code()->code_start(), |
|
130 |
AbstractInterpreter::code()->code_end()); |
|
131 |
} |
|
132 |
} |
|
133 |
||
134 |
//------------------------------------------------------------------------------------------------------------------------ |
|
135 |
// Implementation of interpreter |
|
136 |
||
137 |
StubQueue* AbstractInterpreter::_code = NULL; |
|
138 |
bool AbstractInterpreter::_notice_safepoints = false; |
|
139 |
address AbstractInterpreter::_rethrow_exception_entry = NULL; |
|
140 |
||
141 |
address AbstractInterpreter::_native_entry_begin = NULL; |
|
142 |
address AbstractInterpreter::_native_entry_end = NULL; |
|
143 |
address AbstractInterpreter::_slow_signature_handler; |
|
144 |
address AbstractInterpreter::_entry_table [AbstractInterpreter::number_of_method_entries]; |
|
145 |
address AbstractInterpreter::_native_abi_to_tosca [AbstractInterpreter::number_of_result_handlers]; |
|
146 |
||
147 |
//------------------------------------------------------------------------------------------------------------------------ |
|
148 |
// Generation of complete interpreter |
|
149 |
||
150 |
AbstractInterpreterGenerator::AbstractInterpreterGenerator(StubQueue* _code) { |
|
151 |
_masm = NULL; |
|
152 |
} |
|
153 |
||
154 |
||
155 |
static const BasicType types[Interpreter::number_of_result_handlers] = { |
|
156 |
T_BOOLEAN, |
|
157 |
T_CHAR , |
|
158 |
T_BYTE , |
|
159 |
T_SHORT , |
|
160 |
T_INT , |
|
161 |
T_LONG , |
|
162 |
T_VOID , |
|
163 |
T_FLOAT , |
|
164 |
T_DOUBLE , |
|
165 |
T_OBJECT |
|
166 |
}; |
|
167 |
||
168 |
void AbstractInterpreterGenerator::generate_all() { |
|
169 |
||
170 |
||
171 |
{ CodeletMark cm(_masm, "slow signature handler"); |
|
172 |
Interpreter::_slow_signature_handler = generate_slow_signature_handler(); |
|
173 |
} |
|
174 |
||
175 |
} |
|
176 |
||
177 |
//------------------------------------------------------------------------------------------------------------------------ |
|
178 |
// Entry points |
|
179 |
||
180 |
AbstractInterpreter::MethodKind AbstractInterpreter::method_kind(methodHandle m) { |
|
181 |
// Abstract method? |
|
182 |
if (m->is_abstract()) return abstract; |
|
183 |
||
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
184 |
// Method handle primitive? |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
185 |
if (m->is_method_handle_intrinsic()) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
186 |
vmIntrinsics::ID id = m->intrinsic_id(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
187 |
assert(MethodHandles::is_signature_polymorphic(id), "must match an intrinsic"); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
188 |
MethodKind kind = (MethodKind)( method_handle_invoke_FIRST + |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
189 |
((int)id - vmIntrinsics::FIRST_MH_SIG_POLY) ); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
190 |
assert(kind <= method_handle_invoke_LAST, "parallel enum ranges"); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
191 |
return kind; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
192 |
} |
2534 | 193 |
|
1 | 194 |
// Native method? |
195 |
// Note: This test must come _before_ the test for intrinsic |
|
196 |
// methods. See also comments below. |
|
197 |
if (m->is_native()) { |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
198 |
assert(!m->is_method_handle_intrinsic(), "overlapping bits here, watch out"); |
1 | 199 |
return m->is_synchronized() ? native_synchronized : native; |
200 |
} |
|
201 |
||
202 |
// Synchronized? |
|
203 |
if (m->is_synchronized()) { |
|
204 |
return zerolocals_synchronized; |
|
205 |
} |
|
206 |
||
207 |
if (RegisterFinalizersAtInit && m->code_size() == 1 && |
|
208 |
m->intrinsic_id() == vmIntrinsics::_Object_init) { |
|
209 |
// We need to execute the special return bytecode to check for |
|
210 |
// finalizer registration so create a normal frame. |
|
211 |
return zerolocals; |
|
212 |
} |
|
213 |
||
214 |
// Empty method? |
|
215 |
if (m->is_empty_method()) { |
|
216 |
return empty; |
|
217 |
} |
|
218 |
||
219 |
// Special intrinsic method? |
|
220 |
// Note: This test must come _after_ the test for native methods, |
|
221 |
// otherwise we will run into problems with JDK 1.2, see also |
|
222 |
// AbstractInterpreterGenerator::generate_method_entry() for |
|
223 |
// for details. |
|
224 |
switch (m->intrinsic_id()) { |
|
225 |
case vmIntrinsics::_dsin : return java_lang_math_sin ; |
|
226 |
case vmIntrinsics::_dcos : return java_lang_math_cos ; |
|
227 |
case vmIntrinsics::_dtan : return java_lang_math_tan ; |
|
228 |
case vmIntrinsics::_dabs : return java_lang_math_abs ; |
|
229 |
case vmIntrinsics::_dsqrt : return java_lang_math_sqrt ; |
|
230 |
case vmIntrinsics::_dlog : return java_lang_math_log ; |
|
231 |
case vmIntrinsics::_dlog10: return java_lang_math_log10; |
|
12739
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
9176
diff
changeset
|
232 |
case vmIntrinsics::_dpow : return java_lang_math_pow ; |
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
9176
diff
changeset
|
233 |
case vmIntrinsics::_dexp : return java_lang_math_exp ; |
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8076
diff
changeset
|
234 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8076
diff
changeset
|
235 |
case vmIntrinsics::_Reference_get: |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8076
diff
changeset
|
236 |
return java_lang_ref_reference_get; |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8076
diff
changeset
|
237 |
} |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8076
diff
changeset
|
238 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8076
diff
changeset
|
239 |
// Accessor method? |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8076
diff
changeset
|
240 |
if (m->is_accessor()) { |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8076
diff
changeset
|
241 |
assert(m->size_of_parameters() == 1, "fast code for accessors assumes parameter size = 1"); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8076
diff
changeset
|
242 |
return accessor; |
1 | 243 |
} |
244 |
||
245 |
// Note: for now: zero locals for all non-empty methods |
|
246 |
return zerolocals; |
|
247 |
} |
|
248 |
||
249 |
||
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
250 |
void AbstractInterpreter::set_entry_for_kind(AbstractInterpreter::MethodKind kind, address entry) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
251 |
assert(kind >= method_handle_invoke_FIRST && |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
252 |
kind <= method_handle_invoke_LAST, "late initialization only for MH entry points"); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
253 |
assert(_entry_table[kind] == _entry_table[abstract], "previous value must be AME entry"); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
254 |
_entry_table[kind] = entry; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
255 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
256 |
|
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
257 |
|
1 | 258 |
// Return true if the interpreter can prove that the given bytecode has |
259 |
// not yet been executed (in Java semantics, not in actual operation). |
|
260 |
bool AbstractInterpreter::is_not_reached(methodHandle method, int bci) { |
|
7913 | 261 |
Bytecodes::Code code = method()->code_at(bci); |
1 | 262 |
|
7913 | 263 |
if (!Bytecodes::must_rewrite(code)) { |
1 | 264 |
// might have been reached |
265 |
return false; |
|
266 |
} |
|
267 |
||
268 |
// the bytecode might not be rewritten if the method is an accessor, etc. |
|
269 |
address ientry = method->interpreter_entry(); |
|
270 |
if (ientry != entry_for_kind(AbstractInterpreter::zerolocals) && |
|
271 |
ientry != entry_for_kind(AbstractInterpreter::zerolocals_synchronized)) |
|
272 |
return false; // interpreter does not run this method! |
|
273 |
||
274 |
// otherwise, we can be sure this bytecode has never been executed |
|
275 |
return true; |
|
276 |
} |
|
277 |
||
278 |
||
279 |
#ifndef PRODUCT |
|
280 |
void AbstractInterpreter::print_method_kind(MethodKind kind) { |
|
281 |
switch (kind) { |
|
282 |
case zerolocals : tty->print("zerolocals" ); break; |
|
283 |
case zerolocals_synchronized: tty->print("zerolocals_synchronized"); break; |
|
284 |
case native : tty->print("native" ); break; |
|
285 |
case native_synchronized : tty->print("native_synchronized" ); break; |
|
286 |
case empty : tty->print("empty" ); break; |
|
287 |
case accessor : tty->print("accessor" ); break; |
|
288 |
case abstract : tty->print("abstract" ); break; |
|
289 |
case java_lang_math_sin : tty->print("java_lang_math_sin" ); break; |
|
290 |
case java_lang_math_cos : tty->print("java_lang_math_cos" ); break; |
|
291 |
case java_lang_math_tan : tty->print("java_lang_math_tan" ); break; |
|
292 |
case java_lang_math_abs : tty->print("java_lang_math_abs" ); break; |
|
293 |
case java_lang_math_sqrt : tty->print("java_lang_math_sqrt" ); break; |
|
294 |
case java_lang_math_log : tty->print("java_lang_math_log" ); break; |
|
295 |
case java_lang_math_log10 : tty->print("java_lang_math_log10" ); break; |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
296 |
default: |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
297 |
if (kind >= method_handle_invoke_FIRST && |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
298 |
kind <= method_handle_invoke_LAST) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
299 |
const char* kind_name = vmIntrinsics::name_at(method_handle_intrinsic(kind)); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
300 |
if (kind_name[0] == '_') kind_name = &kind_name[1]; // '_invokeExact' => 'invokeExact' |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
301 |
tty->print("method_handle_%s", kind_name); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
302 |
break; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
303 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
304 |
ShouldNotReachHere(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12739
diff
changeset
|
305 |
break; |
1 | 306 |
} |
307 |
} |
|
308 |
#endif // PRODUCT |
|
309 |
||
310 |
||
311 |
//------------------------------------------------------------------------------------------------------------------------ |
|
312 |
// Deoptimization support |
|
313 |
||
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
314 |
// If deoptimization happens, this function returns the point of next bytecode to continue execution |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
315 |
address AbstractInterpreter::deopt_continue_after_entry(Method* method, address bcp, int callee_parameters, bool is_top_frame) { |
1 | 316 |
assert(method->contains(bcp), "just checkin'"); |
7913 | 317 |
Bytecodes::Code code = Bytecodes::java_code_at(method, bcp); |
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
318 |
assert(!Interpreter::bytecode_should_reexecute(code), "should not reexecute"); |
1 | 319 |
int bci = method->bci_from(bcp); |
320 |
int length = -1; // initial value for debugging |
|
321 |
// compute continuation length |
|
7913 | 322 |
length = Bytecodes::length_at(method, bcp); |
1 | 323 |
// compute result type |
324 |
BasicType type = T_ILLEGAL; |
|
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
325 |
|
1 | 326 |
switch (code) { |
327 |
case Bytecodes::_invokevirtual : |
|
328 |
case Bytecodes::_invokespecial : |
|
329 |
case Bytecodes::_invokestatic : |
|
330 |
case Bytecodes::_invokeinterface: { |
|
331 |
Thread *thread = Thread::current(); |
|
332 |
ResourceMark rm(thread); |
|
333 |
methodHandle mh(thread, method); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7913
diff
changeset
|
334 |
type = Bytecode_invoke(mh, bci).result_type(); |
1 | 335 |
// since the cache entry might not be initialized: |
336 |
// (NOT needed for the old calling convension) |
|
337 |
if (!is_top_frame) { |
|
338 |
int index = Bytes::get_native_u2(bcp+1); |
|
339 |
method->constants()->cache()->entry_at(index)->set_parameter_size(callee_parameters); |
|
340 |
} |
|
341 |
break; |
|
342 |
} |
|
343 |
||
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
344 |
case Bytecodes::_invokedynamic: { |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
345 |
Thread *thread = Thread::current(); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
346 |
ResourceMark rm(thread); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
347 |
methodHandle mh(thread, method); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7913
diff
changeset
|
348 |
type = Bytecode_invoke(mh, bci).result_type(); |
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
349 |
// since the cache entry might not be initialized: |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
350 |
// (NOT needed for the old calling convension) |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
351 |
if (!is_top_frame) { |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
352 |
int index = Bytes::get_native_u4(bcp+1); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
353 |
method->constants()->invokedynamic_cp_cache_entry_at(index)->set_parameter_size(callee_parameters); |
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
354 |
} |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
355 |
break; |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
356 |
} |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
357 |
|
1 | 358 |
case Bytecodes::_ldc : |
359 |
case Bytecodes::_ldc_w : // fall through |
|
360 |
case Bytecodes::_ldc2_w: |
|
5882 | 361 |
{ |
362 |
Thread *thread = Thread::current(); |
|
363 |
ResourceMark rm(thread); |
|
364 |
methodHandle mh(thread, method); |
|
7913 | 365 |
type = Bytecode_loadconstant(mh, bci).result_type(); |
5882 | 366 |
break; |
367 |
} |
|
1 | 368 |
|
369 |
default: |
|
370 |
type = Bytecodes::result_type(code); |
|
371 |
break; |
|
372 |
} |
|
373 |
||
374 |
// return entry point for computed continuation state & bytecode length |
|
375 |
return |
|
376 |
is_top_frame |
|
377 |
? Interpreter::deopt_entry (as_TosState(type), length) |
|
378 |
: Interpreter::return_entry(as_TosState(type), length); |
|
379 |
} |
|
380 |
||
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
381 |
// If deoptimization happens, this function returns the point where the interpreter reexecutes |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
382 |
// the bytecode. |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
383 |
// Note: Bytecodes::_athrow is a special case in that it does not return |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
384 |
// Interpreter::deopt_entry(vtos, 0) like others |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
385 |
address AbstractInterpreter::deopt_reexecute_entry(Method* method, address bcp) { |
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
386 |
assert(method->contains(bcp), "just checkin'"); |
7913 | 387 |
Bytecodes::Code code = Bytecodes::java_code_at(method, bcp); |
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
388 |
#ifdef COMPILER1 |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
389 |
if(code == Bytecodes::_athrow ) { |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
390 |
return Interpreter::rethrow_exception_entry(); |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
391 |
} |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
392 |
#endif /* COMPILER1 */ |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
393 |
return Interpreter::deopt_entry(vtos, 0); |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
394 |
} |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
395 |
|
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
396 |
// If deoptimization happens, the interpreter should reexecute these bytecodes. |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
397 |
// This function mainly helps the compilers to set up the reexecute bit. |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
398 |
bool AbstractInterpreter::bytecode_should_reexecute(Bytecodes::Code code) { |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
399 |
switch (code) { |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
400 |
case Bytecodes::_lookupswitch: |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
401 |
case Bytecodes::_tableswitch: |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
402 |
case Bytecodes::_fast_binaryswitch: |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
403 |
case Bytecodes::_fast_linearswitch: |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
404 |
// recompute condtional expression folded into _if<cond> |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
405 |
case Bytecodes::_lcmp : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
406 |
case Bytecodes::_fcmpl : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
407 |
case Bytecodes::_fcmpg : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
408 |
case Bytecodes::_dcmpl : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
409 |
case Bytecodes::_dcmpg : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
410 |
case Bytecodes::_ifnull : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
411 |
case Bytecodes::_ifnonnull : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
412 |
case Bytecodes::_goto : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
413 |
case Bytecodes::_goto_w : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
414 |
case Bytecodes::_ifeq : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
415 |
case Bytecodes::_ifne : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
416 |
case Bytecodes::_iflt : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
417 |
case Bytecodes::_ifge : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
418 |
case Bytecodes::_ifgt : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
419 |
case Bytecodes::_ifle : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
420 |
case Bytecodes::_if_icmpeq : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
421 |
case Bytecodes::_if_icmpne : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
422 |
case Bytecodes::_if_icmplt : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
423 |
case Bytecodes::_if_icmpge : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
424 |
case Bytecodes::_if_icmpgt : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
425 |
case Bytecodes::_if_icmple : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
426 |
case Bytecodes::_if_acmpeq : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
427 |
case Bytecodes::_if_acmpne : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
428 |
// special cases |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
429 |
case Bytecodes::_getfield : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
430 |
case Bytecodes::_putfield : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
431 |
case Bytecodes::_getstatic : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
432 |
case Bytecodes::_putstatic : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
433 |
case Bytecodes::_aastore : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
434 |
#ifdef COMPILER1 |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
435 |
//special case of reexecution |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
436 |
case Bytecodes::_athrow : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
437 |
#endif |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
438 |
return true; |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
439 |
|
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
440 |
default: |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
441 |
return false; |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
442 |
} |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
443 |
} |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
444 |
|
1 | 445 |
void AbstractInterpreterGenerator::bang_stack_shadow_pages(bool native_call) { |
446 |
// Quick & dirty stack overflow checking: bang the stack & handle trap. |
|
447 |
// Note that we do the banging after the frame is setup, since the exception |
|
448 |
// handling code expects to find a valid interpreter frame on the stack. |
|
449 |
// Doing the banging earlier fails if the caller frame is not an interpreter |
|
450 |
// frame. |
|
451 |
// (Also, the exception throwing code expects to unlock any synchronized |
|
452 |
// method receiever, so do the banging after locking the receiver.) |
|
453 |
||
454 |
// Bang each page in the shadow zone. We can't assume it's been done for |
|
455 |
// an interpreter frame with greater than a page of locals, so each page |
|
456 |
// needs to be checked. Only true for non-native. |
|
457 |
if (UseStackBanging) { |
|
458 |
const int start_page = native_call ? StackShadowPages : 1; |
|
459 |
const int page_size = os::vm_page_size(); |
|
460 |
for (int pages = start_page; pages <= StackShadowPages ; pages++) { |
|
461 |
__ bang_stack_with_offset(pages*page_size); |
|
462 |
} |
|
463 |
} |
|
464 |
} |