linux-user/arm: Split out emulate_arm_fpa11
[qemu/ar7.git] / linux-user / arm / cpu_loop.c
blob106909c7d8800f70dd115503d432b7bf8a569b2a
1 /*
2 * qemu user cpu loop
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"
22 #include "qemu.h"
23 #include "elf.h"
24 #include "cpu_loop-common.h"
25 #include "semihosting/common-semi.h"
27 #define get_user_code_u32(x, gaddr, env) \
28 ({ abi_long __r = get_user_u32((x), (gaddr)); \
29 if (!__r && bswap_code(arm_sctlr_b(env))) { \
30 (x) = bswap32(x); \
31 } \
32 __r; \
35 #define get_user_code_u16(x, gaddr, env) \
36 ({ abi_long __r = get_user_u16((x), (gaddr)); \
37 if (!__r && bswap_code(arm_sctlr_b(env))) { \
38 (x) = bswap16(x); \
39 } \
40 __r; \
43 #define get_user_data_u32(x, gaddr, env) \
44 ({ abi_long __r = get_user_u32((x), (gaddr)); \
45 if (!__r && arm_cpu_bswap_data(env)) { \
46 (x) = bswap32(x); \
47 } \
48 __r; \
51 #define get_user_data_u16(x, gaddr, env) \
52 ({ abi_long __r = get_user_u16((x), (gaddr)); \
53 if (!__r && arm_cpu_bswap_data(env)) { \
54 (x) = bswap16(x); \
55 } \
56 __r; \
59 #define put_user_data_u32(x, gaddr, env) \
60 ({ typeof(x) __x = (x); \
61 if (arm_cpu_bswap_data(env)) { \
62 __x = bswap32(__x); \
63 } \
64 put_user_u32(__x, (gaddr)); \
67 #define put_user_data_u16(x, gaddr, env) \
68 ({ typeof(x) __x = (x); \
69 if (arm_cpu_bswap_data(env)) { \
70 __x = bswap16(__x); \
71 } \
72 put_user_u16(__x, (gaddr)); \
75 /* Commpage handling -- there is no commpage for AArch64 */
78 * See the Linux kernel's Documentation/arm/kernel_user_helpers.txt
79 * Input:
80 * r0 = pointer to oldval
81 * r1 = pointer to newval
82 * r2 = pointer to target value
84 * Output:
85 * r0 = 0 if *ptr was changed, non-0 if no exchange happened
86 * C set if *ptr was changed, clear if no exchange happened
88 * Note segv's in kernel helpers are a bit tricky, we can set the
89 * data address sensibly but the PC address is just the entry point.
91 static void arm_kernel_cmpxchg64_helper(CPUARMState *env)
93 uint64_t oldval, newval, val;
94 uint32_t addr, cpsr;
95 target_siginfo_t info;
97 /* Based on the 32 bit code in do_kernel_trap */
99 /* XXX: This only works between threads, not between processes.
100 It's probably possible to implement this with native host
101 operations. However things like ldrex/strex are much harder so
102 there's not much point trying. */
103 start_exclusive();
104 cpsr = cpsr_read(env);
105 addr = env->regs[2];
107 if (get_user_u64(oldval, env->regs[0])) {
108 env->exception.vaddress = env->regs[0];
109 goto segv;
112 if (get_user_u64(newval, env->regs[1])) {
113 env->exception.vaddress = env->regs[1];
114 goto segv;
117 if (get_user_u64(val, addr)) {
118 env->exception.vaddress = addr;
119 goto segv;
122 if (val == oldval) {
123 val = newval;
125 if (put_user_u64(val, addr)) {
126 env->exception.vaddress = addr;
127 goto segv;
130 env->regs[0] = 0;
131 cpsr |= CPSR_C;
132 } else {
133 env->regs[0] = -1;
134 cpsr &= ~CPSR_C;
136 cpsr_write(env, cpsr, CPSR_C, CPSRWriteByInstr);
137 end_exclusive();
138 return;
140 segv:
141 end_exclusive();
142 /* We get the PC of the entry address - which is as good as anything,
143 on a real kernel what you get depends on which mode it uses. */
144 info.si_signo = TARGET_SIGSEGV;
145 info.si_errno = 0;
146 /* XXX: check env->error_code */
147 info.si_code = TARGET_SEGV_MAPERR;
148 info._sifields._sigfault._addr = env->exception.vaddress;
149 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
152 /* Handle a jump to the kernel code page. */
153 static int
154 do_kernel_trap(CPUARMState *env)
156 uint32_t addr;
157 uint32_t cpsr;
158 uint32_t val;
160 switch (env->regs[15]) {
161 case 0xffff0fa0: /* __kernel_memory_barrier */
162 /* ??? No-op. Will need to do better for SMP. */
163 break;
164 case 0xffff0fc0: /* __kernel_cmpxchg */
165 /* XXX: This only works between threads, not between processes.
166 It's probably possible to implement this with native host
167 operations. However things like ldrex/strex are much harder so
168 there's not much point trying. */
169 start_exclusive();
170 cpsr = cpsr_read(env);
171 addr = env->regs[2];
172 /* FIXME: This should SEGV if the access fails. */
173 if (get_user_u32(val, addr))
174 val = ~env->regs[0];
175 if (val == env->regs[0]) {
176 val = env->regs[1];
177 /* FIXME: Check for segfaults. */
178 put_user_u32(val, addr);
179 env->regs[0] = 0;
180 cpsr |= CPSR_C;
181 } else {
182 env->regs[0] = -1;
183 cpsr &= ~CPSR_C;
185 cpsr_write(env, cpsr, CPSR_C, CPSRWriteByInstr);
186 end_exclusive();
187 break;
188 case 0xffff0fe0: /* __kernel_get_tls */
189 env->regs[0] = cpu_get_tls(env);
190 break;
191 case 0xffff0f60: /* __kernel_cmpxchg64 */
192 arm_kernel_cmpxchg64_helper(env);
193 break;
195 default:
196 return 1;
198 /* Jump back to the caller. */
199 addr = env->regs[14];
200 if (addr & 1) {
201 env->thumb = 1;
202 addr &= ~1;
204 env->regs[15] = addr;
206 return 0;
209 static bool insn_is_linux_bkpt(uint32_t opcode, bool is_thumb)
212 * Return true if this insn is one of the three magic UDF insns
213 * which the kernel treats as breakpoint insns.
215 if (!is_thumb) {
216 return (opcode & 0x0fffffff) == 0x07f001f0;
217 } else {
219 * Note that we get the two halves of the 32-bit T32 insn
220 * in the opposite order to the value the kernel uses in
221 * its undef_hook struct.
223 return ((opcode & 0xffff) == 0xde01) || (opcode == 0xa000f7f0);
227 static bool emulate_arm_fpa11(CPUARMState *env, uint32_t opcode)
229 TaskState *ts = env_cpu(env)->opaque;
230 int rc = EmulateAll(opcode, &ts->fpa, env);
232 if (rc == 0) {
233 /* Illegal instruction */
234 return false;
236 if (rc > 0) {
237 /* Everything ok. */
238 env->regs[15] += 4;
239 return true;
242 /* FP exception */
243 int arm_fpe = 0;
245 /* Translate softfloat flags to FPSR flags */
246 if (-rc & float_flag_invalid) {
247 arm_fpe |= BIT_IOC;
249 if (-rc & float_flag_divbyzero) {
250 arm_fpe |= BIT_DZC;
252 if (-rc & float_flag_overflow) {
253 arm_fpe |= BIT_OFC;
255 if (-rc & float_flag_underflow) {
256 arm_fpe |= BIT_UFC;
258 if (-rc & float_flag_inexact) {
259 arm_fpe |= BIT_IXC;
262 /* Exception enabled? */
263 FPSR fpsr = ts->fpa.fpsr;
264 if (fpsr & (arm_fpe << 16)) {
265 target_siginfo_t info;
267 info.si_signo = TARGET_SIGFPE;
268 info.si_errno = 0;
270 /* ordered by priority, least first */
271 if (arm_fpe & BIT_IXC) {
272 info.si_code = TARGET_FPE_FLTRES;
274 if (arm_fpe & BIT_UFC) {
275 info.si_code = TARGET_FPE_FLTUND;
277 if (arm_fpe & BIT_OFC) {
278 info.si_code = TARGET_FPE_FLTOVF;
280 if (arm_fpe & BIT_DZC) {
281 info.si_code = TARGET_FPE_FLTDIV;
283 if (arm_fpe & BIT_IOC) {
284 info.si_code = TARGET_FPE_FLTINV;
287 info._sifields._sigfault._addr = env->regs[15];
288 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
289 } else {
290 env->regs[15] += 4;
293 /* Accumulate unenabled exceptions */
294 if ((!(fpsr & BIT_IXE)) && (arm_fpe & BIT_IXC)) {
295 fpsr |= BIT_IXC;
297 if ((!(fpsr & BIT_UFE)) && (arm_fpe & BIT_UFC)) {
298 fpsr |= BIT_UFC;
300 if ((!(fpsr & BIT_OFE)) && (arm_fpe & BIT_OFC)) {
301 fpsr |= BIT_OFC;
303 if ((!(fpsr & BIT_DZE)) && (arm_fpe & BIT_DZC)) {
304 fpsr |= BIT_DZC;
306 if ((!(fpsr & BIT_IOE)) && (arm_fpe & BIT_IOC)) {
307 fpsr |= BIT_IOC;
309 ts->fpa.fpsr = fpsr;
310 return true;
313 void cpu_loop(CPUARMState *env)
315 CPUState *cs = env_cpu(env);
316 int trapnr;
317 unsigned int n, insn;
318 target_siginfo_t info;
319 uint32_t addr;
320 abi_ulong ret;
322 for(;;) {
323 cpu_exec_start(cs);
324 trapnr = cpu_exec(cs);
325 cpu_exec_end(cs);
326 process_queued_cpu_work(cs);
328 switch(trapnr) {
329 case EXCP_UDEF:
330 case EXCP_NOCP:
331 case EXCP_INVSTATE:
333 uint32_t opcode;
335 /* we handle the FPU emulation here, as Linux */
336 /* we get the opcode */
337 /* FIXME - what to do if get_user() fails? */
338 get_user_code_u32(opcode, env->regs[15], env);
341 * The Linux kernel treats some UDF patterns specially
342 * to use as breakpoints (instead of the architectural
343 * bkpt insn). These should trigger a SIGTRAP rather
344 * than SIGILL.
346 if (insn_is_linux_bkpt(opcode, env->thumb)) {
347 goto excp_debug;
350 if (emulate_arm_fpa11(env, opcode)) {
351 break;
354 info.si_signo = TARGET_SIGILL;
355 info.si_errno = 0;
356 info.si_code = TARGET_ILL_ILLOPN;
357 info._sifields._sigfault._addr = env->regs[15];
358 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
360 break;
361 case EXCP_SWI:
363 env->eabi = 1;
364 /* system call */
365 if (env->thumb) {
366 /* Thumb is always EABI style with syscall number in r7 */
367 n = env->regs[7];
368 } else {
370 * Equivalent of kernel CONFIG_OABI_COMPAT: read the
371 * Arm SVC insn to extract the immediate, which is the
372 * syscall number in OABI.
374 /* FIXME - what to do if get_user() fails? */
375 get_user_code_u32(insn, env->regs[15] - 4, env);
376 n = insn & 0xffffff;
377 if (n == 0) {
378 /* zero immediate: EABI, syscall number in r7 */
379 n = env->regs[7];
380 } else {
382 * This XOR matches the kernel code: an immediate
383 * in the valid range (0x900000 .. 0x9fffff) is
384 * converted into the correct EABI-style syscall
385 * number; invalid immediates end up as values
386 * > 0xfffff and are handled below as out-of-range.
388 n ^= ARM_SYSCALL_BASE;
389 env->eabi = 0;
393 if (n > ARM_NR_BASE) {
394 switch (n) {
395 case ARM_NR_cacheflush:
396 /* nop */
397 break;
398 case ARM_NR_set_tls:
399 cpu_set_tls(env, env->regs[0]);
400 env->regs[0] = 0;
401 break;
402 case ARM_NR_breakpoint:
403 env->regs[15] -= env->thumb ? 2 : 4;
404 goto excp_debug;
405 case ARM_NR_get_tls:
406 env->regs[0] = cpu_get_tls(env);
407 break;
408 default:
409 if (n < 0xf0800) {
411 * Syscalls 0xf0000..0xf07ff (or 0x9f0000..
412 * 0x9f07ff in OABI numbering) are defined
413 * to return -ENOSYS rather than raising
414 * SIGILL. Note that we have already
415 * removed the 0x900000 prefix.
417 qemu_log_mask(LOG_UNIMP,
418 "qemu: Unsupported ARM syscall: 0x%x\n",
420 env->regs[0] = -TARGET_ENOSYS;
421 } else {
423 * Otherwise SIGILL. This includes any SWI with
424 * immediate not originally 0x9fxxxx, because
425 * of the earlier XOR.
427 info.si_signo = TARGET_SIGILL;
428 info.si_errno = 0;
429 info.si_code = TARGET_ILL_ILLTRP;
430 info._sifields._sigfault._addr = env->regs[15];
431 if (env->thumb) {
432 info._sifields._sigfault._addr -= 2;
433 } else {
434 info._sifields._sigfault._addr -= 4;
436 queue_signal(env, info.si_signo,
437 QEMU_SI_FAULT, &info);
439 break;
441 } else {
442 ret = do_syscall(env,
444 env->regs[0],
445 env->regs[1],
446 env->regs[2],
447 env->regs[3],
448 env->regs[4],
449 env->regs[5],
450 0, 0);
451 if (ret == -TARGET_ERESTARTSYS) {
452 env->regs[15] -= env->thumb ? 2 : 4;
453 } else if (ret != -TARGET_QEMU_ESIGRETURN) {
454 env->regs[0] = ret;
458 break;
459 case EXCP_SEMIHOST:
460 env->regs[0] = do_common_semihosting(cs);
461 env->regs[15] += env->thumb ? 2 : 4;
462 break;
463 case EXCP_INTERRUPT:
464 /* just indicate that signals should be handled asap */
465 break;
466 case EXCP_PREFETCH_ABORT:
467 case EXCP_DATA_ABORT:
468 addr = env->exception.vaddress;
470 info.si_signo = TARGET_SIGSEGV;
471 info.si_errno = 0;
472 /* XXX: check env->error_code */
473 info.si_code = TARGET_SEGV_MAPERR;
474 info._sifields._sigfault._addr = addr;
475 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
477 break;
478 case EXCP_DEBUG:
479 case EXCP_BKPT:
480 excp_debug:
481 info.si_signo = TARGET_SIGTRAP;
482 info.si_errno = 0;
483 info.si_code = TARGET_TRAP_BRKPT;
484 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
485 break;
486 case EXCP_KERNEL_TRAP:
487 if (do_kernel_trap(env))
488 goto error;
489 break;
490 case EXCP_YIELD:
491 /* nothing to do here for user-mode, just resume guest code */
492 break;
493 case EXCP_ATOMIC:
494 cpu_exec_step_atomic(cs);
495 break;
496 default:
497 error:
498 EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr);
499 abort();
501 process_pending_signals(env);
505 void target_cpu_copy_regs(CPUArchState *env, struct target_pt_regs *regs)
507 CPUState *cpu = env_cpu(env);
508 TaskState *ts = cpu->opaque;
509 struct image_info *info = ts->info;
510 int i;
512 cpsr_write(env, regs->uregs[16], CPSR_USER | CPSR_EXEC,
513 CPSRWriteByInstr);
514 for(i = 0; i < 16; i++) {
515 env->regs[i] = regs->uregs[i];
517 #ifdef TARGET_WORDS_BIGENDIAN
518 /* Enable BE8. */
519 if (EF_ARM_EABI_VERSION(info->elf_flags) >= EF_ARM_EABI_VER4
520 && (info->elf_flags & EF_ARM_BE8)) {
521 env->uncached_cpsr |= CPSR_E;
522 env->cp15.sctlr_el[1] |= SCTLR_E0E;
523 } else {
524 env->cp15.sctlr_el[1] |= SCTLR_B;
526 arm_rebuild_hflags(env);
527 #endif
529 ts->stack_base = info->start_stack;
530 ts->heap_base = info->brk;
531 /* This will be filled in on the first SYS_HEAPINFO call. */
532 ts->heap_limit = 0;