author | mgerdin |
Thu, 23 Feb 2012 14:58:35 +0100 | |
changeset 12095 | cc3d6f08a4c4 |
parent 11571 | 23f825a42a85 |
child 13391 | 30245956af37 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
11486
cdc636532368
7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents:
10966
diff
changeset
|
2 |
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
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 |
#ifndef SHARE_VM_RUNTIME_FRAME_HPP |
26 |
#define SHARE_VM_RUNTIME_FRAME_HPP |
|
27 |
||
28 |
#include "asm/assembler.hpp" |
|
29 |
#include "oops/methodOop.hpp" |
|
30 |
#include "runtime/basicLock.hpp" |
|
31 |
#include "runtime/monitorChunk.hpp" |
|
32 |
#include "runtime/registerMap.hpp" |
|
33 |
#include "utilities/top.hpp" |
|
34 |
#ifdef COMPILER2 |
|
35 |
#ifdef TARGET_ARCH_MODEL_x86_32 |
|
36 |
# include "adfiles/adGlobals_x86_32.hpp" |
|
37 |
#endif |
|
38 |
#ifdef TARGET_ARCH_MODEL_x86_64 |
|
39 |
# include "adfiles/adGlobals_x86_64.hpp" |
|
40 |
#endif |
|
41 |
#ifdef TARGET_ARCH_MODEL_sparc |
|
42 |
# include "adfiles/adGlobals_sparc.hpp" |
|
43 |
#endif |
|
44 |
#ifdef TARGET_ARCH_MODEL_zero |
|
45 |
# include "adfiles/adGlobals_zero.hpp" |
|
46 |
#endif |
|
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
47 |
#ifdef TARGET_ARCH_MODEL_arm |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
48 |
# include "adfiles/adGlobals_arm.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
49 |
#endif |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
50 |
#ifdef TARGET_ARCH_MODEL_ppc |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
51 |
# include "adfiles/adGlobals_ppc.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
52 |
#endif |
7397 | 53 |
#endif |
54 |
#ifdef ZERO |
|
55 |
#ifdef TARGET_ARCH_zero |
|
56 |
# include "stack_zero.hpp" |
|
57 |
#endif |
|
58 |
#endif |
|
59 |
||
1 | 60 |
typedef class BytecodeInterpreter* interpreterState; |
61 |
||
62 |
class CodeBlob; |
|
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
63 |
class FrameValues; |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
64 |
class vframeArray; |
1 | 65 |
|
66 |
||
67 |
// A frame represents a physical stack frame (an activation). Frames |
|
68 |
// can be C or Java frames, and the Java frames can be interpreted or |
|
69 |
// compiled. In contrast, vframes represent source-level activations, |
|
70 |
// so that one physical frame can correspond to multiple source level |
|
71 |
// frames because of inlining. |
|
72 |
||
73 |
class frame VALUE_OBJ_CLASS_SPEC { |
|
74 |
private: |
|
75 |
// Instance variables: |
|
76 |
intptr_t* _sp; // stack pointer (from Thread::last_Java_sp) |
|
77 |
address _pc; // program counter (the next instruction after the call) |
|
78 |
||
79 |
CodeBlob* _cb; // CodeBlob that "owns" pc |
|
80 |
enum deopt_state { |
|
81 |
not_deoptimized, |
|
82 |
is_deoptimized, |
|
83 |
unknown |
|
84 |
}; |
|
85 |
||
86 |
deopt_state _deopt_state; |
|
87 |
||
88 |
public: |
|
89 |
// Constructors |
|
90 |
frame(); |
|
91 |
||
92 |
// Accessors |
|
93 |
||
94 |
// pc: Returns the pc at which this frame will continue normally. |
|
95 |
// It must point at the beginning of the next instruction to execute. |
|
96 |
address pc() const { return _pc; } |
|
97 |
||
98 |
// This returns the pc that if you were in the debugger you'd see. Not |
|
99 |
// the idealized value in the frame object. This undoes the magic conversion |
|
100 |
// that happens for deoptimized frames. In addition it makes the value the |
|
101 |
// hardware would want to see in the native frame. The only user (at this point) |
|
102 |
// is deoptimization. It likely no one else should ever use it. |
|
103 |
address raw_pc() const; |
|
104 |
||
105 |
void set_pc( address newpc ); |
|
106 |
||
107 |
intptr_t* sp() const { return _sp; } |
|
108 |
void set_sp( intptr_t* newsp ) { _sp = newsp; } |
|
109 |
||
110 |
||
111 |
CodeBlob* cb() const { return _cb; } |
|
112 |
||
113 |
// patching operations |
|
114 |
void patch_pc(Thread* thread, address pc); |
|
115 |
||
116 |
// Every frame needs to return a unique id which distinguishes it from all other frames. |
|
117 |
// For sparc and ia32 use sp. ia64 can have memory frames that are empty so multiple frames |
|
118 |
// will have identical sp values. For ia64 the bsp (fp) value will serve. No real frame |
|
119 |
// should have an id() of NULL so it is a distinguishing value for an unmatchable frame. |
|
120 |
// We also have relationals which allow comparing a frame to anoth frame's id() allow |
|
121 |
// us to distinguish younger (more recent activation) from older (less recent activations) |
|
122 |
// A NULL id is only valid when comparing for equality. |
|
123 |
||
124 |
intptr_t* id(void) const; |
|
125 |
bool is_younger(intptr_t* id) const; |
|
126 |
bool is_older(intptr_t* id) const; |
|
127 |
||
128 |
// testers |
|
129 |
||
130 |
// Compares for strict equality. Rarely used or needed. |
|
131 |
// It can return a different result than f1.id() == f2.id() |
|
132 |
bool equal(frame other) const; |
|
133 |
||
134 |
// type testers |
|
135 |
bool is_interpreted_frame() const; |
|
136 |
bool is_java_frame() const; |
|
137 |
bool is_entry_frame() const; // Java frame called from C? |
|
9630
d6419e4395e3
6939861: JVM should handle more conversion operations
never
parents:
9437
diff
changeset
|
138 |
bool is_ricochet_frame() const; |
1 | 139 |
bool is_native_frame() const; |
140 |
bool is_runtime_frame() const; |
|
141 |
bool is_compiled_frame() const; |
|
142 |
bool is_safepoint_blob_frame() const; |
|
143 |
bool is_deoptimized_frame() const; |
|
144 |
||
145 |
// testers |
|
146 |
bool is_first_frame() const; // oldest frame? (has no sender) |
|
147 |
bool is_first_java_frame() const; // same for Java frame |
|
148 |
||
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
149 |
bool is_interpreted_frame_valid(JavaThread* thread) const; // performs sanity checks on interpreted frames. |
1 | 150 |
|
151 |
// tells whether this frame is marked for deoptimization |
|
152 |
bool should_be_deoptimized() const; |
|
153 |
||
154 |
// tells whether this frame can be deoptimized |
|
155 |
bool can_be_deoptimized() const; |
|
156 |
||
157 |
// returns the frame size in stack slots |
|
2880
c2974244a496
6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents:
670
diff
changeset
|
158 |
int frame_size(RegisterMap* map) const; |
1 | 159 |
|
160 |
// returns the sending frame |
|
161 |
frame sender(RegisterMap* map) const; |
|
162 |
||
163 |
// for Profiling - acting on another frame. walks sender frames |
|
164 |
// if valid. |
|
165 |
frame profile_find_Java_sender_frame(JavaThread *thread); |
|
166 |
bool safe_for_sender(JavaThread *thread); |
|
167 |
||
168 |
// returns the sender, but skips conversion frames |
|
169 |
frame real_sender(RegisterMap* map) const; |
|
170 |
||
171 |
// returns the the sending Java frame, skipping any intermediate C frames |
|
172 |
// NB: receiver must not be first frame |
|
173 |
frame java_sender() const; |
|
174 |
||
175 |
private: |
|
176 |
// Helper methods for better factored code in frame::sender |
|
177 |
frame sender_for_compiled_frame(RegisterMap* map) const; |
|
178 |
frame sender_for_entry_frame(RegisterMap* map) const; |
|
9630
d6419e4395e3
6939861: JVM should handle more conversion operations
never
parents:
9437
diff
changeset
|
179 |
frame sender_for_ricochet_frame(RegisterMap* map) const; |
1 | 180 |
frame sender_for_interpreter_frame(RegisterMap* map) const; |
181 |
frame sender_for_native_frame(RegisterMap* map) const; |
|
182 |
||
183 |
// All frames: |
|
184 |
||
185 |
// A low-level interface for vframes: |
|
186 |
||
187 |
public: |
|
188 |
||
189 |
intptr_t* addr_at(int index) const { return &fp()[index]; } |
|
190 |
intptr_t at(int index) const { return *addr_at(index); } |
|
191 |
||
192 |
// accessors for locals |
|
193 |
oop obj_at(int offset) const { return *obj_at_addr(offset); } |
|
194 |
void obj_at_put(int offset, oop value) { *obj_at_addr(offset) = value; } |
|
195 |
||
196 |
jint int_at(int offset) const { return *int_at_addr(offset); } |
|
197 |
void int_at_put(int offset, jint value) { *int_at_addr(offset) = value; } |
|
198 |
||
199 |
oop* obj_at_addr(int offset) const { return (oop*) addr_at(offset); } |
|
200 |
||
201 |
oop* adjusted_obj_at_addr(methodOop method, int index) { return obj_at_addr(adjust_offset(method, index)); } |
|
202 |
||
203 |
private: |
|
204 |
jint* int_at_addr(int offset) const { return (jint*) addr_at(offset); } |
|
205 |
||
206 |
public: |
|
207 |
// Link (i.e., the pointer to the previous frame) |
|
208 |
intptr_t* link() const; |
|
209 |
void set_link(intptr_t* addr); |
|
210 |
||
211 |
// Return address |
|
212 |
address sender_pc() const; |
|
213 |
||
214 |
// Support for deoptimization |
|
6269
10e06287c0b0
6975006: assert(check.is_deoptimized_frame()) failed: missed deopt
never
parents:
6176
diff
changeset
|
215 |
void deoptimize(JavaThread* thread); |
1 | 216 |
|
217 |
// The frame's original SP, before any extension by an interpreted callee; |
|
218 |
// used for packing debug info into vframeArray objects and vframeArray lookup. |
|
219 |
intptr_t* unextended_sp() const; |
|
220 |
||
221 |
// returns the stack pointer of the calling frame |
|
222 |
intptr_t* sender_sp() const; |
|
223 |
||
11486
cdc636532368
7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents:
10966
diff
changeset
|
224 |
// Returns the real 'frame pointer' for the current frame. |
cdc636532368
7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents:
10966
diff
changeset
|
225 |
// This is the value expected by the platform ABI when it defines a |
cdc636532368
7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents:
10966
diff
changeset
|
226 |
// frame pointer register. It may differ from the effective value of |
cdc636532368
7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents:
10966
diff
changeset
|
227 |
// the FP register when that register is used in the JVM for other |
cdc636532368
7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents:
10966
diff
changeset
|
228 |
// purposes (like compiled frames on some platforms). |
cdc636532368
7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents:
10966
diff
changeset
|
229 |
// On other platforms, it is defined so that the stack area used by |
cdc636532368
7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents:
10966
diff
changeset
|
230 |
// this frame goes from real_fp() to sp(). |
cdc636532368
7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents:
10966
diff
changeset
|
231 |
intptr_t* real_fp() const; |
cdc636532368
7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents:
10966
diff
changeset
|
232 |
|
10539
f87cedf7983c
7087445: Improve platform independence of JSR292 shared code
bdelsart
parents:
9632
diff
changeset
|
233 |
// Deoptimization info, if needed (platform dependent). |
f87cedf7983c
7087445: Improve platform independence of JSR292 shared code
bdelsart
parents:
9632
diff
changeset
|
234 |
// Stored in the initial_info field of the unroll info, to be used by |
f87cedf7983c
7087445: Improve platform independence of JSR292 shared code
bdelsart
parents:
9632
diff
changeset
|
235 |
// the platform dependent deoptimization blobs. |
f87cedf7983c
7087445: Improve platform independence of JSR292 shared code
bdelsart
parents:
9632
diff
changeset
|
236 |
intptr_t *initial_deoptimization_info(); |
1 | 237 |
|
238 |
// Interpreter frames: |
|
239 |
||
240 |
private: |
|
241 |
intptr_t** interpreter_frame_locals_addr() const; |
|
242 |
intptr_t* interpreter_frame_bcx_addr() const; |
|
243 |
intptr_t* interpreter_frame_mdx_addr() const; |
|
244 |
||
245 |
public: |
|
246 |
// Locals |
|
247 |
||
248 |
// The _at version returns a pointer because the address is used for GC. |
|
249 |
intptr_t* interpreter_frame_local_at(int index) const; |
|
250 |
||
251 |
void interpreter_frame_set_locals(intptr_t* locs); |
|
252 |
||
253 |
// byte code index/pointer (use these functions for unchecked frame access only!) |
|
254 |
intptr_t interpreter_frame_bcx() const { return *interpreter_frame_bcx_addr(); } |
|
255 |
void interpreter_frame_set_bcx(intptr_t bcx); |
|
256 |
||
257 |
// byte code index |
|
258 |
jint interpreter_frame_bci() const; |
|
259 |
void interpreter_frame_set_bci(jint bci); |
|
260 |
||
261 |
// byte code pointer |
|
262 |
address interpreter_frame_bcp() const; |
|
263 |
void interpreter_frame_set_bcp(address bcp); |
|
264 |
||
265 |
// Unchecked access to the method data index/pointer. |
|
266 |
// Only use this if you know what you are doing. |
|
267 |
intptr_t interpreter_frame_mdx() const { return *interpreter_frame_mdx_addr(); } |
|
268 |
void interpreter_frame_set_mdx(intptr_t mdx); |
|
269 |
||
270 |
// method data pointer |
|
271 |
address interpreter_frame_mdp() const; |
|
272 |
void interpreter_frame_set_mdp(address dp); |
|
273 |
||
274 |
// Find receiver out of caller's (compiled) argument list |
|
275 |
oop retrieve_receiver(RegisterMap *reg_map); |
|
276 |
||
277 |
// Return the monitor owner and BasicLock for compiled synchronized |
|
278 |
// native methods so that biased locking can revoke the receiver's |
|
7444 | 279 |
// bias if necessary. This is also used by JVMTI's GetLocalInstance method |
280 |
// (via VM_GetReceiver) to retrieve the receiver from a native wrapper frame. |
|
281 |
BasicLock* get_native_monitor(); |
|
282 |
oop get_native_receiver(); |
|
1 | 283 |
|
284 |
// Find receiver for an invoke when arguments are just pushed on stack (i.e., callee stack-frame is |
|
285 |
// not setup) |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7444
diff
changeset
|
286 |
oop interpreter_callee_receiver(Symbol* signature) { return *interpreter_callee_receiver_addr(signature); } |
1 | 287 |
|
288 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7444
diff
changeset
|
289 |
oop* interpreter_callee_receiver_addr(Symbol* signature); |
1 | 290 |
|
291 |
||
292 |
// expression stack (may go up or down, direction == 1 or -1) |
|
293 |
public: |
|
294 |
intptr_t* interpreter_frame_expression_stack() const; |
|
295 |
static jint interpreter_frame_expression_stack_direction(); |
|
296 |
||
297 |
// The _at version returns a pointer because the address is used for GC. |
|
298 |
intptr_t* interpreter_frame_expression_stack_at(jint offset) const; |
|
299 |
||
300 |
// top of expression stack |
|
301 |
intptr_t* interpreter_frame_tos_at(jint offset) const; |
|
302 |
intptr_t* interpreter_frame_tos_address() const; |
|
303 |
||
304 |
||
305 |
jint interpreter_frame_expression_stack_size() const; |
|
306 |
||
307 |
intptr_t* interpreter_frame_sender_sp() const; |
|
308 |
||
309 |
#ifndef CC_INTERP |
|
310 |
// template based interpreter deoptimization support |
|
311 |
void set_interpreter_frame_sender_sp(intptr_t* sender_sp); |
|
312 |
void interpreter_frame_set_monitor_end(BasicObjectLock* value); |
|
313 |
#endif // CC_INTERP |
|
314 |
||
315 |
// BasicObjectLocks: |
|
316 |
// |
|
317 |
// interpreter_frame_monitor_begin is higher in memory than interpreter_frame_monitor_end |
|
318 |
// Interpreter_frame_monitor_begin points to one element beyond the oldest one, |
|
319 |
// interpreter_frame_monitor_end points to the youngest one, or if there are none, |
|
320 |
// it points to one beyond where the first element will be. |
|
321 |
// interpreter_frame_monitor_size reports the allocation size of a monitor in the interpreter stack. |
|
322 |
// this value is >= BasicObjectLock::size(), and may be rounded up |
|
323 |
||
324 |
BasicObjectLock* interpreter_frame_monitor_begin() const; |
|
325 |
BasicObjectLock* interpreter_frame_monitor_end() const; |
|
326 |
BasicObjectLock* next_monitor_in_interpreter_frame(BasicObjectLock* current) const; |
|
327 |
BasicObjectLock* previous_monitor_in_interpreter_frame(BasicObjectLock* current) const; |
|
328 |
static int interpreter_frame_monitor_size(); |
|
329 |
||
330 |
void interpreter_frame_verify_monitor(BasicObjectLock* value) const; |
|
331 |
||
332 |
// Tells whether the current interpreter_frame frame pointer |
|
333 |
// corresponds to the old compiled/deoptimized fp |
|
334 |
// The receiver used to be a top level frame |
|
335 |
bool interpreter_frame_equals_unpacked_fp(intptr_t* fp); |
|
336 |
||
337 |
// Return/result value from this interpreter frame |
|
338 |
// If the method return type is T_OBJECT or T_ARRAY populates oop_result |
|
339 |
// For other (non-T_VOID) the appropriate field in the jvalue is populated |
|
340 |
// with the result value. |
|
341 |
// Should only be called when at method exit when the method is not |
|
342 |
// exiting due to an exception. |
|
343 |
BasicType interpreter_frame_result(oop* oop_result, jvalue* value_result); |
|
344 |
||
345 |
public: |
|
346 |
// Method & constant pool cache |
|
347 |
methodOop interpreter_frame_method() const; |
|
348 |
void interpreter_frame_set_method(methodOop method); |
|
349 |
methodOop* interpreter_frame_method_addr() const; |
|
350 |
constantPoolCacheOop* interpreter_frame_cache_addr() const; |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
351 |
#ifdef PPC |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
352 |
oop* interpreter_frame_mirror_addr() const; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
353 |
#endif |
1 | 354 |
|
355 |
public: |
|
356 |
// Entry frames |
|
357 |
JavaCallWrapper* entry_frame_call_wrapper() const; |
|
358 |
intptr_t* entry_frame_argument_at(int offset) const; |
|
359 |
||
360 |
// tells whether there is another chunk of Delta stack above |
|
361 |
bool entry_frame_is_first() const; |
|
362 |
||
363 |
// Compiled frames: |
|
364 |
||
365 |
public: |
|
366 |
// Given the index of a local, and the number of argument words |
|
367 |
// in this stack frame, tell which word of the stack frame to find |
|
368 |
// the local in. Arguments are stored above the ofp/rpc pair, |
|
369 |
// while other locals are stored below it. |
|
370 |
// Since monitors (BasicLock blocks) are also assigned indexes, |
|
371 |
// but may have different storage requirements, their presence |
|
372 |
// can also affect the calculation of offsets. |
|
373 |
static int local_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors); |
|
374 |
||
375 |
// Given the index of a monitor, etc., tell which word of the |
|
376 |
// stack frame contains the start of the BasicLock block. |
|
377 |
// Note that the local index by convention is the __higher__ |
|
378 |
// of the two indexes allocated to the block. |
|
379 |
static int monitor_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors); |
|
380 |
||
381 |
// Tell the smallest value that local_offset_for_compiler will attain. |
|
382 |
// This is used to help determine how much stack frame to allocate. |
|
383 |
static int min_local_offset_for_compiler(int nof_args, int max_nof_locals, int max_nof_monitors); |
|
384 |
||
385 |
// Tells if this register must be spilled during a call. |
|
386 |
// On Intel, all registers are smashed by calls. |
|
387 |
static bool volatile_across_calls(Register reg); |
|
388 |
||
389 |
||
390 |
// Safepoints |
|
391 |
||
392 |
public: |
|
393 |
oop saved_oop_result(RegisterMap* map) const; |
|
394 |
void set_saved_oop_result(RegisterMap* map, oop obj); |
|
395 |
||
396 |
// For debugging |
|
397 |
private: |
|
398 |
const char* print_name() const; |
|
399 |
||
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
400 |
void describe_pd(FrameValues& values, int frame_no); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
401 |
|
1 | 402 |
public: |
403 |
void print_value() const { print_value_on(tty,NULL); } |
|
404 |
void print_value_on(outputStream* st, JavaThread *thread) const; |
|
405 |
void print_on(outputStream* st) const; |
|
406 |
void interpreter_frame_print_on(outputStream* st) const; |
|
407 |
void print_on_error(outputStream* st, char* buf, int buflen, bool verbose = false) const; |
|
408 |
||
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
409 |
// Add annotated descriptions of memory locations belonging to this frame to values |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
410 |
void describe(FrameValues& values, int frame_no); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
411 |
|
1 | 412 |
// Conversion from an VMReg to physical stack location |
413 |
oop* oopmapreg_to_location(VMReg reg, const RegisterMap* regmap) const; |
|
414 |
||
415 |
// Oops-do's |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7444
diff
changeset
|
416 |
void oops_compiled_arguments_do(Symbol* signature, bool has_receiver, const RegisterMap* reg_map, OopClosure* f); |
1 | 417 |
void oops_interpreted_do(OopClosure* f, const RegisterMap* map, bool query_oop_map_cache = true); |
9630
d6419e4395e3
6939861: JVM should handle more conversion operations
never
parents:
9437
diff
changeset
|
418 |
void oops_ricochet_do(OopClosure* f, const RegisterMap* map); |
1 | 419 |
|
420 |
private: |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7444
diff
changeset
|
421 |
void oops_interpreted_arguments_do(Symbol* signature, bool has_receiver, OopClosure* f); |
1 | 422 |
|
423 |
// Iteration of oops |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3261
diff
changeset
|
424 |
void oops_do_internal(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache); |
1 | 425 |
void oops_entry_do(OopClosure* f, const RegisterMap* map); |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3261
diff
changeset
|
426 |
void oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* map); |
1 | 427 |
int adjust_offset(methodOop method, int index); // helper for above fn |
428 |
public: |
|
429 |
// Memory management |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3261
diff
changeset
|
430 |
void oops_do(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map) { oops_do_internal(f, cf, map, true); } |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3261
diff
changeset
|
431 |
void nmethods_do(CodeBlobClosure* cf); |
1 | 432 |
|
433 |
void gc_prologue(); |
|
434 |
void gc_epilogue(); |
|
435 |
void pd_gc_epilog(); |
|
436 |
||
437 |
# ifdef ENABLE_ZAP_DEAD_LOCALS |
|
438 |
private: |
|
439 |
class CheckValueClosure: public OopClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
354
diff
changeset
|
440 |
public: |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
354
diff
changeset
|
441 |
void do_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
354
diff
changeset
|
442 |
void do_oop(narrowOop* p) { ShouldNotReachHere(); } |
1 | 443 |
}; |
444 |
static CheckValueClosure _check_value; |
|
445 |
||
446 |
class CheckOopClosure: public OopClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
354
diff
changeset
|
447 |
public: |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
354
diff
changeset
|
448 |
void do_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
354
diff
changeset
|
449 |
void do_oop(narrowOop* p) { ShouldNotReachHere(); } |
1 | 450 |
}; |
451 |
static CheckOopClosure _check_oop; |
|
452 |
||
453 |
static void check_derived_oop(oop* base, oop* derived); |
|
454 |
||
455 |
class ZapDeadClosure: public OopClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
354
diff
changeset
|
456 |
public: |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
354
diff
changeset
|
457 |
void do_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
354
diff
changeset
|
458 |
void do_oop(narrowOop* p) { ShouldNotReachHere(); } |
1 | 459 |
}; |
460 |
static ZapDeadClosure _zap_dead; |
|
461 |
||
462 |
public: |
|
463 |
// Zapping |
|
464 |
void zap_dead_locals (JavaThread* thread, const RegisterMap* map); |
|
465 |
void zap_dead_interpreted_locals(JavaThread* thread, const RegisterMap* map); |
|
466 |
void zap_dead_compiled_locals (JavaThread* thread, const RegisterMap* map); |
|
467 |
void zap_dead_entry_locals (JavaThread* thread, const RegisterMap* map); |
|
468 |
void zap_dead_deoptimized_locals(JavaThread* thread, const RegisterMap* map); |
|
469 |
# endif |
|
470 |
// Verification |
|
471 |
void verify(const RegisterMap* map); |
|
472 |
static bool verify_return_pc(address x); |
|
473 |
static bool is_bci(intptr_t bcx); |
|
474 |
// Usage: |
|
475 |
// assert(frame::verify_return_pc(return_address), "must be a return pc"); |
|
476 |
||
477 |
int pd_oop_map_offset_adjustment() const; |
|
478 |
||
7397 | 479 |
#ifdef TARGET_ARCH_x86 |
480 |
# include "frame_x86.hpp" |
|
481 |
#endif |
|
482 |
#ifdef TARGET_ARCH_sparc |
|
483 |
# include "frame_sparc.hpp" |
|
484 |
#endif |
|
485 |
#ifdef TARGET_ARCH_zero |
|
486 |
# include "frame_zero.hpp" |
|
487 |
#endif |
|
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
488 |
#ifdef TARGET_ARCH_arm |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
489 |
# include "frame_arm.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
490 |
#endif |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
491 |
#ifdef TARGET_ARCH_ppc |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
492 |
# include "frame_ppc.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
493 |
#endif |
7397 | 494 |
|
1 | 495 |
}; |
496 |
||
11571
23f825a42a85
7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents:
11486
diff
changeset
|
497 |
#ifndef PRODUCT |
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
498 |
// A simple class to describe a location on the stack |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
499 |
class FrameValue VALUE_OBJ_CLASS_SPEC { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
500 |
public: |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
501 |
intptr_t* location; |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
502 |
char* description; |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
503 |
int owner; |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
504 |
int priority; |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
505 |
}; |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
506 |
|
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
507 |
|
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
508 |
// A collection of described stack values that can print a symbolic |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
509 |
// description of the stack memory. Interpreter frame values can be |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
510 |
// in the caller frames so all the values are collected first and then |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
511 |
// sorted before being printed. |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
512 |
class FrameValues { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
513 |
private: |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
514 |
GrowableArray<FrameValue> _values; |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
515 |
|
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
516 |
static int compare(FrameValue* a, FrameValue* b) { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
517 |
if (a->location == b->location) { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
518 |
return a->priority - b->priority; |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
519 |
} |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
520 |
return a->location - b->location; |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
521 |
} |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
522 |
|
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
523 |
public: |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
524 |
// Used by frame functions to describe locations. |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
525 |
void describe(int owner, intptr_t* location, const char* description, int priority = 0); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
526 |
|
11571
23f825a42a85
7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents:
11486
diff
changeset
|
527 |
#ifdef ASSERT |
9632
cd86c748c12b
7043301: assert(locals < caller->fp() || locals > (caller->fp() + 16)) failed: locals in save area
never
parents:
9630
diff
changeset
|
528 |
void validate(); |
11571
23f825a42a85
7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents:
11486
diff
changeset
|
529 |
#endif |
10966
0c9ed2dfc6a2
7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents:
10539
diff
changeset
|
530 |
void print(JavaThread* thread); |
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
531 |
}; |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
532 |
|
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
533 |
#endif |
1 | 534 |
|
535 |
// |
|
536 |
// StackFrameStream iterates through the frames of a thread starting from |
|
537 |
// top most frame. It automatically takes care of updating the location of |
|
538 |
// all (callee-saved) registers. Notice: If a thread is stopped at |
|
539 |
// a safepoint, all registers are saved, not only the callee-saved ones. |
|
540 |
// |
|
541 |
// Use: |
|
542 |
// |
|
543 |
// for(StackFrameStream fst(thread); !fst.is_done(); fst.next()) { |
|
544 |
// ... |
|
545 |
// } |
|
546 |
// |
|
547 |
class StackFrameStream : public StackObj { |
|
548 |
private: |
|
549 |
frame _fr; |
|
550 |
RegisterMap _reg_map; |
|
551 |
bool _is_done; |
|
552 |
public: |
|
553 |
StackFrameStream(JavaThread *thread, bool update = true); |
|
554 |
||
555 |
// Iteration |
|
556 |
bool is_done() { return (_is_done) ? true : (_is_done = _fr.is_first_frame(), false); } |
|
557 |
void next() { if (!_is_done) _fr = _fr.sender(&_reg_map); } |
|
558 |
||
559 |
// Query |
|
560 |
frame *current() { return &_fr; } |
|
561 |
RegisterMap* register_map() { return &_reg_map; } |
|
562 |
}; |
|
7397 | 563 |
|
564 |
#endif // SHARE_VM_RUNTIME_FRAME_HPP |