author | jrose |
Wed, 09 Jun 2010 18:50:45 -0700 | |
changeset 5882 | 6b2aecc4f7d8 |
parent 5702 | 201c5cde25bb |
child 5924 | dc9d04930c82 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
5702 | 2 |
* Copyright (c) 1997, 2010, 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 |
||
25 |
#include "incls/_precompiled.incl" |
|
26 |
#include "incls/_interpreter.cpp.incl" |
|
27 |
||
28 |
# define __ _masm-> |
|
29 |
||
30 |
||
31 |
//------------------------------------------------------------------------------------------------------------------------ |
|
32 |
// Implementation of InterpreterCodelet |
|
33 |
||
34 |
void InterpreterCodelet::initialize(const char* description, Bytecodes::Code bytecode) { |
|
35 |
_description = description; |
|
36 |
_bytecode = bytecode; |
|
37 |
} |
|
38 |
||
39 |
||
40 |
void InterpreterCodelet::verify() { |
|
41 |
} |
|
42 |
||
43 |
||
44 |
void InterpreterCodelet::print() { |
|
45 |
if (PrintInterpreter) { |
|
46 |
tty->cr(); |
|
47 |
tty->print_cr("----------------------------------------------------------------------"); |
|
48 |
} |
|
49 |
||
50 |
if (description() != NULL) tty->print("%s ", description()); |
|
51 |
if (bytecode() >= 0 ) tty->print("%d %s ", bytecode(), Bytecodes::name(bytecode())); |
|
52 |
tty->print_cr("[" INTPTR_FORMAT ", " INTPTR_FORMAT "] %d bytes", |
|
53 |
code_begin(), code_end(), code_size()); |
|
54 |
||
55 |
if (PrintInterpreter) { |
|
56 |
tty->cr(); |
|
57 |
Disassembler::decode(code_begin(), code_end(), tty); |
|
58 |
} |
|
59 |
} |
|
60 |
||
61 |
||
62 |
//------------------------------------------------------------------------------------------------------------------------ |
|
63 |
// Implementation of platform independent aspects of Interpreter |
|
64 |
||
65 |
void AbstractInterpreter::initialize() { |
|
66 |
if (_code != NULL) return; |
|
67 |
||
68 |
// make sure 'imported' classes are initialized |
|
69 |
if (CountBytecodes || TraceBytecodes || StopInterpreterAt) BytecodeCounter::reset(); |
|
70 |
if (PrintBytecodeHistogram) BytecodeHistogram::reset(); |
|
71 |
if (PrintBytecodePairHistogram) BytecodePairHistogram::reset(); |
|
72 |
||
73 |
InvocationCounter::reinitialize(DelayCompilationDuringStartup); |
|
74 |
||
75 |
} |
|
76 |
||
77 |
void AbstractInterpreter::print() { |
|
78 |
tty->cr(); |
|
79 |
tty->print_cr("----------------------------------------------------------------------"); |
|
80 |
tty->print_cr("Interpreter"); |
|
81 |
tty->cr(); |
|
82 |
tty->print_cr("code size = %6dK bytes", (int)_code->used_space()/1024); |
|
83 |
tty->print_cr("total space = %6dK bytes", (int)_code->total_space()/1024); |
|
84 |
tty->print_cr("wasted space = %6dK bytes", (int)_code->available_space()/1024); |
|
85 |
tty->cr(); |
|
86 |
tty->print_cr("# of codelets = %6d" , _code->number_of_stubs()); |
|
87 |
tty->print_cr("avg codelet size = %6d bytes", _code->used_space() / _code->number_of_stubs()); |
|
88 |
tty->cr(); |
|
89 |
_code->print(); |
|
90 |
tty->print_cr("----------------------------------------------------------------------"); |
|
91 |
tty->cr(); |
|
92 |
} |
|
93 |
||
94 |
||
95 |
void interpreter_init() { |
|
96 |
Interpreter::initialize(); |
|
97 |
#ifndef PRODUCT |
|
98 |
if (TraceBytecodes) BytecodeTracer::set_closure(BytecodeTracer::std_closure()); |
|
99 |
#endif // PRODUCT |
|
100 |
// need to hit every safepoint in order to call zapping routine |
|
101 |
// register the interpreter |
|
102 |
VTune::register_stub( |
|
103 |
"Interpreter", |
|
104 |
AbstractInterpreter::code()->code_start(), |
|
105 |
AbstractInterpreter::code()->code_end() |
|
106 |
); |
|
107 |
Forte::register_stub( |
|
108 |
"Interpreter", |
|
109 |
AbstractInterpreter::code()->code_start(), |
|
110 |
AbstractInterpreter::code()->code_end() |
|
111 |
); |
|
112 |
||
113 |
// notify JVMTI profiler |
|
114 |
if (JvmtiExport::should_post_dynamic_code_generated()) { |
|
115 |
JvmtiExport::post_dynamic_code_generated("Interpreter", |
|
116 |
AbstractInterpreter::code()->code_start(), |
|
117 |
AbstractInterpreter::code()->code_end()); |
|
118 |
} |
|
119 |
} |
|
120 |
||
121 |
//------------------------------------------------------------------------------------------------------------------------ |
|
122 |
// Implementation of interpreter |
|
123 |
||
124 |
StubQueue* AbstractInterpreter::_code = NULL; |
|
125 |
bool AbstractInterpreter::_notice_safepoints = false; |
|
126 |
address AbstractInterpreter::_rethrow_exception_entry = NULL; |
|
127 |
||
128 |
address AbstractInterpreter::_native_entry_begin = NULL; |
|
129 |
address AbstractInterpreter::_native_entry_end = NULL; |
|
130 |
address AbstractInterpreter::_slow_signature_handler; |
|
131 |
address AbstractInterpreter::_entry_table [AbstractInterpreter::number_of_method_entries]; |
|
132 |
address AbstractInterpreter::_native_abi_to_tosca [AbstractInterpreter::number_of_result_handlers]; |
|
133 |
||
134 |
//------------------------------------------------------------------------------------------------------------------------ |
|
135 |
// Generation of complete interpreter |
|
136 |
||
137 |
AbstractInterpreterGenerator::AbstractInterpreterGenerator(StubQueue* _code) { |
|
138 |
_masm = NULL; |
|
139 |
} |
|
140 |
||
141 |
||
142 |
static const BasicType types[Interpreter::number_of_result_handlers] = { |
|
143 |
T_BOOLEAN, |
|
144 |
T_CHAR , |
|
145 |
T_BYTE , |
|
146 |
T_SHORT , |
|
147 |
T_INT , |
|
148 |
T_LONG , |
|
149 |
T_VOID , |
|
150 |
T_FLOAT , |
|
151 |
T_DOUBLE , |
|
152 |
T_OBJECT |
|
153 |
}; |
|
154 |
||
155 |
void AbstractInterpreterGenerator::generate_all() { |
|
156 |
||
157 |
||
158 |
{ CodeletMark cm(_masm, "slow signature handler"); |
|
159 |
Interpreter::_slow_signature_handler = generate_slow_signature_handler(); |
|
160 |
} |
|
161 |
||
162 |
} |
|
163 |
||
164 |
//------------------------------------------------------------------------------------------------------------------------ |
|
165 |
// Entry points |
|
166 |
||
167 |
AbstractInterpreter::MethodKind AbstractInterpreter::method_kind(methodHandle m) { |
|
168 |
// Abstract method? |
|
169 |
if (m->is_abstract()) return abstract; |
|
170 |
||
2534 | 171 |
// Invoker for method handles? |
172 |
if (m->is_method_handle_invoke()) return method_handle; |
|
173 |
||
1 | 174 |
// Native method? |
175 |
// Note: This test must come _before_ the test for intrinsic |
|
176 |
// methods. See also comments below. |
|
177 |
if (m->is_native()) { |
|
2534 | 178 |
assert(!m->is_method_handle_invoke(), "overlapping bits here, watch out"); |
1 | 179 |
return m->is_synchronized() ? native_synchronized : native; |
180 |
} |
|
181 |
||
182 |
// Synchronized? |
|
183 |
if (m->is_synchronized()) { |
|
184 |
return zerolocals_synchronized; |
|
185 |
} |
|
186 |
||
187 |
if (RegisterFinalizersAtInit && m->code_size() == 1 && |
|
188 |
m->intrinsic_id() == vmIntrinsics::_Object_init) { |
|
189 |
// We need to execute the special return bytecode to check for |
|
190 |
// finalizer registration so create a normal frame. |
|
191 |
return zerolocals; |
|
192 |
} |
|
193 |
||
194 |
// Empty method? |
|
195 |
if (m->is_empty_method()) { |
|
196 |
return empty; |
|
197 |
} |
|
198 |
||
199 |
// Accessor method? |
|
200 |
if (m->is_accessor()) { |
|
201 |
assert(m->size_of_parameters() == 1, "fast code for accessors assumes parameter size = 1"); |
|
202 |
return accessor; |
|
203 |
} |
|
204 |
||
205 |
// Special intrinsic method? |
|
206 |
// Note: This test must come _after_ the test for native methods, |
|
207 |
// otherwise we will run into problems with JDK 1.2, see also |
|
208 |
// AbstractInterpreterGenerator::generate_method_entry() for |
|
209 |
// for details. |
|
210 |
switch (m->intrinsic_id()) { |
|
211 |
case vmIntrinsics::_dsin : return java_lang_math_sin ; |
|
212 |
case vmIntrinsics::_dcos : return java_lang_math_cos ; |
|
213 |
case vmIntrinsics::_dtan : return java_lang_math_tan ; |
|
214 |
case vmIntrinsics::_dabs : return java_lang_math_abs ; |
|
215 |
case vmIntrinsics::_dsqrt : return java_lang_math_sqrt ; |
|
216 |
case vmIntrinsics::_dlog : return java_lang_math_log ; |
|
217 |
case vmIntrinsics::_dlog10: return java_lang_math_log10; |
|
218 |
} |
|
219 |
||
220 |
// Note: for now: zero locals for all non-empty methods |
|
221 |
return zerolocals; |
|
222 |
} |
|
223 |
||
224 |
||
225 |
// Return true if the interpreter can prove that the given bytecode has |
|
226 |
// not yet been executed (in Java semantics, not in actual operation). |
|
227 |
bool AbstractInterpreter::is_not_reached(methodHandle method, int bci) { |
|
228 |
address bcp = method->bcp_from(bci); |
|
5688 | 229 |
Bytecodes::Code code = Bytecodes::code_at(bcp, method()); |
1 | 230 |
|
5688 | 231 |
if (!Bytecode_at(bcp)->must_rewrite(code)) { |
1 | 232 |
// might have been reached |
233 |
return false; |
|
234 |
} |
|
235 |
||
236 |
// the bytecode might not be rewritten if the method is an accessor, etc. |
|
237 |
address ientry = method->interpreter_entry(); |
|
238 |
if (ientry != entry_for_kind(AbstractInterpreter::zerolocals) && |
|
239 |
ientry != entry_for_kind(AbstractInterpreter::zerolocals_synchronized)) |
|
240 |
return false; // interpreter does not run this method! |
|
241 |
||
242 |
// otherwise, we can be sure this bytecode has never been executed |
|
243 |
return true; |
|
244 |
} |
|
245 |
||
246 |
||
247 |
#ifndef PRODUCT |
|
248 |
void AbstractInterpreter::print_method_kind(MethodKind kind) { |
|
249 |
switch (kind) { |
|
250 |
case zerolocals : tty->print("zerolocals" ); break; |
|
251 |
case zerolocals_synchronized: tty->print("zerolocals_synchronized"); break; |
|
252 |
case native : tty->print("native" ); break; |
|
253 |
case native_synchronized : tty->print("native_synchronized" ); break; |
|
254 |
case empty : tty->print("empty" ); break; |
|
255 |
case accessor : tty->print("accessor" ); break; |
|
256 |
case abstract : tty->print("abstract" ); break; |
|
2534 | 257 |
case method_handle : tty->print("method_handle" ); break; |
1 | 258 |
case java_lang_math_sin : tty->print("java_lang_math_sin" ); break; |
259 |
case java_lang_math_cos : tty->print("java_lang_math_cos" ); break; |
|
260 |
case java_lang_math_tan : tty->print("java_lang_math_tan" ); break; |
|
261 |
case java_lang_math_abs : tty->print("java_lang_math_abs" ); break; |
|
262 |
case java_lang_math_sqrt : tty->print("java_lang_math_sqrt" ); break; |
|
263 |
case java_lang_math_log : tty->print("java_lang_math_log" ); break; |
|
264 |
case java_lang_math_log10 : tty->print("java_lang_math_log10" ); break; |
|
265 |
default : ShouldNotReachHere(); |
|
266 |
} |
|
267 |
} |
|
268 |
#endif // PRODUCT |
|
269 |
||
270 |
||
271 |
//------------------------------------------------------------------------------------------------------------------------ |
|
272 |
// Deoptimization support |
|
273 |
||
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
274 |
// If deoptimization happens, this function returns the point of next bytecode to continue execution |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
275 |
address AbstractInterpreter::deopt_continue_after_entry(methodOop method, address bcp, int callee_parameters, bool is_top_frame) { |
1 | 276 |
assert(method->contains(bcp), "just checkin'"); |
277 |
Bytecodes::Code code = Bytecodes::java_code_at(bcp); |
|
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
278 |
assert(!Interpreter::bytecode_should_reexecute(code), "should not reexecute"); |
1 | 279 |
int bci = method->bci_from(bcp); |
280 |
int length = -1; // initial value for debugging |
|
281 |
// compute continuation length |
|
282 |
length = Bytecodes::length_at(bcp); |
|
283 |
// compute result type |
|
284 |
BasicType type = T_ILLEGAL; |
|
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
285 |
|
1 | 286 |
switch (code) { |
287 |
case Bytecodes::_invokevirtual : |
|
288 |
case Bytecodes::_invokespecial : |
|
289 |
case Bytecodes::_invokestatic : |
|
290 |
case Bytecodes::_invokeinterface: { |
|
291 |
Thread *thread = Thread::current(); |
|
292 |
ResourceMark rm(thread); |
|
293 |
methodHandle mh(thread, method); |
|
294 |
type = Bytecode_invoke_at(mh, bci)->result_type(thread); |
|
295 |
// since the cache entry might not be initialized: |
|
296 |
// (NOT needed for the old calling convension) |
|
297 |
if (!is_top_frame) { |
|
298 |
int index = Bytes::get_native_u2(bcp+1); |
|
299 |
method->constants()->cache()->entry_at(index)->set_parameter_size(callee_parameters); |
|
300 |
} |
|
301 |
break; |
|
302 |
} |
|
303 |
||
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
304 |
case Bytecodes::_invokedynamic: { |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
305 |
Thread *thread = Thread::current(); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
306 |
ResourceMark rm(thread); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
307 |
methodHandle mh(thread, method); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
308 |
type = Bytecode_invoke_at(mh, bci)->result_type(thread); |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
309 |
// since the cache entry might not be initialized: |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
310 |
// (NOT needed for the old calling convension) |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
311 |
if (!is_top_frame) { |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
312 |
int index = Bytes::get_native_u4(bcp+1); |
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
4429
diff
changeset
|
313 |
method->constants()->cache()->secondary_entry_at(index)->set_parameter_size(callee_parameters); |
4429
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
314 |
} |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
315 |
break; |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
316 |
} |
d7eb4e2099aa
6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents:
3600
diff
changeset
|
317 |
|
1 | 318 |
case Bytecodes::_ldc : |
319 |
case Bytecodes::_ldc_w : // fall through |
|
320 |
case Bytecodes::_ldc2_w: |
|
5882 | 321 |
{ |
322 |
Thread *thread = Thread::current(); |
|
323 |
ResourceMark rm(thread); |
|
324 |
methodHandle mh(thread, method); |
|
325 |
type = Bytecode_loadconstant_at(mh, bci)->result_type(); |
|
326 |
break; |
|
327 |
} |
|
1 | 328 |
|
329 |
default: |
|
330 |
type = Bytecodes::result_type(code); |
|
331 |
break; |
|
332 |
} |
|
333 |
||
334 |
// return entry point for computed continuation state & bytecode length |
|
335 |
return |
|
336 |
is_top_frame |
|
337 |
? Interpreter::deopt_entry (as_TosState(type), length) |
|
338 |
: Interpreter::return_entry(as_TosState(type), length); |
|
339 |
} |
|
340 |
||
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
341 |
// 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
|
342 |
// the bytecode. |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
343 |
// 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
|
344 |
// Interpreter::deopt_entry(vtos, 0) like others |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
345 |
address AbstractInterpreter::deopt_reexecute_entry(methodOop method, address bcp) { |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
346 |
assert(method->contains(bcp), "just checkin'"); |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
347 |
Bytecodes::Code code = Bytecodes::java_code_at(bcp); |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
348 |
#ifdef COMPILER1 |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
349 |
if(code == Bytecodes::_athrow ) { |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
350 |
return Interpreter::rethrow_exception_entry(); |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
351 |
} |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
352 |
#endif /* COMPILER1 */ |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
353 |
return Interpreter::deopt_entry(vtos, 0); |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
354 |
} |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
355 |
|
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
356 |
// 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
|
357 |
// 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
|
358 |
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
|
359 |
switch (code) { |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
360 |
case Bytecodes::_lookupswitch: |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
361 |
case Bytecodes::_tableswitch: |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
362 |
case Bytecodes::_fast_binaryswitch: |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
363 |
case Bytecodes::_fast_linearswitch: |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
364 |
// recompute condtional expression folded into _if<cond> |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
365 |
case Bytecodes::_lcmp : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
366 |
case Bytecodes::_fcmpl : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
367 |
case Bytecodes::_fcmpg : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
368 |
case Bytecodes::_dcmpl : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
369 |
case Bytecodes::_dcmpg : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
370 |
case Bytecodes::_ifnull : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
371 |
case Bytecodes::_ifnonnull : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
372 |
case Bytecodes::_goto : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
373 |
case Bytecodes::_goto_w : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
374 |
case Bytecodes::_ifeq : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
375 |
case Bytecodes::_ifne : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
376 |
case Bytecodes::_iflt : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
377 |
case Bytecodes::_ifge : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
378 |
case Bytecodes::_ifgt : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
379 |
case Bytecodes::_ifle : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
380 |
case Bytecodes::_if_icmpeq : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
381 |
case Bytecodes::_if_icmpne : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
382 |
case Bytecodes::_if_icmplt : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
383 |
case Bytecodes::_if_icmpge : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
384 |
case Bytecodes::_if_icmpgt : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
385 |
case Bytecodes::_if_icmple : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
386 |
case Bytecodes::_if_acmpeq : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
387 |
case Bytecodes::_if_acmpne : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
388 |
// special cases |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
389 |
case Bytecodes::_getfield : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
390 |
case Bytecodes::_putfield : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
391 |
case Bytecodes::_getstatic : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
392 |
case Bytecodes::_putstatic : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
393 |
case Bytecodes::_aastore : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
394 |
#ifdef COMPILER1 |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
395 |
//special case of reexecution |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
396 |
case Bytecodes::_athrow : |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
397 |
#endif |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
398 |
return true; |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
399 |
|
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
400 |
default: |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
401 |
return false; |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
402 |
} |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
403 |
} |
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2534
diff
changeset
|
404 |
|
1 | 405 |
void AbstractInterpreterGenerator::bang_stack_shadow_pages(bool native_call) { |
406 |
// Quick & dirty stack overflow checking: bang the stack & handle trap. |
|
407 |
// Note that we do the banging after the frame is setup, since the exception |
|
408 |
// handling code expects to find a valid interpreter frame on the stack. |
|
409 |
// Doing the banging earlier fails if the caller frame is not an interpreter |
|
410 |
// frame. |
|
411 |
// (Also, the exception throwing code expects to unlock any synchronized |
|
412 |
// method receiever, so do the banging after locking the receiver.) |
|
413 |
||
414 |
// Bang each page in the shadow zone. We can't assume it's been done for |
|
415 |
// an interpreter frame with greater than a page of locals, so each page |
|
416 |
// needs to be checked. Only true for non-native. |
|
417 |
if (UseStackBanging) { |
|
418 |
const int start_page = native_call ? StackShadowPages : 1; |
|
419 |
const int page_size = os::vm_page_size(); |
|
420 |
for (int pages = start_page; pages <= StackShadowPages ; pages++) { |
|
421 |
__ bang_stack_with_offset(pages*page_size); |
|
422 |
} |
|
423 |
} |
|
424 |
} |