author | dlong |
Fri, 21 Oct 2016 17:51:33 -0700 | |
changeset 42042 | 681bd315c66e |
parent 40643 | 49539fc14e5a |
child 42051 | 0264f170da65 |
permissions | -rw-r--r-- |
29183 | 1 |
/* |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
2 |
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. |
29183 | 3 |
* Copyright (c) 2014, Red Hat Inc. All rights reserved. |
4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
* or visit www.oracle.com if you need additional information or have any |
|
22 |
* questions. |
|
23 |
* |
|
24 |
*/ |
|
25 |
||
26 |
#include "precompiled.hpp" |
|
27 |
#include "interpreter/interpreter.hpp" |
|
28 |
#include "memory/resourceArea.hpp" |
|
29 |
#include "oops/markOop.hpp" |
|
30 |
#include "oops/method.hpp" |
|
31 |
#include "oops/oop.inline.hpp" |
|
32 |
#include "prims/methodHandles.hpp" |
|
33 |
#include "runtime/frame.inline.hpp" |
|
34 |
#include "runtime/handles.inline.hpp" |
|
35 |
#include "runtime/javaCalls.hpp" |
|
36 |
#include "runtime/monitorChunk.hpp" |
|
37 |
#include "runtime/os.hpp" |
|
38 |
#include "runtime/signature.hpp" |
|
39 |
#include "runtime/stubCodeGenerator.hpp" |
|
40 |
#include "runtime/stubRoutines.hpp" |
|
41 |
#include "vmreg_aarch64.inline.hpp" |
|
42 |
#ifdef COMPILER1 |
|
43 |
#include "c1/c1_Runtime1.hpp" |
|
44 |
#include "runtime/vframeArray.hpp" |
|
45 |
#endif |
|
46 |
||
47 |
#ifdef ASSERT |
|
48 |
void RegisterMap::check_location_valid() { |
|
49 |
} |
|
50 |
#endif |
|
51 |
||
52 |
||
53 |
// Profiling/safepoint support |
|
54 |
||
55 |
bool frame::safe_for_sender(JavaThread *thread) { |
|
56 |
address sp = (address)_sp; |
|
57 |
address fp = (address)_fp; |
|
58 |
address unextended_sp = (address)_unextended_sp; |
|
59 |
||
60 |
// consider stack guards when trying to determine "safe" stack pointers |
|
35201
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
31389
diff
changeset
|
61 |
static size_t stack_guard_size = os::uses_stack_guard_pages() ? |
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
31389
diff
changeset
|
62 |
(JavaThread::stack_red_zone_size() + JavaThread::stack_yellow_zone_size()) : 0; |
29183 | 63 |
size_t usable_stack_size = thread->stack_size() - stack_guard_size; |
64 |
||
65 |
// sp must be within the usable part of the stack (not in guards) |
|
66 |
bool sp_safe = (sp < thread->stack_base()) && |
|
67 |
(sp >= thread->stack_base() - usable_stack_size); |
|
68 |
||
69 |
||
70 |
if (!sp_safe) { |
|
71 |
return false; |
|
72 |
} |
|
73 |
||
74 |
// unextended sp must be within the stack and above or equal sp |
|
75 |
bool unextended_sp_safe = (unextended_sp < thread->stack_base()) && |
|
76 |
(unextended_sp >= sp); |
|
77 |
||
78 |
if (!unextended_sp_safe) { |
|
79 |
return false; |
|
80 |
} |
|
81 |
||
82 |
// an fp must be within the stack and above (but not equal) sp |
|
83 |
// second evaluation on fp+ is added to handle situation where fp is -1 |
|
84 |
bool fp_safe = (fp < thread->stack_base() && (fp > sp) && (((fp + (return_addr_offset * sizeof(void*))) < thread->stack_base()))); |
|
85 |
||
86 |
// We know sp/unextended_sp are safe only fp is questionable here |
|
87 |
||
88 |
// If the current frame is known to the code cache then we can attempt to |
|
89 |
// to construct the sender and do some validation of it. This goes a long way |
|
90 |
// toward eliminating issues when we get in frame construction code |
|
91 |
||
92 |
if (_cb != NULL ) { |
|
93 |
||
94 |
// First check if frame is complete and tester is reliable |
|
95 |
// Unfortunately we can only check frame complete for runtime stubs and nmethod |
|
96 |
// other generic buffer blobs are more problematic so we just assume they are |
|
97 |
// ok. adapter blobs never have a frame complete and are never ok. |
|
98 |
||
99 |
if (!_cb->is_frame_complete_at(_pc)) { |
|
100 |
if (_cb->is_nmethod() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) { |
|
101 |
return false; |
|
102 |
} |
|
103 |
} |
|
104 |
||
105 |
// Could just be some random pointer within the codeBlob |
|
106 |
if (!_cb->code_contains(_pc)) { |
|
107 |
return false; |
|
108 |
} |
|
109 |
||
110 |
// Entry frame checks |
|
111 |
if (is_entry_frame()) { |
|
112 |
// an entry frame must have a valid fp. |
|
40332
a52d1e719c4d
8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents:
38133
diff
changeset
|
113 |
return fp_safe && is_entry_frame_valid(thread); |
29183 | 114 |
} |
115 |
||
116 |
intptr_t* sender_sp = NULL; |
|
29192
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
117 |
intptr_t* sender_unextended_sp = NULL; |
29183 | 118 |
address sender_pc = NULL; |
29192
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
119 |
intptr_t* saved_fp = NULL; |
29183 | 120 |
|
121 |
if (is_interpreted_frame()) { |
|
122 |
// fp must be safe |
|
123 |
if (!fp_safe) { |
|
124 |
return false; |
|
125 |
} |
|
126 |
||
127 |
sender_pc = (address) this->fp()[return_addr_offset]; |
|
29192
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
128 |
// for interpreted frames, the value below is the sender "raw" sp, |
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
129 |
// which can be different from the sender unextended sp (the sp seen |
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
130 |
// by the sender) because of current frame local variables |
29183 | 131 |
sender_sp = (intptr_t*) addr_at(sender_sp_offset); |
29192
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
132 |
sender_unextended_sp = (intptr_t*) this->fp()[interpreter_frame_sender_sp_offset]; |
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
133 |
saved_fp = (intptr_t*) this->fp()[link_offset]; |
29183 | 134 |
|
135 |
} else { |
|
136 |
// must be some sort of compiled/runtime frame |
|
137 |
// fp does not have to be safe (although it could be check for c1?) |
|
138 |
||
139 |
// check for a valid frame_size, otherwise we are unlikely to get a valid sender_pc |
|
140 |
if (_cb->frame_size() <= 0) { |
|
141 |
return false; |
|
142 |
} |
|
143 |
||
144 |
sender_sp = _unextended_sp + _cb->frame_size(); |
|
42042
681bd315c66e
8160411: SIGSEGV in frame::safe_for_sender on incomplete DeoptimizationBlob frame
dlong
parents:
40643
diff
changeset
|
145 |
// Is sender_sp safe? |
681bd315c66e
8160411: SIGSEGV in frame::safe_for_sender on incomplete DeoptimizationBlob frame
dlong
parents:
40643
diff
changeset
|
146 |
if ((address)sender_sp >= thread->stack_base()) { |
681bd315c66e
8160411: SIGSEGV in frame::safe_for_sender on incomplete DeoptimizationBlob frame
dlong
parents:
40643
diff
changeset
|
147 |
return false; |
681bd315c66e
8160411: SIGSEGV in frame::safe_for_sender on incomplete DeoptimizationBlob frame
dlong
parents:
40643
diff
changeset
|
148 |
} |
29192
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
149 |
sender_unextended_sp = sender_sp; |
29183 | 150 |
sender_pc = (address) *(sender_sp-1); |
29192
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
151 |
// Note: frame::sender_sp_offset is only valid for compiled frame |
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
152 |
saved_fp = (intptr_t*) *(sender_sp - frame::sender_sp_offset); |
29183 | 153 |
} |
154 |
||
155 |
||
156 |
// If the potential sender is the interpreter then we can do some more checking |
|
157 |
if (Interpreter::contains(sender_pc)) { |
|
158 |
||
159 |
// fp is always saved in a recognizable place in any code we generate. However |
|
160 |
// only if the sender is interpreted/call_stub (c1 too?) are we certain that the saved fp |
|
161 |
// is really a frame pointer. |
|
162 |
||
163 |
bool saved_fp_safe = ((address)saved_fp < thread->stack_base()) && (saved_fp > sender_sp); |
|
164 |
||
165 |
if (!saved_fp_safe) { |
|
166 |
return false; |
|
167 |
} |
|
168 |
||
169 |
// construct the potential sender |
|
170 |
||
29192
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
171 |
frame sender(sender_sp, sender_unextended_sp, saved_fp, sender_pc); |
29183 | 172 |
|
173 |
return sender.is_interpreted_frame_valid(thread); |
|
174 |
||
175 |
} |
|
176 |
||
177 |
// We must always be able to find a recognizable pc |
|
178 |
CodeBlob* sender_blob = CodeCache::find_blob_unsafe(sender_pc); |
|
179 |
if (sender_pc == NULL || sender_blob == NULL) { |
|
180 |
return false; |
|
181 |
} |
|
182 |
||
183 |
// Could be a zombie method |
|
184 |
if (sender_blob->is_zombie() || sender_blob->is_unloaded()) { |
|
185 |
return false; |
|
186 |
} |
|
187 |
||
188 |
// Could just be some random pointer within the codeBlob |
|
189 |
if (!sender_blob->code_contains(sender_pc)) { |
|
190 |
return false; |
|
191 |
} |
|
192 |
||
193 |
// We should never be able to see an adapter if the current frame is something from code cache |
|
194 |
if (sender_blob->is_adapter_blob()) { |
|
195 |
return false; |
|
196 |
} |
|
197 |
||
198 |
// Could be the call_stub |
|
199 |
if (StubRoutines::returns_to_call_stub(sender_pc)) { |
|
200 |
bool saved_fp_safe = ((address)saved_fp < thread->stack_base()) && (saved_fp > sender_sp); |
|
201 |
||
202 |
if (!saved_fp_safe) { |
|
203 |
return false; |
|
204 |
} |
|
205 |
||
206 |
// construct the potential sender |
|
29192
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
207 |
frame sender(sender_sp, sender_unextended_sp, saved_fp, sender_pc); |
40332
a52d1e719c4d
8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents:
38133
diff
changeset
|
208 |
return sender.is_entry_frame_valid(thread); |
29183 | 209 |
} |
210 |
||
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
211 |
CompiledMethod* nm = sender_blob->as_compiled_method_or_null(); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
212 |
if (nm != NULL) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
213 |
if (nm->is_deopt_mh_entry(sender_pc) || nm->is_deopt_entry(sender_pc) || |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
214 |
nm->method()->is_method_handle_intrinsic()) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
215 |
return false; |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
216 |
} |
29183 | 217 |
} |
218 |
||
219 |
// If the frame size is 0 something (or less) is bad because every nmethod has a non-zero frame size |
|
220 |
// because the return address counts against the callee's frame. |
|
221 |
||
222 |
if (sender_blob->frame_size() <= 0) { |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
223 |
assert(!sender_blob->is_compiled(), "should count return address at least"); |
29183 | 224 |
return false; |
225 |
} |
|
226 |
||
227 |
// We should never be able to see anything here except an nmethod. If something in the |
|
228 |
// code cache (current frame) is called by an entity within the code cache that entity |
|
229 |
// should not be anything but the call stub (already covered), the interpreter (already covered) |
|
230 |
// or an nmethod. |
|
231 |
||
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
232 |
if (!sender_blob->is_compiled()) { |
29183 | 233 |
return false; |
234 |
} |
|
235 |
||
236 |
// Could put some more validation for the potential non-interpreted sender |
|
237 |
// frame we'd create by calling sender if I could think of any. Wait for next crash in forte... |
|
238 |
||
239 |
// One idea is seeing if the sender_pc we have is one that we'd expect to call to current cb |
|
240 |
||
241 |
// We've validated the potential sender that would be created |
|
242 |
return true; |
|
243 |
} |
|
244 |
||
245 |
// Must be native-compiled frame. Since sender will try and use fp to find |
|
246 |
// linkages it must be safe |
|
247 |
||
248 |
if (!fp_safe) { |
|
249 |
return false; |
|
250 |
} |
|
251 |
||
252 |
// Will the pc we fetch be non-zero (which we'll find at the oldest frame) |
|
253 |
||
254 |
if ( (address) this->fp()[return_addr_offset] == NULL) return false; |
|
255 |
||
256 |
||
257 |
// could try and do some more potential verification of native frame if we could think of some... |
|
258 |
||
259 |
return true; |
|
260 |
||
261 |
} |
|
262 |
||
263 |
void frame::patch_pc(Thread* thread, address pc) { |
|
264 |
address* pc_addr = &(((address*) sp())[-1]); |
|
265 |
if (TracePcPatching) { |
|
266 |
tty->print_cr("patch_pc at address " INTPTR_FORMAT " [" INTPTR_FORMAT " -> " INTPTR_FORMAT "]", |
|
267 |
p2i(pc_addr), p2i(*pc_addr), p2i(pc)); |
|
268 |
} |
|
269 |
// Either the return address is the original one or we are going to |
|
270 |
// patch in the same address that's already there. |
|
271 |
assert(_pc == *pc_addr || pc == *pc_addr, "must be"); |
|
272 |
*pc_addr = pc; |
|
273 |
_cb = CodeCache::find_blob(pc); |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
274 |
address original_pc = CompiledMethod::get_deopt_original_pc(this); |
29183 | 275 |
if (original_pc != NULL) { |
276 |
assert(original_pc == _pc, "expected original PC to be stored before patching"); |
|
277 |
_deopt_state = is_deoptimized; |
|
278 |
// leave _pc as is |
|
279 |
} else { |
|
280 |
_deopt_state = not_deoptimized; |
|
281 |
_pc = pc; |
|
282 |
} |
|
283 |
} |
|
284 |
||
285 |
bool frame::is_interpreted_frame() const { |
|
286 |
return Interpreter::contains(pc()); |
|
287 |
} |
|
288 |
||
289 |
int frame::frame_size(RegisterMap* map) const { |
|
290 |
frame sender = this->sender(map); |
|
291 |
return sender.sp() - sp(); |
|
292 |
} |
|
293 |
||
294 |
intptr_t* frame::entry_frame_argument_at(int offset) const { |
|
295 |
// convert offset to index to deal with tsi |
|
296 |
int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize); |
|
297 |
// Entry frame's arguments are always in relation to unextended_sp() |
|
298 |
return &unextended_sp()[index]; |
|
299 |
} |
|
300 |
||
301 |
// sender_sp |
|
302 |
intptr_t* frame::interpreter_frame_sender_sp() const { |
|
303 |
assert(is_interpreted_frame(), "interpreted frame expected"); |
|
304 |
return (intptr_t*) at(interpreter_frame_sender_sp_offset); |
|
305 |
} |
|
306 |
||
307 |
void frame::set_interpreter_frame_sender_sp(intptr_t* sender_sp) { |
|
308 |
assert(is_interpreted_frame(), "interpreted frame expected"); |
|
309 |
ptr_at_put(interpreter_frame_sender_sp_offset, (intptr_t) sender_sp); |
|
310 |
} |
|
311 |
||
312 |
||
313 |
// monitor elements |
|
314 |
||
315 |
BasicObjectLock* frame::interpreter_frame_monitor_begin() const { |
|
316 |
return (BasicObjectLock*) addr_at(interpreter_frame_monitor_block_bottom_offset); |
|
317 |
} |
|
318 |
||
319 |
BasicObjectLock* frame::interpreter_frame_monitor_end() const { |
|
320 |
BasicObjectLock* result = (BasicObjectLock*) *addr_at(interpreter_frame_monitor_block_top_offset); |
|
321 |
// make sure the pointer points inside the frame |
|
322 |
assert(sp() <= (intptr_t*) result, "monitor end should be above the stack pointer"); |
|
323 |
assert((intptr_t*) result < fp(), "monitor end should be strictly below the frame pointer"); |
|
324 |
return result; |
|
325 |
} |
|
326 |
||
327 |
void frame::interpreter_frame_set_monitor_end(BasicObjectLock* value) { |
|
328 |
*((BasicObjectLock**)addr_at(interpreter_frame_monitor_block_top_offset)) = value; |
|
329 |
} |
|
330 |
||
331 |
// Used by template based interpreter deoptimization |
|
332 |
void frame::interpreter_frame_set_last_sp(intptr_t* sp) { |
|
333 |
*((intptr_t**)addr_at(interpreter_frame_last_sp_offset)) = sp; |
|
334 |
} |
|
335 |
||
336 |
frame frame::sender_for_entry_frame(RegisterMap* map) const { |
|
337 |
assert(map != NULL, "map must be set"); |
|
338 |
// Java frame called from C; skip all C frames and return top C |
|
339 |
// frame of that chunk as the sender |
|
340 |
JavaFrameAnchor* jfa = entry_frame_call_wrapper()->anchor(); |
|
341 |
assert(!entry_frame_is_first(), "next Java fp must be non zero"); |
|
342 |
assert(jfa->last_Java_sp() > sp(), "must be above this frame on stack"); |
|
40643 | 343 |
// Since we are walking the stack now this nested anchor is obviously walkable |
344 |
// even if it wasn't when it was stacked. |
|
345 |
if (!jfa->walkable()) { |
|
346 |
// Capture _last_Java_pc (if needed) and mark anchor walkable. |
|
347 |
jfa->capture_last_Java_pc(); |
|
348 |
} |
|
29183 | 349 |
map->clear(); |
350 |
assert(map->include_argument_oops(), "should be set by clear"); |
|
40643 | 351 |
vmassert(jfa->last_Java_pc() != NULL, "not walkable"); |
352 |
frame fr(jfa->last_Java_sp(), jfa->last_Java_fp(), jfa->last_Java_pc()); |
|
29183 | 353 |
return fr; |
354 |
} |
|
355 |
||
356 |
//------------------------------------------------------------------------------ |
|
357 |
// frame::verify_deopt_original_pc |
|
358 |
// |
|
359 |
// Verifies the calculated original PC of a deoptimization PC for the |
|
30552
ff209a4a81b5
8079564: Use FP register as proper frame pointer in JIT compiled code on aarch64
enevill
parents:
29192
diff
changeset
|
360 |
// given unextended SP. |
29183 | 361 |
#ifdef ASSERT |
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
362 |
void frame::verify_deopt_original_pc(CompiledMethod* nm, intptr_t* unextended_sp) { |
29183 | 363 |
frame fr; |
364 |
||
365 |
// This is ugly but it's better than to change {get,set}_original_pc |
|
366 |
// to take an SP value as argument. And it's only a debugging |
|
367 |
// method anyway. |
|
368 |
fr._unextended_sp = unextended_sp; |
|
369 |
||
370 |
address original_pc = nm->get_original_pc(&fr); |
|
371 |
assert(nm->insts_contains(original_pc), "original PC must be in nmethod"); |
|
372 |
} |
|
373 |
#endif |
|
374 |
||
375 |
//------------------------------------------------------------------------------ |
|
376 |
// frame::adjust_unextended_sp |
|
377 |
void frame::adjust_unextended_sp() { |
|
30552
ff209a4a81b5
8079564: Use FP register as proper frame pointer in JIT compiled code on aarch64
enevill
parents:
29192
diff
changeset
|
378 |
// On aarch64, sites calling method handle intrinsics and lambda forms are treated |
ff209a4a81b5
8079564: Use FP register as proper frame pointer in JIT compiled code on aarch64
enevill
parents:
29192
diff
changeset
|
379 |
// as any other call site. Therefore, no special action is needed when we are |
ff209a4a81b5
8079564: Use FP register as proper frame pointer in JIT compiled code on aarch64
enevill
parents:
29192
diff
changeset
|
380 |
// returning to any of these call sites. |
29183 | 381 |
|
38133
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
382 |
if (_cb != NULL) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
383 |
CompiledMethod* sender_cm = _cb->as_compiled_method_or_null(); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
384 |
if (sender_cm != NULL) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
385 |
// If the sender PC is a deoptimization point, get the original PC. |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
386 |
if (sender_cm->is_deopt_entry(_pc) || |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
387 |
sender_cm->is_deopt_mh_entry(_pc)) { |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
388 |
DEBUG_ONLY(verify_deopt_original_pc(sender_cm, _unextended_sp)); |
78b95467b9f1
8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents:
35232
diff
changeset
|
389 |
} |
29183 | 390 |
} |
391 |
} |
|
392 |
} |
|
393 |
||
394 |
//------------------------------------------------------------------------------ |
|
395 |
// frame::update_map_with_saved_link |
|
396 |
void frame::update_map_with_saved_link(RegisterMap* map, intptr_t** link_addr) { |
|
397 |
// The interpreter and compiler(s) always save fp in a known |
|
398 |
// location on entry. We must record where that location is |
|
399 |
// so that if fp was live on callout from c2 we can find |
|
400 |
// the saved copy no matter what it called. |
|
401 |
||
402 |
// Since the interpreter always saves fp if we record where it is then |
|
403 |
// we don't have to always save fp on entry and exit to c2 compiled |
|
404 |
// code, on entry will be enough. |
|
405 |
map->set_location(rfp->as_VMReg(), (address) link_addr); |
|
406 |
// this is weird "H" ought to be at a higher address however the |
|
407 |
// oopMaps seems to have the "H" regs at the same address and the |
|
408 |
// vanilla register. |
|
409 |
// XXXX make this go away |
|
410 |
if (true) { |
|
411 |
map->set_location(rfp->as_VMReg()->next(), (address) link_addr); |
|
412 |
} |
|
413 |
} |
|
414 |
||
415 |
||
416 |
//------------------------------------------------------------------------------ |
|
417 |
// frame::sender_for_interpreter_frame |
|
418 |
frame frame::sender_for_interpreter_frame(RegisterMap* map) const { |
|
419 |
// SP is the raw SP from the sender after adapter or interpreter |
|
420 |
// extension. |
|
421 |
intptr_t* sender_sp = this->sender_sp(); |
|
422 |
||
423 |
// This is the sp before any possible extension (adapter/locals). |
|
424 |
intptr_t* unextended_sp = interpreter_frame_sender_sp(); |
|
425 |
||
35148 | 426 |
#if defined(COMPILER2) || INCLUDE_JVMCI |
29183 | 427 |
if (map->update_map()) { |
428 |
update_map_with_saved_link(map, (intptr_t**) addr_at(link_offset)); |
|
429 |
} |
|
35148 | 430 |
#endif // COMPILER2 || INCLUDE_JVMCI |
29183 | 431 |
|
432 |
return frame(sender_sp, unextended_sp, link(), sender_pc()); |
|
433 |
} |
|
434 |
||
435 |
||
436 |
//------------------------------------------------------------------------------ |
|
437 |
// frame::sender_for_compiled_frame |
|
438 |
frame frame::sender_for_compiled_frame(RegisterMap* map) const { |
|
439 |
// we cannot rely upon the last fp having been saved to the thread |
|
440 |
// in C2 code but it will have been pushed onto the stack. so we |
|
441 |
// have to find it relative to the unextended sp |
|
442 |
||
443 |
assert(_cb->frame_size() >= 0, "must have non-zero frame size"); |
|
444 |
intptr_t* l_sender_sp = unextended_sp() + _cb->frame_size(); |
|
445 |
intptr_t* unextended_sp = l_sender_sp; |
|
446 |
||
447 |
// the return_address is always the word on the stack |
|
448 |
address sender_pc = (address) *(l_sender_sp-1); |
|
449 |
||
450 |
intptr_t** saved_fp_addr = (intptr_t**) (l_sender_sp - frame::sender_sp_offset); |
|
451 |
||
452 |
// assert (sender_sp() == l_sender_sp, "should be"); |
|
453 |
// assert (*saved_fp_addr == link(), "should be"); |
|
454 |
||
455 |
if (map->update_map()) { |
|
456 |
// Tell GC to use argument oopmaps for some runtime stubs that need it. |
|
457 |
// For C1, the runtime stub might not have oop maps, so set this flag |
|
458 |
// outside of update_register_map. |
|
459 |
map->set_include_argument_oops(_cb->caller_must_gc_arguments(map->thread())); |
|
460 |
if (_cb->oop_maps() != NULL) { |
|
461 |
OopMapSet::update_register_map(this, map); |
|
462 |
} |
|
463 |
||
464 |
// Since the prolog does the save and restore of FP there is no |
|
465 |
// oopmap for it so we must fill in its location as if there was |
|
466 |
// an oopmap entry since if our caller was compiled code there |
|
467 |
// could be live jvm state in it. |
|
468 |
update_map_with_saved_link(map, saved_fp_addr); |
|
469 |
} |
|
470 |
||
471 |
return frame(l_sender_sp, unextended_sp, *saved_fp_addr, sender_pc); |
|
472 |
} |
|
473 |
||
474 |
//------------------------------------------------------------------------------ |
|
475 |
// frame::sender |
|
476 |
frame frame::sender(RegisterMap* map) const { |
|
477 |
// Default is we done have to follow them. The sender_for_xxx will |
|
478 |
// update it accordingly |
|
479 |
map->set_include_argument_oops(false); |
|
480 |
||
481 |
if (is_entry_frame()) |
|
482 |
return sender_for_entry_frame(map); |
|
483 |
if (is_interpreted_frame()) |
|
484 |
return sender_for_interpreter_frame(map); |
|
485 |
assert(_cb == CodeCache::find_blob(pc()),"Must be the same"); |
|
486 |
||
487 |
// This test looks odd: why is it not is_compiled_frame() ? That's |
|
488 |
// because stubs also have OOP maps. |
|
489 |
if (_cb != NULL) { |
|
490 |
return sender_for_compiled_frame(map); |
|
491 |
} |
|
492 |
||
493 |
// Must be native-compiled frame, i.e. the marshaling code for native |
|
494 |
// methods that exists in the core system. |
|
495 |
return frame(sender_sp(), link(), sender_pc()); |
|
496 |
} |
|
497 |
||
498 |
bool frame::is_interpreted_frame_valid(JavaThread* thread) const { |
|
499 |
assert(is_interpreted_frame(), "Not an interpreted frame"); |
|
500 |
// These are reasonable sanity checks |
|
501 |
if (fp() == 0 || (intptr_t(fp()) & (wordSize-1)) != 0) { |
|
502 |
return false; |
|
503 |
} |
|
504 |
if (sp() == 0 || (intptr_t(sp()) & (wordSize-1)) != 0) { |
|
505 |
return false; |
|
506 |
} |
|
507 |
if (fp() + interpreter_frame_initial_sp_offset < sp()) { |
|
508 |
return false; |
|
509 |
} |
|
510 |
// These are hacks to keep us out of trouble. |
|
511 |
// The problem with these is that they mask other problems |
|
512 |
if (fp() <= sp()) { // this attempts to deal with unsigned comparison above |
|
513 |
return false; |
|
514 |
} |
|
515 |
||
516 |
// do some validation of frame elements |
|
517 |
||
518 |
// first the method |
|
519 |
||
520 |
Method* m = *interpreter_frame_method_addr(); |
|
521 |
||
522 |
// validate the method we'd find in this potential sender |
|
523 |
if (!m->is_valid_method()) return false; |
|
524 |
||
525 |
// stack frames shouldn't be much larger than max_stack elements |
|
29192
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
526 |
// this test requires the use of unextended_sp which is the sp as seen by |
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
527 |
// the current frame, and not sp which is the "raw" pc which could point |
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
528 |
// further because of local variables of the callee method inserted after |
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
529 |
// method arguments |
a7438efd99ec
8071947: AARCH64: frame::safe_for_sender() computes incorrect sender_sp value for interpreted frames
aph
parents:
29183
diff
changeset
|
530 |
if (fp() - unextended_sp() > 1024 + m->max_stack()*Interpreter::stackElementSize) { |
29183 | 531 |
return false; |
532 |
} |
|
533 |
||
534 |
// validate bci/bcx |
|
535 |
||
536 |
address bcp = interpreter_frame_bcp(); |
|
537 |
if (m->validate_bci_from_bcp(bcp) < 0) { |
|
538 |
return false; |
|
539 |
} |
|
540 |
||
541 |
// validate constantPoolCache* |
|
542 |
ConstantPoolCache* cp = *interpreter_frame_cache_addr(); |
|
543 |
if (cp == NULL || !cp->is_metaspace_object()) return false; |
|
544 |
||
545 |
// validate locals |
|
546 |
||
547 |
address locals = (address) *interpreter_frame_locals_addr(); |
|
548 |
||
549 |
if (locals > thread->stack_base() || locals < (address) fp()) return false; |
|
550 |
||
551 |
// We'd have to be pretty unlucky to be mislead at this point |
|
552 |
return true; |
|
553 |
} |
|
554 |
||
555 |
BasicType frame::interpreter_frame_result(oop* oop_result, jvalue* value_result) { |
|
556 |
assert(is_interpreted_frame(), "interpreted frame expected"); |
|
557 |
Method* method = interpreter_frame_method(); |
|
558 |
BasicType type = method->result_type(); |
|
559 |
||
560 |
intptr_t* tos_addr; |
|
561 |
if (method->is_native()) { |
|
562 |
// TODO : ensure AARCH64 does the same as Intel here i.e. push v0 then r0 |
|
563 |
// Prior to calling into the runtime to report the method_exit the possible |
|
564 |
// return value is pushed to the native stack. If the result is a jfloat/jdouble |
|
565 |
// then ST0 is saved before EAX/EDX. See the note in generate_native_result |
|
566 |
tos_addr = (intptr_t*)sp(); |
|
567 |
if (type == T_FLOAT || type == T_DOUBLE) { |
|
568 |
// This is times two because we do a push(ltos) after pushing XMM0 |
|
569 |
// and that takes two interpreter stack slots. |
|
570 |
tos_addr += 2 * Interpreter::stackElementWords; |
|
571 |
} |
|
572 |
} else { |
|
573 |
tos_addr = (intptr_t*)interpreter_frame_tos_address(); |
|
574 |
} |
|
575 |
||
576 |
switch (type) { |
|
577 |
case T_OBJECT : |
|
578 |
case T_ARRAY : { |
|
579 |
oop obj; |
|
580 |
if (method->is_native()) { |
|
581 |
obj = cast_to_oop(at(interpreter_frame_oop_temp_offset)); |
|
582 |
} else { |
|
583 |
oop* obj_p = (oop*)tos_addr; |
|
584 |
obj = (obj_p == NULL) ? (oop)NULL : *obj_p; |
|
585 |
} |
|
586 |
assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check"); |
|
587 |
*oop_result = obj; |
|
588 |
break; |
|
589 |
} |
|
590 |
case T_BOOLEAN : value_result->z = *(jboolean*)tos_addr; break; |
|
591 |
case T_BYTE : value_result->b = *(jbyte*)tos_addr; break; |
|
592 |
case T_CHAR : value_result->c = *(jchar*)tos_addr; break; |
|
593 |
case T_SHORT : value_result->s = *(jshort*)tos_addr; break; |
|
594 |
case T_INT : value_result->i = *(jint*)tos_addr; break; |
|
595 |
case T_LONG : value_result->j = *(jlong*)tos_addr; break; |
|
596 |
case T_FLOAT : { |
|
597 |
value_result->f = *(jfloat*)tos_addr; |
|
598 |
break; |
|
599 |
} |
|
600 |
case T_DOUBLE : value_result->d = *(jdouble*)tos_addr; break; |
|
601 |
case T_VOID : /* Nothing to do */ break; |
|
602 |
default : ShouldNotReachHere(); |
|
603 |
} |
|
604 |
||
605 |
return type; |
|
606 |
} |
|
607 |
||
608 |
||
609 |
intptr_t* frame::interpreter_frame_tos_at(jint offset) const { |
|
610 |
int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize); |
|
611 |
return &interpreter_frame_tos_address()[index]; |
|
612 |
} |
|
613 |
||
614 |
#ifndef PRODUCT |
|
615 |
||
616 |
#define DESCRIBE_FP_OFFSET(name) \ |
|
617 |
values.describe(frame_no, fp() + frame::name##_offset, #name) |
|
618 |
||
619 |
void frame::describe_pd(FrameValues& values, int frame_no) { |
|
620 |
if (is_interpreted_frame()) { |
|
621 |
DESCRIBE_FP_OFFSET(interpreter_frame_sender_sp); |
|
622 |
DESCRIBE_FP_OFFSET(interpreter_frame_last_sp); |
|
623 |
DESCRIBE_FP_OFFSET(interpreter_frame_method); |
|
624 |
DESCRIBE_FP_OFFSET(interpreter_frame_mdp); |
|
625 |
DESCRIBE_FP_OFFSET(interpreter_frame_cache); |
|
626 |
DESCRIBE_FP_OFFSET(interpreter_frame_locals); |
|
627 |
DESCRIBE_FP_OFFSET(interpreter_frame_bcp); |
|
628 |
DESCRIBE_FP_OFFSET(interpreter_frame_initial_sp); |
|
629 |
} |
|
630 |
} |
|
631 |
#endif |
|
632 |
||
633 |
intptr_t *frame::initial_deoptimization_info() { |
|
634 |
// Not used on aarch64, but we must return something. |
|
635 |
return NULL; |
|
636 |
} |
|
637 |
||
638 |
intptr_t* frame::real_fp() const { |
|
639 |
if (_cb != NULL) { |
|
640 |
// use the frame size if valid |
|
641 |
int size = _cb->frame_size(); |
|
642 |
if (size > 0) { |
|
643 |
return unextended_sp() + size; |
|
644 |
} |
|
645 |
} |
|
646 |
// else rely on fp() |
|
647 |
assert(! is_compiled_frame(), "unknown compiled frame size"); |
|
648 |
return fp(); |
|
649 |
} |
|
650 |
||
651 |
#undef DESCRIBE_FP_OFFSET |
|
652 |
||
653 |
#define DESCRIBE_FP_OFFSET(name) \ |
|
654 |
{ \ |
|
655 |
unsigned long *p = (unsigned long *)fp; \ |
|
656 |
printf("0x%016lx 0x%016lx %s\n", (unsigned long)(p + frame::name##_offset), \ |
|
657 |
p[frame::name##_offset], #name); \ |
|
658 |
} |
|
659 |
||
660 |
static __thread unsigned long nextfp; |
|
661 |
static __thread unsigned long nextpc; |
|
662 |
static __thread unsigned long nextsp; |
|
663 |
static __thread RegisterMap *reg_map; |
|
664 |
||
665 |
static void printbc(Method *m, intptr_t bcx) { |
|
666 |
const char *name; |
|
667 |
char buf[16]; |
|
668 |
if (m->validate_bci_from_bcp((address)bcx) < 0 |
|
669 |
|| !m->contains((address)bcx)) { |
|
670 |
name = "???"; |
|
671 |
snprintf(buf, sizeof buf, "(bad)"); |
|
672 |
} else { |
|
673 |
int bci = m->bci_from((address)bcx); |
|
674 |
snprintf(buf, sizeof buf, "%d", bci); |
|
675 |
name = Bytecodes::name(m->code_at(bci)); |
|
676 |
} |
|
677 |
ResourceMark rm; |
|
678 |
printf("%s : %s ==> %s\n", m->name_and_sig_as_C_string(), buf, name); |
|
679 |
} |
|
680 |
||
681 |
void internal_pf(unsigned long sp, unsigned long fp, unsigned long pc, unsigned long bcx) { |
|
682 |
if (! fp) |
|
683 |
return; |
|
684 |
||
685 |
DESCRIBE_FP_OFFSET(return_addr); |
|
686 |
DESCRIBE_FP_OFFSET(link); |
|
687 |
DESCRIBE_FP_OFFSET(interpreter_frame_sender_sp); |
|
688 |
DESCRIBE_FP_OFFSET(interpreter_frame_last_sp); |
|
689 |
DESCRIBE_FP_OFFSET(interpreter_frame_method); |
|
690 |
DESCRIBE_FP_OFFSET(interpreter_frame_mdp); |
|
691 |
DESCRIBE_FP_OFFSET(interpreter_frame_cache); |
|
692 |
DESCRIBE_FP_OFFSET(interpreter_frame_locals); |
|
693 |
DESCRIBE_FP_OFFSET(interpreter_frame_bcp); |
|
694 |
DESCRIBE_FP_OFFSET(interpreter_frame_initial_sp); |
|
695 |
unsigned long *p = (unsigned long *)fp; |
|
696 |
||
697 |
// We want to see all frames, native and Java. For compiled and |
|
698 |
// interpreted frames we have special information that allows us to |
|
699 |
// unwind them; for everything else we assume that the native frame |
|
700 |
// pointer chain is intact. |
|
701 |
frame this_frame((intptr_t*)sp, (intptr_t*)fp, (address)pc); |
|
702 |
if (this_frame.is_compiled_frame() || |
|
703 |
this_frame.is_interpreted_frame()) { |
|
704 |
frame sender = this_frame.sender(reg_map); |
|
705 |
nextfp = (unsigned long)sender.fp(); |
|
706 |
nextpc = (unsigned long)sender.pc(); |
|
707 |
nextsp = (unsigned long)sender.unextended_sp(); |
|
708 |
} else { |
|
709 |
nextfp = p[frame::link_offset]; |
|
710 |
nextpc = p[frame::return_addr_offset]; |
|
711 |
nextsp = (unsigned long)&p[frame::sender_sp_offset]; |
|
712 |
} |
|
713 |
||
714 |
if (bcx == -1ul) |
|
715 |
bcx = p[frame::interpreter_frame_bcp_offset]; |
|
716 |
||
717 |
if (Interpreter::contains((address)pc)) { |
|
718 |
Method* m = (Method*)p[frame::interpreter_frame_method_offset]; |
|
719 |
if(m && m->is_method()) { |
|
720 |
printbc(m, bcx); |
|
721 |
} else |
|
722 |
printf("not a Method\n"); |
|
723 |
} else { |
|
724 |
CodeBlob *cb = CodeCache::find_blob((address)pc); |
|
725 |
if (cb != NULL) { |
|
726 |
if (cb->is_nmethod()) { |
|
727 |
ResourceMark rm; |
|
728 |
nmethod* nm = (nmethod*)cb; |
|
729 |
printf("nmethod %s\n", nm->method()->name_and_sig_as_C_string()); |
|
730 |
} else if (cb->name()) { |
|
731 |
printf("CodeBlob %s\n", cb->name()); |
|
732 |
} |
|
733 |
} |
|
734 |
} |
|
735 |
} |
|
736 |
||
737 |
extern "C" void npf() { |
|
738 |
CodeBlob *cb = CodeCache::find_blob((address)nextpc); |
|
739 |
// C2 does not always chain the frame pointers when it can, instead |
|
740 |
// preferring to use fixed offsets from SP, so a simple leave() does |
|
741 |
// not work. Instead, it adds the frame size to SP then pops FP and |
|
742 |
// LR. We have to do the same thing to get a good call chain. |
|
743 |
if (cb && cb->frame_size()) |
|
744 |
nextfp = nextsp + wordSize * (cb->frame_size() - 2); |
|
745 |
internal_pf (nextsp, nextfp, nextpc, -1); |
|
746 |
} |
|
747 |
||
748 |
extern "C" void pf(unsigned long sp, unsigned long fp, unsigned long pc, |
|
749 |
unsigned long bcx, unsigned long thread) { |
|
750 |
RegisterMap map((JavaThread*)thread, false); |
|
751 |
if (!reg_map) { |
|
752 |
reg_map = (RegisterMap*)os::malloc(sizeof map, mtNone); |
|
753 |
} |
|
754 |
memcpy(reg_map, &map, sizeof map); |
|
755 |
{ |
|
756 |
CodeBlob *cb = CodeCache::find_blob((address)pc); |
|
757 |
if (cb && cb->frame_size()) |
|
758 |
fp = sp + wordSize * (cb->frame_size() - 2); |
|
759 |
} |
|
760 |
internal_pf(sp, fp, pc, bcx); |
|
761 |
} |
|
762 |
||
763 |
// support for printing out where we are in a Java method |
|
764 |
// needs to be passed current fp and bcp register values |
|
765 |
// prints method name, bc index and bytecode name |
|
766 |
extern "C" void pm(unsigned long fp, unsigned long bcx) { |
|
767 |
DESCRIBE_FP_OFFSET(interpreter_frame_method); |
|
768 |
unsigned long *p = (unsigned long *)fp; |
|
769 |
Method* m = (Method*)p[frame::interpreter_frame_method_offset]; |
|
770 |
printbc(m, bcx); |
|
771 |
} |
|
772 |
||
773 |
#ifndef PRODUCT |
|
774 |
// This is a generic constructor which is only used by pns() in debug.cpp. |
|
775 |
frame::frame(void* sp, void* fp, void* pc) { |
|
776 |
init((intptr_t*)sp, (intptr_t*)fp, (address)pc); |
|
777 |
} |
|
778 |
#endif |
|
40643 | 779 |
|
780 |
void JavaFrameAnchor::make_walkable(JavaThread* thread) { |
|
781 |
// last frame set? |
|
782 |
if (last_Java_sp() == NULL) return; |
|
783 |
// already walkable? |
|
784 |
if (walkable()) return; |
|
785 |
vmassert(Thread::current() == (Thread*)thread, "not current thread"); |
|
786 |
vmassert(last_Java_sp() != NULL, "not called from Java code?"); |
|
787 |
vmassert(last_Java_pc() == NULL, "already walkable"); |
|
788 |
capture_last_Java_pc(); |
|
789 |
vmassert(walkable(), "something went wrong"); |
|
790 |
} |
|
791 |
||
792 |
void JavaFrameAnchor::capture_last_Java_pc() { |
|
793 |
vmassert(_last_Java_sp != NULL, "no last frame set"); |
|
794 |
vmassert(_last_Java_pc == NULL, "already walkable"); |
|
795 |
_last_Java_pc = (address)_last_Java_sp[-1]; |
|
796 |
} |