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/exec-all.h"
23 #include "qemu/host-utils.h"
24 #include "exec/helper-proto.h"
25 #include "sysemu/sysemu.h"
27 void cpu_raise_exception_ra(CPUSPARCState
*env
, int tt
, uintptr_t ra
)
29 CPUState
*cs
= CPU(sparc_env_get_cpu(env
));
31 cs
->exception_index
= tt
;
32 cpu_loop_exit_restore(cs
, ra
);
35 void helper_raise_exception(CPUSPARCState
*env
, int tt
)
37 CPUState
*cs
= CPU(sparc_env_get_cpu(env
));
39 cs
->exception_index
= tt
;
43 void helper_debug(CPUSPARCState
*env
)
45 CPUState
*cs
= CPU(sparc_env_get_cpu(env
));
47 cs
->exception_index
= EXCP_DEBUG
;
52 void helper_tick_set_count(void *opaque
, uint64_t count
)
54 #if !defined(CONFIG_USER_ONLY)
55 cpu_tick_set_count(opaque
, count
);
59 uint64_t helper_tick_get_count(CPUSPARCState
*env
, void *opaque
, int mem_idx
)
61 #if !defined(CONFIG_USER_ONLY)
62 CPUTimer
*timer
= opaque
;
64 if (timer
->npt
&& mem_idx
< MMU_KERNEL_IDX
) {
65 cpu_raise_exception_ra(env
, TT_PRIV_INSN
, GETPC());
68 return cpu_tick_get_count(timer
);
70 /* In user-mode, QEMU_CLOCK_VIRTUAL doesn't exist.
71 Just pass through the host cpu clock ticks. */
72 return cpu_get_host_ticks();
76 void helper_tick_set_limit(void *opaque
, uint64_t limit
)
78 #if !defined(CONFIG_USER_ONLY)
79 cpu_tick_set_limit(opaque
, limit
);
84 static target_ulong
do_udiv(CPUSPARCState
*env
, target_ulong a
,
85 target_ulong b
, int cc
, uintptr_t ra
)
91 x0
= (a
& 0xffffffff) | ((int64_t) (env
->y
) << 32);
92 x1
= (b
& 0xffffffff);
95 cpu_raise_exception_ra(env
, TT_DIV_ZERO
, ra
);
99 if (x0
> UINT32_MAX
) {
106 env
->cc_src2
= overflow
;
107 env
->cc_op
= CC_OP_DIV
;
112 target_ulong
helper_udiv(CPUSPARCState
*env
, target_ulong a
, target_ulong b
)
114 return do_udiv(env
, a
, b
, 0, GETPC());
117 target_ulong
helper_udiv_cc(CPUSPARCState
*env
, target_ulong a
, target_ulong b
)
119 return do_udiv(env
, a
, b
, 1, GETPC());
122 static target_ulong
do_sdiv(CPUSPARCState
*env
, target_ulong a
,
123 target_ulong b
, int cc
, uintptr_t ra
)
129 x0
= (a
& 0xffffffff) | ((int64_t) (env
->y
) << 32);
130 x1
= (b
& 0xffffffff);
133 cpu_raise_exception_ra(env
, TT_DIV_ZERO
, ra
);
134 } else if (x1
== -1 && x0
== INT64_MIN
) {
139 if ((int32_t) x0
!= x0
) {
140 x0
= x0
< 0 ? INT32_MIN
: INT32_MAX
;
147 env
->cc_src2
= overflow
;
148 env
->cc_op
= CC_OP_DIV
;
153 target_ulong
helper_sdiv(CPUSPARCState
*env
, target_ulong a
, target_ulong b
)
155 return do_sdiv(env
, a
, b
, 0, GETPC());
158 target_ulong
helper_sdiv_cc(CPUSPARCState
*env
, target_ulong a
, target_ulong b
)
160 return do_sdiv(env
, a
, b
, 1, GETPC());
163 #ifdef TARGET_SPARC64
164 int64_t helper_sdivx(CPUSPARCState
*env
, int64_t a
, int64_t b
)
167 /* Raise divide by zero trap. */
168 cpu_raise_exception_ra(env
, TT_DIV_ZERO
, GETPC());
169 } else if (b
== -1) {
170 /* Avoid overflow trap with i386 divide insn. */
177 uint64_t helper_udivx(CPUSPARCState
*env
, uint64_t a
, uint64_t b
)
180 /* Raise divide by zero trap. */
181 cpu_raise_exception_ra(env
, TT_DIV_ZERO
, GETPC());
187 target_ulong
helper_taddcctv(CPUSPARCState
*env
, target_ulong src1
,
192 /* Tag overflow occurs if either input has bits 0 or 1 set. */
193 if ((src1
| src2
) & 3) {
199 /* Tag overflow occurs if the addition overflows. */
200 if (~(src1
^ src2
) & (src1
^ dst
) & (1u << 31)) {
204 /* Only modify the CC after any exceptions have been generated. */
205 env
->cc_op
= CC_OP_TADDTV
;
212 cpu_raise_exception_ra(env
, TT_TOVF
, GETPC());
215 target_ulong
helper_tsubcctv(CPUSPARCState
*env
, target_ulong src1
,
220 /* Tag overflow occurs if either input has bits 0 or 1 set. */
221 if ((src1
| src2
) & 3) {
227 /* Tag overflow occurs if the subtraction overflows. */
228 if ((src1
^ src2
) & (src1
^ dst
) & (1u << 31)) {
232 /* Only modify the CC after any exceptions have been generated. */
233 env
->cc_op
= CC_OP_TSUBTV
;
240 cpu_raise_exception_ra(env
, TT_TOVF
, GETPC());
243 #ifndef TARGET_SPARC64
244 void helper_power_down(CPUSPARCState
*env
)
246 CPUState
*cs
= CPU(sparc_env_get_cpu(env
));
249 cs
->exception_index
= EXCP_HLT
;
251 env
->npc
= env
->pc
+ 4;