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"
24 #include "cpu_loop-common.h"
26 #define get_user_code_u32(x, gaddr, env) \
27 ({ abi_long __r = get_user_u32((x), (gaddr)); \
28 if (!__r && bswap_code(arm_sctlr_b(env))) { \
34 #define get_user_code_u16(x, gaddr, env) \
35 ({ abi_long __r = get_user_u16((x), (gaddr)); \
36 if (!__r && bswap_code(arm_sctlr_b(env))) { \
42 #define get_user_data_u32(x, gaddr, env) \
43 ({ abi_long __r = get_user_u32((x), (gaddr)); \
44 if (!__r && arm_cpu_bswap_data(env)) { \
50 #define get_user_data_u16(x, gaddr, env) \
51 ({ abi_long __r = get_user_u16((x), (gaddr)); \
52 if (!__r && arm_cpu_bswap_data(env)) { \
58 #define put_user_data_u32(x, gaddr, env) \
59 ({ typeof(x) __x = (x); \
60 if (arm_cpu_bswap_data(env)) { \
63 put_user_u32(__x, (gaddr)); \
66 #define put_user_data_u16(x, gaddr, env) \
67 ({ typeof(x) __x = (x); \
68 if (arm_cpu_bswap_data(env)) { \
71 put_user_u16(__x, (gaddr)); \
74 /* Commpage handling -- there is no commpage for AArch64 */
77 * See the Linux kernel's Documentation/arm/kernel_user_helpers.txt
79 * r0 = pointer to oldval
80 * r1 = pointer to newval
81 * r2 = pointer to target value
84 * r0 = 0 if *ptr was changed, non-0 if no exchange happened
85 * C set if *ptr was changed, clear if no exchange happened
87 * Note segv's in kernel helpers are a bit tricky, we can set the
88 * data address sensibly but the PC address is just the entry point.
90 static void arm_kernel_cmpxchg64_helper(CPUARMState *env)
92 uint64_t oldval, newval, val;
94 target_siginfo_t info;
96 /* Based on the 32 bit code in do_kernel_trap */
98 /* XXX: This only works between threads, not between processes.
99 It's probably possible to implement this with native host
100 operations. However things like ldrex/strex are much harder so
101 there's not much point trying. */
103 cpsr = cpsr_read(env);
106 if (get_user_u64(oldval, env->regs[0])) {
107 env->exception.vaddress = env->regs[0];
111 if (get_user_u64(newval, env->regs[1])) {
112 env->exception.vaddress = env->regs[1];
116 if (get_user_u64(val, addr)) {
117 env->exception.vaddress = addr;
124 if (put_user_u64(val, addr)) {
125 env->exception.vaddress = addr;
135 cpsr_write(env, cpsr, CPSR_C, CPSRWriteByInstr);
141 /* We get the PC of the entry address - which is as good as anything,
142 on a real kernel what you get depends on which mode it uses. */
143 info.si_signo = TARGET_SIGSEGV;
145 /* XXX: check env->error_code */
146 info.si_code = TARGET_SEGV_MAPERR;
147 info._sifields._sigfault._addr = env->exception.vaddress;
148 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
151 /* Handle a jump to the kernel code page. */
153 do_kernel_trap(CPUARMState *env)
159 switch (env->regs[15]) {
160 case 0xffff0fa0: /* __kernel_memory_barrier */
161 /* ??? No-op. Will need to do better for SMP. */
163 case 0xffff0fc0: /* __kernel_cmpxchg */
164 /* XXX: This only works between threads, not between processes.
165 It's probably possible to implement this with native host
166 operations. However things like ldrex/strex are much harder so
167 there's not much point trying. */
169 cpsr = cpsr_read(env);
171 /* FIXME: This should SEGV if the access fails. */
172 if (get_user_u32(val, addr))
174 if (val == env->regs[0]) {
176 /* FIXME: Check for segfaults. */
177 put_user_u32(val, addr);
184 cpsr_write(env, cpsr, CPSR_C, CPSRWriteByInstr);
187 case 0xffff0fe0: /* __kernel_get_tls */
188 env->regs[0] = cpu_get_tls(env);
190 case 0xffff0f60: /* __kernel_cmpxchg64 */
191 arm_kernel_cmpxchg64_helper(env);
197 /* Jump back to the caller. */
198 addr = env->regs[14];
203 env->regs[15] = addr;
208 void cpu_loop(CPUARMState *env)
210 CPUState *cs = env_cpu(env);
212 unsigned int n, insn;
213 target_siginfo_t info;
219 trapnr = cpu_exec(cs);
221 process_queued_cpu_work(cs);
228 TaskState *ts = cs->opaque;
232 /* we handle the FPU emulation here, as Linux */
233 /* we get the opcode */
234 /* FIXME - what to do if get_user() fails? */
235 get_user_code_u32(opcode, env->regs[15], env);
237 rc = EmulateAll(opcode, &ts->fpa, env);
238 if (rc == 0) { /* illegal instruction */
239 info.si_signo = TARGET_SIGILL;
241 info.si_code = TARGET_ILL_ILLOPN;
242 info._sifields._sigfault._addr = env->regs[15];
243 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
244 } else if (rc < 0) { /* FP exception */
247 /* translate softfloat flags to FPSR flags */
248 if (-rc & float_flag_invalid)
250 if (-rc & float_flag_divbyzero)
252 if (-rc & float_flag_overflow)
254 if (-rc & float_flag_underflow)
256 if (-rc & float_flag_inexact)
259 FPSR fpsr = ts->fpa.fpsr;
260 //printf("fpsr 0x%x, arm_fpe 0x%x\n",fpsr,arm_fpe);
262 if (fpsr & (arm_fpe << 16)) { /* exception enabled? */
263 info.si_signo = TARGET_SIGFPE;
266 /* ordered by priority, least first */
267 if (arm_fpe & BIT_IXC) info.si_code = TARGET_FPE_FLTRES;
268 if (arm_fpe & BIT_UFC) info.si_code = TARGET_FPE_FLTUND;
269 if (arm_fpe & BIT_OFC) info.si_code = TARGET_FPE_FLTOVF;
270 if (arm_fpe & BIT_DZC) info.si_code = TARGET_FPE_FLTDIV;
271 if (arm_fpe & BIT_IOC) info.si_code = TARGET_FPE_FLTINV;
273 info._sifields._sigfault._addr = env->regs[15];
274 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
279 /* accumulate unenabled exceptions */
280 if ((!(fpsr & BIT_IXE)) && (arm_fpe & BIT_IXC))
282 if ((!(fpsr & BIT_UFE)) && (arm_fpe & BIT_UFC))
284 if ((!(fpsr & BIT_OFE)) && (arm_fpe & BIT_OFC))
286 if ((!(fpsr & BIT_DZE)) && (arm_fpe & BIT_DZC))
288 if ((!(fpsr & BIT_IOE)) && (arm_fpe & BIT_IOC))
291 } else { /* everything OK */
302 if (trapnr == EXCP_BKPT) {
304 /* FIXME - what to do if get_user() fails? */
305 get_user_code_u16(insn, env->regs[15], env);
309 /* FIXME - what to do if get_user() fails? */
310 get_user_code_u32(insn, env->regs[15], env);
311 n = (insn & 0xf) | ((insn >> 4) & 0xff0);
316 /* FIXME - what to do if get_user() fails? */
317 get_user_code_u16(insn, env->regs[15] - 2, env);
320 /* FIXME - what to do if get_user() fails? */
321 get_user_code_u32(insn, env->regs[15] - 4, env);
326 if (n == ARM_NR_cacheflush) {
328 } else if (n == ARM_NR_semihosting
329 || n == ARM_NR_thumb_semihosting) {
330 env->regs[0] = do_arm_semihosting (env);
331 } else if (n == 0 || n >= ARM_SYSCALL_BASE || env->thumb) {
333 if (env->thumb || n == 0) {
336 n -= ARM_SYSCALL_BASE;
339 if ( n > ARM_NR_BASE) {
341 case ARM_NR_cacheflush:
345 cpu_set_tls(env, env->regs[0]);
348 case ARM_NR_breakpoint:
349 env->regs[15] -= env->thumb ? 2 : 4;
352 env->regs[0] = cpu_get_tls(env);
355 gemu_log("qemu: Unsupported ARM syscall: 0x%x\n",
357 env->regs[0] = -TARGET_ENOSYS;
361 ret = do_syscall(env,
370 if (ret == -TARGET_ERESTARTSYS) {
371 env->regs[15] -= env->thumb ? 2 : 4;
372 } else if (ret != -TARGET_QEMU_ESIGRETURN) {
382 env->regs[0] = do_arm_semihosting(env);
385 /* just indicate that signals should be handled asap */
387 case EXCP_PREFETCH_ABORT:
388 case EXCP_DATA_ABORT:
389 addr = env->exception.vaddress;
391 info.si_signo = TARGET_SIGSEGV;
393 /* XXX: check env->error_code */
394 info.si_code = TARGET_SEGV_MAPERR;
395 info._sifields._sigfault._addr = addr;
396 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
401 info.si_signo = TARGET_SIGTRAP;
403 info.si_code = TARGET_TRAP_BRKPT;
404 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
406 case EXCP_KERNEL_TRAP:
407 if (do_kernel_trap(env))
411 /* nothing to do here for user-mode, just resume guest code */
414 cpu_exec_step_atomic(cs);
418 EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr);
421 process_pending_signals(env);
425 void target_cpu_copy_regs(CPUArchState *env, struct target_pt_regs *regs)
427 CPUState *cpu = env_cpu(env);
428 TaskState *ts = cpu->opaque;
429 struct image_info *info = ts->info;
432 cpsr_write(env, regs->uregs[16], CPSR_USER | CPSR_EXEC,
434 for(i = 0; i < 16; i++) {
435 env->regs[i] = regs->uregs[i];
437 #ifdef TARGET_WORDS_BIGENDIAN
439 if (EF_ARM_EABI_VERSION(info->elf_flags) >= EF_ARM_EABI_VER4
440 && (info->elf_flags & EF_ARM_BE8)) {
441 env->uncached_cpsr |= CPSR_E;
442 env->cp15.sctlr_el[1] |= SCTLR_E0E;
444 env->cp15.sctlr_el[1] |= SCTLR_B;
448 ts->stack_base = info->start_stack;
449 ts->heap_base = info->brk;
450 /* This will be filled in on the first SYS_HEAPINFO call. */