author | coleenp |
Tue, 22 Dec 2015 11:11:29 -0500 | |
changeset 35214 | d86005e0b4c2 |
parent 33160 | c59f1676d27e |
child 38074 | 8475fdc6dcc3 |
child 38133 | 78b95467b9f1 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29571
6627b10e05f8
6313046: Remove unused frame::native_param_addr code
mikael
parents:
26821
diff
changeset
|
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:
4896
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4896
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:
4896
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef CPU_X86_VM_FRAME_X86_INLINE_HPP |
26 |
#define CPU_X86_VM_FRAME_X86_INLINE_HPP |
|
27 |
||
14626
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
13728
diff
changeset
|
28 |
#include "code/codeCache.hpp" |
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
22924
diff
changeset
|
29 |
#include "code/vmreg.inline.hpp" |
14626
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
13728
diff
changeset
|
30 |
|
1 | 31 |
// Inline functions for Intel frames: |
32 |
||
33 |
// Constructors: |
|
34 |
||
35 |
inline frame::frame() { |
|
36 |
_pc = NULL; |
|
37 |
_sp = NULL; |
|
38 |
_unextended_sp = NULL; |
|
39 |
_fp = NULL; |
|
40 |
_cb = NULL; |
|
41 |
_deopt_state = unknown; |
|
42 |
} |
|
43 |
||
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
|
44 |
inline void frame::init(intptr_t* sp, intptr_t* fp, address pc) { |
1 | 45 |
_sp = sp; |
46 |
_unextended_sp = sp; |
|
47 |
_fp = fp; |
|
48 |
_pc = pc; |
|
49 |
assert(pc != NULL, "no pc?"); |
|
50 |
_cb = CodeCache::find_blob(pc); |
|
9978
80c391c46474
7047697: MethodHandle.invokeExact call for wrong method causes VM failure if run with -Xcomp
jrose
parents:
9630
diff
changeset
|
51 |
adjust_unextended_sp(); |
4752 | 52 |
|
53 |
address original_pc = nmethod::get_deopt_original_pc(this); |
|
54 |
if (original_pc != NULL) { |
|
55 |
_pc = original_pc; |
|
1 | 56 |
_deopt_state = is_deoptimized; |
57 |
} else { |
|
58 |
_deopt_state = not_deoptimized; |
|
59 |
} |
|
60 |
} |
|
61 |
||
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
|
62 |
inline frame::frame(intptr_t* sp, intptr_t* fp, address 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
|
63 |
init(sp, fp, 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
|
64 |
} |
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
|
65 |
|
4752 | 66 |
inline frame::frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc) { |
1 | 67 |
_sp = sp; |
68 |
_unextended_sp = unextended_sp; |
|
69 |
_fp = fp; |
|
70 |
_pc = pc; |
|
71 |
assert(pc != NULL, "no pc?"); |
|
72 |
_cb = CodeCache::find_blob(pc); |
|
9630
d6419e4395e3
6939861: JVM should handle more conversion operations
never
parents:
7397
diff
changeset
|
73 |
adjust_unextended_sp(); |
4752 | 74 |
|
75 |
address original_pc = nmethod::get_deopt_original_pc(this); |
|
76 |
if (original_pc != NULL) { |
|
77 |
_pc = original_pc; |
|
6418 | 78 |
assert(((nmethod*)_cb)->insts_contains(_pc), "original PC must be in nmethod"); |
1 | 79 |
_deopt_state = is_deoptimized; |
80 |
} else { |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30305
diff
changeset
|
81 |
if (_cb->is_deoptimization_stub()) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30305
diff
changeset
|
82 |
_deopt_state = is_deoptimized; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30305
diff
changeset
|
83 |
} else { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30305
diff
changeset
|
84 |
_deopt_state = not_deoptimized; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
30305
diff
changeset
|
85 |
} |
1 | 86 |
} |
87 |
} |
|
88 |
||
89 |
inline frame::frame(intptr_t* sp, intptr_t* fp) { |
|
90 |
_sp = sp; |
|
91 |
_unextended_sp = sp; |
|
92 |
_fp = fp; |
|
93 |
_pc = (address)(sp[-1]); |
|
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
94 |
|
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
95 |
// Here's a sticky one. This constructor can be called via AsyncGetCallTrace |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
96 |
// when last_Java_sp is non-null but the pc fetched is junk. If we are truly |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
97 |
// unlucky the junk value could be to a zombied method and we'll die on the |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
98 |
// find_blob call. This is also why we can have no asserts on the validity |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
99 |
// of the pc we find here. AsyncGetCallTrace -> pd_get_top_frame_for_signal_handler |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
100 |
// -> pd_last_frame should use a specialized version of pd_last_frame which could |
30305
b92a97e1e9cb
8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents:
29571
diff
changeset
|
101 |
// call a specialized frame constructor instead of this one. |
354
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
102 |
// Then we could use the assert below. However this assert is of somewhat dubious |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
103 |
// value. |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
104 |
// assert(_pc != NULL, "no pc?"); |
3b42d6fdcb82
6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents:
1
diff
changeset
|
105 |
|
1 | 106 |
_cb = CodeCache::find_blob(_pc); |
9978
80c391c46474
7047697: MethodHandle.invokeExact call for wrong method causes VM failure if run with -Xcomp
jrose
parents:
9630
diff
changeset
|
107 |
adjust_unextended_sp(); |
1 | 108 |
|
4752 | 109 |
address original_pc = nmethod::get_deopt_original_pc(this); |
110 |
if (original_pc != NULL) { |
|
111 |
_pc = original_pc; |
|
1 | 112 |
_deopt_state = is_deoptimized; |
113 |
} else { |
|
114 |
_deopt_state = not_deoptimized; |
|
115 |
} |
|
116 |
} |
|
117 |
||
118 |
// Accessors |
|
119 |
||
120 |
inline bool frame::equal(frame other) const { |
|
121 |
bool ret = sp() == other.sp() |
|
122 |
&& unextended_sp() == other.unextended_sp() |
|
123 |
&& fp() == other.fp() |
|
124 |
&& pc() == other.pc(); |
|
125 |
assert(!ret || ret && cb() == other.cb() && _deopt_state == other._deopt_state, "inconsistent construction"); |
|
126 |
return ret; |
|
127 |
} |
|
128 |
||
129 |
// Return unique id for this frame. The id must have a value where we can distinguish |
|
130 |
// identity and younger/older relationship. NULL represents an invalid (incomparable) |
|
131 |
// frame. |
|
132 |
inline intptr_t* frame::id(void) const { return unextended_sp(); } |
|
133 |
||
134 |
// Relationals on frames based |
|
135 |
// Return true if the frame is younger (more recent activation) than the frame represented by id |
|
136 |
inline bool frame::is_younger(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id"); |
|
137 |
return this->id() < id ; } |
|
138 |
||
139 |
// Return true if the frame is older (less recent activation) than the frame represented by id |
|
140 |
inline bool frame::is_older(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id"); |
|
141 |
return this->id() > id ; } |
|
142 |
||
143 |
||
144 |
||
145 |
inline intptr_t* frame::link() const { return (intptr_t*) *(intptr_t **)addr_at(link_offset); } |
|
146 |
||
147 |
inline intptr_t* frame::unextended_sp() const { return _unextended_sp; } |
|
148 |
||
149 |
// Return address: |
|
150 |
||
151 |
inline address* frame::sender_pc_addr() const { return (address*) addr_at( return_addr_offset); } |
|
152 |
inline address frame::sender_pc() const { return *sender_pc_addr(); } |
|
153 |
||
154 |
inline intptr_t* frame::sender_sp() const { return addr_at( sender_sp_offset); } |
|
155 |
||
156 |
inline intptr_t** frame::interpreter_frame_locals_addr() const { |
|
157 |
return (intptr_t**)addr_at(interpreter_frame_locals_offset); |
|
158 |
} |
|
159 |
||
160 |
inline intptr_t* frame::interpreter_frame_last_sp() const { |
|
161 |
return *(intptr_t**)addr_at(interpreter_frame_last_sp_offset); |
|
162 |
} |
|
163 |
||
25714
87fa6860b5ae
8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents:
22924
diff
changeset
|
164 |
inline intptr_t* frame::interpreter_frame_bcp_addr() const { |
87fa6860b5ae
8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents:
22924
diff
changeset
|
165 |
return (intptr_t*)addr_at(interpreter_frame_bcp_offset); |
1 | 166 |
} |
167 |
||
168 |
||
25714
87fa6860b5ae
8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents:
22924
diff
changeset
|
169 |
inline intptr_t* frame::interpreter_frame_mdp_addr() const { |
87fa6860b5ae
8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents:
22924
diff
changeset
|
170 |
return (intptr_t*)addr_at(interpreter_frame_mdp_offset); |
1 | 171 |
} |
172 |
||
173 |
||
174 |
||
175 |
// Constant pool cache |
|
176 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9978
diff
changeset
|
177 |
inline ConstantPoolCache** frame::interpreter_frame_cache_addr() const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9978
diff
changeset
|
178 |
return (ConstantPoolCache**)addr_at(interpreter_frame_cache_offset); |
1 | 179 |
} |
180 |
||
181 |
// Method |
|
182 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9978
diff
changeset
|
183 |
inline Method** frame::interpreter_frame_method_addr() const { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9978
diff
changeset
|
184 |
return (Method**)addr_at(interpreter_frame_method_offset); |
1 | 185 |
} |
186 |
||
187 |
// top of expression stack |
|
188 |
inline intptr_t* frame::interpreter_frame_tos_address() const { |
|
189 |
intptr_t* last_sp = interpreter_frame_last_sp(); |
|
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
2105
diff
changeset
|
190 |
if (last_sp == NULL) { |
1 | 191 |
return sp(); |
192 |
} else { |
|
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
2105
diff
changeset
|
193 |
// sp() may have been extended or shrunk by an adapter. At least |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
2105
diff
changeset
|
194 |
// check that we don't fall behind the legal region. |
4896
88b4193b82b0
6925249: assert(last_sp < (intptr_t*) interpreter_frame_monitor_begin(),"bad tos")
kvn
parents:
4752
diff
changeset
|
195 |
// For top deoptimized frame last_sp == interpreter_frame_monitor_end. |
88b4193b82b0
6925249: assert(last_sp < (intptr_t*) interpreter_frame_monitor_begin(),"bad tos")
kvn
parents:
4752
diff
changeset
|
196 |
assert(last_sp <= (intptr_t*) interpreter_frame_monitor_end(), "bad tos"); |
1 | 197 |
return last_sp; |
198 |
} |
|
199 |
} |
|
200 |
||
22924 | 201 |
inline oop* frame::interpreter_frame_temp_oop_addr() const { |
202 |
return (oop *)(fp() + interpreter_frame_oop_temp_offset); |
|
203 |
} |
|
204 |
||
1 | 205 |
inline int frame::pd_oop_map_offset_adjustment() const { |
206 |
return 0; |
|
207 |
} |
|
208 |
||
209 |
inline int frame::interpreter_frame_monitor_size() { |
|
210 |
return BasicObjectLock::size(); |
|
211 |
} |
|
212 |
||
213 |
||
214 |
// expression stack |
|
215 |
// (the max_stack arguments are used by the GC; see class FrameClosure) |
|
216 |
||
217 |
inline intptr_t* frame::interpreter_frame_expression_stack() const { |
|
218 |
intptr_t* monitor_end = (intptr_t*) interpreter_frame_monitor_end(); |
|
219 |
return monitor_end-1; |
|
220 |
} |
|
221 |
||
222 |
||
223 |
inline jint frame::interpreter_frame_expression_stack_direction() { return -1; } |
|
224 |
||
225 |
||
226 |
// Entry frames |
|
227 |
||
18938
ff8f8cec9434
8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents:
16363
diff
changeset
|
228 |
inline JavaCallWrapper** frame::entry_frame_call_wrapper_addr() const { |
ff8f8cec9434
8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents:
16363
diff
changeset
|
229 |
return (JavaCallWrapper**)addr_at(entry_frame_call_wrapper_offset); |
1 | 230 |
} |
231 |
||
232 |
// Compiled frames |
|
233 |
||
234 |
inline int frame::local_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors) { |
|
235 |
return (nof_args - local_index + (local_index < nof_args ? 1: -1)); |
|
236 |
} |
|
237 |
||
238 |
inline int frame::monitor_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors) { |
|
239 |
return local_offset_for_compiler(local_index, nof_args, max_nof_locals, max_nof_monitors); |
|
240 |
} |
|
241 |
||
242 |
inline int frame::min_local_offset_for_compiler(int nof_args, int max_nof_locals, int max_nof_monitors) { |
|
243 |
return (nof_args - (max_nof_locals + max_nof_monitors*2) - 1); |
|
244 |
} |
|
245 |
||
246 |
inline bool frame::volatile_across_calls(Register reg) { |
|
247 |
return true; |
|
248 |
} |
|
249 |
||
16363
d6b2cbb70886
8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents:
14626
diff
changeset
|
250 |
inline oop frame::saved_oop_result(RegisterMap* map) const { |
d6b2cbb70886
8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents:
14626
diff
changeset
|
251 |
oop* result_adr = (oop *)map->location(rax->as_VMReg()); |
d6b2cbb70886
8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents:
14626
diff
changeset
|
252 |
guarantee(result_adr != NULL, "bad register save location"); |
1 | 253 |
|
16363
d6b2cbb70886
8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents:
14626
diff
changeset
|
254 |
return (*result_adr); |
1 | 255 |
} |
256 |
||
257 |
inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) { |
|
16363
d6b2cbb70886
8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents:
14626
diff
changeset
|
258 |
oop* result_adr = (oop *)map->location(rax->as_VMReg()); |
d6b2cbb70886
8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents:
14626
diff
changeset
|
259 |
guarantee(result_adr != NULL, "bad register save location"); |
d6b2cbb70886
8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents:
14626
diff
changeset
|
260 |
|
d6b2cbb70886
8008328: [partfait] Null pointer defererence in hotspot/src/cpu/x86/vm/frame_x86.inline.hpp
morris
parents:
14626
diff
changeset
|
261 |
*result_adr = obj; |
1 | 262 |
} |
7397 | 263 |
|
264 |
#endif // CPU_X86_VM_FRAME_X86_INLINE_HPP |