target-i386: Use mulu2 and muls2
[qemu/pbrook.git] / target-m68k / op_helper.c
blob16df24c0caa56ebbe6146f7ce2ff6ab517080e0c
1 /*
2 * M68K helper routines
4 * Copyright (c) 2007 CodeSourcery
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/>.
19 #include "cpu.h"
20 #include "helpers.h"
22 #if defined(CONFIG_USER_ONLY)
24 void do_interrupt(CPUM68KState *env)
26 env->exception_index = -1;
29 void do_interrupt_m68k_hardirq(CPUM68KState *env)
33 #else
35 extern int semihosting_enabled;
37 #include "exec/softmmu_exec.h"
39 #define MMUSUFFIX _mmu
41 #define SHIFT 0
42 #include "exec/softmmu_template.h"
44 #define SHIFT 1
45 #include "exec/softmmu_template.h"
47 #define SHIFT 2
48 #include "exec/softmmu_template.h"
50 #define SHIFT 3
51 #include "exec/softmmu_template.h"
53 /* Try to fill the TLB and return an exception if error. If retaddr is
54 NULL, it means that the function was called in C code (i.e. not
55 from generated code or from helper.c) */
56 void tlb_fill(CPUM68KState *env, target_ulong addr, int is_write, int mmu_idx,
57 uintptr_t retaddr)
59 int ret;
61 ret = cpu_m68k_handle_mmu_fault(env, addr, is_write, mmu_idx);
62 if (unlikely(ret)) {
63 if (retaddr) {
64 /* now we have a real cpu fault */
65 cpu_restore_state(env, retaddr);
67 cpu_loop_exit(env);
71 static void do_rte(CPUM68KState *env)
73 uint32_t sp;
74 uint32_t fmt;
76 sp = env->aregs[7];
77 fmt = cpu_ldl_kernel(env, sp);
78 env->pc = cpu_ldl_kernel(env, sp + 4);
79 sp |= (fmt >> 28) & 3;
80 env->sr = fmt & 0xffff;
81 m68k_switch_sp(env);
82 env->aregs[7] = sp + 8;
85 static void do_interrupt_all(CPUM68KState *env, int is_hw)
87 uint32_t sp;
88 uint32_t fmt;
89 uint32_t retaddr;
90 uint32_t vector;
92 fmt = 0;
93 retaddr = env->pc;
95 if (!is_hw) {
96 switch (env->exception_index) {
97 case EXCP_RTE:
98 /* Return from an exception. */
99 do_rte(env);
100 return;
101 case EXCP_HALT_INSN:
102 if (semihosting_enabled
103 && (env->sr & SR_S) != 0
104 && (env->pc & 3) == 0
105 && cpu_lduw_code(env, env->pc - 4) == 0x4e71
106 && cpu_ldl_code(env, env->pc) == 0x4e7bf000) {
107 env->pc += 4;
108 do_m68k_semihosting(env, env->dregs[0]);
109 return;
111 env->halted = 1;
112 env->exception_index = EXCP_HLT;
113 cpu_loop_exit(env);
114 return;
116 if (env->exception_index >= EXCP_TRAP0
117 && env->exception_index <= EXCP_TRAP15) {
118 /* Move the PC after the trap instruction. */
119 retaddr += 2;
123 vector = env->exception_index << 2;
125 sp = env->aregs[7];
127 fmt |= 0x40000000;
128 fmt |= (sp & 3) << 28;
129 fmt |= vector << 16;
130 fmt |= env->sr;
132 env->sr |= SR_S;
133 if (is_hw) {
134 env->sr = (env->sr & ~SR_I) | (env->pending_level << SR_I_SHIFT);
135 env->sr &= ~SR_M;
137 m68k_switch_sp(env);
139 /* ??? This could cause MMU faults. */
140 sp &= ~3;
141 sp -= 4;
142 cpu_stl_kernel(env, sp, retaddr);
143 sp -= 4;
144 cpu_stl_kernel(env, sp, fmt);
145 env->aregs[7] = sp;
146 /* Jump to vector. */
147 env->pc = cpu_ldl_kernel(env, env->vbr + vector);
150 void do_interrupt(CPUM68KState *env)
152 do_interrupt_all(env, 0);
155 void do_interrupt_m68k_hardirq(CPUM68KState *env)
157 do_interrupt_all(env, 1);
159 #endif
161 static void raise_exception(CPUM68KState *env, int tt)
163 env->exception_index = tt;
164 cpu_loop_exit(env);
167 void HELPER(raise_exception)(CPUM68KState *env, uint32_t tt)
169 raise_exception(env, tt);
172 void HELPER(divu)(CPUM68KState *env, uint32_t word)
174 uint32_t num;
175 uint32_t den;
176 uint32_t quot;
177 uint32_t rem;
178 uint32_t flags;
180 num = env->div1;
181 den = env->div2;
182 /* ??? This needs to make sure the throwing location is accurate. */
183 if (den == 0) {
184 raise_exception(env, EXCP_DIV0);
186 quot = num / den;
187 rem = num % den;
188 flags = 0;
189 if (word && quot > 0xffff)
190 flags |= CCF_V;
191 if (quot == 0)
192 flags |= CCF_Z;
193 else if ((int32_t)quot < 0)
194 flags |= CCF_N;
195 env->div1 = quot;
196 env->div2 = rem;
197 env->cc_dest = flags;
200 void HELPER(divs)(CPUM68KState *env, uint32_t word)
202 int32_t num;
203 int32_t den;
204 int32_t quot;
205 int32_t rem;
206 int32_t flags;
208 num = env->div1;
209 den = env->div2;
210 if (den == 0) {
211 raise_exception(env, EXCP_DIV0);
213 quot = num / den;
214 rem = num % den;
215 flags = 0;
216 if (word && quot != (int16_t)quot)
217 flags |= CCF_V;
218 if (quot == 0)
219 flags |= CCF_Z;
220 else if (quot < 0)
221 flags |= CCF_N;
222 env->div1 = quot;
223 env->div2 = rem;
224 env->cc_dest = flags;