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"
22 #include "exec/helper-proto.h"
25 static inline void memcpy32(target_ulong
*dst
, const target_ulong
*src
)
37 void cpu_set_cwp(CPUSPARCState
*env
, int new_cwp
)
39 /* put the modified wrap registers at their proper location */
40 if (env
->cwp
== env
->nwindows
- 1) {
41 memcpy32(env
->regbase
, env
->regbase
+ env
->nwindows
* 16);
45 /* put the wrap registers at their temporary location */
46 if (new_cwp
== env
->nwindows
- 1) {
47 memcpy32(env
->regbase
+ env
->nwindows
* 16, env
->regbase
);
49 env
->regwptr
= env
->regbase
+ (new_cwp
* 16);
52 target_ulong
cpu_get_psr(CPUSPARCState
*env
)
54 helper_compute_psr(env
);
56 #if !defined(TARGET_SPARC64)
57 return env
->version
| (env
->psr
& PSR_ICC
) |
58 (env
->psref
? PSR_EF
: 0) |
60 (env
->psrs
? PSR_S
: 0) |
61 (env
->psrps
? PSR_PS
: 0) |
62 (env
->psret
? PSR_ET
: 0) | env
->cwp
;
64 return env
->psr
& PSR_ICC
;
68 void cpu_put_psr_raw(CPUSPARCState
*env
, target_ulong val
)
70 env
->psr
= val
& PSR_ICC
;
71 #if !defined(TARGET_SPARC64)
72 env
->psref
= (val
& PSR_EF
) ? 1 : 0;
73 env
->psrpil
= (val
& PSR_PIL
) >> 8;
74 env
->psrs
= (val
& PSR_S
) ? 1 : 0;
75 env
->psrps
= (val
& PSR_PS
) ? 1 : 0;
76 env
->psret
= (val
& PSR_ET
) ? 1 : 0;
78 env
->cc_op
= CC_OP_FLAGS
;
79 #if !defined(TARGET_SPARC64)
80 cpu_set_cwp(env
, val
& PSR_CWP
);
84 void cpu_put_psr(CPUSPARCState
*env
, target_ulong val
)
86 cpu_put_psr_raw(env
, val
);
87 #if ((!defined(TARGET_SPARC64)) && !defined(CONFIG_USER_ONLY))
92 int cpu_cwp_inc(CPUSPARCState
*env
, int cwp
)
94 if (unlikely(cwp
>= env
->nwindows
)) {
100 int cpu_cwp_dec(CPUSPARCState
*env
, int cwp
)
102 if (unlikely(cwp
< 0)) {
103 cwp
+= env
->nwindows
;
108 #ifndef TARGET_SPARC64
109 void helper_rett(CPUSPARCState
*env
)
113 if (env
->psret
== 1) {
114 helper_raise_exception(env
, TT_ILL_INSN
);
118 cwp
= cpu_cwp_inc(env
, env
->cwp
+ 1) ;
119 if (env
->wim
& (1 << cwp
)) {
120 helper_raise_exception(env
, TT_WIN_UNF
);
122 cpu_set_cwp(env
, cwp
);
123 env
->psrs
= env
->psrps
;
126 /* XXX: use another pointer for %iN registers to avoid slow wrapping
128 void helper_save(CPUSPARCState
*env
)
132 cwp
= cpu_cwp_dec(env
, env
->cwp
- 1);
133 if (env
->wim
& (1 << cwp
)) {
134 helper_raise_exception(env
, TT_WIN_OVF
);
136 cpu_set_cwp(env
, cwp
);
139 void helper_restore(CPUSPARCState
*env
)
143 cwp
= cpu_cwp_inc(env
, env
->cwp
+ 1);
144 if (env
->wim
& (1 << cwp
)) {
145 helper_raise_exception(env
, TT_WIN_UNF
);
147 cpu_set_cwp(env
, cwp
);
150 void helper_wrpsr(CPUSPARCState
*env
, target_ulong new_psr
)
152 if ((new_psr
& PSR_CWP
) >= env
->nwindows
) {
153 helper_raise_exception(env
, TT_ILL_INSN
);
155 cpu_put_psr(env
, new_psr
);
159 target_ulong
helper_rdpsr(CPUSPARCState
*env
)
161 return cpu_get_psr(env
);
165 /* XXX: use another pointer for %iN registers to avoid slow wrapping
167 void helper_save(CPUSPARCState
*env
)
171 cwp
= cpu_cwp_dec(env
, env
->cwp
- 1);
172 if (env
->cansave
== 0) {
173 helper_raise_exception(env
, TT_SPILL
| (env
->otherwin
!= 0 ?
175 ((env
->wstate
& 0x38) >> 1)) :
176 ((env
->wstate
& 0x7) << 2)));
178 if (env
->cleanwin
- env
->canrestore
== 0) {
179 /* XXX Clean windows without trap */
180 helper_raise_exception(env
, TT_CLRWIN
);
184 cpu_set_cwp(env
, cwp
);
189 void helper_restore(CPUSPARCState
*env
)
193 cwp
= cpu_cwp_inc(env
, env
->cwp
+ 1);
194 if (env
->canrestore
== 0) {
195 helper_raise_exception(env
, TT_FILL
| (env
->otherwin
!= 0 ?
197 ((env
->wstate
& 0x38) >> 1)) :
198 ((env
->wstate
& 0x7) << 2)));
202 cpu_set_cwp(env
, cwp
);
206 void helper_flushw(CPUSPARCState
*env
)
208 if (env
->cansave
!= env
->nwindows
- 2) {
209 helper_raise_exception(env
, TT_SPILL
| (env
->otherwin
!= 0 ?
211 ((env
->wstate
& 0x38) >> 1)) :
212 ((env
->wstate
& 0x7) << 2)));
216 void helper_saved(CPUSPARCState
*env
)
219 if (env
->otherwin
== 0) {
226 void helper_restored(CPUSPARCState
*env
)
229 if (env
->cleanwin
< env
->nwindows
- 1) {
232 if (env
->otherwin
== 0) {
239 target_ulong
cpu_get_ccr(CPUSPARCState
*env
)
243 psr
= cpu_get_psr(env
);
245 return ((env
->xcc
>> 20) << 4) | ((psr
& PSR_ICC
) >> 20);
248 void cpu_put_ccr(CPUSPARCState
*env
, target_ulong val
)
250 env
->xcc
= (val
>> 4) << 20;
251 env
->psr
= (val
& 0xf) << 20;
255 target_ulong
cpu_get_cwp64(CPUSPARCState
*env
)
257 return env
->nwindows
- 1 - env
->cwp
;
260 void cpu_put_cwp64(CPUSPARCState
*env
, int cwp
)
262 if (unlikely(cwp
>= env
->nwindows
|| cwp
< 0)) {
263 cwp
%= env
->nwindows
;
265 cpu_set_cwp(env
, env
->nwindows
- 1 - cwp
);
268 target_ulong
helper_rdccr(CPUSPARCState
*env
)
270 return cpu_get_ccr(env
);
273 void helper_wrccr(CPUSPARCState
*env
, target_ulong new_ccr
)
275 cpu_put_ccr(env
, new_ccr
);
278 /* CWP handling is reversed in V9, but we still use the V8 register
280 target_ulong
helper_rdcwp(CPUSPARCState
*env
)
282 return cpu_get_cwp64(env
);
285 void helper_wrcwp(CPUSPARCState
*env
, target_ulong new_cwp
)
287 cpu_put_cwp64(env
, new_cwp
);
290 static inline uint64_t *get_gregset(CPUSPARCState
*env
, uint32_t pstate
)
294 trace_win_helper_gregset_error(pstate
);
295 /* pass through to normal set of global registers */
307 void cpu_change_pstate(CPUSPARCState
*env
, uint32_t new_pstate
)
309 uint32_t pstate_regs
, new_pstate_regs
;
312 if (env
->def
->features
& CPU_FEATURE_GL
) {
313 /* PS_AG is not implemented in this case */
314 new_pstate
&= ~PS_AG
;
317 pstate_regs
= env
->pstate
& 0xc01;
318 new_pstate_regs
= new_pstate
& 0xc01;
320 if (new_pstate_regs
!= pstate_regs
) {
321 trace_win_helper_switch_pstate(pstate_regs
, new_pstate_regs
);
323 /* Switch global register bank */
324 src
= get_gregset(env
, new_pstate_regs
);
325 dst
= get_gregset(env
, pstate_regs
);
326 memcpy32(dst
, env
->gregs
);
327 memcpy32(env
->gregs
, src
);
329 trace_win_helper_no_switch_pstate(new_pstate_regs
);
331 env
->pstate
= new_pstate
;
334 void helper_wrpstate(CPUSPARCState
*env
, target_ulong new_state
)
336 cpu_change_pstate(env
, new_state
& 0xf3f);
338 #if !defined(CONFIG_USER_ONLY)
339 if (cpu_interrupts_enabled(env
)) {
345 void helper_wrpil(CPUSPARCState
*env
, target_ulong new_pil
)
347 #if !defined(CONFIG_USER_ONLY)
348 trace_win_helper_wrpil(env
->psrpil
, (uint32_t)new_pil
);
350 env
->psrpil
= new_pil
;
352 if (cpu_interrupts_enabled(env
)) {
358 void helper_done(CPUSPARCState
*env
)
360 trap_state
*tsptr
= cpu_tsptr(env
);
362 env
->pc
= tsptr
->tnpc
;
363 env
->npc
= tsptr
->tnpc
+ 4;
364 cpu_put_ccr(env
, tsptr
->tstate
>> 32);
365 env
->asi
= (tsptr
->tstate
>> 24) & 0xff;
366 cpu_change_pstate(env
, (tsptr
->tstate
>> 8) & 0xf3f);
367 cpu_put_cwp64(env
, tsptr
->tstate
& 0xff);
370 trace_win_helper_done(env
->tl
);
372 #if !defined(CONFIG_USER_ONLY)
373 if (cpu_interrupts_enabled(env
)) {
379 void helper_retry(CPUSPARCState
*env
)
381 trap_state
*tsptr
= cpu_tsptr(env
);
383 env
->pc
= tsptr
->tpc
;
384 env
->npc
= tsptr
->tnpc
;
385 cpu_put_ccr(env
, tsptr
->tstate
>> 32);
386 env
->asi
= (tsptr
->tstate
>> 24) & 0xff;
387 cpu_change_pstate(env
, (tsptr
->tstate
>> 8) & 0xf3f);
388 cpu_put_cwp64(env
, tsptr
->tstate
& 0xff);
391 trace_win_helper_retry(env
->tl
);
393 #if !defined(CONFIG_USER_ONLY)
394 if (cpu_interrupts_enabled(env
)) {