author | duke |
Wed, 05 Jul 2017 20:10:48 +0200 | |
changeset 27963 | 88d7c7c376e9 |
parent 25950 | b5c40ed1d349 |
child 28650 | 772aaab2582f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
25714
87fa6860b5ae
8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents:
24322
diff
changeset
|
2 |
* Copyright (c) 2003, 2014, 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:
5419
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5419
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:
5419
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
14626
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
13728
diff
changeset
|
26 |
#include "asm/macroAssembler.hpp" |
7397 | 27 |
#include "interpreter/bytecodeHistogram.hpp" |
28 |
#include "interpreter/interpreter.hpp" |
|
29 |
#include "interpreter/interpreterGenerator.hpp" |
|
30 |
#include "interpreter/interpreterRuntime.hpp" |
|
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
24322
diff
changeset
|
31 |
#include "interpreter/interp_masm.hpp" |
7397 | 32 |
#include "interpreter/templateTable.hpp" |
33 |
#include "oops/arrayOop.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
34 |
#include "oops/methodData.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
35 |
#include "oops/method.hpp" |
7397 | 36 |
#include "oops/oop.inline.hpp" |
37 |
#include "prims/jvmtiExport.hpp" |
|
38 |
#include "prims/jvmtiThreadState.hpp" |
|
39 |
#include "runtime/arguments.hpp" |
|
40 |
#include "runtime/deoptimization.hpp" |
|
41 |
#include "runtime/frame.inline.hpp" |
|
42 |
#include "runtime/sharedRuntime.hpp" |
|
43 |
#include "runtime/stubRoutines.hpp" |
|
44 |
#include "runtime/synchronizer.hpp" |
|
45 |
#include "runtime/timer.hpp" |
|
46 |
#include "runtime/vframeArray.hpp" |
|
47 |
#include "utilities/debug.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
14745
diff
changeset
|
48 |
#include "utilities/macros.hpp" |
1 | 49 |
|
50 |
#define __ _masm-> |
|
51 |
||
1066 | 52 |
#ifndef CC_INTERP |
53 |
||
1 | 54 |
const int method_offset = frame::interpreter_frame_method_offset * wordSize; |
25714
87fa6860b5ae
8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents:
24322
diff
changeset
|
55 |
const int bcp_offset = frame::interpreter_frame_bcp_offset * wordSize; |
1 | 56 |
const int locals_offset = frame::interpreter_frame_locals_offset * wordSize; |
57 |
||
58 |
//----------------------------------------------------------------------------- |
|
59 |
||
60 |
address TemplateInterpreterGenerator::generate_StackOverflowError_handler() { |
|
61 |
address entry = __ pc(); |
|
62 |
||
63 |
#ifdef ASSERT |
|
64 |
{ |
|
65 |
Label L; |
|
1066 | 66 |
__ lea(rax, Address(rbp, |
67 |
frame::interpreter_frame_monitor_block_top_offset * |
|
68 |
wordSize)); |
|
69 |
__ cmpptr(rax, rsp); // rax = maximal rsp for current rbp (stack |
|
70 |
// grows negative) |
|
1 | 71 |
__ jcc(Assembler::aboveEqual, L); // check if frame is complete |
72 |
__ stop ("interpreter frame not set up"); |
|
73 |
__ bind(L); |
|
74 |
} |
|
75 |
#endif // ASSERT |
|
76 |
// Restore bcp under the assumption that the current frame is still |
|
77 |
// interpreted |
|
78 |
__ restore_bcp(); |
|
79 |
||
80 |
// expression stack must be empty before entering the VM if an |
|
81 |
// exception happened |
|
82 |
__ empty_expression_stack(); |
|
83 |
// throw exception |
|
84 |
__ call_VM(noreg, |
|
85 |
CAST_FROM_FN_PTR(address, |
|
86 |
InterpreterRuntime::throw_StackOverflowError)); |
|
87 |
return entry; |
|
88 |
} |
|
89 |
||
90 |
address TemplateInterpreterGenerator::generate_ArrayIndexOutOfBounds_handler( |
|
91 |
const char* name) { |
|
92 |
address entry = __ pc(); |
|
93 |
// expression stack must be empty before entering the VM if an |
|
94 |
// exception happened |
|
95 |
__ empty_expression_stack(); |
|
96 |
// setup parameters |
|
97 |
// ??? convention: expect aberrant index in register ebx |
|
98 |
__ lea(c_rarg1, ExternalAddress((address)name)); |
|
99 |
__ call_VM(noreg, |
|
100 |
CAST_FROM_FN_PTR(address, |
|
101 |
InterpreterRuntime:: |
|
102 |
throw_ArrayIndexOutOfBoundsException), |
|
103 |
c_rarg1, rbx); |
|
104 |
return entry; |
|
105 |
} |
|
106 |
||
107 |
address TemplateInterpreterGenerator::generate_ClassCastException_handler() { |
|
108 |
address entry = __ pc(); |
|
109 |
||
110 |
// object is at TOS |
|
1066 | 111 |
__ pop(c_rarg1); |
1 | 112 |
|
113 |
// expression stack must be empty before entering the VM if an |
|
114 |
// exception happened |
|
115 |
__ empty_expression_stack(); |
|
116 |
||
117 |
__ call_VM(noreg, |
|
118 |
CAST_FROM_FN_PTR(address, |
|
119 |
InterpreterRuntime:: |
|
120 |
throw_ClassCastException), |
|
121 |
c_rarg1); |
|
122 |
return entry; |
|
123 |
} |
|
124 |
||
125 |
address TemplateInterpreterGenerator::generate_exception_handler_common( |
|
126 |
const char* name, const char* message, bool pass_oop) { |
|
127 |
assert(!pass_oop || message == NULL, "either oop or message but not both"); |
|
128 |
address entry = __ pc(); |
|
129 |
if (pass_oop) { |
|
130 |
// object is at TOS |
|
1066 | 131 |
__ pop(c_rarg2); |
1 | 132 |
} |
133 |
// expression stack must be empty before entering the VM if an |
|
134 |
// exception happened |
|
135 |
__ empty_expression_stack(); |
|
136 |
// setup parameters |
|
137 |
__ lea(c_rarg1, ExternalAddress((address)name)); |
|
138 |
if (pass_oop) { |
|
139 |
__ call_VM(rax, CAST_FROM_FN_PTR(address, |
|
140 |
InterpreterRuntime:: |
|
141 |
create_klass_exception), |
|
142 |
c_rarg1, c_rarg2); |
|
143 |
} else { |
|
144 |
// kind of lame ExternalAddress can't take NULL because |
|
145 |
// external_word_Relocation will assert. |
|
146 |
if (message != NULL) { |
|
147 |
__ lea(c_rarg2, ExternalAddress((address)message)); |
|
148 |
} else { |
|
149 |
__ movptr(c_rarg2, NULL_WORD); |
|
150 |
} |
|
151 |
__ call_VM(rax, |
|
152 |
CAST_FROM_FN_PTR(address, InterpreterRuntime::create_exception), |
|
153 |
c_rarg1, c_rarg2); |
|
154 |
} |
|
155 |
// throw exception |
|
156 |
__ jump(ExternalAddress(Interpreter::throw_exception_entry())); |
|
157 |
return entry; |
|
158 |
} |
|
159 |
||
160 |
||
161 |
address TemplateInterpreterGenerator::generate_continuation_for(TosState state) { |
|
162 |
address entry = __ pc(); |
|
163 |
// NULL last_sp until next java call |
|
1066 | 164 |
__ movptr(Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize), (int32_t)NULL_WORD); |
1 | 165 |
__ dispatch_next(state); |
166 |
return entry; |
|
167 |
} |
|
168 |
||
169 |
||
21198
dd647e8d1d72
8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents:
21095
diff
changeset
|
170 |
address TemplateInterpreterGenerator::generate_return_entry_for(TosState state, int step, size_t index_size) { |
1 | 171 |
address entry = __ pc(); |
172 |
||
173 |
// Restore stack bottom in case i2c adjusted stack |
|
1066 | 174 |
__ movptr(rsp, Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize)); |
1 | 175 |
// and NULL it as marker that esp is now tos until next java call |
1066 | 176 |
__ movptr(Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize), (int32_t)NULL_WORD); |
1 | 177 |
|
178 |
__ restore_bcp(); |
|
179 |
__ restore_locals(); |
|
1066 | 180 |
|
20709
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
19335
diff
changeset
|
181 |
if (state == atos) { |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
19335
diff
changeset
|
182 |
Register mdp = rbx; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
19335
diff
changeset
|
183 |
Register tmp = rcx; |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
19335
diff
changeset
|
184 |
__ profile_return_type(mdp, rax, tmp); |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
19335
diff
changeset
|
185 |
} |
034be898bf04
8026054: New type profiling points: type of return values at calls
roland
parents:
19335
diff
changeset
|
186 |
|
21198
dd647e8d1d72
8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents:
21095
diff
changeset
|
187 |
const Register cache = rbx; |
dd647e8d1d72
8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents:
21095
diff
changeset
|
188 |
const Register index = rcx; |
dd647e8d1d72
8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents:
21095
diff
changeset
|
189 |
__ get_cache_and_index_at_bcp(cache, index, 1, index_size); |
dd647e8d1d72
8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents:
21095
diff
changeset
|
190 |
|
dd647e8d1d72
8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents:
21095
diff
changeset
|
191 |
const Register flags = cache; |
dd647e8d1d72
8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents:
21095
diff
changeset
|
192 |
__ movl(flags, Address(cache, index, Address::times_ptr, ConstantPoolCache::base_offset() + ConstantPoolCacheEntry::flags_offset())); |
dd647e8d1d72
8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents:
21095
diff
changeset
|
193 |
__ andl(flags, ConstantPoolCacheEntry::parameter_size_mask); |
dd647e8d1d72
8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents:
21095
diff
changeset
|
194 |
__ lea(rsp, Address(rsp, flags, Interpreter::stackElementScale())); |
1 | 195 |
__ dispatch_next(state, step); |
4478 | 196 |
|
1 | 197 |
return entry; |
198 |
} |
|
199 |
||
200 |
||
201 |
address TemplateInterpreterGenerator::generate_deopt_entry_for(TosState state, |
|
202 |
int step) { |
|
203 |
address entry = __ pc(); |
|
204 |
// NULL last_sp until next java call |
|
1066 | 205 |
__ movptr(Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize), (int32_t)NULL_WORD); |
1 | 206 |
__ restore_bcp(); |
207 |
__ restore_locals(); |
|
208 |
// handle exceptions |
|
209 |
{ |
|
210 |
Label L; |
|
1066 | 211 |
__ cmpptr(Address(r15_thread, Thread::pending_exception_offset()), (int32_t) NULL_WORD); |
1 | 212 |
__ jcc(Assembler::zero, L); |
213 |
__ call_VM(noreg, |
|
214 |
CAST_FROM_FN_PTR(address, |
|
215 |
InterpreterRuntime::throw_pending_exception)); |
|
216 |
__ should_not_reach_here(); |
|
217 |
__ bind(L); |
|
218 |
} |
|
219 |
__ dispatch_next(state, step); |
|
220 |
return entry; |
|
221 |
} |
|
222 |
||
223 |
int AbstractInterpreter::BasicType_as_index(BasicType type) { |
|
224 |
int i = 0; |
|
225 |
switch (type) { |
|
226 |
case T_BOOLEAN: i = 0; break; |
|
227 |
case T_CHAR : i = 1; break; |
|
228 |
case T_BYTE : i = 2; break; |
|
229 |
case T_SHORT : i = 3; break; |
|
230 |
case T_INT : i = 4; break; |
|
231 |
case T_LONG : i = 5; break; |
|
232 |
case T_VOID : i = 6; break; |
|
233 |
case T_FLOAT : i = 7; break; |
|
234 |
case T_DOUBLE : i = 8; break; |
|
235 |
case T_OBJECT : i = 9; break; |
|
236 |
case T_ARRAY : i = 9; break; |
|
237 |
default : ShouldNotReachHere(); |
|
238 |
} |
|
239 |
assert(0 <= i && i < AbstractInterpreter::number_of_result_handlers, |
|
240 |
"index out of bounds"); |
|
241 |
return i; |
|
242 |
} |
|
243 |
||
244 |
||
245 |
address TemplateInterpreterGenerator::generate_result_handler_for( |
|
246 |
BasicType type) { |
|
247 |
address entry = __ pc(); |
|
248 |
switch (type) { |
|
249 |
case T_BOOLEAN: __ c2bool(rax); break; |
|
250 |
case T_CHAR : __ movzwl(rax, rax); break; |
|
251 |
case T_BYTE : __ sign_extend_byte(rax); break; |
|
252 |
case T_SHORT : __ sign_extend_short(rax); break; |
|
253 |
case T_INT : /* nothing to do */ break; |
|
254 |
case T_LONG : /* nothing to do */ break; |
|
255 |
case T_VOID : /* nothing to do */ break; |
|
256 |
case T_FLOAT : /* nothing to do */ break; |
|
257 |
case T_DOUBLE : /* nothing to do */ break; |
|
258 |
case T_OBJECT : |
|
259 |
// retrieve result from frame |
|
1066 | 260 |
__ movptr(rax, Address(rbp, frame::interpreter_frame_oop_temp_offset*wordSize)); |
1 | 261 |
// and verify it |
262 |
__ verify_oop(rax); |
|
263 |
break; |
|
264 |
default : ShouldNotReachHere(); |
|
265 |
} |
|
266 |
__ ret(0); // return from result handler |
|
267 |
return entry; |
|
268 |
} |
|
269 |
||
270 |
address TemplateInterpreterGenerator::generate_safept_entry_for( |
|
271 |
TosState state, |
|
272 |
address runtime_entry) { |
|
273 |
address entry = __ pc(); |
|
274 |
__ push(state); |
|
275 |
__ call_VM(noreg, runtime_entry); |
|
276 |
__ dispatch_via(vtos, Interpreter::_normal_table.table_for(vtos)); |
|
277 |
return entry; |
|
278 |
} |
|
279 |
||
280 |
||
281 |
||
282 |
// Helpers for commoning out cases in the various type of method entries. |
|
283 |
// |
|
284 |
||
285 |
||
286 |
// increment invocation count & check for overflow |
|
287 |
// |
|
288 |
// Note: checking for negative value instead of overflow |
|
289 |
// so we have a 'sticky' overflow test |
|
290 |
// |
|
291 |
// rbx: method |
|
292 |
// ecx: invocation counter |
|
293 |
// |
|
294 |
void InterpreterGenerator::generate_counter_incr( |
|
295 |
Label* overflow, |
|
296 |
Label* profile_method, |
|
297 |
Label* profile_method_continue) { |
|
17000
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
298 |
Label done; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
299 |
// Note: In tiered we increment either counters in Method* or in MDO depending if we're profiling or not. |
6453 | 300 |
if (TieredCompilation) { |
301 |
int increment = InvocationCounter::count_increment; |
|
302 |
int mask = ((1 << Tier0InvokeNotifyFreqLog) - 1) << InvocationCounter::count_shift; |
|
17000
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
303 |
Label no_mdo; |
6453 | 304 |
if (ProfileInterpreter) { |
305 |
// Are we profiling? |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
306 |
__ movptr(rax, Address(rbx, Method::method_data_offset())); |
6453 | 307 |
__ testptr(rax, rax); |
308 |
__ jccb(Assembler::zero, no_mdo); |
|
309 |
// Increment counter in the MDO |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
310 |
const Address mdo_invocation_counter(rax, in_bytes(MethodData::invocation_counter_offset()) + |
6453 | 311 |
in_bytes(InvocationCounter::counter_offset())); |
312 |
__ increment_mask_and_jump(mdo_invocation_counter, increment, mask, rcx, false, Assembler::zero, overflow); |
|
17037
34baf792b14d
8013041: guarantee(this->is8bit(imm8)) failed: Short forward jump exceeds 8-bit offset.
jiangli
parents:
17000
diff
changeset
|
313 |
__ jmp(done); |
6453 | 314 |
} |
315 |
__ bind(no_mdo); |
|
17000
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
316 |
// Increment counter in MethodCounters |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
317 |
const Address invocation_counter(rax, |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
318 |
MethodCounters::invocation_counter_offset() + |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
319 |
InvocationCounter::counter_offset()); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
320 |
__ get_method_counters(rbx, rax, done); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
321 |
__ increment_mask_and_jump(invocation_counter, increment, mask, rcx, |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
322 |
false, Assembler::zero, overflow); |
6453 | 323 |
__ bind(done); |
324 |
} else { |
|
17000
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
325 |
const Address backedge_counter(rax, |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
326 |
MethodCounters::backedge_counter_offset() + |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
327 |
InvocationCounter::counter_offset()); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
328 |
const Address invocation_counter(rax, |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
329 |
MethodCounters::invocation_counter_offset() + |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
330 |
InvocationCounter::counter_offset()); |
1 | 331 |
|
17000
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
332 |
__ get_method_counters(rbx, rax, done); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
333 |
|
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
334 |
if (ProfileInterpreter) { |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
335 |
__ incrementl(Address(rax, |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
336 |
MethodCounters::interpreter_invocation_counter_offset())); |
6453 | 337 |
} |
338 |
// Update standard invocation counters |
|
17000
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
339 |
__ movl(rcx, invocation_counter); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
340 |
__ incrementl(rcx, InvocationCounter::count_increment); |
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
341 |
__ movl(invocation_counter, rcx); // save invocation count |
1 | 342 |
|
17000
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
343 |
__ movl(rax, backedge_counter); // load backedge counter |
6453 | 344 |
__ andl(rax, InvocationCounter::count_mask_value); // mask out the status bits |
1 | 345 |
|
6453 | 346 |
__ addl(rcx, rax); // add both counters |
1 | 347 |
|
6453 | 348 |
// profile_method is non-null only for interpreted method so |
349 |
// profile_method != NULL == !native_call |
|
350 |
||
351 |
if (ProfileInterpreter && profile_method != NULL) { |
|
352 |
// Test to see if we should create a method data oop |
|
353 |
__ cmp32(rcx, ExternalAddress((address)&InvocationCounter::InterpreterProfileLimit)); |
|
354 |
__ jcc(Assembler::less, *profile_method_continue); |
|
1 | 355 |
|
6453 | 356 |
// if no method data exists, go to profile_method |
357 |
__ test_method_data_pointer(rax, *profile_method); |
|
358 |
} |
|
359 |
||
360 |
__ cmp32(rcx, ExternalAddress((address)&InvocationCounter::InterpreterInvocationLimit)); |
|
361 |
__ jcc(Assembler::aboveEqual, *overflow); |
|
17000
11bf92e571a2
8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents:
16624
diff
changeset
|
362 |
__ bind(done); |
1 | 363 |
} |
364 |
} |
|
365 |
||
366 |
void InterpreterGenerator::generate_counter_overflow(Label* do_continue) { |
|
367 |
||
368 |
// Asm interpreter on entry |
|
369 |
// r14 - locals |
|
370 |
// r13 - bcp |
|
371 |
// rbx - method |
|
372 |
// edx - cpool --- DOES NOT APPEAR TO BE TRUE |
|
373 |
// rbp - interpreter frame |
|
374 |
||
375 |
// On return (i.e. jump to entry_point) [ back to invocation of interpreter ] |
|
376 |
// Everything as it was on entry |
|
377 |
// rdx is not restored. Doesn't appear to really be set. |
|
378 |
||
379 |
// InterpreterRuntime::frequency_counter_overflow takes two |
|
380 |
// arguments, the first (thread) is passed by call_VM, the second |
|
381 |
// indicates if the counter overflow occurs at a backwards branch |
|
382 |
// (NULL bcp). We pass zero for it. The call returns the address |
|
383 |
// of the verified entry point for the method or NULL if the |
|
384 |
// compilation did not complete (either went background or bailed |
|
385 |
// out). |
|
386 |
__ movl(c_rarg1, 0); |
|
387 |
__ call_VM(noreg, |
|
388 |
CAST_FROM_FN_PTR(address, |
|
389 |
InterpreterRuntime::frequency_counter_overflow), |
|
390 |
c_rarg1); |
|
391 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
392 |
__ movptr(rbx, Address(rbp, method_offset)); // restore Method* |
1 | 393 |
// Preserve invariant that r13/r14 contain bcp/locals of sender frame |
394 |
// and jump to the interpreted entry. |
|
395 |
__ jmp(*do_continue, relocInfo::none); |
|
396 |
} |
|
397 |
||
398 |
// See if we've got enough room on the stack for locals plus overhead. |
|
399 |
// The expression stack grows down incrementally, so the normal guard |
|
400 |
// page mechanism will work for that. |
|
401 |
// |
|
402 |
// NOTE: Since the additional locals are also always pushed (wasn't |
|
25950
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
25717
diff
changeset
|
403 |
// obvious in generate_fixed_frame) so the guard should work for them |
1 | 404 |
// too. |
405 |
// |
|
406 |
// Args: |
|
407 |
// rdx: number of additional locals this frame needs (what we must check) |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
408 |
// rbx: Method* |
1 | 409 |
// |
410 |
// Kills: |
|
411 |
// rax |
|
412 |
void InterpreterGenerator::generate_stack_overflow_check(void) { |
|
413 |
||
25950
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
25717
diff
changeset
|
414 |
// monitor entry size: see picture of stack in frame_x86.hpp |
1 | 415 |
const int entry_size = frame::interpreter_frame_monitor_size() * wordSize; |
416 |
||
417 |
// total overhead size: entry_size + (saved rbp through expr stack |
|
418 |
// bottom). be sure to change this if you add/subtract anything |
|
419 |
// to/from the overhead area |
|
420 |
const int overhead_size = |
|
421 |
-(frame::interpreter_frame_initial_sp_offset * wordSize) + entry_size; |
|
422 |
||
423 |
const int page_size = os::vm_page_size(); |
|
424 |
||
425 |
Label after_frame_check; |
|
426 |
||
427 |
// see if the frame is greater than one page in size. If so, |
|
428 |
// then we need to verify there is enough stack space remaining |
|
429 |
// for the additional locals. |
|
5419 | 430 |
__ cmpl(rdx, (page_size - overhead_size) / Interpreter::stackElementSize); |
1 | 431 |
__ jcc(Assembler::belowEqual, after_frame_check); |
432 |
||
433 |
// compute rsp as if this were going to be the last frame on |
|
434 |
// the stack before the red zone |
|
435 |
||
436 |
const Address stack_base(r15_thread, Thread::stack_base_offset()); |
|
437 |
const Address stack_size(r15_thread, Thread::stack_size_offset()); |
|
438 |
||
439 |
// locals + overhead, in bytes |
|
1066 | 440 |
__ mov(rax, rdx); |
5419 | 441 |
__ shlptr(rax, Interpreter::logStackElementSize); // 2 slots per parameter. |
1066 | 442 |
__ addptr(rax, overhead_size); |
1 | 443 |
|
444 |
#ifdef ASSERT |
|
445 |
Label stack_base_okay, stack_size_okay; |
|
446 |
// verify that thread stack base is non-zero |
|
1066 | 447 |
__ cmpptr(stack_base, (int32_t)NULL_WORD); |
1 | 448 |
__ jcc(Assembler::notEqual, stack_base_okay); |
449 |
__ stop("stack base is zero"); |
|
450 |
__ bind(stack_base_okay); |
|
451 |
// verify that thread stack size is non-zero |
|
1066 | 452 |
__ cmpptr(stack_size, 0); |
1 | 453 |
__ jcc(Assembler::notEqual, stack_size_okay); |
454 |
__ stop("stack size is zero"); |
|
455 |
__ bind(stack_size_okay); |
|
456 |
#endif |
|
457 |
||
458 |
// Add stack base to locals and subtract stack size |
|
1066 | 459 |
__ addptr(rax, stack_base); |
460 |
__ subptr(rax, stack_size); |
|
1 | 461 |
|
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
4478
diff
changeset
|
462 |
// Use the maximum number of pages we might bang. |
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
4478
diff
changeset
|
463 |
const int max_pages = StackShadowPages > (StackRedPages+StackYellowPages) ? StackShadowPages : |
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
4478
diff
changeset
|
464 |
(StackRedPages+StackYellowPages); |
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
4478
diff
changeset
|
465 |
|
1 | 466 |
// add in the red and yellow zone sizes |
4564
55dfb20908d0
6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents:
4478
diff
changeset
|
467 |
__ addptr(rax, max_pages * page_size); |
1 | 468 |
|
469 |
// check against the current stack bottom |
|
1066 | 470 |
__ cmpptr(rsp, rax); |
1 | 471 |
__ jcc(Assembler::above, after_frame_check); |
472 |
||
11411 | 473 |
// Restore sender's sp as SP. This is necessary if the sender's |
474 |
// frame is an extended compiled frame (see gen_c2i_adapter()) |
|
475 |
// and safer anyway in case of JSR292 adaptations. |
|
476 |
||
477 |
__ pop(rax); // return address must be moved if SP is changed |
|
478 |
__ mov(rsp, r13); |
|
479 |
__ push(rax); |
|
480 |
||
481 |
// Note: the restored frame is not necessarily interpreted. |
|
482 |
// Use the shared runtime version of the StackOverflowError. |
|
483 |
assert(StubRoutines::throw_StackOverflowError_entry() != NULL, "stub not yet generated"); |
|
484 |
__ jump(ExternalAddress(StubRoutines::throw_StackOverflowError_entry())); |
|
1 | 485 |
|
486 |
// all done with frame size check |
|
487 |
__ bind(after_frame_check); |
|
488 |
} |
|
489 |
||
490 |
// Allocate monitor and lock method (asm interpreter) |
|
491 |
// |
|
492 |
// Args: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
493 |
// rbx: Method* |
1 | 494 |
// r14: locals |
495 |
// |
|
496 |
// Kills: |
|
497 |
// rax |
|
498 |
// c_rarg0, c_rarg1, c_rarg2, c_rarg3, ...(param regs) |
|
499 |
// rscratch1, rscratch2 (scratch regs) |
|
500 |
void InterpreterGenerator::lock_method(void) { |
|
501 |
// synchronize method |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
502 |
const Address access_flags(rbx, Method::access_flags_offset()); |
1 | 503 |
const Address monitor_block_top( |
504 |
rbp, |
|
505 |
frame::interpreter_frame_monitor_block_top_offset * wordSize); |
|
506 |
const int entry_size = frame::interpreter_frame_monitor_size() * wordSize; |
|
507 |
||
508 |
#ifdef ASSERT |
|
509 |
{ |
|
510 |
Label L; |
|
511 |
__ movl(rax, access_flags); |
|
512 |
__ testl(rax, JVM_ACC_SYNCHRONIZED); |
|
513 |
__ jcc(Assembler::notZero, L); |
|
514 |
__ stop("method doesn't need synchronization"); |
|
515 |
__ bind(L); |
|
516 |
} |
|
517 |
#endif // ASSERT |
|
518 |
||
519 |
// get synchronization object |
|
520 |
{ |
|
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10966
diff
changeset
|
521 |
const int mirror_offset = in_bytes(Klass::java_mirror_offset()); |
1 | 522 |
Label done; |
523 |
__ movl(rax, access_flags); |
|
524 |
__ testl(rax, JVM_ACC_STATIC); |
|
525 |
// get receiver (assume this is frequent case) |
|
1066 | 526 |
__ movptr(rax, Address(r14, Interpreter::local_offset_in_bytes(0))); |
1 | 527 |
__ jcc(Assembler::zero, done); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
528 |
__ movptr(rax, Address(rbx, Method::const_offset())); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
529 |
__ movptr(rax, Address(rax, ConstMethod::constants_offset())); |
1066 | 530 |
__ movptr(rax, Address(rax, |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
531 |
ConstantPool::pool_holder_offset_in_bytes())); |
1066 | 532 |
__ movptr(rax, Address(rax, mirror_offset)); |
1 | 533 |
|
534 |
#ifdef ASSERT |
|
535 |
{ |
|
536 |
Label L; |
|
1066 | 537 |
__ testptr(rax, rax); |
1 | 538 |
__ jcc(Assembler::notZero, L); |
539 |
__ stop("synchronization object is NULL"); |
|
540 |
__ bind(L); |
|
541 |
} |
|
542 |
#endif // ASSERT |
|
543 |
||
544 |
__ bind(done); |
|
545 |
} |
|
546 |
||
547 |
// add space for monitor & lock |
|
1066 | 548 |
__ subptr(rsp, entry_size); // add space for a monitor entry |
549 |
__ movptr(monitor_block_top, rsp); // set new monitor block top |
|
1 | 550 |
// store object |
1066 | 551 |
__ movptr(Address(rsp, BasicObjectLock::obj_offset_in_bytes()), rax); |
552 |
__ movptr(c_rarg1, rsp); // object address |
|
1 | 553 |
__ lock_object(c_rarg1); |
554 |
} |
|
555 |
||
556 |
// Generate a fixed interpreter frame. This is identical setup for |
|
557 |
// interpreted methods and for native methods hence the shared code. |
|
558 |
// |
|
559 |
// Args: |
|
560 |
// rax: return address |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
561 |
// rbx: Method* |
1 | 562 |
// r14: pointer to locals |
563 |
// r13: sender sp |
|
564 |
// rdx: cp cache |
|
565 |
void TemplateInterpreterGenerator::generate_fixed_frame(bool native_call) { |
|
566 |
// initialize fixed part of activation frame |
|
1066 | 567 |
__ push(rax); // save return address |
1 | 568 |
__ enter(); // save old & set new rbp |
1066 | 569 |
__ push(r13); // set sender sp |
570 |
__ push((int)NULL_WORD); // leave last_sp as null |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
571 |
__ movptr(r13, Address(rbx, Method::const_offset())); // get ConstMethod* |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
572 |
__ lea(r13, Address(r13, ConstMethod::codes_offset())); // get codebase |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
573 |
__ push(rbx); // save Method* |
1 | 574 |
if (ProfileInterpreter) { |
575 |
Label method_data_continue; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
576 |
__ movptr(rdx, Address(rbx, in_bytes(Method::method_data_offset()))); |
1066 | 577 |
__ testptr(rdx, rdx); |
1 | 578 |
__ jcc(Assembler::zero, method_data_continue); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
579 |
__ addptr(rdx, in_bytes(MethodData::data_offset())); |
1 | 580 |
__ bind(method_data_continue); |
1066 | 581 |
__ push(rdx); // set the mdp (method data pointer) |
1 | 582 |
} else { |
1066 | 583 |
__ push(0); |
1 | 584 |
} |
585 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
586 |
__ movptr(rdx, Address(rbx, Method::const_offset())); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
587 |
__ movptr(rdx, Address(rdx, ConstMethod::constants_offset())); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
588 |
__ movptr(rdx, Address(rdx, ConstantPool::cache_offset_in_bytes())); |
1066 | 589 |
__ push(rdx); // set constant pool cache |
590 |
__ push(r14); // set locals pointer |
|
1 | 591 |
if (native_call) { |
1066 | 592 |
__ push(0); // no bcp |
1 | 593 |
} else { |
1066 | 594 |
__ push(r13); // set bcp |
1 | 595 |
} |
1066 | 596 |
__ push(0); // reserve word for pointer to expression stack bottom |
597 |
__ movptr(Address(rsp, 0), rsp); // set expression stack bottom |
|
1 | 598 |
} |
599 |
||
600 |
// End of helpers |
|
601 |
||
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
602 |
// Method entry for java.lang.ref.Reference.get. |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
603 |
address InterpreterGenerator::generate_Reference_get_entry(void) { |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
14745
diff
changeset
|
604 |
#if INCLUDE_ALL_GCS |
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
605 |
// Code: _aload_0, _getfield, _areturn |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
606 |
// parameter size = 1 |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
607 |
// |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
608 |
// The code that gets generated by this routine is split into 2 parts: |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
609 |
// 1. The "intrinsified" code for G1 (or any SATB based GC), |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
610 |
// 2. The slow path - which is an expansion of the regular method entry. |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
611 |
// |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
612 |
// Notes:- |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
613 |
// * In the G1 code we do not check whether we need to block for |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
614 |
// a safepoint. If G1 is enabled then we must execute the specialized |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
615 |
// code for Reference.get (except when the Reference object is null) |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
616 |
// so that we can log the value in the referent field with an SATB |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
617 |
// update buffer. |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
618 |
// If the code for the getfield template is modified so that the |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
619 |
// G1 pre-barrier code is executed when the current method is |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
620 |
// Reference.get() then going through the normal method entry |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
621 |
// will be fine. |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
622 |
// * The G1 code can, however, check the receiver object (the instance |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
623 |
// of java.lang.Reference) and jump to the slow path if null. If the |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
624 |
// Reference object is null then we obviously cannot fetch the referent |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
625 |
// and so we don't need to call the G1 pre-barrier. Thus we can use the |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
626 |
// regular method entry code to generate the NPE. |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
627 |
// |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
628 |
// rbx: Method* |
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
629 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
630 |
// r13: senderSP must preserve for slow path, set SP to it on fast path |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
631 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
632 |
address entry = __ pc(); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
633 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
634 |
const int referent_offset = java_lang_ref_Reference::referent_offset; |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
635 |
guarantee(referent_offset > 0, "referent offset not initialized"); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
636 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
637 |
if (UseG1GC) { |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
638 |
Label slow_path; |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
639 |
// rbx: method |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
640 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
641 |
// Check if local 0 != NULL |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
642 |
// If the receiver is null then it is OK to jump to the slow path. |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
643 |
__ movptr(rax, Address(rsp, wordSize)); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
644 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
645 |
__ testptr(rax, rax); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
646 |
__ jcc(Assembler::zero, slow_path); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
647 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
648 |
// rax: local 0 |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
649 |
// rbx: method (but can be used as scratch now) |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
650 |
// rdx: scratch |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
651 |
// rdi: scratch |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
652 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
653 |
// Generate the G1 pre-barrier code to log the value of |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
654 |
// the referent field in an SATB buffer. |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
655 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
656 |
// Load the value of the referent field. |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
657 |
const Address field_address(rax, referent_offset); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
658 |
__ load_heap_oop(rax, field_address); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
659 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
660 |
// Generate the G1 pre-barrier code to log the value of |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
661 |
// the referent field in an SATB buffer. |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
662 |
__ g1_write_barrier_pre(noreg /* obj */, |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
663 |
rax /* pre_val */, |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
664 |
r15_thread /* thread */, |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
665 |
rbx /* tmp */, |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
666 |
true /* tosca_live */, |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
667 |
true /* expand_call */); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
668 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
669 |
// _areturn |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
670 |
__ pop(rdi); // get return address |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
671 |
__ mov(rsp, r13); // set sp to sender sp |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
672 |
__ jmp(rdi); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
673 |
__ ret(0); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
674 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
675 |
// generate a vanilla interpreter entry as the slow path |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
676 |
__ bind(slow_path); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
677 |
(void) generate_normal_entry(false); |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
678 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
679 |
return entry; |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
680 |
} |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
14745
diff
changeset
|
681 |
#endif // INCLUDE_ALL_GCS |
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
682 |
|
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
683 |
// If G1 is not enabled then attempt to go through the accessor entry point |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
684 |
// Reference.get is an accessor |
25950
b5c40ed1d349
8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents:
25717
diff
changeset
|
685 |
return generate_jump_to_normal_entry(); |
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
686 |
} |
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
687 |
|
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
688 |
/** |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
689 |
* Method entry for static native methods: |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
690 |
* int java.util.zip.CRC32.update(int crc, int b) |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
691 |
*/ |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
692 |
address InterpreterGenerator::generate_CRC32_update_entry() { |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
693 |
if (UseCRC32Intrinsics) { |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
694 |
address entry = __ pc(); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
695 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
696 |
// rbx,: Method* |
19329
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
697 |
// r13: senderSP must preserved for slow path, set SP to it on fast path |
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
698 |
// c_rarg0: scratch (rdi on non-Win64, rcx on Win64) |
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
699 |
// c_rarg1: scratch (rsi on non-Win64, rdx on Win64) |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
700 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
701 |
Label slow_path; |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
702 |
// If we need a safepoint check, generate full interpreter entry. |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
703 |
ExternalAddress state(SafepointSynchronize::address_of_state()); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
704 |
__ cmp32(ExternalAddress(SafepointSynchronize::address_of_state()), |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
705 |
SafepointSynchronize::_not_synchronized); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
706 |
__ jcc(Assembler::notEqual, slow_path); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
707 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
708 |
// We don't generate local frame and don't align stack because |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
709 |
// we call stub code and there is no safepoint on this path. |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
710 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
711 |
// Load parameters |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
712 |
const Register crc = rax; // crc |
19329
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
713 |
const Register val = c_rarg0; // source java byte value |
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
714 |
const Register tbl = c_rarg1; // scratch |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
715 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
716 |
// Arguments are reversed on java expression stack |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
717 |
__ movl(val, Address(rsp, wordSize)); // byte value |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
718 |
__ movl(crc, Address(rsp, 2*wordSize)); // Initial CRC |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
719 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
720 |
__ lea(tbl, ExternalAddress(StubRoutines::crc_table_addr())); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
721 |
__ notl(crc); // ~crc |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
722 |
__ update_byte_crc32(crc, val, tbl); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
723 |
__ notl(crc); // ~crc |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
724 |
// result in rax |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
725 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
726 |
// _areturn |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
727 |
__ pop(rdi); // get return address |
19329
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
728 |
__ mov(rsp, r13); // set sp to sender sp |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
729 |
__ jmp(rdi); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
730 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
731 |
// generate a vanilla native entry as the slow path |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
732 |
__ bind(slow_path); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
733 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
734 |
(void) generate_native_entry(false); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
735 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
736 |
return entry; |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
737 |
} |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
738 |
return generate_native_entry(false); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
739 |
} |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
740 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
741 |
/** |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
742 |
* Method entry for static native methods: |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
743 |
* int java.util.zip.CRC32.updateBytes(int crc, byte[] b, int off, int len) |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
744 |
* int java.util.zip.CRC32.updateByteBuffer(int crc, long buf, int off, int len) |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
745 |
*/ |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
746 |
address InterpreterGenerator::generate_CRC32_updateBytes_entry(AbstractInterpreter::MethodKind kind) { |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
747 |
if (UseCRC32Intrinsics) { |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
748 |
address entry = __ pc(); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
749 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
750 |
// rbx,: Method* |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
751 |
// r13: senderSP must preserved for slow path, set SP to it on fast path |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
752 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
753 |
Label slow_path; |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
754 |
// If we need a safepoint check, generate full interpreter entry. |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
755 |
ExternalAddress state(SafepointSynchronize::address_of_state()); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
756 |
__ cmp32(ExternalAddress(SafepointSynchronize::address_of_state()), |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
757 |
SafepointSynchronize::_not_synchronized); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
758 |
__ jcc(Assembler::notEqual, slow_path); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
759 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
760 |
// We don't generate local frame and don't align stack because |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
761 |
// we call stub code and there is no safepoint on this path. |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
762 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
763 |
// Load parameters |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
764 |
const Register crc = c_rarg0; // crc |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
765 |
const Register buf = c_rarg1; // source java byte array address |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
766 |
const Register len = c_rarg2; // length |
19329
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
767 |
const Register off = len; // offset (never overlaps with 'len') |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
768 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
769 |
// Arguments are reversed on java expression stack |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
770 |
// Calculate address of start element |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
771 |
if (kind == Interpreter::java_util_zip_CRC32_updateByteBuffer) { |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
772 |
__ movptr(buf, Address(rsp, 3*wordSize)); // long buf |
19329
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
773 |
__ movl2ptr(off, Address(rsp, 2*wordSize)); // offset |
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
774 |
__ addq(buf, off); // + offset |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
775 |
__ movl(crc, Address(rsp, 5*wordSize)); // Initial CRC |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
776 |
} else { |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
777 |
__ movptr(buf, Address(rsp, 3*wordSize)); // byte[] array |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
778 |
__ addptr(buf, arrayOopDesc::base_offset_in_bytes(T_BYTE)); // + header size |
19329
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
779 |
__ movl2ptr(off, Address(rsp, 2*wordSize)); // offset |
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
780 |
__ addq(buf, off); // + offset |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
781 |
__ movl(crc, Address(rsp, 4*wordSize)); // Initial CRC |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
782 |
} |
19329
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
783 |
// Can now load 'len' since we're finished with 'off' |
eccb1e520c66
8022441: Bad code generated for certain interpreted CRC intrinsics, 2 cases
bharadwaj
parents:
18507
diff
changeset
|
784 |
__ movl(len, Address(rsp, wordSize)); // Length |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
785 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
786 |
__ super_call_VM_leaf(CAST_FROM_FN_PTR(address, StubRoutines::updateBytesCRC32()), crc, buf, len); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
787 |
// result in rax |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
788 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
789 |
// _areturn |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
790 |
__ pop(rdi); // get return address |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
791 |
__ mov(rsp, r13); // set sp to sender sp |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
792 |
__ jmp(rdi); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
793 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
794 |
// generate a vanilla native entry as the slow path |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
795 |
__ bind(slow_path); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
796 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
797 |
(void) generate_native_entry(false); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
798 |
|
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
799 |
return entry; |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
800 |
} |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
801 |
return generate_native_entry(false); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
17875
diff
changeset
|
802 |
} |
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8315
diff
changeset
|
803 |
|
1 | 804 |
// Interpreter stub for calling a native method. (asm interpreter) |
805 |
// This sets up a somewhat different looking stack for calling the |
|
806 |
// native method than the typical interpreter frame setup. |
|
807 |
address InterpreterGenerator::generate_native_entry(bool synchronized) { |
|
808 |
// determine code generation flags |
|
809 |
bool inc_counter = UseCompiler || CountCompiledCalls; |
|
810 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
811 |
// rbx: Method* |
1 | 812 |
// r13: sender sp |
813 |
||
814 |
address entry_point = __ pc(); |
|
815 |
||
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
816 |
const Address constMethod (rbx, Method::const_offset()); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
817 |
const Address access_flags (rbx, Method::access_flags_offset()); |
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
818 |
const Address size_of_parameters(rcx, ConstMethod:: |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
819 |
size_of_parameters_offset()); |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
820 |
|
1 | 821 |
|
822 |
// get parameter size (always needed) |
|
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
823 |
__ movptr(rcx, constMethod); |
2148
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
824 |
__ load_unsigned_short(rcx, size_of_parameters); |
1 | 825 |
|
826 |
// native calls don't need the stack size check since they have no |
|
827 |
// expression stack and the arguments are already on the stack and |
|
828 |
// we only add a handful of words to the stack |
|
829 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
830 |
// rbx: Method* |
1 | 831 |
// rcx: size of parameters |
832 |
// r13: sender sp |
|
1066 | 833 |
__ pop(rax); // get return address |
1 | 834 |
|
835 |
// for natives the size of locals is zero |
|
836 |
||
837 |
// compute beginning of parameters (r14) |
|
1066 | 838 |
__ lea(r14, Address(rsp, rcx, Address::times_8, -wordSize)); |
1 | 839 |
|
840 |
// add 2 zero-initialized slots for native calls |
|
841 |
// initialize result_handler slot |
|
1066 | 842 |
__ push((int) NULL_WORD); |
1 | 843 |
// slot for oop temp |
844 |
// (static native method holder mirror/jni oop result) |
|
1066 | 845 |
__ push((int) NULL_WORD); |
1 | 846 |
|
847 |
// initialize fixed part of activation frame |
|
848 |
generate_fixed_frame(true); |
|
849 |
||
850 |
// make sure method is native & not abstract |
|
851 |
#ifdef ASSERT |
|
852 |
__ movl(rax, access_flags); |
|
853 |
{ |
|
854 |
Label L; |
|
855 |
__ testl(rax, JVM_ACC_NATIVE); |
|
856 |
__ jcc(Assembler::notZero, L); |
|
857 |
__ stop("tried to execute non-native method as native"); |
|
858 |
__ bind(L); |
|
859 |
} |
|
860 |
{ |
|
861 |
Label L; |
|
862 |
__ testl(rax, JVM_ACC_ABSTRACT); |
|
863 |
__ jcc(Assembler::zero, L); |
|
864 |
__ stop("tried to execute abstract method in interpreter"); |
|
865 |
__ bind(L); |
|
866 |
} |
|
867 |
#endif |
|
868 |
||
869 |
// Since at this point in the method invocation the exception handler |
|
870 |
// would try to exit the monitor of synchronized methods which hasn't |
|
871 |
// been entered yet, we set the thread local variable |
|
872 |
// _do_not_unlock_if_synchronized to true. The remove_activation will |
|
873 |
// check this flag. |
|
874 |
||
875 |
const Address do_not_unlock_if_synchronized(r15_thread, |
|
876 |
in_bytes(JavaThread::do_not_unlock_if_synchronized_offset())); |
|
877 |
__ movbool(do_not_unlock_if_synchronized, true); |
|
878 |
||
879 |
// increment invocation count & check for overflow |
|
880 |
Label invocation_counter_overflow; |
|
881 |
if (inc_counter) { |
|
882 |
generate_counter_incr(&invocation_counter_overflow, NULL, NULL); |
|
883 |
} |
|
884 |
||
885 |
Label continue_after_compile; |
|
886 |
__ bind(continue_after_compile); |
|
887 |
||
888 |
bang_stack_shadow_pages(true); |
|
889 |
||
890 |
// reset the _do_not_unlock_if_synchronized flag |
|
891 |
__ movbool(do_not_unlock_if_synchronized, false); |
|
892 |
||
893 |
// check for synchronized methods |
|
894 |
// Must happen AFTER invocation_counter check and stack overflow check, |
|
895 |
// so method is not locked if overflows. |
|
896 |
if (synchronized) { |
|
897 |
lock_method(); |
|
898 |
} else { |
|
899 |
// no synchronization necessary |
|
900 |
#ifdef ASSERT |
|
901 |
{ |
|
902 |
Label L; |
|
903 |
__ movl(rax, access_flags); |
|
904 |
__ testl(rax, JVM_ACC_SYNCHRONIZED); |
|
905 |
__ jcc(Assembler::zero, L); |
|
906 |
__ stop("method needs synchronization"); |
|
907 |
__ bind(L); |
|
908 |
} |
|
909 |
#endif |
|
910 |
} |
|
911 |
||
912 |
// start execution |
|
913 |
#ifdef ASSERT |
|
914 |
{ |
|
915 |
Label L; |
|
916 |
const Address monitor_block_top(rbp, |
|
917 |
frame::interpreter_frame_monitor_block_top_offset * wordSize); |
|
1066 | 918 |
__ movptr(rax, monitor_block_top); |
919 |
__ cmpptr(rax, rsp); |
|
1 | 920 |
__ jcc(Assembler::equal, L); |
921 |
__ stop("broken stack frame setup in interpreter"); |
|
922 |
__ bind(L); |
|
923 |
} |
|
924 |
#endif |
|
925 |
||
926 |
// jvmti support |
|
927 |
__ notify_method_entry(); |
|
928 |
||
929 |
// work registers |
|
930 |
const Register method = rbx; |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
931 |
const Register t = r11; |
1 | 932 |
|
933 |
// allocate space for parameters |
|
934 |
__ get_method(method); |
|
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
935 |
__ movptr(t, Address(method, Method::const_offset())); |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
936 |
__ load_unsigned_short(t, Address(t, ConstMethod::size_of_parameters_offset())); |
5419 | 937 |
__ shll(t, Interpreter::logStackElementSize); |
1 | 938 |
|
1066 | 939 |
__ subptr(rsp, t); |
940 |
__ subptr(rsp, frame::arg_reg_save_area_bytes); // windows |
|
2131 | 941 |
__ andptr(rsp, -16); // must be 16 byte boundary (see amd64 ABI) |
1 | 942 |
|
943 |
// get signature handler |
|
944 |
{ |
|
945 |
Label L; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
946 |
__ movptr(t, Address(method, Method::signature_handler_offset())); |
1066 | 947 |
__ testptr(t, t); |
1 | 948 |
__ jcc(Assembler::notZero, L); |
949 |
__ call_VM(noreg, |
|
950 |
CAST_FROM_FN_PTR(address, |
|
951 |
InterpreterRuntime::prepare_native_call), |
|
952 |
method); |
|
953 |
__ get_method(method); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
954 |
__ movptr(t, Address(method, Method::signature_handler_offset())); |
1 | 955 |
__ bind(L); |
956 |
} |
|
957 |
||
958 |
// call signature handler |
|
959 |
assert(InterpreterRuntime::SignatureHandlerGenerator::from() == r14, |
|
960 |
"adjust this code"); |
|
961 |
assert(InterpreterRuntime::SignatureHandlerGenerator::to() == rsp, |
|
962 |
"adjust this code"); |
|
963 |
assert(InterpreterRuntime::SignatureHandlerGenerator::temp() == rscratch1, |
|
964 |
"adjust this code"); |
|
965 |
||
966 |
// The generated handlers do not touch RBX (the method oop). |
|
967 |
// However, large signatures cannot be cached and are generated |
|
968 |
// each time here. The slow-path generator can do a GC on return, |
|
969 |
// so we must reload it after the call. |
|
970 |
__ call(t); |
|
971 |
__ get_method(method); // slow path can do a GC, reload RBX |
|
972 |
||
973 |
||
974 |
// result handler is in rax |
|
975 |
// set result handler |
|
1066 | 976 |
__ movptr(Address(rbp, |
977 |
(frame::interpreter_frame_result_handler_offset) * wordSize), |
|
978 |
rax); |
|
1 | 979 |
|
980 |
// pass mirror handle if static call |
|
981 |
{ |
|
982 |
Label L; |
|
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10966
diff
changeset
|
983 |
const int mirror_offset = in_bytes(Klass::java_mirror_offset()); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
984 |
__ movl(t, Address(method, Method::access_flags_offset())); |
1 | 985 |
__ testl(t, JVM_ACC_STATIC); |
986 |
__ jcc(Assembler::zero, L); |
|
987 |
// get mirror |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
988 |
__ movptr(t, Address(method, Method::const_offset())); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
989 |
__ movptr(t, Address(t, ConstMethod::constants_offset())); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
990 |
__ movptr(t, Address(t, ConstantPool::pool_holder_offset_in_bytes())); |
1066 | 991 |
__ movptr(t, Address(t, mirror_offset)); |
1 | 992 |
// copy mirror into activation frame |
1066 | 993 |
__ movptr(Address(rbp, frame::interpreter_frame_oop_temp_offset * wordSize), |
1 | 994 |
t); |
995 |
// pass handle to mirror |
|
1066 | 996 |
__ lea(c_rarg1, |
997 |
Address(rbp, frame::interpreter_frame_oop_temp_offset * wordSize)); |
|
1 | 998 |
__ bind(L); |
999 |
} |
|
1000 |
||
1001 |
// get native function entry point |
|
1002 |
{ |
|
1003 |
Label L; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1004 |
__ movptr(rax, Address(method, Method::native_function_offset())); |
1 | 1005 |
ExternalAddress unsatisfied(SharedRuntime::native_method_throw_unsatisfied_link_error_entry()); |
1006 |
__ movptr(rscratch2, unsatisfied.addr()); |
|
1066 | 1007 |
__ cmpptr(rax, rscratch2); |
1 | 1008 |
__ jcc(Assembler::notEqual, L); |
1009 |
__ call_VM(noreg, |
|
1010 |
CAST_FROM_FN_PTR(address, |
|
1011 |
InterpreterRuntime::prepare_native_call), |
|
1012 |
method); |
|
1013 |
__ get_method(method); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1014 |
__ movptr(rax, Address(method, Method::native_function_offset())); |
1 | 1015 |
__ bind(L); |
1016 |
} |
|
1017 |
||
1018 |
// pass JNIEnv |
|
1066 | 1019 |
__ lea(c_rarg0, Address(r15_thread, JavaThread::jni_environment_offset())); |
1 | 1020 |
|
1021 |
// It is enough that the pc() points into the right code |
|
1022 |
// segment. It does not have to be the correct return pc. |
|
1023 |
__ set_last_Java_frame(rsp, rbp, (address) __ pc()); |
|
1024 |
||
1025 |
// change thread state |
|
1026 |
#ifdef ASSERT |
|
1027 |
{ |
|
1028 |
Label L; |
|
1029 |
__ movl(t, Address(r15_thread, JavaThread::thread_state_offset())); |
|
1030 |
__ cmpl(t, _thread_in_Java); |
|
1031 |
__ jcc(Assembler::equal, L); |
|
1032 |
__ stop("Wrong thread state in native stub"); |
|
1033 |
__ bind(L); |
|
1034 |
} |
|
1035 |
#endif |
|
1036 |
||
1037 |
// Change state to native |
|
1038 |
||
1039 |
__ movl(Address(r15_thread, JavaThread::thread_state_offset()), |
|
1040 |
_thread_in_native); |
|
1041 |
||
1042 |
// Call the native method. |
|
1043 |
__ call(rax); |
|
1044 |
// result potentially in rax or xmm0 |
|
1045 |
||
16624
9dbd4b210bf9
8011102: Clear AVX registers after return from JNI call
kvn
parents:
15943
diff
changeset
|
1046 |
// Verify or restore cpu control state after JNI call |
9dbd4b210bf9
8011102: Clear AVX registers after return from JNI call
kvn
parents:
15943
diff
changeset
|
1047 |
__ restore_cpu_control_state_after_jni(); |
1 | 1048 |
|
1049 |
// NOTE: The order of these pushes is known to frame::interpreter_frame_result |
|
1050 |
// in order to extract the result of a method call. If the order of these |
|
1051 |
// pushes change or anything else is added to the stack then the code in |
|
1052 |
// interpreter_frame_result must also change. |
|
1053 |
||
1054 |
__ push(dtos); |
|
1055 |
__ push(ltos); |
|
1056 |
||
1057 |
// change thread state |
|
1058 |
__ movl(Address(r15_thread, JavaThread::thread_state_offset()), |
|
1059 |
_thread_in_native_trans); |
|
1060 |
||
1061 |
if (os::is_MP()) { |
|
1062 |
if (UseMembar) { |
|
1063 |
// Force this write out before the read below |
|
1064 |
__ membar(Assembler::Membar_mask_bits( |
|
1065 |
Assembler::LoadLoad | Assembler::LoadStore | |
|
1066 |
Assembler::StoreLoad | Assembler::StoreStore)); |
|
1067 |
} else { |
|
1068 |
// Write serialization page so VM thread can do a pseudo remote membar. |
|
1069 |
// We use the current thread pointer to calculate a thread specific |
|
1070 |
// offset to write to within the page. This minimizes bus traffic |
|
1071 |
// due to cache line collision. |
|
1072 |
__ serialize_memory(r15_thread, rscratch2); |
|
1073 |
} |
|
1074 |
} |
|
1075 |
||
1076 |
// check for safepoint operation in progress and/or pending suspend requests |
|
1077 |
{ |
|
1078 |
Label Continue; |
|
1079 |
__ cmp32(ExternalAddress(SafepointSynchronize::address_of_state()), |
|
1080 |
SafepointSynchronize::_not_synchronized); |
|
1081 |
||
1082 |
Label L; |
|
1083 |
__ jcc(Assembler::notEqual, L); |
|
1084 |
__ cmpl(Address(r15_thread, JavaThread::suspend_flags_offset()), 0); |
|
1085 |
__ jcc(Assembler::equal, Continue); |
|
1086 |
__ bind(L); |
|
1087 |
||
1088 |
// Don't use call_VM as it will see a possible pending exception |
|
1089 |
// and forward it and never return here preventing us from |
|
1090 |
// clearing _last_native_pc down below. Also can't use |
|
1091 |
// call_VM_leaf either as it will check to see if r13 & r14 are |
|
1092 |
// preserved and correspond to the bcp/locals pointers. So we do a |
|
1093 |
// runtime call by hand. |
|
1094 |
// |
|
1066 | 1095 |
__ mov(c_rarg0, r15_thread); |
7401
ebde7415b521
6780143: hs203t003 hits SIGSEGV/EXCEPTION_ACCESS_VIOLATION with -XX:+UseCompressedOops
coleenp
parents:
7397
diff
changeset
|
1096 |
__ mov(r12, rsp); // remember sp (can only use r12 if not using call_VM) |
1066 | 1097 |
__ subptr(rsp, frame::arg_reg_save_area_bytes); // windows |
1098 |
__ andptr(rsp, -16); // align stack as required by ABI |
|
1 | 1099 |
__ call(RuntimeAddress(CAST_FROM_FN_PTR(address, JavaThread::check_special_condition_for_native_trans))); |
1066 | 1100 |
__ mov(rsp, r12); // restore sp |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1101 |
__ reinit_heapbase(); |
1 | 1102 |
__ bind(Continue); |
1103 |
} |
|
1104 |
||
1105 |
// change thread state |
|
1106 |
__ movl(Address(r15_thread, JavaThread::thread_state_offset()), _thread_in_Java); |
|
1107 |
||
1108 |
// reset_last_Java_frame |
|
1109 |
__ reset_last_Java_frame(true, true); |
|
1110 |
||
1111 |
// reset handle block |
|
1066 | 1112 |
__ movptr(t, Address(r15_thread, JavaThread::active_handles_offset())); |
23844
0c29a324ae14
8039146: Fix 64-bit store to int JNIHandleBlock::_top
goetz
parents:
21198
diff
changeset
|
1113 |
__ movl(Address(t, JNIHandleBlock::top_offset_in_bytes()), (int32_t)NULL_WORD); |
1 | 1114 |
|
1115 |
// If result is an oop unbox and store it in frame where gc will see it |
|
1116 |
// and result handler will pick it up |
|
1117 |
||
1118 |
{ |
|
1119 |
Label no_oop, store_result; |
|
1120 |
__ lea(t, ExternalAddress(AbstractInterpreter::result_handler(T_OBJECT))); |
|
1066 | 1121 |
__ cmpptr(t, Address(rbp, frame::interpreter_frame_result_handler_offset*wordSize)); |
1 | 1122 |
__ jcc(Assembler::notEqual, no_oop); |
1123 |
// retrieve result |
|
1124 |
__ pop(ltos); |
|
1066 | 1125 |
__ testptr(rax, rax); |
1 | 1126 |
__ jcc(Assembler::zero, store_result); |
1066 | 1127 |
__ movptr(rax, Address(rax, 0)); |
1 | 1128 |
__ bind(store_result); |
1066 | 1129 |
__ movptr(Address(rbp, frame::interpreter_frame_oop_temp_offset*wordSize), rax); |
1 | 1130 |
// keep stack depth as expected by pushing oop which will eventually be discarde |
1131 |
__ push(ltos); |
|
1132 |
__ bind(no_oop); |
|
1133 |
} |
|
1134 |
||
1135 |
||
1136 |
{ |
|
1137 |
Label no_reguard; |
|
1138 |
__ cmpl(Address(r15_thread, JavaThread::stack_guard_state_offset()), |
|
1139 |
JavaThread::stack_guard_yellow_disabled); |
|
1140 |
__ jcc(Assembler::notEqual, no_reguard); |
|
1141 |
||
1066 | 1142 |
__ pusha(); // XXX only save smashed registers |
7401
ebde7415b521
6780143: hs203t003 hits SIGSEGV/EXCEPTION_ACCESS_VIOLATION with -XX:+UseCompressedOops
coleenp
parents:
7397
diff
changeset
|
1143 |
__ mov(r12, rsp); // remember sp (can only use r12 if not using call_VM) |
1066 | 1144 |
__ subptr(rsp, frame::arg_reg_save_area_bytes); // windows |
1145 |
__ andptr(rsp, -16); // align stack as required by ABI |
|
1 | 1146 |
__ call(RuntimeAddress(CAST_FROM_FN_PTR(address, SharedRuntime::reguard_yellow_pages))); |
1066 | 1147 |
__ mov(rsp, r12); // restore sp |
1148 |
__ popa(); // XXX only restore smashed registers |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1149 |
__ reinit_heapbase(); |
1 | 1150 |
|
1151 |
__ bind(no_reguard); |
|
1152 |
} |
|
1153 |
||
1154 |
||
1155 |
// The method register is junk from after the thread_in_native transition |
|
1156 |
// until here. Also can't call_VM until the bcp has been |
|
1157 |
// restored. Need bcp for throwing exception below so get it now. |
|
1158 |
__ get_method(method); |
|
1159 |
||
1160 |
// restore r13 to have legal interpreter frame, i.e., bci == 0 <=> |
|
1161 |
// r13 == code_base() |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1162 |
__ movptr(r13, Address(method, Method::const_offset())); // get ConstMethod* |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1163 |
__ lea(r13, Address(r13, ConstMethod::codes_offset())); // get codebase |
1 | 1164 |
// handle exceptions (exception handling will handle unlocking!) |
1165 |
{ |
|
1166 |
Label L; |
|
1066 | 1167 |
__ cmpptr(Address(r15_thread, Thread::pending_exception_offset()), (int32_t) NULL_WORD); |
1 | 1168 |
__ jcc(Assembler::zero, L); |
1169 |
// Note: At some point we may want to unify this with the code |
|
1170 |
// used in call_VM_base(); i.e., we should use the |
|
1171 |
// StubRoutines::forward_exception code. For now this doesn't work |
|
1172 |
// here because the rsp is not correctly set at this point. |
|
1173 |
__ MacroAssembler::call_VM(noreg, |
|
1174 |
CAST_FROM_FN_PTR(address, |
|
1175 |
InterpreterRuntime::throw_pending_exception)); |
|
1176 |
__ should_not_reach_here(); |
|
1177 |
__ bind(L); |
|
1178 |
} |
|
1179 |
||
1180 |
// do unlocking if necessary |
|
1181 |
{ |
|
1182 |
Label L; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1183 |
__ movl(t, Address(method, Method::access_flags_offset())); |
1 | 1184 |
__ testl(t, JVM_ACC_SYNCHRONIZED); |
1185 |
__ jcc(Assembler::zero, L); |
|
1186 |
// the code below should be shared with interpreter macro |
|
1187 |
// assembler implementation |
|
1188 |
{ |
|
1189 |
Label unlock; |
|
1190 |
// BasicObjectLock will be first in list, since this is a |
|
1191 |
// synchronized method. However, need to check that the object |
|
1192 |
// has not been unlocked by an explicit monitorexit bytecode. |
|
1193 |
const Address monitor(rbp, |
|
1194 |
(intptr_t)(frame::interpreter_frame_initial_sp_offset * |
|
1195 |
wordSize - sizeof(BasicObjectLock))); |
|
1196 |
||
1197 |
// monitor expect in c_rarg1 for slow unlock path |
|
1066 | 1198 |
__ lea(c_rarg1, monitor); // address of first monitor |
1 | 1199 |
|
1066 | 1200 |
__ movptr(t, Address(c_rarg1, BasicObjectLock::obj_offset_in_bytes())); |
1201 |
__ testptr(t, t); |
|
1 | 1202 |
__ jcc(Assembler::notZero, unlock); |
1203 |
||
1204 |
// Entry already unlocked, need to throw exception |
|
1205 |
__ MacroAssembler::call_VM(noreg, |
|
1206 |
CAST_FROM_FN_PTR(address, |
|
1207 |
InterpreterRuntime::throw_illegal_monitor_state_exception)); |
|
1208 |
__ should_not_reach_here(); |
|
1209 |
||
1210 |
__ bind(unlock); |
|
1211 |
__ unlock_object(c_rarg1); |
|
1212 |
} |
|
1213 |
__ bind(L); |
|
1214 |
} |
|
1215 |
||
1216 |
// jvmti support |
|
1217 |
// Note: This must happen _after_ handling/throwing any exceptions since |
|
1218 |
// the exception handler code notifies the runtime of method exits |
|
1219 |
// too. If this happens before, method entry/exit notifications are |
|
1220 |
// not properly paired (was bug - gri 11/22/99). |
|
1221 |
__ notify_method_exit(vtos, InterpreterMacroAssembler::NotifyJVMTI); |
|
1222 |
||
1223 |
// restore potential result in edx:eax, call result handler to |
|
1224 |
// restore potential result in ST0 & handle result |
|
1225 |
||
1226 |
__ pop(ltos); |
|
1227 |
__ pop(dtos); |
|
1228 |
||
1066 | 1229 |
__ movptr(t, Address(rbp, |
1230 |
(frame::interpreter_frame_result_handler_offset) * wordSize)); |
|
1 | 1231 |
__ call(t); |
1232 |
||
1233 |
// remove activation |
|
1066 | 1234 |
__ movptr(t, Address(rbp, |
1235 |
frame::interpreter_frame_sender_sp_offset * |
|
1236 |
wordSize)); // get sender sp |
|
1 | 1237 |
__ leave(); // remove frame anchor |
1066 | 1238 |
__ pop(rdi); // get return address |
1239 |
__ mov(rsp, t); // set sp to sender sp |
|
1 | 1240 |
__ jmp(rdi); |
1241 |
||
1242 |
if (inc_counter) { |
|
1243 |
// Handle overflow of counter and compile method |
|
1244 |
__ bind(invocation_counter_overflow); |
|
1245 |
generate_counter_overflow(&continue_after_compile); |
|
1246 |
} |
|
1247 |
||
1248 |
return entry_point; |
|
1249 |
} |
|
1250 |
||
1251 |
// |
|
1252 |
// Generic interpreted method entry to (asm) interpreter |
|
1253 |
// |
|
1254 |
address InterpreterGenerator::generate_normal_entry(bool synchronized) { |
|
1255 |
// determine code generation flags |
|
1256 |
bool inc_counter = UseCompiler || CountCompiledCalls; |
|
1257 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1258 |
// ebx: Method* |
1 | 1259 |
// r13: sender sp |
1260 |
address entry_point = __ pc(); |
|
1261 |
||
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
1262 |
const Address constMethod(rbx, Method::const_offset()); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1263 |
const Address access_flags(rbx, Method::access_flags_offset()); |
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
1264 |
const Address size_of_parameters(rdx, |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
1265 |
ConstMethod::size_of_parameters_offset()); |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
1266 |
const Address size_of_locals(rdx, ConstMethod::size_of_locals_offset()); |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
1267 |
|
1 | 1268 |
|
1269 |
// get parameter size (always needed) |
|
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
1270 |
__ movptr(rdx, constMethod); |
2148
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
1271 |
__ load_unsigned_short(rcx, size_of_parameters); |
1 | 1272 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1273 |
// rbx: Method* |
1 | 1274 |
// rcx: size of parameters |
1275 |
// r13: sender_sp (could differ from sp+wordSize if we were called via c2i ) |
|
1276 |
||
2148
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
1277 |
__ load_unsigned_short(rdx, size_of_locals); // get size of locals in words |
1 | 1278 |
__ subl(rdx, rcx); // rdx = no. of additional locals |
1279 |
||
1280 |
// YYY |
|
1281 |
// __ incrementl(rdx); |
|
1282 |
// __ andl(rdx, -2); |
|
1283 |
||
1284 |
// see if we've got enough room on the stack for locals plus overhead. |
|
1285 |
generate_stack_overflow_check(); |
|
1286 |
||
1287 |
// get return address |
|
1066 | 1288 |
__ pop(rax); |
1 | 1289 |
|
1290 |
// compute beginning of parameters (r14) |
|
1066 | 1291 |
__ lea(r14, Address(rsp, rcx, Address::times_8, -wordSize)); |
1 | 1292 |
|
1293 |
// rdx - # of additional locals |
|
1294 |
// allocate space for locals |
|
1295 |
// explicitly initialize locals |
|
1296 |
{ |
|
1297 |
Label exit, loop; |
|
1298 |
__ testl(rdx, rdx); |
|
1299 |
__ jcc(Assembler::lessEqual, exit); // do nothing if rdx <= 0 |
|
1300 |
__ bind(loop); |
|
1066 | 1301 |
__ push((int) NULL_WORD); // initialize local variables |
1 | 1302 |
__ decrementl(rdx); // until everything initialized |
1303 |
__ jcc(Assembler::greater, loop); |
|
1304 |
__ bind(exit); |
|
1305 |
} |
|
1306 |
||
1307 |
// initialize fixed part of activation frame |
|
1308 |
generate_fixed_frame(false); |
|
1309 |
||
1310 |
// make sure method is not native & not abstract |
|
1311 |
#ifdef ASSERT |
|
1312 |
__ movl(rax, access_flags); |
|
1313 |
{ |
|
1314 |
Label L; |
|
1315 |
__ testl(rax, JVM_ACC_NATIVE); |
|
1316 |
__ jcc(Assembler::zero, L); |
|
1317 |
__ stop("tried to execute native method as non-native"); |
|
1318 |
__ bind(L); |
|
1319 |
} |
|
1320 |
{ |
|
1321 |
Label L; |
|
1322 |
__ testl(rax, JVM_ACC_ABSTRACT); |
|
1323 |
__ jcc(Assembler::zero, L); |
|
1324 |
__ stop("tried to execute abstract method in interpreter"); |
|
1325 |
__ bind(L); |
|
1326 |
} |
|
1327 |
#endif |
|
1328 |
||
1329 |
// Since at this point in the method invocation the exception |
|
1330 |
// handler would try to exit the monitor of synchronized methods |
|
1331 |
// which hasn't been entered yet, we set the thread local variable |
|
1332 |
// _do_not_unlock_if_synchronized to true. The remove_activation |
|
1333 |
// will check this flag. |
|
1334 |
||
1335 |
const Address do_not_unlock_if_synchronized(r15_thread, |
|
1336 |
in_bytes(JavaThread::do_not_unlock_if_synchronized_offset())); |
|
1337 |
__ movbool(do_not_unlock_if_synchronized, true); |
|
1338 |
||
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20709
diff
changeset
|
1339 |
__ profile_parameters_type(rax, rcx, rdx); |
1 | 1340 |
// increment invocation count & check for overflow |
1341 |
Label invocation_counter_overflow; |
|
1342 |
Label profile_method; |
|
1343 |
Label profile_method_continue; |
|
1344 |
if (inc_counter) { |
|
1345 |
generate_counter_incr(&invocation_counter_overflow, |
|
1346 |
&profile_method, |
|
1347 |
&profile_method_continue); |
|
1348 |
if (ProfileInterpreter) { |
|
1349 |
__ bind(profile_method_continue); |
|
1350 |
} |
|
1351 |
} |
|
1352 |
||
1353 |
Label continue_after_compile; |
|
1354 |
__ bind(continue_after_compile); |
|
1355 |
||
1356 |
// check for synchronized interpreted methods |
|
1357 |
bang_stack_shadow_pages(false); |
|
1358 |
||
1359 |
// reset the _do_not_unlock_if_synchronized flag |
|
1360 |
__ movbool(do_not_unlock_if_synchronized, false); |
|
1361 |
||
1362 |
// check for synchronized methods |
|
1363 |
// Must happen AFTER invocation_counter check and stack overflow check, |
|
1364 |
// so method is not locked if overflows. |
|
1365 |
if (synchronized) { |
|
1366 |
// Allocate monitor and lock method |
|
1367 |
lock_method(); |
|
1368 |
} else { |
|
1369 |
// no synchronization necessary |
|
1370 |
#ifdef ASSERT |
|
1371 |
{ |
|
1372 |
Label L; |
|
1373 |
__ movl(rax, access_flags); |
|
1374 |
__ testl(rax, JVM_ACC_SYNCHRONIZED); |
|
1375 |
__ jcc(Assembler::zero, L); |
|
1376 |
__ stop("method needs synchronization"); |
|
1377 |
__ bind(L); |
|
1378 |
} |
|
1379 |
#endif |
|
1380 |
} |
|
1381 |
||
1382 |
// start execution |
|
1383 |
#ifdef ASSERT |
|
1384 |
{ |
|
1385 |
Label L; |
|
1386 |
const Address monitor_block_top (rbp, |
|
1387 |
frame::interpreter_frame_monitor_block_top_offset * wordSize); |
|
1066 | 1388 |
__ movptr(rax, monitor_block_top); |
1389 |
__ cmpptr(rax, rsp); |
|
1 | 1390 |
__ jcc(Assembler::equal, L); |
1391 |
__ stop("broken stack frame setup in interpreter"); |
|
1392 |
__ bind(L); |
|
1393 |
} |
|
1394 |
#endif |
|
1395 |
||
1396 |
// jvmti support |
|
1397 |
__ notify_method_entry(); |
|
1398 |
||
1399 |
__ dispatch_next(vtos); |
|
1400 |
||
1401 |
// invocation counter overflow |
|
1402 |
if (inc_counter) { |
|
1403 |
if (ProfileInterpreter) { |
|
1404 |
// We have decided to profile this method in the interpreter |
|
1405 |
__ bind(profile_method); |
|
7889
02144432d0e1
4930919: race condition in MDO creation at back branch locations
iveresov
parents:
7401
diff
changeset
|
1406 |
__ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method)); |
02144432d0e1
4930919: race condition in MDO creation at back branch locations
iveresov
parents:
7401
diff
changeset
|
1407 |
__ set_method_data_pointer_for_bcp(); |
7912
6d73dee171ea
7012766: assert(false) failed: DEBUG MESSAGE in MacroAssembler::debug32
iveresov
parents:
7889
diff
changeset
|
1408 |
__ get_method(rbx); |
1 | 1409 |
__ jmp(profile_method_continue); |
1410 |
} |
|
1411 |
// Handle overflow of counter and compile method |
|
1412 |
__ bind(invocation_counter_overflow); |
|
1413 |
generate_counter_overflow(&continue_after_compile); |
|
1414 |
} |
|
1415 |
||
1416 |
return entry_point; |
|
1417 |
} |
|
1418 |
||
1419 |
||
4645
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1420 |
// These should never be compiled since the interpreter will prefer |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1421 |
// the compiled version to the intrinsic version. |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1422 |
bool AbstractInterpreter::can_be_compiled(methodHandle m) { |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1423 |
switch (method_kind(m)) { |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1424 |
case Interpreter::java_lang_math_sin : // fall thru |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1425 |
case Interpreter::java_lang_math_cos : // fall thru |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1426 |
case Interpreter::java_lang_math_tan : // fall thru |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1427 |
case Interpreter::java_lang_math_abs : // fall thru |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1428 |
case Interpreter::java_lang_math_log : // fall thru |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1429 |
case Interpreter::java_lang_math_log10 : // fall thru |
12739
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
11439
diff
changeset
|
1430 |
case Interpreter::java_lang_math_sqrt : // fall thru |
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
11439
diff
changeset
|
1431 |
case Interpreter::java_lang_math_pow : // fall thru |
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
11439
diff
changeset
|
1432 |
case Interpreter::java_lang_math_exp : |
4645
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1433 |
return false; |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1434 |
default: |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1435 |
return true; |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1436 |
} |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1437 |
} |
0c5f5b94e93a
6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents:
4564
diff
changeset
|
1438 |
|
1 | 1439 |
// How much stack a method activation needs in words. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1440 |
int AbstractInterpreter::size_top_interpreter_activation(Method* method) { |
1 | 1441 |
const int entry_size = frame::interpreter_frame_monitor_size(); |
1442 |
||
1443 |
// total overhead size: entry_size + (saved rbp thru expr stack |
|
1444 |
// bottom). be sure to change this if you add/subtract anything |
|
1445 |
// to/from the overhead area |
|
1446 |
const int overhead_size = |
|
1447 |
-(frame::interpreter_frame_initial_sp_offset) + entry_size; |
|
1448 |
||
1449 |
const int stub_code = frame::entry_frame_after_call_words; |
|
17875
9d4aa49a1d76
8010460: Interpreter on some platforms loads ConstMethod::_max_stack and misses extra stack slots for JSR 292
roland
parents:
17037
diff
changeset
|
1450 |
const int method_stack = (method->max_locals() + method->max_stack()) * |
5419 | 1451 |
Interpreter::stackElementWords; |
1 | 1452 |
return (overhead_size + method_stack + stub_code); |
1453 |
} |
|
1454 |
||
1455 |
//----------------------------------------------------------------------------- |
|
1456 |
// Exceptions |
|
1457 |
||
1458 |
void TemplateInterpreterGenerator::generate_throw_exception() { |
|
1459 |
// Entry point in previous activation (i.e., if the caller was |
|
1460 |
// interpreted) |
|
1461 |
Interpreter::_rethrow_exception_entry = __ pc(); |
|
1462 |
// Restore sp to interpreter_frame_last_sp even though we are going |
|
1463 |
// to empty the expression stack for the exception processing. |
|
1066 | 1464 |
__ movptr(Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize), (int32_t)NULL_WORD); |
1 | 1465 |
// rax: exception |
1466 |
// rdx: return address/pc that threw exception |
|
1467 |
__ restore_bcp(); // r13 points to call/send |
|
1468 |
__ restore_locals(); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1469 |
__ reinit_heapbase(); // restore r12 as heapbase. |
1 | 1470 |
// Entry point for exceptions thrown within interpreter code |
1471 |
Interpreter::_throw_exception_entry = __ pc(); |
|
1472 |
// expression stack is undefined here |
|
1473 |
// rax: exception |
|
1474 |
// r13: exception bcp |
|
1475 |
__ verify_oop(rax); |
|
1066 | 1476 |
__ mov(c_rarg1, rax); |
1 | 1477 |
|
1478 |
// expression stack must be empty before entering the VM in case of |
|
1479 |
// an exception |
|
1480 |
__ empty_expression_stack(); |
|
1481 |
// find exception handler address and preserve exception oop |
|
1482 |
__ call_VM(rdx, |
|
1483 |
CAST_FROM_FN_PTR(address, |
|
1484 |
InterpreterRuntime::exception_handler_for_exception), |
|
1485 |
c_rarg1); |
|
1486 |
// rax: exception handler entry point |
|
1487 |
// rdx: preserved exception oop |
|
1488 |
// r13: bcp for exception handler |
|
1489 |
__ push_ptr(rdx); // push exception which is now the only value on the stack |
|
1490 |
__ jmp(rax); // jump to exception handler (may be _remove_activation_entry!) |
|
1491 |
||
1492 |
// If the exception is not handled in the current frame the frame is |
|
1493 |
// removed and the exception is rethrown (i.e. exception |
|
1494 |
// continuation is _rethrow_exception). |
|
1495 |
// |
|
1496 |
// Note: At this point the bci is still the bxi for the instruction |
|
1497 |
// which caused the exception and the expression stack is |
|
1498 |
// empty. Thus, for any VM calls at this point, GC will find a legal |
|
1499 |
// oop map (with empty expression stack). |
|
1500 |
||
1501 |
// In current activation |
|
1502 |
// tos: exception |
|
1503 |
// esi: exception bcp |
|
1504 |
||
1505 |
// |
|
1506 |
// JVMTI PopFrame support |
|
1507 |
// |
|
1508 |
||
1509 |
Interpreter::_remove_activation_preserving_args_entry = __ pc(); |
|
1510 |
__ empty_expression_stack(); |
|
1511 |
// Set the popframe_processing bit in pending_popframe_condition |
|
1512 |
// indicating that we are currently handling popframe, so that |
|
1513 |
// call_VMs that may happen later do not trigger new popframe |
|
1514 |
// handling cycles. |
|
1515 |
__ movl(rdx, Address(r15_thread, JavaThread::popframe_condition_offset())); |
|
1516 |
__ orl(rdx, JavaThread::popframe_processing_bit); |
|
1517 |
__ movl(Address(r15_thread, JavaThread::popframe_condition_offset()), rdx); |
|
1518 |
||
1519 |
{ |
|
1520 |
// Check to see whether we are returning to a deoptimized frame. |
|
1521 |
// (The PopFrame call ensures that the caller of the popped frame is |
|
1522 |
// either interpreted or compiled and deoptimizes it if compiled.) |
|
1523 |
// In this case, we can't call dispatch_next() after the frame is |
|
1524 |
// popped, but instead must save the incoming arguments and restore |
|
1525 |
// them after deoptimization has occurred. |
|
1526 |
// |
|
1527 |
// Note that we don't compare the return PC against the |
|
1528 |
// deoptimization blob's unpack entry because of the presence of |
|
1529 |
// adapter frames in C2. |
|
1530 |
Label caller_not_deoptimized; |
|
1066 | 1531 |
__ movptr(c_rarg1, Address(rbp, frame::return_addr_offset * wordSize)); |
1 | 1532 |
__ super_call_VM_leaf(CAST_FROM_FN_PTR(address, |
1533 |
InterpreterRuntime::interpreter_contains), c_rarg1); |
|
1534 |
__ testl(rax, rax); |
|
1535 |
__ jcc(Assembler::notZero, caller_not_deoptimized); |
|
1536 |
||
1537 |
// Compute size of arguments for saving when returning to |
|
1538 |
// deoptimized caller |
|
1539 |
__ get_method(rax); |
|
14745
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
1540 |
__ movptr(rax, Address(rax, Method::const_offset())); |
03904dd8649b
8004076: Move _max_locals and _size_of_parameters to ConstMethod for better sharing.
jiangli
parents:
14626
diff
changeset
|
1541 |
__ load_unsigned_short(rax, Address(rax, in_bytes(ConstMethod:: |
1 | 1542 |
size_of_parameters_offset()))); |
5419 | 1543 |
__ shll(rax, Interpreter::logStackElementSize); |
1 | 1544 |
__ restore_locals(); // XXX do we need this? |
1066 | 1545 |
__ subptr(r14, rax); |
1546 |
__ addptr(r14, wordSize); |
|
1 | 1547 |
// Save these arguments |
1548 |
__ super_call_VM_leaf(CAST_FROM_FN_PTR(address, |
|
1549 |
Deoptimization:: |
|
1550 |
popframe_preserve_args), |
|
1551 |
r15_thread, rax, r14); |
|
1552 |
||
1553 |
__ remove_activation(vtos, rdx, |
|
1554 |
/* throw_monitor_exception */ false, |
|
1555 |
/* install_monitor_exception */ false, |
|
1556 |
/* notify_jvmdi */ false); |
|
1557 |
||
1558 |
// Inform deoptimization that it is responsible for restoring |
|
1559 |
// these arguments |
|
1560 |
__ movl(Address(r15_thread, JavaThread::popframe_condition_offset()), |
|
1561 |
JavaThread::popframe_force_deopt_reexecution_bit); |
|
1562 |
||
1563 |
// Continue in deoptimization handler |
|
1564 |
__ jmp(rdx); |
|
1565 |
||
1566 |
__ bind(caller_not_deoptimized); |
|
1567 |
} |
|
1568 |
||
1569 |
__ remove_activation(vtos, rdx, /* rdx result (retaddr) is not used */ |
|
1570 |
/* throw_monitor_exception */ false, |
|
1571 |
/* install_monitor_exception */ false, |
|
1572 |
/* notify_jvmdi */ false); |
|
1573 |
||
1574 |
// Finish with popframe handling |
|
1575 |
// A previous I2C followed by a deoptimization might have moved the |
|
1576 |
// outgoing arguments further up the stack. PopFrame expects the |
|
1577 |
// mutations to those outgoing arguments to be preserved and other |
|
1578 |
// constraints basically require this frame to look exactly as |
|
1579 |
// though it had previously invoked an interpreted activation with |
|
1580 |
// no space between the top of the expression stack (current |
|
1581 |
// last_sp) and the top of stack. Rather than force deopt to |
|
1582 |
// maintain this kind of invariant all the time we call a small |
|
1583 |
// fixup routine to move the mutated arguments onto the top of our |
|
1584 |
// expression stack if necessary. |
|
1066 | 1585 |
__ mov(c_rarg1, rsp); |
1586 |
__ movptr(c_rarg2, Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize)); |
|
1 | 1587 |
// PC must point into interpreter here |
1588 |
__ set_last_Java_frame(noreg, rbp, __ pc()); |
|
1589 |
__ super_call_VM_leaf(CAST_FROM_FN_PTR(address, InterpreterRuntime::popframe_move_outgoing_args), r15_thread, c_rarg1, c_rarg2); |
|
1590 |
__ reset_last_Java_frame(true, true); |
|
1591 |
// Restore the last_sp and null it out |
|
1066 | 1592 |
__ movptr(rsp, Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize)); |
1593 |
__ movptr(Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize), (int32_t)NULL_WORD); |
|
1 | 1594 |
|
1595 |
__ restore_bcp(); // XXX do we need this? |
|
1596 |
__ restore_locals(); // XXX do we need this? |
|
1597 |
// The method data pointer was incremented already during |
|
1598 |
// call profiling. We have to restore the mdp for the current bcp. |
|
1599 |
if (ProfileInterpreter) { |
|
1600 |
__ set_method_data_pointer_for_bcp(); |
|
1601 |
} |
|
1602 |
||
1603 |
// Clear the popframe condition flag |
|
1604 |
__ movl(Address(r15_thread, JavaThread::popframe_condition_offset()), |
|
1605 |
JavaThread::popframe_inactive); |
|
1606 |
||
19266
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1607 |
#if INCLUDE_JVMTI |
24322 | 1608 |
{ |
19266
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1609 |
Label L_done; |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1610 |
const Register local0 = r14; |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1611 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1612 |
__ cmpb(Address(r13, 0), Bytecodes::_invokestatic); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1613 |
__ jcc(Assembler::notEqual, L_done); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1614 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1615 |
// The member name argument must be restored if _invokestatic is re-executed after a PopFrame call. |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1616 |
// Detect such a case in the InterpreterRuntime function and return the member name argument, or NULL. |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1617 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1618 |
__ get_method(rdx); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1619 |
__ movptr(rax, Address(local0, 0)); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1620 |
__ call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::member_name_arg_or_null), rax, rdx, r13); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1621 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1622 |
__ testptr(rax, rax); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1623 |
__ jcc(Assembler::zero, L_done); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1624 |
|
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1625 |
__ movptr(Address(rbx, 0), rax); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1626 |
__ bind(L_done); |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1627 |
} |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1628 |
#endif // INCLUDE_JVMTI |
bb0324cbe0aa
7187554: JSR 292: JVMTI PopFrame needs to handle appendix arguments
sspitsyn
parents:
18507
diff
changeset
|
1629 |
|
1 | 1630 |
__ dispatch_next(vtos); |
1631 |
// end of PopFrame support |
|
1632 |
||
1633 |
Interpreter::_remove_activation_entry = __ pc(); |
|
1634 |
||
1635 |
// preserve exception over this code sequence |
|
1636 |
__ pop_ptr(rax); |
|
1066 | 1637 |
__ movptr(Address(r15_thread, JavaThread::vm_result_offset()), rax); |
1 | 1638 |
// remove the activation (without doing throws on illegalMonitorExceptions) |
1639 |
__ remove_activation(vtos, rdx, false, true, false); |
|
1640 |
// restore exception |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1641 |
__ get_vm_result(rax, r15_thread); |
1 | 1642 |
|
1643 |
// In between activations - previous activation type unknown yet |
|
1644 |
// compute continuation point - the continuation point expects the |
|
1645 |
// following registers set up: |
|
1646 |
// |
|
1647 |
// rax: exception |
|
1648 |
// rdx: return address/pc that threw exception |
|
1649 |
// rsp: expression stack of caller |
|
1650 |
// rbp: ebp of caller |
|
1066 | 1651 |
__ push(rax); // save exception |
1652 |
__ push(rdx); // save return address |
|
1 | 1653 |
__ super_call_VM_leaf(CAST_FROM_FN_PTR(address, |
1654 |
SharedRuntime::exception_handler_for_return_address), |
|
5046 | 1655 |
r15_thread, rdx); |
1066 | 1656 |
__ mov(rbx, rax); // save exception handler |
1657 |
__ pop(rdx); // restore return address |
|
1658 |
__ pop(rax); // restore exception |
|
1 | 1659 |
// Note that an "issuing PC" is actually the next PC after the call |
1660 |
__ jmp(rbx); // jump to exception |
|
1661 |
// handler of caller |
|
1662 |
} |
|
1663 |
||
1664 |
||
1665 |
// |
|
1666 |
// JVMTI ForceEarlyReturn support |
|
1667 |
// |
|
1668 |
address TemplateInterpreterGenerator::generate_earlyret_entry_for(TosState state) { |
|
1669 |
address entry = __ pc(); |
|
1670 |
||
1671 |
__ restore_bcp(); |
|
1672 |
__ restore_locals(); |
|
1673 |
__ empty_expression_stack(); |
|
1674 |
__ load_earlyret_value(state); |
|
1675 |
||
1066 | 1676 |
__ movptr(rdx, Address(r15_thread, JavaThread::jvmti_thread_state_offset())); |
1 | 1677 |
Address cond_addr(rdx, JvmtiThreadState::earlyret_state_offset()); |
1678 |
||
1679 |
// Clear the earlyret state |
|
1680 |
__ movl(cond_addr, JvmtiThreadState::earlyret_inactive); |
|
1681 |
||
1682 |
__ remove_activation(state, rsi, |
|
1683 |
false, /* throw_monitor_exception */ |
|
1684 |
false, /* install_monitor_exception */ |
|
1685 |
true); /* notify_jvmdi */ |
|
1686 |
__ jmp(rsi); |
|
1687 |
||
1688 |
return entry; |
|
1689 |
} // end of ForceEarlyReturn support |
|
1690 |
||
1691 |
||
1692 |
//----------------------------------------------------------------------------- |
|
1693 |
// Helper for vtos entry point generation |
|
1694 |
||
1695 |
void TemplateInterpreterGenerator::set_vtos_entry_points(Template* t, |
|
1696 |
address& bep, |
|
1697 |
address& cep, |
|
1698 |
address& sep, |
|
1699 |
address& aep, |
|
1700 |
address& iep, |
|
1701 |
address& lep, |
|
1702 |
address& fep, |
|
1703 |
address& dep, |
|
1704 |
address& vep) { |
|
1705 |
assert(t->is_valid() && t->tos_in() == vtos, "illegal template"); |
|
1706 |
Label L; |
|
1707 |
aep = __ pc(); __ push_ptr(); __ jmp(L); |
|
1708 |
fep = __ pc(); __ push_f(); __ jmp(L); |
|
1709 |
dep = __ pc(); __ push_d(); __ jmp(L); |
|
1710 |
lep = __ pc(); __ push_l(); __ jmp(L); |
|
1711 |
bep = cep = sep = |
|
1712 |
iep = __ pc(); __ push_i(); |
|
1713 |
vep = __ pc(); |
|
1714 |
__ bind(L); |
|
1715 |
generate_and_dispatch(t); |
|
1716 |
} |
|
1717 |
||
1718 |
||
1719 |
//----------------------------------------------------------------------------- |
|
1720 |
// Generation of individual instructions |
|
1721 |
||
1722 |
// helpers for generate_and_dispatch |
|
1723 |
||
1724 |
||
1725 |
InterpreterGenerator::InterpreterGenerator(StubQueue* code) |
|
1726 |
: TemplateInterpreterGenerator(code) { |
|
1727 |
generate_all(); // down here so it can be "virtual" |
|
1728 |
} |
|
1729 |
||
1730 |
//----------------------------------------------------------------------------- |
|
1731 |
||
1732 |
// Non-product code |
|
1733 |
#ifndef PRODUCT |
|
1734 |
address TemplateInterpreterGenerator::generate_trace_code(TosState state) { |
|
1735 |
address entry = __ pc(); |
|
1736 |
||
1737 |
__ push(state); |
|
1066 | 1738 |
__ push(c_rarg0); |
1739 |
__ push(c_rarg1); |
|
1740 |
__ push(c_rarg2); |
|
1741 |
__ push(c_rarg3); |
|
1742 |
__ mov(c_rarg2, rax); // Pass itos |
|
1 | 1743 |
#ifdef _WIN64 |
1744 |
__ movflt(xmm3, xmm0); // Pass ftos |
|
1745 |
#endif |
|
1746 |
__ call_VM(noreg, |
|
1747 |
CAST_FROM_FN_PTR(address, SharedRuntime::trace_bytecode), |
|
1748 |
c_rarg1, c_rarg2, c_rarg3); |
|
1066 | 1749 |
__ pop(c_rarg3); |
1750 |
__ pop(c_rarg2); |
|
1751 |
__ pop(c_rarg1); |
|
1752 |
__ pop(c_rarg0); |
|
1 | 1753 |
__ pop(state); |
1754 |
__ ret(0); // return from result handler |
|
1755 |
||
1756 |
return entry; |
|
1757 |
} |
|
1758 |
||
1759 |
void TemplateInterpreterGenerator::count_bytecode() { |
|
1760 |
__ incrementl(ExternalAddress((address) &BytecodeCounter::_counter_value)); |
|
1761 |
} |
|
1762 |
||
1763 |
void TemplateInterpreterGenerator::histogram_bytecode(Template* t) { |
|
1764 |
__ incrementl(ExternalAddress((address) &BytecodeHistogram::_counters[t->bytecode()])); |
|
1765 |
} |
|
1766 |
||
1767 |
void TemplateInterpreterGenerator::histogram_bytecode_pair(Template* t) { |
|
1768 |
__ mov32(rbx, ExternalAddress((address) &BytecodePairHistogram::_index)); |
|
1769 |
__ shrl(rbx, BytecodePairHistogram::log2_number_of_codes); |
|
1770 |
__ orl(rbx, |
|
1771 |
((int) t->bytecode()) << |
|
1772 |
BytecodePairHistogram::log2_number_of_codes); |
|
1773 |
__ mov32(ExternalAddress((address) &BytecodePairHistogram::_index), rbx); |
|
1774 |
__ lea(rscratch1, ExternalAddress((address) BytecodePairHistogram::_counters)); |
|
1775 |
__ incrementl(Address(rscratch1, rbx, Address::times_4)); |
|
1776 |
} |
|
1777 |
||
1778 |
||
1779 |
void TemplateInterpreterGenerator::trace_bytecode(Template* t) { |
|
1780 |
// Call a little run-time stub to avoid blow-up for each bytecode. |
|
1781 |
// The run-time runtime saves the right registers, depending on |
|
1782 |
// the tosca in-state for the given template. |
|
1783 |
||
1784 |
assert(Interpreter::trace_code(t->tos_in()) != NULL, |
|
1785 |
"entry must have been generated"); |
|
7401
ebde7415b521
6780143: hs203t003 hits SIGSEGV/EXCEPTION_ACCESS_VIOLATION with -XX:+UseCompressedOops
coleenp
parents:
7397
diff
changeset
|
1786 |
__ mov(r12, rsp); // remember sp (can only use r12 if not using call_VM) |
1066 | 1787 |
__ andptr(rsp, -16); // align stack as required by ABI |
1 | 1788 |
__ call(RuntimeAddress(Interpreter::trace_code(t->tos_in()))); |
1066 | 1789 |
__ mov(rsp, r12); // restore sp |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
1790 |
__ reinit_heapbase(); |
1 | 1791 |
} |
1792 |
||
1793 |
||
1794 |
void TemplateInterpreterGenerator::stop_interpreter_at() { |
|
1795 |
Label L; |
|
1796 |
__ cmp32(ExternalAddress((address) &BytecodeCounter::_counter_value), |
|
1797 |
StopInterpreterAt); |
|
1798 |
__ jcc(Assembler::notEqual, L); |
|
1799 |
__ int3(); |
|
1800 |
__ bind(L); |
|
1801 |
} |
|
1802 |
#endif // !PRODUCT |
|
1066 | 1803 |
#endif // ! CC_INTERP |