author | coleenp |
Tue, 22 Dec 2015 11:11:29 -0500 | |
changeset 35214 | d86005e0b4c2 |
parent 35071 | a0910b1d3e0d |
child 38074 | 8475fdc6dcc3 |
child 38133 | 78b95467b9f1 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
31389 | 2 |
* Copyright (c) 1997, 2015, 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" |
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
25328
diff
changeset
|
26 |
#include "code/codeCache.hpp" |
7397 | 27 |
#include "interpreter/interpreter.hpp" |
28 |
#include "memory/resourceArea.hpp" |
|
29 |
#include "oops/markOop.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
30 |
#include "oops/method.hpp" |
7397 | 31 |
#include "oops/oop.inline.hpp" |
11632 | 32 |
#include "prims/methodHandles.hpp" |
7397 | 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/signature.hpp" |
|
38 |
#include "runtime/stubCodeGenerator.hpp" |
|
39 |
#include "runtime/stubRoutines.hpp" |
|
40 |
#include "vmreg_sparc.inline.hpp" |
|
41 |
#ifdef COMPILER1 |
|
42 |
#include "c1/c1_Runtime1.hpp" |
|
43 |
#include "runtime/vframeArray.hpp" |
|
44 |
#endif |
|
1 | 45 |
|
46 |
void RegisterMap::pd_clear() { |
|
47 |
if (_thread->has_last_Java_frame()) { |
|
48 |
frame fr = _thread->last_frame(); |
|
49 |
_window = fr.sp(); |
|
50 |
} else { |
|
51 |
_window = NULL; |
|
52 |
} |
|
53 |
_younger_window = NULL; |
|
54 |
} |
|
55 |
||
56 |
||
57 |
// Unified register numbering scheme: each 32-bits counts as a register |
|
58 |
// number, so all the V9 registers take 2 slots. |
|
59 |
const static int R_L_nums[] = {0+040,2+040,4+040,6+040,8+040,10+040,12+040,14+040}; |
|
60 |
const static int R_I_nums[] = {0+060,2+060,4+060,6+060,8+060,10+060,12+060,14+060}; |
|
61 |
const static int R_O_nums[] = {0+020,2+020,4+020,6+020,8+020,10+020,12+020,14+020}; |
|
62 |
const static int R_G_nums[] = {0+000,2+000,4+000,6+000,8+000,10+000,12+000,14+000}; |
|
63 |
static RegisterMap::LocationValidType bad_mask = 0; |
|
64 |
static RegisterMap::LocationValidType R_LIO_mask = 0; |
|
65 |
static bool register_map_inited = false; |
|
66 |
||
67 |
static void register_map_init() { |
|
68 |
if (!register_map_inited) { |
|
69 |
register_map_inited = true; |
|
70 |
int i; |
|
71 |
for (i = 0; i < 8; i++) { |
|
72 |
assert(R_L_nums[i] < RegisterMap::location_valid_type_size, "in first chunk"); |
|
73 |
assert(R_I_nums[i] < RegisterMap::location_valid_type_size, "in first chunk"); |
|
74 |
assert(R_O_nums[i] < RegisterMap::location_valid_type_size, "in first chunk"); |
|
75 |
assert(R_G_nums[i] < RegisterMap::location_valid_type_size, "in first chunk"); |
|
76 |
} |
|
77 |
||
78 |
bad_mask |= (1LL << R_O_nums[6]); // SP |
|
79 |
bad_mask |= (1LL << R_O_nums[7]); // cPC |
|
80 |
bad_mask |= (1LL << R_I_nums[6]); // FP |
|
81 |
bad_mask |= (1LL << R_I_nums[7]); // rPC |
|
82 |
bad_mask |= (1LL << R_G_nums[2]); // TLS |
|
83 |
bad_mask |= (1LL << R_G_nums[7]); // reserved by libthread |
|
84 |
||
85 |
for (i = 0; i < 8; i++) { |
|
86 |
R_LIO_mask |= (1LL << R_L_nums[i]); |
|
87 |
R_LIO_mask |= (1LL << R_I_nums[i]); |
|
88 |
R_LIO_mask |= (1LL << R_O_nums[i]); |
|
89 |
} |
|
90 |
} |
|
91 |
} |
|
92 |
||
93 |
||
94 |
address RegisterMap::pd_location(VMReg regname) const { |
|
95 |
register_map_init(); |
|
96 |
||
97 |
assert(regname->is_reg(), "sanity check"); |
|
98 |
// Only the GPRs get handled this way |
|
99 |
if( !regname->is_Register()) |
|
100 |
return NULL; |
|
101 |
||
102 |
// don't talk about bad registers |
|
103 |
if ((bad_mask & ((LocationValidType)1 << regname->value())) != 0) { |
|
104 |
return NULL; |
|
105 |
} |
|
106 |
||
107 |
// Convert to a GPR |
|
108 |
Register reg; |
|
109 |
int second_word = 0; |
|
110 |
// 32-bit registers for in, out and local |
|
111 |
if (!regname->is_concrete()) { |
|
112 |
// HMM ought to return NULL for any non-concrete (odd) vmreg |
|
113 |
// this all tied up in the fact we put out double oopMaps for |
|
114 |
// register locations. When that is fixed we'd will return NULL |
|
115 |
// (or assert here). |
|
116 |
reg = regname->prev()->as_Register(); |
|
117 |
#ifdef _LP64 |
|
118 |
second_word = sizeof(jint); |
|
119 |
#else |
|
120 |
return NULL; |
|
121 |
#endif // _LP64 |
|
122 |
} else { |
|
123 |
reg = regname->as_Register(); |
|
124 |
} |
|
125 |
if (reg->is_out()) { |
|
126 |
assert(_younger_window != NULL, "Younger window should be available"); |
|
127 |
return second_word + (address)&_younger_window[reg->after_save()->sp_offset_in_saved_window()]; |
|
128 |
} |
|
129 |
if (reg->is_local() || reg->is_in()) { |
|
130 |
assert(_window != NULL, "Window should be available"); |
|
131 |
return second_word + (address)&_window[reg->sp_offset_in_saved_window()]; |
|
132 |
} |
|
133 |
// Only the window'd GPRs get handled this way; not the globals. |
|
134 |
return NULL; |
|
135 |
} |
|
136 |
||
137 |
||
138 |
#ifdef ASSERT |
|
139 |
void RegisterMap::check_location_valid() { |
|
140 |
register_map_init(); |
|
141 |
assert((_location_valid[0] & bad_mask) == 0, "cannot have special locations for SP,FP,TLS,etc."); |
|
142 |
} |
|
143 |
#endif |
|
144 |
||
145 |
// We are shifting windows. That means we are moving all %i to %o, |
|
146 |
// getting rid of all current %l, and keeping all %g. This is only |
|
147 |
// complicated if any of the location pointers for these are valid. |
|
148 |
// The normal case is that everything is in its standard register window |
|
149 |
// home, and _location_valid[0] is zero. In that case, this routine |
|
150 |
// does exactly nothing. |
|
151 |
void RegisterMap::shift_individual_registers() { |
|
152 |
if (!update_map()) return; // this only applies to maps with locations |
|
153 |
register_map_init(); |
|
154 |
check_location_valid(); |
|
155 |
||
156 |
LocationValidType lv = _location_valid[0]; |
|
157 |
LocationValidType lv0 = lv; |
|
158 |
||
159 |
lv &= ~R_LIO_mask; // clear %l, %o, %i regs |
|
160 |
||
161 |
// if we cleared some non-%g locations, we may have to do some shifting |
|
162 |
if (lv != lv0) { |
|
163 |
// copy %i0-%i5 to %o0-%o5, if they have special locations |
|
164 |
// This can happen in within stubs which spill argument registers |
|
165 |
// around a dynamic link operation, such as resolve_opt_virtual_call. |
|
166 |
for (int i = 0; i < 8; i++) { |
|
167 |
if (lv0 & (1LL << R_I_nums[i])) { |
|
168 |
_location[R_O_nums[i]] = _location[R_I_nums[i]]; |
|
169 |
lv |= (1LL << R_O_nums[i]); |
|
170 |
} |
|
171 |
} |
|
172 |
} |
|
173 |
||
174 |
_location_valid[0] = lv; |
|
175 |
check_location_valid(); |
|
176 |
} |
|
177 |
||
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
178 |
bool frame::safe_for_sender(JavaThread *thread) { |
1 | 179 |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
180 |
address _SP = (address) sp(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
181 |
address _FP = (address) fp(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
182 |
address _UNEXTENDED_SP = (address) unextended_sp(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
183 |
// sp must be within the stack |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
184 |
bool sp_safe = (_SP <= thread->stack_base()) && |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
185 |
(_SP >= thread->stack_base() - thread->stack_size()); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
186 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
187 |
if (!sp_safe) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
188 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
189 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
190 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
191 |
// unextended sp must be within the stack and above or equal sp |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
192 |
bool unextended_sp_safe = (_UNEXTENDED_SP <= thread->stack_base()) && |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
193 |
(_UNEXTENDED_SP >= _SP); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
194 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
195 |
if (!unextended_sp_safe) return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
196 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
197 |
// an fp must be within the stack and above (but not equal) sp |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
198 |
bool fp_safe = (_FP <= thread->stack_base()) && |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
199 |
(_FP > _SP); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
200 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
201 |
// We know sp/unextended_sp are safe only fp is questionable here |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
202 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
203 |
// If the current frame is known to the code cache then we can attempt to |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
204 |
// to construct the sender and do some validation of it. This goes a long way |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
205 |
// toward eliminating issues when we get in frame construction code |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
206 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
207 |
if (_cb != NULL ) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
208 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
209 |
// First check if frame is complete and tester is reliable |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
210 |
// Unfortunately we can only check frame complete for runtime stubs and nmethod |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
211 |
// other generic buffer blobs are more problematic so we just assume they are |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
212 |
// ok. adapter blobs never have a frame complete and are never ok. |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
213 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
214 |
if (!_cb->is_frame_complete_at(_pc)) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
215 |
if (_cb->is_nmethod() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
216 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
217 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
218 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
219 |
|
15801
fefae82e1067
8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity
rbackman
parents:
14579
diff
changeset
|
220 |
// Could just be some random pointer within the codeBlob |
fefae82e1067
8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity
rbackman
parents:
14579
diff
changeset
|
221 |
if (!_cb->code_contains(_pc)) { |
fefae82e1067
8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity
rbackman
parents:
14579
diff
changeset
|
222 |
return false; |
fefae82e1067
8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity
rbackman
parents:
14579
diff
changeset
|
223 |
} |
fefae82e1067
8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity
rbackman
parents:
14579
diff
changeset
|
224 |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
225 |
// Entry frame checks |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
226 |
if (is_entry_frame()) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
227 |
// an entry frame must have a valid fp. |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
228 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
229 |
if (!fp_safe) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
230 |
return false; |
1 | 231 |
} |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
232 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
233 |
// Validate the JavaCallWrapper an entry frame must have |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
234 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
235 |
address jcw = (address)entry_frame_call_wrapper(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
236 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
237 |
bool jcw_safe = (jcw <= thread->stack_base()) && ( jcw > _FP); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
238 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
239 |
return jcw_safe; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
240 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
241 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
242 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
243 |
intptr_t* younger_sp = sp(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
244 |
intptr_t* _SENDER_SP = sender_sp(); // sender is actually just _FP |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
245 |
bool adjusted_stack = is_interpreted_frame(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
246 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
247 |
address sender_pc = (address)younger_sp[I7->sp_offset_in_saved_window()] + pc_return_offset; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
248 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
249 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
250 |
// We must always be able to find a recognizable pc |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
251 |
CodeBlob* sender_blob = CodeCache::find_blob_unsafe(sender_pc); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
252 |
if (sender_pc == NULL || sender_blob == NULL) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
253 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
254 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
255 |
|
18025 | 256 |
// Could be a zombie method |
257 |
if (sender_blob->is_zombie() || sender_blob->is_unloaded()) { |
|
258 |
return false; |
|
259 |
} |
|
260 |
||
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
261 |
// It should be safe to construct the sender though it might not be valid |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
262 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
263 |
frame sender(_SENDER_SP, younger_sp, adjusted_stack); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
264 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
265 |
// Do we have a valid fp? |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
266 |
address sender_fp = (address) sender.fp(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
267 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
268 |
// an fp must be within the stack and above (but not equal) current frame's _FP |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
269 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
270 |
bool sender_fp_safe = (sender_fp <= thread->stack_base()) && |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
271 |
(sender_fp > _FP); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
272 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
273 |
if (!sender_fp_safe) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
274 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
275 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
276 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
277 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
278 |
// If the potential sender is the interpreter then we can do some more checking |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
279 |
if (Interpreter::contains(sender_pc)) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
280 |
return sender.is_interpreted_frame_valid(thread); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
281 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
282 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
283 |
// Could just be some random pointer within the codeBlob |
6418 | 284 |
if (!sender.cb()->code_contains(sender_pc)) { |
285 |
return false; |
|
286 |
} |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
287 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
288 |
// We should never be able to see an adapter if the current frame is something from code cache |
6418 | 289 |
if (sender_blob->is_adapter_blob()) { |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
290 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
291 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
292 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
293 |
if( sender.is_entry_frame()) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
294 |
// Validate the JavaCallWrapper an entry frame must have |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
295 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
296 |
address jcw = (address)sender.entry_frame_call_wrapper(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
297 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
298 |
bool jcw_safe = (jcw <= thread->stack_base()) && ( jcw > sender_fp); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
299 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
300 |
return jcw_safe; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
301 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
302 |
|
18025 | 303 |
// If the frame size is 0 something (or less) is bad because every nmethod has a non-zero frame size |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
304 |
// because you must allocate window space |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
305 |
|
18025 | 306 |
if (sender_blob->frame_size() <= 0) { |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
307 |
assert(!sender_blob->is_nmethod(), "should count return address at least"); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
308 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
309 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
310 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
311 |
// The sender should positively be an nmethod or call_stub. On sparc we might in fact see something else. |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
312 |
// The cause of this is because at a save instruction the O7 we get is a leftover from an earlier |
17006 | 313 |
// window use. So if a runtime stub creates two frames (common in fastdebug/debug) then we see the |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
314 |
// stale pc. So if the sender blob is not something we'd expect we have little choice but to declare |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
315 |
// the stack unwalkable. pd_get_top_frame_for_signal_handler tries to recover from this by unwinding |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
316 |
// that initial frame and retrying. |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
317 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
318 |
if (!sender_blob->is_nmethod()) { |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
319 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
320 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
321 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
322 |
// Could put some more validation for the potential non-interpreted sender |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
323 |
// frame we'd create by calling sender if I could think of any. Wait for next crash in forte... |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
324 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
325 |
// One idea is seeing if the sender_pc we have is one that we'd expect to call to current cb |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
326 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
327 |
// We've validated the potential sender that would be created |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
328 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
329 |
return true; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
330 |
|
1 | 331 |
} |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
332 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
333 |
// Must be native-compiled frame. Since sender will try and use fp to find |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
334 |
// linkages it must be safe |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
335 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
336 |
if (!fp_safe) return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
337 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
338 |
// could try and do some more potential verification of native frame if we could think of some... |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
339 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
340 |
return true; |
1 | 341 |
} |
342 |
||
343 |
// constructors |
|
344 |
||
345 |
// Construct an unpatchable, deficient frame |
|
26821
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
346 |
void frame::init(intptr_t* sp, address pc, CodeBlob* cb) { |
1 | 347 |
#ifdef _LP64 |
348 |
assert( (((intptr_t)sp & (wordSize-1)) == 0), "frame constructor passed an invalid sp"); |
|
349 |
#endif |
|
350 |
_sp = sp; |
|
351 |
_younger_sp = NULL; |
|
352 |
_pc = pc; |
|
353 |
_cb = cb; |
|
354 |
_sp_adjustment_by_callee = 0; |
|
355 |
assert(pc == NULL && cb == NULL || pc != NULL, "can't have a cb and no pc!"); |
|
356 |
if (_cb == NULL && _pc != NULL ) { |
|
357 |
_cb = CodeCache::find_blob(_pc); |
|
358 |
} |
|
359 |
_deopt_state = unknown; |
|
360 |
#ifdef ASSERT |
|
361 |
if ( _cb != NULL && _cb->is_nmethod()) { |
|
362 |
// Without a valid unextended_sp() we can't convert the pc to "original" |
|
363 |
assert(!((nmethod*)_cb)->is_deopt_pc(_pc), "invariant broken"); |
|
364 |
} |
|
365 |
#endif // ASSERT |
|
366 |
} |
|
367 |
||
26821
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
368 |
frame::frame(intptr_t* sp, unpatchable_t, address pc, CodeBlob* cb) { |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
369 |
init(sp, pc, cb); |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
370 |
} |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
371 |
|
5687 | 372 |
frame::frame(intptr_t* sp, intptr_t* younger_sp, bool younger_frame_is_interpreted) : |
373 |
_sp(sp), |
|
374 |
_younger_sp(younger_sp), |
|
375 |
_deopt_state(unknown), |
|
376 |
_sp_adjustment_by_callee(0) { |
|
1 | 377 |
if (younger_sp == NULL) { |
378 |
// make a deficient frame which doesn't know where its PC is |
|
379 |
_pc = NULL; |
|
380 |
_cb = NULL; |
|
381 |
} else { |
|
382 |
_pc = (address)younger_sp[I7->sp_offset_in_saved_window()] + pc_return_offset; |
|
383 |
assert( (intptr_t*)younger_sp[FP->sp_offset_in_saved_window()] == (intptr_t*)((intptr_t)sp - STACK_BIAS), "younger_sp must be valid"); |
|
384 |
// Any frame we ever build should always "safe" therefore we should not have to call |
|
385 |
// find_blob_unsafe |
|
386 |
// In case of native stubs, the pc retrieved here might be |
|
387 |
// wrong. (the _last_native_pc will have the right value) |
|
388 |
// So do not put add any asserts on the _pc here. |
|
389 |
} |
|
5687 | 390 |
|
391 |
if (_pc != NULL) |
|
392 |
_cb = CodeCache::find_blob(_pc); |
|
393 |
||
394 |
// Check for MethodHandle call sites. |
|
395 |
if (_cb != NULL) { |
|
396 |
nmethod* nm = _cb->as_nmethod_or_null(); |
|
397 |
if (nm != NULL) { |
|
398 |
if (nm->is_deopt_mh_entry(_pc) || nm->is_method_handle_return(_pc)) { |
|
399 |
_sp_adjustment_by_callee = (intptr_t*) ((intptr_t) sp[L7_mh_SP_save->sp_offset_in_saved_window()] + STACK_BIAS) - sp; |
|
400 |
// The SP is already adjusted by this MH call site, don't |
|
401 |
// overwrite this value with the wrong interpreter value. |
|
402 |
younger_frame_is_interpreted = false; |
|
403 |
} |
|
404 |
} |
|
1 | 405 |
} |
406 |
||
5687 | 407 |
if (younger_frame_is_interpreted) { |
408 |
// compute adjustment to this frame's SP made by its interpreted callee |
|
409 |
_sp_adjustment_by_callee = (intptr_t*) ((intptr_t) younger_sp[I5_savedSP->sp_offset_in_saved_window()] + STACK_BIAS) - sp; |
|
410 |
} |
|
1 | 411 |
|
5687 | 412 |
// It is important that the frame is fully constructed when we do |
413 |
// this lookup as get_deopt_original_pc() needs a correct value for |
|
414 |
// unextended_sp() which uses _sp_adjustment_by_callee. |
|
1 | 415 |
if (_pc != NULL) { |
4752 | 416 |
address original_pc = nmethod::get_deopt_original_pc(this); |
417 |
if (original_pc != NULL) { |
|
418 |
_pc = original_pc; |
|
1 | 419 |
_deopt_state = is_deoptimized; |
420 |
} else { |
|
421 |
_deopt_state = not_deoptimized; |
|
422 |
} |
|
423 |
} |
|
424 |
} |
|
425 |
||
26821
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
426 |
#ifndef PRODUCT |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
427 |
// This is a generic constructor which is only used by pns() in debug.cpp. |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
428 |
frame::frame(void* sp, void* fp, void* pc) { |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
429 |
init((intptr_t*)sp, (address)pc, NULL); |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
430 |
} |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
431 |
#endif |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25717
diff
changeset
|
432 |
|
1 | 433 |
bool frame::is_interpreted_frame() const { |
434 |
return Interpreter::contains(pc()); |
|
435 |
} |
|
436 |
||
437 |
// sender_sp |
|
438 |
||
439 |
intptr_t* frame::interpreter_frame_sender_sp() const { |
|
440 |
assert(is_interpreted_frame(), "interpreted frame expected"); |
|
441 |
return fp(); |
|
442 |
} |
|
443 |
||
444 |
void frame::set_interpreter_frame_sender_sp(intptr_t* sender_sp) { |
|
445 |
assert(is_interpreted_frame(), "interpreted frame expected"); |
|
446 |
Unimplemented(); |
|
447 |
} |
|
448 |
||
449 |
frame frame::sender_for_entry_frame(RegisterMap *map) const { |
|
450 |
assert(map != NULL, "map must be set"); |
|
451 |
// Java frame called from C; skip all C frames and return top C |
|
452 |
// frame of that chunk as the sender |
|
453 |
JavaFrameAnchor* jfa = entry_frame_call_wrapper()->anchor(); |
|
454 |
assert(!entry_frame_is_first(), "next Java fp must be non zero"); |
|
455 |
assert(jfa->last_Java_sp() > _sp, "must be above this frame on stack"); |
|
456 |
intptr_t* last_Java_sp = jfa->last_Java_sp(); |
|
457 |
// Since we are walking the stack now this nested anchor is obviously walkable |
|
458 |
// even if it wasn't when it was stacked. |
|
459 |
if (!jfa->walkable()) { |
|
460 |
// Capture _last_Java_pc (if needed) and mark anchor walkable. |
|
461 |
jfa->capture_last_Java_pc(_sp); |
|
462 |
} |
|
463 |
assert(jfa->last_Java_pc() != NULL, "No captured pc!"); |
|
464 |
map->clear(); |
|
465 |
map->make_integer_regs_unsaved(); |
|
466 |
map->shift_window(last_Java_sp, NULL); |
|
467 |
assert(map->include_argument_oops(), "should be set by clear"); |
|
468 |
return frame(last_Java_sp, frame::unpatchable, jfa->last_Java_pc()); |
|
469 |
} |
|
470 |
||
471 |
frame frame::sender_for_interpreter_frame(RegisterMap *map) const { |
|
472 |
ShouldNotCallThis(); |
|
473 |
return sender(map); |
|
474 |
} |
|
475 |
||
476 |
frame frame::sender_for_compiled_frame(RegisterMap *map) const { |
|
477 |
ShouldNotCallThis(); |
|
478 |
return sender(map); |
|
479 |
} |
|
480 |
||
481 |
frame frame::sender(RegisterMap* map) const { |
|
482 |
assert(map != NULL, "map must be set"); |
|
483 |
||
484 |
assert(CodeCache::find_blob_unsafe(_pc) == _cb, "inconsistent"); |
|
485 |
||
486 |
// Default is not to follow arguments; update it accordingly below |
|
487 |
map->set_include_argument_oops(false); |
|
488 |
||
489 |
if (is_entry_frame()) return sender_for_entry_frame(map); |
|
490 |
||
5687 | 491 |
intptr_t* younger_sp = sp(); |
492 |
intptr_t* sp = sender_sp(); |
|
1 | 493 |
|
494 |
// Note: The version of this operation on any platform with callee-save |
|
495 |
// registers must update the register map (if not null). |
|
496 |
// In order to do this correctly, the various subtypes of |
|
497 |
// of frame (interpreted, compiled, glue, native), |
|
498 |
// must be distinguished. There is no need on SPARC for |
|
499 |
// such distinctions, because all callee-save registers are |
|
500 |
// preserved for all frames via SPARC-specific mechanisms. |
|
501 |
// |
|
502 |
// *** HOWEVER, *** if and when we make any floating-point |
|
503 |
// registers callee-saved, then we will have to copy over |
|
504 |
// the RegisterMap update logic from the Intel code. |
|
505 |
||
506 |
// The constructor of the sender must know whether this frame is interpreted so it can set the |
|
507 |
// sender's _sp_adjustment_by_callee field. An osr adapter frame was originally |
|
508 |
// interpreted but its pc is in the code cache (for c1 -> osr_frame_return_id stub), so it must be |
|
509 |
// explicitly recognized. |
|
510 |
||
9976
6fef34e63df1
7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents:
9632
diff
changeset
|
511 |
|
5687 | 512 |
bool frame_is_interpreted = is_interpreted_frame(); |
513 |
if (frame_is_interpreted) { |
|
1 | 514 |
map->make_integer_regs_unsaved(); |
515 |
map->shift_window(sp, younger_sp); |
|
516 |
} else if (_cb != NULL) { |
|
517 |
// Update the locations of implicitly saved registers to be their |
|
518 |
// addresses in the register save area. |
|
519 |
// For %o registers, the addresses of %i registers in the next younger |
|
520 |
// frame are used. |
|
521 |
map->shift_window(sp, younger_sp); |
|
522 |
if (map->update_map()) { |
|
523 |
// Tell GC to use argument oopmaps for some runtime stubs that need it. |
|
524 |
// For C1, the runtime stub might not have oop maps, so set this flag |
|
525 |
// outside of update_register_map. |
|
526 |
map->set_include_argument_oops(_cb->caller_must_gc_arguments(map->thread())); |
|
527 |
if (_cb->oop_maps() != NULL) { |
|
528 |
OopMapSet::update_register_map(this, map); |
|
529 |
} |
|
530 |
} |
|
531 |
} |
|
5687 | 532 |
return frame(sp, younger_sp, frame_is_interpreted); |
1 | 533 |
} |
534 |
||
535 |
||
536 |
void frame::patch_pc(Thread* thread, address pc) { |
|
537 |
if(thread == Thread::current()) { |
|
538 |
StubRoutines::Sparc::flush_callers_register_windows_func()(); |
|
539 |
} |
|
540 |
if (TracePcPatching) { |
|
541 |
// QQQ this assert is invalid (or too strong anyway) sice _pc could |
|
542 |
// be original pc and frame could have the deopt pc. |
|
543 |
// assert(_pc == *O7_addr() + pc_return_offset, "frame has wrong pc"); |
|
24917 | 544 |
tty->print_cr("patch_pc at address " INTPTR_FORMAT " [" INTPTR_FORMAT " -> " INTPTR_FORMAT "]", |
545 |
p2i(O7_addr()), p2i(_pc), p2i(pc)); |
|
1 | 546 |
} |
547 |
_cb = CodeCache::find_blob(pc); |
|
548 |
*O7_addr() = pc - pc_return_offset; |
|
549 |
_cb = CodeCache::find_blob(_pc); |
|
4752 | 550 |
address original_pc = nmethod::get_deopt_original_pc(this); |
551 |
if (original_pc != NULL) { |
|
552 |
assert(original_pc == _pc, "expected original to be stored before patching"); |
|
1 | 553 |
_deopt_state = is_deoptimized; |
554 |
} else { |
|
555 |
_deopt_state = not_deoptimized; |
|
556 |
} |
|
557 |
} |
|
558 |
||
559 |
||
560 |
static bool sp_is_valid(intptr_t* old_sp, intptr_t* young_sp, intptr_t* sp) { |
|
561 |
return (((intptr_t)sp & (2*wordSize-1)) == 0 && |
|
562 |
sp <= old_sp && |
|
563 |
sp >= young_sp); |
|
564 |
} |
|
565 |
||
566 |
||
567 |
/* |
|
568 |
Find the (biased) sp that is just younger than old_sp starting at sp. |
|
569 |
If not found return NULL. Register windows are assumed to be flushed. |
|
570 |
*/ |
|
571 |
intptr_t* frame::next_younger_sp_or_null(intptr_t* old_sp, intptr_t* sp) { |
|
572 |
||
573 |
intptr_t* previous_sp = NULL; |
|
574 |
intptr_t* orig_sp = sp; |
|
575 |
||
576 |
int max_frames = (old_sp - sp) / 16; // Minimum frame size is 16 |
|
577 |
int max_frame2 = max_frames; |
|
578 |
while(sp != old_sp && sp_is_valid(old_sp, orig_sp, sp)) { |
|
579 |
if (max_frames-- <= 0) |
|
580 |
// too many frames have gone by; invalid parameters given to this function |
|
581 |
break; |
|
582 |
previous_sp = sp; |
|
583 |
sp = (intptr_t*)sp[FP->sp_offset_in_saved_window()]; |
|
584 |
sp = (intptr_t*)((intptr_t)sp + STACK_BIAS); |
|
585 |
} |
|
586 |
||
587 |
return (sp == old_sp ? previous_sp : NULL); |
|
588 |
} |
|
589 |
||
590 |
/* |
|
591 |
Determine if "sp" is a valid stack pointer. "sp" is assumed to be younger than |
|
592 |
"valid_sp". So if "sp" is valid itself then it should be possible to walk frames |
|
593 |
from "sp" to "valid_sp". The assumption is that the registers windows for the |
|
594 |
thread stack in question are flushed. |
|
595 |
*/ |
|
596 |
bool frame::is_valid_stack_pointer(intptr_t* valid_sp, intptr_t* sp) { |
|
597 |
return next_younger_sp_or_null(valid_sp, sp) != NULL; |
|
598 |
} |
|
599 |
||
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
600 |
bool frame::is_interpreted_frame_valid(JavaThread* thread) const { |
1 | 601 |
assert(is_interpreted_frame(), "Not an interpreted frame"); |
602 |
// These are reasonable sanity checks |
|
603 |
if (fp() == 0 || (intptr_t(fp()) & (2*wordSize-1)) != 0) { |
|
604 |
return false; |
|
605 |
} |
|
606 |
if (sp() == 0 || (intptr_t(sp()) & (2*wordSize-1)) != 0) { |
|
607 |
return false; |
|
608 |
} |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
609 |
|
1 | 610 |
const intptr_t interpreter_frame_initial_sp_offset = interpreter_frame_vm_local_words; |
611 |
if (fp() + interpreter_frame_initial_sp_offset < sp()) { |
|
612 |
return false; |
|
613 |
} |
|
614 |
// These are hacks to keep us out of trouble. |
|
615 |
// The problem with these is that they mask other problems |
|
616 |
if (fp() <= sp()) { // this attempts to deal with unsigned comparison above |
|
617 |
return false; |
|
618 |
} |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
619 |
// do some validation of frame elements |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
620 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
621 |
// first the method |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
622 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
623 |
Method* m = *interpreter_frame_method_addr(); |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
624 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
625 |
// validate the method we'd find in this potential sender |
14579
7f6ce6e3dd80
8003635: NPG: AsynchGetCallTrace broken by Method* virtual call
coleenp
parents:
13728
diff
changeset
|
626 |
if (!m->is_valid_method()) return false; |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
627 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
628 |
// stack frames shouldn't be much larger than max_stack elements |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
629 |
|
35071
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
31389
diff
changeset
|
630 |
if (fp() - unextended_sp() > 1024 + m->max_stack()*Interpreter::stackElementSize) { |
1 | 631 |
return false; |
632 |
} |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
633 |
|
25714
87fa6860b5ae
8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents:
25328
diff
changeset
|
634 |
// validate bci/bcp |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
635 |
|
25714
87fa6860b5ae
8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents:
25328
diff
changeset
|
636 |
address bcp = interpreter_frame_bcp(); |
87fa6860b5ae
8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents:
25328
diff
changeset
|
637 |
if (m->validate_bci_from_bcp(bcp) < 0) { |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
638 |
return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
639 |
} |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
640 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
641 |
// validate ConstantPoolCache* |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
642 |
ConstantPoolCache* cp = *interpreter_frame_cache_addr(); |
18439 | 643 |
if (cp == NULL || !cp->is_metaspace_object()) return false; |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
644 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
645 |
// validate locals |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
646 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
647 |
address locals = (address) *interpreter_frame_locals_addr(); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
648 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
649 |
if (locals > thread->stack_base() || locals < (address) fp()) return false; |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
650 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
651 |
// We'd have to be pretty unlucky to be mislead at this point |
1 | 652 |
return true; |
653 |
} |
|
654 |
||
655 |
||
656 |
// Windows have been flushed on entry (but not marked). Capture the pc that |
|
657 |
// is the return address to the frame that contains "sp" as its stack pointer. |
|
658 |
// This pc resides in the called of the frame corresponding to "sp". |
|
659 |
// As a side effect we mark this JavaFrameAnchor as having flushed the windows. |
|
660 |
// This side effect lets us mark stacked JavaFrameAnchors (stacked in the |
|
661 |
// call_helper) as flushed when we have flushed the windows for the most |
|
662 |
// recent (i.e. current) JavaFrameAnchor. This saves useless flushing calls |
|
663 |
// and lets us find the pc just once rather than multiple times as it did |
|
664 |
// in the bad old _post_Java_state days. |
|
665 |
// |
|
666 |
void JavaFrameAnchor::capture_last_Java_pc(intptr_t* sp) { |
|
667 |
if (last_Java_sp() != NULL && last_Java_pc() == NULL) { |
|
668 |
// try and find the sp just younger than _last_Java_sp |
|
669 |
intptr_t* _post_Java_sp = frame::next_younger_sp_or_null(last_Java_sp(), sp); |
|
670 |
// Really this should never fail otherwise VM call must have non-standard |
|
671 |
// frame linkage (bad) or stack is not properly flushed (worse). |
|
672 |
guarantee(_post_Java_sp != NULL, "bad stack!"); |
|
673 |
_last_Java_pc = (address) _post_Java_sp[ I7->sp_offset_in_saved_window()] + frame::pc_return_offset; |
|
674 |
||
675 |
} |
|
676 |
set_window_flushed(); |
|
677 |
} |
|
678 |
||
679 |
void JavaFrameAnchor::make_walkable(JavaThread* thread) { |
|
680 |
if (walkable()) return; |
|
681 |
// Eventually make an assert |
|
682 |
guarantee(Thread::current() == (Thread*)thread, "only current thread can flush its registers"); |
|
683 |
// We always flush in case the profiler wants it but we won't mark |
|
684 |
// the windows as flushed unless we have a last_Java_frame |
|
685 |
intptr_t* sp = StubRoutines::Sparc::flush_callers_register_windows_func()(); |
|
686 |
if (last_Java_sp() != NULL ) { |
|
687 |
capture_last_Java_pc(sp); |
|
688 |
} |
|
689 |
} |
|
690 |
||
691 |
intptr_t* frame::entry_frame_argument_at(int offset) const { |
|
692 |
// convert offset to index to deal with tsi |
|
693 |
int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize); |
|
694 |
||
695 |
intptr_t* LSP = (intptr_t*) sp()[Lentry_args->sp_offset_in_saved_window()]; |
|
696 |
return &LSP[index+1]; |
|
697 |
} |
|
698 |
||
699 |
||
700 |
BasicType frame::interpreter_frame_result(oop* oop_result, jvalue* value_result) { |
|
701 |
assert(is_interpreted_frame(), "interpreted frame expected"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
702 |
Method* method = interpreter_frame_method(); |
1 | 703 |
BasicType type = method->result_type(); |
704 |
||
705 |
if (method->is_native()) { |
|
706 |
// Prior to notifying the runtime of the method_exit the possible result |
|
707 |
// value is saved to l_scratch and d_scratch. |
|
708 |
||
709 |
intptr_t* l_scratch = fp() + interpreter_frame_l_scratch_fp_offset; |
|
710 |
intptr_t* d_scratch = fp() + interpreter_frame_d_scratch_fp_offset; |
|
711 |
||
712 |
address l_addr = (address)l_scratch; |
|
713 |
#ifdef _LP64 |
|
714 |
// On 64-bit the result for 1/8/16/32-bit result types is in the other |
|
715 |
// word half |
|
716 |
l_addr += wordSize/2; |
|
717 |
#endif |
|
718 |
||
719 |
switch (type) { |
|
720 |
case T_OBJECT: |
|
721 |
case T_ARRAY: { |
|
20282
7f9cbdf89af2
7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents:
18488
diff
changeset
|
722 |
oop obj = cast_to_oop(at(interpreter_frame_oop_temp_offset)); |
1 | 723 |
assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check"); |
724 |
*oop_result = obj; |
|
725 |
break; |
|
726 |
} |
|
727 |
||
728 |
case T_BOOLEAN : { jint* p = (jint*)l_addr; value_result->z = (jboolean)((*p) & 0x1); break; } |
|
729 |
case T_BYTE : { jint* p = (jint*)l_addr; value_result->b = (jbyte)((*p) & 0xff); break; } |
|
730 |
case T_CHAR : { jint* p = (jint*)l_addr; value_result->c = (jchar)((*p) & 0xffff); break; } |
|
731 |
case T_SHORT : { jint* p = (jint*)l_addr; value_result->s = (jshort)((*p) & 0xffff); break; } |
|
732 |
case T_INT : value_result->i = *(jint*)l_addr; break; |
|
733 |
case T_LONG : value_result->j = *(jlong*)l_scratch; break; |
|
734 |
case T_FLOAT : value_result->f = *(jfloat*)d_scratch; break; |
|
735 |
case T_DOUBLE : value_result->d = *(jdouble*)d_scratch; break; |
|
736 |
case T_VOID : /* Nothing to do */ break; |
|
737 |
default : ShouldNotReachHere(); |
|
738 |
} |
|
739 |
} else { |
|
740 |
intptr_t* tos_addr = interpreter_frame_tos_address(); |
|
741 |
||
742 |
switch(type) { |
|
743 |
case T_OBJECT: |
|
744 |
case T_ARRAY: { |
|
20282
7f9cbdf89af2
7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents:
18488
diff
changeset
|
745 |
oop obj = cast_to_oop(*tos_addr); |
1 | 746 |
assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check"); |
747 |
*oop_result = obj; |
|
748 |
break; |
|
749 |
} |
|
750 |
case T_BOOLEAN : { jint* p = (jint*)tos_addr; value_result->z = (jboolean)((*p) & 0x1); break; } |
|
751 |
case T_BYTE : { jint* p = (jint*)tos_addr; value_result->b = (jbyte)((*p) & 0xff); break; } |
|
752 |
case T_CHAR : { jint* p = (jint*)tos_addr; value_result->c = (jchar)((*p) & 0xffff); break; } |
|
753 |
case T_SHORT : { jint* p = (jint*)tos_addr; value_result->s = (jshort)((*p) & 0xffff); break; } |
|
754 |
case T_INT : value_result->i = *(jint*)tos_addr; break; |
|
755 |
case T_LONG : value_result->j = *(jlong*)tos_addr; break; |
|
756 |
case T_FLOAT : value_result->f = *(jfloat*)tos_addr; break; |
|
757 |
case T_DOUBLE : value_result->d = *(jdouble*)tos_addr; break; |
|
758 |
case T_VOID : /* Nothing to do */ break; |
|
759 |
default : ShouldNotReachHere(); |
|
760 |
} |
|
761 |
}; |
|
762 |
||
763 |
return type; |
|
764 |
} |
|
765 |
||
766 |
// Lesp pointer is one word lower than the top item on the stack. |
|
767 |
intptr_t* frame::interpreter_frame_tos_at(jint offset) const { |
|
768 |
int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize) - 1; |
|
769 |
return &interpreter_frame_tos_address()[index]; |
|
770 |
} |
|
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
771 |
|
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
772 |
|
11571
23f825a42a85
7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents:
11565
diff
changeset
|
773 |
#ifndef PRODUCT |
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
774 |
|
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
775 |
#define DESCRIBE_FP_OFFSET(name) \ |
9632
cd86c748c12b
7043301: assert(locals < caller->fp() || locals > (caller->fp() + 16)) failed: locals in save area
never
parents:
9437
diff
changeset
|
776 |
values.describe(frame_no, fp() + frame::name##_offset, #name) |
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
777 |
|
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
778 |
void frame::describe_pd(FrameValues& values, int frame_no) { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
779 |
for (int w = 0; w < frame::register_save_words; w++) { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
780 |
values.describe(frame_no, sp() + w, err_msg("register save area word %d", w), 1); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
781 |
} |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
782 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11632
diff
changeset
|
783 |
if (is_interpreted_frame()) { |
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
784 |
DESCRIBE_FP_OFFSET(interpreter_frame_d_scratch_fp); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
785 |
DESCRIBE_FP_OFFSET(interpreter_frame_l_scratch_fp); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
786 |
DESCRIBE_FP_OFFSET(interpreter_frame_padding); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
787 |
DESCRIBE_FP_OFFSET(interpreter_frame_oop_temp); |
11565
713a0398ca58
7120450: complete information dumped by frame_describe
bdelsart
parents:
10539
diff
changeset
|
788 |
|
713a0398ca58
7120450: complete information dumped by frame_describe
bdelsart
parents:
10539
diff
changeset
|
789 |
// esp, according to Lesp (e.g. not depending on bci), if seems valid |
713a0398ca58
7120450: complete information dumped by frame_describe
bdelsart
parents:
10539
diff
changeset
|
790 |
intptr_t* esp = *interpreter_frame_esp_addr(); |
713a0398ca58
7120450: complete information dumped by frame_describe
bdelsart
parents:
10539
diff
changeset
|
791 |
if ((esp >= sp()) && (esp < fp())) { |
713a0398ca58
7120450: complete information dumped by frame_describe
bdelsart
parents:
10539
diff
changeset
|
792 |
values.describe(-1, esp, "*Lesp"); |
713a0398ca58
7120450: complete information dumped by frame_describe
bdelsart
parents:
10539
diff
changeset
|
793 |
} |
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
794 |
} |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
795 |
|
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
796 |
if (!is_compiled_frame()) { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
797 |
if (frame::callee_aggregate_return_pointer_words != 0) { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
798 |
values.describe(frame_no, sp() + frame::callee_aggregate_return_pointer_sp_offset, "callee_aggregate_return_pointer_word"); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
799 |
} |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
800 |
for (int w = 0; w < frame::callee_register_argument_save_area_words; w++) { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
801 |
values.describe(frame_no, sp() + frame::callee_register_argument_save_area_sp_offset + w, |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
802 |
err_msg("callee_register_argument_save_area_words %d", w)); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
803 |
} |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
804 |
} |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
805 |
} |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
806 |
|
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
7397
diff
changeset
|
807 |
#endif |
10539
f87cedf7983c
7087445: Improve platform independence of JSR292 shared code
bdelsart
parents:
9976
diff
changeset
|
808 |
|
f87cedf7983c
7087445: Improve platform independence of JSR292 shared code
bdelsart
parents:
9976
diff
changeset
|
809 |
intptr_t *frame::initial_deoptimization_info() { |
f87cedf7983c
7087445: Improve platform independence of JSR292 shared code
bdelsart
parents:
9976
diff
changeset
|
810 |
// unused... but returns fp() to minimize changes introduced by 7087445 |
f87cedf7983c
7087445: Improve platform independence of JSR292 shared code
bdelsart
parents:
9976
diff
changeset
|
811 |
return fp(); |
f87cedf7983c
7087445: Improve platform independence of JSR292 shared code
bdelsart
parents:
9976
diff
changeset
|
812 |
} |