| 1 | /* |
| 2 | * qemu user cpu loop |
| 3 | * |
| 4 | * Copyright (c) 2003-2008 Fabrice Bellard |
| 5 | * |
| 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. |
| 10 | * |
| 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. |
| 15 | * |
| 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/>. |
| 18 | */ |
| 19 | |
| 20 | #include "qemu/osdep.h" |
| 21 | #include "qemu.h" |
| 22 | #include "user-internals.h" |
| 23 | #include "user/cpu_loop.h" |
| 24 | #include "signal-common.h" |
| 25 | |
| 26 | void cpu_loop(CPUM68KState *env) |
| 27 | { |
| 28 | CPUState *cs = env_cpu(env); |
| 29 | int trapnr; |
| 30 | unsigned int n; |
| 31 | |
| 32 | for(;;) { |
| 33 | cpu_exec_start(cs); |
| 34 | trapnr = cpu_exec(cs); |
| 35 | cpu_exec_end(cs); |
| 36 | qemu_process_cpu_events(cs); |
| 37 | |
| 38 | switch(trapnr) { |
| 39 | case EXCP_ILLEGAL: |
| 40 | case EXCP_LINEA: |
| 41 | case EXCP_LINEF: |
| 42 | force_sig_fault(TARGET_SIGILL, TARGET_ILL_ILLOPN, env->pc); |
| 43 | break; |
| 44 | case EXCP_CHK: |
| 45 | case EXCP_TRAPCC: |
| 46 | force_sig_fault(TARGET_SIGFPE, TARGET_FPE_INTOVF, env->mmu.ar); |
| 47 | break; |
| 48 | case EXCP_DIV0: |
| 49 | force_sig_fault(TARGET_SIGFPE, TARGET_FPE_INTDIV, env->mmu.ar); |
| 50 | break; |
| 51 | case EXCP_TRACE: |
| 52 | force_sig_fault(TARGET_SIGTRAP, TARGET_TRAP_TRACE, env->mmu.ar); |
| 53 | break; |
| 54 | case EXCP_TRAP0: |
| 55 | { |
| 56 | abi_long ret; |
| 57 | n = env->dregs[0]; |
| 58 | ret = do_syscall(env, |
| 59 | n, |
| 60 | env->dregs[1], |
| 61 | env->dregs[2], |
| 62 | env->dregs[3], |
| 63 | env->dregs[4], |
| 64 | env->dregs[5], |
| 65 | env->aregs[0], |
| 66 | 0, 0); |
| 67 | if (ret == -QEMU_ERESTARTSYS) { |
| 68 | env->pc -= 2; |
| 69 | } else if (ret != -QEMU_ESIGRETURN && ret != -QEMU_ESETPC) { |
| 70 | env->dregs[0] = ret; |
| 71 | } |
| 72 | } |
| 73 | break; |
| 74 | case EXCP_INTERRUPT: |
| 75 | /* just indicate that signals should be handled asap */ |
| 76 | break; |
| 77 | case EXCP_TRAP0 + 1 ... EXCP_TRAP0 + 14: |
| 78 | force_sig_fault(TARGET_SIGILL, TARGET_ILL_ILLTRP, env->pc); |
| 79 | break; |
| 80 | case EXCP_DEBUG: |
| 81 | case EXCP_TRAP15: |
| 82 | force_sig_fault(TARGET_SIGTRAP, TARGET_TRAP_BRKPT, env->pc); |
| 83 | break; |
| 84 | case EXCP_ATOMIC: |
| 85 | cpu_exec_step_atomic(cs); |
| 86 | break; |
| 87 | default: |
| 88 | EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr); |
| 89 | abort(); |
| 90 | } |
| 91 | process_pending_signals(env); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | void init_main_thread(CPUState *cs, struct image_info *info) |
| 96 | { |
| 97 | CPUArchState *env = cpu_env(cs); |
| 98 | |
| 99 | env->pc = info->entry; |
| 100 | env->aregs[7] = info->start_stack; |
| 101 | env->sr = 0; |
| 102 | } |