tests/test-vmstate.c: add array of pointer to struct
[qemu/ar7.git] / target-sparc / win_helper.c
blob2d5b5469a9a62998dea65802594b6aa5dc12be36
1 /*
2 * Helpers for CWP and PSTATE handling
4 * Copyright (c) 2003-2005 Fabrice Bellard
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.
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.
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/>.
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"
26 static inline void memcpy32(target_ulong *dst, const target_ulong *src)
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];
38 void cpu_set_cwp(CPUSPARCState *env, int new_cwp)
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);
44 env->cwp = new_cwp;
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);
50 env->regwptr = env->regbase + (new_cwp * 16);
53 target_ulong cpu_get_psr(CPUSPARCState *env)
55 helper_compute_psr(env);
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
69 void cpu_put_psr_raw(CPUSPARCState *env, target_ulong val)
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
85 void cpu_put_psr(CPUSPARCState *env, target_ulong val)
87 cpu_put_psr_raw(env, val);
88 #if ((!defined(TARGET_SPARC64)) && !defined(CONFIG_USER_ONLY))
89 cpu_check_irqs(env);
90 #endif
93 int cpu_cwp_inc(CPUSPARCState *env, int cwp)
95 if (unlikely(cwp >= env->nwindows)) {
96 cwp -= env->nwindows;
98 return cwp;
101 int cpu_cwp_dec(CPUSPARCState *env, int cwp)
103 if (unlikely(cwp < 0)) {
104 cwp += env->nwindows;
106 return cwp;
109 #ifndef TARGET_SPARC64
110 void helper_rett(CPUSPARCState *env)
112 unsigned int cwp;
114 if (env->psret == 1) {
115 cpu_raise_exception_ra(env, TT_ILL_INSN, GETPC());
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());
123 cpu_set_cwp(env, cwp);
124 env->psrs = env->psrps;
127 /* XXX: use another pointer for %iN registers to avoid slow wrapping
128 handling ? */
129 void helper_save(CPUSPARCState *env)
131 uint32_t cwp;
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());
137 cpu_set_cwp(env, cwp);
140 void helper_restore(CPUSPARCState *env)
142 uint32_t cwp;
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());
148 cpu_set_cwp(env, cwp);
151 void helper_wrpsr(CPUSPARCState *env, target_ulong new_psr)
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);
160 target_ulong helper_rdpsr(CPUSPARCState *env)
162 return cpu_get_psr(env);
165 #else
166 /* XXX: use another pointer for %iN registers to avoid slow wrapping
167 handling ? */
168 void helper_save(CPUSPARCState *env)
170 uint32_t cwp;
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);
190 void helper_restore(CPUSPARCState *env)
192 uint32_t cwp;
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);
207 void helper_flushw(CPUSPARCState *env)
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());
217 void helper_saved(CPUSPARCState *env)
219 env->cansave++;
220 if (env->otherwin == 0) {
221 env->canrestore--;
222 } else {
223 env->otherwin--;
227 void helper_restored(CPUSPARCState *env)
229 env->canrestore++;
230 if (env->cleanwin < env->nwindows - 1) {
231 env->cleanwin++;
233 if (env->otherwin == 0) {
234 env->cansave--;
235 } else {
236 env->otherwin--;
240 target_ulong cpu_get_ccr(CPUSPARCState *env)
242 target_ulong psr;
244 psr = cpu_get_psr(env);
246 return ((env->xcc >> 20) << 4) | ((psr & PSR_ICC) >> 20);
249 void cpu_put_ccr(CPUSPARCState *env, target_ulong val)
251 env->xcc = (val >> 4) << 20;
252 env->psr = (val & 0xf) << 20;
253 CC_OP = CC_OP_FLAGS;
256 target_ulong cpu_get_cwp64(CPUSPARCState *env)
258 return env->nwindows - 1 - env->cwp;
261 void cpu_put_cwp64(CPUSPARCState *env, int cwp)
263 if (unlikely(cwp >= env->nwindows || cwp < 0)) {
264 cwp %= env->nwindows;
266 cpu_set_cwp(env, env->nwindows - 1 - cwp);
269 target_ulong helper_rdccr(CPUSPARCState *env)
271 return cpu_get_ccr(env);
274 void helper_wrccr(CPUSPARCState *env, target_ulong new_ccr)
276 cpu_put_ccr(env, new_ccr);
279 /* CWP handling is reversed in V9, but we still use the V8 register
280 order. */
281 target_ulong helper_rdcwp(CPUSPARCState *env)
283 return cpu_get_cwp64(env);
286 void helper_wrcwp(CPUSPARCState *env, target_ulong new_cwp)
288 cpu_put_cwp64(env, new_cwp);
291 static inline uint64_t *get_gregset(CPUSPARCState *env, uint32_t pstate)
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;
308 void cpu_change_pstate(CPUSPARCState *env, uint32_t new_pstate)
310 uint32_t pstate_regs, new_pstate_regs;
311 uint64_t *src, *dst;
313 if (env->def->features & CPU_FEATURE_GL) {
314 /* PS_AG is not implemented in this case */
315 new_pstate &= ~PS_AG;
318 pstate_regs = env->pstate & 0xc01;
319 new_pstate_regs = new_pstate & 0xc01;
321 if (new_pstate_regs != pstate_regs) {
322 trace_win_helper_switch_pstate(pstate_regs, new_pstate_regs);
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);
332 env->pstate = new_pstate;
335 void helper_wrpstate(CPUSPARCState *env, target_ulong new_state)
337 cpu_change_pstate(env, new_state & 0xf3f);
339 #if !defined(CONFIG_USER_ONLY)
340 if (cpu_interrupts_enabled(env)) {
341 cpu_check_irqs(env);
343 #endif
346 void helper_wrpil(CPUSPARCState *env, target_ulong new_pil)
348 #if !defined(CONFIG_USER_ONLY)
349 trace_win_helper_wrpil(env->psrpil, (uint32_t)new_pil);
351 env->psrpil = new_pil;
353 if (cpu_interrupts_enabled(env)) {
354 cpu_check_irqs(env);
356 #endif
359 void helper_done(CPUSPARCState *env)
361 trap_state *tsptr = cpu_tsptr(env);
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--;
371 trace_win_helper_done(env->tl);
373 #if !defined(CONFIG_USER_ONLY)
374 if (cpu_interrupts_enabled(env)) {
375 cpu_check_irqs(env);
377 #endif
380 void helper_retry(CPUSPARCState *env)
382 trap_state *tsptr = cpu_tsptr(env);
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--;
392 trace_win_helper_retry(env->tl);
394 #if !defined(CONFIG_USER_ONLY)
395 if (cpu_interrupts_enabled(env)) {
396 cpu_check_irqs(env);
398 #endif
400 #endif