bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1 | /* |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 2 | * qemu user main |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 3 | * |
| 4 | * Copyright (c) 2003 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, write to the Free Software |
| 18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | */ |
| 20 | #include <stdlib.h> |
| 21 | #include <stdio.h> |
| 22 | #include <stdarg.h> |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 23 | #include <string.h> |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 24 | #include <errno.h> |
bellard | 0ecfa99 | 2003-03-03 14:32:43 +0000 | [diff] [blame] | 25 | #include <unistd.h> |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 26 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 27 | #include "qemu.h" |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 28 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 29 | #define DEBUG_LOGFILE "/tmp/qemu.log" |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 30 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 31 | #ifdef __APPLE__ |
| 32 | #include <crt_externs.h> |
| 33 | # define environ (*_NSGetEnviron()) |
| 34 | #endif |
| 35 | |
bellard | 74cd30b | 2003-04-11 00:13:41 +0000 | [diff] [blame] | 36 | static const char *interp_prefix = CONFIG_QEMU_PREFIX; |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 37 | const char *qemu_uname_release = CONFIG_UNAME_RELEASE; |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 38 | |
bellard | 3a4739d | 2003-10-28 00:48:22 +0000 | [diff] [blame] | 39 | #if defined(__i386__) && !defined(CONFIG_STATIC) |
bellard | f801f97 | 2003-04-07 21:31:06 +0000 | [diff] [blame] | 40 | /* Force usage of an ELF interpreter even if it is an ELF shared |
| 41 | object ! */ |
| 42 | const char interp[] __attribute__((section(".interp"))) = "/lib/ld-linux.so.2"; |
bellard | 4304763 | 2003-05-29 20:05:35 +0000 | [diff] [blame] | 43 | #endif |
bellard | 74cd30b | 2003-04-11 00:13:41 +0000 | [diff] [blame] | 44 | |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 45 | /* for recent libc, we add these dummy symbols which are not declared |
bellard | 74cd30b | 2003-04-11 00:13:41 +0000 | [diff] [blame] | 46 | when generating a linked object (bug in ld ?) */ |
bellard | fbf5924 | 2004-07-10 18:18:19 +0000 | [diff] [blame] | 47 | #if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined(CONFIG_STATIC) |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 48 | long __preinit_array_start[0]; |
| 49 | long __preinit_array_end[0]; |
bellard | 74cd30b | 2003-04-11 00:13:41 +0000 | [diff] [blame] | 50 | long __init_array_start[0]; |
| 51 | long __init_array_end[0]; |
| 52 | long __fini_array_start[0]; |
| 53 | long __fini_array_end[0]; |
| 54 | #endif |
| 55 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 56 | /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so |
| 57 | we allocate a bigger stack. Need a better solution, for example |
| 58 | by remapping the process stack directly at the right place */ |
| 59 | unsigned long x86_stack_size = 512 * 1024; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 60 | |
| 61 | void gemu_log(const char *fmt, ...) |
| 62 | { |
| 63 | va_list ap; |
| 64 | |
| 65 | va_start(ap, fmt); |
| 66 | vfprintf(stderr, fmt, ap); |
| 67 | va_end(ap); |
| 68 | } |
| 69 | |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 70 | void cpu_outb(CPUState *env, int addr, int val) |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 71 | { |
| 72 | fprintf(stderr, "outb: port=0x%04x, data=%02x\n", addr, val); |
| 73 | } |
| 74 | |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 75 | void cpu_outw(CPUState *env, int addr, int val) |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 76 | { |
| 77 | fprintf(stderr, "outw: port=0x%04x, data=%04x\n", addr, val); |
| 78 | } |
| 79 | |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 80 | void cpu_outl(CPUState *env, int addr, int val) |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 81 | { |
| 82 | fprintf(stderr, "outl: port=0x%04x, data=%08x\n", addr, val); |
| 83 | } |
| 84 | |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 85 | int cpu_inb(CPUState *env, int addr) |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 86 | { |
| 87 | fprintf(stderr, "inb: port=0x%04x\n", addr); |
| 88 | return 0; |
| 89 | } |
| 90 | |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 91 | int cpu_inw(CPUState *env, int addr) |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 92 | { |
| 93 | fprintf(stderr, "inw: port=0x%04x\n", addr); |
| 94 | return 0; |
| 95 | } |
| 96 | |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 97 | int cpu_inl(CPUState *env, int addr) |
bellard | 367e86e | 2003-03-01 17:13:26 +0000 | [diff] [blame] | 98 | { |
| 99 | fprintf(stderr, "inl: port=0x%04x\n", addr); |
| 100 | return 0; |
| 101 | } |
| 102 | |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 103 | int cpu_get_pic_interrupt(CPUState *env) |
bellard | 92ccca6 | 2003-06-24 13:30:31 +0000 | [diff] [blame] | 104 | { |
| 105 | return -1; |
| 106 | } |
| 107 | |
bellard | 28ab0e2 | 2004-05-20 14:02:14 +0000 | [diff] [blame] | 108 | /* timers for rdtsc */ |
| 109 | |
bellard | 1dce7c3 | 2006-07-13 23:20:22 +0000 | [diff] [blame] | 110 | #if 0 |
bellard | 28ab0e2 | 2004-05-20 14:02:14 +0000 | [diff] [blame] | 111 | |
| 112 | static uint64_t emu_time; |
| 113 | |
| 114 | int64_t cpu_get_real_ticks(void) |
| 115 | { |
| 116 | return emu_time++; |
| 117 | } |
| 118 | |
| 119 | #endif |
| 120 | |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 121 | #ifdef TARGET_I386 |
| 122 | /***********************************************************/ |
| 123 | /* CPUX86 core interface */ |
| 124 | |
bellard | 02a1602 | 2006-09-24 18:48:23 +0000 | [diff] [blame] | 125 | void cpu_smm_update(CPUState *env) |
| 126 | { |
| 127 | } |
| 128 | |
bellard | 28ab0e2 | 2004-05-20 14:02:14 +0000 | [diff] [blame] | 129 | uint64_t cpu_get_tsc(CPUX86State *env) |
| 130 | { |
| 131 | return cpu_get_real_ticks(); |
| 132 | } |
| 133 | |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 134 | static void write_dt(void *ptr, unsigned long addr, unsigned long limit, |
| 135 | int flags) |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 136 | { |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 137 | unsigned int e1, e2; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 138 | uint32_t *p; |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 139 | e1 = (addr << 16) | (limit & 0xffff); |
| 140 | e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000); |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 141 | e2 |= flags; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 142 | p = ptr; |
| 143 | p[0] = tswapl(e1); |
| 144 | p[1] = tswapl(e2); |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | static void set_gate(void *ptr, unsigned int type, unsigned int dpl, |
| 148 | unsigned long addr, unsigned int sel) |
| 149 | { |
| 150 | unsigned int e1, e2; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 151 | uint32_t *p; |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 152 | e1 = (addr & 0xffff) | (sel << 16); |
| 153 | e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8); |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 154 | p = ptr; |
| 155 | p[0] = tswapl(e1); |
| 156 | p[1] = tswapl(e2); |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | uint64_t gdt_table[6]; |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 160 | uint64_t idt_table[256]; |
| 161 | |
| 162 | /* only dpl matters as we do only user space emulation */ |
| 163 | static void set_idt(int n, unsigned int dpl) |
| 164 | { |
| 165 | set_gate(idt_table + n, 0, dpl, 0, 0); |
| 166 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 167 | |
bellard | 89e957e | 2003-05-10 12:33:15 +0000 | [diff] [blame] | 168 | void cpu_loop(CPUX86State *env) |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 169 | { |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 170 | int trapnr; |
bellard | 80a9d03 | 2005-01-03 23:31:27 +0000 | [diff] [blame] | 171 | target_ulong pc; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 172 | target_siginfo_t info; |
bellard | 851e67a | 2003-03-29 16:53:14 +0000 | [diff] [blame] | 173 | |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 174 | for(;;) { |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 175 | trapnr = cpu_x86_exec(env); |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 176 | switch(trapnr) { |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 177 | case 0x80: |
| 178 | /* linux syscall */ |
| 179 | env->regs[R_EAX] = do_syscall(env, |
| 180 | env->regs[R_EAX], |
| 181 | env->regs[R_EBX], |
| 182 | env->regs[R_ECX], |
| 183 | env->regs[R_EDX], |
| 184 | env->regs[R_ESI], |
| 185 | env->regs[R_EDI], |
| 186 | env->regs[R_EBP]); |
| 187 | break; |
| 188 | case EXCP0B_NOSEG: |
| 189 | case EXCP0C_STACK: |
| 190 | info.si_signo = SIGBUS; |
| 191 | info.si_errno = 0; |
| 192 | info.si_code = TARGET_SI_KERNEL; |
| 193 | info._sifields._sigfault._addr = 0; |
| 194 | queue_signal(info.si_signo, &info); |
| 195 | break; |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 196 | case EXCP0D_GPF: |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 197 | #ifndef TARGET_X86_64 |
bellard | 851e67a | 2003-03-29 16:53:14 +0000 | [diff] [blame] | 198 | if (env->eflags & VM_MASK) { |
bellard | 89e957e | 2003-05-10 12:33:15 +0000 | [diff] [blame] | 199 | handle_vm86_fault(env); |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 200 | } else |
| 201 | #endif |
| 202 | { |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 203 | info.si_signo = SIGSEGV; |
| 204 | info.si_errno = 0; |
| 205 | info.si_code = TARGET_SI_KERNEL; |
| 206 | info._sifields._sigfault._addr = 0; |
| 207 | queue_signal(info.si_signo, &info); |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 208 | } |
| 209 | break; |
bellard | b689bc5 | 2003-05-08 15:33:33 +0000 | [diff] [blame] | 210 | case EXCP0E_PAGE: |
| 211 | info.si_signo = SIGSEGV; |
| 212 | info.si_errno = 0; |
| 213 | if (!(env->error_code & 1)) |
| 214 | info.si_code = TARGET_SEGV_MAPERR; |
| 215 | else |
| 216 | info.si_code = TARGET_SEGV_ACCERR; |
bellard | 970a87a | 2003-06-21 13:13:25 +0000 | [diff] [blame] | 217 | info._sifields._sigfault._addr = env->cr[2]; |
bellard | b689bc5 | 2003-05-08 15:33:33 +0000 | [diff] [blame] | 218 | queue_signal(info.si_signo, &info); |
| 219 | break; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 220 | case EXCP00_DIVZ: |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 221 | #ifndef TARGET_X86_64 |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 222 | if (env->eflags & VM_MASK) { |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 223 | handle_vm86_trap(env, trapnr); |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 224 | } else |
| 225 | #endif |
| 226 | { |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 227 | /* division by zero */ |
| 228 | info.si_signo = SIGFPE; |
| 229 | info.si_errno = 0; |
| 230 | info.si_code = TARGET_FPE_INTDIV; |
| 231 | info._sifields._sigfault._addr = env->eip; |
| 232 | queue_signal(info.si_signo, &info); |
| 233 | } |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 234 | break; |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 235 | case EXCP01_SSTP: |
| 236 | case EXCP03_INT3: |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 237 | #ifndef TARGET_X86_64 |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 238 | if (env->eflags & VM_MASK) { |
| 239 | handle_vm86_trap(env, trapnr); |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 240 | } else |
| 241 | #endif |
| 242 | { |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 243 | info.si_signo = SIGTRAP; |
| 244 | info.si_errno = 0; |
| 245 | if (trapnr == EXCP01_SSTP) { |
| 246 | info.si_code = TARGET_TRAP_BRKPT; |
| 247 | info._sifields._sigfault._addr = env->eip; |
| 248 | } else { |
| 249 | info.si_code = TARGET_SI_KERNEL; |
| 250 | info._sifields._sigfault._addr = 0; |
| 251 | } |
| 252 | queue_signal(info.si_signo, &info); |
| 253 | } |
| 254 | break; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 255 | case EXCP04_INTO: |
| 256 | case EXCP05_BOUND: |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 257 | #ifndef TARGET_X86_64 |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 258 | if (env->eflags & VM_MASK) { |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 259 | handle_vm86_trap(env, trapnr); |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 260 | } else |
| 261 | #endif |
| 262 | { |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 263 | info.si_signo = SIGSEGV; |
| 264 | info.si_errno = 0; |
bellard | b689bc5 | 2003-05-08 15:33:33 +0000 | [diff] [blame] | 265 | info.si_code = TARGET_SI_KERNEL; |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 266 | info._sifields._sigfault._addr = 0; |
| 267 | queue_signal(info.si_signo, &info); |
| 268 | } |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 269 | break; |
| 270 | case EXCP06_ILLOP: |
| 271 | info.si_signo = SIGILL; |
| 272 | info.si_errno = 0; |
| 273 | info.si_code = TARGET_ILL_ILLOPN; |
| 274 | info._sifields._sigfault._addr = env->eip; |
| 275 | queue_signal(info.si_signo, &info); |
| 276 | break; |
| 277 | case EXCP_INTERRUPT: |
| 278 | /* just indicate that signals should be handled asap */ |
| 279 | break; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 280 | case EXCP_DEBUG: |
| 281 | { |
| 282 | int sig; |
| 283 | |
| 284 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 285 | if (sig) |
| 286 | { |
| 287 | info.si_signo = sig; |
| 288 | info.si_errno = 0; |
| 289 | info.si_code = TARGET_TRAP_BRKPT; |
| 290 | queue_signal(info.si_signo, &info); |
| 291 | } |
| 292 | } |
| 293 | break; |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 294 | default: |
bellard | 970a87a | 2003-06-21 13:13:25 +0000 | [diff] [blame] | 295 | pc = env->segs[R_CS].base + env->eip; |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 296 | fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n", |
| 297 | (long)pc, trapnr); |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 298 | abort(); |
| 299 | } |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 300 | process_pending_signals(env); |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 301 | } |
| 302 | } |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 303 | #endif |
| 304 | |
| 305 | #ifdef TARGET_ARM |
| 306 | |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 307 | /* XXX: find a better solution */ |
| 308 | extern void tb_invalidate_page_range(target_ulong start, target_ulong end); |
| 309 | |
| 310 | static void arm_cache_flush(target_ulong start, target_ulong last) |
| 311 | { |
| 312 | target_ulong addr, last1; |
| 313 | |
| 314 | if (last < start) |
| 315 | return; |
| 316 | addr = start; |
| 317 | for(;;) { |
| 318 | last1 = ((addr + TARGET_PAGE_SIZE) & TARGET_PAGE_MASK) - 1; |
| 319 | if (last1 > last) |
| 320 | last1 = last; |
| 321 | tb_invalidate_page_range(addr, last1 + 1); |
| 322 | if (last1 == last) |
| 323 | break; |
| 324 | addr = last1 + 1; |
| 325 | } |
| 326 | } |
| 327 | |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 328 | void cpu_loop(CPUARMState *env) |
| 329 | { |
| 330 | int trapnr; |
| 331 | unsigned int n, insn; |
| 332 | target_siginfo_t info; |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 333 | uint32_t addr; |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 334 | |
| 335 | for(;;) { |
| 336 | trapnr = cpu_arm_exec(env); |
| 337 | switch(trapnr) { |
| 338 | case EXCP_UDEF: |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 339 | { |
| 340 | TaskState *ts = env->opaque; |
| 341 | uint32_t opcode; |
| 342 | |
| 343 | /* we handle the FPU emulation here, as Linux */ |
| 344 | /* we get the opcode */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 345 | opcode = tget32(env->regs[15]); |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 346 | |
pbrook | 19b045d | 2006-03-11 21:03:16 +0000 | [diff] [blame] | 347 | if (EmulateAll(opcode, &ts->fpa, env) == 0) { |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 348 | info.si_signo = SIGILL; |
| 349 | info.si_errno = 0; |
| 350 | info.si_code = TARGET_ILL_ILLOPN; |
| 351 | info._sifields._sigfault._addr = env->regs[15]; |
| 352 | queue_signal(info.si_signo, &info); |
| 353 | } else { |
| 354 | /* increment PC */ |
| 355 | env->regs[15] += 4; |
| 356 | } |
| 357 | } |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 358 | break; |
| 359 | case EXCP_SWI: |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 360 | case EXCP_BKPT: |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 361 | { |
pbrook | ce4defa | 2006-02-09 16:49:55 +0000 | [diff] [blame] | 362 | env->eabi = 1; |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 363 | /* system call */ |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 364 | if (trapnr == EXCP_BKPT) { |
| 365 | if (env->thumb) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 366 | insn = tget16(env->regs[15]); |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 367 | n = insn & 0xff; |
| 368 | env->regs[15] += 2; |
| 369 | } else { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 370 | insn = tget32(env->regs[15]); |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 371 | n = (insn & 0xf) | ((insn >> 4) & 0xff0); |
| 372 | env->regs[15] += 4; |
| 373 | } |
bellard | 192c7bd | 2005-04-27 20:11:21 +0000 | [diff] [blame] | 374 | } else { |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 375 | if (env->thumb) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 376 | insn = tget16(env->regs[15] - 2); |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 377 | n = insn & 0xff; |
| 378 | } else { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 379 | insn = tget32(env->regs[15] - 4); |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 380 | n = insn & 0xffffff; |
| 381 | } |
bellard | 192c7bd | 2005-04-27 20:11:21 +0000 | [diff] [blame] | 382 | } |
| 383 | |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 384 | if (n == ARM_NR_cacheflush) { |
| 385 | arm_cache_flush(env->regs[0], env->regs[1]); |
bellard | a4f8197 | 2005-04-23 18:25:41 +0000 | [diff] [blame] | 386 | } else if (n == ARM_NR_semihosting |
| 387 | || n == ARM_NR_thumb_semihosting) { |
| 388 | env->regs[0] = do_arm_semihosting (env); |
pbrook | ce4defa | 2006-02-09 16:49:55 +0000 | [diff] [blame] | 389 | } else if (n == 0 || n >= ARM_SYSCALL_BASE |
bellard | 192c7bd | 2005-04-27 20:11:21 +0000 | [diff] [blame] | 390 | || (env->thumb && n == ARM_THUMB_SYSCALL)) { |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 391 | /* linux syscall */ |
pbrook | ce4defa | 2006-02-09 16:49:55 +0000 | [diff] [blame] | 392 | if (env->thumb || n == 0) { |
bellard | 192c7bd | 2005-04-27 20:11:21 +0000 | [diff] [blame] | 393 | n = env->regs[7]; |
| 394 | } else { |
| 395 | n -= ARM_SYSCALL_BASE; |
pbrook | ce4defa | 2006-02-09 16:49:55 +0000 | [diff] [blame] | 396 | env->eabi = 0; |
bellard | 192c7bd | 2005-04-27 20:11:21 +0000 | [diff] [blame] | 397 | } |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 398 | env->regs[0] = do_syscall(env, |
| 399 | n, |
| 400 | env->regs[0], |
| 401 | env->regs[1], |
| 402 | env->regs[2], |
| 403 | env->regs[3], |
| 404 | env->regs[4], |
bellard | e1a2849 | 2005-04-23 18:01:57 +0000 | [diff] [blame] | 405 | env->regs[5]); |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 406 | } else { |
| 407 | goto error; |
| 408 | } |
| 409 | } |
| 410 | break; |
bellard | 43fff23 | 2003-07-09 19:31:39 +0000 | [diff] [blame] | 411 | case EXCP_INTERRUPT: |
| 412 | /* just indicate that signals should be handled asap */ |
| 413 | break; |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 414 | case EXCP_PREFETCH_ABORT: |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 415 | addr = env->cp15.c6_data; |
| 416 | goto do_segv; |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 417 | case EXCP_DATA_ABORT: |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 418 | addr = env->cp15.c6_insn; |
| 419 | goto do_segv; |
| 420 | do_segv: |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 421 | { |
| 422 | info.si_signo = SIGSEGV; |
| 423 | info.si_errno = 0; |
| 424 | /* XXX: check env->error_code */ |
| 425 | info.si_code = TARGET_SEGV_MAPERR; |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 426 | info._sifields._sigfault._addr = addr; |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 427 | queue_signal(info.si_signo, &info); |
| 428 | } |
| 429 | break; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 430 | case EXCP_DEBUG: |
| 431 | { |
| 432 | int sig; |
| 433 | |
| 434 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 435 | if (sig) |
| 436 | { |
| 437 | info.si_signo = sig; |
| 438 | info.si_errno = 0; |
| 439 | info.si_code = TARGET_TRAP_BRKPT; |
| 440 | queue_signal(info.si_signo, &info); |
| 441 | } |
| 442 | } |
| 443 | break; |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 444 | default: |
| 445 | error: |
| 446 | fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n", |
| 447 | trapnr); |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 448 | cpu_dump_state(env, stderr, fprintf, 0); |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 449 | abort(); |
| 450 | } |
| 451 | process_pending_signals(env); |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | #endif |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 456 | |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 457 | #ifdef TARGET_SPARC |
| 458 | |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 459 | //#define DEBUG_WIN |
| 460 | |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 461 | /* WARNING: dealing with register windows _is_ complicated. More info |
| 462 | can be found at http://www.sics.se/~psm/sparcstack.html */ |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 463 | static inline int get_reg_index(CPUSPARCState *env, int cwp, int index) |
| 464 | { |
| 465 | index = (index + cwp * 16) & (16 * NWINDOWS - 1); |
| 466 | /* wrap handling : if cwp is on the last window, then we use the |
| 467 | registers 'after' the end */ |
| 468 | if (index < 8 && env->cwp == (NWINDOWS - 1)) |
| 469 | index += (16 * NWINDOWS); |
| 470 | return index; |
| 471 | } |
| 472 | |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 473 | /* save the register window 'cwp1' */ |
| 474 | static inline void save_window_offset(CPUSPARCState *env, int cwp1) |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 475 | { |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 476 | unsigned int i; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 477 | target_ulong sp_ptr; |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 478 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 479 | sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)]; |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 480 | #if defined(DEBUG_WIN) |
| 481 | printf("win_overflow: sp_ptr=0x%x save_cwp=%d\n", |
| 482 | (int)sp_ptr, cwp1); |
| 483 | #endif |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 484 | for(i = 0; i < 16; i++) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 485 | tputl(sp_ptr, env->regbase[get_reg_index(env, cwp1, 8 + i)]); |
| 486 | sp_ptr += sizeof(target_ulong); |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 487 | } |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | static void save_window(CPUSPARCState *env) |
| 491 | { |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 492 | #ifndef TARGET_SPARC64 |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 493 | unsigned int new_wim; |
| 494 | new_wim = ((env->wim >> 1) | (env->wim << (NWINDOWS - 1))) & |
| 495 | ((1LL << NWINDOWS) - 1); |
| 496 | save_window_offset(env, (env->cwp - 2) & (NWINDOWS - 1)); |
| 497 | env->wim = new_wim; |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 498 | #else |
| 499 | save_window_offset(env, (env->cwp - 2) & (NWINDOWS - 1)); |
| 500 | env->cansave++; |
| 501 | env->canrestore--; |
| 502 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | static void restore_window(CPUSPARCState *env) |
| 506 | { |
| 507 | unsigned int new_wim, i, cwp1; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 508 | target_ulong sp_ptr; |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 509 | |
| 510 | new_wim = ((env->wim << 1) | (env->wim >> (NWINDOWS - 1))) & |
| 511 | ((1LL << NWINDOWS) - 1); |
| 512 | |
| 513 | /* restore the invalid window */ |
| 514 | cwp1 = (env->cwp + 1) & (NWINDOWS - 1); |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 515 | sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)]; |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 516 | #if defined(DEBUG_WIN) |
| 517 | printf("win_underflow: sp_ptr=0x%x load_cwp=%d\n", |
| 518 | (int)sp_ptr, cwp1); |
| 519 | #endif |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 520 | for(i = 0; i < 16; i++) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 521 | env->regbase[get_reg_index(env, cwp1, 8 + i)] = tgetl(sp_ptr); |
| 522 | sp_ptr += sizeof(target_ulong); |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 523 | } |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 524 | env->wim = new_wim; |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 525 | #ifdef TARGET_SPARC64 |
| 526 | env->canrestore++; |
| 527 | if (env->cleanwin < NWINDOWS - 1) |
| 528 | env->cleanwin++; |
| 529 | env->cansave--; |
| 530 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | static void flush_windows(CPUSPARCState *env) |
| 534 | { |
| 535 | int offset, cwp1; |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 536 | |
| 537 | offset = 1; |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 538 | for(;;) { |
| 539 | /* if restore would invoke restore_window(), then we can stop */ |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 540 | cwp1 = (env->cwp + offset) & (NWINDOWS - 1); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 541 | if (env->wim & (1 << cwp1)) |
| 542 | break; |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 543 | save_window_offset(env, cwp1); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 544 | offset++; |
| 545 | } |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 546 | /* set wim so that restore will reload the registers */ |
| 547 | cwp1 = (env->cwp + 1) & (NWINDOWS - 1); |
| 548 | env->wim = 1 << cwp1; |
| 549 | #if defined(DEBUG_WIN) |
| 550 | printf("flush_windows: nb=%d\n", offset - 1); |
bellard | 80a9d03 | 2005-01-03 23:31:27 +0000 | [diff] [blame] | 551 | #endif |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 552 | } |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 553 | |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 554 | void cpu_loop (CPUSPARCState *env) |
| 555 | { |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 556 | int trapnr, ret; |
bellard | 61ff6f5 | 2005-02-15 22:54:53 +0000 | [diff] [blame] | 557 | target_siginfo_t info; |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 558 | |
| 559 | while (1) { |
| 560 | trapnr = cpu_sparc_exec (env); |
| 561 | |
| 562 | switch (trapnr) { |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 563 | #ifndef TARGET_SPARC64 |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 564 | case 0x88: |
| 565 | case 0x90: |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 566 | #else |
| 567 | case 0x16d: |
| 568 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 569 | ret = do_syscall (env, env->gregs[1], |
| 570 | env->regwptr[0], env->regwptr[1], |
| 571 | env->regwptr[2], env->regwptr[3], |
| 572 | env->regwptr[4], env->regwptr[5]); |
| 573 | if ((unsigned int)ret >= (unsigned int)(-515)) { |
bellard | 2790872 | 2006-10-23 21:31:01 +0000 | [diff] [blame] | 574 | #ifdef TARGET_SPARC64 |
| 575 | env->xcc |= PSR_CARRY; |
| 576 | #else |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 577 | env->psr |= PSR_CARRY; |
bellard | 2790872 | 2006-10-23 21:31:01 +0000 | [diff] [blame] | 578 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 579 | ret = -ret; |
| 580 | } else { |
bellard | 2790872 | 2006-10-23 21:31:01 +0000 | [diff] [blame] | 581 | #ifdef TARGET_SPARC64 |
| 582 | env->xcc &= ~PSR_CARRY; |
| 583 | #else |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 584 | env->psr &= ~PSR_CARRY; |
bellard | 2790872 | 2006-10-23 21:31:01 +0000 | [diff] [blame] | 585 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 586 | } |
| 587 | env->regwptr[0] = ret; |
| 588 | /* next instruction */ |
| 589 | env->pc = env->npc; |
| 590 | env->npc = env->npc + 4; |
| 591 | break; |
| 592 | case 0x83: /* flush windows */ |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 593 | flush_windows(env); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 594 | /* next instruction */ |
| 595 | env->pc = env->npc; |
| 596 | env->npc = env->npc + 4; |
| 597 | break; |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 598 | #ifndef TARGET_SPARC64 |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 599 | case TT_WIN_OVF: /* window overflow */ |
| 600 | save_window(env); |
| 601 | break; |
| 602 | case TT_WIN_UNF: /* window underflow */ |
| 603 | restore_window(env); |
| 604 | break; |
bellard | 61ff6f5 | 2005-02-15 22:54:53 +0000 | [diff] [blame] | 605 | case TT_TFAULT: |
| 606 | case TT_DFAULT: |
| 607 | { |
| 608 | info.si_signo = SIGSEGV; |
| 609 | info.si_errno = 0; |
| 610 | /* XXX: check env->error_code */ |
| 611 | info.si_code = TARGET_SEGV_MAPERR; |
| 612 | info._sifields._sigfault._addr = env->mmuregs[4]; |
| 613 | queue_signal(info.si_signo, &info); |
| 614 | } |
| 615 | break; |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 616 | #else |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 617 | case TT_SPILL: /* window overflow */ |
| 618 | save_window(env); |
| 619 | break; |
| 620 | case TT_FILL: /* window underflow */ |
| 621 | restore_window(env); |
| 622 | break; |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 623 | // XXX |
| 624 | #endif |
bellard | 48dc41e | 2006-06-21 18:15:50 +0000 | [diff] [blame] | 625 | case EXCP_INTERRUPT: |
| 626 | /* just indicate that signals should be handled asap */ |
| 627 | break; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 628 | case EXCP_DEBUG: |
| 629 | { |
| 630 | int sig; |
| 631 | |
| 632 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 633 | if (sig) |
| 634 | { |
| 635 | info.si_signo = sig; |
| 636 | info.si_errno = 0; |
| 637 | info.si_code = TARGET_TRAP_BRKPT; |
| 638 | queue_signal(info.si_signo, &info); |
| 639 | } |
| 640 | } |
| 641 | break; |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 642 | default: |
| 643 | printf ("Unhandled trap: 0x%x\n", trapnr); |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 644 | cpu_dump_state(env, stderr, fprintf, 0); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 645 | exit (1); |
| 646 | } |
| 647 | process_pending_signals (env); |
| 648 | } |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 649 | } |
| 650 | |
| 651 | #endif |
| 652 | |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 653 | #ifdef TARGET_PPC |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 654 | |
| 655 | static inline uint64_t cpu_ppc_get_tb (CPUState *env) |
| 656 | { |
| 657 | /* TO FIX */ |
| 658 | return 0; |
| 659 | } |
| 660 | |
| 661 | uint32_t cpu_ppc_load_tbl (CPUState *env) |
| 662 | { |
| 663 | return cpu_ppc_get_tb(env) & 0xFFFFFFFF; |
| 664 | } |
| 665 | |
| 666 | uint32_t cpu_ppc_load_tbu (CPUState *env) |
| 667 | { |
| 668 | return cpu_ppc_get_tb(env) >> 32; |
| 669 | } |
| 670 | |
| 671 | static void cpu_ppc_store_tb (CPUState *env, uint64_t value) |
| 672 | { |
| 673 | /* TO FIX */ |
| 674 | } |
| 675 | |
| 676 | void cpu_ppc_store_tbu (CPUState *env, uint32_t value) |
| 677 | { |
| 678 | cpu_ppc_store_tb(env, ((uint64_t)value << 32) | cpu_ppc_load_tbl(env)); |
| 679 | } |
| 680 | |
| 681 | void cpu_ppc_store_tbl (CPUState *env, uint32_t value) |
| 682 | { |
| 683 | cpu_ppc_store_tb(env, ((uint64_t)cpu_ppc_load_tbl(env) << 32) | value); |
| 684 | } |
j_mayer | 76a6625 | 2007-03-07 08:32:30 +0000 | [diff] [blame] | 685 | |
| 686 | void cpu_ppc601_store_rtcu (CPUState *env, uint32_t value) |
| 687 | __attribute__ (( alias ("cpu_ppc_store_tbu") )); |
| 688 | |
| 689 | uint32_t cpu_ppc601_load_rtcu (CPUState *env) |
| 690 | __attribute__ (( alias ("cpu_ppc_load_tbu") )); |
| 691 | |
| 692 | void cpu_ppc601_store_rtcl (CPUState *env, uint32_t value) |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 693 | { |
j_mayer | 76a6625 | 2007-03-07 08:32:30 +0000 | [diff] [blame] | 694 | cpu_ppc_store_tbl(env, value & 0x3FFFFF80); |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 695 | } |
j_mayer | 76a6625 | 2007-03-07 08:32:30 +0000 | [diff] [blame] | 696 | |
| 697 | uint32_t cpu_ppc601_load_rtcl (CPUState *env) |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 698 | { |
j_mayer | 76a6625 | 2007-03-07 08:32:30 +0000 | [diff] [blame] | 699 | return cpu_ppc_load_tbl(env) & 0x3FFFFF80; |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 700 | } |
j_mayer | 76a6625 | 2007-03-07 08:32:30 +0000 | [diff] [blame] | 701 | |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 702 | void cpu_loop(CPUPPCState *env) |
| 703 | { |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 704 | target_siginfo_t info; |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 705 | int trapnr; |
| 706 | uint32_t ret; |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 707 | |
| 708 | for(;;) { |
| 709 | trapnr = cpu_ppc_exec(env); |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 710 | if (trapnr != EXCP_SYSCALL_USER && trapnr != EXCP_BRANCH && |
| 711 | trapnr != EXCP_TRACE) { |
| 712 | if (loglevel > 0) { |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 713 | cpu_dump_state(env, logfile, fprintf, 0); |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 714 | } |
| 715 | } |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 716 | switch(trapnr) { |
| 717 | case EXCP_NONE: |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 718 | break; |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 719 | case EXCP_SYSCALL_USER: |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 720 | /* system call */ |
| 721 | /* WARNING: |
| 722 | * PPC ABI uses overflow flag in cr0 to signal an error |
| 723 | * in syscalls. |
| 724 | */ |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 725 | #if 0 |
| 726 | printf("syscall %d 0x%08x 0x%08x 0x%08x 0x%08x\n", env->gpr[0], |
| 727 | env->gpr[3], env->gpr[4], env->gpr[5], env->gpr[6]); |
| 728 | #endif |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 729 | env->crf[0] &= ~0x1; |
| 730 | ret = do_syscall(env, env->gpr[0], env->gpr[3], env->gpr[4], |
| 731 | env->gpr[5], env->gpr[6], env->gpr[7], |
| 732 | env->gpr[8]); |
| 733 | if (ret > (uint32_t)(-515)) { |
| 734 | env->crf[0] |= 0x1; |
| 735 | ret = -ret; |
| 736 | } |
| 737 | env->gpr[3] = ret; |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 738 | #if 0 |
| 739 | printf("syscall returned 0x%08x (%d)\n", ret, ret); |
| 740 | #endif |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 741 | break; |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 742 | case EXCP_RESET: |
| 743 | /* Should not happen ! */ |
| 744 | fprintf(stderr, "RESET asked... Stop emulation\n"); |
| 745 | if (loglevel) |
| 746 | fprintf(logfile, "RESET asked... Stop emulation\n"); |
| 747 | abort(); |
| 748 | case EXCP_MACHINE_CHECK: |
| 749 | fprintf(stderr, "Machine check exeption... Stop emulation\n"); |
| 750 | if (loglevel) |
| 751 | fprintf(logfile, "RESET asked... Stop emulation\n"); |
| 752 | info.si_signo = TARGET_SIGBUS; |
| 753 | info.si_errno = 0; |
| 754 | info.si_code = TARGET_BUS_OBJERR; |
| 755 | info._sifields._sigfault._addr = env->nip - 4; |
| 756 | queue_signal(info.si_signo, &info); |
| 757 | case EXCP_DSI: |
j_mayer | e96efcf | 2007-04-14 12:17:09 +0000 | [diff] [blame] | 758 | fprintf(stderr, "Invalid data memory access: 0x" ADDRX "\n", |
bellard | 3fc6c08 | 2005-07-02 20:59:34 +0000 | [diff] [blame] | 759 | env->spr[SPR_DAR]); |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 760 | if (loglevel) { |
j_mayer | e96efcf | 2007-04-14 12:17:09 +0000 | [diff] [blame] | 761 | fprintf(logfile, "Invalid data memory access: 0x" ADDRX "\n", |
bellard | 3fc6c08 | 2005-07-02 20:59:34 +0000 | [diff] [blame] | 762 | env->spr[SPR_DAR]); |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 763 | } |
bellard | 2be0071 | 2005-07-02 22:09:27 +0000 | [diff] [blame] | 764 | switch (env->error_code & 0xFF000000) { |
| 765 | case 0x40000000: |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 766 | info.si_signo = TARGET_SIGSEGV; |
| 767 | info.si_errno = 0; |
| 768 | info.si_code = TARGET_SEGV_MAPERR; |
| 769 | break; |
bellard | 2be0071 | 2005-07-02 22:09:27 +0000 | [diff] [blame] | 770 | case 0x04000000: |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 771 | info.si_signo = TARGET_SIGILL; |
| 772 | info.si_errno = 0; |
| 773 | info.si_code = TARGET_ILL_ILLADR; |
| 774 | break; |
bellard | 2be0071 | 2005-07-02 22:09:27 +0000 | [diff] [blame] | 775 | case 0x08000000: |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 776 | info.si_signo = TARGET_SIGSEGV; |
| 777 | info.si_errno = 0; |
| 778 | info.si_code = TARGET_SEGV_ACCERR; |
| 779 | break; |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 780 | default: |
| 781 | /* Let's send a regular segfault... */ |
| 782 | fprintf(stderr, "Invalid segfault errno (%02x)\n", |
| 783 | env->error_code); |
| 784 | if (loglevel) { |
| 785 | fprintf(logfile, "Invalid segfault errno (%02x)\n", |
| 786 | env->error_code); |
| 787 | } |
| 788 | info.si_signo = TARGET_SIGSEGV; |
| 789 | info.si_errno = 0; |
| 790 | info.si_code = TARGET_SEGV_MAPERR; |
| 791 | break; |
| 792 | } |
| 793 | info._sifields._sigfault._addr = env->nip; |
| 794 | queue_signal(info.si_signo, &info); |
| 795 | break; |
| 796 | case EXCP_ISI: |
| 797 | fprintf(stderr, "Invalid instruction fetch\n"); |
| 798 | if (loglevel) |
| 799 | fprintf(logfile, "Invalid instruction fetch\n"); |
bellard | 2be0071 | 2005-07-02 22:09:27 +0000 | [diff] [blame] | 800 | switch (env->error_code & 0xFF000000) { |
| 801 | case 0x40000000: |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 802 | info.si_signo = TARGET_SIGSEGV; |
| 803 | info.si_errno = 0; |
| 804 | info.si_code = TARGET_SEGV_MAPERR; |
| 805 | break; |
bellard | 2be0071 | 2005-07-02 22:09:27 +0000 | [diff] [blame] | 806 | case 0x10000000: |
| 807 | case 0x08000000: |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 808 | info.si_signo = TARGET_SIGSEGV; |
| 809 | info.si_errno = 0; |
| 810 | info.si_code = TARGET_SEGV_ACCERR; |
| 811 | break; |
| 812 | default: |
| 813 | /* Let's send a regular segfault... */ |
| 814 | fprintf(stderr, "Invalid segfault errno (%02x)\n", |
| 815 | env->error_code); |
| 816 | if (loglevel) { |
| 817 | fprintf(logfile, "Invalid segfault errno (%02x)\n", |
| 818 | env->error_code); |
| 819 | } |
| 820 | info.si_signo = TARGET_SIGSEGV; |
| 821 | info.si_errno = 0; |
| 822 | info.si_code = TARGET_SEGV_MAPERR; |
| 823 | break; |
| 824 | } |
| 825 | info._sifields._sigfault._addr = env->nip - 4; |
| 826 | queue_signal(info.si_signo, &info); |
| 827 | break; |
| 828 | case EXCP_EXTERNAL: |
| 829 | /* Should not happen ! */ |
| 830 | fprintf(stderr, "External interruption... Stop emulation\n"); |
| 831 | if (loglevel) |
| 832 | fprintf(logfile, "External interruption... Stop emulation\n"); |
| 833 | abort(); |
| 834 | case EXCP_ALIGN: |
| 835 | fprintf(stderr, "Invalid unaligned memory access\n"); |
| 836 | if (loglevel) |
| 837 | fprintf(logfile, "Invalid unaligned memory access\n"); |
| 838 | info.si_signo = TARGET_SIGBUS; |
| 839 | info.si_errno = 0; |
| 840 | info.si_code = TARGET_BUS_ADRALN; |
| 841 | info._sifields._sigfault._addr = env->nip - 4; |
| 842 | queue_signal(info.si_signo, &info); |
| 843 | break; |
| 844 | case EXCP_PROGRAM: |
| 845 | switch (env->error_code & ~0xF) { |
| 846 | case EXCP_FP: |
| 847 | fprintf(stderr, "Program exception\n"); |
| 848 | if (loglevel) |
| 849 | fprintf(logfile, "Program exception\n"); |
| 850 | /* Set FX */ |
| 851 | env->fpscr[7] |= 0x8; |
| 852 | /* Finally, update FEX */ |
| 853 | if ((((env->fpscr[7] & 0x3) << 3) | (env->fpscr[6] >> 1)) & |
| 854 | ((env->fpscr[1] << 1) | (env->fpscr[0] >> 3))) |
| 855 | env->fpscr[7] |= 0x4; |
| 856 | info.si_signo = TARGET_SIGFPE; |
| 857 | info.si_errno = 0; |
| 858 | switch (env->error_code & 0xF) { |
| 859 | case EXCP_FP_OX: |
| 860 | info.si_code = TARGET_FPE_FLTOVF; |
| 861 | break; |
| 862 | case EXCP_FP_UX: |
| 863 | info.si_code = TARGET_FPE_FLTUND; |
| 864 | break; |
| 865 | case EXCP_FP_ZX: |
| 866 | case EXCP_FP_VXZDZ: |
| 867 | info.si_code = TARGET_FPE_FLTDIV; |
| 868 | break; |
| 869 | case EXCP_FP_XX: |
| 870 | info.si_code = TARGET_FPE_FLTRES; |
| 871 | break; |
| 872 | case EXCP_FP_VXSOFT: |
| 873 | info.si_code = TARGET_FPE_FLTINV; |
| 874 | break; |
| 875 | case EXCP_FP_VXNAN: |
| 876 | case EXCP_FP_VXISI: |
| 877 | case EXCP_FP_VXIDI: |
| 878 | case EXCP_FP_VXIMZ: |
| 879 | case EXCP_FP_VXVC: |
| 880 | case EXCP_FP_VXSQRT: |
| 881 | case EXCP_FP_VXCVI: |
| 882 | info.si_code = TARGET_FPE_FLTSUB; |
| 883 | break; |
| 884 | default: |
| 885 | fprintf(stderr, "Unknown floating point exception " |
| 886 | "(%02x)\n", env->error_code); |
| 887 | if (loglevel) { |
| 888 | fprintf(logfile, "Unknown floating point exception " |
| 889 | "(%02x)\n", env->error_code & 0xF); |
| 890 | } |
| 891 | } |
| 892 | break; |
| 893 | case EXCP_INVAL: |
| 894 | fprintf(stderr, "Invalid instruction\n"); |
| 895 | if (loglevel) |
| 896 | fprintf(logfile, "Invalid instruction\n"); |
| 897 | info.si_signo = TARGET_SIGILL; |
| 898 | info.si_errno = 0; |
| 899 | switch (env->error_code & 0xF) { |
| 900 | case EXCP_INVAL_INVAL: |
| 901 | info.si_code = TARGET_ILL_ILLOPC; |
| 902 | break; |
| 903 | case EXCP_INVAL_LSWX: |
| 904 | info.si_code = TARGET_ILL_ILLOPN; |
| 905 | break; |
| 906 | case EXCP_INVAL_SPR: |
| 907 | info.si_code = TARGET_ILL_PRVREG; |
| 908 | break; |
| 909 | case EXCP_INVAL_FP: |
| 910 | info.si_code = TARGET_ILL_COPROC; |
| 911 | break; |
| 912 | default: |
| 913 | fprintf(stderr, "Unknown invalid operation (%02x)\n", |
| 914 | env->error_code & 0xF); |
| 915 | if (loglevel) { |
| 916 | fprintf(logfile, "Unknown invalid operation (%02x)\n", |
| 917 | env->error_code & 0xF); |
| 918 | } |
| 919 | info.si_code = TARGET_ILL_ILLADR; |
| 920 | break; |
| 921 | } |
| 922 | break; |
| 923 | case EXCP_PRIV: |
| 924 | fprintf(stderr, "Privilege violation\n"); |
| 925 | if (loglevel) |
| 926 | fprintf(logfile, "Privilege violation\n"); |
| 927 | info.si_signo = TARGET_SIGILL; |
| 928 | info.si_errno = 0; |
| 929 | switch (env->error_code & 0xF) { |
| 930 | case EXCP_PRIV_OPC: |
| 931 | info.si_code = TARGET_ILL_PRVOPC; |
| 932 | break; |
| 933 | case EXCP_PRIV_REG: |
| 934 | info.si_code = TARGET_ILL_PRVREG; |
| 935 | break; |
| 936 | default: |
| 937 | fprintf(stderr, "Unknown privilege violation (%02x)\n", |
| 938 | env->error_code & 0xF); |
| 939 | info.si_code = TARGET_ILL_PRVOPC; |
| 940 | break; |
| 941 | } |
| 942 | break; |
| 943 | case EXCP_TRAP: |
| 944 | fprintf(stderr, "Tried to call a TRAP\n"); |
| 945 | if (loglevel) |
| 946 | fprintf(logfile, "Tried to call a TRAP\n"); |
| 947 | abort(); |
| 948 | default: |
| 949 | /* Should not happen ! */ |
| 950 | fprintf(stderr, "Unknown program exception (%02x)\n", |
| 951 | env->error_code); |
| 952 | if (loglevel) { |
| 953 | fprintf(logfile, "Unknwon program exception (%02x)\n", |
| 954 | env->error_code); |
| 955 | } |
| 956 | abort(); |
| 957 | } |
| 958 | info._sifields._sigfault._addr = env->nip - 4; |
| 959 | queue_signal(info.si_signo, &info); |
| 960 | break; |
| 961 | case EXCP_NO_FP: |
| 962 | fprintf(stderr, "No floating point allowed\n"); |
| 963 | if (loglevel) |
| 964 | fprintf(logfile, "No floating point allowed\n"); |
| 965 | info.si_signo = TARGET_SIGILL; |
| 966 | info.si_errno = 0; |
| 967 | info.si_code = TARGET_ILL_COPROC; |
| 968 | info._sifields._sigfault._addr = env->nip - 4; |
| 969 | queue_signal(info.si_signo, &info); |
| 970 | break; |
| 971 | case EXCP_DECR: |
| 972 | /* Should not happen ! */ |
| 973 | fprintf(stderr, "Decrementer exception\n"); |
| 974 | if (loglevel) |
| 975 | fprintf(logfile, "Decrementer exception\n"); |
| 976 | abort(); |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 977 | case EXCP_TRACE: |
| 978 | /* Do nothing: we use this to trace execution */ |
| 979 | break; |
| 980 | case EXCP_FP_ASSIST: |
| 981 | /* Should not happen ! */ |
| 982 | fprintf(stderr, "Floating point assist exception\n"); |
| 983 | if (loglevel) |
| 984 | fprintf(logfile, "Floating point assist exception\n"); |
| 985 | abort(); |
| 986 | case EXCP_MTMSR: |
| 987 | /* We reloaded the msr, just go on */ |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 988 | if (msr_pr == 0) { |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 989 | fprintf(stderr, "Tried to go into supervisor mode !\n"); |
| 990 | if (loglevel) |
| 991 | fprintf(logfile, "Tried to go into supervisor mode !\n"); |
| 992 | abort(); |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 993 | } |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 994 | break; |
| 995 | case EXCP_BRANCH: |
| 996 | /* We stopped because of a jump... */ |
| 997 | break; |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 998 | case EXCP_INTERRUPT: |
| 999 | /* Don't know why this should ever happen... */ |
| 1000 | break; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1001 | case EXCP_DEBUG: |
| 1002 | { |
| 1003 | int sig; |
| 1004 | |
| 1005 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 1006 | if (sig) |
| 1007 | { |
| 1008 | info.si_signo = sig; |
| 1009 | info.si_errno = 0; |
| 1010 | info.si_code = TARGET_TRAP_BRKPT; |
| 1011 | queue_signal(info.si_signo, &info); |
| 1012 | } |
| 1013 | } |
| 1014 | break; |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1015 | default: |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1016 | fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n", |
| 1017 | trapnr); |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 1018 | if (loglevel) { |
| 1019 | fprintf(logfile, "qemu: unhandled CPU exception 0x%02x - " |
| 1020 | "0x%02x - aborting\n", trapnr, env->error_code); |
| 1021 | } |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1022 | abort(); |
| 1023 | } |
| 1024 | process_pending_signals(env); |
| 1025 | } |
| 1026 | } |
| 1027 | #endif |
| 1028 | |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1029 | #ifdef TARGET_MIPS |
| 1030 | |
| 1031 | #define MIPS_SYS(name, args) args, |
| 1032 | |
| 1033 | static const uint8_t mips_syscall_args[] = { |
| 1034 | MIPS_SYS(sys_syscall , 0) /* 4000 */ |
| 1035 | MIPS_SYS(sys_exit , 1) |
| 1036 | MIPS_SYS(sys_fork , 0) |
| 1037 | MIPS_SYS(sys_read , 3) |
| 1038 | MIPS_SYS(sys_write , 3) |
| 1039 | MIPS_SYS(sys_open , 3) /* 4005 */ |
| 1040 | MIPS_SYS(sys_close , 1) |
| 1041 | MIPS_SYS(sys_waitpid , 3) |
| 1042 | MIPS_SYS(sys_creat , 2) |
| 1043 | MIPS_SYS(sys_link , 2) |
| 1044 | MIPS_SYS(sys_unlink , 1) /* 4010 */ |
| 1045 | MIPS_SYS(sys_execve , 0) |
| 1046 | MIPS_SYS(sys_chdir , 1) |
| 1047 | MIPS_SYS(sys_time , 1) |
| 1048 | MIPS_SYS(sys_mknod , 3) |
| 1049 | MIPS_SYS(sys_chmod , 2) /* 4015 */ |
| 1050 | MIPS_SYS(sys_lchown , 3) |
| 1051 | MIPS_SYS(sys_ni_syscall , 0) |
| 1052 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_stat */ |
| 1053 | MIPS_SYS(sys_lseek , 3) |
| 1054 | MIPS_SYS(sys_getpid , 0) /* 4020 */ |
| 1055 | MIPS_SYS(sys_mount , 5) |
| 1056 | MIPS_SYS(sys_oldumount , 1) |
| 1057 | MIPS_SYS(sys_setuid , 1) |
| 1058 | MIPS_SYS(sys_getuid , 0) |
| 1059 | MIPS_SYS(sys_stime , 1) /* 4025 */ |
| 1060 | MIPS_SYS(sys_ptrace , 4) |
| 1061 | MIPS_SYS(sys_alarm , 1) |
| 1062 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_fstat */ |
| 1063 | MIPS_SYS(sys_pause , 0) |
| 1064 | MIPS_SYS(sys_utime , 2) /* 4030 */ |
| 1065 | MIPS_SYS(sys_ni_syscall , 0) |
| 1066 | MIPS_SYS(sys_ni_syscall , 0) |
| 1067 | MIPS_SYS(sys_access , 2) |
| 1068 | MIPS_SYS(sys_nice , 1) |
| 1069 | MIPS_SYS(sys_ni_syscall , 0) /* 4035 */ |
| 1070 | MIPS_SYS(sys_sync , 0) |
| 1071 | MIPS_SYS(sys_kill , 2) |
| 1072 | MIPS_SYS(sys_rename , 2) |
| 1073 | MIPS_SYS(sys_mkdir , 2) |
| 1074 | MIPS_SYS(sys_rmdir , 1) /* 4040 */ |
| 1075 | MIPS_SYS(sys_dup , 1) |
| 1076 | MIPS_SYS(sys_pipe , 0) |
| 1077 | MIPS_SYS(sys_times , 1) |
| 1078 | MIPS_SYS(sys_ni_syscall , 0) |
| 1079 | MIPS_SYS(sys_brk , 1) /* 4045 */ |
| 1080 | MIPS_SYS(sys_setgid , 1) |
| 1081 | MIPS_SYS(sys_getgid , 0) |
| 1082 | MIPS_SYS(sys_ni_syscall , 0) /* was signal(2) */ |
| 1083 | MIPS_SYS(sys_geteuid , 0) |
| 1084 | MIPS_SYS(sys_getegid , 0) /* 4050 */ |
| 1085 | MIPS_SYS(sys_acct , 0) |
| 1086 | MIPS_SYS(sys_umount , 2) |
| 1087 | MIPS_SYS(sys_ni_syscall , 0) |
| 1088 | MIPS_SYS(sys_ioctl , 3) |
| 1089 | MIPS_SYS(sys_fcntl , 3) /* 4055 */ |
| 1090 | MIPS_SYS(sys_ni_syscall , 2) |
| 1091 | MIPS_SYS(sys_setpgid , 2) |
| 1092 | MIPS_SYS(sys_ni_syscall , 0) |
| 1093 | MIPS_SYS(sys_olduname , 1) |
| 1094 | MIPS_SYS(sys_umask , 1) /* 4060 */ |
| 1095 | MIPS_SYS(sys_chroot , 1) |
| 1096 | MIPS_SYS(sys_ustat , 2) |
| 1097 | MIPS_SYS(sys_dup2 , 2) |
| 1098 | MIPS_SYS(sys_getppid , 0) |
| 1099 | MIPS_SYS(sys_getpgrp , 0) /* 4065 */ |
| 1100 | MIPS_SYS(sys_setsid , 0) |
| 1101 | MIPS_SYS(sys_sigaction , 3) |
| 1102 | MIPS_SYS(sys_sgetmask , 0) |
| 1103 | MIPS_SYS(sys_ssetmask , 1) |
| 1104 | MIPS_SYS(sys_setreuid , 2) /* 4070 */ |
| 1105 | MIPS_SYS(sys_setregid , 2) |
| 1106 | MIPS_SYS(sys_sigsuspend , 0) |
| 1107 | MIPS_SYS(sys_sigpending , 1) |
| 1108 | MIPS_SYS(sys_sethostname , 2) |
| 1109 | MIPS_SYS(sys_setrlimit , 2) /* 4075 */ |
| 1110 | MIPS_SYS(sys_getrlimit , 2) |
| 1111 | MIPS_SYS(sys_getrusage , 2) |
| 1112 | MIPS_SYS(sys_gettimeofday, 2) |
| 1113 | MIPS_SYS(sys_settimeofday, 2) |
| 1114 | MIPS_SYS(sys_getgroups , 2) /* 4080 */ |
| 1115 | MIPS_SYS(sys_setgroups , 2) |
| 1116 | MIPS_SYS(sys_ni_syscall , 0) /* old_select */ |
| 1117 | MIPS_SYS(sys_symlink , 2) |
| 1118 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_lstat */ |
| 1119 | MIPS_SYS(sys_readlink , 3) /* 4085 */ |
| 1120 | MIPS_SYS(sys_uselib , 1) |
| 1121 | MIPS_SYS(sys_swapon , 2) |
| 1122 | MIPS_SYS(sys_reboot , 3) |
| 1123 | MIPS_SYS(old_readdir , 3) |
| 1124 | MIPS_SYS(old_mmap , 6) /* 4090 */ |
| 1125 | MIPS_SYS(sys_munmap , 2) |
| 1126 | MIPS_SYS(sys_truncate , 2) |
| 1127 | MIPS_SYS(sys_ftruncate , 2) |
| 1128 | MIPS_SYS(sys_fchmod , 2) |
| 1129 | MIPS_SYS(sys_fchown , 3) /* 4095 */ |
| 1130 | MIPS_SYS(sys_getpriority , 2) |
| 1131 | MIPS_SYS(sys_setpriority , 3) |
| 1132 | MIPS_SYS(sys_ni_syscall , 0) |
| 1133 | MIPS_SYS(sys_statfs , 2) |
| 1134 | MIPS_SYS(sys_fstatfs , 2) /* 4100 */ |
| 1135 | MIPS_SYS(sys_ni_syscall , 0) /* was ioperm(2) */ |
| 1136 | MIPS_SYS(sys_socketcall , 2) |
| 1137 | MIPS_SYS(sys_syslog , 3) |
| 1138 | MIPS_SYS(sys_setitimer , 3) |
| 1139 | MIPS_SYS(sys_getitimer , 2) /* 4105 */ |
| 1140 | MIPS_SYS(sys_newstat , 2) |
| 1141 | MIPS_SYS(sys_newlstat , 2) |
| 1142 | MIPS_SYS(sys_newfstat , 2) |
| 1143 | MIPS_SYS(sys_uname , 1) |
| 1144 | MIPS_SYS(sys_ni_syscall , 0) /* 4110 was iopl(2) */ |
| 1145 | MIPS_SYS(sys_vhangup , 0) |
| 1146 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_idle() */ |
| 1147 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_vm86 */ |
| 1148 | MIPS_SYS(sys_wait4 , 4) |
| 1149 | MIPS_SYS(sys_swapoff , 1) /* 4115 */ |
| 1150 | MIPS_SYS(sys_sysinfo , 1) |
| 1151 | MIPS_SYS(sys_ipc , 6) |
| 1152 | MIPS_SYS(sys_fsync , 1) |
| 1153 | MIPS_SYS(sys_sigreturn , 0) |
| 1154 | MIPS_SYS(sys_clone , 0) /* 4120 */ |
| 1155 | MIPS_SYS(sys_setdomainname, 2) |
| 1156 | MIPS_SYS(sys_newuname , 1) |
| 1157 | MIPS_SYS(sys_ni_syscall , 0) /* sys_modify_ldt */ |
| 1158 | MIPS_SYS(sys_adjtimex , 1) |
| 1159 | MIPS_SYS(sys_mprotect , 3) /* 4125 */ |
| 1160 | MIPS_SYS(sys_sigprocmask , 3) |
| 1161 | MIPS_SYS(sys_ni_syscall , 0) /* was create_module */ |
| 1162 | MIPS_SYS(sys_init_module , 5) |
| 1163 | MIPS_SYS(sys_delete_module, 1) |
| 1164 | MIPS_SYS(sys_ni_syscall , 0) /* 4130 was get_kernel_syms */ |
| 1165 | MIPS_SYS(sys_quotactl , 0) |
| 1166 | MIPS_SYS(sys_getpgid , 1) |
| 1167 | MIPS_SYS(sys_fchdir , 1) |
| 1168 | MIPS_SYS(sys_bdflush , 2) |
| 1169 | MIPS_SYS(sys_sysfs , 3) /* 4135 */ |
| 1170 | MIPS_SYS(sys_personality , 1) |
| 1171 | MIPS_SYS(sys_ni_syscall , 0) /* for afs_syscall */ |
| 1172 | MIPS_SYS(sys_setfsuid , 1) |
| 1173 | MIPS_SYS(sys_setfsgid , 1) |
| 1174 | MIPS_SYS(sys_llseek , 5) /* 4140 */ |
| 1175 | MIPS_SYS(sys_getdents , 3) |
| 1176 | MIPS_SYS(sys_select , 5) |
| 1177 | MIPS_SYS(sys_flock , 2) |
| 1178 | MIPS_SYS(sys_msync , 3) |
| 1179 | MIPS_SYS(sys_readv , 3) /* 4145 */ |
| 1180 | MIPS_SYS(sys_writev , 3) |
| 1181 | MIPS_SYS(sys_cacheflush , 3) |
| 1182 | MIPS_SYS(sys_cachectl , 3) |
| 1183 | MIPS_SYS(sys_sysmips , 4) |
| 1184 | MIPS_SYS(sys_ni_syscall , 0) /* 4150 */ |
| 1185 | MIPS_SYS(sys_getsid , 1) |
| 1186 | MIPS_SYS(sys_fdatasync , 0) |
| 1187 | MIPS_SYS(sys_sysctl , 1) |
| 1188 | MIPS_SYS(sys_mlock , 2) |
| 1189 | MIPS_SYS(sys_munlock , 2) /* 4155 */ |
| 1190 | MIPS_SYS(sys_mlockall , 1) |
| 1191 | MIPS_SYS(sys_munlockall , 0) |
| 1192 | MIPS_SYS(sys_sched_setparam, 2) |
| 1193 | MIPS_SYS(sys_sched_getparam, 2) |
| 1194 | MIPS_SYS(sys_sched_setscheduler, 3) /* 4160 */ |
| 1195 | MIPS_SYS(sys_sched_getscheduler, 1) |
| 1196 | MIPS_SYS(sys_sched_yield , 0) |
| 1197 | MIPS_SYS(sys_sched_get_priority_max, 1) |
| 1198 | MIPS_SYS(sys_sched_get_priority_min, 1) |
| 1199 | MIPS_SYS(sys_sched_rr_get_interval, 2) /* 4165 */ |
| 1200 | MIPS_SYS(sys_nanosleep, 2) |
| 1201 | MIPS_SYS(sys_mremap , 4) |
| 1202 | MIPS_SYS(sys_accept , 3) |
| 1203 | MIPS_SYS(sys_bind , 3) |
| 1204 | MIPS_SYS(sys_connect , 3) /* 4170 */ |
| 1205 | MIPS_SYS(sys_getpeername , 3) |
| 1206 | MIPS_SYS(sys_getsockname , 3) |
| 1207 | MIPS_SYS(sys_getsockopt , 5) |
| 1208 | MIPS_SYS(sys_listen , 2) |
| 1209 | MIPS_SYS(sys_recv , 4) /* 4175 */ |
| 1210 | MIPS_SYS(sys_recvfrom , 6) |
| 1211 | MIPS_SYS(sys_recvmsg , 3) |
| 1212 | MIPS_SYS(sys_send , 4) |
| 1213 | MIPS_SYS(sys_sendmsg , 3) |
| 1214 | MIPS_SYS(sys_sendto , 6) /* 4180 */ |
| 1215 | MIPS_SYS(sys_setsockopt , 5) |
| 1216 | MIPS_SYS(sys_shutdown , 2) |
| 1217 | MIPS_SYS(sys_socket , 3) |
| 1218 | MIPS_SYS(sys_socketpair , 4) |
| 1219 | MIPS_SYS(sys_setresuid , 3) /* 4185 */ |
| 1220 | MIPS_SYS(sys_getresuid , 3) |
| 1221 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_query_module */ |
| 1222 | MIPS_SYS(sys_poll , 3) |
| 1223 | MIPS_SYS(sys_nfsservctl , 3) |
| 1224 | MIPS_SYS(sys_setresgid , 3) /* 4190 */ |
| 1225 | MIPS_SYS(sys_getresgid , 3) |
| 1226 | MIPS_SYS(sys_prctl , 5) |
| 1227 | MIPS_SYS(sys_rt_sigreturn, 0) |
| 1228 | MIPS_SYS(sys_rt_sigaction, 4) |
| 1229 | MIPS_SYS(sys_rt_sigprocmask, 4) /* 4195 */ |
| 1230 | MIPS_SYS(sys_rt_sigpending, 2) |
| 1231 | MIPS_SYS(sys_rt_sigtimedwait, 4) |
| 1232 | MIPS_SYS(sys_rt_sigqueueinfo, 3) |
| 1233 | MIPS_SYS(sys_rt_sigsuspend, 0) |
| 1234 | MIPS_SYS(sys_pread64 , 6) /* 4200 */ |
| 1235 | MIPS_SYS(sys_pwrite64 , 6) |
| 1236 | MIPS_SYS(sys_chown , 3) |
| 1237 | MIPS_SYS(sys_getcwd , 2) |
| 1238 | MIPS_SYS(sys_capget , 2) |
| 1239 | MIPS_SYS(sys_capset , 2) /* 4205 */ |
| 1240 | MIPS_SYS(sys_sigaltstack , 0) |
| 1241 | MIPS_SYS(sys_sendfile , 4) |
| 1242 | MIPS_SYS(sys_ni_syscall , 0) |
| 1243 | MIPS_SYS(sys_ni_syscall , 0) |
| 1244 | MIPS_SYS(sys_mmap2 , 6) /* 4210 */ |
| 1245 | MIPS_SYS(sys_truncate64 , 4) |
| 1246 | MIPS_SYS(sys_ftruncate64 , 4) |
| 1247 | MIPS_SYS(sys_stat64 , 2) |
| 1248 | MIPS_SYS(sys_lstat64 , 2) |
| 1249 | MIPS_SYS(sys_fstat64 , 2) /* 4215 */ |
| 1250 | MIPS_SYS(sys_pivot_root , 2) |
| 1251 | MIPS_SYS(sys_mincore , 3) |
| 1252 | MIPS_SYS(sys_madvise , 3) |
| 1253 | MIPS_SYS(sys_getdents64 , 3) |
| 1254 | MIPS_SYS(sys_fcntl64 , 3) /* 4220 */ |
| 1255 | MIPS_SYS(sys_ni_syscall , 0) |
| 1256 | MIPS_SYS(sys_gettid , 0) |
| 1257 | MIPS_SYS(sys_readahead , 5) |
| 1258 | MIPS_SYS(sys_setxattr , 5) |
| 1259 | MIPS_SYS(sys_lsetxattr , 5) /* 4225 */ |
| 1260 | MIPS_SYS(sys_fsetxattr , 5) |
| 1261 | MIPS_SYS(sys_getxattr , 4) |
| 1262 | MIPS_SYS(sys_lgetxattr , 4) |
| 1263 | MIPS_SYS(sys_fgetxattr , 4) |
| 1264 | MIPS_SYS(sys_listxattr , 3) /* 4230 */ |
| 1265 | MIPS_SYS(sys_llistxattr , 3) |
| 1266 | MIPS_SYS(sys_flistxattr , 3) |
| 1267 | MIPS_SYS(sys_removexattr , 2) |
| 1268 | MIPS_SYS(sys_lremovexattr, 2) |
| 1269 | MIPS_SYS(sys_fremovexattr, 2) /* 4235 */ |
| 1270 | MIPS_SYS(sys_tkill , 2) |
| 1271 | MIPS_SYS(sys_sendfile64 , 5) |
| 1272 | MIPS_SYS(sys_futex , 2) |
| 1273 | MIPS_SYS(sys_sched_setaffinity, 3) |
| 1274 | MIPS_SYS(sys_sched_getaffinity, 3) /* 4240 */ |
| 1275 | MIPS_SYS(sys_io_setup , 2) |
| 1276 | MIPS_SYS(sys_io_destroy , 1) |
| 1277 | MIPS_SYS(sys_io_getevents, 5) |
| 1278 | MIPS_SYS(sys_io_submit , 3) |
| 1279 | MIPS_SYS(sys_io_cancel , 3) /* 4245 */ |
| 1280 | MIPS_SYS(sys_exit_group , 1) |
| 1281 | MIPS_SYS(sys_lookup_dcookie, 3) |
| 1282 | MIPS_SYS(sys_epoll_create, 1) |
| 1283 | MIPS_SYS(sys_epoll_ctl , 4) |
| 1284 | MIPS_SYS(sys_epoll_wait , 3) /* 4250 */ |
| 1285 | MIPS_SYS(sys_remap_file_pages, 5) |
| 1286 | MIPS_SYS(sys_set_tid_address, 1) |
| 1287 | MIPS_SYS(sys_restart_syscall, 0) |
| 1288 | MIPS_SYS(sys_fadvise64_64, 7) |
| 1289 | MIPS_SYS(sys_statfs64 , 3) /* 4255 */ |
| 1290 | MIPS_SYS(sys_fstatfs64 , 2) |
| 1291 | MIPS_SYS(sys_timer_create, 3) |
| 1292 | MIPS_SYS(sys_timer_settime, 4) |
| 1293 | MIPS_SYS(sys_timer_gettime, 2) |
| 1294 | MIPS_SYS(sys_timer_getoverrun, 1) /* 4260 */ |
| 1295 | MIPS_SYS(sys_timer_delete, 1) |
| 1296 | MIPS_SYS(sys_clock_settime, 2) |
| 1297 | MIPS_SYS(sys_clock_gettime, 2) |
| 1298 | MIPS_SYS(sys_clock_getres, 2) |
| 1299 | MIPS_SYS(sys_clock_nanosleep, 4) /* 4265 */ |
| 1300 | MIPS_SYS(sys_tgkill , 3) |
| 1301 | MIPS_SYS(sys_utimes , 2) |
| 1302 | MIPS_SYS(sys_mbind , 4) |
| 1303 | MIPS_SYS(sys_ni_syscall , 0) /* sys_get_mempolicy */ |
| 1304 | MIPS_SYS(sys_ni_syscall , 0) /* 4270 sys_set_mempolicy */ |
| 1305 | MIPS_SYS(sys_mq_open , 4) |
| 1306 | MIPS_SYS(sys_mq_unlink , 1) |
| 1307 | MIPS_SYS(sys_mq_timedsend, 5) |
| 1308 | MIPS_SYS(sys_mq_timedreceive, 5) |
| 1309 | MIPS_SYS(sys_mq_notify , 2) /* 4275 */ |
| 1310 | MIPS_SYS(sys_mq_getsetattr, 3) |
| 1311 | MIPS_SYS(sys_ni_syscall , 0) /* sys_vserver */ |
| 1312 | MIPS_SYS(sys_waitid , 4) |
| 1313 | MIPS_SYS(sys_ni_syscall , 0) /* available, was setaltroot */ |
| 1314 | MIPS_SYS(sys_add_key , 5) |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1315 | MIPS_SYS(sys_request_key, 4) |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1316 | MIPS_SYS(sys_keyctl , 5) |
ths | 6f5b89a | 2007-03-02 20:48:00 +0000 | [diff] [blame] | 1317 | MIPS_SYS(sys_set_thread_area, 1) |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1318 | MIPS_SYS(sys_inotify_init, 0) |
| 1319 | MIPS_SYS(sys_inotify_add_watch, 3) /* 4285 */ |
| 1320 | MIPS_SYS(sys_inotify_rm_watch, 2) |
| 1321 | MIPS_SYS(sys_migrate_pages, 4) |
| 1322 | MIPS_SYS(sys_openat, 4) |
| 1323 | MIPS_SYS(sys_mkdirat, 3) |
| 1324 | MIPS_SYS(sys_mknodat, 4) /* 4290 */ |
| 1325 | MIPS_SYS(sys_fchownat, 5) |
| 1326 | MIPS_SYS(sys_futimesat, 3) |
| 1327 | MIPS_SYS(sys_fstatat64, 4) |
| 1328 | MIPS_SYS(sys_unlinkat, 3) |
| 1329 | MIPS_SYS(sys_renameat, 4) /* 4295 */ |
| 1330 | MIPS_SYS(sys_linkat, 5) |
| 1331 | MIPS_SYS(sys_symlinkat, 3) |
| 1332 | MIPS_SYS(sys_readlinkat, 4) |
| 1333 | MIPS_SYS(sys_fchmodat, 3) |
| 1334 | MIPS_SYS(sys_faccessat, 3) /* 4300 */ |
| 1335 | MIPS_SYS(sys_pselect6, 6) |
| 1336 | MIPS_SYS(sys_ppoll, 5) |
| 1337 | MIPS_SYS(sys_unshare, 1) |
| 1338 | MIPS_SYS(sys_splice, 4) |
| 1339 | MIPS_SYS(sys_sync_file_range, 7) /* 4305 */ |
| 1340 | MIPS_SYS(sys_tee, 4) |
| 1341 | MIPS_SYS(sys_vmsplice, 4) |
| 1342 | MIPS_SYS(sys_move_pages, 6) |
| 1343 | MIPS_SYS(sys_set_robust_list, 2) |
| 1344 | MIPS_SYS(sys_get_robust_list, 3) /* 4310 */ |
| 1345 | MIPS_SYS(sys_kexec_load, 4) |
| 1346 | MIPS_SYS(sys_getcpu, 3) |
| 1347 | MIPS_SYS(sys_epoll_pwait, 6) |
| 1348 | MIPS_SYS(sys_ioprio_set, 3) |
| 1349 | MIPS_SYS(sys_ioprio_get, 2) |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1350 | }; |
| 1351 | |
| 1352 | #undef MIPS_SYS |
| 1353 | |
| 1354 | void cpu_loop(CPUMIPSState *env) |
| 1355 | { |
| 1356 | target_siginfo_t info; |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1357 | int trapnr, ret; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1358 | unsigned int syscall_num; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1359 | |
| 1360 | for(;;) { |
| 1361 | trapnr = cpu_mips_exec(env); |
| 1362 | switch(trapnr) { |
| 1363 | case EXCP_SYSCALL: |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1364 | syscall_num = env->gpr[2] - 4000; |
| 1365 | env->PC += 4; |
| 1366 | if (syscall_num >= sizeof(mips_syscall_args)) { |
| 1367 | ret = -ENOSYS; |
| 1368 | } else { |
| 1369 | int nb_args; |
| 1370 | target_ulong sp_reg; |
| 1371 | target_ulong arg5 = 0, arg6 = 0, arg7 = 0, arg8 = 0; |
| 1372 | |
| 1373 | nb_args = mips_syscall_args[syscall_num]; |
| 1374 | sp_reg = env->gpr[29]; |
| 1375 | switch (nb_args) { |
| 1376 | /* these arguments are taken from the stack */ |
| 1377 | case 8: arg8 = tgetl(sp_reg + 28); |
| 1378 | case 7: arg7 = tgetl(sp_reg + 24); |
| 1379 | case 6: arg6 = tgetl(sp_reg + 20); |
| 1380 | case 5: arg5 = tgetl(sp_reg + 16); |
| 1381 | default: |
| 1382 | break; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1383 | } |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1384 | ret = do_syscall(env, env->gpr[2], |
| 1385 | env->gpr[4], env->gpr[5], |
| 1386 | env->gpr[6], env->gpr[7], |
| 1387 | arg5, arg6/*, arg7, arg8*/); |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1388 | } |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1389 | if ((unsigned int)ret >= (unsigned int)(-1133)) { |
| 1390 | env->gpr[7] = 1; /* error flag */ |
| 1391 | ret = -ret; |
| 1392 | } else { |
| 1393 | env->gpr[7] = 0; /* error flag */ |
| 1394 | } |
| 1395 | env->gpr[2] = ret; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1396 | break; |
ths | ca7c2b1 | 2006-12-10 22:08:10 +0000 | [diff] [blame] | 1397 | case EXCP_TLBL: |
| 1398 | case EXCP_TLBS: |
bellard | 6900e84 | 2005-12-05 21:04:24 +0000 | [diff] [blame] | 1399 | case EXCP_CpU: |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1400 | case EXCP_RI: |
bellard | bc1ad2d | 2006-06-14 13:37:55 +0000 | [diff] [blame] | 1401 | info.si_signo = TARGET_SIGILL; |
| 1402 | info.si_errno = 0; |
| 1403 | info.si_code = 0; |
| 1404 | queue_signal(info.si_signo, &info); |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1405 | break; |
bellard | 106ec87 | 2006-06-27 21:08:10 +0000 | [diff] [blame] | 1406 | case EXCP_INTERRUPT: |
| 1407 | /* just indicate that signals should be handled asap */ |
| 1408 | break; |
pbrook | d08b2a2 | 2006-11-04 16:46:29 +0000 | [diff] [blame] | 1409 | case EXCP_DEBUG: |
| 1410 | { |
| 1411 | int sig; |
| 1412 | |
| 1413 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 1414 | if (sig) |
| 1415 | { |
| 1416 | info.si_signo = sig; |
| 1417 | info.si_errno = 0; |
| 1418 | info.si_code = TARGET_TRAP_BRKPT; |
| 1419 | queue_signal(info.si_signo, &info); |
| 1420 | } |
| 1421 | } |
| 1422 | break; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1423 | default: |
| 1424 | // error: |
| 1425 | fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n", |
| 1426 | trapnr); |
| 1427 | cpu_dump_state(env, stderr, fprintf, 0); |
| 1428 | abort(); |
| 1429 | } |
| 1430 | process_pending_signals(env); |
| 1431 | } |
| 1432 | } |
| 1433 | #endif |
| 1434 | |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1435 | #ifdef TARGET_SH4 |
| 1436 | void cpu_loop (CPUState *env) |
| 1437 | { |
| 1438 | int trapnr, ret; |
pbrook | 355fb23 | 2006-06-17 19:58:25 +0000 | [diff] [blame] | 1439 | target_siginfo_t info; |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1440 | |
| 1441 | while (1) { |
| 1442 | trapnr = cpu_sh4_exec (env); |
| 1443 | |
| 1444 | switch (trapnr) { |
| 1445 | case 0x160: |
| 1446 | ret = do_syscall(env, |
pbrook | 9c2a9ea | 2006-06-18 19:12:54 +0000 | [diff] [blame] | 1447 | env->gregs[3], |
| 1448 | env->gregs[4], |
| 1449 | env->gregs[5], |
| 1450 | env->gregs[6], |
| 1451 | env->gregs[7], |
| 1452 | env->gregs[0], |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1453 | 0); |
pbrook | 9c2a9ea | 2006-06-18 19:12:54 +0000 | [diff] [blame] | 1454 | env->gregs[0] = ret; |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1455 | env->pc += 2; |
| 1456 | break; |
pbrook | 355fb23 | 2006-06-17 19:58:25 +0000 | [diff] [blame] | 1457 | case EXCP_DEBUG: |
| 1458 | { |
| 1459 | int sig; |
| 1460 | |
| 1461 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 1462 | if (sig) |
| 1463 | { |
| 1464 | info.si_signo = sig; |
| 1465 | info.si_errno = 0; |
| 1466 | info.si_code = TARGET_TRAP_BRKPT; |
| 1467 | queue_signal(info.si_signo, &info); |
| 1468 | } |
| 1469 | } |
| 1470 | break; |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1471 | default: |
| 1472 | printf ("Unhandled trap: 0x%x\n", trapnr); |
| 1473 | cpu_dump_state(env, stderr, fprintf, 0); |
| 1474 | exit (1); |
| 1475 | } |
| 1476 | process_pending_signals (env); |
| 1477 | } |
| 1478 | } |
| 1479 | #endif |
| 1480 | |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 1481 | #ifdef TARGET_M68K |
| 1482 | |
| 1483 | void cpu_loop(CPUM68KState *env) |
| 1484 | { |
| 1485 | int trapnr; |
| 1486 | unsigned int n; |
| 1487 | target_siginfo_t info; |
| 1488 | TaskState *ts = env->opaque; |
| 1489 | |
| 1490 | for(;;) { |
| 1491 | trapnr = cpu_m68k_exec(env); |
| 1492 | switch(trapnr) { |
| 1493 | case EXCP_ILLEGAL: |
| 1494 | { |
| 1495 | if (ts->sim_syscalls) { |
| 1496 | uint16_t nr; |
| 1497 | nr = lduw(env->pc + 2); |
| 1498 | env->pc += 4; |
| 1499 | do_m68k_simcall(env, nr); |
| 1500 | } else { |
| 1501 | goto do_sigill; |
| 1502 | } |
| 1503 | } |
| 1504 | break; |
| 1505 | case EXCP_HALTED: |
| 1506 | /* Semihosing syscall. */ |
| 1507 | env->pc += 2; |
| 1508 | do_m68k_semihosting(env, env->dregs[0]); |
| 1509 | break; |
| 1510 | case EXCP_LINEA: |
| 1511 | case EXCP_LINEF: |
| 1512 | case EXCP_UNSUPPORTED: |
| 1513 | do_sigill: |
| 1514 | info.si_signo = SIGILL; |
| 1515 | info.si_errno = 0; |
| 1516 | info.si_code = TARGET_ILL_ILLOPN; |
| 1517 | info._sifields._sigfault._addr = env->pc; |
| 1518 | queue_signal(info.si_signo, &info); |
| 1519 | break; |
| 1520 | case EXCP_TRAP0: |
| 1521 | { |
| 1522 | ts->sim_syscalls = 0; |
| 1523 | n = env->dregs[0]; |
| 1524 | env->pc += 2; |
| 1525 | env->dregs[0] = do_syscall(env, |
| 1526 | n, |
| 1527 | env->dregs[1], |
| 1528 | env->dregs[2], |
| 1529 | env->dregs[3], |
| 1530 | env->dregs[4], |
| 1531 | env->dregs[5], |
| 1532 | env->dregs[6]); |
| 1533 | } |
| 1534 | break; |
| 1535 | case EXCP_INTERRUPT: |
| 1536 | /* just indicate that signals should be handled asap */ |
| 1537 | break; |
| 1538 | case EXCP_ACCESS: |
| 1539 | { |
| 1540 | info.si_signo = SIGSEGV; |
| 1541 | info.si_errno = 0; |
| 1542 | /* XXX: check env->error_code */ |
| 1543 | info.si_code = TARGET_SEGV_MAPERR; |
| 1544 | info._sifields._sigfault._addr = env->mmu.ar; |
| 1545 | queue_signal(info.si_signo, &info); |
| 1546 | } |
| 1547 | break; |
| 1548 | case EXCP_DEBUG: |
| 1549 | { |
| 1550 | int sig; |
| 1551 | |
| 1552 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 1553 | if (sig) |
| 1554 | { |
| 1555 | info.si_signo = sig; |
| 1556 | info.si_errno = 0; |
| 1557 | info.si_code = TARGET_TRAP_BRKPT; |
| 1558 | queue_signal(info.si_signo, &info); |
| 1559 | } |
| 1560 | } |
| 1561 | break; |
| 1562 | default: |
| 1563 | fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n", |
| 1564 | trapnr); |
| 1565 | cpu_dump_state(env, stderr, fprintf, 0); |
| 1566 | abort(); |
| 1567 | } |
| 1568 | process_pending_signals(env); |
| 1569 | } |
| 1570 | } |
| 1571 | #endif /* TARGET_M68K */ |
| 1572 | |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 1573 | #ifdef TARGET_ALPHA |
| 1574 | void cpu_loop (CPUState *env) |
| 1575 | { |
j_mayer | e96efcf | 2007-04-14 12:17:09 +0000 | [diff] [blame] | 1576 | int trapnr; |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 1577 | target_siginfo_t info; |
| 1578 | |
| 1579 | while (1) { |
| 1580 | trapnr = cpu_alpha_exec (env); |
| 1581 | |
| 1582 | switch (trapnr) { |
| 1583 | case EXCP_RESET: |
| 1584 | fprintf(stderr, "Reset requested. Exit\n"); |
| 1585 | exit(1); |
| 1586 | break; |
| 1587 | case EXCP_MCHK: |
| 1588 | fprintf(stderr, "Machine check exception. Exit\n"); |
| 1589 | exit(1); |
| 1590 | break; |
| 1591 | case EXCP_ARITH: |
| 1592 | fprintf(stderr, "Arithmetic trap.\n"); |
| 1593 | exit(1); |
| 1594 | break; |
| 1595 | case EXCP_HW_INTERRUPT: |
| 1596 | fprintf(stderr, "External interrupt. Exit\n"); |
| 1597 | exit(1); |
| 1598 | break; |
| 1599 | case EXCP_DFAULT: |
| 1600 | fprintf(stderr, "MMU data fault\n"); |
| 1601 | exit(1); |
| 1602 | break; |
| 1603 | case EXCP_DTB_MISS_PAL: |
| 1604 | fprintf(stderr, "MMU data TLB miss in PALcode\n"); |
| 1605 | exit(1); |
| 1606 | break; |
| 1607 | case EXCP_ITB_MISS: |
| 1608 | fprintf(stderr, "MMU instruction TLB miss\n"); |
| 1609 | exit(1); |
| 1610 | break; |
| 1611 | case EXCP_ITB_ACV: |
| 1612 | fprintf(stderr, "MMU instruction access violation\n"); |
| 1613 | exit(1); |
| 1614 | break; |
| 1615 | case EXCP_DTB_MISS_NATIVE: |
| 1616 | fprintf(stderr, "MMU data TLB miss\n"); |
| 1617 | exit(1); |
| 1618 | break; |
| 1619 | case EXCP_UNALIGN: |
| 1620 | fprintf(stderr, "Unaligned access\n"); |
| 1621 | exit(1); |
| 1622 | break; |
| 1623 | case EXCP_OPCDEC: |
| 1624 | fprintf(stderr, "Invalid instruction\n"); |
| 1625 | exit(1); |
| 1626 | break; |
| 1627 | case EXCP_FEN: |
| 1628 | fprintf(stderr, "Floating-point not allowed\n"); |
| 1629 | exit(1); |
| 1630 | break; |
| 1631 | case EXCP_CALL_PAL ... (EXCP_CALL_PALP - 1): |
| 1632 | fprintf(stderr, "Call to PALcode\n"); |
| 1633 | call_pal(env, (trapnr >> 6) | 0x80); |
| 1634 | break; |
| 1635 | case EXCP_CALL_PALP ... (EXCP_CALL_PALE - 1): |
| 1636 | fprintf(stderr, "Priviledged call to PALcode\n"); |
| 1637 | exit(1); |
| 1638 | break; |
| 1639 | case EXCP_DEBUG: |
| 1640 | { |
| 1641 | int sig; |
| 1642 | |
| 1643 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 1644 | if (sig) |
| 1645 | { |
| 1646 | info.si_signo = sig; |
| 1647 | info.si_errno = 0; |
| 1648 | info.si_code = TARGET_TRAP_BRKPT; |
| 1649 | queue_signal(info.si_signo, &info); |
| 1650 | } |
| 1651 | } |
| 1652 | break; |
| 1653 | default: |
| 1654 | printf ("Unhandled trap: 0x%x\n", trapnr); |
| 1655 | cpu_dump_state(env, stderr, fprintf, 0); |
| 1656 | exit (1); |
| 1657 | } |
| 1658 | process_pending_signals (env); |
| 1659 | } |
| 1660 | } |
| 1661 | #endif /* TARGET_ALPHA */ |
| 1662 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1663 | void usage(void) |
| 1664 | { |
bellard | 84f2e8e | 2007-02-05 20:21:32 +0000 | [diff] [blame] | 1665 | printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2007 Fabrice Bellard\n" |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 1666 | "usage: qemu-" TARGET_ARCH " [-h] [-g] [-d opts] [-L path] [-s size] [-cpu model] program [arguments...]\n" |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1667 | "Linux CPU emulator (compiled for %s emulation)\n" |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1668 | "\n" |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1669 | "-h print this help\n" |
bellard | 74c33be | 2005-10-30 21:01:05 +0000 | [diff] [blame] | 1670 | "-g port wait gdb connection to port\n" |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1671 | "-L path set the elf interpreter prefix (default=%s)\n" |
| 1672 | "-s size set the stack size in bytes (default=%ld)\n" |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 1673 | "-cpu model select CPU (-cpu ? for list)\n" |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1674 | "\n" |
| 1675 | "debug options:\n" |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 1676 | #ifdef USE_CODE_COPY |
| 1677 | "-no-code-copy disable code copy acceleration\n" |
| 1678 | #endif |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 1679 | "-d options activate log (logfile=%s)\n" |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1680 | "-p pagesize set the host page size to 'pagesize'\n", |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1681 | TARGET_ARCH, |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1682 | interp_prefix, |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1683 | x86_stack_size, |
| 1684 | DEBUG_LOGFILE); |
bellard | 74cd30b | 2003-04-11 00:13:41 +0000 | [diff] [blame] | 1685 | _exit(1); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1686 | } |
| 1687 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 1688 | /* XXX: currently only used for async signals (see signal.c) */ |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1689 | CPUState *global_env; |
bellard | 59faf6d | 2003-06-25 16:18:50 +0000 | [diff] [blame] | 1690 | |
bellard | 851e67a | 2003-03-29 16:53:14 +0000 | [diff] [blame] | 1691 | /* used to free thread contexts */ |
| 1692 | TaskState *first_task_state; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 1693 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1694 | int main(int argc, char **argv) |
| 1695 | { |
| 1696 | const char *filename; |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 1697 | const char *cpu_model; |
bellard | 01ffc75 | 2003-02-18 23:00:51 +0000 | [diff] [blame] | 1698 | struct target_pt_regs regs1, *regs = ®s1; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1699 | struct image_info info1, *info = &info1; |
bellard | 851e67a | 2003-03-29 16:53:14 +0000 | [diff] [blame] | 1700 | TaskState ts1, *ts = &ts1; |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1701 | CPUState *env; |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 1702 | int optind; |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1703 | const char *r; |
bellard | 74c33be | 2005-10-30 21:01:05 +0000 | [diff] [blame] | 1704 | int gdbstub_port = 0; |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1705 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1706 | if (argc <= 1) |
| 1707 | usage(); |
bellard | f801f97 | 2003-04-07 21:31:06 +0000 | [diff] [blame] | 1708 | |
bellard | cc38b84 | 2003-10-27 21:16:14 +0000 | [diff] [blame] | 1709 | /* init debug */ |
| 1710 | cpu_set_log_filename(DEBUG_LOGFILE); |
| 1711 | |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 1712 | cpu_model = NULL; |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 1713 | optind = 1; |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1714 | for(;;) { |
| 1715 | if (optind >= argc) |
| 1716 | break; |
| 1717 | r = argv[optind]; |
| 1718 | if (r[0] != '-') |
| 1719 | break; |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 1720 | optind++; |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1721 | r++; |
| 1722 | if (!strcmp(r, "-")) { |
| 1723 | break; |
| 1724 | } else if (!strcmp(r, "d")) { |
bellard | e19e89a | 2004-03-21 17:08:23 +0000 | [diff] [blame] | 1725 | int mask; |
| 1726 | CPULogItem *item; |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 1727 | |
| 1728 | if (optind >= argc) |
| 1729 | break; |
bellard | e19e89a | 2004-03-21 17:08:23 +0000 | [diff] [blame] | 1730 | |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 1731 | r = argv[optind++]; |
| 1732 | mask = cpu_str_to_log_mask(r); |
bellard | e19e89a | 2004-03-21 17:08:23 +0000 | [diff] [blame] | 1733 | if (!mask) { |
| 1734 | printf("Log items (comma separated):\n"); |
| 1735 | for(item = cpu_log_items; item->mask != 0; item++) { |
| 1736 | printf("%-10s %s\n", item->name, item->help); |
| 1737 | } |
| 1738 | exit(1); |
| 1739 | } |
| 1740 | cpu_set_log(mask); |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1741 | } else if (!strcmp(r, "s")) { |
| 1742 | r = argv[optind++]; |
| 1743 | x86_stack_size = strtol(r, (char **)&r, 0); |
| 1744 | if (x86_stack_size <= 0) |
| 1745 | usage(); |
| 1746 | if (*r == 'M') |
| 1747 | x86_stack_size *= 1024 * 1024; |
| 1748 | else if (*r == 'k' || *r == 'K') |
| 1749 | x86_stack_size *= 1024; |
| 1750 | } else if (!strcmp(r, "L")) { |
| 1751 | interp_prefix = argv[optind++]; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1752 | } else if (!strcmp(r, "p")) { |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1753 | qemu_host_page_size = atoi(argv[optind++]); |
| 1754 | if (qemu_host_page_size == 0 || |
| 1755 | (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1756 | fprintf(stderr, "page size must be a power of two\n"); |
| 1757 | exit(1); |
| 1758 | } |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1759 | } else if (!strcmp(r, "g")) { |
bellard | 74c33be | 2005-10-30 21:01:05 +0000 | [diff] [blame] | 1760 | gdbstub_port = atoi(argv[optind++]); |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 1761 | } else if (!strcmp(r, "r")) { |
| 1762 | qemu_uname_release = argv[optind++]; |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 1763 | } else if (!strcmp(r, "cpu")) { |
| 1764 | cpu_model = argv[optind++]; |
| 1765 | if (strcmp(cpu_model, "?") == 0) { |
| 1766 | #if defined(TARGET_PPC) |
| 1767 | ppc_cpu_list(stdout, &fprintf); |
| 1768 | #elif defined(TARGET_ARM) |
| 1769 | arm_cpu_list(); |
| 1770 | #elif defined(TARGET_MIPS) |
| 1771 | mips_cpu_list(stdout, &fprintf); |
blueswir1 | 925fb13 | 2007-04-08 06:29:06 +0000 | [diff] [blame] | 1772 | #elif defined(TARGET_SPARC) |
| 1773 | sparc_cpu_list(stdout, &fprintf); |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 1774 | #endif |
ths | cff4cbe | 2007-03-19 12:16:29 +0000 | [diff] [blame] | 1775 | _exit(1); |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 1776 | } |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 1777 | } else |
| 1778 | #ifdef USE_CODE_COPY |
| 1779 | if (!strcmp(r, "no-code-copy")) { |
| 1780 | code_copy_enabled = 0; |
| 1781 | } else |
| 1782 | #endif |
| 1783 | { |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1784 | usage(); |
| 1785 | } |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 1786 | } |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1787 | if (optind >= argc) |
| 1788 | usage(); |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 1789 | filename = argv[optind]; |
| 1790 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1791 | /* Zero out regs */ |
bellard | 01ffc75 | 2003-02-18 23:00:51 +0000 | [diff] [blame] | 1792 | memset(regs, 0, sizeof(struct target_pt_regs)); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1793 | |
| 1794 | /* Zero out image_info */ |
| 1795 | memset(info, 0, sizeof(struct image_info)); |
| 1796 | |
bellard | 74cd30b | 2003-04-11 00:13:41 +0000 | [diff] [blame] | 1797 | /* Scan interp_prefix dir for replacement files. */ |
| 1798 | init_paths(interp_prefix); |
| 1799 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1800 | /* NOTE: we need to init the CPU at this stage to get |
| 1801 | qemu_host_page_size */ |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1802 | env = cpu_init(); |
bellard | 15338fd | 2005-11-26 11:41:16 +0000 | [diff] [blame] | 1803 | global_env = env; |
bellard | 92ccca6 | 2003-06-24 13:30:31 +0000 | [diff] [blame] | 1804 | |
pbrook | e5fe0c5 | 2006-06-11 13:32:59 +0000 | [diff] [blame] | 1805 | if (loader_exec(filename, argv+optind, environ, regs, info) != 0) { |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1806 | printf("Error loading %s\n", filename); |
bellard | 74cd30b | 2003-04-11 00:13:41 +0000 | [diff] [blame] | 1807 | _exit(1); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1808 | } |
| 1809 | |
bellard | 4b74fe1 | 2003-03-03 23:23:09 +0000 | [diff] [blame] | 1810 | if (loglevel) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1811 | page_dump(logfile); |
| 1812 | |
bellard | 4b74fe1 | 2003-03-03 23:23:09 +0000 | [diff] [blame] | 1813 | fprintf(logfile, "start_brk 0x%08lx\n" , info->start_brk); |
| 1814 | fprintf(logfile, "end_code 0x%08lx\n" , info->end_code); |
| 1815 | fprintf(logfile, "start_code 0x%08lx\n" , info->start_code); |
pbrook | e5fe0c5 | 2006-06-11 13:32:59 +0000 | [diff] [blame] | 1816 | fprintf(logfile, "start_data 0x%08lx\n" , info->start_data); |
bellard | 4b74fe1 | 2003-03-03 23:23:09 +0000 | [diff] [blame] | 1817 | fprintf(logfile, "end_data 0x%08lx\n" , info->end_data); |
| 1818 | fprintf(logfile, "start_stack 0x%08lx\n" , info->start_stack); |
| 1819 | fprintf(logfile, "brk 0x%08lx\n" , info->brk); |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1820 | fprintf(logfile, "entry 0x%08lx\n" , info->entry); |
bellard | 4b74fe1 | 2003-03-03 23:23:09 +0000 | [diff] [blame] | 1821 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1822 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1823 | target_set_brk(info->brk); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1824 | syscall_init(); |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 1825 | signal_init(); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1826 | |
bellard | 851e67a | 2003-03-29 16:53:14 +0000 | [diff] [blame] | 1827 | /* build Task State */ |
| 1828 | memset(ts, 0, sizeof(TaskState)); |
| 1829 | env->opaque = ts; |
| 1830 | ts->used = 1; |
pbrook | 978efd6 | 2006-06-17 18:30:42 +0000 | [diff] [blame] | 1831 | ts->info = info; |
bellard | 59faf6d | 2003-06-25 16:18:50 +0000 | [diff] [blame] | 1832 | env->user_mode_only = 1; |
bellard | 851e67a | 2003-03-29 16:53:14 +0000 | [diff] [blame] | 1833 | |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1834 | #if defined(TARGET_I386) |
bellard | 2e255c6 | 2003-08-21 23:25:21 +0000 | [diff] [blame] | 1835 | cpu_x86_set_cpl(env, 3); |
| 1836 | |
bellard | 3802ce2 | 2003-07-26 18:02:28 +0000 | [diff] [blame] | 1837 | env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK; |
bellard | 1bde465 | 2005-01-12 22:34:47 +0000 | [diff] [blame] | 1838 | env->hflags |= HF_PE_MASK; |
| 1839 | if (env->cpuid_features & CPUID_SSE) { |
| 1840 | env->cr[4] |= CR4_OSFXSR_MASK; |
| 1841 | env->hflags |= HF_OSFXSR_MASK; |
| 1842 | } |
| 1843 | |
bellard | 415e561 | 2004-02-03 23:37:12 +0000 | [diff] [blame] | 1844 | /* flags setup : we activate the IRQs by default as in user mode */ |
| 1845 | env->eflags |= IF_MASK; |
| 1846 | |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 1847 | /* linux register setup */ |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 1848 | #if defined(TARGET_X86_64) |
| 1849 | env->regs[R_EAX] = regs->rax; |
| 1850 | env->regs[R_EBX] = regs->rbx; |
| 1851 | env->regs[R_ECX] = regs->rcx; |
| 1852 | env->regs[R_EDX] = regs->rdx; |
| 1853 | env->regs[R_ESI] = regs->rsi; |
| 1854 | env->regs[R_EDI] = regs->rdi; |
| 1855 | env->regs[R_EBP] = regs->rbp; |
| 1856 | env->regs[R_ESP] = regs->rsp; |
| 1857 | env->eip = regs->rip; |
| 1858 | #else |
bellard | 0ecfa99 | 2003-03-03 14:32:43 +0000 | [diff] [blame] | 1859 | env->regs[R_EAX] = regs->eax; |
| 1860 | env->regs[R_EBX] = regs->ebx; |
| 1861 | env->regs[R_ECX] = regs->ecx; |
| 1862 | env->regs[R_EDX] = regs->edx; |
| 1863 | env->regs[R_ESI] = regs->esi; |
| 1864 | env->regs[R_EDI] = regs->edi; |
| 1865 | env->regs[R_EBP] = regs->ebp; |
| 1866 | env->regs[R_ESP] = regs->esp; |
bellard | dab2ed9 | 2003-03-22 15:23:14 +0000 | [diff] [blame] | 1867 | env->eip = regs->eip; |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 1868 | #endif |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1869 | |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 1870 | /* linux interrupt setup */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1871 | env->idt.base = h2g(idt_table); |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 1872 | env->idt.limit = sizeof(idt_table) - 1; |
| 1873 | set_idt(0, 0); |
| 1874 | set_idt(1, 0); |
| 1875 | set_idt(2, 0); |
| 1876 | set_idt(3, 3); |
| 1877 | set_idt(4, 3); |
| 1878 | set_idt(5, 3); |
| 1879 | set_idt(6, 0); |
| 1880 | set_idt(7, 0); |
| 1881 | set_idt(8, 0); |
| 1882 | set_idt(9, 0); |
| 1883 | set_idt(10, 0); |
| 1884 | set_idt(11, 0); |
| 1885 | set_idt(12, 0); |
| 1886 | set_idt(13, 0); |
| 1887 | set_idt(14, 0); |
| 1888 | set_idt(15, 0); |
| 1889 | set_idt(16, 0); |
| 1890 | set_idt(17, 0); |
| 1891 | set_idt(18, 0); |
| 1892 | set_idt(19, 0); |
| 1893 | set_idt(0x80, 3); |
| 1894 | |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 1895 | /* linux segment setup */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1896 | env->gdt.base = h2g(gdt_table); |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 1897 | env->gdt.limit = sizeof(gdt_table) - 1; |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 1898 | write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff, |
| 1899 | DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK | |
| 1900 | (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT)); |
| 1901 | write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff, |
| 1902 | DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK | |
| 1903 | (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT)); |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 1904 | cpu_x86_load_seg(env, R_CS, __USER_CS); |
| 1905 | cpu_x86_load_seg(env, R_DS, __USER_DS); |
| 1906 | cpu_x86_load_seg(env, R_ES, __USER_DS); |
| 1907 | cpu_x86_load_seg(env, R_SS, __USER_DS); |
| 1908 | cpu_x86_load_seg(env, R_FS, __USER_DS); |
| 1909 | cpu_x86_load_seg(env, R_GS, __USER_DS); |
bellard | 92ccca6 | 2003-06-24 13:30:31 +0000 | [diff] [blame] | 1910 | |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1911 | #elif defined(TARGET_ARM) |
| 1912 | { |
| 1913 | int i; |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 1914 | if (cpu_model == NULL) |
| 1915 | cpu_model = "arm926"; |
| 1916 | cpu_arm_set_model(env, cpu_model); |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 1917 | cpsr_write(env, regs->uregs[16], 0xffffffff); |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1918 | for(i = 0; i < 16; i++) { |
| 1919 | env->regs[i] = regs->uregs[i]; |
| 1920 | } |
bellard | a4f8197 | 2005-04-23 18:25:41 +0000 | [diff] [blame] | 1921 | ts->stack_base = info->start_stack; |
| 1922 | ts->heap_base = info->brk; |
| 1923 | /* This will be filled in on the first SYS_HEAPINFO call. */ |
| 1924 | ts->heap_limit = 0; |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 1925 | } |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 1926 | #elif defined(TARGET_SPARC) |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 1927 | { |
| 1928 | int i; |
blueswir1 | 925fb13 | 2007-04-08 06:29:06 +0000 | [diff] [blame] | 1929 | const sparc_def_t *def; |
| 1930 | #ifdef TARGET_SPARC64 |
| 1931 | if (cpu_model == NULL) |
| 1932 | cpu_model = "TI UltraSparc II"; |
| 1933 | #else |
| 1934 | if (cpu_model == NULL) |
| 1935 | cpu_model = "Fujitsu MB86904"; |
| 1936 | #endif |
| 1937 | sparc_find_by_name(cpu_model, &def); |
| 1938 | if (def == NULL) { |
| 1939 | fprintf(stderr, "Unable to find Sparc CPU definition\n"); |
| 1940 | exit(1); |
| 1941 | } |
| 1942 | cpu_sparc_register(env, def); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 1943 | env->pc = regs->pc; |
| 1944 | env->npc = regs->npc; |
| 1945 | env->y = regs->y; |
| 1946 | for(i = 0; i < 8; i++) |
| 1947 | env->gregs[i] = regs->u_regs[i]; |
| 1948 | for(i = 0; i < 8; i++) |
| 1949 | env->regwptr[i] = regs->u_regs[i + 8]; |
| 1950 | } |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1951 | #elif defined(TARGET_PPC) |
| 1952 | { |
bellard | 3fc6c08 | 2005-07-02 20:59:34 +0000 | [diff] [blame] | 1953 | ppc_def_t *def; |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1954 | int i; |
bellard | 3fc6c08 | 2005-07-02 20:59:34 +0000 | [diff] [blame] | 1955 | |
| 1956 | /* Choose and initialise CPU */ |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 1957 | if (cpu_model == NULL) |
| 1958 | cpu_model = "750"; |
| 1959 | ppc_find_by_name(cpu_model, &def); |
bellard | 3fc6c08 | 2005-07-02 20:59:34 +0000 | [diff] [blame] | 1960 | if (def == NULL) { |
bellard | c68ea70 | 2005-11-21 23:33:12 +0000 | [diff] [blame] | 1961 | cpu_abort(env, |
bellard | 3fc6c08 | 2005-07-02 20:59:34 +0000 | [diff] [blame] | 1962 | "Unable to find PowerPC CPU definition\n"); |
| 1963 | } |
bellard | c68ea70 | 2005-11-21 23:33:12 +0000 | [diff] [blame] | 1964 | cpu_ppc_register(env, def); |
bellard | 3fc6c08 | 2005-07-02 20:59:34 +0000 | [diff] [blame] | 1965 | |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 1966 | for (i = 0; i < 32; i++) { |
bellard | 4c2e770 | 2005-03-13 16:56:51 +0000 | [diff] [blame] | 1967 | if (i != 12 && i != 6 && i != 13) |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 1968 | env->msr[i] = (regs->msr >> i) & 1; |
| 1969 | } |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 1970 | #if defined(TARGET_PPC64) |
| 1971 | msr_sf = 1; |
| 1972 | #endif |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1973 | env->nip = regs->nip; |
| 1974 | for(i = 0; i < 32; i++) { |
| 1975 | env->gpr[i] = regs->gpr[i]; |
| 1976 | } |
| 1977 | } |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 1978 | #elif defined(TARGET_M68K) |
| 1979 | { |
pbrook | 0633879 | 2007-05-23 19:58:11 +0000 | [diff] [blame^] | 1980 | if (cpu_model == NULL) |
| 1981 | cpu_model = "cfv4e"; |
| 1982 | if (cpu_m68k_set_model(env, cpu_model)) { |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 1983 | cpu_abort(cpu_single_env, |
| 1984 | "Unable to find m68k CPU definition\n"); |
| 1985 | } |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 1986 | env->pc = regs->pc; |
| 1987 | env->dregs[0] = regs->d0; |
| 1988 | env->dregs[1] = regs->d1; |
| 1989 | env->dregs[2] = regs->d2; |
| 1990 | env->dregs[3] = regs->d3; |
| 1991 | env->dregs[4] = regs->d4; |
| 1992 | env->dregs[5] = regs->d5; |
| 1993 | env->dregs[6] = regs->d6; |
| 1994 | env->dregs[7] = regs->d7; |
| 1995 | env->aregs[0] = regs->a0; |
| 1996 | env->aregs[1] = regs->a1; |
| 1997 | env->aregs[2] = regs->a2; |
| 1998 | env->aregs[3] = regs->a3; |
| 1999 | env->aregs[4] = regs->a4; |
| 2000 | env->aregs[5] = regs->a5; |
| 2001 | env->aregs[6] = regs->a6; |
| 2002 | env->aregs[7] = regs->usp; |
| 2003 | env->sr = regs->sr; |
| 2004 | ts->sim_syscalls = 1; |
| 2005 | } |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 2006 | #elif defined(TARGET_MIPS) |
| 2007 | { |
ths | cff4cbe | 2007-03-19 12:16:29 +0000 | [diff] [blame] | 2008 | mips_def_t *def; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 2009 | int i; |
| 2010 | |
ths | cff4cbe | 2007-03-19 12:16:29 +0000 | [diff] [blame] | 2011 | /* Choose and initialise CPU */ |
| 2012 | if (cpu_model == NULL) |
| 2013 | cpu_model = "24Kf"; |
| 2014 | mips_find_by_name(cpu_model, &def); |
| 2015 | if (def == NULL) |
| 2016 | cpu_abort(env, "Unable to find MIPS CPU definition\n"); |
| 2017 | cpu_mips_register(env, def); |
| 2018 | |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 2019 | for(i = 0; i < 32; i++) { |
| 2020 | env->gpr[i] = regs->regs[i]; |
| 2021 | } |
| 2022 | env->PC = regs->cp0_epc; |
ths | 36d2395 | 2007-02-28 22:37:42 +0000 | [diff] [blame] | 2023 | if (env->CP0_Config1 & (1 << CP0C1_FP)) { |
| 2024 | env->CP0_Status |= (1 << CP0St_CU1); |
| 2025 | } |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 2026 | } |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 2027 | #elif defined(TARGET_SH4) |
| 2028 | { |
| 2029 | int i; |
| 2030 | |
| 2031 | for(i = 0; i < 16; i++) { |
| 2032 | env->gregs[i] = regs->regs[i]; |
| 2033 | } |
| 2034 | env->pc = regs->pc; |
| 2035 | } |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 2036 | #elif defined(TARGET_ALPHA) |
| 2037 | { |
| 2038 | int i; |
| 2039 | |
| 2040 | for(i = 0; i < 28; i++) { |
| 2041 | env->ir[i] = ((target_ulong *)regs)[i]; |
| 2042 | } |
| 2043 | env->ipr[IPR_USP] = regs->usp; |
| 2044 | env->ir[30] = regs->usp; |
| 2045 | env->pc = regs->pc; |
| 2046 | env->unique = regs->unique; |
| 2047 | } |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 2048 | #else |
| 2049 | #error unsupported target CPU |
| 2050 | #endif |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2051 | |
bellard | 74c33be | 2005-10-30 21:01:05 +0000 | [diff] [blame] | 2052 | if (gdbstub_port) { |
| 2053 | gdbserver_start (gdbstub_port); |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 2054 | gdb_handlesig(env, 0); |
| 2055 | } |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 2056 | cpu_loop(env); |
| 2057 | /* never exits */ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2058 | return 0; |
| 2059 | } |