4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
22 #include "cpu_loop-common.h"
24 void cpu_loop(CPUM68KState
*env
)
26 CPUState
*cs
= CPU(m68k_env_get_cpu(env
));
29 target_siginfo_t info
;
30 TaskState
*ts
= cs
->opaque
;
34 trapnr
= cpu_exec(cs
);
36 process_queued_cpu_work(cs
);
41 if (ts
->sim_syscalls
) {
43 get_user_u16(nr
, env
->pc
+ 2);
45 do_m68k_simcall(env
, nr
);
52 /* Semihosing syscall. */
54 do_m68k_semihosting(env
, env
->dregs
[0]);
58 case EXCP_UNSUPPORTED
:
60 info
.si_signo
= TARGET_SIGILL
;
62 info
.si_code
= TARGET_ILL_ILLOPN
;
63 info
._sifields
._sigfault
._addr
= env
->pc
;
64 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
67 info
.si_signo
= TARGET_SIGFPE
;
69 info
.si_code
= TARGET_FPE_INTOVF
;
70 info
._sifields
._sigfault
._addr
= env
->pc
;
71 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
74 info
.si_signo
= TARGET_SIGFPE
;
76 info
.si_code
= TARGET_FPE_INTDIV
;
77 info
._sifields
._sigfault
._addr
= env
->pc
;
78 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
95 if (ret
== -TARGET_ERESTARTSYS
) {
97 } else if (ret
!= -TARGET_QEMU_ESIGRETURN
) {
103 /* just indicate that signals should be handled asap */
107 info
.si_signo
= TARGET_SIGSEGV
;
109 /* XXX: check env->error_code */
110 info
.si_code
= TARGET_SEGV_MAPERR
;
111 info
._sifields
._sigfault
._addr
= env
->mmu
.ar
;
112 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
119 sig
= gdb_handlesig(cs
, TARGET_SIGTRAP
);
124 info
.si_code
= TARGET_TRAP_BRKPT
;
125 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
130 cpu_exec_step_atomic(cs
);
133 EXCP_DUMP(env
, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr
);
136 process_pending_signals(env
);
140 void target_cpu_copy_regs(CPUArchState
*env
, struct target_pt_regs
*regs
)
142 CPUState
*cpu
= ENV_GET_CPU(env
);
143 TaskState
*ts
= cpu
->opaque
;
144 struct image_info
*info
= ts
->info
;
147 env
->dregs
[0] = regs
->d0
;
148 env
->dregs
[1] = regs
->d1
;
149 env
->dregs
[2] = regs
->d2
;
150 env
->dregs
[3] = regs
->d3
;
151 env
->dregs
[4] = regs
->d4
;
152 env
->dregs
[5] = regs
->d5
;
153 env
->dregs
[6] = regs
->d6
;
154 env
->dregs
[7] = regs
->d7
;
155 env
->aregs
[0] = regs
->a0
;
156 env
->aregs
[1] = regs
->a1
;
157 env
->aregs
[2] = regs
->a2
;
158 env
->aregs
[3] = regs
->a3
;
159 env
->aregs
[4] = regs
->a4
;
160 env
->aregs
[5] = regs
->a5
;
161 env
->aregs
[6] = regs
->a6
;
162 env
->aregs
[7] = regs
->usp
;
165 ts
->sim_syscalls
= 1;
166 ts
->stack_base
= info
->start_stack
;
167 ts
->heap_base
= info
->brk
;
168 /* This will be filled in on the first SYS_HEAPINFO call. */