annotate src/cpu/sparc/vm/frame_sparc.inline.hpp @ 17524:89152779163c

Merge with jdk8-b132
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 11:59:32 +0200
parents 4ca6dc0799b6
children 52b4284cb496
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17524
89152779163c Merge with jdk8-b132
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 14909
diff changeset
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef CPU_SPARC_VM_FRAME_SPARC_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define CPU_SPARC_VM_FRAME_SPARC_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
7204
f0c2369fda5a 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 7199
diff changeset
28 #include "asm/macroAssembler.hpp"
f0c2369fda5a 8003250: SPARC: move MacroAssembler into separate file
twisti
parents: 7199
diff changeset
29
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // Inline functions for SPARC frames:
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Constructors
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 inline frame::frame() {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 _pc = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 _sp = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 _younger_sp = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 _cb = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 _deopt_state = unknown;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 _sp_adjustment_by_callee = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 }
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // Accessors:
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 inline bool frame::equal(frame other) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
46 bool ret = sp() == other.sp()
a61af66fc99e Initial load
duke
parents:
diff changeset
47 && fp() == other.fp()
a61af66fc99e Initial load
duke
parents:
diff changeset
48 && pc() == other.pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
49 assert(!ret || ret && cb() == other.cb() && _deopt_state == other._deopt_state, "inconsistent construction");
a61af66fc99e Initial load
duke
parents:
diff changeset
50 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // Return unique id for this frame. The id must have a value where we can distinguish
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // identity and younger/older relationship. NULL represents an invalid (incomparable)
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // frame.
a61af66fc99e Initial load
duke
parents:
diff changeset
56 inline intptr_t* frame::id(void) const { return unextended_sp(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // Relationals on frames based
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // Return true if the frame is younger (more recent activation) than the frame represented by id
a61af66fc99e Initial load
duke
parents:
diff changeset
60 inline bool frame::is_younger(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id");
a61af66fc99e Initial load
duke
parents:
diff changeset
61 return this->id() < id ; }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // Return true if the frame is older (less recent activation) than the frame represented by id
a61af66fc99e Initial load
duke
parents:
diff changeset
64 inline bool frame::is_older(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id");
a61af66fc99e Initial load
duke
parents:
diff changeset
65 return this->id() > id ; }
a61af66fc99e Initial load
duke
parents:
diff changeset
66
793
eacd97c88873 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 0
diff changeset
67 inline int frame::frame_size(RegisterMap* map) const { return sender_sp() - sp(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 inline intptr_t* frame::link() const { return (intptr_t *)(fp()[FP->sp_offset_in_saved_window()] + STACK_BIAS); }
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 inline void frame::set_link(intptr_t* addr) { assert(link()==addr, "frame nesting is controlled by hardware"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 inline intptr_t* frame::unextended_sp() const { return sp() + _sp_adjustment_by_callee; }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // return address:
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 inline address frame::sender_pc() const { return *I7_addr() + pc_return_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 inline address* frame::I7_addr() const { return (address*) &sp()[ I7->sp_offset_in_saved_window()]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 inline address* frame::I0_addr() const { return (address*) &sp()[ I0->sp_offset_in_saved_window()]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 inline address* frame::O7_addr() const { return (address*) &younger_sp()[ I7->sp_offset_in_saved_window()]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 inline address* frame::O0_addr() const { return (address*) &younger_sp()[ I0->sp_offset_in_saved_window()]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 inline intptr_t* frame::sender_sp() const { return fp(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
86
4806
eaa9557116a2 7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents: 1972
diff changeset
87 inline intptr_t* frame::real_fp() const { return fp(); }
eaa9557116a2 7120448: Fix FP values for compiled frames in frame::describe
bdelsart
parents: 1972
diff changeset
88
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Used only in frame::oopmapreg_to_location
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // This return a value in VMRegImpl::slot_size
a61af66fc99e Initial load
duke
parents:
diff changeset
91 inline int frame::pd_oop_map_offset_adjustment() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 return _sp_adjustment_by_callee * VMRegImpl::slots_per_word;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
96 inline intptr_t** frame::interpreter_frame_locals_addr() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 interpreterState istate = get_interpreterState();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 return (intptr_t**) &istate->_locals;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 inline intptr_t* frame::interpreter_frame_bcx_addr() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 interpreterState istate = get_interpreterState();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 return (intptr_t*) &istate->_bcp;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 inline intptr_t* frame::interpreter_frame_mdx_addr() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 interpreterState istate = get_interpreterState();
a61af66fc99e Initial load
duke
parents:
diff changeset
108 return (intptr_t*) &istate->_mdx;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 inline jint frame::interpreter_frame_expression_stack_direction() { return -1; }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // bottom(base) of the expression stack (highest address)
a61af66fc99e Initial load
duke
parents:
diff changeset
114 inline intptr_t* frame::interpreter_frame_expression_stack() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 return (intptr_t*)interpreter_frame_monitor_end() - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // top of expression stack (lowest address)
a61af66fc99e Initial load
duke
parents:
diff changeset
119 inline intptr_t* frame::interpreter_frame_tos_address() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 interpreterState istate = get_interpreterState();
a61af66fc99e Initial load
duke
parents:
diff changeset
121 return istate->_stack + 1; // Is this off by one? QQQ
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // monitor elements
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // in keeping with Intel side: end is lower in memory than begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // and beginning element is oldest element
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // Also begin is one past last monitor.
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 inline BasicObjectLock* frame::interpreter_frame_monitor_begin() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 return get_interpreterState()->monitor_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 inline BasicObjectLock* frame::interpreter_frame_monitor_end() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 return (BasicObjectLock*) get_interpreterState()->stack_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 inline int frame::interpreter_frame_monitor_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 return round_to(BasicObjectLock::size(), WordsPerLong);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4806
diff changeset
143 inline Method** frame::interpreter_frame_method_addr() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
144 interpreterState istate = get_interpreterState();
a61af66fc99e Initial load
duke
parents:
diff changeset
145 return &istate->_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // Constant pool cache
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // where LcpoolCache is saved:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4806
diff changeset
152 inline ConstantPoolCache** frame::interpreter_frame_cpoolcache_addr() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
153 interpreterState istate = get_interpreterState();
a61af66fc99e Initial load
duke
parents:
diff changeset
154 return &istate->_constants; // should really use accessor
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4806
diff changeset
157 inline ConstantPoolCache** frame::interpreter_frame_cache_addr() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
158 interpreterState istate = get_interpreterState();
a61af66fc99e Initial load
duke
parents:
diff changeset
159 return &istate->_constants;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 #else // !CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 inline intptr_t** frame::interpreter_frame_locals_addr() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 return (intptr_t**) sp_addr_at( Llocals->sp_offset_in_saved_window());
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 inline intptr_t* frame::interpreter_frame_bcx_addr() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // %%%%% reinterpreting Lbcp as a bcx
a61af66fc99e Initial load
duke
parents:
diff changeset
170 return (intptr_t*) sp_addr_at( Lbcp->sp_offset_in_saved_window());
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 inline intptr_t* frame::interpreter_frame_mdx_addr() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // %%%%% reinterpreting ImethodDataPtr as a mdx
a61af66fc99e Initial load
duke
parents:
diff changeset
175 return (intptr_t*) sp_addr_at( ImethodDataPtr->sp_offset_in_saved_window());
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 inline jint frame::interpreter_frame_expression_stack_direction() { return -1; }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // bottom(base) of the expression stack (highest address)
a61af66fc99e Initial load
duke
parents:
diff changeset
181 inline intptr_t* frame::interpreter_frame_expression_stack() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 return (intptr_t*)interpreter_frame_monitors() - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // top of expression stack (lowest address)
a61af66fc99e Initial load
duke
parents:
diff changeset
186 inline intptr_t* frame::interpreter_frame_tos_address() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 return *interpreter_frame_esp_addr() + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189
7199
cd3d6a6b95d9 8003240: x86: move MacroAssembler into separate file
twisti
parents: 6725
diff changeset
190 inline BasicObjectLock** frame::interpreter_frame_monitors_addr() const {
cd3d6a6b95d9 8003240: x86: move MacroAssembler into separate file
twisti
parents: 6725
diff changeset
191 return (BasicObjectLock**) sp_addr_at(Lmonitors->sp_offset_in_saved_window());
cd3d6a6b95d9 8003240: x86: move MacroAssembler into separate file
twisti
parents: 6725
diff changeset
192 }
cd3d6a6b95d9 8003240: x86: move MacroAssembler into separate file
twisti
parents: 6725
diff changeset
193 inline intptr_t** frame::interpreter_frame_esp_addr() const {
cd3d6a6b95d9 8003240: x86: move MacroAssembler into separate file
twisti
parents: 6725
diff changeset
194 return (intptr_t**)sp_addr_at(Lesp->sp_offset_in_saved_window());
cd3d6a6b95d9 8003240: x86: move MacroAssembler into separate file
twisti
parents: 6725
diff changeset
195 }
cd3d6a6b95d9 8003240: x86: move MacroAssembler into separate file
twisti
parents: 6725
diff changeset
196
0
a61af66fc99e Initial load
duke
parents:
diff changeset
197 inline void frame::interpreter_frame_set_tos_address( intptr_t* x ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 *interpreter_frame_esp_addr() = x - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // monitor elements
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // in keeping with Intel side: end is lower in memory than begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // and beginning element is oldest element
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Also begin is one past last monitor.
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 inline BasicObjectLock* frame::interpreter_frame_monitor_begin() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 int rounded_vm_local_words = round_to(frame::interpreter_frame_vm_local_words, WordsPerLong);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 return (BasicObjectLock *)fp_addr_at(-rounded_vm_local_words);
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 inline BasicObjectLock* frame::interpreter_frame_monitor_end() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 return interpreter_frame_monitors();
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 inline void frame::interpreter_frame_set_monitor_end(BasicObjectLock* value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 interpreter_frame_set_monitors(value);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 inline int frame::interpreter_frame_monitor_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 return round_to(BasicObjectLock::size(), WordsPerLong);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4806
diff changeset
225 inline Method** frame::interpreter_frame_method_addr() const {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4806
diff changeset
226 return (Method**)sp_addr_at( Lmethod->sp_offset_in_saved_window());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // Constant pool cache
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // where LcpoolCache is saved:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4806
diff changeset
233 inline ConstantPoolCache** frame::interpreter_frame_cpoolcache_addr() const {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4806
diff changeset
234 return (ConstantPoolCache**)sp_addr_at(LcpoolCache->sp_offset_in_saved_window());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4806
diff changeset
237 inline ConstantPoolCache** frame::interpreter_frame_cache_addr() const {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4806
diff changeset
238 return (ConstantPoolCache**)sp_addr_at( LcpoolCache->sp_offset_in_saved_window());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 #endif // CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242
11146
e619a2766bcc 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 7204
diff changeset
243 inline JavaCallWrapper** frame::entry_frame_call_wrapper_addr() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // note: adjust this code if the link argument in StubGenerator::call_stub() changes!
a61af66fc99e Initial load
duke
parents:
diff changeset
245 const Argument link = Argument(0, false);
11146
e619a2766bcc 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 7204
diff changeset
246 return (JavaCallWrapper**)&sp()[link.as_in().as_register()->sp_offset_in_saved_window()];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 inline int frame::local_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // always allocate non-argument locals 0..5 as if they were arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
252 int allocated_above_frame = nof_args;
a61af66fc99e Initial load
duke
parents:
diff changeset
253 if (allocated_above_frame < callee_register_argument_save_area_words)
a61af66fc99e Initial load
duke
parents:
diff changeset
254 allocated_above_frame = callee_register_argument_save_area_words;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 if (allocated_above_frame > max_nof_locals)
a61af66fc99e Initial load
duke
parents:
diff changeset
256 allocated_above_frame = max_nof_locals;
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // Note: monitors (BasicLock blocks) are never allocated in argument slots
a61af66fc99e Initial load
duke
parents:
diff changeset
259 //assert(local_index >= 0 && local_index < max_nof_locals, "bad local index");
a61af66fc99e Initial load
duke
parents:
diff changeset
260 if (local_index < allocated_above_frame)
a61af66fc99e Initial load
duke
parents:
diff changeset
261 return local_index + callee_register_argument_save_area_sp_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 else
a61af66fc99e Initial load
duke
parents:
diff changeset
263 return local_index - (max_nof_locals + max_nof_monitors*2) + compiler_frame_vm_locals_fp_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 inline int frame::monitor_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors) {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 assert(local_index >= max_nof_locals && ((local_index - max_nof_locals) & 1) && (local_index - max_nof_locals) < max_nof_monitors*2, "bad monitor index");
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // The compiler uses the __higher__ of two indexes allocated to the monitor.
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // Increasing local indexes are mapped to increasing memory locations,
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // so the start of the BasicLock is associated with the __lower__ index.
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273 int offset = (local_index-1) - (max_nof_locals + max_nof_monitors*2) + compiler_frame_vm_locals_fp_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // We allocate monitors aligned zero mod 8:
a61af66fc99e Initial load
duke
parents:
diff changeset
276 assert((offset & 1) == 0, "monitor must be an an even address.");
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // This works because all monitors are allocated after
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // all locals, and because the highest address corresponding to any
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // monitor index is always even.
a61af66fc99e Initial load
duke
parents:
diff changeset
280 assert((compiler_frame_vm_locals_fp_offset & 1) == 0, "end of monitors must be even address");
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 return offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 inline int frame::min_local_offset_for_compiler(int nof_args, int max_nof_locals, int max_nof_monitors) {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // always allocate non-argument locals 0..5 as if they were arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
287 int allocated_above_frame = nof_args;
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if (allocated_above_frame < callee_register_argument_save_area_words)
a61af66fc99e Initial load
duke
parents:
diff changeset
289 allocated_above_frame = callee_register_argument_save_area_words;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 if (allocated_above_frame > max_nof_locals)
a61af66fc99e Initial load
duke
parents:
diff changeset
291 allocated_above_frame = max_nof_locals;
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 int allocated_in_frame = (max_nof_locals + max_nof_monitors*2) - allocated_above_frame;
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 return compiler_frame_vm_locals_fp_offset - allocated_in_frame;
a61af66fc99e Initial load
duke
parents:
diff changeset
296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // On SPARC, the %lN and %iN registers are non-volatile.
a61af66fc99e Initial load
duke
parents:
diff changeset
299 inline bool frame::volatile_across_calls(Register reg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // This predicate is (presently) applied only to temporary registers,
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // and so it need not recognize non-volatile globals.
a61af66fc99e Initial load
duke
parents:
diff changeset
302 return reg->is_out() || reg->is_global();
a61af66fc99e Initial load
duke
parents:
diff changeset
303 }
a61af66fc99e Initial load
duke
parents:
diff changeset
304
a61af66fc99e Initial load
duke
parents:
diff changeset
305 inline oop frame::saved_oop_result(RegisterMap* map) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
306 return *((oop*) map->location(O0->as_VMReg()));
a61af66fc99e Initial load
duke
parents:
diff changeset
307 }
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 *((oop*) map->location(O0->as_VMReg())) = obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
311 }
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
312
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
313 #endif // CPU_SPARC_VM_FRAME_SPARC_INLINE_HPP