blob: 0079c7a7e1836999b566370d33886b21970ea3d1 [file] [log] [blame]
bellard31e31b82003-02-18 22:55:36 +00001/*
bellard93ac68b2003-09-30 20:57:29 +00002 * qemu user main
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard68d0f702008-01-06 17:21:48 +00004 * Copyright (c) 2003-2008 Fabrice Bellard
bellard31e31b82003-02-18 22:55:36 +00005 *
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>
bellard04369ff2003-03-20 22:33:23 +000023#include <string.h>
bellard31e31b82003-02-18 22:55:36 +000024#include <errno.h>
bellard0ecfa992003-03-03 14:32:43 +000025#include <unistd.h>
bellard31e31b82003-02-18 22:55:36 +000026
bellard3ef693a2003-03-23 20:17:16 +000027#include "qemu.h"
bellard31e31b82003-02-18 22:55:36 +000028
bellard3ef693a2003-03-23 20:17:16 +000029#define DEBUG_LOGFILE "/tmp/qemu.log"
bellard586314f2003-03-03 15:02:29 +000030
bellard74cd30b2003-04-11 00:13:41 +000031static const char *interp_prefix = CONFIG_QEMU_PREFIX;
pbrookc5937222006-05-14 11:30:38 +000032const char *qemu_uname_release = CONFIG_UNAME_RELEASE;
bellard586314f2003-03-03 15:02:29 +000033
bellard3a4739d2003-10-28 00:48:22 +000034#if defined(__i386__) && !defined(CONFIG_STATIC)
bellardf801f972003-04-07 21:31:06 +000035/* Force usage of an ELF interpreter even if it is an ELF shared
36 object ! */
37const char interp[] __attribute__((section(".interp"))) = "/lib/ld-linux.so.2";
bellard43047632003-05-29 20:05:35 +000038#endif
bellard74cd30b2003-04-11 00:13:41 +000039
bellard93ac68b2003-09-30 20:57:29 +000040/* for recent libc, we add these dummy symbols which are not declared
bellard74cd30b2003-04-11 00:13:41 +000041 when generating a linked object (bug in ld ?) */
bellardfbf59242004-07-10 18:18:19 +000042#if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined(CONFIG_STATIC)
bellard46027c02007-11-08 13:56:19 +000043asm(".globl __preinit_array_start\n"
44 ".globl __preinit_array_end\n"
45 ".globl __init_array_start\n"
46 ".globl __init_array_end\n"
47 ".globl __fini_array_start\n"
48 ".globl __fini_array_end\n"
49 ".section \".rodata\"\n"
50 "__preinit_array_start:\n"
51 "__preinit_array_end:\n"
52 "__init_array_start:\n"
53 "__init_array_end:\n"
54 "__fini_array_start:\n"
55 "__fini_array_end:\n"
ths7bba1ee2008-01-08 14:39:43 +000056 ".long 0\n"
57 ".previous\n");
bellard74cd30b2003-04-11 00:13:41 +000058#endif
59
bellard9de5e442003-03-23 16:49:39 +000060/* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
61 we allocate a bigger stack. Need a better solution, for example
62 by remapping the process stack directly at the right place */
63unsigned long x86_stack_size = 512 * 1024;
bellard31e31b82003-02-18 22:55:36 +000064
65void gemu_log(const char *fmt, ...)
66{
67 va_list ap;
68
69 va_start(ap, fmt);
70 vfprintf(stderr, fmt, ap);
71 va_end(ap);
72}
73
bellard61190b12004-01-04 23:54:31 +000074void cpu_outb(CPUState *env, int addr, int val)
bellard367e86e2003-03-01 17:13:26 +000075{
76 fprintf(stderr, "outb: port=0x%04x, data=%02x\n", addr, val);
77}
78
bellard61190b12004-01-04 23:54:31 +000079void cpu_outw(CPUState *env, int addr, int val)
bellard367e86e2003-03-01 17:13:26 +000080{
81 fprintf(stderr, "outw: port=0x%04x, data=%04x\n", addr, val);
82}
83
bellard61190b12004-01-04 23:54:31 +000084void cpu_outl(CPUState *env, int addr, int val)
bellard367e86e2003-03-01 17:13:26 +000085{
86 fprintf(stderr, "outl: port=0x%04x, data=%08x\n", addr, val);
87}
88
bellard61190b12004-01-04 23:54:31 +000089int cpu_inb(CPUState *env, int addr)
bellard367e86e2003-03-01 17:13:26 +000090{
91 fprintf(stderr, "inb: port=0x%04x\n", addr);
92 return 0;
93}
94
bellard61190b12004-01-04 23:54:31 +000095int cpu_inw(CPUState *env, int addr)
bellard367e86e2003-03-01 17:13:26 +000096{
97 fprintf(stderr, "inw: port=0x%04x\n", addr);
98 return 0;
99}
100
bellard61190b12004-01-04 23:54:31 +0000101int cpu_inl(CPUState *env, int addr)
bellard367e86e2003-03-01 17:13:26 +0000102{
103 fprintf(stderr, "inl: port=0x%04x\n", addr);
104 return 0;
105}
106
bellarda541f292004-04-12 20:39:29 +0000107int cpu_get_pic_interrupt(CPUState *env)
bellard92ccca62003-06-24 13:30:31 +0000108{
109 return -1;
110}
111
bellard28ab0e22004-05-20 14:02:14 +0000112/* timers for rdtsc */
113
bellard1dce7c32006-07-13 23:20:22 +0000114#if 0
bellard28ab0e22004-05-20 14:02:14 +0000115
116static uint64_t emu_time;
117
118int64_t cpu_get_real_ticks(void)
119{
120 return emu_time++;
121}
122
123#endif
124
bellarda541f292004-04-12 20:39:29 +0000125#ifdef TARGET_I386
126/***********************************************************/
127/* CPUX86 core interface */
128
bellard02a16022006-09-24 18:48:23 +0000129void cpu_smm_update(CPUState *env)
130{
131}
132
bellard28ab0e22004-05-20 14:02:14 +0000133uint64_t cpu_get_tsc(CPUX86State *env)
134{
135 return cpu_get_real_ticks();
136}
137
ths5fafdf22007-09-16 21:08:06 +0000138static void write_dt(void *ptr, unsigned long addr, unsigned long limit,
bellardf4beb512003-05-27 23:28:08 +0000139 int flags)
bellard6dbad632003-03-16 18:05:05 +0000140{
bellardf4beb512003-05-27 23:28:08 +0000141 unsigned int e1, e2;
pbrook53a59602006-03-25 19:31:22 +0000142 uint32_t *p;
bellard6dbad632003-03-16 18:05:05 +0000143 e1 = (addr << 16) | (limit & 0xffff);
144 e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000);
bellardf4beb512003-05-27 23:28:08 +0000145 e2 |= flags;
pbrook53a59602006-03-25 19:31:22 +0000146 p = ptr;
147 p[0] = tswapl(e1);
148 p[1] = tswapl(e2);
bellardf4beb512003-05-27 23:28:08 +0000149}
150
bellardd2fd1af2007-11-14 18:08:56 +0000151#if TARGET_X86_64
152uint64_t idt_table[512];
153
154static void set_gate64(void *ptr, unsigned int type, unsigned int dpl,
155 uint64_t addr, unsigned int sel)
156{
bellard4dbc4222007-11-15 15:27:03 +0000157 uint32_t *p, e1, e2;
bellardd2fd1af2007-11-14 18:08:56 +0000158 e1 = (addr & 0xffff) | (sel << 16);
159 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
160 p = ptr;
bellard4dbc4222007-11-15 15:27:03 +0000161 p[0] = tswap32(e1);
162 p[1] = tswap32(e2);
163 p[2] = tswap32(addr >> 32);
164 p[3] = 0;
bellardd2fd1af2007-11-14 18:08:56 +0000165}
166/* only dpl matters as we do only user space emulation */
167static void set_idt(int n, unsigned int dpl)
168{
169 set_gate64(idt_table + n * 2, 0, dpl, 0, 0);
170}
171#else
172uint64_t idt_table[256];
173
ths5fafdf22007-09-16 21:08:06 +0000174static void set_gate(void *ptr, unsigned int type, unsigned int dpl,
bellardd2fd1af2007-11-14 18:08:56 +0000175 uint32_t addr, unsigned int sel)
bellardf4beb512003-05-27 23:28:08 +0000176{
bellard4dbc4222007-11-15 15:27:03 +0000177 uint32_t *p, e1, e2;
bellardf4beb512003-05-27 23:28:08 +0000178 e1 = (addr & 0xffff) | (sel << 16);
179 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
pbrook53a59602006-03-25 19:31:22 +0000180 p = ptr;
bellard4dbc4222007-11-15 15:27:03 +0000181 p[0] = tswap32(e1);
182 p[1] = tswap32(e2);
bellard6dbad632003-03-16 18:05:05 +0000183}
184
bellardf4beb512003-05-27 23:28:08 +0000185/* only dpl matters as we do only user space emulation */
186static void set_idt(int n, unsigned int dpl)
187{
188 set_gate(idt_table + n, 0, dpl, 0, 0);
189}
bellardd2fd1af2007-11-14 18:08:56 +0000190#endif
bellard31e31b82003-02-18 22:55:36 +0000191
bellard89e957e2003-05-10 12:33:15 +0000192void cpu_loop(CPUX86State *env)
bellard1b6b0292003-03-22 17:31:38 +0000193{
bellardbc8a22c2003-03-30 21:02:40 +0000194 int trapnr;
blueswir1992f48a2007-10-14 16:27:31 +0000195 abi_ulong pc;
bellard9de5e442003-03-23 16:49:39 +0000196 target_siginfo_t info;
bellard851e67a2003-03-29 16:53:14 +0000197
bellard1b6b0292003-03-22 17:31:38 +0000198 for(;;) {
bellardbc8a22c2003-03-30 21:02:40 +0000199 trapnr = cpu_x86_exec(env);
bellardbc8a22c2003-03-30 21:02:40 +0000200 switch(trapnr) {
bellardf4beb512003-05-27 23:28:08 +0000201 case 0x80:
bellardd2fd1af2007-11-14 18:08:56 +0000202 /* linux syscall from int $0x80 */
ths5fafdf22007-09-16 21:08:06 +0000203 env->regs[R_EAX] = do_syscall(env,
204 env->regs[R_EAX],
bellardf4beb512003-05-27 23:28:08 +0000205 env->regs[R_EBX],
206 env->regs[R_ECX],
207 env->regs[R_EDX],
208 env->regs[R_ESI],
209 env->regs[R_EDI],
210 env->regs[R_EBP]);
211 break;
bellardd2fd1af2007-11-14 18:08:56 +0000212#ifndef TARGET_ABI32
213 case EXCP_SYSCALL:
214 /* linux syscall from syscall intruction */
215 env->regs[R_EAX] = do_syscall(env,
216 env->regs[R_EAX],
217 env->regs[R_EDI],
218 env->regs[R_ESI],
219 env->regs[R_EDX],
220 env->regs[10],
221 env->regs[8],
222 env->regs[9]);
223 env->eip = env->exception_next_eip;
224 break;
225#endif
bellardf4beb512003-05-27 23:28:08 +0000226 case EXCP0B_NOSEG:
227 case EXCP0C_STACK:
228 info.si_signo = SIGBUS;
229 info.si_errno = 0;
230 info.si_code = TARGET_SI_KERNEL;
231 info._sifields._sigfault._addr = 0;
232 queue_signal(info.si_signo, &info);
233 break;
bellard1b6b0292003-03-22 17:31:38 +0000234 case EXCP0D_GPF:
bellardd2fd1af2007-11-14 18:08:56 +0000235 /* XXX: potential problem if ABI32 */
j_mayer84409dd2007-04-06 08:56:50 +0000236#ifndef TARGET_X86_64
bellard851e67a2003-03-29 16:53:14 +0000237 if (env->eflags & VM_MASK) {
bellard89e957e2003-05-10 12:33:15 +0000238 handle_vm86_fault(env);
j_mayer84409dd2007-04-06 08:56:50 +0000239 } else
240#endif
241 {
bellardf4beb512003-05-27 23:28:08 +0000242 info.si_signo = SIGSEGV;
243 info.si_errno = 0;
244 info.si_code = TARGET_SI_KERNEL;
245 info._sifields._sigfault._addr = 0;
246 queue_signal(info.si_signo, &info);
bellard1b6b0292003-03-22 17:31:38 +0000247 }
248 break;
bellardb689bc52003-05-08 15:33:33 +0000249 case EXCP0E_PAGE:
250 info.si_signo = SIGSEGV;
251 info.si_errno = 0;
252 if (!(env->error_code & 1))
253 info.si_code = TARGET_SEGV_MAPERR;
254 else
255 info.si_code = TARGET_SEGV_ACCERR;
bellard970a87a2003-06-21 13:13:25 +0000256 info._sifields._sigfault._addr = env->cr[2];
bellardb689bc52003-05-08 15:33:33 +0000257 queue_signal(info.si_signo, &info);
258 break;
bellard9de5e442003-03-23 16:49:39 +0000259 case EXCP00_DIVZ:
j_mayer84409dd2007-04-06 08:56:50 +0000260#ifndef TARGET_X86_64
bellardbc8a22c2003-03-30 21:02:40 +0000261 if (env->eflags & VM_MASK) {
bellard447db212003-05-10 15:10:36 +0000262 handle_vm86_trap(env, trapnr);
j_mayer84409dd2007-04-06 08:56:50 +0000263 } else
264#endif
265 {
bellardbc8a22c2003-03-30 21:02:40 +0000266 /* division by zero */
267 info.si_signo = SIGFPE;
268 info.si_errno = 0;
269 info.si_code = TARGET_FPE_INTDIV;
270 info._sifields._sigfault._addr = env->eip;
271 queue_signal(info.si_signo, &info);
272 }
bellard9de5e442003-03-23 16:49:39 +0000273 break;
bellard447db212003-05-10 15:10:36 +0000274 case EXCP01_SSTP:
275 case EXCP03_INT3:
j_mayer84409dd2007-04-06 08:56:50 +0000276#ifndef TARGET_X86_64
bellard447db212003-05-10 15:10:36 +0000277 if (env->eflags & VM_MASK) {
278 handle_vm86_trap(env, trapnr);
j_mayer84409dd2007-04-06 08:56:50 +0000279 } else
280#endif
281 {
bellard447db212003-05-10 15:10:36 +0000282 info.si_signo = SIGTRAP;
283 info.si_errno = 0;
284 if (trapnr == EXCP01_SSTP) {
285 info.si_code = TARGET_TRAP_BRKPT;
286 info._sifields._sigfault._addr = env->eip;
287 } else {
288 info.si_code = TARGET_SI_KERNEL;
289 info._sifields._sigfault._addr = 0;
290 }
291 queue_signal(info.si_signo, &info);
292 }
293 break;
bellard9de5e442003-03-23 16:49:39 +0000294 case EXCP04_INTO:
295 case EXCP05_BOUND:
j_mayer84409dd2007-04-06 08:56:50 +0000296#ifndef TARGET_X86_64
bellardbc8a22c2003-03-30 21:02:40 +0000297 if (env->eflags & VM_MASK) {
bellard447db212003-05-10 15:10:36 +0000298 handle_vm86_trap(env, trapnr);
j_mayer84409dd2007-04-06 08:56:50 +0000299 } else
300#endif
301 {
bellardbc8a22c2003-03-30 21:02:40 +0000302 info.si_signo = SIGSEGV;
303 info.si_errno = 0;
bellardb689bc52003-05-08 15:33:33 +0000304 info.si_code = TARGET_SI_KERNEL;
bellardbc8a22c2003-03-30 21:02:40 +0000305 info._sifields._sigfault._addr = 0;
306 queue_signal(info.si_signo, &info);
307 }
bellard9de5e442003-03-23 16:49:39 +0000308 break;
309 case EXCP06_ILLOP:
310 info.si_signo = SIGILL;
311 info.si_errno = 0;
312 info.si_code = TARGET_ILL_ILLOPN;
313 info._sifields._sigfault._addr = env->eip;
314 queue_signal(info.si_signo, &info);
315 break;
316 case EXCP_INTERRUPT:
317 /* just indicate that signals should be handled asap */
318 break;
bellard1fddef42005-04-17 19:16:13 +0000319 case EXCP_DEBUG:
320 {
321 int sig;
322
323 sig = gdb_handlesig (env, TARGET_SIGTRAP);
324 if (sig)
325 {
326 info.si_signo = sig;
327 info.si_errno = 0;
328 info.si_code = TARGET_TRAP_BRKPT;
329 queue_signal(info.si_signo, &info);
330 }
331 }
332 break;
bellard1b6b0292003-03-22 17:31:38 +0000333 default:
bellard970a87a2003-06-21 13:13:25 +0000334 pc = env->segs[R_CS].base + env->eip;
ths5fafdf22007-09-16 21:08:06 +0000335 fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
bellardbc8a22c2003-03-30 21:02:40 +0000336 (long)pc, trapnr);
bellard1b6b0292003-03-22 17:31:38 +0000337 abort();
338 }
bellard66fb9762003-03-23 01:06:05 +0000339 process_pending_signals(env);
bellard1b6b0292003-03-22 17:31:38 +0000340 }
341}
bellardb346ff42003-06-15 20:05:50 +0000342#endif
343
344#ifdef TARGET_ARM
345
bellard6f1f31c2004-04-25 18:00:45 +0000346/* XXX: find a better solution */
blueswir1992f48a2007-10-14 16:27:31 +0000347extern void tb_invalidate_page_range(abi_ulong start, abi_ulong end);
bellard6f1f31c2004-04-25 18:00:45 +0000348
blueswir1992f48a2007-10-14 16:27:31 +0000349static void arm_cache_flush(abi_ulong start, abi_ulong last)
bellard6f1f31c2004-04-25 18:00:45 +0000350{
blueswir1992f48a2007-10-14 16:27:31 +0000351 abi_ulong addr, last1;
bellard6f1f31c2004-04-25 18:00:45 +0000352
353 if (last < start)
354 return;
355 addr = start;
356 for(;;) {
357 last1 = ((addr + TARGET_PAGE_SIZE) & TARGET_PAGE_MASK) - 1;
358 if (last1 > last)
359 last1 = last;
360 tb_invalidate_page_range(addr, last1 + 1);
361 if (last1 == last)
362 break;
363 addr = last1 + 1;
364 }
365}
366
bellardb346ff42003-06-15 20:05:50 +0000367void cpu_loop(CPUARMState *env)
368{
369 int trapnr;
370 unsigned int n, insn;
371 target_siginfo_t info;
bellardb5ff1b32005-11-26 10:38:39 +0000372 uint32_t addr;
ths3b46e622007-09-17 08:09:54 +0000373
bellardb346ff42003-06-15 20:05:50 +0000374 for(;;) {
375 trapnr = cpu_arm_exec(env);
376 switch(trapnr) {
377 case EXCP_UDEF:
bellardc6981052004-02-16 21:49:03 +0000378 {
379 TaskState *ts = env->opaque;
380 uint32_t opcode;
381
382 /* we handle the FPU emulation here, as Linux */
383 /* we get the opcode */
bellard2f619692007-11-16 10:46:05 +0000384 /* FIXME - what to do if get_user() fails? */
385 get_user_u32(opcode, env->regs[15]);
ths3b46e622007-09-17 08:09:54 +0000386
pbrook19b045d2006-03-11 21:03:16 +0000387 if (EmulateAll(opcode, &ts->fpa, env) == 0) {
bellardc6981052004-02-16 21:49:03 +0000388 info.si_signo = SIGILL;
389 info.si_errno = 0;
390 info.si_code = TARGET_ILL_ILLOPN;
391 info._sifields._sigfault._addr = env->regs[15];
392 queue_signal(info.si_signo, &info);
393 } else {
394 /* increment PC */
395 env->regs[15] += 4;
396 }
397 }
bellardb346ff42003-06-15 20:05:50 +0000398 break;
399 case EXCP_SWI:
pbrook06c949e2006-02-04 19:35:26 +0000400 case EXCP_BKPT:
bellardb346ff42003-06-15 20:05:50 +0000401 {
pbrookce4defa2006-02-09 16:49:55 +0000402 env->eabi = 1;
bellardb346ff42003-06-15 20:05:50 +0000403 /* system call */
pbrook06c949e2006-02-04 19:35:26 +0000404 if (trapnr == EXCP_BKPT) {
405 if (env->thumb) {
bellard2f619692007-11-16 10:46:05 +0000406 /* FIXME - what to do if get_user() fails? */
407 get_user_u16(insn, env->regs[15]);
pbrook06c949e2006-02-04 19:35:26 +0000408 n = insn & 0xff;
409 env->regs[15] += 2;
410 } else {
bellard2f619692007-11-16 10:46:05 +0000411 /* FIXME - what to do if get_user() fails? */
412 get_user_u32(insn, env->regs[15]);
pbrook06c949e2006-02-04 19:35:26 +0000413 n = (insn & 0xf) | ((insn >> 4) & 0xff0);
414 env->regs[15] += 4;
415 }
bellard192c7bd2005-04-27 20:11:21 +0000416 } else {
pbrook06c949e2006-02-04 19:35:26 +0000417 if (env->thumb) {
bellard2f619692007-11-16 10:46:05 +0000418 /* FIXME - what to do if get_user() fails? */
419 get_user_u16(insn, env->regs[15] - 2);
pbrook06c949e2006-02-04 19:35:26 +0000420 n = insn & 0xff;
421 } else {
bellard2f619692007-11-16 10:46:05 +0000422 /* FIXME - what to do if get_user() fails? */
423 get_user_u32(insn, env->regs[15] - 4);
pbrook06c949e2006-02-04 19:35:26 +0000424 n = insn & 0xffffff;
425 }
bellard192c7bd2005-04-27 20:11:21 +0000426 }
427
bellard6f1f31c2004-04-25 18:00:45 +0000428 if (n == ARM_NR_cacheflush) {
429 arm_cache_flush(env->regs[0], env->regs[1]);
bellarda4f81972005-04-23 18:25:41 +0000430 } else if (n == ARM_NR_semihosting
431 || n == ARM_NR_thumb_semihosting) {
432 env->regs[0] = do_arm_semihosting (env);
pbrookce4defa2006-02-09 16:49:55 +0000433 } else if (n == 0 || n >= ARM_SYSCALL_BASE
bellard192c7bd2005-04-27 20:11:21 +0000434 || (env->thumb && n == ARM_THUMB_SYSCALL)) {
bellardb346ff42003-06-15 20:05:50 +0000435 /* linux syscall */
pbrookce4defa2006-02-09 16:49:55 +0000436 if (env->thumb || n == 0) {
bellard192c7bd2005-04-27 20:11:21 +0000437 n = env->regs[7];
438 } else {
439 n -= ARM_SYSCALL_BASE;
pbrookce4defa2006-02-09 16:49:55 +0000440 env->eabi = 0;
bellard192c7bd2005-04-27 20:11:21 +0000441 }
ths5fafdf22007-09-16 21:08:06 +0000442 env->regs[0] = do_syscall(env,
443 n,
bellardb346ff42003-06-15 20:05:50 +0000444 env->regs[0],
445 env->regs[1],
446 env->regs[2],
447 env->regs[3],
448 env->regs[4],
bellarde1a28492005-04-23 18:01:57 +0000449 env->regs[5]);
bellardb346ff42003-06-15 20:05:50 +0000450 } else {
451 goto error;
452 }
453 }
454 break;
bellard43fff232003-07-09 19:31:39 +0000455 case EXCP_INTERRUPT:
456 /* just indicate that signals should be handled asap */
457 break;
bellard68016c62005-02-07 23:12:27 +0000458 case EXCP_PREFETCH_ABORT:
bellardb5ff1b32005-11-26 10:38:39 +0000459 addr = env->cp15.c6_data;
460 goto do_segv;
bellard68016c62005-02-07 23:12:27 +0000461 case EXCP_DATA_ABORT:
bellardb5ff1b32005-11-26 10:38:39 +0000462 addr = env->cp15.c6_insn;
463 goto do_segv;
464 do_segv:
bellard68016c62005-02-07 23:12:27 +0000465 {
466 info.si_signo = SIGSEGV;
467 info.si_errno = 0;
468 /* XXX: check env->error_code */
469 info.si_code = TARGET_SEGV_MAPERR;
bellardb5ff1b32005-11-26 10:38:39 +0000470 info._sifields._sigfault._addr = addr;
bellard68016c62005-02-07 23:12:27 +0000471 queue_signal(info.si_signo, &info);
472 }
473 break;
bellard1fddef42005-04-17 19:16:13 +0000474 case EXCP_DEBUG:
475 {
476 int sig;
477
478 sig = gdb_handlesig (env, TARGET_SIGTRAP);
479 if (sig)
480 {
481 info.si_signo = sig;
482 info.si_errno = 0;
483 info.si_code = TARGET_TRAP_BRKPT;
484 queue_signal(info.si_signo, &info);
485 }
486 }
487 break;
bellardb346ff42003-06-15 20:05:50 +0000488 default:
489 error:
ths5fafdf22007-09-16 21:08:06 +0000490 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
bellardb346ff42003-06-15 20:05:50 +0000491 trapnr);
bellard7fe48482004-10-09 18:08:01 +0000492 cpu_dump_state(env, stderr, fprintf, 0);
bellardb346ff42003-06-15 20:05:50 +0000493 abort();
494 }
495 process_pending_signals(env);
496 }
497}
498
499#endif
bellard1b6b0292003-03-22 17:31:38 +0000500
bellard93ac68b2003-09-30 20:57:29 +0000501#ifdef TARGET_SPARC
502
bellard060366c2004-01-04 15:50:01 +0000503//#define DEBUG_WIN
504
bellard2623cba2005-02-19 17:25:31 +0000505/* WARNING: dealing with register windows _is_ complicated. More info
506 can be found at http://www.sics.se/~psm/sparcstack.html */
bellard060366c2004-01-04 15:50:01 +0000507static inline int get_reg_index(CPUSPARCState *env, int cwp, int index)
508{
509 index = (index + cwp * 16) & (16 * NWINDOWS - 1);
510 /* wrap handling : if cwp is on the last window, then we use the
511 registers 'after' the end */
512 if (index < 8 && env->cwp == (NWINDOWS - 1))
513 index += (16 * NWINDOWS);
514 return index;
515}
516
bellard2623cba2005-02-19 17:25:31 +0000517/* save the register window 'cwp1' */
518static inline void save_window_offset(CPUSPARCState *env, int cwp1)
bellard060366c2004-01-04 15:50:01 +0000519{
bellard2623cba2005-02-19 17:25:31 +0000520 unsigned int i;
blueswir1992f48a2007-10-14 16:27:31 +0000521 abi_ulong sp_ptr;
ths3b46e622007-09-17 08:09:54 +0000522
pbrook53a59602006-03-25 19:31:22 +0000523 sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
bellard060366c2004-01-04 15:50:01 +0000524#if defined(DEBUG_WIN)
ths5fafdf22007-09-16 21:08:06 +0000525 printf("win_overflow: sp_ptr=0x%x save_cwp=%d\n",
bellard060366c2004-01-04 15:50:01 +0000526 (int)sp_ptr, cwp1);
527#endif
bellard2623cba2005-02-19 17:25:31 +0000528 for(i = 0; i < 16; i++) {
bellard2f619692007-11-16 10:46:05 +0000529 /* FIXME - what to do if put_user() fails? */
530 put_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
blueswir1992f48a2007-10-14 16:27:31 +0000531 sp_ptr += sizeof(abi_ulong);
bellard2623cba2005-02-19 17:25:31 +0000532 }
bellard060366c2004-01-04 15:50:01 +0000533}
534
535static void save_window(CPUSPARCState *env)
536{
bellard5ef54112006-07-18 21:14:09 +0000537#ifndef TARGET_SPARC64
bellard2623cba2005-02-19 17:25:31 +0000538 unsigned int new_wim;
539 new_wim = ((env->wim >> 1) | (env->wim << (NWINDOWS - 1))) &
540 ((1LL << NWINDOWS) - 1);
541 save_window_offset(env, (env->cwp - 2) & (NWINDOWS - 1));
542 env->wim = new_wim;
bellard5ef54112006-07-18 21:14:09 +0000543#else
544 save_window_offset(env, (env->cwp - 2) & (NWINDOWS - 1));
545 env->cansave++;
546 env->canrestore--;
547#endif
bellard060366c2004-01-04 15:50:01 +0000548}
549
550static void restore_window(CPUSPARCState *env)
551{
552 unsigned int new_wim, i, cwp1;
blueswir1992f48a2007-10-14 16:27:31 +0000553 abi_ulong sp_ptr;
ths3b46e622007-09-17 08:09:54 +0000554
bellard060366c2004-01-04 15:50:01 +0000555 new_wim = ((env->wim << 1) | (env->wim >> (NWINDOWS - 1))) &
556 ((1LL << NWINDOWS) - 1);
ths3b46e622007-09-17 08:09:54 +0000557
bellard060366c2004-01-04 15:50:01 +0000558 /* restore the invalid window */
559 cwp1 = (env->cwp + 1) & (NWINDOWS - 1);
pbrook53a59602006-03-25 19:31:22 +0000560 sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
bellard060366c2004-01-04 15:50:01 +0000561#if defined(DEBUG_WIN)
ths5fafdf22007-09-16 21:08:06 +0000562 printf("win_underflow: sp_ptr=0x%x load_cwp=%d\n",
bellard060366c2004-01-04 15:50:01 +0000563 (int)sp_ptr, cwp1);
564#endif
bellard2623cba2005-02-19 17:25:31 +0000565 for(i = 0; i < 16; i++) {
bellard2f619692007-11-16 10:46:05 +0000566 /* FIXME - what to do if get_user() fails? */
567 get_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
blueswir1992f48a2007-10-14 16:27:31 +0000568 sp_ptr += sizeof(abi_ulong);
bellard2623cba2005-02-19 17:25:31 +0000569 }
bellard060366c2004-01-04 15:50:01 +0000570 env->wim = new_wim;
bellard5ef54112006-07-18 21:14:09 +0000571#ifdef TARGET_SPARC64
572 env->canrestore++;
573 if (env->cleanwin < NWINDOWS - 1)
574 env->cleanwin++;
575 env->cansave--;
576#endif
bellard060366c2004-01-04 15:50:01 +0000577}
578
579static void flush_windows(CPUSPARCState *env)
580{
581 int offset, cwp1;
bellard2623cba2005-02-19 17:25:31 +0000582
583 offset = 1;
bellard060366c2004-01-04 15:50:01 +0000584 for(;;) {
585 /* if restore would invoke restore_window(), then we can stop */
bellard2623cba2005-02-19 17:25:31 +0000586 cwp1 = (env->cwp + offset) & (NWINDOWS - 1);
bellard060366c2004-01-04 15:50:01 +0000587 if (env->wim & (1 << cwp1))
588 break;
bellard2623cba2005-02-19 17:25:31 +0000589 save_window_offset(env, cwp1);
bellard060366c2004-01-04 15:50:01 +0000590 offset++;
591 }
bellard2623cba2005-02-19 17:25:31 +0000592 /* set wim so that restore will reload the registers */
593 cwp1 = (env->cwp + 1) & (NWINDOWS - 1);
594 env->wim = 1 << cwp1;
595#if defined(DEBUG_WIN)
596 printf("flush_windows: nb=%d\n", offset - 1);
bellard80a9d032005-01-03 23:31:27 +0000597#endif
bellard2623cba2005-02-19 17:25:31 +0000598}
bellard060366c2004-01-04 15:50:01 +0000599
bellard93ac68b2003-09-30 20:57:29 +0000600void cpu_loop (CPUSPARCState *env)
601{
bellard060366c2004-01-04 15:50:01 +0000602 int trapnr, ret;
bellard61ff6f52005-02-15 22:54:53 +0000603 target_siginfo_t info;
ths3b46e622007-09-17 08:09:54 +0000604
bellard060366c2004-01-04 15:50:01 +0000605 while (1) {
606 trapnr = cpu_sparc_exec (env);
ths3b46e622007-09-17 08:09:54 +0000607
bellard060366c2004-01-04 15:50:01 +0000608 switch (trapnr) {
bellard5ef54112006-07-18 21:14:09 +0000609#ifndef TARGET_SPARC64
ths5fafdf22007-09-16 21:08:06 +0000610 case 0x88:
bellard060366c2004-01-04 15:50:01 +0000611 case 0x90:
bellard5ef54112006-07-18 21:14:09 +0000612#else
blueswir1cb33da52007-10-09 16:34:29 +0000613 case 0x110:
bellard5ef54112006-07-18 21:14:09 +0000614 case 0x16d:
615#endif
bellard060366c2004-01-04 15:50:01 +0000616 ret = do_syscall (env, env->gregs[1],
ths5fafdf22007-09-16 21:08:06 +0000617 env->regwptr[0], env->regwptr[1],
618 env->regwptr[2], env->regwptr[3],
bellard060366c2004-01-04 15:50:01 +0000619 env->regwptr[4], env->regwptr[5]);
620 if ((unsigned int)ret >= (unsigned int)(-515)) {
blueswir1992f48a2007-10-14 16:27:31 +0000621#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
bellard27908722006-10-23 21:31:01 +0000622 env->xcc |= PSR_CARRY;
623#else
bellard060366c2004-01-04 15:50:01 +0000624 env->psr |= PSR_CARRY;
bellard27908722006-10-23 21:31:01 +0000625#endif
bellard060366c2004-01-04 15:50:01 +0000626 ret = -ret;
627 } else {
blueswir1992f48a2007-10-14 16:27:31 +0000628#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
bellard27908722006-10-23 21:31:01 +0000629 env->xcc &= ~PSR_CARRY;
630#else
bellard060366c2004-01-04 15:50:01 +0000631 env->psr &= ~PSR_CARRY;
bellard27908722006-10-23 21:31:01 +0000632#endif
bellard060366c2004-01-04 15:50:01 +0000633 }
634 env->regwptr[0] = ret;
635 /* next instruction */
636 env->pc = env->npc;
637 env->npc = env->npc + 4;
638 break;
639 case 0x83: /* flush windows */
blueswir1992f48a2007-10-14 16:27:31 +0000640#ifdef TARGET_ABI32
641 case 0x103:
642#endif
bellard2623cba2005-02-19 17:25:31 +0000643 flush_windows(env);
bellard060366c2004-01-04 15:50:01 +0000644 /* next instruction */
645 env->pc = env->npc;
646 env->npc = env->npc + 4;
647 break;
bellard34751872005-07-02 14:31:34 +0000648#ifndef TARGET_SPARC64
bellard060366c2004-01-04 15:50:01 +0000649 case TT_WIN_OVF: /* window overflow */
650 save_window(env);
651 break;
652 case TT_WIN_UNF: /* window underflow */
653 restore_window(env);
654 break;
bellard61ff6f52005-02-15 22:54:53 +0000655 case TT_TFAULT:
656 case TT_DFAULT:
657 {
658 info.si_signo = SIGSEGV;
659 info.si_errno = 0;
660 /* XXX: check env->error_code */
661 info.si_code = TARGET_SEGV_MAPERR;
662 info._sifields._sigfault._addr = env->mmuregs[4];
663 queue_signal(info.si_signo, &info);
664 }
665 break;
bellard34751872005-07-02 14:31:34 +0000666#else
bellard5ef54112006-07-18 21:14:09 +0000667 case TT_SPILL: /* window overflow */
668 save_window(env);
669 break;
670 case TT_FILL: /* window underflow */
671 restore_window(env);
672 break;
blueswir17f84a722007-07-07 20:46:41 +0000673 case TT_TFAULT:
674 case TT_DFAULT:
675 {
676 info.si_signo = SIGSEGV;
677 info.si_errno = 0;
678 /* XXX: check env->error_code */
679 info.si_code = TARGET_SEGV_MAPERR;
680 if (trapnr == TT_DFAULT)
681 info._sifields._sigfault._addr = env->dmmuregs[4];
682 else
683 info._sifields._sigfault._addr = env->tpc[env->tl];
684 queue_signal(info.si_signo, &info);
685 }
686 break;
bellard27524dc2007-11-11 19:32:52 +0000687#ifndef TARGET_ABI32
blueswir15bfb56b2007-10-05 17:01:51 +0000688 case 0x16e:
689 flush_windows(env);
690 sparc64_get_context(env);
691 break;
692 case 0x16f:
693 flush_windows(env);
694 sparc64_set_context(env);
695 break;
bellard34751872005-07-02 14:31:34 +0000696#endif
bellard27524dc2007-11-11 19:32:52 +0000697#endif
bellard48dc41e2006-06-21 18:15:50 +0000698 case EXCP_INTERRUPT:
699 /* just indicate that signals should be handled asap */
700 break;
bellard1fddef42005-04-17 19:16:13 +0000701 case EXCP_DEBUG:
702 {
703 int sig;
704
705 sig = gdb_handlesig (env, TARGET_SIGTRAP);
706 if (sig)
707 {
708 info.si_signo = sig;
709 info.si_errno = 0;
710 info.si_code = TARGET_TRAP_BRKPT;
711 queue_signal(info.si_signo, &info);
712 }
713 }
714 break;
bellard060366c2004-01-04 15:50:01 +0000715 default:
716 printf ("Unhandled trap: 0x%x\n", trapnr);
bellard7fe48482004-10-09 18:08:01 +0000717 cpu_dump_state(env, stderr, fprintf, 0);
bellard060366c2004-01-04 15:50:01 +0000718 exit (1);
719 }
720 process_pending_signals (env);
721 }
bellard93ac68b2003-09-30 20:57:29 +0000722}
723
724#endif
725
bellard67867302003-11-23 17:05:30 +0000726#ifdef TARGET_PPC
bellard9fddaa02004-05-21 12:59:32 +0000727static inline uint64_t cpu_ppc_get_tb (CPUState *env)
728{
729 /* TO FIX */
730 return 0;
731}
ths3b46e622007-09-17 08:09:54 +0000732
bellard9fddaa02004-05-21 12:59:32 +0000733uint32_t cpu_ppc_load_tbl (CPUState *env)
734{
735 return cpu_ppc_get_tb(env) & 0xFFFFFFFF;
736}
ths3b46e622007-09-17 08:09:54 +0000737
bellard9fddaa02004-05-21 12:59:32 +0000738uint32_t cpu_ppc_load_tbu (CPUState *env)
739{
740 return cpu_ppc_get_tb(env) >> 32;
741}
ths3b46e622007-09-17 08:09:54 +0000742
j_mayera062e362007-09-30 00:38:38 +0000743uint32_t cpu_ppc_load_atbl (CPUState *env)
bellard9fddaa02004-05-21 12:59:32 +0000744{
j_mayera062e362007-09-30 00:38:38 +0000745 return cpu_ppc_get_tb(env) & 0xFFFFFFFF;
bellard9fddaa02004-05-21 12:59:32 +0000746}
747
j_mayera062e362007-09-30 00:38:38 +0000748uint32_t cpu_ppc_load_atbu (CPUState *env)
bellard9fddaa02004-05-21 12:59:32 +0000749{
j_mayera062e362007-09-30 00:38:38 +0000750 return cpu_ppc_get_tb(env) >> 32;
bellard9fddaa02004-05-21 12:59:32 +0000751}
ths5fafdf22007-09-16 21:08:06 +0000752
j_mayer76a66252007-03-07 08:32:30 +0000753uint32_t cpu_ppc601_load_rtcu (CPUState *env)
754__attribute__ (( alias ("cpu_ppc_load_tbu") ));
755
j_mayer76a66252007-03-07 08:32:30 +0000756uint32_t cpu_ppc601_load_rtcl (CPUState *env)
bellard9fddaa02004-05-21 12:59:32 +0000757{
j_mayer76a66252007-03-07 08:32:30 +0000758 return cpu_ppc_load_tbl(env) & 0x3FFFFF80;
bellard9fddaa02004-05-21 12:59:32 +0000759}
j_mayer76a66252007-03-07 08:32:30 +0000760
j_mayera750fc02007-09-26 23:54:22 +0000761/* XXX: to be fixed */
762int ppc_dcr_read (ppc_dcr_t *dcr_env, int dcrn, target_ulong *valp)
763{
764 return -1;
765}
766
767int ppc_dcr_write (ppc_dcr_t *dcr_env, int dcrn, target_ulong val)
768{
769 return -1;
770}
771
j_mayere1833e12007-09-29 13:06:16 +0000772#define EXCP_DUMP(env, fmt, args...) \
773do { \
774 fprintf(stderr, fmt , ##args); \
775 cpu_dump_state(env, stderr, fprintf, 0); \
776 if (loglevel != 0) { \
777 fprintf(logfile, fmt , ##args); \
778 cpu_dump_state(env, logfile, fprintf, 0); \
779 } \
780} while (0)
781
bellard67867302003-11-23 17:05:30 +0000782void cpu_loop(CPUPPCState *env)
783{
bellard67867302003-11-23 17:05:30 +0000784 target_siginfo_t info;
bellard61190b12004-01-04 23:54:31 +0000785 int trapnr;
786 uint32_t ret;
ths3b46e622007-09-17 08:09:54 +0000787
bellard67867302003-11-23 17:05:30 +0000788 for(;;) {
789 trapnr = cpu_ppc_exec(env);
790 switch(trapnr) {
j_mayere1833e12007-09-29 13:06:16 +0000791 case POWERPC_EXCP_NONE:
792 /* Just go on */
bellard67867302003-11-23 17:05:30 +0000793 break;
j_mayere1833e12007-09-29 13:06:16 +0000794 case POWERPC_EXCP_CRITICAL: /* Critical input */
795 cpu_abort(env, "Critical interrupt while in user mode. "
796 "Aborting\n");
797 break;
798 case POWERPC_EXCP_MCHECK: /* Machine check exception */
799 cpu_abort(env, "Machine check exception while in user mode. "
800 "Aborting\n");
801 break;
802 case POWERPC_EXCP_DSI: /* Data storage exception */
803 EXCP_DUMP(env, "Invalid data memory access: 0x" ADDRX "\n",
804 env->spr[SPR_DAR]);
805 /* XXX: check this. Seems bugged */
806 switch (env->error_code & 0xFF000000) {
807 case 0x40000000:
808 info.si_signo = TARGET_SIGSEGV;
809 info.si_errno = 0;
810 info.si_code = TARGET_SEGV_MAPERR;
811 break;
812 case 0x04000000:
813 info.si_signo = TARGET_SIGILL;
814 info.si_errno = 0;
815 info.si_code = TARGET_ILL_ILLADR;
816 break;
817 case 0x08000000:
818 info.si_signo = TARGET_SIGSEGV;
819 info.si_errno = 0;
820 info.si_code = TARGET_SEGV_ACCERR;
821 break;
822 default:
823 /* Let's send a regular segfault... */
824 EXCP_DUMP(env, "Invalid segfault errno (%02x)\n",
825 env->error_code);
826 info.si_signo = TARGET_SIGSEGV;
827 info.si_errno = 0;
828 info.si_code = TARGET_SEGV_MAPERR;
829 break;
830 }
831 info._sifields._sigfault._addr = env->nip;
832 queue_signal(info.si_signo, &info);
833 break;
834 case POWERPC_EXCP_ISI: /* Instruction storage exception */
835 EXCP_DUMP(env, "Invalid instruction fetch: 0x\n" ADDRX "\n",
j_mayerf10c3152007-11-03 13:22:08 +0000836 env->spr[SPR_SRR0]);
j_mayere1833e12007-09-29 13:06:16 +0000837 /* XXX: check this */
838 switch (env->error_code & 0xFF000000) {
839 case 0x40000000:
840 info.si_signo = TARGET_SIGSEGV;
841 info.si_errno = 0;
842 info.si_code = TARGET_SEGV_MAPERR;
843 break;
844 case 0x10000000:
845 case 0x08000000:
846 info.si_signo = TARGET_SIGSEGV;
847 info.si_errno = 0;
848 info.si_code = TARGET_SEGV_ACCERR;
849 break;
850 default:
851 /* Let's send a regular segfault... */
852 EXCP_DUMP(env, "Invalid segfault errno (%02x)\n",
853 env->error_code);
854 info.si_signo = TARGET_SIGSEGV;
855 info.si_errno = 0;
856 info.si_code = TARGET_SEGV_MAPERR;
857 break;
858 }
859 info._sifields._sigfault._addr = env->nip - 4;
860 queue_signal(info.si_signo, &info);
861 break;
862 case POWERPC_EXCP_EXTERNAL: /* External input */
863 cpu_abort(env, "External interrupt while in user mode. "
864 "Aborting\n");
865 break;
866 case POWERPC_EXCP_ALIGN: /* Alignment exception */
867 EXCP_DUMP(env, "Unaligned memory access\n");
868 /* XXX: check this */
869 info.si_signo = TARGET_SIGBUS;
870 info.si_errno = 0;
871 info.si_code = TARGET_BUS_ADRALN;
872 info._sifields._sigfault._addr = env->nip - 4;
873 queue_signal(info.si_signo, &info);
874 break;
875 case POWERPC_EXCP_PROGRAM: /* Program exception */
876 /* XXX: check this */
877 switch (env->error_code & ~0xF) {
878 case POWERPC_EXCP_FP:
879 EXCP_DUMP(env, "Floating point program exception\n");
j_mayere1833e12007-09-29 13:06:16 +0000880 info.si_signo = TARGET_SIGFPE;
881 info.si_errno = 0;
882 switch (env->error_code & 0xF) {
883 case POWERPC_EXCP_FP_OX:
884 info.si_code = TARGET_FPE_FLTOVF;
885 break;
886 case POWERPC_EXCP_FP_UX:
887 info.si_code = TARGET_FPE_FLTUND;
888 break;
889 case POWERPC_EXCP_FP_ZX:
890 case POWERPC_EXCP_FP_VXZDZ:
891 info.si_code = TARGET_FPE_FLTDIV;
892 break;
893 case POWERPC_EXCP_FP_XX:
894 info.si_code = TARGET_FPE_FLTRES;
895 break;
896 case POWERPC_EXCP_FP_VXSOFT:
897 info.si_code = TARGET_FPE_FLTINV;
898 break;
j_mayer7c580442007-10-27 17:54:30 +0000899 case POWERPC_EXCP_FP_VXSNAN:
j_mayere1833e12007-09-29 13:06:16 +0000900 case POWERPC_EXCP_FP_VXISI:
901 case POWERPC_EXCP_FP_VXIDI:
902 case POWERPC_EXCP_FP_VXIMZ:
903 case POWERPC_EXCP_FP_VXVC:
904 case POWERPC_EXCP_FP_VXSQRT:
905 case POWERPC_EXCP_FP_VXCVI:
906 info.si_code = TARGET_FPE_FLTSUB;
907 break;
908 default:
909 EXCP_DUMP(env, "Unknown floating point exception (%02x)\n",
910 env->error_code);
911 break;
912 }
913 break;
914 case POWERPC_EXCP_INVAL:
915 EXCP_DUMP(env, "Invalid instruction\n");
916 info.si_signo = TARGET_SIGILL;
917 info.si_errno = 0;
918 switch (env->error_code & 0xF) {
919 case POWERPC_EXCP_INVAL_INVAL:
920 info.si_code = TARGET_ILL_ILLOPC;
921 break;
922 case POWERPC_EXCP_INVAL_LSWX:
923 info.si_code = TARGET_ILL_ILLOPN;
924 break;
925 case POWERPC_EXCP_INVAL_SPR:
926 info.si_code = TARGET_ILL_PRVREG;
927 break;
928 case POWERPC_EXCP_INVAL_FP:
929 info.si_code = TARGET_ILL_COPROC;
930 break;
931 default:
932 EXCP_DUMP(env, "Unknown invalid operation (%02x)\n",
933 env->error_code & 0xF);
934 info.si_code = TARGET_ILL_ILLADR;
935 break;
936 }
937 break;
938 case POWERPC_EXCP_PRIV:
939 EXCP_DUMP(env, "Privilege violation\n");
940 info.si_signo = TARGET_SIGILL;
941 info.si_errno = 0;
942 switch (env->error_code & 0xF) {
943 case POWERPC_EXCP_PRIV_OPC:
944 info.si_code = TARGET_ILL_PRVOPC;
945 break;
946 case POWERPC_EXCP_PRIV_REG:
947 info.si_code = TARGET_ILL_PRVREG;
948 break;
949 default:
950 EXCP_DUMP(env, "Unknown privilege violation (%02x)\n",
951 env->error_code & 0xF);
952 info.si_code = TARGET_ILL_PRVOPC;
953 break;
954 }
955 break;
956 case POWERPC_EXCP_TRAP:
957 cpu_abort(env, "Tried to call a TRAP\n");
958 break;
959 default:
960 /* Should not happen ! */
961 cpu_abort(env, "Unknown program exception (%02x)\n",
962 env->error_code);
963 break;
964 }
965 info._sifields._sigfault._addr = env->nip - 4;
966 queue_signal(info.si_signo, &info);
967 break;
968 case POWERPC_EXCP_FPU: /* Floating-point unavailable exception */
969 EXCP_DUMP(env, "No floating point allowed\n");
970 info.si_signo = TARGET_SIGILL;
971 info.si_errno = 0;
972 info.si_code = TARGET_ILL_COPROC;
973 info._sifields._sigfault._addr = env->nip - 4;
974 queue_signal(info.si_signo, &info);
975 break;
976 case POWERPC_EXCP_SYSCALL: /* System call exception */
977 cpu_abort(env, "Syscall exception while in user mode. "
978 "Aborting\n");
979 break;
980 case POWERPC_EXCP_APU: /* Auxiliary processor unavailable */
981 EXCP_DUMP(env, "No APU instruction allowed\n");
982 info.si_signo = TARGET_SIGILL;
983 info.si_errno = 0;
984 info.si_code = TARGET_ILL_COPROC;
985 info._sifields._sigfault._addr = env->nip - 4;
986 queue_signal(info.si_signo, &info);
987 break;
988 case POWERPC_EXCP_DECR: /* Decrementer exception */
989 cpu_abort(env, "Decrementer interrupt while in user mode. "
990 "Aborting\n");
991 break;
992 case POWERPC_EXCP_FIT: /* Fixed-interval timer interrupt */
993 cpu_abort(env, "Fix interval timer interrupt while in user mode. "
994 "Aborting\n");
995 break;
996 case POWERPC_EXCP_WDT: /* Watchdog timer interrupt */
997 cpu_abort(env, "Watchdog timer interrupt while in user mode. "
998 "Aborting\n");
999 break;
1000 case POWERPC_EXCP_DTLB: /* Data TLB error */
1001 cpu_abort(env, "Data TLB exception while in user mode. "
1002 "Aborting\n");
1003 break;
1004 case POWERPC_EXCP_ITLB: /* Instruction TLB error */
1005 cpu_abort(env, "Instruction TLB exception while in user mode. "
1006 "Aborting\n");
1007 break;
1008 case POWERPC_EXCP_DEBUG: /* Debug interrupt */
1009 /* XXX: check this */
1010 {
1011 int sig;
1012
1013 sig = gdb_handlesig(env, TARGET_SIGTRAP);
1014 if (sig) {
1015 info.si_signo = sig;
1016 info.si_errno = 0;
1017 info.si_code = TARGET_TRAP_BRKPT;
1018 queue_signal(info.si_signo, &info);
1019 }
1020 }
1021 break;
j_mayere1833e12007-09-29 13:06:16 +00001022 case POWERPC_EXCP_SPEU: /* SPE/embedded floating-point unavail. */
1023 EXCP_DUMP(env, "No SPE/floating-point instruction allowed\n");
1024 info.si_signo = TARGET_SIGILL;
1025 info.si_errno = 0;
1026 info.si_code = TARGET_ILL_COPROC;
1027 info._sifields._sigfault._addr = env->nip - 4;
1028 queue_signal(info.si_signo, &info);
1029 break;
1030 case POWERPC_EXCP_EFPDI: /* Embedded floating-point data IRQ */
1031 cpu_abort(env, "Embedded floating-point data IRQ not handled\n");
1032 break;
1033 case POWERPC_EXCP_EFPRI: /* Embedded floating-point round IRQ */
1034 cpu_abort(env, "Embedded floating-point round IRQ not handled\n");
1035 break;
1036 case POWERPC_EXCP_EPERFM: /* Embedded performance monitor IRQ */
1037 cpu_abort(env, "Performance monitor exception not handled\n");
1038 break;
1039 case POWERPC_EXCP_DOORI: /* Embedded doorbell interrupt */
1040 cpu_abort(env, "Doorbell interrupt while in user mode. "
1041 "Aborting\n");
1042 break;
1043 case POWERPC_EXCP_DOORCI: /* Embedded doorbell critical interrupt */
1044 cpu_abort(env, "Doorbell critical interrupt while in user mode. "
1045 "Aborting\n");
1046 break;
1047 case POWERPC_EXCP_RESET: /* System reset exception */
1048 cpu_abort(env, "Reset interrupt while in user mode. "
1049 "Aborting\n");
1050 break;
j_mayere1833e12007-09-29 13:06:16 +00001051 case POWERPC_EXCP_DSEG: /* Data segment exception */
1052 cpu_abort(env, "Data segment exception while in user mode. "
1053 "Aborting\n");
1054 break;
1055 case POWERPC_EXCP_ISEG: /* Instruction segment exception */
1056 cpu_abort(env, "Instruction segment exception "
1057 "while in user mode. Aborting\n");
1058 break;
j_mayere85e7c62007-10-18 19:59:49 +00001059 /* PowerPC 64 with hypervisor mode support */
j_mayere1833e12007-09-29 13:06:16 +00001060 case POWERPC_EXCP_HDECR: /* Hypervisor decrementer exception */
1061 cpu_abort(env, "Hypervisor decrementer interrupt "
1062 "while in user mode. Aborting\n");
1063 break;
j_mayere1833e12007-09-29 13:06:16 +00001064 case POWERPC_EXCP_TRACE: /* Trace exception */
1065 /* Nothing to do:
1066 * we use this exception to emulate step-by-step execution mode.
1067 */
1068 break;
j_mayere85e7c62007-10-18 19:59:49 +00001069 /* PowerPC 64 with hypervisor mode support */
j_mayere1833e12007-09-29 13:06:16 +00001070 case POWERPC_EXCP_HDSI: /* Hypervisor data storage exception */
1071 cpu_abort(env, "Hypervisor data storage exception "
1072 "while in user mode. Aborting\n");
1073 break;
1074 case POWERPC_EXCP_HISI: /* Hypervisor instruction storage excp */
1075 cpu_abort(env, "Hypervisor instruction storage exception "
1076 "while in user mode. Aborting\n");
1077 break;
1078 case POWERPC_EXCP_HDSEG: /* Hypervisor data segment exception */
1079 cpu_abort(env, "Hypervisor data segment exception "
1080 "while in user mode. Aborting\n");
1081 break;
1082 case POWERPC_EXCP_HISEG: /* Hypervisor instruction segment excp */
1083 cpu_abort(env, "Hypervisor instruction segment exception "
1084 "while in user mode. Aborting\n");
1085 break;
j_mayere1833e12007-09-29 13:06:16 +00001086 case POWERPC_EXCP_VPU: /* Vector unavailable exception */
1087 EXCP_DUMP(env, "No Altivec instructions allowed\n");
1088 info.si_signo = TARGET_SIGILL;
1089 info.si_errno = 0;
1090 info.si_code = TARGET_ILL_COPROC;
1091 info._sifields._sigfault._addr = env->nip - 4;
1092 queue_signal(info.si_signo, &info);
1093 break;
1094 case POWERPC_EXCP_PIT: /* Programmable interval timer IRQ */
1095 cpu_abort(env, "Programable interval timer interrupt "
1096 "while in user mode. Aborting\n");
1097 break;
1098 case POWERPC_EXCP_IO: /* IO error exception */
1099 cpu_abort(env, "IO error exception while in user mode. "
1100 "Aborting\n");
1101 break;
1102 case POWERPC_EXCP_RUNM: /* Run mode exception */
1103 cpu_abort(env, "Run mode exception while in user mode. "
1104 "Aborting\n");
1105 break;
1106 case POWERPC_EXCP_EMUL: /* Emulation trap exception */
1107 cpu_abort(env, "Emulation trap exception not handled\n");
1108 break;
1109 case POWERPC_EXCP_IFTLB: /* Instruction fetch TLB error */
1110 cpu_abort(env, "Instruction fetch TLB exception "
1111 "while in user-mode. Aborting");
1112 break;
1113 case POWERPC_EXCP_DLTLB: /* Data load TLB miss */
1114 cpu_abort(env, "Data load TLB exception while in user-mode. "
1115 "Aborting");
1116 break;
1117 case POWERPC_EXCP_DSTLB: /* Data store TLB miss */
1118 cpu_abort(env, "Data store TLB exception while in user-mode. "
1119 "Aborting");
1120 break;
1121 case POWERPC_EXCP_FPA: /* Floating-point assist exception */
1122 cpu_abort(env, "Floating-point assist exception not handled\n");
1123 break;
1124 case POWERPC_EXCP_IABR: /* Instruction address breakpoint */
1125 cpu_abort(env, "Instruction address breakpoint exception "
1126 "not handled\n");
1127 break;
1128 case POWERPC_EXCP_SMI: /* System management interrupt */
1129 cpu_abort(env, "System management interrupt while in user mode. "
1130 "Aborting\n");
1131 break;
1132 case POWERPC_EXCP_THERM: /* Thermal interrupt */
1133 cpu_abort(env, "Thermal interrupt interrupt while in user mode. "
1134 "Aborting\n");
1135 break;
1136 case POWERPC_EXCP_PERFM: /* Embedded performance monitor IRQ */
1137 cpu_abort(env, "Performance monitor exception not handled\n");
1138 break;
1139 case POWERPC_EXCP_VPUA: /* Vector assist exception */
1140 cpu_abort(env, "Vector assist exception not handled\n");
1141 break;
1142 case POWERPC_EXCP_SOFTP: /* Soft patch exception */
1143 cpu_abort(env, "Soft patch exception not handled\n");
1144 break;
1145 case POWERPC_EXCP_MAINT: /* Maintenance exception */
1146 cpu_abort(env, "Maintenance exception while in user mode. "
1147 "Aborting\n");
1148 break;
1149 case POWERPC_EXCP_STOP: /* stop translation */
1150 /* We did invalidate the instruction cache. Go on */
1151 break;
1152 case POWERPC_EXCP_BRANCH: /* branch instruction: */
1153 /* We just stopped because of a branch. Go on */
1154 break;
1155 case POWERPC_EXCP_SYSCALL_USER:
1156 /* system call in user-mode emulation */
bellard67867302003-11-23 17:05:30 +00001157 /* WARNING:
1158 * PPC ABI uses overflow flag in cr0 to signal an error
1159 * in syscalls.
1160 */
bellard61190b12004-01-04 23:54:31 +00001161#if 0
1162 printf("syscall %d 0x%08x 0x%08x 0x%08x 0x%08x\n", env->gpr[0],
1163 env->gpr[3], env->gpr[4], env->gpr[5], env->gpr[6]);
1164#endif
bellard67867302003-11-23 17:05:30 +00001165 env->crf[0] &= ~0x1;
1166 ret = do_syscall(env, env->gpr[0], env->gpr[3], env->gpr[4],
1167 env->gpr[5], env->gpr[6], env->gpr[7],
1168 env->gpr[8]);
1169 if (ret > (uint32_t)(-515)) {
1170 env->crf[0] |= 0x1;
1171 ret = -ret;
1172 }
1173 env->gpr[3] = ret;
bellard61190b12004-01-04 23:54:31 +00001174#if 0
1175 printf("syscall returned 0x%08x (%d)\n", ret, ret);
1176#endif
bellard67867302003-11-23 17:05:30 +00001177 break;
j_mayer56ba31f2007-09-30 15:15:18 +00001178 case EXCP_INTERRUPT:
1179 /* just indicate that signals should be handled asap */
1180 break;
bellard67867302003-11-23 17:05:30 +00001181 default:
j_mayere1833e12007-09-29 13:06:16 +00001182 cpu_abort(env, "Unknown exception 0x%d. Aborting\n", trapnr);
1183 break;
bellard67867302003-11-23 17:05:30 +00001184 }
1185 process_pending_signals(env);
1186 }
1187}
1188#endif
1189
bellard048f6b42005-11-26 18:47:20 +00001190#ifdef TARGET_MIPS
1191
1192#define MIPS_SYS(name, args) args,
1193
1194static const uint8_t mips_syscall_args[] = {
1195 MIPS_SYS(sys_syscall , 0) /* 4000 */
1196 MIPS_SYS(sys_exit , 1)
1197 MIPS_SYS(sys_fork , 0)
1198 MIPS_SYS(sys_read , 3)
1199 MIPS_SYS(sys_write , 3)
1200 MIPS_SYS(sys_open , 3) /* 4005 */
1201 MIPS_SYS(sys_close , 1)
1202 MIPS_SYS(sys_waitpid , 3)
1203 MIPS_SYS(sys_creat , 2)
1204 MIPS_SYS(sys_link , 2)
1205 MIPS_SYS(sys_unlink , 1) /* 4010 */
1206 MIPS_SYS(sys_execve , 0)
1207 MIPS_SYS(sys_chdir , 1)
1208 MIPS_SYS(sys_time , 1)
1209 MIPS_SYS(sys_mknod , 3)
1210 MIPS_SYS(sys_chmod , 2) /* 4015 */
1211 MIPS_SYS(sys_lchown , 3)
1212 MIPS_SYS(sys_ni_syscall , 0)
1213 MIPS_SYS(sys_ni_syscall , 0) /* was sys_stat */
1214 MIPS_SYS(sys_lseek , 3)
1215 MIPS_SYS(sys_getpid , 0) /* 4020 */
1216 MIPS_SYS(sys_mount , 5)
1217 MIPS_SYS(sys_oldumount , 1)
1218 MIPS_SYS(sys_setuid , 1)
1219 MIPS_SYS(sys_getuid , 0)
1220 MIPS_SYS(sys_stime , 1) /* 4025 */
1221 MIPS_SYS(sys_ptrace , 4)
1222 MIPS_SYS(sys_alarm , 1)
1223 MIPS_SYS(sys_ni_syscall , 0) /* was sys_fstat */
1224 MIPS_SYS(sys_pause , 0)
1225 MIPS_SYS(sys_utime , 2) /* 4030 */
1226 MIPS_SYS(sys_ni_syscall , 0)
1227 MIPS_SYS(sys_ni_syscall , 0)
1228 MIPS_SYS(sys_access , 2)
1229 MIPS_SYS(sys_nice , 1)
1230 MIPS_SYS(sys_ni_syscall , 0) /* 4035 */
1231 MIPS_SYS(sys_sync , 0)
1232 MIPS_SYS(sys_kill , 2)
1233 MIPS_SYS(sys_rename , 2)
1234 MIPS_SYS(sys_mkdir , 2)
1235 MIPS_SYS(sys_rmdir , 1) /* 4040 */
1236 MIPS_SYS(sys_dup , 1)
1237 MIPS_SYS(sys_pipe , 0)
1238 MIPS_SYS(sys_times , 1)
1239 MIPS_SYS(sys_ni_syscall , 0)
1240 MIPS_SYS(sys_brk , 1) /* 4045 */
1241 MIPS_SYS(sys_setgid , 1)
1242 MIPS_SYS(sys_getgid , 0)
1243 MIPS_SYS(sys_ni_syscall , 0) /* was signal(2) */
1244 MIPS_SYS(sys_geteuid , 0)
1245 MIPS_SYS(sys_getegid , 0) /* 4050 */
1246 MIPS_SYS(sys_acct , 0)
1247 MIPS_SYS(sys_umount , 2)
1248 MIPS_SYS(sys_ni_syscall , 0)
1249 MIPS_SYS(sys_ioctl , 3)
1250 MIPS_SYS(sys_fcntl , 3) /* 4055 */
1251 MIPS_SYS(sys_ni_syscall , 2)
1252 MIPS_SYS(sys_setpgid , 2)
1253 MIPS_SYS(sys_ni_syscall , 0)
1254 MIPS_SYS(sys_olduname , 1)
1255 MIPS_SYS(sys_umask , 1) /* 4060 */
1256 MIPS_SYS(sys_chroot , 1)
1257 MIPS_SYS(sys_ustat , 2)
1258 MIPS_SYS(sys_dup2 , 2)
1259 MIPS_SYS(sys_getppid , 0)
1260 MIPS_SYS(sys_getpgrp , 0) /* 4065 */
1261 MIPS_SYS(sys_setsid , 0)
1262 MIPS_SYS(sys_sigaction , 3)
1263 MIPS_SYS(sys_sgetmask , 0)
1264 MIPS_SYS(sys_ssetmask , 1)
1265 MIPS_SYS(sys_setreuid , 2) /* 4070 */
1266 MIPS_SYS(sys_setregid , 2)
1267 MIPS_SYS(sys_sigsuspend , 0)
1268 MIPS_SYS(sys_sigpending , 1)
1269 MIPS_SYS(sys_sethostname , 2)
1270 MIPS_SYS(sys_setrlimit , 2) /* 4075 */
1271 MIPS_SYS(sys_getrlimit , 2)
1272 MIPS_SYS(sys_getrusage , 2)
1273 MIPS_SYS(sys_gettimeofday, 2)
1274 MIPS_SYS(sys_settimeofday, 2)
1275 MIPS_SYS(sys_getgroups , 2) /* 4080 */
1276 MIPS_SYS(sys_setgroups , 2)
1277 MIPS_SYS(sys_ni_syscall , 0) /* old_select */
1278 MIPS_SYS(sys_symlink , 2)
1279 MIPS_SYS(sys_ni_syscall , 0) /* was sys_lstat */
1280 MIPS_SYS(sys_readlink , 3) /* 4085 */
1281 MIPS_SYS(sys_uselib , 1)
1282 MIPS_SYS(sys_swapon , 2)
1283 MIPS_SYS(sys_reboot , 3)
1284 MIPS_SYS(old_readdir , 3)
1285 MIPS_SYS(old_mmap , 6) /* 4090 */
1286 MIPS_SYS(sys_munmap , 2)
1287 MIPS_SYS(sys_truncate , 2)
1288 MIPS_SYS(sys_ftruncate , 2)
1289 MIPS_SYS(sys_fchmod , 2)
1290 MIPS_SYS(sys_fchown , 3) /* 4095 */
1291 MIPS_SYS(sys_getpriority , 2)
1292 MIPS_SYS(sys_setpriority , 3)
1293 MIPS_SYS(sys_ni_syscall , 0)
1294 MIPS_SYS(sys_statfs , 2)
1295 MIPS_SYS(sys_fstatfs , 2) /* 4100 */
1296 MIPS_SYS(sys_ni_syscall , 0) /* was ioperm(2) */
1297 MIPS_SYS(sys_socketcall , 2)
1298 MIPS_SYS(sys_syslog , 3)
1299 MIPS_SYS(sys_setitimer , 3)
1300 MIPS_SYS(sys_getitimer , 2) /* 4105 */
1301 MIPS_SYS(sys_newstat , 2)
1302 MIPS_SYS(sys_newlstat , 2)
1303 MIPS_SYS(sys_newfstat , 2)
1304 MIPS_SYS(sys_uname , 1)
1305 MIPS_SYS(sys_ni_syscall , 0) /* 4110 was iopl(2) */
1306 MIPS_SYS(sys_vhangup , 0)
1307 MIPS_SYS(sys_ni_syscall , 0) /* was sys_idle() */
1308 MIPS_SYS(sys_ni_syscall , 0) /* was sys_vm86 */
1309 MIPS_SYS(sys_wait4 , 4)
1310 MIPS_SYS(sys_swapoff , 1) /* 4115 */
1311 MIPS_SYS(sys_sysinfo , 1)
1312 MIPS_SYS(sys_ipc , 6)
1313 MIPS_SYS(sys_fsync , 1)
1314 MIPS_SYS(sys_sigreturn , 0)
1315 MIPS_SYS(sys_clone , 0) /* 4120 */
1316 MIPS_SYS(sys_setdomainname, 2)
1317 MIPS_SYS(sys_newuname , 1)
1318 MIPS_SYS(sys_ni_syscall , 0) /* sys_modify_ldt */
1319 MIPS_SYS(sys_adjtimex , 1)
1320 MIPS_SYS(sys_mprotect , 3) /* 4125 */
1321 MIPS_SYS(sys_sigprocmask , 3)
1322 MIPS_SYS(sys_ni_syscall , 0) /* was create_module */
1323 MIPS_SYS(sys_init_module , 5)
1324 MIPS_SYS(sys_delete_module, 1)
1325 MIPS_SYS(sys_ni_syscall , 0) /* 4130 was get_kernel_syms */
1326 MIPS_SYS(sys_quotactl , 0)
1327 MIPS_SYS(sys_getpgid , 1)
1328 MIPS_SYS(sys_fchdir , 1)
1329 MIPS_SYS(sys_bdflush , 2)
1330 MIPS_SYS(sys_sysfs , 3) /* 4135 */
1331 MIPS_SYS(sys_personality , 1)
1332 MIPS_SYS(sys_ni_syscall , 0) /* for afs_syscall */
1333 MIPS_SYS(sys_setfsuid , 1)
1334 MIPS_SYS(sys_setfsgid , 1)
1335 MIPS_SYS(sys_llseek , 5) /* 4140 */
1336 MIPS_SYS(sys_getdents , 3)
1337 MIPS_SYS(sys_select , 5)
1338 MIPS_SYS(sys_flock , 2)
1339 MIPS_SYS(sys_msync , 3)
1340 MIPS_SYS(sys_readv , 3) /* 4145 */
1341 MIPS_SYS(sys_writev , 3)
1342 MIPS_SYS(sys_cacheflush , 3)
1343 MIPS_SYS(sys_cachectl , 3)
1344 MIPS_SYS(sys_sysmips , 4)
1345 MIPS_SYS(sys_ni_syscall , 0) /* 4150 */
1346 MIPS_SYS(sys_getsid , 1)
1347 MIPS_SYS(sys_fdatasync , 0)
1348 MIPS_SYS(sys_sysctl , 1)
1349 MIPS_SYS(sys_mlock , 2)
1350 MIPS_SYS(sys_munlock , 2) /* 4155 */
1351 MIPS_SYS(sys_mlockall , 1)
1352 MIPS_SYS(sys_munlockall , 0)
1353 MIPS_SYS(sys_sched_setparam, 2)
1354 MIPS_SYS(sys_sched_getparam, 2)
1355 MIPS_SYS(sys_sched_setscheduler, 3) /* 4160 */
1356 MIPS_SYS(sys_sched_getscheduler, 1)
1357 MIPS_SYS(sys_sched_yield , 0)
1358 MIPS_SYS(sys_sched_get_priority_max, 1)
1359 MIPS_SYS(sys_sched_get_priority_min, 1)
1360 MIPS_SYS(sys_sched_rr_get_interval, 2) /* 4165 */
1361 MIPS_SYS(sys_nanosleep, 2)
1362 MIPS_SYS(sys_mremap , 4)
1363 MIPS_SYS(sys_accept , 3)
1364 MIPS_SYS(sys_bind , 3)
1365 MIPS_SYS(sys_connect , 3) /* 4170 */
1366 MIPS_SYS(sys_getpeername , 3)
1367 MIPS_SYS(sys_getsockname , 3)
1368 MIPS_SYS(sys_getsockopt , 5)
1369 MIPS_SYS(sys_listen , 2)
1370 MIPS_SYS(sys_recv , 4) /* 4175 */
1371 MIPS_SYS(sys_recvfrom , 6)
1372 MIPS_SYS(sys_recvmsg , 3)
1373 MIPS_SYS(sys_send , 4)
1374 MIPS_SYS(sys_sendmsg , 3)
1375 MIPS_SYS(sys_sendto , 6) /* 4180 */
1376 MIPS_SYS(sys_setsockopt , 5)
1377 MIPS_SYS(sys_shutdown , 2)
1378 MIPS_SYS(sys_socket , 3)
1379 MIPS_SYS(sys_socketpair , 4)
1380 MIPS_SYS(sys_setresuid , 3) /* 4185 */
1381 MIPS_SYS(sys_getresuid , 3)
1382 MIPS_SYS(sys_ni_syscall , 0) /* was sys_query_module */
1383 MIPS_SYS(sys_poll , 3)
1384 MIPS_SYS(sys_nfsservctl , 3)
1385 MIPS_SYS(sys_setresgid , 3) /* 4190 */
1386 MIPS_SYS(sys_getresgid , 3)
1387 MIPS_SYS(sys_prctl , 5)
1388 MIPS_SYS(sys_rt_sigreturn, 0)
1389 MIPS_SYS(sys_rt_sigaction, 4)
1390 MIPS_SYS(sys_rt_sigprocmask, 4) /* 4195 */
1391 MIPS_SYS(sys_rt_sigpending, 2)
1392 MIPS_SYS(sys_rt_sigtimedwait, 4)
1393 MIPS_SYS(sys_rt_sigqueueinfo, 3)
1394 MIPS_SYS(sys_rt_sigsuspend, 0)
1395 MIPS_SYS(sys_pread64 , 6) /* 4200 */
1396 MIPS_SYS(sys_pwrite64 , 6)
1397 MIPS_SYS(sys_chown , 3)
1398 MIPS_SYS(sys_getcwd , 2)
1399 MIPS_SYS(sys_capget , 2)
1400 MIPS_SYS(sys_capset , 2) /* 4205 */
1401 MIPS_SYS(sys_sigaltstack , 0)
1402 MIPS_SYS(sys_sendfile , 4)
1403 MIPS_SYS(sys_ni_syscall , 0)
1404 MIPS_SYS(sys_ni_syscall , 0)
1405 MIPS_SYS(sys_mmap2 , 6) /* 4210 */
1406 MIPS_SYS(sys_truncate64 , 4)
1407 MIPS_SYS(sys_ftruncate64 , 4)
1408 MIPS_SYS(sys_stat64 , 2)
1409 MIPS_SYS(sys_lstat64 , 2)
1410 MIPS_SYS(sys_fstat64 , 2) /* 4215 */
1411 MIPS_SYS(sys_pivot_root , 2)
1412 MIPS_SYS(sys_mincore , 3)
1413 MIPS_SYS(sys_madvise , 3)
1414 MIPS_SYS(sys_getdents64 , 3)
1415 MIPS_SYS(sys_fcntl64 , 3) /* 4220 */
1416 MIPS_SYS(sys_ni_syscall , 0)
1417 MIPS_SYS(sys_gettid , 0)
1418 MIPS_SYS(sys_readahead , 5)
1419 MIPS_SYS(sys_setxattr , 5)
1420 MIPS_SYS(sys_lsetxattr , 5) /* 4225 */
1421 MIPS_SYS(sys_fsetxattr , 5)
1422 MIPS_SYS(sys_getxattr , 4)
1423 MIPS_SYS(sys_lgetxattr , 4)
1424 MIPS_SYS(sys_fgetxattr , 4)
1425 MIPS_SYS(sys_listxattr , 3) /* 4230 */
1426 MIPS_SYS(sys_llistxattr , 3)
1427 MIPS_SYS(sys_flistxattr , 3)
1428 MIPS_SYS(sys_removexattr , 2)
1429 MIPS_SYS(sys_lremovexattr, 2)
1430 MIPS_SYS(sys_fremovexattr, 2) /* 4235 */
1431 MIPS_SYS(sys_tkill , 2)
1432 MIPS_SYS(sys_sendfile64 , 5)
1433 MIPS_SYS(sys_futex , 2)
1434 MIPS_SYS(sys_sched_setaffinity, 3)
1435 MIPS_SYS(sys_sched_getaffinity, 3) /* 4240 */
1436 MIPS_SYS(sys_io_setup , 2)
1437 MIPS_SYS(sys_io_destroy , 1)
1438 MIPS_SYS(sys_io_getevents, 5)
1439 MIPS_SYS(sys_io_submit , 3)
1440 MIPS_SYS(sys_io_cancel , 3) /* 4245 */
1441 MIPS_SYS(sys_exit_group , 1)
1442 MIPS_SYS(sys_lookup_dcookie, 3)
1443 MIPS_SYS(sys_epoll_create, 1)
1444 MIPS_SYS(sys_epoll_ctl , 4)
1445 MIPS_SYS(sys_epoll_wait , 3) /* 4250 */
1446 MIPS_SYS(sys_remap_file_pages, 5)
1447 MIPS_SYS(sys_set_tid_address, 1)
1448 MIPS_SYS(sys_restart_syscall, 0)
1449 MIPS_SYS(sys_fadvise64_64, 7)
1450 MIPS_SYS(sys_statfs64 , 3) /* 4255 */
1451 MIPS_SYS(sys_fstatfs64 , 2)
1452 MIPS_SYS(sys_timer_create, 3)
1453 MIPS_SYS(sys_timer_settime, 4)
1454 MIPS_SYS(sys_timer_gettime, 2)
1455 MIPS_SYS(sys_timer_getoverrun, 1) /* 4260 */
1456 MIPS_SYS(sys_timer_delete, 1)
1457 MIPS_SYS(sys_clock_settime, 2)
1458 MIPS_SYS(sys_clock_gettime, 2)
1459 MIPS_SYS(sys_clock_getres, 2)
1460 MIPS_SYS(sys_clock_nanosleep, 4) /* 4265 */
1461 MIPS_SYS(sys_tgkill , 3)
1462 MIPS_SYS(sys_utimes , 2)
1463 MIPS_SYS(sys_mbind , 4)
1464 MIPS_SYS(sys_ni_syscall , 0) /* sys_get_mempolicy */
1465 MIPS_SYS(sys_ni_syscall , 0) /* 4270 sys_set_mempolicy */
1466 MIPS_SYS(sys_mq_open , 4)
1467 MIPS_SYS(sys_mq_unlink , 1)
1468 MIPS_SYS(sys_mq_timedsend, 5)
1469 MIPS_SYS(sys_mq_timedreceive, 5)
1470 MIPS_SYS(sys_mq_notify , 2) /* 4275 */
1471 MIPS_SYS(sys_mq_getsetattr, 3)
1472 MIPS_SYS(sys_ni_syscall , 0) /* sys_vserver */
1473 MIPS_SYS(sys_waitid , 4)
1474 MIPS_SYS(sys_ni_syscall , 0) /* available, was setaltroot */
1475 MIPS_SYS(sys_add_key , 5)
ths388bb212007-05-13 13:58:00 +00001476 MIPS_SYS(sys_request_key, 4)
bellard048f6b42005-11-26 18:47:20 +00001477 MIPS_SYS(sys_keyctl , 5)
ths6f5b89a2007-03-02 20:48:00 +00001478 MIPS_SYS(sys_set_thread_area, 1)
ths388bb212007-05-13 13:58:00 +00001479 MIPS_SYS(sys_inotify_init, 0)
1480 MIPS_SYS(sys_inotify_add_watch, 3) /* 4285 */
1481 MIPS_SYS(sys_inotify_rm_watch, 2)
1482 MIPS_SYS(sys_migrate_pages, 4)
1483 MIPS_SYS(sys_openat, 4)
1484 MIPS_SYS(sys_mkdirat, 3)
1485 MIPS_SYS(sys_mknodat, 4) /* 4290 */
1486 MIPS_SYS(sys_fchownat, 5)
1487 MIPS_SYS(sys_futimesat, 3)
1488 MIPS_SYS(sys_fstatat64, 4)
1489 MIPS_SYS(sys_unlinkat, 3)
1490 MIPS_SYS(sys_renameat, 4) /* 4295 */
1491 MIPS_SYS(sys_linkat, 5)
1492 MIPS_SYS(sys_symlinkat, 3)
1493 MIPS_SYS(sys_readlinkat, 4)
1494 MIPS_SYS(sys_fchmodat, 3)
1495 MIPS_SYS(sys_faccessat, 3) /* 4300 */
1496 MIPS_SYS(sys_pselect6, 6)
1497 MIPS_SYS(sys_ppoll, 5)
1498 MIPS_SYS(sys_unshare, 1)
1499 MIPS_SYS(sys_splice, 4)
1500 MIPS_SYS(sys_sync_file_range, 7) /* 4305 */
1501 MIPS_SYS(sys_tee, 4)
1502 MIPS_SYS(sys_vmsplice, 4)
1503 MIPS_SYS(sys_move_pages, 6)
1504 MIPS_SYS(sys_set_robust_list, 2)
1505 MIPS_SYS(sys_get_robust_list, 3) /* 4310 */
1506 MIPS_SYS(sys_kexec_load, 4)
1507 MIPS_SYS(sys_getcpu, 3)
1508 MIPS_SYS(sys_epoll_pwait, 6)
1509 MIPS_SYS(sys_ioprio_set, 3)
1510 MIPS_SYS(sys_ioprio_get, 2)
bellard048f6b42005-11-26 18:47:20 +00001511};
1512
1513#undef MIPS_SYS
1514
1515void cpu_loop(CPUMIPSState *env)
1516{
1517 target_siginfo_t info;
ths388bb212007-05-13 13:58:00 +00001518 int trapnr, ret;
bellard048f6b42005-11-26 18:47:20 +00001519 unsigned int syscall_num;
bellard048f6b42005-11-26 18:47:20 +00001520
1521 for(;;) {
1522 trapnr = cpu_mips_exec(env);
1523 switch(trapnr) {
1524 case EXCP_SYSCALL:
thsd0dc7dc2008-02-12 21:01:26 +00001525 syscall_num = env->gpr[env->current_tc][2] - 4000;
thsead93602007-09-06 00:18:15 +00001526 env->PC[env->current_tc] += 4;
ths388bb212007-05-13 13:58:00 +00001527 if (syscall_num >= sizeof(mips_syscall_args)) {
1528 ret = -ENOSYS;
1529 } else {
1530 int nb_args;
blueswir1992f48a2007-10-14 16:27:31 +00001531 abi_ulong sp_reg;
1532 abi_ulong arg5 = 0, arg6 = 0, arg7 = 0, arg8 = 0;
ths388bb212007-05-13 13:58:00 +00001533
1534 nb_args = mips_syscall_args[syscall_num];
thsd0dc7dc2008-02-12 21:01:26 +00001535 sp_reg = env->gpr[env->current_tc][29];
ths388bb212007-05-13 13:58:00 +00001536 switch (nb_args) {
1537 /* these arguments are taken from the stack */
bellard2f619692007-11-16 10:46:05 +00001538 /* FIXME - what to do if get_user() fails? */
1539 case 8: get_user_ual(arg8, sp_reg + 28);
1540 case 7: get_user_ual(arg7, sp_reg + 24);
1541 case 6: get_user_ual(arg6, sp_reg + 20);
1542 case 5: get_user_ual(arg5, sp_reg + 16);
ths388bb212007-05-13 13:58:00 +00001543 default:
1544 break;
bellard048f6b42005-11-26 18:47:20 +00001545 }
thsd0dc7dc2008-02-12 21:01:26 +00001546 ret = do_syscall(env, env->gpr[env->current_tc][2],
1547 env->gpr[env->current_tc][4],
1548 env->gpr[env->current_tc][5],
1549 env->gpr[env->current_tc][6],
1550 env->gpr[env->current_tc][7],
ths388bb212007-05-13 13:58:00 +00001551 arg5, arg6/*, arg7, arg8*/);
bellard048f6b42005-11-26 18:47:20 +00001552 }
ths388bb212007-05-13 13:58:00 +00001553 if ((unsigned int)ret >= (unsigned int)(-1133)) {
thsd0dc7dc2008-02-12 21:01:26 +00001554 env->gpr[env->current_tc][7] = 1; /* error flag */
ths388bb212007-05-13 13:58:00 +00001555 ret = -ret;
1556 } else {
thsd0dc7dc2008-02-12 21:01:26 +00001557 env->gpr[env->current_tc][7] = 0; /* error flag */
ths388bb212007-05-13 13:58:00 +00001558 }
thsd0dc7dc2008-02-12 21:01:26 +00001559 env->gpr[env->current_tc][2] = ret;
bellard048f6b42005-11-26 18:47:20 +00001560 break;
thsca7c2b12006-12-10 22:08:10 +00001561 case EXCP_TLBL:
1562 case EXCP_TLBS:
bellard6900e842005-12-05 21:04:24 +00001563 case EXCP_CpU:
bellard048f6b42005-11-26 18:47:20 +00001564 case EXCP_RI:
bellardbc1ad2d2006-06-14 13:37:55 +00001565 info.si_signo = TARGET_SIGILL;
1566 info.si_errno = 0;
1567 info.si_code = 0;
1568 queue_signal(info.si_signo, &info);
bellard048f6b42005-11-26 18:47:20 +00001569 break;
bellard106ec872006-06-27 21:08:10 +00001570 case EXCP_INTERRUPT:
1571 /* just indicate that signals should be handled asap */
1572 break;
pbrookd08b2a22006-11-04 16:46:29 +00001573 case EXCP_DEBUG:
1574 {
1575 int sig;
1576
1577 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1578 if (sig)
1579 {
1580 info.si_signo = sig;
1581 info.si_errno = 0;
1582 info.si_code = TARGET_TRAP_BRKPT;
1583 queue_signal(info.si_signo, &info);
1584 }
1585 }
1586 break;
bellard048f6b42005-11-26 18:47:20 +00001587 default:
1588 // error:
ths5fafdf22007-09-16 21:08:06 +00001589 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
bellard048f6b42005-11-26 18:47:20 +00001590 trapnr);
1591 cpu_dump_state(env, stderr, fprintf, 0);
1592 abort();
1593 }
1594 process_pending_signals(env);
1595 }
1596}
1597#endif
1598
bellardfdf9b3e2006-04-27 21:07:38 +00001599#ifdef TARGET_SH4
1600void cpu_loop (CPUState *env)
1601{
1602 int trapnr, ret;
pbrook355fb232006-06-17 19:58:25 +00001603 target_siginfo_t info;
ths3b46e622007-09-17 08:09:54 +00001604
bellardfdf9b3e2006-04-27 21:07:38 +00001605 while (1) {
1606 trapnr = cpu_sh4_exec (env);
ths3b46e622007-09-17 08:09:54 +00001607
bellardfdf9b3e2006-04-27 21:07:38 +00001608 switch (trapnr) {
1609 case 0x160:
ths5fafdf22007-09-16 21:08:06 +00001610 ret = do_syscall(env,
1611 env->gregs[3],
1612 env->gregs[4],
1613 env->gregs[5],
1614 env->gregs[6],
1615 env->gregs[7],
1616 env->gregs[0],
thsfca743f2007-11-20 15:22:44 +00001617 env->gregs[1]);
pbrook9c2a9ea2006-06-18 19:12:54 +00001618 env->gregs[0] = ret;
bellardfdf9b3e2006-04-27 21:07:38 +00001619 env->pc += 2;
1620 break;
thsc3b5bc82007-12-02 06:31:25 +00001621 case EXCP_INTERRUPT:
1622 /* just indicate that signals should be handled asap */
1623 break;
pbrook355fb232006-06-17 19:58:25 +00001624 case EXCP_DEBUG:
1625 {
1626 int sig;
1627
1628 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1629 if (sig)
1630 {
1631 info.si_signo = sig;
1632 info.si_errno = 0;
1633 info.si_code = TARGET_TRAP_BRKPT;
1634 queue_signal(info.si_signo, &info);
1635 }
1636 }
1637 break;
thsc3b5bc82007-12-02 06:31:25 +00001638 case 0xa0:
1639 case 0xc0:
1640 info.si_signo = SIGSEGV;
1641 info.si_errno = 0;
1642 info.si_code = TARGET_SEGV_MAPERR;
1643 info._sifields._sigfault._addr = env->tea;
1644 queue_signal(info.si_signo, &info);
1645 break;
1646
bellardfdf9b3e2006-04-27 21:07:38 +00001647 default:
1648 printf ("Unhandled trap: 0x%x\n", trapnr);
1649 cpu_dump_state(env, stderr, fprintf, 0);
1650 exit (1);
1651 }
1652 process_pending_signals (env);
1653 }
1654}
1655#endif
1656
ths48733d12007-10-08 13:36:46 +00001657#ifdef TARGET_CRIS
1658void cpu_loop (CPUState *env)
1659{
1660 int trapnr, ret;
1661 target_siginfo_t info;
1662
1663 while (1) {
1664 trapnr = cpu_cris_exec (env);
1665 switch (trapnr) {
1666 case 0xaa:
1667 {
1668 info.si_signo = SIGSEGV;
1669 info.si_errno = 0;
1670 /* XXX: check env->error_code */
1671 info.si_code = TARGET_SEGV_MAPERR;
1672 info._sifields._sigfault._addr = env->debug1;
1673 queue_signal(info.si_signo, &info);
1674 }
1675 break;
edgar_iglb6d3abd2008-02-28 11:29:27 +00001676 case EXCP_INTERRUPT:
1677 /* just indicate that signals should be handled asap */
1678 break;
ths48733d12007-10-08 13:36:46 +00001679 case EXCP_BREAK:
1680 ret = do_syscall(env,
1681 env->regs[9],
1682 env->regs[10],
1683 env->regs[11],
1684 env->regs[12],
1685 env->regs[13],
1686 env->pregs[7],
1687 env->pregs[11]);
1688 env->regs[10] = ret;
1689 env->pc += 2;
1690 break;
1691 case EXCP_DEBUG:
1692 {
1693 int sig;
1694
1695 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1696 if (sig)
1697 {
1698 info.si_signo = sig;
1699 info.si_errno = 0;
1700 info.si_code = TARGET_TRAP_BRKPT;
1701 queue_signal(info.si_signo, &info);
1702 }
1703 }
1704 break;
1705 default:
1706 printf ("Unhandled trap: 0x%x\n", trapnr);
1707 cpu_dump_state(env, stderr, fprintf, 0);
1708 exit (1);
1709 }
1710 process_pending_signals (env);
1711 }
1712}
1713#endif
1714
pbrooke6e59062006-10-22 00:18:54 +00001715#ifdef TARGET_M68K
1716
1717void cpu_loop(CPUM68KState *env)
1718{
1719 int trapnr;
1720 unsigned int n;
1721 target_siginfo_t info;
1722 TaskState *ts = env->opaque;
ths3b46e622007-09-17 08:09:54 +00001723
pbrooke6e59062006-10-22 00:18:54 +00001724 for(;;) {
1725 trapnr = cpu_m68k_exec(env);
1726 switch(trapnr) {
1727 case EXCP_ILLEGAL:
1728 {
1729 if (ts->sim_syscalls) {
1730 uint16_t nr;
1731 nr = lduw(env->pc + 2);
1732 env->pc += 4;
1733 do_m68k_simcall(env, nr);
1734 } else {
1735 goto do_sigill;
1736 }
1737 }
1738 break;
pbrooka87295e2007-05-26 15:09:38 +00001739 case EXCP_HALT_INSN:
pbrooke6e59062006-10-22 00:18:54 +00001740 /* Semihosing syscall. */
pbrooka87295e2007-05-26 15:09:38 +00001741 env->pc += 4;
pbrooke6e59062006-10-22 00:18:54 +00001742 do_m68k_semihosting(env, env->dregs[0]);
1743 break;
1744 case EXCP_LINEA:
1745 case EXCP_LINEF:
1746 case EXCP_UNSUPPORTED:
1747 do_sigill:
1748 info.si_signo = SIGILL;
1749 info.si_errno = 0;
1750 info.si_code = TARGET_ILL_ILLOPN;
1751 info._sifields._sigfault._addr = env->pc;
1752 queue_signal(info.si_signo, &info);
1753 break;
1754 case EXCP_TRAP0:
1755 {
1756 ts->sim_syscalls = 0;
1757 n = env->dregs[0];
1758 env->pc += 2;
ths5fafdf22007-09-16 21:08:06 +00001759 env->dregs[0] = do_syscall(env,
1760 n,
pbrooke6e59062006-10-22 00:18:54 +00001761 env->dregs[1],
1762 env->dregs[2],
1763 env->dregs[3],
1764 env->dregs[4],
1765 env->dregs[5],
1766 env->dregs[6]);
1767 }
1768 break;
1769 case EXCP_INTERRUPT:
1770 /* just indicate that signals should be handled asap */
1771 break;
1772 case EXCP_ACCESS:
1773 {
1774 info.si_signo = SIGSEGV;
1775 info.si_errno = 0;
1776 /* XXX: check env->error_code */
1777 info.si_code = TARGET_SEGV_MAPERR;
1778 info._sifields._sigfault._addr = env->mmu.ar;
1779 queue_signal(info.si_signo, &info);
1780 }
1781 break;
1782 case EXCP_DEBUG:
1783 {
1784 int sig;
1785
1786 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1787 if (sig)
1788 {
1789 info.si_signo = sig;
1790 info.si_errno = 0;
1791 info.si_code = TARGET_TRAP_BRKPT;
1792 queue_signal(info.si_signo, &info);
1793 }
1794 }
1795 break;
1796 default:
ths5fafdf22007-09-16 21:08:06 +00001797 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
pbrooke6e59062006-10-22 00:18:54 +00001798 trapnr);
1799 cpu_dump_state(env, stderr, fprintf, 0);
1800 abort();
1801 }
1802 process_pending_signals(env);
1803 }
1804}
1805#endif /* TARGET_M68K */
1806
j_mayer7a3148a2007-04-05 07:13:51 +00001807#ifdef TARGET_ALPHA
1808void cpu_loop (CPUState *env)
1809{
j_mayere96efcf2007-04-14 12:17:09 +00001810 int trapnr;
j_mayer7a3148a2007-04-05 07:13:51 +00001811 target_siginfo_t info;
ths3b46e622007-09-17 08:09:54 +00001812
j_mayer7a3148a2007-04-05 07:13:51 +00001813 while (1) {
1814 trapnr = cpu_alpha_exec (env);
ths3b46e622007-09-17 08:09:54 +00001815
j_mayer7a3148a2007-04-05 07:13:51 +00001816 switch (trapnr) {
1817 case EXCP_RESET:
1818 fprintf(stderr, "Reset requested. Exit\n");
1819 exit(1);
1820 break;
1821 case EXCP_MCHK:
1822 fprintf(stderr, "Machine check exception. Exit\n");
1823 exit(1);
1824 break;
1825 case EXCP_ARITH:
1826 fprintf(stderr, "Arithmetic trap.\n");
1827 exit(1);
1828 break;
1829 case EXCP_HW_INTERRUPT:
ths5fafdf22007-09-16 21:08:06 +00001830 fprintf(stderr, "External interrupt. Exit\n");
j_mayer7a3148a2007-04-05 07:13:51 +00001831 exit(1);
1832 break;
1833 case EXCP_DFAULT:
1834 fprintf(stderr, "MMU data fault\n");
1835 exit(1);
1836 break;
1837 case EXCP_DTB_MISS_PAL:
1838 fprintf(stderr, "MMU data TLB miss in PALcode\n");
1839 exit(1);
1840 break;
1841 case EXCP_ITB_MISS:
1842 fprintf(stderr, "MMU instruction TLB miss\n");
1843 exit(1);
1844 break;
1845 case EXCP_ITB_ACV:
1846 fprintf(stderr, "MMU instruction access violation\n");
1847 exit(1);
1848 break;
1849 case EXCP_DTB_MISS_NATIVE:
1850 fprintf(stderr, "MMU data TLB miss\n");
1851 exit(1);
1852 break;
1853 case EXCP_UNALIGN:
1854 fprintf(stderr, "Unaligned access\n");
1855 exit(1);
1856 break;
1857 case EXCP_OPCDEC:
1858 fprintf(stderr, "Invalid instruction\n");
1859 exit(1);
1860 break;
1861 case EXCP_FEN:
1862 fprintf(stderr, "Floating-point not allowed\n");
1863 exit(1);
1864 break;
1865 case EXCP_CALL_PAL ... (EXCP_CALL_PALP - 1):
1866 fprintf(stderr, "Call to PALcode\n");
1867 call_pal(env, (trapnr >> 6) | 0x80);
1868 break;
1869 case EXCP_CALL_PALP ... (EXCP_CALL_PALE - 1):
blueswir17f75ffd2007-05-27 19:39:27 +00001870 fprintf(stderr, "Privileged call to PALcode\n");
j_mayer7a3148a2007-04-05 07:13:51 +00001871 exit(1);
1872 break;
1873 case EXCP_DEBUG:
1874 {
1875 int sig;
1876
1877 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1878 if (sig)
1879 {
1880 info.si_signo = sig;
1881 info.si_errno = 0;
1882 info.si_code = TARGET_TRAP_BRKPT;
1883 queue_signal(info.si_signo, &info);
1884 }
1885 }
1886 break;
1887 default:
1888 printf ("Unhandled trap: 0x%x\n", trapnr);
1889 cpu_dump_state(env, stderr, fprintf, 0);
1890 exit (1);
1891 }
1892 process_pending_signals (env);
1893 }
1894}
1895#endif /* TARGET_ALPHA */
1896
bellard31e31b82003-02-18 22:55:36 +00001897void usage(void)
1898{
bellard68d0f702008-01-06 17:21:48 +00001899 printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n"
1900 "usage: qemu-" TARGET_ARCH " [options] program [arguments...]\n"
bellardb346ff42003-06-15 20:05:50 +00001901 "Linux CPU emulator (compiled for %s emulation)\n"
bellardd691f662003-03-24 21:58:34 +00001902 "\n"
bellard68d0f702008-01-06 17:21:48 +00001903 "Standard options:\n"
thsb12b6a12007-06-17 16:38:39 +00001904 "-h print this help\n"
1905 "-g port wait gdb connection to port\n"
1906 "-L path set the elf interpreter prefix (default=%s)\n"
1907 "-s size set the stack size in bytes (default=%ld)\n"
1908 "-cpu model select CPU (-cpu ? for list)\n"
1909 "-drop-ld-preload drop LD_PRELOAD for target process\n"
bellard54936002003-05-13 00:25:15 +00001910 "\n"
bellard68d0f702008-01-06 17:21:48 +00001911 "Debug options:\n"
bellard6f1f31c2004-04-25 18:00:45 +00001912 "-d options activate log (logfile=%s)\n"
bellardb6741952007-11-11 14:46:06 +00001913 "-p pagesize set the host page size to 'pagesize'\n"
balrogb01bcae2007-12-16 13:05:59 +00001914 "-strace log system calls\n"
1915 "\n"
bellard68d0f702008-01-06 17:21:48 +00001916 "Environment variables:\n"
balrogb01bcae2007-12-16 13:05:59 +00001917 "QEMU_STRACE Print system calls and arguments similar to the\n"
1918 " 'strace' program. Enable by setting to any value.\n"
1919 ,
bellardb346ff42003-06-15 20:05:50 +00001920 TARGET_ARCH,
ths5fafdf22007-09-16 21:08:06 +00001921 interp_prefix,
bellard54936002003-05-13 00:25:15 +00001922 x86_stack_size,
1923 DEBUG_LOGFILE);
bellard74cd30b2003-04-11 00:13:41 +00001924 _exit(1);
bellard31e31b82003-02-18 22:55:36 +00001925}
1926
bellard9de5e442003-03-23 16:49:39 +00001927/* XXX: currently only used for async signals (see signal.c) */
bellardb346ff42003-06-15 20:05:50 +00001928CPUState *global_env;
bellard59faf6d2003-06-25 16:18:50 +00001929
bellard851e67a2003-03-29 16:53:14 +00001930/* used to free thread contexts */
1931TaskState *first_task_state;
bellard9de5e442003-03-23 16:49:39 +00001932
bellard31e31b82003-02-18 22:55:36 +00001933int main(int argc, char **argv)
1934{
1935 const char *filename;
j_mayerb1f9be32007-03-19 08:08:28 +00001936 const char *cpu_model;
bellard01ffc752003-02-18 23:00:51 +00001937 struct target_pt_regs regs1, *regs = &regs1;
bellard31e31b82003-02-18 22:55:36 +00001938 struct image_info info1, *info = &info1;
bellard851e67a2003-03-29 16:53:14 +00001939 TaskState ts1, *ts = &ts1;
bellardb346ff42003-06-15 20:05:50 +00001940 CPUState *env;
bellard586314f2003-03-03 15:02:29 +00001941 int optind;
bellardd691f662003-03-24 21:58:34 +00001942 const char *r;
bellard74c33be2005-10-30 21:01:05 +00001943 int gdbstub_port = 0;
thsb12b6a12007-06-17 16:38:39 +00001944 int drop_ld_preload = 0, environ_count = 0;
1945 char **target_environ, **wrk, **dst;
1946
bellard31e31b82003-02-18 22:55:36 +00001947 if (argc <= 1)
1948 usage();
bellardf801f972003-04-07 21:31:06 +00001949
bellardcc38b842003-10-27 21:16:14 +00001950 /* init debug */
1951 cpu_set_log_filename(DEBUG_LOGFILE);
1952
j_mayerb1f9be32007-03-19 08:08:28 +00001953 cpu_model = NULL;
bellard586314f2003-03-03 15:02:29 +00001954 optind = 1;
bellardd691f662003-03-24 21:58:34 +00001955 for(;;) {
1956 if (optind >= argc)
1957 break;
1958 r = argv[optind];
1959 if (r[0] != '-')
1960 break;
bellard586314f2003-03-03 15:02:29 +00001961 optind++;
bellardd691f662003-03-24 21:58:34 +00001962 r++;
1963 if (!strcmp(r, "-")) {
1964 break;
1965 } else if (!strcmp(r, "d")) {
bellarde19e89a2004-03-21 17:08:23 +00001966 int mask;
1967 CPULogItem *item;
bellard6f1f31c2004-04-25 18:00:45 +00001968
1969 if (optind >= argc)
1970 break;
ths3b46e622007-09-17 08:09:54 +00001971
bellard6f1f31c2004-04-25 18:00:45 +00001972 r = argv[optind++];
1973 mask = cpu_str_to_log_mask(r);
bellarde19e89a2004-03-21 17:08:23 +00001974 if (!mask) {
1975 printf("Log items (comma separated):\n");
1976 for(item = cpu_log_items; item->mask != 0; item++) {
1977 printf("%-10s %s\n", item->name, item->help);
1978 }
1979 exit(1);
1980 }
1981 cpu_set_log(mask);
bellardd691f662003-03-24 21:58:34 +00001982 } else if (!strcmp(r, "s")) {
1983 r = argv[optind++];
1984 x86_stack_size = strtol(r, (char **)&r, 0);
1985 if (x86_stack_size <= 0)
1986 usage();
1987 if (*r == 'M')
1988 x86_stack_size *= 1024 * 1024;
1989 else if (*r == 'k' || *r == 'K')
1990 x86_stack_size *= 1024;
1991 } else if (!strcmp(r, "L")) {
1992 interp_prefix = argv[optind++];
bellard54936002003-05-13 00:25:15 +00001993 } else if (!strcmp(r, "p")) {
bellard83fb7ad2004-07-05 21:25:26 +00001994 qemu_host_page_size = atoi(argv[optind++]);
1995 if (qemu_host_page_size == 0 ||
1996 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
bellard54936002003-05-13 00:25:15 +00001997 fprintf(stderr, "page size must be a power of two\n");
1998 exit(1);
1999 }
bellard1fddef42005-04-17 19:16:13 +00002000 } else if (!strcmp(r, "g")) {
bellard74c33be2005-10-30 21:01:05 +00002001 gdbstub_port = atoi(argv[optind++]);
pbrookc5937222006-05-14 11:30:38 +00002002 } else if (!strcmp(r, "r")) {
2003 qemu_uname_release = argv[optind++];
j_mayerb1f9be32007-03-19 08:08:28 +00002004 } else if (!strcmp(r, "cpu")) {
2005 cpu_model = argv[optind++];
2006 if (strcmp(cpu_model, "?") == 0) {
j_mayerc732abe2007-10-12 06:47:46 +00002007/* XXX: implement xxx_cpu_list for targets that still miss it */
2008#if defined(cpu_list)
2009 cpu_list(stdout, &fprintf);
j_mayerb1f9be32007-03-19 08:08:28 +00002010#endif
thscff4cbe2007-03-19 12:16:29 +00002011 _exit(1);
j_mayerb1f9be32007-03-19 08:08:28 +00002012 }
thsb12b6a12007-06-17 16:38:39 +00002013 } else if (!strcmp(r, "drop-ld-preload")) {
2014 drop_ld_preload = 1;
bellardb6741952007-11-11 14:46:06 +00002015 } else if (!strcmp(r, "strace")) {
2016 do_strace = 1;
ths5fafdf22007-09-16 21:08:06 +00002017 } else
bellardc6981052004-02-16 21:49:03 +00002018 {
bellardd691f662003-03-24 21:58:34 +00002019 usage();
2020 }
bellard586314f2003-03-03 15:02:29 +00002021 }
bellardd691f662003-03-24 21:58:34 +00002022 if (optind >= argc)
2023 usage();
bellard586314f2003-03-03 15:02:29 +00002024 filename = argv[optind];
2025
bellard31e31b82003-02-18 22:55:36 +00002026 /* Zero out regs */
bellard01ffc752003-02-18 23:00:51 +00002027 memset(regs, 0, sizeof(struct target_pt_regs));
bellard31e31b82003-02-18 22:55:36 +00002028
2029 /* Zero out image_info */
2030 memset(info, 0, sizeof(struct image_info));
2031
bellard74cd30b2003-04-11 00:13:41 +00002032 /* Scan interp_prefix dir for replacement files. */
2033 init_paths(interp_prefix);
2034
bellard46027c02007-11-08 13:56:19 +00002035 if (cpu_model == NULL) {
bellardaaed9092007-11-10 15:15:54 +00002036#if defined(TARGET_I386)
bellard46027c02007-11-08 13:56:19 +00002037#ifdef TARGET_X86_64
2038 cpu_model = "qemu64";
2039#else
2040 cpu_model = "qemu32";
2041#endif
bellardaaed9092007-11-10 15:15:54 +00002042#elif defined(TARGET_ARM)
2043 cpu_model = "arm926";
2044#elif defined(TARGET_M68K)
2045 cpu_model = "any";
2046#elif defined(TARGET_SPARC)
2047#ifdef TARGET_SPARC64
2048 cpu_model = "TI UltraSparc II";
2049#else
2050 cpu_model = "Fujitsu MB86904";
bellard46027c02007-11-08 13:56:19 +00002051#endif
bellardaaed9092007-11-10 15:15:54 +00002052#elif defined(TARGET_MIPS)
2053#if defined(TARGET_ABI_MIPSN32) || defined(TARGET_ABI_MIPSN64)
2054 cpu_model = "20Kc";
2055#else
2056 cpu_model = "24Kf";
2057#endif
2058#elif defined(TARGET_PPC)
bellard7ded4f52007-11-15 15:37:50 +00002059#ifdef TARGET_PPC64
2060 cpu_model = "970";
2061#else
bellardaaed9092007-11-10 15:15:54 +00002062 cpu_model = "750";
bellard7ded4f52007-11-15 15:37:50 +00002063#endif
bellardaaed9092007-11-10 15:15:54 +00002064#else
2065 cpu_model = "any";
2066#endif
2067 }
bellard83fb7ad2004-07-05 21:25:26 +00002068 /* NOTE: we need to init the CPU at this stage to get
2069 qemu_host_page_size */
bellardaaed9092007-11-10 15:15:54 +00002070 env = cpu_init(cpu_model);
2071 if (!env) {
2072 fprintf(stderr, "Unable to find CPU definition\n");
2073 exit(1);
2074 }
bellard15338fd2005-11-26 11:41:16 +00002075 global_env = env;
ths3b46e622007-09-17 08:09:54 +00002076
bellardb6741952007-11-11 14:46:06 +00002077 if (getenv("QEMU_STRACE")) {
2078 do_strace = 1;
thsb92c47c2007-11-01 00:07:38 +00002079 }
2080
thsb12b6a12007-06-17 16:38:39 +00002081 wrk = environ;
2082 while (*(wrk++))
2083 environ_count++;
2084
2085 target_environ = malloc((environ_count + 1) * sizeof(char *));
2086 if (!target_environ)
2087 abort();
2088 for (wrk = environ, dst = target_environ; *wrk; wrk++) {
2089 if (drop_ld_preload && !strncmp(*wrk, "LD_PRELOAD=", 11))
2090 continue;
2091 *(dst++) = strdup(*wrk);
2092 }
ths403f14e2007-06-27 11:12:42 +00002093 *dst = NULL; /* NULL terminate target_environ */
thsb12b6a12007-06-17 16:38:39 +00002094
2095 if (loader_exec(filename, argv+optind, target_environ, regs, info) != 0) {
2096 printf("Error loading %s\n", filename);
2097 _exit(1);
2098 }
2099
2100 for (wrk = target_environ; *wrk; wrk++) {
2101 free(*wrk);
bellard31e31b82003-02-18 22:55:36 +00002102 }
ths3b46e622007-09-17 08:09:54 +00002103
thsb12b6a12007-06-17 16:38:39 +00002104 free(target_environ);
2105
bellard4b74fe12003-03-03 23:23:09 +00002106 if (loglevel) {
bellard54936002003-05-13 00:25:15 +00002107 page_dump(logfile);
ths3b46e622007-09-17 08:09:54 +00002108
bellard8a4ed7e2007-11-11 17:22:48 +00002109 fprintf(logfile, "start_brk 0x" TARGET_ABI_FMT_lx "\n", info->start_brk);
2110 fprintf(logfile, "end_code 0x" TARGET_ABI_FMT_lx "\n", info->end_code);
2111 fprintf(logfile, "start_code 0x" TARGET_ABI_FMT_lx "\n",
j_mayer3d177872007-10-07 16:06:13 +00002112 info->start_code);
bellard8a4ed7e2007-11-11 17:22:48 +00002113 fprintf(logfile, "start_data 0x" TARGET_ABI_FMT_lx "\n",
j_mayer3d177872007-10-07 16:06:13 +00002114 info->start_data);
bellard8a4ed7e2007-11-11 17:22:48 +00002115 fprintf(logfile, "end_data 0x" TARGET_ABI_FMT_lx "\n", info->end_data);
2116 fprintf(logfile, "start_stack 0x" TARGET_ABI_FMT_lx "\n",
j_mayer3d177872007-10-07 16:06:13 +00002117 info->start_stack);
bellard8a4ed7e2007-11-11 17:22:48 +00002118 fprintf(logfile, "brk 0x" TARGET_ABI_FMT_lx "\n", info->brk);
2119 fprintf(logfile, "entry 0x" TARGET_ABI_FMT_lx "\n", info->entry);
bellard4b74fe12003-03-03 23:23:09 +00002120 }
bellard31e31b82003-02-18 22:55:36 +00002121
pbrook53a59602006-03-25 19:31:22 +00002122 target_set_brk(info->brk);
bellard31e31b82003-02-18 22:55:36 +00002123 syscall_init();
bellard66fb9762003-03-23 01:06:05 +00002124 signal_init();
bellard31e31b82003-02-18 22:55:36 +00002125
bellard851e67a2003-03-29 16:53:14 +00002126 /* build Task State */
2127 memset(ts, 0, sizeof(TaskState));
2128 env->opaque = ts;
2129 ts->used = 1;
pbrook978efd62006-06-17 18:30:42 +00002130 ts->info = info;
bellard59faf6d2003-06-25 16:18:50 +00002131 env->user_mode_only = 1;
ths3b46e622007-09-17 08:09:54 +00002132
bellardb346ff42003-06-15 20:05:50 +00002133#if defined(TARGET_I386)
bellard2e255c62003-08-21 23:25:21 +00002134 cpu_x86_set_cpl(env, 3);
2135
bellard3802ce22003-07-26 18:02:28 +00002136 env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK;
bellard1bde4652005-01-12 22:34:47 +00002137 env->hflags |= HF_PE_MASK;
2138 if (env->cpuid_features & CPUID_SSE) {
2139 env->cr[4] |= CR4_OSFXSR_MASK;
2140 env->hflags |= HF_OSFXSR_MASK;
2141 }
bellardd2fd1af2007-11-14 18:08:56 +00002142#ifndef TARGET_ABI32
bellard4dbc4222007-11-15 15:27:03 +00002143 /* enable 64 bit mode if possible */
2144 if (!(env->cpuid_ext2_features & CPUID_EXT2_LM)) {
2145 fprintf(stderr, "The selected x86 CPU does not support 64 bit mode\n");
2146 exit(1);
2147 }
bellardd2fd1af2007-11-14 18:08:56 +00002148 env->cr[4] |= CR4_PAE_MASK;
bellard4dbc4222007-11-15 15:27:03 +00002149 env->efer |= MSR_EFER_LMA | MSR_EFER_LME;
bellardd2fd1af2007-11-14 18:08:56 +00002150 env->hflags |= HF_LMA_MASK;
2151#endif
bellard1bde4652005-01-12 22:34:47 +00002152
bellard415e5612004-02-03 23:37:12 +00002153 /* flags setup : we activate the IRQs by default as in user mode */
2154 env->eflags |= IF_MASK;
ths3b46e622007-09-17 08:09:54 +00002155
bellard6dbad632003-03-16 18:05:05 +00002156 /* linux register setup */
bellardd2fd1af2007-11-14 18:08:56 +00002157#ifndef TARGET_ABI32
j_mayer84409dd2007-04-06 08:56:50 +00002158 env->regs[R_EAX] = regs->rax;
2159 env->regs[R_EBX] = regs->rbx;
2160 env->regs[R_ECX] = regs->rcx;
2161 env->regs[R_EDX] = regs->rdx;
2162 env->regs[R_ESI] = regs->rsi;
2163 env->regs[R_EDI] = regs->rdi;
2164 env->regs[R_EBP] = regs->rbp;
2165 env->regs[R_ESP] = regs->rsp;
2166 env->eip = regs->rip;
2167#else
bellard0ecfa992003-03-03 14:32:43 +00002168 env->regs[R_EAX] = regs->eax;
2169 env->regs[R_EBX] = regs->ebx;
2170 env->regs[R_ECX] = regs->ecx;
2171 env->regs[R_EDX] = regs->edx;
2172 env->regs[R_ESI] = regs->esi;
2173 env->regs[R_EDI] = regs->edi;
2174 env->regs[R_EBP] = regs->ebp;
2175 env->regs[R_ESP] = regs->esp;
bellarddab2ed92003-03-22 15:23:14 +00002176 env->eip = regs->eip;
j_mayer84409dd2007-04-06 08:56:50 +00002177#endif
bellard31e31b82003-02-18 22:55:36 +00002178
bellardf4beb512003-05-27 23:28:08 +00002179 /* linux interrupt setup */
pbrook53a59602006-03-25 19:31:22 +00002180 env->idt.base = h2g(idt_table);
bellardf4beb512003-05-27 23:28:08 +00002181 env->idt.limit = sizeof(idt_table) - 1;
2182 set_idt(0, 0);
2183 set_idt(1, 0);
2184 set_idt(2, 0);
2185 set_idt(3, 3);
2186 set_idt(4, 3);
2187 set_idt(5, 3);
2188 set_idt(6, 0);
2189 set_idt(7, 0);
2190 set_idt(8, 0);
2191 set_idt(9, 0);
2192 set_idt(10, 0);
2193 set_idt(11, 0);
2194 set_idt(12, 0);
2195 set_idt(13, 0);
2196 set_idt(14, 0);
2197 set_idt(15, 0);
2198 set_idt(16, 0);
2199 set_idt(17, 0);
2200 set_idt(18, 0);
2201 set_idt(19, 0);
2202 set_idt(0x80, 3);
2203
bellard6dbad632003-03-16 18:05:05 +00002204 /* linux segment setup */
bellard8d18e892007-11-14 15:18:40 +00002205 {
2206 uint64_t *gdt_table;
2207 gdt_table = qemu_mallocz(sizeof(uint64_t) * TARGET_GDT_ENTRIES);
bellardd2fd1af2007-11-14 18:08:56 +00002208 env->gdt.base = h2g((unsigned long)gdt_table);
bellard8d18e892007-11-14 15:18:40 +00002209 env->gdt.limit = sizeof(uint64_t) * TARGET_GDT_ENTRIES - 1;
bellardd2fd1af2007-11-14 18:08:56 +00002210#ifdef TARGET_ABI32
bellard8d18e892007-11-14 15:18:40 +00002211 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
2212 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
2213 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
bellardd2fd1af2007-11-14 18:08:56 +00002214#else
2215 /* 64 bit code segment */
2216 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
2217 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
2218 DESC_L_MASK |
2219 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
2220#endif
bellard8d18e892007-11-14 15:18:40 +00002221 write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff,
2222 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
2223 (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT));
2224 }
bellard6dbad632003-03-16 18:05:05 +00002225 cpu_x86_load_seg(env, R_CS, __USER_CS);
bellardd2fd1af2007-11-14 18:08:56 +00002226 cpu_x86_load_seg(env, R_SS, __USER_DS);
2227#ifdef TARGET_ABI32
bellard6dbad632003-03-16 18:05:05 +00002228 cpu_x86_load_seg(env, R_DS, __USER_DS);
2229 cpu_x86_load_seg(env, R_ES, __USER_DS);
bellard6dbad632003-03-16 18:05:05 +00002230 cpu_x86_load_seg(env, R_FS, __USER_DS);
2231 cpu_x86_load_seg(env, R_GS, __USER_DS);
thsd6eb40f2007-06-21 22:55:02 +00002232 /* This hack makes Wine work... */
2233 env->segs[R_FS].selector = 0;
bellardd2fd1af2007-11-14 18:08:56 +00002234#else
2235 cpu_x86_load_seg(env, R_DS, 0);
2236 cpu_x86_load_seg(env, R_ES, 0);
2237 cpu_x86_load_seg(env, R_FS, 0);
2238 cpu_x86_load_seg(env, R_GS, 0);
2239#endif
bellardb346ff42003-06-15 20:05:50 +00002240#elif defined(TARGET_ARM)
2241 {
2242 int i;
bellardb5ff1b32005-11-26 10:38:39 +00002243 cpsr_write(env, regs->uregs[16], 0xffffffff);
bellardb346ff42003-06-15 20:05:50 +00002244 for(i = 0; i < 16; i++) {
2245 env->regs[i] = regs->uregs[i];
2246 }
bellardb346ff42003-06-15 20:05:50 +00002247 }
bellard93ac68b2003-09-30 20:57:29 +00002248#elif defined(TARGET_SPARC)
bellard060366c2004-01-04 15:50:01 +00002249 {
2250 int i;
2251 env->pc = regs->pc;
2252 env->npc = regs->npc;
2253 env->y = regs->y;
2254 for(i = 0; i < 8; i++)
2255 env->gregs[i] = regs->u_regs[i];
2256 for(i = 0; i < 8; i++)
2257 env->regwptr[i] = regs->u_regs[i + 8];
2258 }
bellard67867302003-11-23 17:05:30 +00002259#elif defined(TARGET_PPC)
2260 {
2261 int i;
bellard3fc6c082005-07-02 20:59:34 +00002262
j_mayer0411a972007-10-25 21:35:50 +00002263#if defined(TARGET_PPC64)
2264#if defined(TARGET_ABI32)
2265 env->msr &= ~((target_ulong)1 << MSR_SF);
j_mayere85e7c62007-10-18 19:59:49 +00002266#else
j_mayer0411a972007-10-25 21:35:50 +00002267 env->msr |= (target_ulong)1 << MSR_SF;
2268#endif
j_mayer84409dd2007-04-06 08:56:50 +00002269#endif
bellard67867302003-11-23 17:05:30 +00002270 env->nip = regs->nip;
2271 for(i = 0; i < 32; i++) {
2272 env->gpr[i] = regs->gpr[i];
2273 }
2274 }
pbrooke6e59062006-10-22 00:18:54 +00002275#elif defined(TARGET_M68K)
2276 {
pbrooke6e59062006-10-22 00:18:54 +00002277 env->pc = regs->pc;
2278 env->dregs[0] = regs->d0;
2279 env->dregs[1] = regs->d1;
2280 env->dregs[2] = regs->d2;
2281 env->dregs[3] = regs->d3;
2282 env->dregs[4] = regs->d4;
2283 env->dregs[5] = regs->d5;
2284 env->dregs[6] = regs->d6;
2285 env->dregs[7] = regs->d7;
2286 env->aregs[0] = regs->a0;
2287 env->aregs[1] = regs->a1;
2288 env->aregs[2] = regs->a2;
2289 env->aregs[3] = regs->a3;
2290 env->aregs[4] = regs->a4;
2291 env->aregs[5] = regs->a5;
2292 env->aregs[6] = regs->a6;
2293 env->aregs[7] = regs->usp;
2294 env->sr = regs->sr;
2295 ts->sim_syscalls = 1;
2296 }
bellard048f6b42005-11-26 18:47:20 +00002297#elif defined(TARGET_MIPS)
2298 {
2299 int i;
2300
2301 for(i = 0; i < 32; i++) {
thsd0dc7dc2008-02-12 21:01:26 +00002302 env->gpr[env->current_tc][i] = regs->regs[i];
bellard048f6b42005-11-26 18:47:20 +00002303 }
thsead93602007-09-06 00:18:15 +00002304 env->PC[env->current_tc] = regs->cp0_epc;
bellard048f6b42005-11-26 18:47:20 +00002305 }
bellardfdf9b3e2006-04-27 21:07:38 +00002306#elif defined(TARGET_SH4)
2307 {
2308 int i;
2309
2310 for(i = 0; i < 16; i++) {
2311 env->gregs[i] = regs->regs[i];
2312 }
2313 env->pc = regs->pc;
2314 }
j_mayer7a3148a2007-04-05 07:13:51 +00002315#elif defined(TARGET_ALPHA)
2316 {
2317 int i;
2318
2319 for(i = 0; i < 28; i++) {
blueswir1992f48a2007-10-14 16:27:31 +00002320 env->ir[i] = ((abi_ulong *)regs)[i];
j_mayer7a3148a2007-04-05 07:13:51 +00002321 }
2322 env->ipr[IPR_USP] = regs->usp;
2323 env->ir[30] = regs->usp;
2324 env->pc = regs->pc;
2325 env->unique = regs->unique;
2326 }
ths48733d12007-10-08 13:36:46 +00002327#elif defined(TARGET_CRIS)
2328 {
2329 env->regs[0] = regs->r0;
2330 env->regs[1] = regs->r1;
2331 env->regs[2] = regs->r2;
2332 env->regs[3] = regs->r3;
2333 env->regs[4] = regs->r4;
2334 env->regs[5] = regs->r5;
2335 env->regs[6] = regs->r6;
2336 env->regs[7] = regs->r7;
2337 env->regs[8] = regs->r8;
2338 env->regs[9] = regs->r9;
2339 env->regs[10] = regs->r10;
2340 env->regs[11] = regs->r11;
2341 env->regs[12] = regs->r12;
2342 env->regs[13] = regs->r13;
2343 env->regs[14] = info->start_stack;
2344 env->regs[15] = regs->acr;
2345 env->pc = regs->erp;
2346 }
bellardb346ff42003-06-15 20:05:50 +00002347#else
2348#error unsupported target CPU
2349#endif
bellard31e31b82003-02-18 22:55:36 +00002350
pbrooka87295e2007-05-26 15:09:38 +00002351#if defined(TARGET_ARM) || defined(TARGET_M68K)
2352 ts->stack_base = info->start_stack;
2353 ts->heap_base = info->brk;
2354 /* This will be filled in on the first SYS_HEAPINFO call. */
2355 ts->heap_limit = 0;
2356#endif
2357
bellard74c33be2005-10-30 21:01:05 +00002358 if (gdbstub_port) {
2359 gdbserver_start (gdbstub_port);
bellard1fddef42005-04-17 19:16:13 +00002360 gdb_handlesig(env, 0);
2361 }
bellard1b6b0292003-03-22 17:31:38 +00002362 cpu_loop(env);
2363 /* never exits */
bellard31e31b82003-02-18 22:55:36 +00002364 return 0;
2365}