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/>.
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
)
35 extern int semihosting_enabled
;
37 #include "softmmu_exec.h"
39 #define MMUSUFFIX _mmu
42 #include "softmmu_template.h"
45 #include "softmmu_template.h"
48 #include "softmmu_template.h"
51 #include "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
,
62 ret
= cpu_m68k_handle_mmu_fault(env
, addr
, is_write
, mmu_idx
);
65 /* now we have a real cpu fault */
66 tb
= tb_find_pc(retaddr
);
68 /* the PC is inside the translated code. It means that we have
69 a virtual CPU fault */
70 cpu_restore_state(tb
, env
, retaddr
);
77 static void do_rte(CPUM68KState
*env
)
83 fmt
= cpu_ldl_kernel(env
, sp
);
84 env
->pc
= cpu_ldl_kernel(env
, sp
+ 4);
85 sp
|= (fmt
>> 28) & 3;
86 env
->sr
= fmt
& 0xffff;
88 env
->aregs
[7] = sp
+ 8;
91 static void do_interrupt_all(CPUM68KState
*env
, int is_hw
)
102 switch (env
->exception_index
) {
104 /* Return from an exception. */
108 if (semihosting_enabled
109 && (env
->sr
& SR_S
) != 0
110 && (env
->pc
& 3) == 0
111 && cpu_lduw_code(env
, env
->pc
- 4) == 0x4e71
112 && cpu_ldl_code(env
, env
->pc
) == 0x4e7bf000) {
114 do_m68k_semihosting(env
, env
->dregs
[0]);
118 env
->exception_index
= EXCP_HLT
;
122 if (env
->exception_index
>= EXCP_TRAP0
123 && env
->exception_index
<= EXCP_TRAP15
) {
124 /* Move the PC after the trap instruction. */
129 vector
= env
->exception_index
<< 2;
134 fmt
|= (sp
& 3) << 28;
140 env
->sr
= (env
->sr
& ~SR_I
) | (env
->pending_level
<< SR_I_SHIFT
);
145 /* ??? This could cause MMU faults. */
148 cpu_stl_kernel(env
, sp
, retaddr
);
150 cpu_stl_kernel(env
, sp
, fmt
);
152 /* Jump to vector. */
153 env
->pc
= cpu_ldl_kernel(env
, env
->vbr
+ vector
);
156 void do_interrupt(CPUM68KState
*env
)
158 do_interrupt_all(env
, 0);
161 void do_interrupt_m68k_hardirq(CPUM68KState
*env
)
163 do_interrupt_all(env
, 1);
167 static void raise_exception(CPUM68KState
*env
, int tt
)
169 env
->exception_index
= tt
;
173 void HELPER(raise_exception
)(CPUM68KState
*env
, uint32_t tt
)
175 raise_exception(env
, tt
);
178 void HELPER(divu
)(CPUM68KState
*env
, uint32_t word
)
188 /* ??? This needs to make sure the throwing location is accurate. */
190 raise_exception(env
, EXCP_DIV0
);
195 if (word
&& quot
> 0xffff)
199 else if ((int32_t)quot
< 0)
203 env
->cc_dest
= flags
;
206 void HELPER(divs
)(CPUM68KState
*env
, uint32_t word
)
217 raise_exception(env
, EXCP_DIV0
);
222 if (word
&& quot
!= (int16_t)quot
)
230 env
->cc_dest
= flags
;