]> git.proxmox.com Git - mirror_qemu.git/blob - target-sparc/win_helper.c
hbitmap: Fix shifts of constants by granularity
[mirror_qemu.git] / target-sparc / win_helper.c
1 /*
2 * Helpers for CWP and PSTATE handling
3 *
4 * Copyright (c) 2003-2005 Fabrice Bellard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "qemu/osdep.h"
21 #include "cpu.h"
22 #include "exec/exec-all.h"
23 #include "exec/helper-proto.h"
24 #include "trace.h"
25
26 static inline void memcpy32(target_ulong *dst, const target_ulong *src)
27 {
28 dst[0] = src[0];
29 dst[1] = src[1];
30 dst[2] = src[2];
31 dst[3] = src[3];
32 dst[4] = src[4];
33 dst[5] = src[5];
34 dst[6] = src[6];
35 dst[7] = src[7];
36 }
37
38 void cpu_set_cwp(CPUSPARCState *env, int new_cwp)
39 {
40 /* put the modified wrap registers at their proper location */
41 if (env->cwp == env->nwindows - 1) {
42 memcpy32(env->regbase, env->regbase + env->nwindows * 16);
43 }
44 env->cwp = new_cwp;
45
46 /* put the wrap registers at their temporary location */
47 if (new_cwp == env->nwindows - 1) {
48 memcpy32(env->regbase + env->nwindows * 16, env->regbase);
49 }
50 env->regwptr = env->regbase + (new_cwp * 16);
51 }
52
53 target_ulong cpu_get_psr(CPUSPARCState *env)
54 {
55 helper_compute_psr(env);
56
57 #if !defined(TARGET_SPARC64)
58 return env->version | (env->psr & PSR_ICC) |
59 (env->psref ? PSR_EF : 0) |
60 (env->psrpil << 8) |
61 (env->psrs ? PSR_S : 0) |
62 (env->psrps ? PSR_PS : 0) |
63 (env->psret ? PSR_ET : 0) | env->cwp;
64 #else
65 return env->psr & PSR_ICC;
66 #endif
67 }
68
69 void cpu_put_psr_raw(CPUSPARCState *env, target_ulong val)
70 {
71 env->psr = val & PSR_ICC;
72 #if !defined(TARGET_SPARC64)
73 env->psref = (val & PSR_EF) ? 1 : 0;
74 env->psrpil = (val & PSR_PIL) >> 8;
75 env->psrs = (val & PSR_S) ? 1 : 0;
76 env->psrps = (val & PSR_PS) ? 1 : 0;
77 env->psret = (val & PSR_ET) ? 1 : 0;
78 #endif
79 env->cc_op = CC_OP_FLAGS;
80 #if !defined(TARGET_SPARC64)
81 cpu_set_cwp(env, val & PSR_CWP);
82 #endif
83 }
84
85 void cpu_put_psr(CPUSPARCState *env, target_ulong val)
86 {
87 cpu_put_psr_raw(env, val);
88 #if ((!defined(TARGET_SPARC64)) && !defined(CONFIG_USER_ONLY))
89 cpu_check_irqs(env);
90 #endif
91 }
92
93 int cpu_cwp_inc(CPUSPARCState *env, int cwp)
94 {
95 if (unlikely(cwp >= env->nwindows)) {
96 cwp -= env->nwindows;
97 }
98 return cwp;
99 }
100
101 int cpu_cwp_dec(CPUSPARCState *env, int cwp)
102 {
103 if (unlikely(cwp < 0)) {
104 cwp += env->nwindows;
105 }
106 return cwp;
107 }
108
109 #ifndef TARGET_SPARC64
110 void helper_rett(CPUSPARCState *env)
111 {
112 unsigned int cwp;
113
114 if (env->psret == 1) {
115 cpu_raise_exception_ra(env, TT_ILL_INSN, GETPC());
116 }
117
118 env->psret = 1;
119 cwp = cpu_cwp_inc(env, env->cwp + 1) ;
120 if (env->wim & (1 << cwp)) {
121 cpu_raise_exception_ra(env, TT_WIN_UNF, GETPC());
122 }
123 cpu_set_cwp(env, cwp);
124 env->psrs = env->psrps;
125 }
126
127 /* XXX: use another pointer for %iN registers to avoid slow wrapping
128 handling ? */
129 void helper_save(CPUSPARCState *env)
130 {
131 uint32_t cwp;
132
133 cwp = cpu_cwp_dec(env, env->cwp - 1);
134 if (env->wim & (1 << cwp)) {
135 cpu_raise_exception_ra(env, TT_WIN_OVF, GETPC());
136 }
137 cpu_set_cwp(env, cwp);
138 }
139
140 void helper_restore(CPUSPARCState *env)
141 {
142 uint32_t cwp;
143
144 cwp = cpu_cwp_inc(env, env->cwp + 1);
145 if (env->wim & (1 << cwp)) {
146 cpu_raise_exception_ra(env, TT_WIN_UNF, GETPC());
147 }
148 cpu_set_cwp(env, cwp);
149 }
150
151 void helper_wrpsr(CPUSPARCState *env, target_ulong new_psr)
152 {
153 if ((new_psr & PSR_CWP) >= env->nwindows) {
154 cpu_raise_exception_ra(env, TT_ILL_INSN, GETPC());
155 } else {
156 cpu_put_psr(env, new_psr);
157 }
158 }
159
160 target_ulong helper_rdpsr(CPUSPARCState *env)
161 {
162 return cpu_get_psr(env);
163 }
164
165 #else
166 /* XXX: use another pointer for %iN registers to avoid slow wrapping
167 handling ? */
168 void helper_save(CPUSPARCState *env)
169 {
170 uint32_t cwp;
171
172 cwp = cpu_cwp_dec(env, env->cwp - 1);
173 if (env->cansave == 0) {
174 int tt = TT_SPILL | (env->otherwin != 0
175 ? (TT_WOTHER | ((env->wstate & 0x38) >> 1))
176 : ((env->wstate & 0x7) << 2));
177 cpu_raise_exception_ra(env, tt, GETPC());
178 } else {
179 if (env->cleanwin - env->canrestore == 0) {
180 /* XXX Clean windows without trap */
181 cpu_raise_exception_ra(env, TT_CLRWIN, GETPC());
182 } else {
183 env->cansave--;
184 env->canrestore++;
185 cpu_set_cwp(env, cwp);
186 }
187 }
188 }
189
190 void helper_restore(CPUSPARCState *env)
191 {
192 uint32_t cwp;
193
194 cwp = cpu_cwp_inc(env, env->cwp + 1);
195 if (env->canrestore == 0) {
196 int tt = TT_FILL | (env->otherwin != 0
197 ? (TT_WOTHER | ((env->wstate & 0x38) >> 1))
198 : ((env->wstate & 0x7) << 2));
199 cpu_raise_exception_ra(env, tt, GETPC());
200 } else {
201 env->cansave++;
202 env->canrestore--;
203 cpu_set_cwp(env, cwp);
204 }
205 }
206
207 void helper_flushw(CPUSPARCState *env)
208 {
209 if (env->cansave != env->nwindows - 2) {
210 int tt = TT_SPILL | (env->otherwin != 0
211 ? (TT_WOTHER | ((env->wstate & 0x38) >> 1))
212 : ((env->wstate & 0x7) << 2));
213 cpu_raise_exception_ra(env, tt, GETPC());
214 }
215 }
216
217 void helper_saved(CPUSPARCState *env)
218 {
219 env->cansave++;
220 if (env->otherwin == 0) {
221 env->canrestore--;
222 } else {
223 env->otherwin--;
224 }
225 }
226
227 void helper_restored(CPUSPARCState *env)
228 {
229 env->canrestore++;
230 if (env->cleanwin < env->nwindows - 1) {
231 env->cleanwin++;
232 }
233 if (env->otherwin == 0) {
234 env->cansave--;
235 } else {
236 env->otherwin--;
237 }
238 }
239
240 target_ulong cpu_get_ccr(CPUSPARCState *env)
241 {
242 target_ulong psr;
243
244 psr = cpu_get_psr(env);
245
246 return ((env->xcc >> 20) << 4) | ((psr & PSR_ICC) >> 20);
247 }
248
249 void cpu_put_ccr(CPUSPARCState *env, target_ulong val)
250 {
251 env->xcc = (val >> 4) << 20;
252 env->psr = (val & 0xf) << 20;
253 CC_OP = CC_OP_FLAGS;
254 }
255
256 target_ulong cpu_get_cwp64(CPUSPARCState *env)
257 {
258 return env->nwindows - 1 - env->cwp;
259 }
260
261 void cpu_put_cwp64(CPUSPARCState *env, int cwp)
262 {
263 if (unlikely(cwp >= env->nwindows || cwp < 0)) {
264 cwp %= env->nwindows;
265 }
266 cpu_set_cwp(env, env->nwindows - 1 - cwp);
267 }
268
269 target_ulong helper_rdccr(CPUSPARCState *env)
270 {
271 return cpu_get_ccr(env);
272 }
273
274 void helper_wrccr(CPUSPARCState *env, target_ulong new_ccr)
275 {
276 cpu_put_ccr(env, new_ccr);
277 }
278
279 /* CWP handling is reversed in V9, but we still use the V8 register
280 order. */
281 target_ulong helper_rdcwp(CPUSPARCState *env)
282 {
283 return cpu_get_cwp64(env);
284 }
285
286 void helper_wrcwp(CPUSPARCState *env, target_ulong new_cwp)
287 {
288 cpu_put_cwp64(env, new_cwp);
289 }
290
291 static inline uint64_t *get_gregset(CPUSPARCState *env, uint32_t pstate)
292 {
293 switch (pstate) {
294 default:
295 trace_win_helper_gregset_error(pstate);
296 /* pass through to normal set of global registers */
297 case 0:
298 return env->bgregs;
299 case PS_AG:
300 return env->agregs;
301 case PS_MG:
302 return env->mgregs;
303 case PS_IG:
304 return env->igregs;
305 }
306 }
307
308 void cpu_change_pstate(CPUSPARCState *env, uint32_t new_pstate)
309 {
310 uint32_t pstate_regs, new_pstate_regs;
311 uint64_t *src, *dst;
312
313 if (env->def->features & CPU_FEATURE_GL) {
314 /* PS_AG is not implemented in this case */
315 new_pstate &= ~PS_AG;
316 }
317
318 pstate_regs = env->pstate & 0xc01;
319 new_pstate_regs = new_pstate & 0xc01;
320
321 if (new_pstate_regs != pstate_regs) {
322 trace_win_helper_switch_pstate(pstate_regs, new_pstate_regs);
323
324 /* Switch global register bank */
325 src = get_gregset(env, new_pstate_regs);
326 dst = get_gregset(env, pstate_regs);
327 memcpy32(dst, env->gregs);
328 memcpy32(env->gregs, src);
329 } else {
330 trace_win_helper_no_switch_pstate(new_pstate_regs);
331 }
332 env->pstate = new_pstate;
333 }
334
335 void helper_wrpstate(CPUSPARCState *env, target_ulong new_state)
336 {
337 cpu_change_pstate(env, new_state & 0xf3f);
338
339 #if !defined(CONFIG_USER_ONLY)
340 if (cpu_interrupts_enabled(env)) {
341 cpu_check_irqs(env);
342 }
343 #endif
344 }
345
346 void helper_wrpil(CPUSPARCState *env, target_ulong new_pil)
347 {
348 #if !defined(CONFIG_USER_ONLY)
349 trace_win_helper_wrpil(env->psrpil, (uint32_t)new_pil);
350
351 env->psrpil = new_pil;
352
353 if (cpu_interrupts_enabled(env)) {
354 cpu_check_irqs(env);
355 }
356 #endif
357 }
358
359 void helper_done(CPUSPARCState *env)
360 {
361 trap_state *tsptr = cpu_tsptr(env);
362
363 env->pc = tsptr->tnpc;
364 env->npc = tsptr->tnpc + 4;
365 cpu_put_ccr(env, tsptr->tstate >> 32);
366 env->asi = (tsptr->tstate >> 24) & 0xff;
367 cpu_change_pstate(env, (tsptr->tstate >> 8) & 0xf3f);
368 cpu_put_cwp64(env, tsptr->tstate & 0xff);
369 env->tl--;
370
371 trace_win_helper_done(env->tl);
372
373 #if !defined(CONFIG_USER_ONLY)
374 if (cpu_interrupts_enabled(env)) {
375 cpu_check_irqs(env);
376 }
377 #endif
378 }
379
380 void helper_retry(CPUSPARCState *env)
381 {
382 trap_state *tsptr = cpu_tsptr(env);
383
384 env->pc = tsptr->tpc;
385 env->npc = tsptr->tnpc;
386 cpu_put_ccr(env, tsptr->tstate >> 32);
387 env->asi = (tsptr->tstate >> 24) & 0xff;
388 cpu_change_pstate(env, (tsptr->tstate >> 8) & 0xf3f);
389 cpu_put_cwp64(env, tsptr->tstate & 0xff);
390 env->tl--;
391
392 trace_win_helper_retry(env->tl);
393
394 #if !defined(CONFIG_USER_ONLY)
395 if (cpu_interrupts_enabled(env)) {
396 cpu_check_irqs(env);
397 }
398 #endif
399 }
400 #endif