annotate src/cpu/sparc/vm/frame_sparc.cpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children 93b6525e3b82
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_frame_sparc.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 void RegisterMap::pd_clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
29 if (_thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
30 frame fr = _thread->last_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
31 _window = fr.sp();
a61af66fc99e Initial load
duke
parents:
diff changeset
32 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 _window = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 }
a61af66fc99e Initial load
duke
parents:
diff changeset
35 _younger_window = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 }
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // Unified register numbering scheme: each 32-bits counts as a register
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // number, so all the V9 registers take 2 slots.
a61af66fc99e Initial load
duke
parents:
diff changeset
41 const static int R_L_nums[] = {0+040,2+040,4+040,6+040,8+040,10+040,12+040,14+040};
a61af66fc99e Initial load
duke
parents:
diff changeset
42 const static int R_I_nums[] = {0+060,2+060,4+060,6+060,8+060,10+060,12+060,14+060};
a61af66fc99e Initial load
duke
parents:
diff changeset
43 const static int R_O_nums[] = {0+020,2+020,4+020,6+020,8+020,10+020,12+020,14+020};
a61af66fc99e Initial load
duke
parents:
diff changeset
44 const static int R_G_nums[] = {0+000,2+000,4+000,6+000,8+000,10+000,12+000,14+000};
a61af66fc99e Initial load
duke
parents:
diff changeset
45 static RegisterMap::LocationValidType bad_mask = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 static RegisterMap::LocationValidType R_LIO_mask = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 static bool register_map_inited = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 static void register_map_init() {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 if (!register_map_inited) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 register_map_inited = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 for (i = 0; i < 8; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 assert(R_L_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
a61af66fc99e Initial load
duke
parents:
diff changeset
55 assert(R_I_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
a61af66fc99e Initial load
duke
parents:
diff changeset
56 assert(R_O_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
a61af66fc99e Initial load
duke
parents:
diff changeset
57 assert(R_G_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
a61af66fc99e Initial load
duke
parents:
diff changeset
58 }
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 bad_mask |= (1LL << R_O_nums[6]); // SP
a61af66fc99e Initial load
duke
parents:
diff changeset
61 bad_mask |= (1LL << R_O_nums[7]); // cPC
a61af66fc99e Initial load
duke
parents:
diff changeset
62 bad_mask |= (1LL << R_I_nums[6]); // FP
a61af66fc99e Initial load
duke
parents:
diff changeset
63 bad_mask |= (1LL << R_I_nums[7]); // rPC
a61af66fc99e Initial load
duke
parents:
diff changeset
64 bad_mask |= (1LL << R_G_nums[2]); // TLS
a61af66fc99e Initial load
duke
parents:
diff changeset
65 bad_mask |= (1LL << R_G_nums[7]); // reserved by libthread
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 for (i = 0; i < 8; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 R_LIO_mask |= (1LL << R_L_nums[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 R_LIO_mask |= (1LL << R_I_nums[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 R_LIO_mask |= (1LL << R_O_nums[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 address RegisterMap::pd_location(VMReg regname) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 register_map_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 assert(regname->is_reg(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // Only the GPRs get handled this way
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if( !regname->is_Register())
a61af66fc99e Initial load
duke
parents:
diff changeset
82 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // don't talk about bad registers
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if ((bad_mask & ((LocationValidType)1 << regname->value())) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Convert to a GPR
a61af66fc99e Initial load
duke
parents:
diff changeset
90 Register reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 int second_word = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // 32-bit registers for in, out and local
a61af66fc99e Initial load
duke
parents:
diff changeset
93 if (!regname->is_concrete()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // HMM ought to return NULL for any non-concrete (odd) vmreg
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // this all tied up in the fact we put out double oopMaps for
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // register locations. When that is fixed we'd will return NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // (or assert here).
a61af66fc99e Initial load
duke
parents:
diff changeset
98 reg = regname->prev()->as_Register();
a61af66fc99e Initial load
duke
parents:
diff changeset
99 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
100 second_word = sizeof(jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
102 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
104 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 reg = regname->as_Register();
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 if (reg->is_out()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 assert(_younger_window != NULL, "Younger window should be available");
a61af66fc99e Initial load
duke
parents:
diff changeset
109 return second_word + (address)&_younger_window[reg->after_save()->sp_offset_in_saved_window()];
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 if (reg->is_local() || reg->is_in()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 assert(_window != NULL, "Window should be available");
a61af66fc99e Initial load
duke
parents:
diff changeset
113 return second_word + (address)&_window[reg->sp_offset_in_saved_window()];
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Only the window'd GPRs get handled this way; not the globals.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void RegisterMap::check_location_valid() {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 register_map_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
123 assert((_location_valid[0] & bad_mask) == 0, "cannot have special locations for SP,FP,TLS,etc.");
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // We are shifting windows. That means we are moving all %i to %o,
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // getting rid of all current %l, and keeping all %g. This is only
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // complicated if any of the location pointers for these are valid.
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // The normal case is that everything is in its standard register window
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // home, and _location_valid[0] is zero. In that case, this routine
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // does exactly nothing.
a61af66fc99e Initial load
duke
parents:
diff changeset
133 void RegisterMap::shift_individual_registers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 if (!update_map()) return; // this only applies to maps with locations
a61af66fc99e Initial load
duke
parents:
diff changeset
135 register_map_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
136 check_location_valid();
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 LocationValidType lv = _location_valid[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
139 LocationValidType lv0 = lv;
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 lv &= ~R_LIO_mask; // clear %l, %o, %i regs
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // if we cleared some non-%g locations, we may have to do some shifting
a61af66fc99e Initial load
duke
parents:
diff changeset
144 if (lv != lv0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // copy %i0-%i5 to %o0-%o5, if they have special locations
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // This can happen in within stubs which spill argument registers
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // around a dynamic link operation, such as resolve_opt_virtual_call.
a61af66fc99e Initial load
duke
parents:
diff changeset
148 for (int i = 0; i < 8; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 if (lv0 & (1LL << R_I_nums[i])) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 _location[R_O_nums[i]] = _location[R_I_nums[i]];
a61af66fc99e Initial load
duke
parents:
diff changeset
151 lv |= (1LL << R_O_nums[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 _location_valid[0] = lv;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 check_location_valid();
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 bool frame::safe_for_sender(JavaThread *thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 address sp = (address)_sp;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 if (sp != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
164 (sp <= thread->stack_base() && sp >= thread->stack_base() - thread->stack_size())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // Unfortunately we can only check frame complete for runtime stubs and nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // other generic buffer blobs are more problematic so we just assume they are
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // ok. adapter blobs never have a frame complete and are never ok.
a61af66fc99e Initial load
duke
parents:
diff changeset
168 if (_cb != NULL && !_cb->is_frame_complete_at(_pc)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 if (_cb->is_nmethod() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // constructors
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // Construct an unpatchable, deficient frame
a61af66fc99e Initial load
duke
parents:
diff changeset
181 frame::frame(intptr_t* sp, unpatchable_t, address pc, CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
183 assert( (((intptr_t)sp & (wordSize-1)) == 0), "frame constructor passed an invalid sp");
a61af66fc99e Initial load
duke
parents:
diff changeset
184 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
185 _sp = sp;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 _younger_sp = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 _pc = pc;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 _cb = cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 _sp_adjustment_by_callee = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
190 assert(pc == NULL && cb == NULL || pc != NULL, "can't have a cb and no pc!");
a61af66fc99e Initial load
duke
parents:
diff changeset
191 if (_cb == NULL && _pc != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 _cb = CodeCache::find_blob(_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
194 _deopt_state = unknown;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
196 if ( _cb != NULL && _cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // Without a valid unextended_sp() we can't convert the pc to "original"
a61af66fc99e Initial load
duke
parents:
diff changeset
198 assert(!((nmethod*)_cb)->is_deopt_pc(_pc), "invariant broken");
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 frame::frame(intptr_t* sp, intptr_t* younger_sp, bool younger_frame_adjusted_stack) {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 _sp = sp;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 _younger_sp = younger_sp;
a61af66fc99e Initial load
duke
parents:
diff changeset
206 if (younger_sp == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // make a deficient frame which doesn't know where its PC is
a61af66fc99e Initial load
duke
parents:
diff changeset
208 _pc = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 _cb = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
210 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 _pc = (address)younger_sp[I7->sp_offset_in_saved_window()] + pc_return_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 assert( (intptr_t*)younger_sp[FP->sp_offset_in_saved_window()] == (intptr_t*)((intptr_t)sp - STACK_BIAS), "younger_sp must be valid");
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // Any frame we ever build should always "safe" therefore we should not have to call
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // find_blob_unsafe
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // In case of native stubs, the pc retrieved here might be
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // wrong. (the _last_native_pc will have the right value)
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // So do not put add any asserts on the _pc here.
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 if (younger_frame_adjusted_stack) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // compute adjustment to this frame's SP made by its interpreted callee
a61af66fc99e Initial load
duke
parents:
diff changeset
221 _sp_adjustment_by_callee = (intptr_t*)((intptr_t)younger_sp[I5_savedSP->sp_offset_in_saved_window()] +
a61af66fc99e Initial load
duke
parents:
diff changeset
222 STACK_BIAS) - sp;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 _sp_adjustment_by_callee = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 _deopt_state = unknown;
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // It is important that frame be fully construct when we do this lookup
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // as get_original_pc() needs correct value for unextended_sp()
a61af66fc99e Initial load
duke
parents:
diff changeset
231 if (_pc != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 _cb = CodeCache::find_blob(_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 if (_cb != NULL && _cb->is_nmethod() && ((nmethod*)_cb)->is_deopt_pc(_pc)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
234 _pc = ((nmethod*)_cb)->get_original_pc(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
235 _deopt_state = is_deoptimized;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 _deopt_state = not_deoptimized;
a61af66fc99e Initial load
duke
parents:
diff changeset
238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 bool frame::is_interpreted_frame() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 return Interpreter::contains(pc());
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // sender_sp
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 intptr_t* frame::interpreter_frame_sender_sp() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 assert(is_interpreted_frame(), "interpreted frame expected");
a61af66fc99e Initial load
duke
parents:
diff changeset
250 return fp();
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 #ifndef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
254 void frame::set_interpreter_frame_sender_sp(intptr_t* sender_sp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 assert(is_interpreted_frame(), "interpreted frame expected");
a61af66fc99e Initial load
duke
parents:
diff changeset
256 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 #endif // CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
262 // Debugging aid
a61af66fc99e Initial load
duke
parents:
diff changeset
263 static frame nth_sender(int n) {
a61af66fc99e Initial load
duke
parents:
diff changeset
264 frame f = JavaThread::current()->last_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 for(int i = 0; i < n; ++i)
a61af66fc99e Initial load
duke
parents:
diff changeset
267 f = f.sender((RegisterMap*)NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 printf("first frame %d\n", f.is_first_frame() ? 1 : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
270 printf("interpreted frame %d\n", f.is_interpreted_frame() ? 1 : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 printf("java frame %d\n", f.is_java_frame() ? 1 : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
272 printf("entry frame %d\n", f.is_entry_frame() ? 1 : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
273 printf("native frame %d\n", f.is_native_frame() ? 1 : 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
274 if (f.is_compiled_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 if (f.is_deoptimized_frame())
a61af66fc99e Initial load
duke
parents:
diff changeset
276 printf("deoptimized frame 1\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
277 else
a61af66fc99e Initial load
duke
parents:
diff changeset
278 printf("compiled frame 1\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280
a61af66fc99e Initial load
duke
parents:
diff changeset
281 return f;
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 frame frame::sender_for_entry_frame(RegisterMap *map) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 assert(map != NULL, "map must be set");
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // Java frame called from C; skip all C frames and return top C
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // frame of that chunk as the sender
a61af66fc99e Initial load
duke
parents:
diff changeset
290 JavaFrameAnchor* jfa = entry_frame_call_wrapper()->anchor();
a61af66fc99e Initial load
duke
parents:
diff changeset
291 assert(!entry_frame_is_first(), "next Java fp must be non zero");
a61af66fc99e Initial load
duke
parents:
diff changeset
292 assert(jfa->last_Java_sp() > _sp, "must be above this frame on stack");
a61af66fc99e Initial load
duke
parents:
diff changeset
293 intptr_t* last_Java_sp = jfa->last_Java_sp();
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // Since we are walking the stack now this nested anchor is obviously walkable
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // even if it wasn't when it was stacked.
a61af66fc99e Initial load
duke
parents:
diff changeset
296 if (!jfa->walkable()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // Capture _last_Java_pc (if needed) and mark anchor walkable.
a61af66fc99e Initial load
duke
parents:
diff changeset
298 jfa->capture_last_Java_pc(_sp);
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300 assert(jfa->last_Java_pc() != NULL, "No captured pc!");
a61af66fc99e Initial load
duke
parents:
diff changeset
301 map->clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
302 map->make_integer_regs_unsaved();
a61af66fc99e Initial load
duke
parents:
diff changeset
303 map->shift_window(last_Java_sp, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
304 assert(map->include_argument_oops(), "should be set by clear");
a61af66fc99e Initial load
duke
parents:
diff changeset
305 return frame(last_Java_sp, frame::unpatchable, jfa->last_Java_pc());
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 frame frame::sender_for_interpreter_frame(RegisterMap *map) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 ShouldNotCallThis();
a61af66fc99e Initial load
duke
parents:
diff changeset
310 return sender(map);
a61af66fc99e Initial load
duke
parents:
diff changeset
311 }
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 frame frame::sender_for_compiled_frame(RegisterMap *map) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 ShouldNotCallThis();
a61af66fc99e Initial load
duke
parents:
diff changeset
315 return sender(map);
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 frame frame::sender(RegisterMap* map) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
319 assert(map != NULL, "map must be set");
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 assert(CodeCache::find_blob_unsafe(_pc) == _cb, "inconsistent");
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // Default is not to follow arguments; update it accordingly below
a61af66fc99e Initial load
duke
parents:
diff changeset
324 map->set_include_argument_oops(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 if (is_entry_frame()) return sender_for_entry_frame(map);
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 intptr_t* younger_sp = sp();
a61af66fc99e Initial load
duke
parents:
diff changeset
329 intptr_t* sp = sender_sp();
a61af66fc99e Initial load
duke
parents:
diff changeset
330 bool adjusted_stack = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // Note: The version of this operation on any platform with callee-save
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // registers must update the register map (if not null).
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // In order to do this correctly, the various subtypes of
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // of frame (interpreted, compiled, glue, native),
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // must be distinguished. There is no need on SPARC for
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // such distinctions, because all callee-save registers are
a61af66fc99e Initial load
duke
parents:
diff changeset
338 // preserved for all frames via SPARC-specific mechanisms.
a61af66fc99e Initial load
duke
parents:
diff changeset
339 //
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // *** HOWEVER, *** if and when we make any floating-point
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // registers callee-saved, then we will have to copy over
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // the RegisterMap update logic from the Intel code.
a61af66fc99e Initial load
duke
parents:
diff changeset
343
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // The constructor of the sender must know whether this frame is interpreted so it can set the
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // sender's _sp_adjustment_by_callee field. An osr adapter frame was originally
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // interpreted but its pc is in the code cache (for c1 -> osr_frame_return_id stub), so it must be
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // explicitly recognized.
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 adjusted_stack = is_interpreted_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
350 if (adjusted_stack) {
a61af66fc99e Initial load
duke
parents:
diff changeset
351 map->make_integer_regs_unsaved();
a61af66fc99e Initial load
duke
parents:
diff changeset
352 map->shift_window(sp, younger_sp);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 } else if (_cb != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
354 // Update the locations of implicitly saved registers to be their
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // addresses in the register save area.
a61af66fc99e Initial load
duke
parents:
diff changeset
356 // For %o registers, the addresses of %i registers in the next younger
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // frame are used.
a61af66fc99e Initial load
duke
parents:
diff changeset
358 map->shift_window(sp, younger_sp);
a61af66fc99e Initial load
duke
parents:
diff changeset
359 if (map->update_map()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
360 // Tell GC to use argument oopmaps for some runtime stubs that need it.
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // For C1, the runtime stub might not have oop maps, so set this flag
a61af66fc99e Initial load
duke
parents:
diff changeset
362 // outside of update_register_map.
a61af66fc99e Initial load
duke
parents:
diff changeset
363 map->set_include_argument_oops(_cb->caller_must_gc_arguments(map->thread()));
a61af66fc99e Initial load
duke
parents:
diff changeset
364 if (_cb->oop_maps() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 OopMapSet::update_register_map(this, map);
a61af66fc99e Initial load
duke
parents:
diff changeset
366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
368 }
a61af66fc99e Initial load
duke
parents:
diff changeset
369 return frame(sp, younger_sp, adjusted_stack);
a61af66fc99e Initial load
duke
parents:
diff changeset
370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 void frame::patch_pc(Thread* thread, address pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
374 if(thread == Thread::current()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 StubRoutines::Sparc::flush_callers_register_windows_func()();
a61af66fc99e Initial load
duke
parents:
diff changeset
376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
377 if (TracePcPatching) {
a61af66fc99e Initial load
duke
parents:
diff changeset
378 // QQQ this assert is invalid (or too strong anyway) sice _pc could
a61af66fc99e Initial load
duke
parents:
diff changeset
379 // be original pc and frame could have the deopt pc.
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // assert(_pc == *O7_addr() + pc_return_offset, "frame has wrong pc");
a61af66fc99e Initial load
duke
parents:
diff changeset
381 tty->print_cr("patch_pc at address 0x%x [0x%x -> 0x%x] ", O7_addr(), _pc, pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
382 }
a61af66fc99e Initial load
duke
parents:
diff changeset
383 _cb = CodeCache::find_blob(pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
384 *O7_addr() = pc - pc_return_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
385 _cb = CodeCache::find_blob(_pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
386 if (_cb != NULL && _cb->is_nmethod() && ((nmethod*)_cb)->is_deopt_pc(_pc)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
387 address orig = ((nmethod*)_cb)->get_original_pc(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 assert(orig == _pc, "expected original to be stored before patching");
a61af66fc99e Initial load
duke
parents:
diff changeset
389 _deopt_state = is_deoptimized;
a61af66fc99e Initial load
duke
parents:
diff changeset
390 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
391 _deopt_state = not_deoptimized;
a61af66fc99e Initial load
duke
parents:
diff changeset
392 }
a61af66fc99e Initial load
duke
parents:
diff changeset
393 }
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395
a61af66fc99e Initial load
duke
parents:
diff changeset
396 static bool sp_is_valid(intptr_t* old_sp, intptr_t* young_sp, intptr_t* sp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
397 return (((intptr_t)sp & (2*wordSize-1)) == 0 &&
a61af66fc99e Initial load
duke
parents:
diff changeset
398 sp <= old_sp &&
a61af66fc99e Initial load
duke
parents:
diff changeset
399 sp >= young_sp);
a61af66fc99e Initial load
duke
parents:
diff changeset
400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402
a61af66fc99e Initial load
duke
parents:
diff changeset
403 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
404 Find the (biased) sp that is just younger than old_sp starting at sp.
a61af66fc99e Initial load
duke
parents:
diff changeset
405 If not found return NULL. Register windows are assumed to be flushed.
a61af66fc99e Initial load
duke
parents:
diff changeset
406 */
a61af66fc99e Initial load
duke
parents:
diff changeset
407 intptr_t* frame::next_younger_sp_or_null(intptr_t* old_sp, intptr_t* sp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
408
a61af66fc99e Initial load
duke
parents:
diff changeset
409 intptr_t* previous_sp = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 intptr_t* orig_sp = sp;
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412 int max_frames = (old_sp - sp) / 16; // Minimum frame size is 16
a61af66fc99e Initial load
duke
parents:
diff changeset
413 int max_frame2 = max_frames;
a61af66fc99e Initial load
duke
parents:
diff changeset
414 while(sp != old_sp && sp_is_valid(old_sp, orig_sp, sp)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
415 if (max_frames-- <= 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // too many frames have gone by; invalid parameters given to this function
a61af66fc99e Initial load
duke
parents:
diff changeset
417 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
418 previous_sp = sp;
a61af66fc99e Initial load
duke
parents:
diff changeset
419 sp = (intptr_t*)sp[FP->sp_offset_in_saved_window()];
a61af66fc99e Initial load
duke
parents:
diff changeset
420 sp = (intptr_t*)((intptr_t)sp + STACK_BIAS);
a61af66fc99e Initial load
duke
parents:
diff changeset
421 }
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423 return (sp == old_sp ? previous_sp : NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
427 Determine if "sp" is a valid stack pointer. "sp" is assumed to be younger than
a61af66fc99e Initial load
duke
parents:
diff changeset
428 "valid_sp". So if "sp" is valid itself then it should be possible to walk frames
a61af66fc99e Initial load
duke
parents:
diff changeset
429 from "sp" to "valid_sp". The assumption is that the registers windows for the
a61af66fc99e Initial load
duke
parents:
diff changeset
430 thread stack in question are flushed.
a61af66fc99e Initial load
duke
parents:
diff changeset
431 */
a61af66fc99e Initial load
duke
parents:
diff changeset
432 bool frame::is_valid_stack_pointer(intptr_t* valid_sp, intptr_t* sp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
433 return next_younger_sp_or_null(valid_sp, sp) != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437 bool frame::interpreter_frame_equals_unpacked_fp(intptr_t* fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
438 assert(is_interpreted_frame(), "must be interpreter frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
439 return this->fp() == fp;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 void frame::pd_gc_epilog() {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 if (is_interpreted_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
445 // set constant pool cache entry for interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
446 methodOop m = interpreter_frame_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 *interpreter_frame_cpoolcache_addr() = m->constants()->cache();
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 bool frame::is_interpreted_frame_valid() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
454 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
455 // Is there anything to do?
a61af66fc99e Initial load
duke
parents:
diff changeset
456 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
457 assert(is_interpreted_frame(), "Not an interpreted frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // These are reasonable sanity checks
a61af66fc99e Initial load
duke
parents:
diff changeset
459 if (fp() == 0 || (intptr_t(fp()) & (2*wordSize-1)) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
460 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 if (sp() == 0 || (intptr_t(sp()) & (2*wordSize-1)) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
463 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
464 }
a61af66fc99e Initial load
duke
parents:
diff changeset
465 const intptr_t interpreter_frame_initial_sp_offset = interpreter_frame_vm_local_words;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 if (fp() + interpreter_frame_initial_sp_offset < sp()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
467 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
469 // These are hacks to keep us out of trouble.
a61af66fc99e Initial load
duke
parents:
diff changeset
470 // The problem with these is that they mask other problems
a61af66fc99e Initial load
duke
parents:
diff changeset
471 if (fp() <= sp()) { // this attempts to deal with unsigned comparison above
a61af66fc99e Initial load
duke
parents:
diff changeset
472 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
473 }
a61af66fc99e Initial load
duke
parents:
diff changeset
474 if (fp() - sp() > 4096) { // stack frames shouldn't be large.
a61af66fc99e Initial load
duke
parents:
diff changeset
475 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
477 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
478 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
480
a61af66fc99e Initial load
duke
parents:
diff changeset
481
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // Windows have been flushed on entry (but not marked). Capture the pc that
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // is the return address to the frame that contains "sp" as its stack pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
484 // This pc resides in the called of the frame corresponding to "sp".
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // As a side effect we mark this JavaFrameAnchor as having flushed the windows.
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // This side effect lets us mark stacked JavaFrameAnchors (stacked in the
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // call_helper) as flushed when we have flushed the windows for the most
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // recent (i.e. current) JavaFrameAnchor. This saves useless flushing calls
a61af66fc99e Initial load
duke
parents:
diff changeset
489 // and lets us find the pc just once rather than multiple times as it did
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // in the bad old _post_Java_state days.
a61af66fc99e Initial load
duke
parents:
diff changeset
491 //
a61af66fc99e Initial load
duke
parents:
diff changeset
492 void JavaFrameAnchor::capture_last_Java_pc(intptr_t* sp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
493 if (last_Java_sp() != NULL && last_Java_pc() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
494 // try and find the sp just younger than _last_Java_sp
a61af66fc99e Initial load
duke
parents:
diff changeset
495 intptr_t* _post_Java_sp = frame::next_younger_sp_or_null(last_Java_sp(), sp);
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // Really this should never fail otherwise VM call must have non-standard
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // frame linkage (bad) or stack is not properly flushed (worse).
a61af66fc99e Initial load
duke
parents:
diff changeset
498 guarantee(_post_Java_sp != NULL, "bad stack!");
a61af66fc99e Initial load
duke
parents:
diff changeset
499 _last_Java_pc = (address) _post_Java_sp[ I7->sp_offset_in_saved_window()] + frame::pc_return_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 }
a61af66fc99e Initial load
duke
parents:
diff changeset
502 set_window_flushed();
a61af66fc99e Initial load
duke
parents:
diff changeset
503 }
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505 void JavaFrameAnchor::make_walkable(JavaThread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
506 if (walkable()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // Eventually make an assert
a61af66fc99e Initial load
duke
parents:
diff changeset
508 guarantee(Thread::current() == (Thread*)thread, "only current thread can flush its registers");
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // We always flush in case the profiler wants it but we won't mark
a61af66fc99e Initial load
duke
parents:
diff changeset
510 // the windows as flushed unless we have a last_Java_frame
a61af66fc99e Initial load
duke
parents:
diff changeset
511 intptr_t* sp = StubRoutines::Sparc::flush_callers_register_windows_func()();
a61af66fc99e Initial load
duke
parents:
diff changeset
512 if (last_Java_sp() != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
513 capture_last_Java_pc(sp);
a61af66fc99e Initial load
duke
parents:
diff changeset
514 }
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 intptr_t* frame::entry_frame_argument_at(int offset) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
518 // convert offset to index to deal with tsi
a61af66fc99e Initial load
duke
parents:
diff changeset
519 int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 intptr_t* LSP = (intptr_t*) sp()[Lentry_args->sp_offset_in_saved_window()];
a61af66fc99e Initial load
duke
parents:
diff changeset
522 return &LSP[index+1];
a61af66fc99e Initial load
duke
parents:
diff changeset
523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 BasicType frame::interpreter_frame_result(oop* oop_result, jvalue* value_result) {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 assert(is_interpreted_frame(), "interpreted frame expected");
a61af66fc99e Initial load
duke
parents:
diff changeset
528 methodOop method = interpreter_frame_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
529 BasicType type = method->result_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 if (method->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
532 // Prior to notifying the runtime of the method_exit the possible result
a61af66fc99e Initial load
duke
parents:
diff changeset
533 // value is saved to l_scratch and d_scratch.
a61af66fc99e Initial load
duke
parents:
diff changeset
534
a61af66fc99e Initial load
duke
parents:
diff changeset
535 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
536 interpreterState istate = get_interpreterState();
a61af66fc99e Initial load
duke
parents:
diff changeset
537 intptr_t* l_scratch = (intptr_t*) &istate->_native_lresult;
a61af66fc99e Initial load
duke
parents:
diff changeset
538 intptr_t* d_scratch = (intptr_t*) &istate->_native_fresult;
a61af66fc99e Initial load
duke
parents:
diff changeset
539 #else /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
540 intptr_t* l_scratch = fp() + interpreter_frame_l_scratch_fp_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
541 intptr_t* d_scratch = fp() + interpreter_frame_d_scratch_fp_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
542 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
543
a61af66fc99e Initial load
duke
parents:
diff changeset
544 address l_addr = (address)l_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
545 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
546 // On 64-bit the result for 1/8/16/32-bit result types is in the other
a61af66fc99e Initial load
duke
parents:
diff changeset
547 // word half
a61af66fc99e Initial load
duke
parents:
diff changeset
548 l_addr += wordSize/2;
a61af66fc99e Initial load
duke
parents:
diff changeset
549 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
550
a61af66fc99e Initial load
duke
parents:
diff changeset
551 switch (type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
552 case T_OBJECT:
a61af66fc99e Initial load
duke
parents:
diff changeset
553 case T_ARRAY: {
a61af66fc99e Initial load
duke
parents:
diff changeset
554 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
555 *oop_result = istate->_oop_temp;
a61af66fc99e Initial load
duke
parents:
diff changeset
556 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
557 oop obj = (oop) at(interpreter_frame_oop_temp_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
558 assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
559 *oop_result = obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
560 #endif // CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
561 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
562 }
a61af66fc99e Initial load
duke
parents:
diff changeset
563
a61af66fc99e Initial load
duke
parents:
diff changeset
564 case T_BOOLEAN : { jint* p = (jint*)l_addr; value_result->z = (jboolean)((*p) & 0x1); break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
565 case T_BYTE : { jint* p = (jint*)l_addr; value_result->b = (jbyte)((*p) & 0xff); break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
566 case T_CHAR : { jint* p = (jint*)l_addr; value_result->c = (jchar)((*p) & 0xffff); break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
567 case T_SHORT : { jint* p = (jint*)l_addr; value_result->s = (jshort)((*p) & 0xffff); break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
568 case T_INT : value_result->i = *(jint*)l_addr; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
569 case T_LONG : value_result->j = *(jlong*)l_scratch; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
570 case T_FLOAT : value_result->f = *(jfloat*)d_scratch; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
571 case T_DOUBLE : value_result->d = *(jdouble*)d_scratch; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
572 case T_VOID : /* Nothing to do */ break;
a61af66fc99e Initial load
duke
parents:
diff changeset
573 default : ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
574 }
a61af66fc99e Initial load
duke
parents:
diff changeset
575 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
576 intptr_t* tos_addr = interpreter_frame_tos_address();
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578 switch(type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
579 case T_OBJECT:
a61af66fc99e Initial load
duke
parents:
diff changeset
580 case T_ARRAY: {
a61af66fc99e Initial load
duke
parents:
diff changeset
581 oop obj = (oop)*tos_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
582 assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
583 *oop_result = obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
584 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
585 }
a61af66fc99e Initial load
duke
parents:
diff changeset
586 case T_BOOLEAN : { jint* p = (jint*)tos_addr; value_result->z = (jboolean)((*p) & 0x1); break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
587 case T_BYTE : { jint* p = (jint*)tos_addr; value_result->b = (jbyte)((*p) & 0xff); break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
588 case T_CHAR : { jint* p = (jint*)tos_addr; value_result->c = (jchar)((*p) & 0xffff); break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
589 case T_SHORT : { jint* p = (jint*)tos_addr; value_result->s = (jshort)((*p) & 0xffff); break; }
a61af66fc99e Initial load
duke
parents:
diff changeset
590 case T_INT : value_result->i = *(jint*)tos_addr; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
591 case T_LONG : value_result->j = *(jlong*)tos_addr; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
592 case T_FLOAT : value_result->f = *(jfloat*)tos_addr; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
593 case T_DOUBLE : value_result->d = *(jdouble*)tos_addr; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
594 case T_VOID : /* Nothing to do */ break;
a61af66fc99e Initial load
duke
parents:
diff changeset
595 default : ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
596 }
a61af66fc99e Initial load
duke
parents:
diff changeset
597 };
a61af66fc99e Initial load
duke
parents:
diff changeset
598
a61af66fc99e Initial load
duke
parents:
diff changeset
599 return type;
a61af66fc99e Initial load
duke
parents:
diff changeset
600 }
a61af66fc99e Initial load
duke
parents:
diff changeset
601
a61af66fc99e Initial load
duke
parents:
diff changeset
602 // Lesp pointer is one word lower than the top item on the stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
603 intptr_t* frame::interpreter_frame_tos_at(jint offset) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
604 int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize) - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
605 return &interpreter_frame_tos_address()[index];
a61af66fc99e Initial load
duke
parents:
diff changeset
606 }