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/>.
21 #include "qemu/host-utils.h"
23 #include "sysemu/sysemu.h"
25 void helper_raise_exception(CPUSPARCState *env, int tt)
27 CPUState *cs = CPU(sparc_env_get_cpu(env));
29 cs->exception_index = tt;
33 void helper_debug(CPUSPARCState *env)
35 CPUState *cs = CPU(sparc_env_get_cpu(env));
37 cs->exception_index = EXCP_DEBUG;
42 target_ulong helper_popc(target_ulong val)
47 void helper_tick_set_count(void *opaque, uint64_t count)
49 #if !defined(CONFIG_USER_ONLY)
50 cpu_tick_set_count(opaque, count);
54 uint64_t helper_tick_get_count(void *opaque)
56 #if !defined(CONFIG_USER_ONLY)
57 return cpu_tick_get_count(opaque);
63 void helper_tick_set_limit(void *opaque, uint64_t limit)
65 #if !defined(CONFIG_USER_ONLY)
66 cpu_tick_set_limit(opaque, limit);
71 static target_ulong helper_udiv_common(CPUSPARCState *env, target_ulong a,
72 target_ulong b, int cc)
78 x0 = (a & 0xffffffff) | ((int64_t) (env->y) << 32);
79 x1 = (b & 0xffffffff);
82 cpu_restore_state(env, GETPC());
83 helper_raise_exception(env, TT_DIV_ZERO);
87 if (x0 > 0xffffffff) {
94 env->cc_src2 = overflow;
95 env->cc_op = CC_OP_DIV;
100 target_ulong helper_udiv(CPUSPARCState *env, target_ulong a, target_ulong b)
102 return helper_udiv_common(env, a, b, 0);
105 target_ulong helper_udiv_cc(CPUSPARCState *env, target_ulong a, target_ulong b)
107 return helper_udiv_common(env, a, b, 1);
110 static target_ulong helper_sdiv_common(CPUSPARCState *env, target_ulong a,
111 target_ulong b, int cc)
117 x0 = (a & 0xffffffff) | ((int64_t) (env->y) << 32);
118 x1 = (b & 0xffffffff);
121 cpu_restore_state(env, GETPC());
122 helper_raise_exception(env, TT_DIV_ZERO);
126 if ((int32_t) x0 != x0) {
127 x0 = x0 < 0 ? 0x80000000 : 0x7fffffff;
133 env->cc_src2 = overflow;
134 env->cc_op = CC_OP_DIV;
139 target_ulong helper_sdiv(CPUSPARCState *env, target_ulong a, target_ulong b)
141 return helper_sdiv_common(env, a, b, 0);
144 target_ulong helper_sdiv_cc(CPUSPARCState *env, target_ulong a, target_ulong b)
146 return helper_sdiv_common(env, a, b, 1);
149 #ifdef TARGET_SPARC64
150 int64_t helper_sdivx(CPUSPARCState *env, int64_t a, int64_t b)
153 /* Raise divide by zero trap. */
154 cpu_restore_state(env, GETPC());
155 helper_raise_exception(env, TT_DIV_ZERO);
156 } else if (b == -1) {
157 /* Avoid overflow trap with i386 divide insn. */
164 uint64_t helper_udivx(CPUSPARCState *env, uint64_t a, uint64_t b)
167 /* Raise divide by zero trap. */
168 cpu_restore_state(env, GETPC());
169 helper_raise_exception(env, TT_DIV_ZERO);
175 target_ulong helper_taddcctv(CPUSPARCState *env, target_ulong src1,
180 /* Tag overflow occurs if either input has bits 0 or 1 set. */
181 if ((src1 | src2) & 3) {
187 /* Tag overflow occurs if the addition overflows. */
188 if (~(src1 ^ src2) & (src1 ^ dst) & (1u << 31)) {
192 /* Only modify the CC after any exceptions have been generated. */
193 env->cc_op = CC_OP_TADDTV;
200 cpu_restore_state(env, GETPC());
201 helper_raise_exception(env, TT_TOVF);
204 target_ulong helper_tsubcctv(CPUSPARCState *env, target_ulong src1,
209 /* Tag overflow occurs if either input has bits 0 or 1 set. */
210 if ((src1 | src2) & 3) {
216 /* Tag overflow occurs if the subtraction overflows. */
217 if ((src1 ^ src2) & (src1 ^ dst) & (1u << 31)) {
221 /* Only modify the CC after any exceptions have been generated. */
222 env->cc_op = CC_OP_TSUBTV;
229 cpu_restore_state(env, GETPC());
230 helper_raise_exception(env, TT_TOVF);
233 #ifndef TARGET_SPARC64
234 void helper_power_down(CPUSPARCState *env)
236 CPUState *cs = CPU(sparc_env_get_cpu(env));
239 cs->exception_index = EXCP_HLT;
241 env->npc = env->pc + 4;