]> git.proxmox.com Git - mirror_qemu.git/blame - linux-user/main.c
Support for 32 bit ABI on 64 bit targets (only enabled Sparc64)
[mirror_qemu.git] / linux-user / main.c
CommitLineData
31e31b8a 1/*
93ac68bc 2 * qemu user main
5fafdf24 3 *
31e31b8a
FB
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>
04369ff2 23#include <string.h>
31e31b8a 24#include <errno.h>
0ecfa993 25#include <unistd.h>
31e31b8a 26
3ef693a0 27#include "qemu.h"
31e31b8a 28
3ef693a0 29#define DEBUG_LOGFILE "/tmp/qemu.log"
586314f2 30
83fb7adf
FB
31#ifdef __APPLE__
32#include <crt_externs.h>
33# define environ (*_NSGetEnviron())
34#endif
35
74cd30b8 36static const char *interp_prefix = CONFIG_QEMU_PREFIX;
c5937220 37const char *qemu_uname_release = CONFIG_UNAME_RELEASE;
586314f2 38
3a4739d6 39#if defined(__i386__) && !defined(CONFIG_STATIC)
f801f97e
FB
40/* Force usage of an ELF interpreter even if it is an ELF shared
41 object ! */
42const char interp[] __attribute__((section(".interp"))) = "/lib/ld-linux.so.2";
4304763b 43#endif
74cd30b8 44
93ac68bc 45/* for recent libc, we add these dummy symbols which are not declared
74cd30b8 46 when generating a linked object (bug in ld ?) */
fbf59244 47#if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined(CONFIG_STATIC)
c6981055
FB
48long __preinit_array_start[0];
49long __preinit_array_end[0];
74cd30b8
FB
50long __init_array_start[0];
51long __init_array_end[0];
52long __fini_array_start[0];
53long __fini_array_end[0];
54#endif
55
9de5e440
FB
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 */
59unsigned long x86_stack_size = 512 * 1024;
31e31b8a
FB
60
61void 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
61190b14 70void cpu_outb(CPUState *env, int addr, int val)
367e86e8
FB
71{
72 fprintf(stderr, "outb: port=0x%04x, data=%02x\n", addr, val);
73}
74
61190b14 75void cpu_outw(CPUState *env, int addr, int val)
367e86e8
FB
76{
77 fprintf(stderr, "outw: port=0x%04x, data=%04x\n", addr, val);
78}
79
61190b14 80void cpu_outl(CPUState *env, int addr, int val)
367e86e8
FB
81{
82 fprintf(stderr, "outl: port=0x%04x, data=%08x\n", addr, val);
83}
84
61190b14 85int cpu_inb(CPUState *env, int addr)
367e86e8
FB
86{
87 fprintf(stderr, "inb: port=0x%04x\n", addr);
88 return 0;
89}
90
61190b14 91int cpu_inw(CPUState *env, int addr)
367e86e8
FB
92{
93 fprintf(stderr, "inw: port=0x%04x\n", addr);
94 return 0;
95}
96
61190b14 97int cpu_inl(CPUState *env, int addr)
367e86e8
FB
98{
99 fprintf(stderr, "inl: port=0x%04x\n", addr);
100 return 0;
101}
102
a541f297 103int cpu_get_pic_interrupt(CPUState *env)
92ccca6a
FB
104{
105 return -1;
106}
107
28ab0e2e
FB
108/* timers for rdtsc */
109
1dce7c3c 110#if 0
28ab0e2e
FB
111
112static uint64_t emu_time;
113
114int64_t cpu_get_real_ticks(void)
115{
116 return emu_time++;
117}
118
119#endif
120
a541f297
FB
121#ifdef TARGET_I386
122/***********************************************************/
123/* CPUX86 core interface */
124
02a1602e
FB
125void cpu_smm_update(CPUState *env)
126{
127}
128
28ab0e2e
FB
129uint64_t cpu_get_tsc(CPUX86State *env)
130{
131 return cpu_get_real_ticks();
132}
133
5fafdf24 134static void write_dt(void *ptr, unsigned long addr, unsigned long limit,
f4beb510 135 int flags)
6dbad63e 136{
f4beb510 137 unsigned int e1, e2;
53a5960a 138 uint32_t *p;
6dbad63e
FB
139 e1 = (addr << 16) | (limit & 0xffff);
140 e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000);
f4beb510 141 e2 |= flags;
53a5960a
PB
142 p = ptr;
143 p[0] = tswapl(e1);
144 p[1] = tswapl(e2);
f4beb510
FB
145}
146
5fafdf24 147static void set_gate(void *ptr, unsigned int type, unsigned int dpl,
f4beb510
FB
148 unsigned long addr, unsigned int sel)
149{
150 unsigned int e1, e2;
53a5960a 151 uint32_t *p;
f4beb510
FB
152 e1 = (addr & 0xffff) | (sel << 16);
153 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
53a5960a
PB
154 p = ptr;
155 p[0] = tswapl(e1);
156 p[1] = tswapl(e2);
6dbad63e
FB
157}
158
159uint64_t gdt_table[6];
f4beb510
FB
160uint64_t idt_table[256];
161
162/* only dpl matters as we do only user space emulation */
163static void set_idt(int n, unsigned int dpl)
164{
165 set_gate(idt_table + n, 0, dpl, 0, 0);
166}
31e31b8a 167
89e957e7 168void cpu_loop(CPUX86State *env)
1b6b029e 169{
bc8a22cc 170 int trapnr;
992f48a0 171 abi_ulong pc;
9de5e440 172 target_siginfo_t info;
851e67a1 173
1b6b029e 174 for(;;) {
bc8a22cc 175 trapnr = cpu_x86_exec(env);
bc8a22cc 176 switch(trapnr) {
f4beb510
FB
177 case 0x80:
178 /* linux syscall */
5fafdf24
TS
179 env->regs[R_EAX] = do_syscall(env,
180 env->regs[R_EAX],
f4beb510
FB
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;
1b6b029e 196 case EXCP0D_GPF:
84409ddb 197#ifndef TARGET_X86_64
851e67a1 198 if (env->eflags & VM_MASK) {
89e957e7 199 handle_vm86_fault(env);
84409ddb
JM
200 } else
201#endif
202 {
f4beb510
FB
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);
1b6b029e
FB
208 }
209 break;
b689bc57
FB
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;
970a87a6 217 info._sifields._sigfault._addr = env->cr[2];
b689bc57
FB
218 queue_signal(info.si_signo, &info);
219 break;
9de5e440 220 case EXCP00_DIVZ:
84409ddb 221#ifndef TARGET_X86_64
bc8a22cc 222 if (env->eflags & VM_MASK) {
447db213 223 handle_vm86_trap(env, trapnr);
84409ddb
JM
224 } else
225#endif
226 {
bc8a22cc
FB
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 }
9de5e440 234 break;
447db213
FB
235 case EXCP01_SSTP:
236 case EXCP03_INT3:
84409ddb 237#ifndef TARGET_X86_64
447db213
FB
238 if (env->eflags & VM_MASK) {
239 handle_vm86_trap(env, trapnr);
84409ddb
JM
240 } else
241#endif
242 {
447db213
FB
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;
9de5e440
FB
255 case EXCP04_INTO:
256 case EXCP05_BOUND:
84409ddb 257#ifndef TARGET_X86_64
bc8a22cc 258 if (env->eflags & VM_MASK) {
447db213 259 handle_vm86_trap(env, trapnr);
84409ddb
JM
260 } else
261#endif
262 {
bc8a22cc
FB
263 info.si_signo = SIGSEGV;
264 info.si_errno = 0;
b689bc57 265 info.si_code = TARGET_SI_KERNEL;
bc8a22cc
FB
266 info._sifields._sigfault._addr = 0;
267 queue_signal(info.si_signo, &info);
268 }
9de5e440
FB
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;
1fddef4b
FB
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;
1b6b029e 294 default:
970a87a6 295 pc = env->segs[R_CS].base + env->eip;
5fafdf24 296 fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
bc8a22cc 297 (long)pc, trapnr);
1b6b029e
FB
298 abort();
299 }
66fb9763 300 process_pending_signals(env);
1b6b029e
FB
301 }
302}
b346ff46
FB
303#endif
304
305#ifdef TARGET_ARM
306
6f1f31c0 307/* XXX: find a better solution */
992f48a0 308extern void tb_invalidate_page_range(abi_ulong start, abi_ulong end);
6f1f31c0 309
992f48a0 310static void arm_cache_flush(abi_ulong start, abi_ulong last)
6f1f31c0 311{
992f48a0 312 abi_ulong addr, last1;
6f1f31c0
FB
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
b346ff46
FB
328void cpu_loop(CPUARMState *env)
329{
330 int trapnr;
331 unsigned int n, insn;
332 target_siginfo_t info;
b5ff1b31 333 uint32_t addr;
3b46e624 334
b346ff46
FB
335 for(;;) {
336 trapnr = cpu_arm_exec(env);
337 switch(trapnr) {
338 case EXCP_UDEF:
c6981055
FB
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 */
53a5960a 345 opcode = tget32(env->regs[15]);
3b46e624 346
19b045de 347 if (EmulateAll(opcode, &ts->fpa, env) == 0) {
c6981055
FB
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 }
b346ff46
FB
358 break;
359 case EXCP_SWI:
06c949e6 360 case EXCP_BKPT:
b346ff46 361 {
ce4defa0 362 env->eabi = 1;
b346ff46 363 /* system call */
06c949e6
PB
364 if (trapnr == EXCP_BKPT) {
365 if (env->thumb) {
53a5960a 366 insn = tget16(env->regs[15]);
06c949e6
PB
367 n = insn & 0xff;
368 env->regs[15] += 2;
369 } else {
53a5960a 370 insn = tget32(env->regs[15]);
06c949e6
PB
371 n = (insn & 0xf) | ((insn >> 4) & 0xff0);
372 env->regs[15] += 4;
373 }
192c7bd9 374 } else {
06c949e6 375 if (env->thumb) {
53a5960a 376 insn = tget16(env->regs[15] - 2);
06c949e6
PB
377 n = insn & 0xff;
378 } else {
53a5960a 379 insn = tget32(env->regs[15] - 4);
06c949e6
PB
380 n = insn & 0xffffff;
381 }
192c7bd9
FB
382 }
383
6f1f31c0
FB
384 if (n == ARM_NR_cacheflush) {
385 arm_cache_flush(env->regs[0], env->regs[1]);
a4f81979
FB
386 } else if (n == ARM_NR_semihosting
387 || n == ARM_NR_thumb_semihosting) {
388 env->regs[0] = do_arm_semihosting (env);
ce4defa0 389 } else if (n == 0 || n >= ARM_SYSCALL_BASE
192c7bd9 390 || (env->thumb && n == ARM_THUMB_SYSCALL)) {
b346ff46 391 /* linux syscall */
ce4defa0 392 if (env->thumb || n == 0) {
192c7bd9
FB
393 n = env->regs[7];
394 } else {
395 n -= ARM_SYSCALL_BASE;
ce4defa0 396 env->eabi = 0;
192c7bd9 397 }
5fafdf24
TS
398 env->regs[0] = do_syscall(env,
399 n,
b346ff46
FB
400 env->regs[0],
401 env->regs[1],
402 env->regs[2],
403 env->regs[3],
404 env->regs[4],
e1a2849c 405 env->regs[5]);
b346ff46
FB
406 } else {
407 goto error;
408 }
409 }
410 break;
43fff238
FB
411 case EXCP_INTERRUPT:
412 /* just indicate that signals should be handled asap */
413 break;
68016c62 414 case EXCP_PREFETCH_ABORT:
b5ff1b31
FB
415 addr = env->cp15.c6_data;
416 goto do_segv;
68016c62 417 case EXCP_DATA_ABORT:
b5ff1b31
FB
418 addr = env->cp15.c6_insn;
419 goto do_segv;
420 do_segv:
68016c62
FB
421 {
422 info.si_signo = SIGSEGV;
423 info.si_errno = 0;
424 /* XXX: check env->error_code */
425 info.si_code = TARGET_SEGV_MAPERR;
b5ff1b31 426 info._sifields._sigfault._addr = addr;
68016c62
FB
427 queue_signal(info.si_signo, &info);
428 }
429 break;
1fddef4b
FB
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;
b346ff46
FB
444 default:
445 error:
5fafdf24 446 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
b346ff46 447 trapnr);
7fe48483 448 cpu_dump_state(env, stderr, fprintf, 0);
b346ff46
FB
449 abort();
450 }
451 process_pending_signals(env);
452 }
453}
454
455#endif
1b6b029e 456
93ac68bc
FB
457#ifdef TARGET_SPARC
458
060366c5
FB
459//#define DEBUG_WIN
460
2623cbaf
FB
461/* WARNING: dealing with register windows _is_ complicated. More info
462 can be found at http://www.sics.se/~psm/sparcstack.html */
060366c5
FB
463static 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
2623cbaf
FB
473/* save the register window 'cwp1' */
474static inline void save_window_offset(CPUSPARCState *env, int cwp1)
060366c5 475{
2623cbaf 476 unsigned int i;
992f48a0 477 abi_ulong sp_ptr;
3b46e624 478
53a5960a 479 sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
060366c5 480#if defined(DEBUG_WIN)
5fafdf24 481 printf("win_overflow: sp_ptr=0x%x save_cwp=%d\n",
060366c5
FB
482 (int)sp_ptr, cwp1);
483#endif
2623cbaf 484 for(i = 0; i < 16; i++) {
53a5960a 485 tputl(sp_ptr, env->regbase[get_reg_index(env, cwp1, 8 + i)]);
992f48a0 486 sp_ptr += sizeof(abi_ulong);
2623cbaf 487 }
060366c5
FB
488}
489
490static void save_window(CPUSPARCState *env)
491{
5ef54116 492#ifndef TARGET_SPARC64
2623cbaf
FB
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;
5ef54116
FB
498#else
499 save_window_offset(env, (env->cwp - 2) & (NWINDOWS - 1));
500 env->cansave++;
501 env->canrestore--;
502#endif
060366c5
FB
503}
504
505static void restore_window(CPUSPARCState *env)
506{
507 unsigned int new_wim, i, cwp1;
992f48a0 508 abi_ulong sp_ptr;
3b46e624 509
060366c5
FB
510 new_wim = ((env->wim << 1) | (env->wim >> (NWINDOWS - 1))) &
511 ((1LL << NWINDOWS) - 1);
3b46e624 512
060366c5
FB
513 /* restore the invalid window */
514 cwp1 = (env->cwp + 1) & (NWINDOWS - 1);
53a5960a 515 sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
060366c5 516#if defined(DEBUG_WIN)
5fafdf24 517 printf("win_underflow: sp_ptr=0x%x load_cwp=%d\n",
060366c5
FB
518 (int)sp_ptr, cwp1);
519#endif
2623cbaf 520 for(i = 0; i < 16; i++) {
53a5960a 521 env->regbase[get_reg_index(env, cwp1, 8 + i)] = tgetl(sp_ptr);
992f48a0 522 sp_ptr += sizeof(abi_ulong);
2623cbaf 523 }
060366c5 524 env->wim = new_wim;
5ef54116
FB
525#ifdef TARGET_SPARC64
526 env->canrestore++;
527 if (env->cleanwin < NWINDOWS - 1)
528 env->cleanwin++;
529 env->cansave--;
530#endif
060366c5
FB
531}
532
533static void flush_windows(CPUSPARCState *env)
534{
535 int offset, cwp1;
2623cbaf
FB
536
537 offset = 1;
060366c5
FB
538 for(;;) {
539 /* if restore would invoke restore_window(), then we can stop */
2623cbaf 540 cwp1 = (env->cwp + offset) & (NWINDOWS - 1);
060366c5
FB
541 if (env->wim & (1 << cwp1))
542 break;
2623cbaf 543 save_window_offset(env, cwp1);
060366c5
FB
544 offset++;
545 }
2623cbaf
FB
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);
80a9d035 551#endif
2623cbaf 552}
060366c5 553
93ac68bc
FB
554void cpu_loop (CPUSPARCState *env)
555{
060366c5 556 int trapnr, ret;
61ff6f58 557 target_siginfo_t info;
3b46e624 558
060366c5
FB
559 while (1) {
560 trapnr = cpu_sparc_exec (env);
3b46e624 561
060366c5 562 switch (trapnr) {
5ef54116 563#ifndef TARGET_SPARC64
5fafdf24 564 case 0x88:
060366c5 565 case 0x90:
5ef54116 566#else
cb33da57 567 case 0x110:
5ef54116
FB
568 case 0x16d:
569#endif
060366c5 570 ret = do_syscall (env, env->gregs[1],
5fafdf24
TS
571 env->regwptr[0], env->regwptr[1],
572 env->regwptr[2], env->regwptr[3],
060366c5
FB
573 env->regwptr[4], env->regwptr[5]);
574 if ((unsigned int)ret >= (unsigned int)(-515)) {
992f48a0 575#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
27908725
FB
576 env->xcc |= PSR_CARRY;
577#else
060366c5 578 env->psr |= PSR_CARRY;
27908725 579#endif
060366c5
FB
580 ret = -ret;
581 } else {
992f48a0 582#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
27908725
FB
583 env->xcc &= ~PSR_CARRY;
584#else
060366c5 585 env->psr &= ~PSR_CARRY;
27908725 586#endif
060366c5
FB
587 }
588 env->regwptr[0] = ret;
589 /* next instruction */
590 env->pc = env->npc;
591 env->npc = env->npc + 4;
592 break;
593 case 0x83: /* flush windows */
992f48a0
BS
594#ifdef TARGET_ABI32
595 case 0x103:
596#endif
2623cbaf 597 flush_windows(env);
060366c5
FB
598 /* next instruction */
599 env->pc = env->npc;
600 env->npc = env->npc + 4;
601 break;
3475187d 602#ifndef TARGET_SPARC64
060366c5
FB
603 case TT_WIN_OVF: /* window overflow */
604 save_window(env);
605 break;
606 case TT_WIN_UNF: /* window underflow */
607 restore_window(env);
608 break;
61ff6f58
FB
609 case TT_TFAULT:
610 case TT_DFAULT:
611 {
612 info.si_signo = SIGSEGV;
613 info.si_errno = 0;
614 /* XXX: check env->error_code */
615 info.si_code = TARGET_SEGV_MAPERR;
616 info._sifields._sigfault._addr = env->mmuregs[4];
617 queue_signal(info.si_signo, &info);
618 }
619 break;
3475187d 620#else
5ef54116
FB
621 case TT_SPILL: /* window overflow */
622 save_window(env);
623 break;
624 case TT_FILL: /* window underflow */
625 restore_window(env);
626 break;
7f84a729
BS
627 case TT_TFAULT:
628 case TT_DFAULT:
629 {
630 info.si_signo = SIGSEGV;
631 info.si_errno = 0;
632 /* XXX: check env->error_code */
633 info.si_code = TARGET_SEGV_MAPERR;
634 if (trapnr == TT_DFAULT)
635 info._sifields._sigfault._addr = env->dmmuregs[4];
636 else
637 info._sifields._sigfault._addr = env->tpc[env->tl];
638 queue_signal(info.si_signo, &info);
639 }
640 break;
5bfb56b2
BS
641 case 0x16e:
642 flush_windows(env);
643 sparc64_get_context(env);
644 break;
645 case 0x16f:
646 flush_windows(env);
647 sparc64_set_context(env);
648 break;
3475187d 649#endif
48dc41eb
FB
650 case EXCP_INTERRUPT:
651 /* just indicate that signals should be handled asap */
652 break;
1fddef4b
FB
653 case EXCP_DEBUG:
654 {
655 int sig;
656
657 sig = gdb_handlesig (env, TARGET_SIGTRAP);
658 if (sig)
659 {
660 info.si_signo = sig;
661 info.si_errno = 0;
662 info.si_code = TARGET_TRAP_BRKPT;
663 queue_signal(info.si_signo, &info);
664 }
665 }
666 break;
060366c5
FB
667 default:
668 printf ("Unhandled trap: 0x%x\n", trapnr);
7fe48483 669 cpu_dump_state(env, stderr, fprintf, 0);
060366c5
FB
670 exit (1);
671 }
672 process_pending_signals (env);
673 }
93ac68bc
FB
674}
675
676#endif
677
67867308 678#ifdef TARGET_PPC
9fddaa0c
FB
679static inline uint64_t cpu_ppc_get_tb (CPUState *env)
680{
681 /* TO FIX */
682 return 0;
683}
3b46e624 684
9fddaa0c
FB
685uint32_t cpu_ppc_load_tbl (CPUState *env)
686{
687 return cpu_ppc_get_tb(env) & 0xFFFFFFFF;
688}
3b46e624 689
9fddaa0c
FB
690uint32_t cpu_ppc_load_tbu (CPUState *env)
691{
692 return cpu_ppc_get_tb(env) >> 32;
693}
3b46e624 694
a062e36c 695uint32_t cpu_ppc_load_atbl (CPUState *env)
9fddaa0c 696{
a062e36c 697 return cpu_ppc_get_tb(env) & 0xFFFFFFFF;
9fddaa0c 698}
5fafdf24 699
a062e36c 700uint32_t cpu_ppc_load_atbu (CPUState *env)
9fddaa0c 701{
a062e36c 702 return cpu_ppc_get_tb(env) >> 32;
9fddaa0c 703}
76a66253 704
76a66253
JM
705uint32_t cpu_ppc601_load_rtcu (CPUState *env)
706__attribute__ (( alias ("cpu_ppc_load_tbu") ));
707
76a66253 708uint32_t cpu_ppc601_load_rtcl (CPUState *env)
9fddaa0c 709{
76a66253 710 return cpu_ppc_load_tbl(env) & 0x3FFFFF80;
9fddaa0c 711}
76a66253 712
a750fc0b
JM
713/* XXX: to be fixed */
714int ppc_dcr_read (ppc_dcr_t *dcr_env, int dcrn, target_ulong *valp)
715{
716 return -1;
717}
718
719int ppc_dcr_write (ppc_dcr_t *dcr_env, int dcrn, target_ulong val)
720{
721 return -1;
722}
723
e1833e1f
JM
724#define EXCP_DUMP(env, fmt, args...) \
725do { \
726 fprintf(stderr, fmt , ##args); \
727 cpu_dump_state(env, stderr, fprintf, 0); \
728 if (loglevel != 0) { \
729 fprintf(logfile, fmt , ##args); \
730 cpu_dump_state(env, logfile, fprintf, 0); \
731 } \
732} while (0)
733
67867308
FB
734void cpu_loop(CPUPPCState *env)
735{
67867308 736 target_siginfo_t info;
61190b14
FB
737 int trapnr;
738 uint32_t ret;
3b46e624 739
67867308
FB
740 for(;;) {
741 trapnr = cpu_ppc_exec(env);
742 switch(trapnr) {
e1833e1f
JM
743 case POWERPC_EXCP_NONE:
744 /* Just go on */
67867308 745 break;
e1833e1f
JM
746 case POWERPC_EXCP_CRITICAL: /* Critical input */
747 cpu_abort(env, "Critical interrupt while in user mode. "
748 "Aborting\n");
61190b14 749 break;
e1833e1f
JM
750 case POWERPC_EXCP_MCHECK: /* Machine check exception */
751 cpu_abort(env, "Machine check exception while in user mode. "
752 "Aborting\n");
753 break;
754 case POWERPC_EXCP_DSI: /* Data storage exception */
755 EXCP_DUMP(env, "Invalid data memory access: 0x" ADDRX "\n",
756 env->spr[SPR_DAR]);
757 /* XXX: check this. Seems bugged */
2be0071f
FB
758 switch (env->error_code & 0xFF000000) {
759 case 0x40000000:
61190b14
FB
760 info.si_signo = TARGET_SIGSEGV;
761 info.si_errno = 0;
762 info.si_code = TARGET_SEGV_MAPERR;
763 break;
2be0071f 764 case 0x04000000:
61190b14
FB
765 info.si_signo = TARGET_SIGILL;
766 info.si_errno = 0;
767 info.si_code = TARGET_ILL_ILLADR;
768 break;
2be0071f 769 case 0x08000000:
61190b14
FB
770 info.si_signo = TARGET_SIGSEGV;
771 info.si_errno = 0;
772 info.si_code = TARGET_SEGV_ACCERR;
773 break;
61190b14
FB
774 default:
775 /* Let's send a regular segfault... */
e1833e1f
JM
776 EXCP_DUMP(env, "Invalid segfault errno (%02x)\n",
777 env->error_code);
61190b14
FB
778 info.si_signo = TARGET_SIGSEGV;
779 info.si_errno = 0;
780 info.si_code = TARGET_SEGV_MAPERR;
781 break;
782 }
67867308
FB
783 info._sifields._sigfault._addr = env->nip;
784 queue_signal(info.si_signo, &info);
785 break;
e1833e1f
JM
786 case POWERPC_EXCP_ISI: /* Instruction storage exception */
787 EXCP_DUMP(env, "Invalid instruction fetch: 0x\n" ADDRX "\n",
788 env->spr[SPR_DAR]);
789 /* XXX: check this */
2be0071f
FB
790 switch (env->error_code & 0xFF000000) {
791 case 0x40000000:
61190b14 792 info.si_signo = TARGET_SIGSEGV;
67867308 793 info.si_errno = 0;
61190b14
FB
794 info.si_code = TARGET_SEGV_MAPERR;
795 break;
2be0071f
FB
796 case 0x10000000:
797 case 0x08000000:
61190b14
FB
798 info.si_signo = TARGET_SIGSEGV;
799 info.si_errno = 0;
800 info.si_code = TARGET_SEGV_ACCERR;
801 break;
802 default:
803 /* Let's send a regular segfault... */
e1833e1f
JM
804 EXCP_DUMP(env, "Invalid segfault errno (%02x)\n",
805 env->error_code);
61190b14
FB
806 info.si_signo = TARGET_SIGSEGV;
807 info.si_errno = 0;
808 info.si_code = TARGET_SEGV_MAPERR;
809 break;
810 }
811 info._sifields._sigfault._addr = env->nip - 4;
67867308
FB
812 queue_signal(info.si_signo, &info);
813 break;
e1833e1f
JM
814 case POWERPC_EXCP_EXTERNAL: /* External input */
815 cpu_abort(env, "External interrupt while in user mode. "
816 "Aborting\n");
817 break;
818 case POWERPC_EXCP_ALIGN: /* Alignment exception */
819 EXCP_DUMP(env, "Unaligned memory access\n");
820 /* XXX: check this */
61190b14 821 info.si_signo = TARGET_SIGBUS;
67867308 822 info.si_errno = 0;
61190b14
FB
823 info.si_code = TARGET_BUS_ADRALN;
824 info._sifields._sigfault._addr = env->nip - 4;
67867308
FB
825 queue_signal(info.si_signo, &info);
826 break;
e1833e1f
JM
827 case POWERPC_EXCP_PROGRAM: /* Program exception */
828 /* XXX: check this */
61190b14 829 switch (env->error_code & ~0xF) {
e1833e1f
JM
830 case POWERPC_EXCP_FP:
831 EXCP_DUMP(env, "Floating point program exception\n");
61190b14
FB
832 /* Set FX */
833 env->fpscr[7] |= 0x8;
834 /* Finally, update FEX */
835 if ((((env->fpscr[7] & 0x3) << 3) | (env->fpscr[6] >> 1)) &
836 ((env->fpscr[1] << 1) | (env->fpscr[0] >> 3)))
837 env->fpscr[7] |= 0x4;
838 info.si_signo = TARGET_SIGFPE;
839 info.si_errno = 0;
840 switch (env->error_code & 0xF) {
e1833e1f 841 case POWERPC_EXCP_FP_OX:
61190b14
FB
842 info.si_code = TARGET_FPE_FLTOVF;
843 break;
e1833e1f 844 case POWERPC_EXCP_FP_UX:
61190b14
FB
845 info.si_code = TARGET_FPE_FLTUND;
846 break;
e1833e1f
JM
847 case POWERPC_EXCP_FP_ZX:
848 case POWERPC_EXCP_FP_VXZDZ:
61190b14
FB
849 info.si_code = TARGET_FPE_FLTDIV;
850 break;
e1833e1f 851 case POWERPC_EXCP_FP_XX:
61190b14
FB
852 info.si_code = TARGET_FPE_FLTRES;
853 break;
e1833e1f 854 case POWERPC_EXCP_FP_VXSOFT:
61190b14
FB
855 info.si_code = TARGET_FPE_FLTINV;
856 break;
e1833e1f
JM
857 case POWERPC_EXCP_FP_VXNAN:
858 case POWERPC_EXCP_FP_VXISI:
859 case POWERPC_EXCP_FP_VXIDI:
860 case POWERPC_EXCP_FP_VXIMZ:
861 case POWERPC_EXCP_FP_VXVC:
862 case POWERPC_EXCP_FP_VXSQRT:
863 case POWERPC_EXCP_FP_VXCVI:
61190b14
FB
864 info.si_code = TARGET_FPE_FLTSUB;
865 break;
866 default:
e1833e1f
JM
867 EXCP_DUMP(env, "Unknown floating point exception (%02x)\n",
868 env->error_code);
869 break;
61190b14 870 }
e1833e1f
JM
871 break;
872 case POWERPC_EXCP_INVAL:
873 EXCP_DUMP(env, "Invalid instruction\n");
61190b14
FB
874 info.si_signo = TARGET_SIGILL;
875 info.si_errno = 0;
876 switch (env->error_code & 0xF) {
e1833e1f 877 case POWERPC_EXCP_INVAL_INVAL:
61190b14
FB
878 info.si_code = TARGET_ILL_ILLOPC;
879 break;
e1833e1f 880 case POWERPC_EXCP_INVAL_LSWX:
a750fc0b 881 info.si_code = TARGET_ILL_ILLOPN;
61190b14 882 break;
e1833e1f 883 case POWERPC_EXCP_INVAL_SPR:
61190b14
FB
884 info.si_code = TARGET_ILL_PRVREG;
885 break;
e1833e1f 886 case POWERPC_EXCP_INVAL_FP:
61190b14
FB
887 info.si_code = TARGET_ILL_COPROC;
888 break;
889 default:
e1833e1f
JM
890 EXCP_DUMP(env, "Unknown invalid operation (%02x)\n",
891 env->error_code & 0xF);
61190b14
FB
892 info.si_code = TARGET_ILL_ILLADR;
893 break;
894 }
895 break;
e1833e1f
JM
896 case POWERPC_EXCP_PRIV:
897 EXCP_DUMP(env, "Privilege violation\n");
61190b14
FB
898 info.si_signo = TARGET_SIGILL;
899 info.si_errno = 0;
900 switch (env->error_code & 0xF) {
e1833e1f 901 case POWERPC_EXCP_PRIV_OPC:
61190b14
FB
902 info.si_code = TARGET_ILL_PRVOPC;
903 break;
e1833e1f 904 case POWERPC_EXCP_PRIV_REG:
61190b14 905 info.si_code = TARGET_ILL_PRVREG;
e1833e1f 906 break;
61190b14 907 default:
e1833e1f
JM
908 EXCP_DUMP(env, "Unknown privilege violation (%02x)\n",
909 env->error_code & 0xF);
61190b14
FB
910 info.si_code = TARGET_ILL_PRVOPC;
911 break;
912 }
913 break;
e1833e1f
JM
914 case POWERPC_EXCP_TRAP:
915 cpu_abort(env, "Tried to call a TRAP\n");
916 break;
61190b14
FB
917 default:
918 /* Should not happen ! */
e1833e1f
JM
919 cpu_abort(env, "Unknown program exception (%02x)\n",
920 env->error_code);
921 break;
61190b14
FB
922 }
923 info._sifields._sigfault._addr = env->nip - 4;
67867308
FB
924 queue_signal(info.si_signo, &info);
925 break;
e1833e1f
JM
926 case POWERPC_EXCP_FPU: /* Floating-point unavailable exception */
927 EXCP_DUMP(env, "No floating point allowed\n");
61190b14 928 info.si_signo = TARGET_SIGILL;
67867308 929 info.si_errno = 0;
61190b14
FB
930 info.si_code = TARGET_ILL_COPROC;
931 info._sifields._sigfault._addr = env->nip - 4;
67867308
FB
932 queue_signal(info.si_signo, &info);
933 break;
e1833e1f
JM
934 case POWERPC_EXCP_SYSCALL: /* System call exception */
935 cpu_abort(env, "Syscall exception while in user mode. "
936 "Aborting\n");
61190b14 937 break;
e1833e1f
JM
938 case POWERPC_EXCP_APU: /* Auxiliary processor unavailable */
939 EXCP_DUMP(env, "No APU instruction allowed\n");
940 info.si_signo = TARGET_SIGILL;
941 info.si_errno = 0;
942 info.si_code = TARGET_ILL_COPROC;
943 info._sifields._sigfault._addr = env->nip - 4;
944 queue_signal(info.si_signo, &info);
61190b14 945 break;
e1833e1f
JM
946 case POWERPC_EXCP_DECR: /* Decrementer exception */
947 cpu_abort(env, "Decrementer interrupt while in user mode. "
948 "Aborting\n");
61190b14 949 break;
e1833e1f
JM
950 case POWERPC_EXCP_FIT: /* Fixed-interval timer interrupt */
951 cpu_abort(env, "Fix interval timer interrupt while in user mode. "
952 "Aborting\n");
953 break;
954 case POWERPC_EXCP_WDT: /* Watchdog timer interrupt */
955 cpu_abort(env, "Watchdog timer interrupt while in user mode. "
956 "Aborting\n");
957 break;
958 case POWERPC_EXCP_DTLB: /* Data TLB error */
959 cpu_abort(env, "Data TLB exception while in user mode. "
960 "Aborting\n");
961 break;
962 case POWERPC_EXCP_ITLB: /* Instruction TLB error */
963 cpu_abort(env, "Instruction TLB exception while in user mode. "
964 "Aborting\n");
965 break;
966 case POWERPC_EXCP_DEBUG: /* Debug interrupt */
967 /* XXX: check this */
1fddef4b
FB
968 {
969 int sig;
970
e1833e1f
JM
971 sig = gdb_handlesig(env, TARGET_SIGTRAP);
972 if (sig) {
1fddef4b
FB
973 info.si_signo = sig;
974 info.si_errno = 0;
975 info.si_code = TARGET_TRAP_BRKPT;
976 queue_signal(info.si_signo, &info);
977 }
978 }
979 break;
e1833e1f
JM
980#if defined(TARGET_PPCEMB)
981 case POWERPC_EXCP_SPEU: /* SPE/embedded floating-point unavail. */
982 EXCP_DUMP(env, "No SPE/floating-point instruction allowed\n");
983 info.si_signo = TARGET_SIGILL;
984 info.si_errno = 0;
985 info.si_code = TARGET_ILL_COPROC;
986 info._sifields._sigfault._addr = env->nip - 4;
987 queue_signal(info.si_signo, &info);
988 break;
989 case POWERPC_EXCP_EFPDI: /* Embedded floating-point data IRQ */
990 cpu_abort(env, "Embedded floating-point data IRQ not handled\n");
991 break;
992 case POWERPC_EXCP_EFPRI: /* Embedded floating-point round IRQ */
993 cpu_abort(env, "Embedded floating-point round IRQ not handled\n");
994 break;
995 case POWERPC_EXCP_EPERFM: /* Embedded performance monitor IRQ */
996 cpu_abort(env, "Performance monitor exception not handled\n");
997 break;
998 case POWERPC_EXCP_DOORI: /* Embedded doorbell interrupt */
999 cpu_abort(env, "Doorbell interrupt while in user mode. "
1000 "Aborting\n");
1001 break;
1002 case POWERPC_EXCP_DOORCI: /* Embedded doorbell critical interrupt */
1003 cpu_abort(env, "Doorbell critical interrupt while in user mode. "
1004 "Aborting\n");
1005 break;
1006 case POWERPC_EXCP_RESET: /* System reset exception */
1007 cpu_abort(env, "Reset interrupt while in user mode. "
1008 "Aborting\n");
1009 break;
1010#endif /* defined(TARGET_PPCEMB) */
1011#if defined(TARGET_PPC64) /* PowerPC 64 */
1012 case POWERPC_EXCP_DSEG: /* Data segment exception */
1013 cpu_abort(env, "Data segment exception while in user mode. "
1014 "Aborting\n");
1015 break;
1016 case POWERPC_EXCP_ISEG: /* Instruction segment exception */
1017 cpu_abort(env, "Instruction segment exception "
1018 "while in user mode. Aborting\n");
1019 break;
1020#endif /* defined(TARGET_PPC64) */
1021#if defined(TARGET_PPC64H) /* PowerPC 64 with hypervisor mode support */
1022 case POWERPC_EXCP_HDECR: /* Hypervisor decrementer exception */
1023 cpu_abort(env, "Hypervisor decrementer interrupt "
1024 "while in user mode. Aborting\n");
1025 break;
1026#endif /* defined(TARGET_PPC64H) */
1027 case POWERPC_EXCP_TRACE: /* Trace exception */
1028 /* Nothing to do:
1029 * we use this exception to emulate step-by-step execution mode.
1030 */
1031 break;
1032#if defined(TARGET_PPC64H) /* PowerPC 64 with hypervisor mode support */
1033 case POWERPC_EXCP_HDSI: /* Hypervisor data storage exception */
1034 cpu_abort(env, "Hypervisor data storage exception "
1035 "while in user mode. Aborting\n");
1036 break;
1037 case POWERPC_EXCP_HISI: /* Hypervisor instruction storage excp */
1038 cpu_abort(env, "Hypervisor instruction storage exception "
1039 "while in user mode. Aborting\n");
1040 break;
1041 case POWERPC_EXCP_HDSEG: /* Hypervisor data segment exception */
1042 cpu_abort(env, "Hypervisor data segment exception "
1043 "while in user mode. Aborting\n");
1044 break;
1045 case POWERPC_EXCP_HISEG: /* Hypervisor instruction segment excp */
1046 cpu_abort(env, "Hypervisor instruction segment exception "
1047 "while in user mode. Aborting\n");
1048 break;
1049#endif /* defined(TARGET_PPC64H) */
1050 case POWERPC_EXCP_VPU: /* Vector unavailable exception */
1051 EXCP_DUMP(env, "No Altivec instructions allowed\n");
1052 info.si_signo = TARGET_SIGILL;
1053 info.si_errno = 0;
1054 info.si_code = TARGET_ILL_COPROC;
1055 info._sifields._sigfault._addr = env->nip - 4;
1056 queue_signal(info.si_signo, &info);
1057 break;
1058 case POWERPC_EXCP_PIT: /* Programmable interval timer IRQ */
1059 cpu_abort(env, "Programable interval timer interrupt "
1060 "while in user mode. Aborting\n");
1061 break;
1062 case POWERPC_EXCP_IO: /* IO error exception */
1063 cpu_abort(env, "IO error exception while in user mode. "
1064 "Aborting\n");
1065 break;
1066 case POWERPC_EXCP_RUNM: /* Run mode exception */
1067 cpu_abort(env, "Run mode exception while in user mode. "
1068 "Aborting\n");
1069 break;
1070 case POWERPC_EXCP_EMUL: /* Emulation trap exception */
1071 cpu_abort(env, "Emulation trap exception not handled\n");
1072 break;
1073 case POWERPC_EXCP_IFTLB: /* Instruction fetch TLB error */
1074 cpu_abort(env, "Instruction fetch TLB exception "
1075 "while in user-mode. Aborting");
1076 break;
1077 case POWERPC_EXCP_DLTLB: /* Data load TLB miss */
1078 cpu_abort(env, "Data load TLB exception while in user-mode. "
1079 "Aborting");
1080 break;
1081 case POWERPC_EXCP_DSTLB: /* Data store TLB miss */
1082 cpu_abort(env, "Data store TLB exception while in user-mode. "
1083 "Aborting");
1084 break;
1085 case POWERPC_EXCP_FPA: /* Floating-point assist exception */
1086 cpu_abort(env, "Floating-point assist exception not handled\n");
1087 break;
1088 case POWERPC_EXCP_IABR: /* Instruction address breakpoint */
1089 cpu_abort(env, "Instruction address breakpoint exception "
1090 "not handled\n");
1091 break;
1092 case POWERPC_EXCP_SMI: /* System management interrupt */
1093 cpu_abort(env, "System management interrupt while in user mode. "
1094 "Aborting\n");
1095 break;
1096 case POWERPC_EXCP_THERM: /* Thermal interrupt */
1097 cpu_abort(env, "Thermal interrupt interrupt while in user mode. "
1098 "Aborting\n");
1099 break;
1100 case POWERPC_EXCP_PERFM: /* Embedded performance monitor IRQ */
1101 cpu_abort(env, "Performance monitor exception not handled\n");
1102 break;
1103 case POWERPC_EXCP_VPUA: /* Vector assist exception */
1104 cpu_abort(env, "Vector assist exception not handled\n");
1105 break;
1106 case POWERPC_EXCP_SOFTP: /* Soft patch exception */
1107 cpu_abort(env, "Soft patch exception not handled\n");
1108 break;
1109 case POWERPC_EXCP_MAINT: /* Maintenance exception */
1110 cpu_abort(env, "Maintenance exception while in user mode. "
1111 "Aborting\n");
1112 break;
1113 case POWERPC_EXCP_STOP: /* stop translation */
1114 /* We did invalidate the instruction cache. Go on */
1115 break;
1116 case POWERPC_EXCP_BRANCH: /* branch instruction: */
1117 /* We just stopped because of a branch. Go on */
1118 break;
1119 case POWERPC_EXCP_SYSCALL_USER:
1120 /* system call in user-mode emulation */
1121 /* WARNING:
1122 * PPC ABI uses overflow flag in cr0 to signal an error
1123 * in syscalls.
1124 */
1125#if 0
1126 printf("syscall %d 0x%08x 0x%08x 0x%08x 0x%08x\n", env->gpr[0],
1127 env->gpr[3], env->gpr[4], env->gpr[5], env->gpr[6]);
1128#endif
1129 env->crf[0] &= ~0x1;
1130 ret = do_syscall(env, env->gpr[0], env->gpr[3], env->gpr[4],
1131 env->gpr[5], env->gpr[6], env->gpr[7],
1132 env->gpr[8]);
1133 if (ret > (uint32_t)(-515)) {
1134 env->crf[0] |= 0x1;
1135 ret = -ret;
61190b14 1136 }
e1833e1f
JM
1137 env->gpr[3] = ret;
1138#if 0
1139 printf("syscall returned 0x%08x (%d)\n", ret, ret);
1140#endif
1141 break;
56ba31ff
JM
1142 case EXCP_INTERRUPT:
1143 /* just indicate that signals should be handled asap */
1144 break;
e1833e1f
JM
1145 default:
1146 cpu_abort(env, "Unknown exception 0x%d. Aborting\n", trapnr);
1147 break;
67867308
FB
1148 }
1149 process_pending_signals(env);
1150 }
1151}
1152#endif
1153
048f6b4d
FB
1154#ifdef TARGET_MIPS
1155
1156#define MIPS_SYS(name, args) args,
1157
1158static const uint8_t mips_syscall_args[] = {
1159 MIPS_SYS(sys_syscall , 0) /* 4000 */
1160 MIPS_SYS(sys_exit , 1)
1161 MIPS_SYS(sys_fork , 0)
1162 MIPS_SYS(sys_read , 3)
1163 MIPS_SYS(sys_write , 3)
1164 MIPS_SYS(sys_open , 3) /* 4005 */
1165 MIPS_SYS(sys_close , 1)
1166 MIPS_SYS(sys_waitpid , 3)
1167 MIPS_SYS(sys_creat , 2)
1168 MIPS_SYS(sys_link , 2)
1169 MIPS_SYS(sys_unlink , 1) /* 4010 */
1170 MIPS_SYS(sys_execve , 0)
1171 MIPS_SYS(sys_chdir , 1)
1172 MIPS_SYS(sys_time , 1)
1173 MIPS_SYS(sys_mknod , 3)
1174 MIPS_SYS(sys_chmod , 2) /* 4015 */
1175 MIPS_SYS(sys_lchown , 3)
1176 MIPS_SYS(sys_ni_syscall , 0)
1177 MIPS_SYS(sys_ni_syscall , 0) /* was sys_stat */
1178 MIPS_SYS(sys_lseek , 3)
1179 MIPS_SYS(sys_getpid , 0) /* 4020 */
1180 MIPS_SYS(sys_mount , 5)
1181 MIPS_SYS(sys_oldumount , 1)
1182 MIPS_SYS(sys_setuid , 1)
1183 MIPS_SYS(sys_getuid , 0)
1184 MIPS_SYS(sys_stime , 1) /* 4025 */
1185 MIPS_SYS(sys_ptrace , 4)
1186 MIPS_SYS(sys_alarm , 1)
1187 MIPS_SYS(sys_ni_syscall , 0) /* was sys_fstat */
1188 MIPS_SYS(sys_pause , 0)
1189 MIPS_SYS(sys_utime , 2) /* 4030 */
1190 MIPS_SYS(sys_ni_syscall , 0)
1191 MIPS_SYS(sys_ni_syscall , 0)
1192 MIPS_SYS(sys_access , 2)
1193 MIPS_SYS(sys_nice , 1)
1194 MIPS_SYS(sys_ni_syscall , 0) /* 4035 */
1195 MIPS_SYS(sys_sync , 0)
1196 MIPS_SYS(sys_kill , 2)
1197 MIPS_SYS(sys_rename , 2)
1198 MIPS_SYS(sys_mkdir , 2)
1199 MIPS_SYS(sys_rmdir , 1) /* 4040 */
1200 MIPS_SYS(sys_dup , 1)
1201 MIPS_SYS(sys_pipe , 0)
1202 MIPS_SYS(sys_times , 1)
1203 MIPS_SYS(sys_ni_syscall , 0)
1204 MIPS_SYS(sys_brk , 1) /* 4045 */
1205 MIPS_SYS(sys_setgid , 1)
1206 MIPS_SYS(sys_getgid , 0)
1207 MIPS_SYS(sys_ni_syscall , 0) /* was signal(2) */
1208 MIPS_SYS(sys_geteuid , 0)
1209 MIPS_SYS(sys_getegid , 0) /* 4050 */
1210 MIPS_SYS(sys_acct , 0)
1211 MIPS_SYS(sys_umount , 2)
1212 MIPS_SYS(sys_ni_syscall , 0)
1213 MIPS_SYS(sys_ioctl , 3)
1214 MIPS_SYS(sys_fcntl , 3) /* 4055 */
1215 MIPS_SYS(sys_ni_syscall , 2)
1216 MIPS_SYS(sys_setpgid , 2)
1217 MIPS_SYS(sys_ni_syscall , 0)
1218 MIPS_SYS(sys_olduname , 1)
1219 MIPS_SYS(sys_umask , 1) /* 4060 */
1220 MIPS_SYS(sys_chroot , 1)
1221 MIPS_SYS(sys_ustat , 2)
1222 MIPS_SYS(sys_dup2 , 2)
1223 MIPS_SYS(sys_getppid , 0)
1224 MIPS_SYS(sys_getpgrp , 0) /* 4065 */
1225 MIPS_SYS(sys_setsid , 0)
1226 MIPS_SYS(sys_sigaction , 3)
1227 MIPS_SYS(sys_sgetmask , 0)
1228 MIPS_SYS(sys_ssetmask , 1)
1229 MIPS_SYS(sys_setreuid , 2) /* 4070 */
1230 MIPS_SYS(sys_setregid , 2)
1231 MIPS_SYS(sys_sigsuspend , 0)
1232 MIPS_SYS(sys_sigpending , 1)
1233 MIPS_SYS(sys_sethostname , 2)
1234 MIPS_SYS(sys_setrlimit , 2) /* 4075 */
1235 MIPS_SYS(sys_getrlimit , 2)
1236 MIPS_SYS(sys_getrusage , 2)
1237 MIPS_SYS(sys_gettimeofday, 2)
1238 MIPS_SYS(sys_settimeofday, 2)
1239 MIPS_SYS(sys_getgroups , 2) /* 4080 */
1240 MIPS_SYS(sys_setgroups , 2)
1241 MIPS_SYS(sys_ni_syscall , 0) /* old_select */
1242 MIPS_SYS(sys_symlink , 2)
1243 MIPS_SYS(sys_ni_syscall , 0) /* was sys_lstat */
1244 MIPS_SYS(sys_readlink , 3) /* 4085 */
1245 MIPS_SYS(sys_uselib , 1)
1246 MIPS_SYS(sys_swapon , 2)
1247 MIPS_SYS(sys_reboot , 3)
1248 MIPS_SYS(old_readdir , 3)
1249 MIPS_SYS(old_mmap , 6) /* 4090 */
1250 MIPS_SYS(sys_munmap , 2)
1251 MIPS_SYS(sys_truncate , 2)
1252 MIPS_SYS(sys_ftruncate , 2)
1253 MIPS_SYS(sys_fchmod , 2)
1254 MIPS_SYS(sys_fchown , 3) /* 4095 */
1255 MIPS_SYS(sys_getpriority , 2)
1256 MIPS_SYS(sys_setpriority , 3)
1257 MIPS_SYS(sys_ni_syscall , 0)
1258 MIPS_SYS(sys_statfs , 2)
1259 MIPS_SYS(sys_fstatfs , 2) /* 4100 */
1260 MIPS_SYS(sys_ni_syscall , 0) /* was ioperm(2) */
1261 MIPS_SYS(sys_socketcall , 2)
1262 MIPS_SYS(sys_syslog , 3)
1263 MIPS_SYS(sys_setitimer , 3)
1264 MIPS_SYS(sys_getitimer , 2) /* 4105 */
1265 MIPS_SYS(sys_newstat , 2)
1266 MIPS_SYS(sys_newlstat , 2)
1267 MIPS_SYS(sys_newfstat , 2)
1268 MIPS_SYS(sys_uname , 1)
1269 MIPS_SYS(sys_ni_syscall , 0) /* 4110 was iopl(2) */
1270 MIPS_SYS(sys_vhangup , 0)
1271 MIPS_SYS(sys_ni_syscall , 0) /* was sys_idle() */
1272 MIPS_SYS(sys_ni_syscall , 0) /* was sys_vm86 */
1273 MIPS_SYS(sys_wait4 , 4)
1274 MIPS_SYS(sys_swapoff , 1) /* 4115 */
1275 MIPS_SYS(sys_sysinfo , 1)
1276 MIPS_SYS(sys_ipc , 6)
1277 MIPS_SYS(sys_fsync , 1)
1278 MIPS_SYS(sys_sigreturn , 0)
1279 MIPS_SYS(sys_clone , 0) /* 4120 */
1280 MIPS_SYS(sys_setdomainname, 2)
1281 MIPS_SYS(sys_newuname , 1)
1282 MIPS_SYS(sys_ni_syscall , 0) /* sys_modify_ldt */
1283 MIPS_SYS(sys_adjtimex , 1)
1284 MIPS_SYS(sys_mprotect , 3) /* 4125 */
1285 MIPS_SYS(sys_sigprocmask , 3)
1286 MIPS_SYS(sys_ni_syscall , 0) /* was create_module */
1287 MIPS_SYS(sys_init_module , 5)
1288 MIPS_SYS(sys_delete_module, 1)
1289 MIPS_SYS(sys_ni_syscall , 0) /* 4130 was get_kernel_syms */
1290 MIPS_SYS(sys_quotactl , 0)
1291 MIPS_SYS(sys_getpgid , 1)
1292 MIPS_SYS(sys_fchdir , 1)
1293 MIPS_SYS(sys_bdflush , 2)
1294 MIPS_SYS(sys_sysfs , 3) /* 4135 */
1295 MIPS_SYS(sys_personality , 1)
1296 MIPS_SYS(sys_ni_syscall , 0) /* for afs_syscall */
1297 MIPS_SYS(sys_setfsuid , 1)
1298 MIPS_SYS(sys_setfsgid , 1)
1299 MIPS_SYS(sys_llseek , 5) /* 4140 */
1300 MIPS_SYS(sys_getdents , 3)
1301 MIPS_SYS(sys_select , 5)
1302 MIPS_SYS(sys_flock , 2)
1303 MIPS_SYS(sys_msync , 3)
1304 MIPS_SYS(sys_readv , 3) /* 4145 */
1305 MIPS_SYS(sys_writev , 3)
1306 MIPS_SYS(sys_cacheflush , 3)
1307 MIPS_SYS(sys_cachectl , 3)
1308 MIPS_SYS(sys_sysmips , 4)
1309 MIPS_SYS(sys_ni_syscall , 0) /* 4150 */
1310 MIPS_SYS(sys_getsid , 1)
1311 MIPS_SYS(sys_fdatasync , 0)
1312 MIPS_SYS(sys_sysctl , 1)
1313 MIPS_SYS(sys_mlock , 2)
1314 MIPS_SYS(sys_munlock , 2) /* 4155 */
1315 MIPS_SYS(sys_mlockall , 1)
1316 MIPS_SYS(sys_munlockall , 0)
1317 MIPS_SYS(sys_sched_setparam, 2)
1318 MIPS_SYS(sys_sched_getparam, 2)
1319 MIPS_SYS(sys_sched_setscheduler, 3) /* 4160 */
1320 MIPS_SYS(sys_sched_getscheduler, 1)
1321 MIPS_SYS(sys_sched_yield , 0)
1322 MIPS_SYS(sys_sched_get_priority_max, 1)
1323 MIPS_SYS(sys_sched_get_priority_min, 1)
1324 MIPS_SYS(sys_sched_rr_get_interval, 2) /* 4165 */
1325 MIPS_SYS(sys_nanosleep, 2)
1326 MIPS_SYS(sys_mremap , 4)
1327 MIPS_SYS(sys_accept , 3)
1328 MIPS_SYS(sys_bind , 3)
1329 MIPS_SYS(sys_connect , 3) /* 4170 */
1330 MIPS_SYS(sys_getpeername , 3)
1331 MIPS_SYS(sys_getsockname , 3)
1332 MIPS_SYS(sys_getsockopt , 5)
1333 MIPS_SYS(sys_listen , 2)
1334 MIPS_SYS(sys_recv , 4) /* 4175 */
1335 MIPS_SYS(sys_recvfrom , 6)
1336 MIPS_SYS(sys_recvmsg , 3)
1337 MIPS_SYS(sys_send , 4)
1338 MIPS_SYS(sys_sendmsg , 3)
1339 MIPS_SYS(sys_sendto , 6) /* 4180 */
1340 MIPS_SYS(sys_setsockopt , 5)
1341 MIPS_SYS(sys_shutdown , 2)
1342 MIPS_SYS(sys_socket , 3)
1343 MIPS_SYS(sys_socketpair , 4)
1344 MIPS_SYS(sys_setresuid , 3) /* 4185 */
1345 MIPS_SYS(sys_getresuid , 3)
1346 MIPS_SYS(sys_ni_syscall , 0) /* was sys_query_module */
1347 MIPS_SYS(sys_poll , 3)
1348 MIPS_SYS(sys_nfsservctl , 3)
1349 MIPS_SYS(sys_setresgid , 3) /* 4190 */
1350 MIPS_SYS(sys_getresgid , 3)
1351 MIPS_SYS(sys_prctl , 5)
1352 MIPS_SYS(sys_rt_sigreturn, 0)
1353 MIPS_SYS(sys_rt_sigaction, 4)
1354 MIPS_SYS(sys_rt_sigprocmask, 4) /* 4195 */
1355 MIPS_SYS(sys_rt_sigpending, 2)
1356 MIPS_SYS(sys_rt_sigtimedwait, 4)
1357 MIPS_SYS(sys_rt_sigqueueinfo, 3)
1358 MIPS_SYS(sys_rt_sigsuspend, 0)
1359 MIPS_SYS(sys_pread64 , 6) /* 4200 */
1360 MIPS_SYS(sys_pwrite64 , 6)
1361 MIPS_SYS(sys_chown , 3)
1362 MIPS_SYS(sys_getcwd , 2)
1363 MIPS_SYS(sys_capget , 2)
1364 MIPS_SYS(sys_capset , 2) /* 4205 */
1365 MIPS_SYS(sys_sigaltstack , 0)
1366 MIPS_SYS(sys_sendfile , 4)
1367 MIPS_SYS(sys_ni_syscall , 0)
1368 MIPS_SYS(sys_ni_syscall , 0)
1369 MIPS_SYS(sys_mmap2 , 6) /* 4210 */
1370 MIPS_SYS(sys_truncate64 , 4)
1371 MIPS_SYS(sys_ftruncate64 , 4)
1372 MIPS_SYS(sys_stat64 , 2)
1373 MIPS_SYS(sys_lstat64 , 2)
1374 MIPS_SYS(sys_fstat64 , 2) /* 4215 */
1375 MIPS_SYS(sys_pivot_root , 2)
1376 MIPS_SYS(sys_mincore , 3)
1377 MIPS_SYS(sys_madvise , 3)
1378 MIPS_SYS(sys_getdents64 , 3)
1379 MIPS_SYS(sys_fcntl64 , 3) /* 4220 */
1380 MIPS_SYS(sys_ni_syscall , 0)
1381 MIPS_SYS(sys_gettid , 0)
1382 MIPS_SYS(sys_readahead , 5)
1383 MIPS_SYS(sys_setxattr , 5)
1384 MIPS_SYS(sys_lsetxattr , 5) /* 4225 */
1385 MIPS_SYS(sys_fsetxattr , 5)
1386 MIPS_SYS(sys_getxattr , 4)
1387 MIPS_SYS(sys_lgetxattr , 4)
1388 MIPS_SYS(sys_fgetxattr , 4)
1389 MIPS_SYS(sys_listxattr , 3) /* 4230 */
1390 MIPS_SYS(sys_llistxattr , 3)
1391 MIPS_SYS(sys_flistxattr , 3)
1392 MIPS_SYS(sys_removexattr , 2)
1393 MIPS_SYS(sys_lremovexattr, 2)
1394 MIPS_SYS(sys_fremovexattr, 2) /* 4235 */
1395 MIPS_SYS(sys_tkill , 2)
1396 MIPS_SYS(sys_sendfile64 , 5)
1397 MIPS_SYS(sys_futex , 2)
1398 MIPS_SYS(sys_sched_setaffinity, 3)
1399 MIPS_SYS(sys_sched_getaffinity, 3) /* 4240 */
1400 MIPS_SYS(sys_io_setup , 2)
1401 MIPS_SYS(sys_io_destroy , 1)
1402 MIPS_SYS(sys_io_getevents, 5)
1403 MIPS_SYS(sys_io_submit , 3)
1404 MIPS_SYS(sys_io_cancel , 3) /* 4245 */
1405 MIPS_SYS(sys_exit_group , 1)
1406 MIPS_SYS(sys_lookup_dcookie, 3)
1407 MIPS_SYS(sys_epoll_create, 1)
1408 MIPS_SYS(sys_epoll_ctl , 4)
1409 MIPS_SYS(sys_epoll_wait , 3) /* 4250 */
1410 MIPS_SYS(sys_remap_file_pages, 5)
1411 MIPS_SYS(sys_set_tid_address, 1)
1412 MIPS_SYS(sys_restart_syscall, 0)
1413 MIPS_SYS(sys_fadvise64_64, 7)
1414 MIPS_SYS(sys_statfs64 , 3) /* 4255 */
1415 MIPS_SYS(sys_fstatfs64 , 2)
1416 MIPS_SYS(sys_timer_create, 3)
1417 MIPS_SYS(sys_timer_settime, 4)
1418 MIPS_SYS(sys_timer_gettime, 2)
1419 MIPS_SYS(sys_timer_getoverrun, 1) /* 4260 */
1420 MIPS_SYS(sys_timer_delete, 1)
1421 MIPS_SYS(sys_clock_settime, 2)
1422 MIPS_SYS(sys_clock_gettime, 2)
1423 MIPS_SYS(sys_clock_getres, 2)
1424 MIPS_SYS(sys_clock_nanosleep, 4) /* 4265 */
1425 MIPS_SYS(sys_tgkill , 3)
1426 MIPS_SYS(sys_utimes , 2)
1427 MIPS_SYS(sys_mbind , 4)
1428 MIPS_SYS(sys_ni_syscall , 0) /* sys_get_mempolicy */
1429 MIPS_SYS(sys_ni_syscall , 0) /* 4270 sys_set_mempolicy */
1430 MIPS_SYS(sys_mq_open , 4)
1431 MIPS_SYS(sys_mq_unlink , 1)
1432 MIPS_SYS(sys_mq_timedsend, 5)
1433 MIPS_SYS(sys_mq_timedreceive, 5)
1434 MIPS_SYS(sys_mq_notify , 2) /* 4275 */
1435 MIPS_SYS(sys_mq_getsetattr, 3)
1436 MIPS_SYS(sys_ni_syscall , 0) /* sys_vserver */
1437 MIPS_SYS(sys_waitid , 4)
1438 MIPS_SYS(sys_ni_syscall , 0) /* available, was setaltroot */
1439 MIPS_SYS(sys_add_key , 5)
388bb21a 1440 MIPS_SYS(sys_request_key, 4)
048f6b4d 1441 MIPS_SYS(sys_keyctl , 5)
6f5b89a0 1442 MIPS_SYS(sys_set_thread_area, 1)
388bb21a
TS
1443 MIPS_SYS(sys_inotify_init, 0)
1444 MIPS_SYS(sys_inotify_add_watch, 3) /* 4285 */
1445 MIPS_SYS(sys_inotify_rm_watch, 2)
1446 MIPS_SYS(sys_migrate_pages, 4)
1447 MIPS_SYS(sys_openat, 4)
1448 MIPS_SYS(sys_mkdirat, 3)
1449 MIPS_SYS(sys_mknodat, 4) /* 4290 */
1450 MIPS_SYS(sys_fchownat, 5)
1451 MIPS_SYS(sys_futimesat, 3)
1452 MIPS_SYS(sys_fstatat64, 4)
1453 MIPS_SYS(sys_unlinkat, 3)
1454 MIPS_SYS(sys_renameat, 4) /* 4295 */
1455 MIPS_SYS(sys_linkat, 5)
1456 MIPS_SYS(sys_symlinkat, 3)
1457 MIPS_SYS(sys_readlinkat, 4)
1458 MIPS_SYS(sys_fchmodat, 3)
1459 MIPS_SYS(sys_faccessat, 3) /* 4300 */
1460 MIPS_SYS(sys_pselect6, 6)
1461 MIPS_SYS(sys_ppoll, 5)
1462 MIPS_SYS(sys_unshare, 1)
1463 MIPS_SYS(sys_splice, 4)
1464 MIPS_SYS(sys_sync_file_range, 7) /* 4305 */
1465 MIPS_SYS(sys_tee, 4)
1466 MIPS_SYS(sys_vmsplice, 4)
1467 MIPS_SYS(sys_move_pages, 6)
1468 MIPS_SYS(sys_set_robust_list, 2)
1469 MIPS_SYS(sys_get_robust_list, 3) /* 4310 */
1470 MIPS_SYS(sys_kexec_load, 4)
1471 MIPS_SYS(sys_getcpu, 3)
1472 MIPS_SYS(sys_epoll_pwait, 6)
1473 MIPS_SYS(sys_ioprio_set, 3)
1474 MIPS_SYS(sys_ioprio_get, 2)
048f6b4d
FB
1475};
1476
1477#undef MIPS_SYS
1478
1479void cpu_loop(CPUMIPSState *env)
1480{
1481 target_siginfo_t info;
388bb21a 1482 int trapnr, ret;
048f6b4d 1483 unsigned int syscall_num;
048f6b4d
FB
1484
1485 for(;;) {
1486 trapnr = cpu_mips_exec(env);
1487 switch(trapnr) {
1488 case EXCP_SYSCALL:
ead9360e
TS
1489 syscall_num = env->gpr[2][env->current_tc] - 4000;
1490 env->PC[env->current_tc] += 4;
388bb21a
TS
1491 if (syscall_num >= sizeof(mips_syscall_args)) {
1492 ret = -ENOSYS;
1493 } else {
1494 int nb_args;
992f48a0
BS
1495 abi_ulong sp_reg;
1496 abi_ulong arg5 = 0, arg6 = 0, arg7 = 0, arg8 = 0;
388bb21a
TS
1497
1498 nb_args = mips_syscall_args[syscall_num];
ead9360e 1499 sp_reg = env->gpr[29][env->current_tc];
388bb21a
TS
1500 switch (nb_args) {
1501 /* these arguments are taken from the stack */
1502 case 8: arg8 = tgetl(sp_reg + 28);
1503 case 7: arg7 = tgetl(sp_reg + 24);
1504 case 6: arg6 = tgetl(sp_reg + 20);
1505 case 5: arg5 = tgetl(sp_reg + 16);
1506 default:
1507 break;
048f6b4d 1508 }
ead9360e
TS
1509 ret = do_syscall(env, env->gpr[2][env->current_tc],
1510 env->gpr[4][env->current_tc],
1511 env->gpr[5][env->current_tc],
1512 env->gpr[6][env->current_tc],
1513 env->gpr[7][env->current_tc],
388bb21a
TS
1514 arg5, arg6/*, arg7, arg8*/);
1515 }
1516 if ((unsigned int)ret >= (unsigned int)(-1133)) {
ead9360e 1517 env->gpr[7][env->current_tc] = 1; /* error flag */
388bb21a
TS
1518 ret = -ret;
1519 } else {
ead9360e 1520 env->gpr[7][env->current_tc] = 0; /* error flag */
048f6b4d 1521 }
ead9360e 1522 env->gpr[2][env->current_tc] = ret;
048f6b4d 1523 break;
ca7c2b1b
TS
1524 case EXCP_TLBL:
1525 case EXCP_TLBS:
6900e84b 1526 case EXCP_CpU:
048f6b4d 1527 case EXCP_RI:
bc1ad2de
FB
1528 info.si_signo = TARGET_SIGILL;
1529 info.si_errno = 0;
1530 info.si_code = 0;
1531 queue_signal(info.si_signo, &info);
048f6b4d 1532 break;
106ec879
FB
1533 case EXCP_INTERRUPT:
1534 /* just indicate that signals should be handled asap */
1535 break;
d08b2a28
PB
1536 case EXCP_DEBUG:
1537 {
1538 int sig;
1539
1540 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1541 if (sig)
1542 {
1543 info.si_signo = sig;
1544 info.si_errno = 0;
1545 info.si_code = TARGET_TRAP_BRKPT;
1546 queue_signal(info.si_signo, &info);
1547 }
1548 }
1549 break;
048f6b4d
FB
1550 default:
1551 // error:
5fafdf24 1552 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
048f6b4d
FB
1553 trapnr);
1554 cpu_dump_state(env, stderr, fprintf, 0);
1555 abort();
1556 }
1557 process_pending_signals(env);
1558 }
1559}
1560#endif
1561
fdf9b3e8
FB
1562#ifdef TARGET_SH4
1563void cpu_loop (CPUState *env)
1564{
1565 int trapnr, ret;
355fb23d 1566 target_siginfo_t info;
3b46e624 1567
fdf9b3e8
FB
1568 while (1) {
1569 trapnr = cpu_sh4_exec (env);
3b46e624 1570
fdf9b3e8
FB
1571 switch (trapnr) {
1572 case 0x160:
5fafdf24
TS
1573 ret = do_syscall(env,
1574 env->gregs[3],
1575 env->gregs[4],
1576 env->gregs[5],
1577 env->gregs[6],
1578 env->gregs[7],
1579 env->gregs[0],
fdf9b3e8 1580 0);
9c2a9ea1 1581 env->gregs[0] = ret;
fdf9b3e8
FB
1582 env->pc += 2;
1583 break;
355fb23d
PB
1584 case EXCP_DEBUG:
1585 {
1586 int sig;
1587
1588 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1589 if (sig)
1590 {
1591 info.si_signo = sig;
1592 info.si_errno = 0;
1593 info.si_code = TARGET_TRAP_BRKPT;
1594 queue_signal(info.si_signo, &info);
1595 }
1596 }
1597 break;
fdf9b3e8
FB
1598 default:
1599 printf ("Unhandled trap: 0x%x\n", trapnr);
1600 cpu_dump_state(env, stderr, fprintf, 0);
1601 exit (1);
1602 }
1603 process_pending_signals (env);
1604 }
1605}
1606#endif
1607
48733d19
TS
1608#ifdef TARGET_CRIS
1609void cpu_loop (CPUState *env)
1610{
1611 int trapnr, ret;
1612 target_siginfo_t info;
1613
1614 while (1) {
1615 trapnr = cpu_cris_exec (env);
1616 switch (trapnr) {
1617 case 0xaa:
1618 {
1619 info.si_signo = SIGSEGV;
1620 info.si_errno = 0;
1621 /* XXX: check env->error_code */
1622 info.si_code = TARGET_SEGV_MAPERR;
1623 info._sifields._sigfault._addr = env->debug1;
1624 queue_signal(info.si_signo, &info);
1625 }
1626 break;
1627 case EXCP_BREAK:
1628 ret = do_syscall(env,
1629 env->regs[9],
1630 env->regs[10],
1631 env->regs[11],
1632 env->regs[12],
1633 env->regs[13],
1634 env->pregs[7],
1635 env->pregs[11]);
1636 env->regs[10] = ret;
1637 env->pc += 2;
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
1662
e6e5906b
PB
1663#ifdef TARGET_M68K
1664
1665void cpu_loop(CPUM68KState *env)
1666{
1667 int trapnr;
1668 unsigned int n;
1669 target_siginfo_t info;
1670 TaskState *ts = env->opaque;
3b46e624 1671
e6e5906b
PB
1672 for(;;) {
1673 trapnr = cpu_m68k_exec(env);
1674 switch(trapnr) {
1675 case EXCP_ILLEGAL:
1676 {
1677 if (ts->sim_syscalls) {
1678 uint16_t nr;
1679 nr = lduw(env->pc + 2);
1680 env->pc += 4;
1681 do_m68k_simcall(env, nr);
1682 } else {
1683 goto do_sigill;
1684 }
1685 }
1686 break;
a87295e8 1687 case EXCP_HALT_INSN:
e6e5906b 1688 /* Semihosing syscall. */
a87295e8 1689 env->pc += 4;
e6e5906b
PB
1690 do_m68k_semihosting(env, env->dregs[0]);
1691 break;
1692 case EXCP_LINEA:
1693 case EXCP_LINEF:
1694 case EXCP_UNSUPPORTED:
1695 do_sigill:
1696 info.si_signo = SIGILL;
1697 info.si_errno = 0;
1698 info.si_code = TARGET_ILL_ILLOPN;
1699 info._sifields._sigfault._addr = env->pc;
1700 queue_signal(info.si_signo, &info);
1701 break;
1702 case EXCP_TRAP0:
1703 {
1704 ts->sim_syscalls = 0;
1705 n = env->dregs[0];
1706 env->pc += 2;
5fafdf24
TS
1707 env->dregs[0] = do_syscall(env,
1708 n,
e6e5906b
PB
1709 env->dregs[1],
1710 env->dregs[2],
1711 env->dregs[3],
1712 env->dregs[4],
1713 env->dregs[5],
1714 env->dregs[6]);
1715 }
1716 break;
1717 case EXCP_INTERRUPT:
1718 /* just indicate that signals should be handled asap */
1719 break;
1720 case EXCP_ACCESS:
1721 {
1722 info.si_signo = SIGSEGV;
1723 info.si_errno = 0;
1724 /* XXX: check env->error_code */
1725 info.si_code = TARGET_SEGV_MAPERR;
1726 info._sifields._sigfault._addr = env->mmu.ar;
1727 queue_signal(info.si_signo, &info);
1728 }
1729 break;
1730 case EXCP_DEBUG:
1731 {
1732 int sig;
1733
1734 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1735 if (sig)
1736 {
1737 info.si_signo = sig;
1738 info.si_errno = 0;
1739 info.si_code = TARGET_TRAP_BRKPT;
1740 queue_signal(info.si_signo, &info);
1741 }
1742 }
1743 break;
1744 default:
5fafdf24 1745 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
e6e5906b
PB
1746 trapnr);
1747 cpu_dump_state(env, stderr, fprintf, 0);
1748 abort();
1749 }
1750 process_pending_signals(env);
1751 }
1752}
1753#endif /* TARGET_M68K */
1754
7a3148a9
JM
1755#ifdef TARGET_ALPHA
1756void cpu_loop (CPUState *env)
1757{
e96efcfc 1758 int trapnr;
7a3148a9 1759 target_siginfo_t info;
3b46e624 1760
7a3148a9
JM
1761 while (1) {
1762 trapnr = cpu_alpha_exec (env);
3b46e624 1763
7a3148a9
JM
1764 switch (trapnr) {
1765 case EXCP_RESET:
1766 fprintf(stderr, "Reset requested. Exit\n");
1767 exit(1);
1768 break;
1769 case EXCP_MCHK:
1770 fprintf(stderr, "Machine check exception. Exit\n");
1771 exit(1);
1772 break;
1773 case EXCP_ARITH:
1774 fprintf(stderr, "Arithmetic trap.\n");
1775 exit(1);
1776 break;
1777 case EXCP_HW_INTERRUPT:
5fafdf24 1778 fprintf(stderr, "External interrupt. Exit\n");
7a3148a9
JM
1779 exit(1);
1780 break;
1781 case EXCP_DFAULT:
1782 fprintf(stderr, "MMU data fault\n");
1783 exit(1);
1784 break;
1785 case EXCP_DTB_MISS_PAL:
1786 fprintf(stderr, "MMU data TLB miss in PALcode\n");
1787 exit(1);
1788 break;
1789 case EXCP_ITB_MISS:
1790 fprintf(stderr, "MMU instruction TLB miss\n");
1791 exit(1);
1792 break;
1793 case EXCP_ITB_ACV:
1794 fprintf(stderr, "MMU instruction access violation\n");
1795 exit(1);
1796 break;
1797 case EXCP_DTB_MISS_NATIVE:
1798 fprintf(stderr, "MMU data TLB miss\n");
1799 exit(1);
1800 break;
1801 case EXCP_UNALIGN:
1802 fprintf(stderr, "Unaligned access\n");
1803 exit(1);
1804 break;
1805 case EXCP_OPCDEC:
1806 fprintf(stderr, "Invalid instruction\n");
1807 exit(1);
1808 break;
1809 case EXCP_FEN:
1810 fprintf(stderr, "Floating-point not allowed\n");
1811 exit(1);
1812 break;
1813 case EXCP_CALL_PAL ... (EXCP_CALL_PALP - 1):
1814 fprintf(stderr, "Call to PALcode\n");
1815 call_pal(env, (trapnr >> 6) | 0x80);
1816 break;
1817 case EXCP_CALL_PALP ... (EXCP_CALL_PALE - 1):
7f75ffd3 1818 fprintf(stderr, "Privileged call to PALcode\n");
7a3148a9
JM
1819 exit(1);
1820 break;
1821 case EXCP_DEBUG:
1822 {
1823 int sig;
1824
1825 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1826 if (sig)
1827 {
1828 info.si_signo = sig;
1829 info.si_errno = 0;
1830 info.si_code = TARGET_TRAP_BRKPT;
1831 queue_signal(info.si_signo, &info);
1832 }
1833 }
1834 break;
1835 default:
1836 printf ("Unhandled trap: 0x%x\n", trapnr);
1837 cpu_dump_state(env, stderr, fprintf, 0);
1838 exit (1);
1839 }
1840 process_pending_signals (env);
1841 }
1842}
1843#endif /* TARGET_ALPHA */
1844
31e31b8a
FB
1845void usage(void)
1846{
84f2e8ef 1847 printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2007 Fabrice Bellard\n"
b1f9be31 1848 "usage: qemu-" TARGET_ARCH " [-h] [-g] [-d opts] [-L path] [-s size] [-cpu model] program [arguments...]\n"
b346ff46 1849 "Linux CPU emulator (compiled for %s emulation)\n"
d691f669 1850 "\n"
b12b6a18
TS
1851 "-h print this help\n"
1852 "-g port wait gdb connection to port\n"
1853 "-L path set the elf interpreter prefix (default=%s)\n"
1854 "-s size set the stack size in bytes (default=%ld)\n"
1855 "-cpu model select CPU (-cpu ? for list)\n"
1856 "-drop-ld-preload drop LD_PRELOAD for target process\n"
54936004
FB
1857 "\n"
1858 "debug options:\n"
c6981055
FB
1859#ifdef USE_CODE_COPY
1860 "-no-code-copy disable code copy acceleration\n"
1861#endif
6f1f31c0 1862 "-d options activate log (logfile=%s)\n"
54936004 1863 "-p pagesize set the host page size to 'pagesize'\n",
b346ff46 1864 TARGET_ARCH,
5fafdf24 1865 interp_prefix,
54936004
FB
1866 x86_stack_size,
1867 DEBUG_LOGFILE);
74cd30b8 1868 _exit(1);
31e31b8a
FB
1869}
1870
9de5e440 1871/* XXX: currently only used for async signals (see signal.c) */
b346ff46 1872CPUState *global_env;
59faf6d6 1873
851e67a1
FB
1874/* used to free thread contexts */
1875TaskState *first_task_state;
9de5e440 1876
31e31b8a
FB
1877int main(int argc, char **argv)
1878{
1879 const char *filename;
b1f9be31 1880 const char *cpu_model;
01ffc75b 1881 struct target_pt_regs regs1, *regs = &regs1;
31e31b8a 1882 struct image_info info1, *info = &info1;
851e67a1 1883 TaskState ts1, *ts = &ts1;
b346ff46 1884 CPUState *env;
586314f2 1885 int optind;
d691f669 1886 const char *r;
74c33bed 1887 int gdbstub_port = 0;
b12b6a18
TS
1888 int drop_ld_preload = 0, environ_count = 0;
1889 char **target_environ, **wrk, **dst;
1890
31e31b8a
FB
1891 if (argc <= 1)
1892 usage();
f801f97e 1893
cc38b844
FB
1894 /* init debug */
1895 cpu_set_log_filename(DEBUG_LOGFILE);
1896
b1f9be31 1897 cpu_model = NULL;
586314f2 1898 optind = 1;
d691f669
FB
1899 for(;;) {
1900 if (optind >= argc)
1901 break;
1902 r = argv[optind];
1903 if (r[0] != '-')
1904 break;
586314f2 1905 optind++;
d691f669
FB
1906 r++;
1907 if (!strcmp(r, "-")) {
1908 break;
1909 } else if (!strcmp(r, "d")) {
e19e89a5
FB
1910 int mask;
1911 CPULogItem *item;
6f1f31c0
FB
1912
1913 if (optind >= argc)
1914 break;
3b46e624 1915
6f1f31c0
FB
1916 r = argv[optind++];
1917 mask = cpu_str_to_log_mask(r);
e19e89a5
FB
1918 if (!mask) {
1919 printf("Log items (comma separated):\n");
1920 for(item = cpu_log_items; item->mask != 0; item++) {
1921 printf("%-10s %s\n", item->name, item->help);
1922 }
1923 exit(1);
1924 }
1925 cpu_set_log(mask);
d691f669
FB
1926 } else if (!strcmp(r, "s")) {
1927 r = argv[optind++];
1928 x86_stack_size = strtol(r, (char **)&r, 0);
1929 if (x86_stack_size <= 0)
1930 usage();
1931 if (*r == 'M')
1932 x86_stack_size *= 1024 * 1024;
1933 else if (*r == 'k' || *r == 'K')
1934 x86_stack_size *= 1024;
1935 } else if (!strcmp(r, "L")) {
1936 interp_prefix = argv[optind++];
54936004 1937 } else if (!strcmp(r, "p")) {
83fb7adf
FB
1938 qemu_host_page_size = atoi(argv[optind++]);
1939 if (qemu_host_page_size == 0 ||
1940 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
54936004
FB
1941 fprintf(stderr, "page size must be a power of two\n");
1942 exit(1);
1943 }
1fddef4b 1944 } else if (!strcmp(r, "g")) {
74c33bed 1945 gdbstub_port = atoi(argv[optind++]);
c5937220
PB
1946 } else if (!strcmp(r, "r")) {
1947 qemu_uname_release = argv[optind++];
b1f9be31
JM
1948 } else if (!strcmp(r, "cpu")) {
1949 cpu_model = argv[optind++];
1950 if (strcmp(cpu_model, "?") == 0) {
c732abe2
JM
1951/* XXX: implement xxx_cpu_list for targets that still miss it */
1952#if defined(cpu_list)
1953 cpu_list(stdout, &fprintf);
b1f9be31 1954#endif
cff4cbed 1955 _exit(1);
b1f9be31 1956 }
b12b6a18
TS
1957 } else if (!strcmp(r, "drop-ld-preload")) {
1958 drop_ld_preload = 1;
5fafdf24 1959 } else
c6981055
FB
1960#ifdef USE_CODE_COPY
1961 if (!strcmp(r, "no-code-copy")) {
1962 code_copy_enabled = 0;
5fafdf24 1963 } else
c6981055
FB
1964#endif
1965 {
d691f669
FB
1966 usage();
1967 }
586314f2 1968 }
d691f669
FB
1969 if (optind >= argc)
1970 usage();
586314f2
FB
1971 filename = argv[optind];
1972
31e31b8a 1973 /* Zero out regs */
01ffc75b 1974 memset(regs, 0, sizeof(struct target_pt_regs));
31e31b8a
FB
1975
1976 /* Zero out image_info */
1977 memset(info, 0, sizeof(struct image_info));
1978
74cd30b8
FB
1979 /* Scan interp_prefix dir for replacement files. */
1980 init_paths(interp_prefix);
1981
83fb7adf
FB
1982 /* NOTE: we need to init the CPU at this stage to get
1983 qemu_host_page_size */
b346ff46 1984 env = cpu_init();
15338fd7 1985 global_env = env;
3b46e624 1986
b12b6a18
TS
1987 wrk = environ;
1988 while (*(wrk++))
1989 environ_count++;
1990
1991 target_environ = malloc((environ_count + 1) * sizeof(char *));
1992 if (!target_environ)
1993 abort();
1994 for (wrk = environ, dst = target_environ; *wrk; wrk++) {
1995 if (drop_ld_preload && !strncmp(*wrk, "LD_PRELOAD=", 11))
1996 continue;
1997 *(dst++) = strdup(*wrk);
1998 }
403f14ef 1999 *dst = NULL; /* NULL terminate target_environ */
b12b6a18
TS
2000
2001 if (loader_exec(filename, argv+optind, target_environ, regs, info) != 0) {
2002 printf("Error loading %s\n", filename);
2003 _exit(1);
2004 }
2005
2006 for (wrk = target_environ; *wrk; wrk++) {
2007 free(*wrk);
31e31b8a 2008 }
3b46e624 2009
b12b6a18
TS
2010 free(target_environ);
2011
4b74fe1f 2012 if (loglevel) {
54936004 2013 page_dump(logfile);
3b46e624 2014
3d177870
JM
2015 fprintf(logfile, "start_brk 0x" TARGET_FMT_lx "\n", info->start_brk);
2016 fprintf(logfile, "end_code 0x" TARGET_FMT_lx "\n", info->end_code);
2017 fprintf(logfile, "start_code 0x" TARGET_FMT_lx "\n",
2018 info->start_code);
2019 fprintf(logfile, "start_data 0x" TARGET_FMT_lx "\n",
2020 info->start_data);
2021 fprintf(logfile, "end_data 0x" TARGET_FMT_lx "\n", info->end_data);
2022 fprintf(logfile, "start_stack 0x" TARGET_FMT_lx "\n",
2023 info->start_stack);
2024 fprintf(logfile, "brk 0x" TARGET_FMT_lx "\n", info->brk);
2025 fprintf(logfile, "entry 0x" TARGET_FMT_lx "\n", info->entry);
4b74fe1f 2026 }
31e31b8a 2027
53a5960a 2028 target_set_brk(info->brk);
31e31b8a 2029 syscall_init();
66fb9763 2030 signal_init();
31e31b8a 2031
851e67a1
FB
2032 /* build Task State */
2033 memset(ts, 0, sizeof(TaskState));
2034 env->opaque = ts;
2035 ts->used = 1;
978efd6a 2036 ts->info = info;
59faf6d6 2037 env->user_mode_only = 1;
3b46e624 2038
b346ff46 2039#if defined(TARGET_I386)
2e255c6b
FB
2040 cpu_x86_set_cpl(env, 3);
2041
3802ce26 2042 env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK;
1bde465e
FB
2043 env->hflags |= HF_PE_MASK;
2044 if (env->cpuid_features & CPUID_SSE) {
2045 env->cr[4] |= CR4_OSFXSR_MASK;
2046 env->hflags |= HF_OSFXSR_MASK;
2047 }
2048
415e561f
FB
2049 /* flags setup : we activate the IRQs by default as in user mode */
2050 env->eflags |= IF_MASK;
3b46e624 2051
6dbad63e 2052 /* linux register setup */
84409ddb
JM
2053#if defined(TARGET_X86_64)
2054 env->regs[R_EAX] = regs->rax;
2055 env->regs[R_EBX] = regs->rbx;
2056 env->regs[R_ECX] = regs->rcx;
2057 env->regs[R_EDX] = regs->rdx;
2058 env->regs[R_ESI] = regs->rsi;
2059 env->regs[R_EDI] = regs->rdi;
2060 env->regs[R_EBP] = regs->rbp;
2061 env->regs[R_ESP] = regs->rsp;
2062 env->eip = regs->rip;
2063#else
0ecfa993
FB
2064 env->regs[R_EAX] = regs->eax;
2065 env->regs[R_EBX] = regs->ebx;
2066 env->regs[R_ECX] = regs->ecx;
2067 env->regs[R_EDX] = regs->edx;
2068 env->regs[R_ESI] = regs->esi;
2069 env->regs[R_EDI] = regs->edi;
2070 env->regs[R_EBP] = regs->ebp;
2071 env->regs[R_ESP] = regs->esp;
dab2ed99 2072 env->eip = regs->eip;
84409ddb 2073#endif
31e31b8a 2074
f4beb510 2075 /* linux interrupt setup */
53a5960a 2076 env->idt.base = h2g(idt_table);
f4beb510
FB
2077 env->idt.limit = sizeof(idt_table) - 1;
2078 set_idt(0, 0);
2079 set_idt(1, 0);
2080 set_idt(2, 0);
2081 set_idt(3, 3);
2082 set_idt(4, 3);
2083 set_idt(5, 3);
2084 set_idt(6, 0);
2085 set_idt(7, 0);
2086 set_idt(8, 0);
2087 set_idt(9, 0);
2088 set_idt(10, 0);
2089 set_idt(11, 0);
2090 set_idt(12, 0);
2091 set_idt(13, 0);
2092 set_idt(14, 0);
2093 set_idt(15, 0);
2094 set_idt(16, 0);
2095 set_idt(17, 0);
2096 set_idt(18, 0);
2097 set_idt(19, 0);
2098 set_idt(0x80, 3);
2099
6dbad63e 2100 /* linux segment setup */
53a5960a 2101 env->gdt.base = h2g(gdt_table);
6dbad63e 2102 env->gdt.limit = sizeof(gdt_table) - 1;
f4beb510 2103 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
5fafdf24 2104 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
f4beb510
FB
2105 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
2106 write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff,
5fafdf24 2107 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
f4beb510 2108 (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT));
6dbad63e
FB
2109 cpu_x86_load_seg(env, R_CS, __USER_CS);
2110 cpu_x86_load_seg(env, R_DS, __USER_DS);
2111 cpu_x86_load_seg(env, R_ES, __USER_DS);
2112 cpu_x86_load_seg(env, R_SS, __USER_DS);
2113 cpu_x86_load_seg(env, R_FS, __USER_DS);
2114 cpu_x86_load_seg(env, R_GS, __USER_DS);
92ccca6a 2115
d6eb40f6
TS
2116 /* This hack makes Wine work... */
2117 env->segs[R_FS].selector = 0;
b346ff46
FB
2118#elif defined(TARGET_ARM)
2119 {
2120 int i;
b1f9be31
JM
2121 if (cpu_model == NULL)
2122 cpu_model = "arm926";
2123 cpu_arm_set_model(env, cpu_model);
b5ff1b31 2124 cpsr_write(env, regs->uregs[16], 0xffffffff);
b346ff46
FB
2125 for(i = 0; i < 16; i++) {
2126 env->regs[i] = regs->uregs[i];
2127 }
b346ff46 2128 }
93ac68bc 2129#elif defined(TARGET_SPARC)
060366c5
FB
2130 {
2131 int i;
925fb139
BS
2132 const sparc_def_t *def;
2133#ifdef TARGET_SPARC64
2134 if (cpu_model == NULL)
2135 cpu_model = "TI UltraSparc II";
2136#else
2137 if (cpu_model == NULL)
2138 cpu_model = "Fujitsu MB86904";
2139#endif
2140 sparc_find_by_name(cpu_model, &def);
2141 if (def == NULL) {
2142 fprintf(stderr, "Unable to find Sparc CPU definition\n");
2143 exit(1);
2144 }
2145 cpu_sparc_register(env, def);
060366c5
FB
2146 env->pc = regs->pc;
2147 env->npc = regs->npc;
2148 env->y = regs->y;
2149 for(i = 0; i < 8; i++)
2150 env->gregs[i] = regs->u_regs[i];
2151 for(i = 0; i < 8; i++)
2152 env->regwptr[i] = regs->u_regs[i + 8];
2153 }
67867308
FB
2154#elif defined(TARGET_PPC)
2155 {
3fc6c082 2156 ppc_def_t *def;
67867308 2157 int i;
3fc6c082
FB
2158
2159 /* Choose and initialise CPU */
b1f9be31
JM
2160 if (cpu_model == NULL)
2161 cpu_model = "750";
2162 ppc_find_by_name(cpu_model, &def);
3fc6c082 2163 if (def == NULL) {
c68ea704 2164 cpu_abort(env,
3fc6c082
FB
2165 "Unable to find PowerPC CPU definition\n");
2166 }
c68ea704 2167 cpu_ppc_register(env, def);
1cc8e6f0 2168 cpu_ppc_reset(env);
61190b14 2169 for (i = 0; i < 32; i++) {
4c2e770f 2170 if (i != 12 && i != 6 && i != 13)
61190b14
FB
2171 env->msr[i] = (regs->msr >> i) & 1;
2172 }
84409ddb
JM
2173#if defined(TARGET_PPC64)
2174 msr_sf = 1;
2175#endif
67867308
FB
2176 env->nip = regs->nip;
2177 for(i = 0; i < 32; i++) {
2178 env->gpr[i] = regs->gpr[i];
2179 }
2180 }
e6e5906b
PB
2181#elif defined(TARGET_M68K)
2182 {
0633879f 2183 if (cpu_model == NULL)
0402f767 2184 cpu_model = "any";
0633879f 2185 if (cpu_m68k_set_model(env, cpu_model)) {
e6e5906b
PB
2186 cpu_abort(cpu_single_env,
2187 "Unable to find m68k CPU definition\n");
2188 }
e6e5906b
PB
2189 env->pc = regs->pc;
2190 env->dregs[0] = regs->d0;
2191 env->dregs[1] = regs->d1;
2192 env->dregs[2] = regs->d2;
2193 env->dregs[3] = regs->d3;
2194 env->dregs[4] = regs->d4;
2195 env->dregs[5] = regs->d5;
2196 env->dregs[6] = regs->d6;
2197 env->dregs[7] = regs->d7;
2198 env->aregs[0] = regs->a0;
2199 env->aregs[1] = regs->a1;
2200 env->aregs[2] = regs->a2;
2201 env->aregs[3] = regs->a3;
2202 env->aregs[4] = regs->a4;
2203 env->aregs[5] = regs->a5;
2204 env->aregs[6] = regs->a6;
2205 env->aregs[7] = regs->usp;
2206 env->sr = regs->sr;
2207 ts->sim_syscalls = 1;
2208 }
048f6b4d
FB
2209#elif defined(TARGET_MIPS)
2210 {
cff4cbed 2211 mips_def_t *def;
048f6b4d
FB
2212 int i;
2213
cff4cbed
TS
2214 /* Choose and initialise CPU */
2215 if (cpu_model == NULL)
540635ba
TS
2216#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
2217 cpu_model = "20Kc";
2218#else
cff4cbed 2219 cpu_model = "24Kf";
540635ba 2220#endif
cff4cbed
TS
2221 mips_find_by_name(cpu_model, &def);
2222 if (def == NULL)
2223 cpu_abort(env, "Unable to find MIPS CPU definition\n");
2224 cpu_mips_register(env, def);
2225
048f6b4d 2226 for(i = 0; i < 32; i++) {
ead9360e 2227 env->gpr[i][env->current_tc] = regs->regs[i];
048f6b4d 2228 }
ead9360e 2229 env->PC[env->current_tc] = regs->cp0_epc;
048f6b4d 2230 }
fdf9b3e8
FB
2231#elif defined(TARGET_SH4)
2232 {
2233 int i;
2234
2235 for(i = 0; i < 16; i++) {
2236 env->gregs[i] = regs->regs[i];
2237 }
2238 env->pc = regs->pc;
2239 }
7a3148a9
JM
2240#elif defined(TARGET_ALPHA)
2241 {
2242 int i;
2243
2244 for(i = 0; i < 28; i++) {
992f48a0 2245 env->ir[i] = ((abi_ulong *)regs)[i];
7a3148a9
JM
2246 }
2247 env->ipr[IPR_USP] = regs->usp;
2248 env->ir[30] = regs->usp;
2249 env->pc = regs->pc;
2250 env->unique = regs->unique;
2251 }
48733d19
TS
2252#elif defined(TARGET_CRIS)
2253 {
2254 env->regs[0] = regs->r0;
2255 env->regs[1] = regs->r1;
2256 env->regs[2] = regs->r2;
2257 env->regs[3] = regs->r3;
2258 env->regs[4] = regs->r4;
2259 env->regs[5] = regs->r5;
2260 env->regs[6] = regs->r6;
2261 env->regs[7] = regs->r7;
2262 env->regs[8] = regs->r8;
2263 env->regs[9] = regs->r9;
2264 env->regs[10] = regs->r10;
2265 env->regs[11] = regs->r11;
2266 env->regs[12] = regs->r12;
2267 env->regs[13] = regs->r13;
2268 env->regs[14] = info->start_stack;
2269 env->regs[15] = regs->acr;
2270 env->pc = regs->erp;
2271 }
b346ff46
FB
2272#else
2273#error unsupported target CPU
2274#endif
31e31b8a 2275
a87295e8
PB
2276#if defined(TARGET_ARM) || defined(TARGET_M68K)
2277 ts->stack_base = info->start_stack;
2278 ts->heap_base = info->brk;
2279 /* This will be filled in on the first SYS_HEAPINFO call. */
2280 ts->heap_limit = 0;
2281#endif
2282
74c33bed
FB
2283 if (gdbstub_port) {
2284 gdbserver_start (gdbstub_port);
1fddef4b
FB
2285 gdb_handlesig(env, 0);
2286 }
1b6b029e
FB
2287 cpu_loop(env);
2288 /* never exits */
31e31b8a
FB
2289 return 0;
2290}