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"
21 #include "qemu-common.h"
23 #include "user-internals.h"
24 #include "cpu_loop-common.h"
25 #include "signal-common.h"
27 void cpu_loop(CPUM68KState
*env
)
29 CPUState
*cs
= env_cpu(env
);
32 target_siginfo_t info
;
36 trapnr
= cpu_exec(cs
);
38 process_queued_cpu_work(cs
);
42 /* Semihosing syscall. */
44 do_m68k_semihosting(env
, env
->dregs
[0]);
49 info
.si_signo
= TARGET_SIGILL
;
51 info
.si_code
= TARGET_ILL_ILLOPN
;
52 info
._sifields
._sigfault
._addr
= env
->pc
;
53 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
56 info
.si_signo
= TARGET_SIGFPE
;
58 info
.si_code
= TARGET_FPE_INTOVF
;
59 info
._sifields
._sigfault
._addr
= env
->pc
;
60 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
63 info
.si_signo
= TARGET_SIGFPE
;
65 info
.si_code
= TARGET_FPE_INTDIV
;
66 info
._sifields
._sigfault
._addr
= env
->pc
;
67 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
83 if (ret
== -TARGET_ERESTARTSYS
) {
85 } else if (ret
!= -TARGET_QEMU_ESIGRETURN
) {
91 /* just indicate that signals should be handled asap */
94 info
.si_signo
= TARGET_SIGTRAP
;
96 info
.si_code
= TARGET_TRAP_BRKPT
;
97 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
100 cpu_exec_step_atomic(cs
);
103 EXCP_DUMP(env
, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr
);
106 process_pending_signals(env
);
110 void target_cpu_copy_regs(CPUArchState
*env
, struct target_pt_regs
*regs
)
112 CPUState
*cpu
= env_cpu(env
);
113 TaskState
*ts
= cpu
->opaque
;
114 struct image_info
*info
= ts
->info
;
117 env
->dregs
[0] = regs
->d0
;
118 env
->dregs
[1] = regs
->d1
;
119 env
->dregs
[2] = regs
->d2
;
120 env
->dregs
[3] = regs
->d3
;
121 env
->dregs
[4] = regs
->d4
;
122 env
->dregs
[5] = regs
->d5
;
123 env
->dregs
[6] = regs
->d6
;
124 env
->dregs
[7] = regs
->d7
;
125 env
->aregs
[0] = regs
->a0
;
126 env
->aregs
[1] = regs
->a1
;
127 env
->aregs
[2] = regs
->a2
;
128 env
->aregs
[3] = regs
->a3
;
129 env
->aregs
[4] = regs
->a4
;
130 env
->aregs
[5] = regs
->a5
;
131 env
->aregs
[6] = regs
->a6
;
132 env
->aregs
[7] = regs
->usp
;
135 ts
->stack_base
= info
->start_stack
;
136 ts
->heap_base
= info
->brk
;
137 /* This will be filled in on the first SYS_HEAPINFO call. */