]> Git Repo - qemu.git/blob - linux-user/main.c
linux-user: Fix MIPS indirect syscall handling
[qemu.git] / linux-user / main.c
1 /*
2  *  qemu user main
3  *
4  *  Copyright (c) 2003-2008 Fabrice Bellard
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
18  */
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <stdarg.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <unistd.h>
25 #include <sys/mman.h>
26 #include <sys/syscall.h>
27 #include <sys/resource.h>
28
29 #include "qemu.h"
30 #include "qemu-common.h"
31 #include "cache-utils.h"
32 #include "cpu.h"
33 #include "tcg.h"
34 #include "qemu-timer.h"
35 #include "envlist.h"
36
37 #define DEBUG_LOGFILE "/tmp/qemu.log"
38
39 char *exec_path;
40
41 int singlestep;
42 unsigned long mmap_min_addr;
43 #if defined(CONFIG_USE_GUEST_BASE)
44 unsigned long guest_base;
45 int have_guest_base;
46 unsigned long reserved_va;
47 #endif
48
49 static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
50 const char *qemu_uname_release = CONFIG_UNAME_RELEASE;
51
52 /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
53    we allocate a bigger stack. Need a better solution, for example
54    by remapping the process stack directly at the right place */
55 unsigned long guest_stack_size = 8 * 1024 * 1024UL;
56
57 void gemu_log(const char *fmt, ...)
58 {
59     va_list ap;
60
61     va_start(ap, fmt);
62     vfprintf(stderr, fmt, ap);
63     va_end(ap);
64 }
65
66 #if defined(TARGET_I386)
67 int cpu_get_pic_interrupt(CPUState *env)
68 {
69     return -1;
70 }
71 #endif
72
73 /* timers for rdtsc */
74
75 #if 0
76
77 static uint64_t emu_time;
78
79 int64_t cpu_get_real_ticks(void)
80 {
81     return emu_time++;
82 }
83
84 #endif
85
86 #if defined(CONFIG_USE_NPTL)
87 /***********************************************************/
88 /* Helper routines for implementing atomic operations.  */
89
90 /* To implement exclusive operations we force all cpus to syncronise.
91    We don't require a full sync, only that no cpus are executing guest code.
92    The alternative is to map target atomic ops onto host equivalents,
93    which requires quite a lot of per host/target work.  */
94 static pthread_mutex_t cpu_list_mutex = PTHREAD_MUTEX_INITIALIZER;
95 static pthread_mutex_t exclusive_lock = PTHREAD_MUTEX_INITIALIZER;
96 static pthread_cond_t exclusive_cond = PTHREAD_COND_INITIALIZER;
97 static pthread_cond_t exclusive_resume = PTHREAD_COND_INITIALIZER;
98 static int pending_cpus;
99
100 /* Make sure everything is in a consistent state for calling fork().  */
101 void fork_start(void)
102 {
103     pthread_mutex_lock(&tb_lock);
104     pthread_mutex_lock(&exclusive_lock);
105     mmap_fork_start();
106 }
107
108 void fork_end(int child)
109 {
110     mmap_fork_end(child);
111     if (child) {
112         /* Child processes created by fork() only have a single thread.
113            Discard information about the parent threads.  */
114         first_cpu = thread_env;
115         thread_env->next_cpu = NULL;
116         pending_cpus = 0;
117         pthread_mutex_init(&exclusive_lock, NULL);
118         pthread_mutex_init(&cpu_list_mutex, NULL);
119         pthread_cond_init(&exclusive_cond, NULL);
120         pthread_cond_init(&exclusive_resume, NULL);
121         pthread_mutex_init(&tb_lock, NULL);
122         gdbserver_fork(thread_env);
123     } else {
124         pthread_mutex_unlock(&exclusive_lock);
125         pthread_mutex_unlock(&tb_lock);
126     }
127 }
128
129 /* Wait for pending exclusive operations to complete.  The exclusive lock
130    must be held.  */
131 static inline void exclusive_idle(void)
132 {
133     while (pending_cpus) {
134         pthread_cond_wait(&exclusive_resume, &exclusive_lock);
135     }
136 }
137
138 /* Start an exclusive operation.
139    Must only be called from outside cpu_arm_exec.   */
140 static inline void start_exclusive(void)
141 {
142     CPUState *other;
143     pthread_mutex_lock(&exclusive_lock);
144     exclusive_idle();
145
146     pending_cpus = 1;
147     /* Make all other cpus stop executing.  */
148     for (other = first_cpu; other; other = other->next_cpu) {
149         if (other->running) {
150             pending_cpus++;
151             cpu_exit(other);
152         }
153     }
154     if (pending_cpus > 1) {
155         pthread_cond_wait(&exclusive_cond, &exclusive_lock);
156     }
157 }
158
159 /* Finish an exclusive operation.  */
160 static inline void end_exclusive(void)
161 {
162     pending_cpus = 0;
163     pthread_cond_broadcast(&exclusive_resume);
164     pthread_mutex_unlock(&exclusive_lock);
165 }
166
167 /* Wait for exclusive ops to finish, and begin cpu execution.  */
168 static inline void cpu_exec_start(CPUState *env)
169 {
170     pthread_mutex_lock(&exclusive_lock);
171     exclusive_idle();
172     env->running = 1;
173     pthread_mutex_unlock(&exclusive_lock);
174 }
175
176 /* Mark cpu as not executing, and release pending exclusive ops.  */
177 static inline void cpu_exec_end(CPUState *env)
178 {
179     pthread_mutex_lock(&exclusive_lock);
180     env->running = 0;
181     if (pending_cpus > 1) {
182         pending_cpus--;
183         if (pending_cpus == 1) {
184             pthread_cond_signal(&exclusive_cond);
185         }
186     }
187     exclusive_idle();
188     pthread_mutex_unlock(&exclusive_lock);
189 }
190
191 void cpu_list_lock(void)
192 {
193     pthread_mutex_lock(&cpu_list_mutex);
194 }
195
196 void cpu_list_unlock(void)
197 {
198     pthread_mutex_unlock(&cpu_list_mutex);
199 }
200 #else /* if !CONFIG_USE_NPTL */
201 /* These are no-ops because we are not threadsafe.  */
202 static inline void cpu_exec_start(CPUState *env)
203 {
204 }
205
206 static inline void cpu_exec_end(CPUState *env)
207 {
208 }
209
210 static inline void start_exclusive(void)
211 {
212 }
213
214 static inline void end_exclusive(void)
215 {
216 }
217
218 void fork_start(void)
219 {
220 }
221
222 void fork_end(int child)
223 {
224     if (child) {
225         gdbserver_fork(thread_env);
226     }
227 }
228
229 void cpu_list_lock(void)
230 {
231 }
232
233 void cpu_list_unlock(void)
234 {
235 }
236 #endif
237
238
239 #ifdef TARGET_I386
240 /***********************************************************/
241 /* CPUX86 core interface */
242
243 void cpu_smm_update(CPUState *env)
244 {
245 }
246
247 uint64_t cpu_get_tsc(CPUX86State *env)
248 {
249     return cpu_get_real_ticks();
250 }
251
252 static void write_dt(void *ptr, unsigned long addr, unsigned long limit,
253                      int flags)
254 {
255     unsigned int e1, e2;
256     uint32_t *p;
257     e1 = (addr << 16) | (limit & 0xffff);
258     e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000);
259     e2 |= flags;
260     p = ptr;
261     p[0] = tswap32(e1);
262     p[1] = tswap32(e2);
263 }
264
265 static uint64_t *idt_table;
266 #ifdef TARGET_X86_64
267 static void set_gate64(void *ptr, unsigned int type, unsigned int dpl,
268                        uint64_t addr, unsigned int sel)
269 {
270     uint32_t *p, e1, e2;
271     e1 = (addr & 0xffff) | (sel << 16);
272     e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
273     p = ptr;
274     p[0] = tswap32(e1);
275     p[1] = tswap32(e2);
276     p[2] = tswap32(addr >> 32);
277     p[3] = 0;
278 }
279 /* only dpl matters as we do only user space emulation */
280 static void set_idt(int n, unsigned int dpl)
281 {
282     set_gate64(idt_table + n * 2, 0, dpl, 0, 0);
283 }
284 #else
285 static void set_gate(void *ptr, unsigned int type, unsigned int dpl,
286                      uint32_t addr, unsigned int sel)
287 {
288     uint32_t *p, e1, e2;
289     e1 = (addr & 0xffff) | (sel << 16);
290     e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
291     p = ptr;
292     p[0] = tswap32(e1);
293     p[1] = tswap32(e2);
294 }
295
296 /* only dpl matters as we do only user space emulation */
297 static void set_idt(int n, unsigned int dpl)
298 {
299     set_gate(idt_table + n, 0, dpl, 0, 0);
300 }
301 #endif
302
303 void cpu_loop(CPUX86State *env)
304 {
305     int trapnr;
306     abi_ulong pc;
307     target_siginfo_t info;
308
309     for(;;) {
310         trapnr = cpu_x86_exec(env);
311         switch(trapnr) {
312         case 0x80:
313             /* linux syscall from int $0x80 */
314             env->regs[R_EAX] = do_syscall(env,
315                                           env->regs[R_EAX],
316                                           env->regs[R_EBX],
317                                           env->regs[R_ECX],
318                                           env->regs[R_EDX],
319                                           env->regs[R_ESI],
320                                           env->regs[R_EDI],
321                                           env->regs[R_EBP],
322                                           0, 0);
323             break;
324 #ifndef TARGET_ABI32
325         case EXCP_SYSCALL:
326             /* linux syscall from syscall instruction */
327             env->regs[R_EAX] = do_syscall(env,
328                                           env->regs[R_EAX],
329                                           env->regs[R_EDI],
330                                           env->regs[R_ESI],
331                                           env->regs[R_EDX],
332                                           env->regs[10],
333                                           env->regs[8],
334                                           env->regs[9],
335                                           0, 0);
336             env->eip = env->exception_next_eip;
337             break;
338 #endif
339         case EXCP0B_NOSEG:
340         case EXCP0C_STACK:
341             info.si_signo = SIGBUS;
342             info.si_errno = 0;
343             info.si_code = TARGET_SI_KERNEL;
344             info._sifields._sigfault._addr = 0;
345             queue_signal(env, info.si_signo, &info);
346             break;
347         case EXCP0D_GPF:
348             /* XXX: potential problem if ABI32 */
349 #ifndef TARGET_X86_64
350             if (env->eflags & VM_MASK) {
351                 handle_vm86_fault(env);
352             } else
353 #endif
354             {
355                 info.si_signo = SIGSEGV;
356                 info.si_errno = 0;
357                 info.si_code = TARGET_SI_KERNEL;
358                 info._sifields._sigfault._addr = 0;
359                 queue_signal(env, info.si_signo, &info);
360             }
361             break;
362         case EXCP0E_PAGE:
363             info.si_signo = SIGSEGV;
364             info.si_errno = 0;
365             if (!(env->error_code & 1))
366                 info.si_code = TARGET_SEGV_MAPERR;
367             else
368                 info.si_code = TARGET_SEGV_ACCERR;
369             info._sifields._sigfault._addr = env->cr[2];
370             queue_signal(env, info.si_signo, &info);
371             break;
372         case EXCP00_DIVZ:
373 #ifndef TARGET_X86_64
374             if (env->eflags & VM_MASK) {
375                 handle_vm86_trap(env, trapnr);
376             } else
377 #endif
378             {
379                 /* division by zero */
380                 info.si_signo = SIGFPE;
381                 info.si_errno = 0;
382                 info.si_code = TARGET_FPE_INTDIV;
383                 info._sifields._sigfault._addr = env->eip;
384                 queue_signal(env, info.si_signo, &info);
385             }
386             break;
387         case EXCP01_DB:
388         case EXCP03_INT3:
389 #ifndef TARGET_X86_64
390             if (env->eflags & VM_MASK) {
391                 handle_vm86_trap(env, trapnr);
392             } else
393 #endif
394             {
395                 info.si_signo = SIGTRAP;
396                 info.si_errno = 0;
397                 if (trapnr == EXCP01_DB) {
398                     info.si_code = TARGET_TRAP_BRKPT;
399                     info._sifields._sigfault._addr = env->eip;
400                 } else {
401                     info.si_code = TARGET_SI_KERNEL;
402                     info._sifields._sigfault._addr = 0;
403                 }
404                 queue_signal(env, info.si_signo, &info);
405             }
406             break;
407         case EXCP04_INTO:
408         case EXCP05_BOUND:
409 #ifndef TARGET_X86_64
410             if (env->eflags & VM_MASK) {
411                 handle_vm86_trap(env, trapnr);
412             } else
413 #endif
414             {
415                 info.si_signo = SIGSEGV;
416                 info.si_errno = 0;
417                 info.si_code = TARGET_SI_KERNEL;
418                 info._sifields._sigfault._addr = 0;
419                 queue_signal(env, info.si_signo, &info);
420             }
421             break;
422         case EXCP06_ILLOP:
423             info.si_signo = SIGILL;
424             info.si_errno = 0;
425             info.si_code = TARGET_ILL_ILLOPN;
426             info._sifields._sigfault._addr = env->eip;
427             queue_signal(env, info.si_signo, &info);
428             break;
429         case EXCP_INTERRUPT:
430             /* just indicate that signals should be handled asap */
431             break;
432         case EXCP_DEBUG:
433             {
434                 int sig;
435
436                 sig = gdb_handlesig (env, TARGET_SIGTRAP);
437                 if (sig)
438                   {
439                     info.si_signo = sig;
440                     info.si_errno = 0;
441                     info.si_code = TARGET_TRAP_BRKPT;
442                     queue_signal(env, info.si_signo, &info);
443                   }
444             }
445             break;
446         default:
447             pc = env->segs[R_CS].base + env->eip;
448             fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
449                     (long)pc, trapnr);
450             abort();
451         }
452         process_pending_signals(env);
453     }
454 }
455 #endif
456
457 #ifdef TARGET_ARM
458
459 /*
460  * See the Linux kernel's Documentation/arm/kernel_user_helpers.txt
461  * Input:
462  * r0 = pointer to oldval
463  * r1 = pointer to newval
464  * r2 = pointer to target value
465  *
466  * Output:
467  * r0 = 0 if *ptr was changed, non-0 if no exchange happened
468  * C set if *ptr was changed, clear if no exchange happened
469  *
470  * Note segv's in kernel helpers are a bit tricky, we can set the
471  * data address sensibly but the PC address is just the entry point.
472  */
473 static void arm_kernel_cmpxchg64_helper(CPUARMState *env)
474 {
475     uint64_t oldval, newval, val;
476     uint32_t addr, cpsr;
477     target_siginfo_t info;
478
479     /* Based on the 32 bit code in do_kernel_trap */
480
481     /* XXX: This only works between threads, not between processes.
482        It's probably possible to implement this with native host
483        operations. However things like ldrex/strex are much harder so
484        there's not much point trying.  */
485     start_exclusive();
486     cpsr = cpsr_read(env);
487     addr = env->regs[2];
488
489     if (get_user_u64(oldval, env->regs[0])) {
490         env->cp15.c6_data = env->regs[0];
491         goto segv;
492     };
493
494     if (get_user_u64(newval, env->regs[1])) {
495         env->cp15.c6_data = env->regs[1];
496         goto segv;
497     };
498
499     if (get_user_u64(val, addr)) {
500         env->cp15.c6_data = addr;
501         goto segv;
502     }
503
504     if (val == oldval) {
505         val = newval;
506
507         if (put_user_u64(val, addr)) {
508             env->cp15.c6_data = addr;
509             goto segv;
510         };
511
512         env->regs[0] = 0;
513         cpsr |= CPSR_C;
514     } else {
515         env->regs[0] = -1;
516         cpsr &= ~CPSR_C;
517     }
518     cpsr_write(env, cpsr, CPSR_C);
519     end_exclusive();
520     return;
521
522 segv:
523     end_exclusive();
524     /* We get the PC of the entry address - which is as good as anything,
525        on a real kernel what you get depends on which mode it uses. */
526     info.si_signo = SIGSEGV;
527     info.si_errno = 0;
528     /* XXX: check env->error_code */
529     info.si_code = TARGET_SEGV_MAPERR;
530     info._sifields._sigfault._addr = env->cp15.c6_data;
531     queue_signal(env, info.si_signo, &info);
532
533     end_exclusive();
534 }
535
536 /* Handle a jump to the kernel code page.  */
537 static int
538 do_kernel_trap(CPUARMState *env)
539 {
540     uint32_t addr;
541     uint32_t cpsr;
542     uint32_t val;
543
544     switch (env->regs[15]) {
545     case 0xffff0fa0: /* __kernel_memory_barrier */
546         /* ??? No-op. Will need to do better for SMP.  */
547         break;
548     case 0xffff0fc0: /* __kernel_cmpxchg */
549          /* XXX: This only works between threads, not between processes.
550             It's probably possible to implement this with native host
551             operations. However things like ldrex/strex are much harder so
552             there's not much point trying.  */
553         start_exclusive();
554         cpsr = cpsr_read(env);
555         addr = env->regs[2];
556         /* FIXME: This should SEGV if the access fails.  */
557         if (get_user_u32(val, addr))
558             val = ~env->regs[0];
559         if (val == env->regs[0]) {
560             val = env->regs[1];
561             /* FIXME: Check for segfaults.  */
562             put_user_u32(val, addr);
563             env->regs[0] = 0;
564             cpsr |= CPSR_C;
565         } else {
566             env->regs[0] = -1;
567             cpsr &= ~CPSR_C;
568         }
569         cpsr_write(env, cpsr, CPSR_C);
570         end_exclusive();
571         break;
572     case 0xffff0fe0: /* __kernel_get_tls */
573         env->regs[0] = env->cp15.c13_tls2;
574         break;
575     case 0xffff0f60: /* __kernel_cmpxchg64 */
576         arm_kernel_cmpxchg64_helper(env);
577         break;
578
579     default:
580         return 1;
581     }
582     /* Jump back to the caller.  */
583     addr = env->regs[14];
584     if (addr & 1) {
585         env->thumb = 1;
586         addr &= ~1;
587     }
588     env->regs[15] = addr;
589
590     return 0;
591 }
592
593 static int do_strex(CPUARMState *env)
594 {
595     uint32_t val;
596     int size;
597     int rc = 1;
598     int segv = 0;
599     uint32_t addr;
600     start_exclusive();
601     addr = env->exclusive_addr;
602     if (addr != env->exclusive_test) {
603         goto fail;
604     }
605     size = env->exclusive_info & 0xf;
606     switch (size) {
607     case 0:
608         segv = get_user_u8(val, addr);
609         break;
610     case 1:
611         segv = get_user_u16(val, addr);
612         break;
613     case 2:
614     case 3:
615         segv = get_user_u32(val, addr);
616         break;
617     default:
618         abort();
619     }
620     if (segv) {
621         env->cp15.c6_data = addr;
622         goto done;
623     }
624     if (val != env->exclusive_val) {
625         goto fail;
626     }
627     if (size == 3) {
628         segv = get_user_u32(val, addr + 4);
629         if (segv) {
630             env->cp15.c6_data = addr + 4;
631             goto done;
632         }
633         if (val != env->exclusive_high) {
634             goto fail;
635         }
636     }
637     val = env->regs[(env->exclusive_info >> 8) & 0xf];
638     switch (size) {
639     case 0:
640         segv = put_user_u8(val, addr);
641         break;
642     case 1:
643         segv = put_user_u16(val, addr);
644         break;
645     case 2:
646     case 3:
647         segv = put_user_u32(val, addr);
648         break;
649     }
650     if (segv) {
651         env->cp15.c6_data = addr;
652         goto done;
653     }
654     if (size == 3) {
655         val = env->regs[(env->exclusive_info >> 12) & 0xf];
656         segv = put_user_u32(val, addr + 4);
657         if (segv) {
658             env->cp15.c6_data = addr + 4;
659             goto done;
660         }
661     }
662     rc = 0;
663 fail:
664     env->regs[15] += 4;
665     env->regs[(env->exclusive_info >> 4) & 0xf] = rc;
666 done:
667     end_exclusive();
668     return segv;
669 }
670
671 void cpu_loop(CPUARMState *env)
672 {
673     int trapnr;
674     unsigned int n, insn;
675     target_siginfo_t info;
676     uint32_t addr;
677
678     for(;;) {
679         cpu_exec_start(env);
680         trapnr = cpu_arm_exec(env);
681         cpu_exec_end(env);
682         switch(trapnr) {
683         case EXCP_UDEF:
684             {
685                 TaskState *ts = env->opaque;
686                 uint32_t opcode;
687                 int rc;
688
689                 /* we handle the FPU emulation here, as Linux */
690                 /* we get the opcode */
691                 /* FIXME - what to do if get_user() fails? */
692                 get_user_u32(opcode, env->regs[15]);
693
694                 rc = EmulateAll(opcode, &ts->fpa, env);
695                 if (rc == 0) { /* illegal instruction */
696                     info.si_signo = SIGILL;
697                     info.si_errno = 0;
698                     info.si_code = TARGET_ILL_ILLOPN;
699                     info._sifields._sigfault._addr = env->regs[15];
700                     queue_signal(env, info.si_signo, &info);
701                 } else if (rc < 0) { /* FP exception */
702                     int arm_fpe=0;
703
704                     /* translate softfloat flags to FPSR flags */
705                     if (-rc & float_flag_invalid)
706                       arm_fpe |= BIT_IOC;
707                     if (-rc & float_flag_divbyzero)
708                       arm_fpe |= BIT_DZC;
709                     if (-rc & float_flag_overflow)
710                       arm_fpe |= BIT_OFC;
711                     if (-rc & float_flag_underflow)
712                       arm_fpe |= BIT_UFC;
713                     if (-rc & float_flag_inexact)
714                       arm_fpe |= BIT_IXC;
715
716                     FPSR fpsr = ts->fpa.fpsr;
717                     //printf("fpsr 0x%x, arm_fpe 0x%x\n",fpsr,arm_fpe);
718
719                     if (fpsr & (arm_fpe << 16)) { /* exception enabled? */
720                       info.si_signo = SIGFPE;
721                       info.si_errno = 0;
722
723                       /* ordered by priority, least first */
724                       if (arm_fpe & BIT_IXC) info.si_code = TARGET_FPE_FLTRES;
725                       if (arm_fpe & BIT_UFC) info.si_code = TARGET_FPE_FLTUND;
726                       if (arm_fpe & BIT_OFC) info.si_code = TARGET_FPE_FLTOVF;
727                       if (arm_fpe & BIT_DZC) info.si_code = TARGET_FPE_FLTDIV;
728                       if (arm_fpe & BIT_IOC) info.si_code = TARGET_FPE_FLTINV;
729
730                       info._sifields._sigfault._addr = env->regs[15];
731                       queue_signal(env, info.si_signo, &info);
732                     } else {
733                       env->regs[15] += 4;
734                     }
735
736                     /* accumulate unenabled exceptions */
737                     if ((!(fpsr & BIT_IXE)) && (arm_fpe & BIT_IXC))
738                       fpsr |= BIT_IXC;
739                     if ((!(fpsr & BIT_UFE)) && (arm_fpe & BIT_UFC))
740                       fpsr |= BIT_UFC;
741                     if ((!(fpsr & BIT_OFE)) && (arm_fpe & BIT_OFC))
742                       fpsr |= BIT_OFC;
743                     if ((!(fpsr & BIT_DZE)) && (arm_fpe & BIT_DZC))
744                       fpsr |= BIT_DZC;
745                     if ((!(fpsr & BIT_IOE)) && (arm_fpe & BIT_IOC))
746                       fpsr |= BIT_IOC;
747                     ts->fpa.fpsr=fpsr;
748                 } else { /* everything OK */
749                     /* increment PC */
750                     env->regs[15] += 4;
751                 }
752             }
753             break;
754         case EXCP_SWI:
755         case EXCP_BKPT:
756             {
757                 env->eabi = 1;
758                 /* system call */
759                 if (trapnr == EXCP_BKPT) {
760                     if (env->thumb) {
761                         /* FIXME - what to do if get_user() fails? */
762                         get_user_u16(insn, env->regs[15]);
763                         n = insn & 0xff;
764                         env->regs[15] += 2;
765                     } else {
766                         /* FIXME - what to do if get_user() fails? */
767                         get_user_u32(insn, env->regs[15]);
768                         n = (insn & 0xf) | ((insn >> 4) & 0xff0);
769                         env->regs[15] += 4;
770                     }
771                 } else {
772                     if (env->thumb) {
773                         /* FIXME - what to do if get_user() fails? */
774                         get_user_u16(insn, env->regs[15] - 2);
775                         n = insn & 0xff;
776                     } else {
777                         /* FIXME - what to do if get_user() fails? */
778                         get_user_u32(insn, env->regs[15] - 4);
779                         n = insn & 0xffffff;
780                     }
781                 }
782
783                 if (n == ARM_NR_cacheflush) {
784                     /* nop */
785                 } else if (n == ARM_NR_semihosting
786                            || n == ARM_NR_thumb_semihosting) {
787                     env->regs[0] = do_arm_semihosting (env);
788                 } else if (n == 0 || n >= ARM_SYSCALL_BASE
789                            || (env->thumb && n == ARM_THUMB_SYSCALL)) {
790                     /* linux syscall */
791                     if (env->thumb || n == 0) {
792                         n = env->regs[7];
793                     } else {
794                         n -= ARM_SYSCALL_BASE;
795                         env->eabi = 0;
796                     }
797                     if ( n > ARM_NR_BASE) {
798                         switch (n) {
799                         case ARM_NR_cacheflush:
800                             /* nop */
801                             break;
802                         case ARM_NR_set_tls:
803                             cpu_set_tls(env, env->regs[0]);
804                             env->regs[0] = 0;
805                             break;
806                         default:
807                             gemu_log("qemu: Unsupported ARM syscall: 0x%x\n",
808                                      n);
809                             env->regs[0] = -TARGET_ENOSYS;
810                             break;
811                         }
812                     } else {
813                         env->regs[0] = do_syscall(env,
814                                                   n,
815                                                   env->regs[0],
816                                                   env->regs[1],
817                                                   env->regs[2],
818                                                   env->regs[3],
819                                                   env->regs[4],
820                                                   env->regs[5],
821                                                   0, 0);
822                     }
823                 } else {
824                     goto error;
825                 }
826             }
827             break;
828         case EXCP_INTERRUPT:
829             /* just indicate that signals should be handled asap */
830             break;
831         case EXCP_PREFETCH_ABORT:
832             addr = env->cp15.c6_insn;
833             goto do_segv;
834         case EXCP_DATA_ABORT:
835             addr = env->cp15.c6_data;
836         do_segv:
837             {
838                 info.si_signo = SIGSEGV;
839                 info.si_errno = 0;
840                 /* XXX: check env->error_code */
841                 info.si_code = TARGET_SEGV_MAPERR;
842                 info._sifields._sigfault._addr = addr;
843                 queue_signal(env, info.si_signo, &info);
844             }
845             break;
846         case EXCP_DEBUG:
847             {
848                 int sig;
849
850                 sig = gdb_handlesig (env, TARGET_SIGTRAP);
851                 if (sig)
852                   {
853                     info.si_signo = sig;
854                     info.si_errno = 0;
855                     info.si_code = TARGET_TRAP_BRKPT;
856                     queue_signal(env, info.si_signo, &info);
857                   }
858             }
859             break;
860         case EXCP_KERNEL_TRAP:
861             if (do_kernel_trap(env))
862               goto error;
863             break;
864         case EXCP_STREX:
865             if (do_strex(env)) {
866                 addr = env->cp15.c6_data;
867                 goto do_segv;
868             }
869             break;
870         default:
871         error:
872             fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
873                     trapnr);
874             cpu_dump_state(env, stderr, fprintf, 0);
875             abort();
876         }
877         process_pending_signals(env);
878     }
879 }
880
881 #endif
882
883 #ifdef TARGET_UNICORE32
884
885 void cpu_loop(CPUState *env)
886 {
887     int trapnr;
888     unsigned int n, insn;
889     target_siginfo_t info;
890
891     for (;;) {
892         cpu_exec_start(env);
893         trapnr = uc32_cpu_exec(env);
894         cpu_exec_end(env);
895         switch (trapnr) {
896         case UC32_EXCP_PRIV:
897             {
898                 /* system call */
899                 get_user_u32(insn, env->regs[31] - 4);
900                 n = insn & 0xffffff;
901
902                 if (n >= UC32_SYSCALL_BASE) {
903                     /* linux syscall */
904                     n -= UC32_SYSCALL_BASE;
905                     if (n == UC32_SYSCALL_NR_set_tls) {
906                             cpu_set_tls(env, env->regs[0]);
907                             env->regs[0] = 0;
908                     } else {
909                         env->regs[0] = do_syscall(env,
910                                                   n,
911                                                   env->regs[0],
912                                                   env->regs[1],
913                                                   env->regs[2],
914                                                   env->regs[3],
915                                                   env->regs[4],
916                                                   env->regs[5],
917                                                   0, 0);
918                     }
919                 } else {
920                     goto error;
921                 }
922             }
923             break;
924         case UC32_EXCP_TRAP:
925             info.si_signo = SIGSEGV;
926             info.si_errno = 0;
927             /* XXX: check env->error_code */
928             info.si_code = TARGET_SEGV_MAPERR;
929             info._sifields._sigfault._addr = env->cp0.c4_faultaddr;
930             queue_signal(env, info.si_signo, &info);
931             break;
932         case EXCP_INTERRUPT:
933             /* just indicate that signals should be handled asap */
934             break;
935         case EXCP_DEBUG:
936             {
937                 int sig;
938
939                 sig = gdb_handlesig(env, TARGET_SIGTRAP);
940                 if (sig) {
941                     info.si_signo = sig;
942                     info.si_errno = 0;
943                     info.si_code = TARGET_TRAP_BRKPT;
944                     queue_signal(env, info.si_signo, &info);
945                 }
946             }
947             break;
948         default:
949             goto error;
950         }
951         process_pending_signals(env);
952     }
953
954 error:
955     fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr);
956     cpu_dump_state(env, stderr, fprintf, 0);
957     abort();
958 }
959 #endif
960
961 #ifdef TARGET_SPARC
962 #define SPARC64_STACK_BIAS 2047
963
964 //#define DEBUG_WIN
965
966 /* WARNING: dealing with register windows _is_ complicated. More info
967    can be found at http://www.sics.se/~psm/sparcstack.html */
968 static inline int get_reg_index(CPUSPARCState *env, int cwp, int index)
969 {
970     index = (index + cwp * 16) % (16 * env->nwindows);
971     /* wrap handling : if cwp is on the last window, then we use the
972        registers 'after' the end */
973     if (index < 8 && env->cwp == env->nwindows - 1)
974         index += 16 * env->nwindows;
975     return index;
976 }
977
978 /* save the register window 'cwp1' */
979 static inline void save_window_offset(CPUSPARCState *env, int cwp1)
980 {
981     unsigned int i;
982     abi_ulong sp_ptr;
983
984     sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
985 #ifdef TARGET_SPARC64
986     if (sp_ptr & 3)
987         sp_ptr += SPARC64_STACK_BIAS;
988 #endif
989 #if defined(DEBUG_WIN)
990     printf("win_overflow: sp_ptr=0x" TARGET_ABI_FMT_lx " save_cwp=%d\n",
991            sp_ptr, cwp1);
992 #endif
993     for(i = 0; i < 16; i++) {
994         /* FIXME - what to do if put_user() fails? */
995         put_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
996         sp_ptr += sizeof(abi_ulong);
997     }
998 }
999
1000 static void save_window(CPUSPARCState *env)
1001 {
1002 #ifndef TARGET_SPARC64
1003     unsigned int new_wim;
1004     new_wim = ((env->wim >> 1) | (env->wim << (env->nwindows - 1))) &
1005         ((1LL << env->nwindows) - 1);
1006     save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2));
1007     env->wim = new_wim;
1008 #else
1009     save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2));
1010     env->cansave++;
1011     env->canrestore--;
1012 #endif
1013 }
1014
1015 static void restore_window(CPUSPARCState *env)
1016 {
1017 #ifndef TARGET_SPARC64
1018     unsigned int new_wim;
1019 #endif
1020     unsigned int i, cwp1;
1021     abi_ulong sp_ptr;
1022
1023 #ifndef TARGET_SPARC64
1024     new_wim = ((env->wim << 1) | (env->wim >> (env->nwindows - 1))) &
1025         ((1LL << env->nwindows) - 1);
1026 #endif
1027
1028     /* restore the invalid window */
1029     cwp1 = cpu_cwp_inc(env, env->cwp + 1);
1030     sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
1031 #ifdef TARGET_SPARC64
1032     if (sp_ptr & 3)
1033         sp_ptr += SPARC64_STACK_BIAS;
1034 #endif
1035 #if defined(DEBUG_WIN)
1036     printf("win_underflow: sp_ptr=0x" TARGET_ABI_FMT_lx " load_cwp=%d\n",
1037            sp_ptr, cwp1);
1038 #endif
1039     for(i = 0; i < 16; i++) {
1040         /* FIXME - what to do if get_user() fails? */
1041         get_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
1042         sp_ptr += sizeof(abi_ulong);
1043     }
1044 #ifdef TARGET_SPARC64
1045     env->canrestore++;
1046     if (env->cleanwin < env->nwindows - 1)
1047         env->cleanwin++;
1048     env->cansave--;
1049 #else
1050     env->wim = new_wim;
1051 #endif
1052 }
1053
1054 static void flush_windows(CPUSPARCState *env)
1055 {
1056     int offset, cwp1;
1057
1058     offset = 1;
1059     for(;;) {
1060         /* if restore would invoke restore_window(), then we can stop */
1061         cwp1 = cpu_cwp_inc(env, env->cwp + offset);
1062 #ifndef TARGET_SPARC64
1063         if (env->wim & (1 << cwp1))
1064             break;
1065 #else
1066         if (env->canrestore == 0)
1067             break;
1068         env->cansave++;
1069         env->canrestore--;
1070 #endif
1071         save_window_offset(env, cwp1);
1072         offset++;
1073     }
1074     cwp1 = cpu_cwp_inc(env, env->cwp + 1);
1075 #ifndef TARGET_SPARC64
1076     /* set wim so that restore will reload the registers */
1077     env->wim = 1 << cwp1;
1078 #endif
1079 #if defined(DEBUG_WIN)
1080     printf("flush_windows: nb=%d\n", offset - 1);
1081 #endif
1082 }
1083
1084 void cpu_loop (CPUSPARCState *env)
1085 {
1086     int trapnr;
1087     abi_long ret;
1088     target_siginfo_t info;
1089
1090     while (1) {
1091         trapnr = cpu_sparc_exec (env);
1092
1093         switch (trapnr) {
1094 #ifndef TARGET_SPARC64
1095         case 0x88:
1096         case 0x90:
1097 #else
1098         case 0x110:
1099         case 0x16d:
1100 #endif
1101             ret = do_syscall (env, env->gregs[1],
1102                               env->regwptr[0], env->regwptr[1],
1103                               env->regwptr[2], env->regwptr[3],
1104                               env->regwptr[4], env->regwptr[5],
1105                               0, 0);
1106             if ((abi_ulong)ret >= (abi_ulong)(-515)) {
1107 #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
1108                 env->xcc |= PSR_CARRY;
1109 #else
1110                 env->psr |= PSR_CARRY;
1111 #endif
1112                 ret = -ret;
1113             } else {
1114 #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
1115                 env->xcc &= ~PSR_CARRY;
1116 #else
1117                 env->psr &= ~PSR_CARRY;
1118 #endif
1119             }
1120             env->regwptr[0] = ret;
1121             /* next instruction */
1122             env->pc = env->npc;
1123             env->npc = env->npc + 4;
1124             break;
1125         case 0x83: /* flush windows */
1126 #ifdef TARGET_ABI32
1127         case 0x103:
1128 #endif
1129             flush_windows(env);
1130             /* next instruction */
1131             env->pc = env->npc;
1132             env->npc = env->npc + 4;
1133             break;
1134 #ifndef TARGET_SPARC64
1135         case TT_WIN_OVF: /* window overflow */
1136             save_window(env);
1137             break;
1138         case TT_WIN_UNF: /* window underflow */
1139             restore_window(env);
1140             break;
1141         case TT_TFAULT:
1142         case TT_DFAULT:
1143             {
1144                 info.si_signo = SIGSEGV;
1145                 info.si_errno = 0;
1146                 /* XXX: check env->error_code */
1147                 info.si_code = TARGET_SEGV_MAPERR;
1148                 info._sifields._sigfault._addr = env->mmuregs[4];
1149                 queue_signal(env, info.si_signo, &info);
1150             }
1151             break;
1152 #else
1153         case TT_SPILL: /* window overflow */
1154             save_window(env);
1155             break;
1156         case TT_FILL: /* window underflow */
1157             restore_window(env);
1158             break;
1159         case TT_TFAULT:
1160         case TT_DFAULT:
1161             {
1162                 info.si_signo = SIGSEGV;
1163                 info.si_errno = 0;
1164                 /* XXX: check env->error_code */
1165                 info.si_code = TARGET_SEGV_MAPERR;
1166                 if (trapnr == TT_DFAULT)
1167                     info._sifields._sigfault._addr = env->dmmuregs[4];
1168                 else
1169                     info._sifields._sigfault._addr = cpu_tsptr(env)->tpc;
1170                 queue_signal(env, info.si_signo, &info);
1171             }
1172             break;
1173 #ifndef TARGET_ABI32
1174         case 0x16e:
1175             flush_windows(env);
1176             sparc64_get_context(env);
1177             break;
1178         case 0x16f:
1179             flush_windows(env);
1180             sparc64_set_context(env);
1181             break;
1182 #endif
1183 #endif
1184         case EXCP_INTERRUPT:
1185             /* just indicate that signals should be handled asap */
1186             break;
1187         case EXCP_DEBUG:
1188             {
1189                 int sig;
1190
1191                 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1192                 if (sig)
1193                   {
1194                     info.si_signo = sig;
1195                     info.si_errno = 0;
1196                     info.si_code = TARGET_TRAP_BRKPT;
1197                     queue_signal(env, info.si_signo, &info);
1198                   }
1199             }
1200             break;
1201         default:
1202             printf ("Unhandled trap: 0x%x\n", trapnr);
1203             cpu_dump_state(env, stderr, fprintf, 0);
1204             exit (1);
1205         }
1206         process_pending_signals (env);
1207     }
1208 }
1209
1210 #endif
1211
1212 #ifdef TARGET_PPC
1213 static inline uint64_t cpu_ppc_get_tb (CPUState *env)
1214 {
1215     /* TO FIX */
1216     return 0;
1217 }
1218
1219 uint64_t cpu_ppc_load_tbl (CPUState *env)
1220 {
1221     return cpu_ppc_get_tb(env);
1222 }
1223
1224 uint32_t cpu_ppc_load_tbu (CPUState *env)
1225 {
1226     return cpu_ppc_get_tb(env) >> 32;
1227 }
1228
1229 uint64_t cpu_ppc_load_atbl (CPUState *env)
1230 {
1231     return cpu_ppc_get_tb(env);
1232 }
1233
1234 uint32_t cpu_ppc_load_atbu (CPUState *env)
1235 {
1236     return cpu_ppc_get_tb(env) >> 32;
1237 }
1238
1239 uint32_t cpu_ppc601_load_rtcu (CPUState *env)
1240 __attribute__ (( alias ("cpu_ppc_load_tbu") ));
1241
1242 uint32_t cpu_ppc601_load_rtcl (CPUState *env)
1243 {
1244     return cpu_ppc_load_tbl(env) & 0x3FFFFF80;
1245 }
1246
1247 /* XXX: to be fixed */
1248 int ppc_dcr_read (ppc_dcr_t *dcr_env, int dcrn, uint32_t *valp)
1249 {
1250     return -1;
1251 }
1252
1253 int ppc_dcr_write (ppc_dcr_t *dcr_env, int dcrn, uint32_t val)
1254 {
1255     return -1;
1256 }
1257
1258 #define EXCP_DUMP(env, fmt, ...)                                        \
1259 do {                                                                    \
1260     fprintf(stderr, fmt , ## __VA_ARGS__);                              \
1261     cpu_dump_state(env, stderr, fprintf, 0);                            \
1262     qemu_log(fmt, ## __VA_ARGS__);                                      \
1263     if (logfile)                                                        \
1264         log_cpu_state(env, 0);                                          \
1265 } while (0)
1266
1267 static int do_store_exclusive(CPUPPCState *env)
1268 {
1269     target_ulong addr;
1270     target_ulong page_addr;
1271     target_ulong val;
1272     int flags;
1273     int segv = 0;
1274
1275     addr = env->reserve_ea;
1276     page_addr = addr & TARGET_PAGE_MASK;
1277     start_exclusive();
1278     mmap_lock();
1279     flags = page_get_flags(page_addr);
1280     if ((flags & PAGE_READ) == 0) {
1281         segv = 1;
1282     } else {
1283         int reg = env->reserve_info & 0x1f;
1284         int size = (env->reserve_info >> 5) & 0xf;
1285         int stored = 0;
1286
1287         if (addr == env->reserve_addr) {
1288             switch (size) {
1289             case 1: segv = get_user_u8(val, addr); break;
1290             case 2: segv = get_user_u16(val, addr); break;
1291             case 4: segv = get_user_u32(val, addr); break;
1292 #if defined(TARGET_PPC64)
1293             case 8: segv = get_user_u64(val, addr); break;
1294 #endif
1295             default: abort();
1296             }
1297             if (!segv && val == env->reserve_val) {
1298                 val = env->gpr[reg];
1299                 switch (size) {
1300                 case 1: segv = put_user_u8(val, addr); break;
1301                 case 2: segv = put_user_u16(val, addr); break;
1302                 case 4: segv = put_user_u32(val, addr); break;
1303 #if defined(TARGET_PPC64)
1304                 case 8: segv = put_user_u64(val, addr); break;
1305 #endif
1306                 default: abort();
1307                 }
1308                 if (!segv) {
1309                     stored = 1;
1310                 }
1311             }
1312         }
1313         env->crf[0] = (stored << 1) | xer_so;
1314         env->reserve_addr = (target_ulong)-1;
1315     }
1316     if (!segv) {
1317         env->nip += 4;
1318     }
1319     mmap_unlock();
1320     end_exclusive();
1321     return segv;
1322 }
1323
1324 void cpu_loop(CPUPPCState *env)
1325 {
1326     target_siginfo_t info;
1327     int trapnr;
1328     uint32_t ret;
1329
1330     for(;;) {
1331         cpu_exec_start(env);
1332         trapnr = cpu_ppc_exec(env);
1333         cpu_exec_end(env);
1334         switch(trapnr) {
1335         case POWERPC_EXCP_NONE:
1336             /* Just go on */
1337             break;
1338         case POWERPC_EXCP_CRITICAL: /* Critical input                        */
1339             cpu_abort(env, "Critical interrupt while in user mode. "
1340                       "Aborting\n");
1341             break;
1342         case POWERPC_EXCP_MCHECK:   /* Machine check exception               */
1343             cpu_abort(env, "Machine check exception while in user mode. "
1344                       "Aborting\n");
1345             break;
1346         case POWERPC_EXCP_DSI:      /* Data storage exception                */
1347             EXCP_DUMP(env, "Invalid data memory access: 0x" TARGET_FMT_lx "\n",
1348                       env->spr[SPR_DAR]);
1349             /* XXX: check this. Seems bugged */
1350             switch (env->error_code & 0xFF000000) {
1351             case 0x40000000:
1352                 info.si_signo = TARGET_SIGSEGV;
1353                 info.si_errno = 0;
1354                 info.si_code = TARGET_SEGV_MAPERR;
1355                 break;
1356             case 0x04000000:
1357                 info.si_signo = TARGET_SIGILL;
1358                 info.si_errno = 0;
1359                 info.si_code = TARGET_ILL_ILLADR;
1360                 break;
1361             case 0x08000000:
1362                 info.si_signo = TARGET_SIGSEGV;
1363                 info.si_errno = 0;
1364                 info.si_code = TARGET_SEGV_ACCERR;
1365                 break;
1366             default:
1367                 /* Let's send a regular segfault... */
1368                 EXCP_DUMP(env, "Invalid segfault errno (%02x)\n",
1369                           env->error_code);
1370                 info.si_signo = TARGET_SIGSEGV;
1371                 info.si_errno = 0;
1372                 info.si_code = TARGET_SEGV_MAPERR;
1373                 break;
1374             }
1375             info._sifields._sigfault._addr = env->nip;
1376             queue_signal(env, info.si_signo, &info);
1377             break;
1378         case POWERPC_EXCP_ISI:      /* Instruction storage exception         */
1379             EXCP_DUMP(env, "Invalid instruction fetch: 0x\n" TARGET_FMT_lx
1380                       "\n", env->spr[SPR_SRR0]);
1381             /* XXX: check this */
1382             switch (env->error_code & 0xFF000000) {
1383             case 0x40000000:
1384                 info.si_signo = TARGET_SIGSEGV;
1385             info.si_errno = 0;
1386                 info.si_code = TARGET_SEGV_MAPERR;
1387                 break;
1388             case 0x10000000:
1389             case 0x08000000:
1390                 info.si_signo = TARGET_SIGSEGV;
1391                 info.si_errno = 0;
1392                 info.si_code = TARGET_SEGV_ACCERR;
1393                 break;
1394             default:
1395                 /* Let's send a regular segfault... */
1396                 EXCP_DUMP(env, "Invalid segfault errno (%02x)\n",
1397                           env->error_code);
1398                 info.si_signo = TARGET_SIGSEGV;
1399                 info.si_errno = 0;
1400                 info.si_code = TARGET_SEGV_MAPERR;
1401                 break;
1402             }
1403             info._sifields._sigfault._addr = env->nip - 4;
1404             queue_signal(env, info.si_signo, &info);
1405             break;
1406         case POWERPC_EXCP_EXTERNAL: /* External input                        */
1407             cpu_abort(env, "External interrupt while in user mode. "
1408                       "Aborting\n");
1409             break;
1410         case POWERPC_EXCP_ALIGN:    /* Alignment exception                   */
1411             EXCP_DUMP(env, "Unaligned memory access\n");
1412             /* XXX: check this */
1413             info.si_signo = TARGET_SIGBUS;
1414             info.si_errno = 0;
1415             info.si_code = TARGET_BUS_ADRALN;
1416             info._sifields._sigfault._addr = env->nip - 4;
1417             queue_signal(env, info.si_signo, &info);
1418             break;
1419         case POWERPC_EXCP_PROGRAM:  /* Program exception                     */
1420             /* XXX: check this */
1421             switch (env->error_code & ~0xF) {
1422             case POWERPC_EXCP_FP:
1423                 EXCP_DUMP(env, "Floating point program exception\n");
1424                 info.si_signo = TARGET_SIGFPE;
1425                 info.si_errno = 0;
1426                 switch (env->error_code & 0xF) {
1427                 case POWERPC_EXCP_FP_OX:
1428                     info.si_code = TARGET_FPE_FLTOVF;
1429                     break;
1430                 case POWERPC_EXCP_FP_UX:
1431                     info.si_code = TARGET_FPE_FLTUND;
1432                     break;
1433                 case POWERPC_EXCP_FP_ZX:
1434                 case POWERPC_EXCP_FP_VXZDZ:
1435                     info.si_code = TARGET_FPE_FLTDIV;
1436                     break;
1437                 case POWERPC_EXCP_FP_XX:
1438                     info.si_code = TARGET_FPE_FLTRES;
1439                     break;
1440                 case POWERPC_EXCP_FP_VXSOFT:
1441                     info.si_code = TARGET_FPE_FLTINV;
1442                     break;
1443                 case POWERPC_EXCP_FP_VXSNAN:
1444                 case POWERPC_EXCP_FP_VXISI:
1445                 case POWERPC_EXCP_FP_VXIDI:
1446                 case POWERPC_EXCP_FP_VXIMZ:
1447                 case POWERPC_EXCP_FP_VXVC:
1448                 case POWERPC_EXCP_FP_VXSQRT:
1449                 case POWERPC_EXCP_FP_VXCVI:
1450                     info.si_code = TARGET_FPE_FLTSUB;
1451                     break;
1452                 default:
1453                     EXCP_DUMP(env, "Unknown floating point exception (%02x)\n",
1454                               env->error_code);
1455                     break;
1456                 }
1457                 break;
1458             case POWERPC_EXCP_INVAL:
1459                 EXCP_DUMP(env, "Invalid instruction\n");
1460                 info.si_signo = TARGET_SIGILL;
1461                 info.si_errno = 0;
1462                 switch (env->error_code & 0xF) {
1463                 case POWERPC_EXCP_INVAL_INVAL:
1464                     info.si_code = TARGET_ILL_ILLOPC;
1465                     break;
1466                 case POWERPC_EXCP_INVAL_LSWX:
1467                     info.si_code = TARGET_ILL_ILLOPN;
1468                     break;
1469                 case POWERPC_EXCP_INVAL_SPR:
1470                     info.si_code = TARGET_ILL_PRVREG;
1471                     break;
1472                 case POWERPC_EXCP_INVAL_FP:
1473                     info.si_code = TARGET_ILL_COPROC;
1474                     break;
1475                 default:
1476                     EXCP_DUMP(env, "Unknown invalid operation (%02x)\n",
1477                               env->error_code & 0xF);
1478                     info.si_code = TARGET_ILL_ILLADR;
1479                     break;
1480                 }
1481                 break;
1482             case POWERPC_EXCP_PRIV:
1483                 EXCP_DUMP(env, "Privilege violation\n");
1484                 info.si_signo = TARGET_SIGILL;
1485                 info.si_errno = 0;
1486                 switch (env->error_code & 0xF) {
1487                 case POWERPC_EXCP_PRIV_OPC:
1488                     info.si_code = TARGET_ILL_PRVOPC;
1489                     break;
1490                 case POWERPC_EXCP_PRIV_REG:
1491                     info.si_code = TARGET_ILL_PRVREG;
1492                     break;
1493                 default:
1494                     EXCP_DUMP(env, "Unknown privilege violation (%02x)\n",
1495                               env->error_code & 0xF);
1496                     info.si_code = TARGET_ILL_PRVOPC;
1497                     break;
1498                 }
1499                 break;
1500             case POWERPC_EXCP_TRAP:
1501                 cpu_abort(env, "Tried to call a TRAP\n");
1502                 break;
1503             default:
1504                 /* Should not happen ! */
1505                 cpu_abort(env, "Unknown program exception (%02x)\n",
1506                           env->error_code);
1507                 break;
1508             }
1509             info._sifields._sigfault._addr = env->nip - 4;
1510             queue_signal(env, info.si_signo, &info);
1511             break;
1512         case POWERPC_EXCP_FPU:      /* Floating-point unavailable exception  */
1513             EXCP_DUMP(env, "No floating point allowed\n");
1514             info.si_signo = TARGET_SIGILL;
1515             info.si_errno = 0;
1516             info.si_code = TARGET_ILL_COPROC;
1517             info._sifields._sigfault._addr = env->nip - 4;
1518             queue_signal(env, info.si_signo, &info);
1519             break;
1520         case POWERPC_EXCP_SYSCALL:  /* System call exception                 */
1521             cpu_abort(env, "Syscall exception while in user mode. "
1522                       "Aborting\n");
1523             break;
1524         case POWERPC_EXCP_APU:      /* Auxiliary processor unavailable       */
1525             EXCP_DUMP(env, "No APU instruction allowed\n");
1526             info.si_signo = TARGET_SIGILL;
1527             info.si_errno = 0;
1528             info.si_code = TARGET_ILL_COPROC;
1529             info._sifields._sigfault._addr = env->nip - 4;
1530             queue_signal(env, info.si_signo, &info);
1531             break;
1532         case POWERPC_EXCP_DECR:     /* Decrementer exception                 */
1533             cpu_abort(env, "Decrementer interrupt while in user mode. "
1534                       "Aborting\n");
1535             break;
1536         case POWERPC_EXCP_FIT:      /* Fixed-interval timer interrupt        */
1537             cpu_abort(env, "Fix interval timer interrupt while in user mode. "
1538                       "Aborting\n");
1539             break;
1540         case POWERPC_EXCP_WDT:      /* Watchdog timer interrupt              */
1541             cpu_abort(env, "Watchdog timer interrupt while in user mode. "
1542                       "Aborting\n");
1543             break;
1544         case POWERPC_EXCP_DTLB:     /* Data TLB error                        */
1545             cpu_abort(env, "Data TLB exception while in user mode. "
1546                       "Aborting\n");
1547             break;
1548         case POWERPC_EXCP_ITLB:     /* Instruction TLB error                 */
1549             cpu_abort(env, "Instruction TLB exception while in user mode. "
1550                       "Aborting\n");
1551             break;
1552         case POWERPC_EXCP_SPEU:     /* SPE/embedded floating-point unavail.  */
1553             EXCP_DUMP(env, "No SPE/floating-point instruction allowed\n");
1554             info.si_signo = TARGET_SIGILL;
1555             info.si_errno = 0;
1556             info.si_code = TARGET_ILL_COPROC;
1557             info._sifields._sigfault._addr = env->nip - 4;
1558             queue_signal(env, info.si_signo, &info);
1559             break;
1560         case POWERPC_EXCP_EFPDI:    /* Embedded floating-point data IRQ      */
1561             cpu_abort(env, "Embedded floating-point data IRQ not handled\n");
1562             break;
1563         case POWERPC_EXCP_EFPRI:    /* Embedded floating-point round IRQ     */
1564             cpu_abort(env, "Embedded floating-point round IRQ not handled\n");
1565             break;
1566         case POWERPC_EXCP_EPERFM:   /* Embedded performance monitor IRQ      */
1567             cpu_abort(env, "Performance monitor exception not handled\n");
1568             break;
1569         case POWERPC_EXCP_DOORI:    /* Embedded doorbell interrupt           */
1570             cpu_abort(env, "Doorbell interrupt while in user mode. "
1571                        "Aborting\n");
1572             break;
1573         case POWERPC_EXCP_DOORCI:   /* Embedded doorbell critical interrupt  */
1574             cpu_abort(env, "Doorbell critical interrupt while in user mode. "
1575                       "Aborting\n");
1576             break;
1577         case POWERPC_EXCP_RESET:    /* System reset exception                */
1578             cpu_abort(env, "Reset interrupt while in user mode. "
1579                       "Aborting\n");
1580             break;
1581         case POWERPC_EXCP_DSEG:     /* Data segment exception                */
1582             cpu_abort(env, "Data segment exception while in user mode. "
1583                       "Aborting\n");
1584             break;
1585         case POWERPC_EXCP_ISEG:     /* Instruction segment exception         */
1586             cpu_abort(env, "Instruction segment exception "
1587                       "while in user mode. Aborting\n");
1588             break;
1589         /* PowerPC 64 with hypervisor mode support */
1590         case POWERPC_EXCP_HDECR:    /* Hypervisor decrementer exception      */
1591             cpu_abort(env, "Hypervisor decrementer interrupt "
1592                       "while in user mode. Aborting\n");
1593             break;
1594         case POWERPC_EXCP_TRACE:    /* Trace exception                       */
1595             /* Nothing to do:
1596              * we use this exception to emulate step-by-step execution mode.
1597              */
1598             break;
1599         /* PowerPC 64 with hypervisor mode support */
1600         case POWERPC_EXCP_HDSI:     /* Hypervisor data storage exception     */
1601             cpu_abort(env, "Hypervisor data storage exception "
1602                       "while in user mode. Aborting\n");
1603             break;
1604         case POWERPC_EXCP_HISI:     /* Hypervisor instruction storage excp   */
1605             cpu_abort(env, "Hypervisor instruction storage exception "
1606                       "while in user mode. Aborting\n");
1607             break;
1608         case POWERPC_EXCP_HDSEG:    /* Hypervisor data segment exception     */
1609             cpu_abort(env, "Hypervisor data segment exception "
1610                       "while in user mode. Aborting\n");
1611             break;
1612         case POWERPC_EXCP_HISEG:    /* Hypervisor instruction segment excp   */
1613             cpu_abort(env, "Hypervisor instruction segment exception "
1614                       "while in user mode. Aborting\n");
1615             break;
1616         case POWERPC_EXCP_VPU:      /* Vector unavailable exception          */
1617             EXCP_DUMP(env, "No Altivec instructions allowed\n");
1618             info.si_signo = TARGET_SIGILL;
1619             info.si_errno = 0;
1620             info.si_code = TARGET_ILL_COPROC;
1621             info._sifields._sigfault._addr = env->nip - 4;
1622             queue_signal(env, info.si_signo, &info);
1623             break;
1624         case POWERPC_EXCP_PIT:      /* Programmable interval timer IRQ       */
1625             cpu_abort(env, "Programable interval timer interrupt "
1626                       "while in user mode. Aborting\n");
1627             break;
1628         case POWERPC_EXCP_IO:       /* IO error exception                    */
1629             cpu_abort(env, "IO error exception while in user mode. "
1630                       "Aborting\n");
1631             break;
1632         case POWERPC_EXCP_RUNM:     /* Run mode exception                    */
1633             cpu_abort(env, "Run mode exception while in user mode. "
1634                       "Aborting\n");
1635             break;
1636         case POWERPC_EXCP_EMUL:     /* Emulation trap exception              */
1637             cpu_abort(env, "Emulation trap exception not handled\n");
1638             break;
1639         case POWERPC_EXCP_IFTLB:    /* Instruction fetch TLB error           */
1640             cpu_abort(env, "Instruction fetch TLB exception "
1641                       "while in user-mode. Aborting");
1642             break;
1643         case POWERPC_EXCP_DLTLB:    /* Data load TLB miss                    */
1644             cpu_abort(env, "Data load TLB exception while in user-mode. "
1645                       "Aborting");
1646             break;
1647         case POWERPC_EXCP_DSTLB:    /* Data store TLB miss                   */
1648             cpu_abort(env, "Data store TLB exception while in user-mode. "
1649                       "Aborting");
1650             break;
1651         case POWERPC_EXCP_FPA:      /* Floating-point assist exception       */
1652             cpu_abort(env, "Floating-point assist exception not handled\n");
1653             break;
1654         case POWERPC_EXCP_IABR:     /* Instruction address breakpoint        */
1655             cpu_abort(env, "Instruction address breakpoint exception "
1656                       "not handled\n");
1657             break;
1658         case POWERPC_EXCP_SMI:      /* System management interrupt           */
1659             cpu_abort(env, "System management interrupt while in user mode. "
1660                       "Aborting\n");
1661             break;
1662         case POWERPC_EXCP_THERM:    /* Thermal interrupt                     */
1663             cpu_abort(env, "Thermal interrupt interrupt while in user mode. "
1664                       "Aborting\n");
1665             break;
1666         case POWERPC_EXCP_PERFM:   /* Embedded performance monitor IRQ      */
1667             cpu_abort(env, "Performance monitor exception not handled\n");
1668             break;
1669         case POWERPC_EXCP_VPUA:     /* Vector assist exception               */
1670             cpu_abort(env, "Vector assist exception not handled\n");
1671             break;
1672         case POWERPC_EXCP_SOFTP:    /* Soft patch exception                  */
1673             cpu_abort(env, "Soft patch exception not handled\n");
1674             break;
1675         case POWERPC_EXCP_MAINT:    /* Maintenance exception                 */
1676             cpu_abort(env, "Maintenance exception while in user mode. "
1677                       "Aborting\n");
1678             break;
1679         case POWERPC_EXCP_STOP:     /* stop translation                      */
1680             /* We did invalidate the instruction cache. Go on */
1681             break;
1682         case POWERPC_EXCP_BRANCH:   /* branch instruction:                   */
1683             /* We just stopped because of a branch. Go on */
1684             break;
1685         case POWERPC_EXCP_SYSCALL_USER:
1686             /* system call in user-mode emulation */
1687             /* WARNING:
1688              * PPC ABI uses overflow flag in cr0 to signal an error
1689              * in syscalls.
1690              */
1691 #if 0
1692             printf("syscall %d 0x%08x 0x%08x 0x%08x 0x%08x\n", env->gpr[0],
1693                    env->gpr[3], env->gpr[4], env->gpr[5], env->gpr[6]);
1694 #endif
1695             env->crf[0] &= ~0x1;
1696             ret = do_syscall(env, env->gpr[0], env->gpr[3], env->gpr[4],
1697                              env->gpr[5], env->gpr[6], env->gpr[7],
1698                              env->gpr[8], 0, 0);
1699             if (ret == (uint32_t)(-TARGET_QEMU_ESIGRETURN)) {
1700                 /* Returning from a successful sigreturn syscall.
1701                    Avoid corrupting register state.  */
1702                 break;
1703             }
1704             if (ret > (uint32_t)(-515)) {
1705                 env->crf[0] |= 0x1;
1706                 ret = -ret;
1707             }
1708             env->gpr[3] = ret;
1709 #if 0
1710             printf("syscall returned 0x%08x (%d)\n", ret, ret);
1711 #endif
1712             break;
1713         case POWERPC_EXCP_STCX:
1714             if (do_store_exclusive(env)) {
1715                 info.si_signo = TARGET_SIGSEGV;
1716                 info.si_errno = 0;
1717                 info.si_code = TARGET_SEGV_MAPERR;
1718                 info._sifields._sigfault._addr = env->nip;
1719                 queue_signal(env, info.si_signo, &info);
1720             }
1721             break;
1722         case EXCP_DEBUG:
1723             {
1724                 int sig;
1725
1726                 sig = gdb_handlesig(env, TARGET_SIGTRAP);
1727                 if (sig) {
1728                     info.si_signo = sig;
1729                     info.si_errno = 0;
1730                     info.si_code = TARGET_TRAP_BRKPT;
1731                     queue_signal(env, info.si_signo, &info);
1732                   }
1733             }
1734             break;
1735         case EXCP_INTERRUPT:
1736             /* just indicate that signals should be handled asap */
1737             break;
1738         default:
1739             cpu_abort(env, "Unknown exception 0x%d. Aborting\n", trapnr);
1740             break;
1741         }
1742         process_pending_signals(env);
1743     }
1744 }
1745 #endif
1746
1747 #ifdef TARGET_MIPS
1748
1749 #define MIPS_SYS(name, args) args,
1750
1751 static const uint8_t mips_syscall_args[] = {
1752         MIPS_SYS(sys_syscall    , 8)    /* 4000 */
1753         MIPS_SYS(sys_exit       , 1)
1754         MIPS_SYS(sys_fork       , 0)
1755         MIPS_SYS(sys_read       , 3)
1756         MIPS_SYS(sys_write      , 3)
1757         MIPS_SYS(sys_open       , 3)    /* 4005 */
1758         MIPS_SYS(sys_close      , 1)
1759         MIPS_SYS(sys_waitpid    , 3)
1760         MIPS_SYS(sys_creat      , 2)
1761         MIPS_SYS(sys_link       , 2)
1762         MIPS_SYS(sys_unlink     , 1)    /* 4010 */
1763         MIPS_SYS(sys_execve     , 0)
1764         MIPS_SYS(sys_chdir      , 1)
1765         MIPS_SYS(sys_time       , 1)
1766         MIPS_SYS(sys_mknod      , 3)
1767         MIPS_SYS(sys_chmod      , 2)    /* 4015 */
1768         MIPS_SYS(sys_lchown     , 3)
1769         MIPS_SYS(sys_ni_syscall , 0)
1770         MIPS_SYS(sys_ni_syscall , 0)    /* was sys_stat */
1771         MIPS_SYS(sys_lseek      , 3)
1772         MIPS_SYS(sys_getpid     , 0)    /* 4020 */
1773         MIPS_SYS(sys_mount      , 5)
1774         MIPS_SYS(sys_oldumount  , 1)
1775         MIPS_SYS(sys_setuid     , 1)
1776         MIPS_SYS(sys_getuid     , 0)
1777         MIPS_SYS(sys_stime      , 1)    /* 4025 */
1778         MIPS_SYS(sys_ptrace     , 4)
1779         MIPS_SYS(sys_alarm      , 1)
1780         MIPS_SYS(sys_ni_syscall , 0)    /* was sys_fstat */
1781         MIPS_SYS(sys_pause      , 0)
1782         MIPS_SYS(sys_utime      , 2)    /* 4030 */
1783         MIPS_SYS(sys_ni_syscall , 0)
1784         MIPS_SYS(sys_ni_syscall , 0)
1785         MIPS_SYS(sys_access     , 2)
1786         MIPS_SYS(sys_nice       , 1)
1787         MIPS_SYS(sys_ni_syscall , 0)    /* 4035 */
1788         MIPS_SYS(sys_sync       , 0)
1789         MIPS_SYS(sys_kill       , 2)
1790         MIPS_SYS(sys_rename     , 2)
1791         MIPS_SYS(sys_mkdir      , 2)
1792         MIPS_SYS(sys_rmdir      , 1)    /* 4040 */
1793         MIPS_SYS(sys_dup                , 1)
1794         MIPS_SYS(sys_pipe       , 0)
1795         MIPS_SYS(sys_times      , 1)
1796         MIPS_SYS(sys_ni_syscall , 0)
1797         MIPS_SYS(sys_brk                , 1)    /* 4045 */
1798         MIPS_SYS(sys_setgid     , 1)
1799         MIPS_SYS(sys_getgid     , 0)
1800         MIPS_SYS(sys_ni_syscall , 0)    /* was signal(2) */
1801         MIPS_SYS(sys_geteuid    , 0)
1802         MIPS_SYS(sys_getegid    , 0)    /* 4050 */
1803         MIPS_SYS(sys_acct       , 0)
1804         MIPS_SYS(sys_umount     , 2)
1805         MIPS_SYS(sys_ni_syscall , 0)
1806         MIPS_SYS(sys_ioctl      , 3)
1807         MIPS_SYS(sys_fcntl      , 3)    /* 4055 */
1808         MIPS_SYS(sys_ni_syscall , 2)
1809         MIPS_SYS(sys_setpgid    , 2)
1810         MIPS_SYS(sys_ni_syscall , 0)
1811         MIPS_SYS(sys_olduname   , 1)
1812         MIPS_SYS(sys_umask      , 1)    /* 4060 */
1813         MIPS_SYS(sys_chroot     , 1)
1814         MIPS_SYS(sys_ustat      , 2)
1815         MIPS_SYS(sys_dup2       , 2)
1816         MIPS_SYS(sys_getppid    , 0)
1817         MIPS_SYS(sys_getpgrp    , 0)    /* 4065 */
1818         MIPS_SYS(sys_setsid     , 0)
1819         MIPS_SYS(sys_sigaction  , 3)
1820         MIPS_SYS(sys_sgetmask   , 0)
1821         MIPS_SYS(sys_ssetmask   , 1)
1822         MIPS_SYS(sys_setreuid   , 2)    /* 4070 */
1823         MIPS_SYS(sys_setregid   , 2)
1824         MIPS_SYS(sys_sigsuspend , 0)
1825         MIPS_SYS(sys_sigpending , 1)
1826         MIPS_SYS(sys_sethostname        , 2)
1827         MIPS_SYS(sys_setrlimit  , 2)    /* 4075 */
1828         MIPS_SYS(sys_getrlimit  , 2)
1829         MIPS_SYS(sys_getrusage  , 2)
1830         MIPS_SYS(sys_gettimeofday, 2)
1831         MIPS_SYS(sys_settimeofday, 2)
1832         MIPS_SYS(sys_getgroups  , 2)    /* 4080 */
1833         MIPS_SYS(sys_setgroups  , 2)
1834         MIPS_SYS(sys_ni_syscall , 0)    /* old_select */
1835         MIPS_SYS(sys_symlink    , 2)
1836         MIPS_SYS(sys_ni_syscall , 0)    /* was sys_lstat */
1837         MIPS_SYS(sys_readlink   , 3)    /* 4085 */
1838         MIPS_SYS(sys_uselib     , 1)
1839         MIPS_SYS(sys_swapon     , 2)
1840         MIPS_SYS(sys_reboot     , 3)
1841         MIPS_SYS(old_readdir    , 3)
1842         MIPS_SYS(old_mmap       , 6)    /* 4090 */
1843         MIPS_SYS(sys_munmap     , 2)
1844         MIPS_SYS(sys_truncate   , 2)
1845         MIPS_SYS(sys_ftruncate  , 2)
1846         MIPS_SYS(sys_fchmod     , 2)
1847         MIPS_SYS(sys_fchown     , 3)    /* 4095 */
1848         MIPS_SYS(sys_getpriority        , 2)
1849         MIPS_SYS(sys_setpriority        , 3)
1850         MIPS_SYS(sys_ni_syscall , 0)
1851         MIPS_SYS(sys_statfs     , 2)
1852         MIPS_SYS(sys_fstatfs    , 2)    /* 4100 */
1853         MIPS_SYS(sys_ni_syscall , 0)    /* was ioperm(2) */
1854         MIPS_SYS(sys_socketcall , 2)
1855         MIPS_SYS(sys_syslog     , 3)
1856         MIPS_SYS(sys_setitimer  , 3)
1857         MIPS_SYS(sys_getitimer  , 2)    /* 4105 */
1858         MIPS_SYS(sys_newstat    , 2)
1859         MIPS_SYS(sys_newlstat   , 2)
1860         MIPS_SYS(sys_newfstat   , 2)
1861         MIPS_SYS(sys_uname      , 1)
1862         MIPS_SYS(sys_ni_syscall , 0)    /* 4110 was iopl(2) */
1863         MIPS_SYS(sys_vhangup    , 0)
1864         MIPS_SYS(sys_ni_syscall , 0)    /* was sys_idle() */
1865         MIPS_SYS(sys_ni_syscall , 0)    /* was sys_vm86 */
1866         MIPS_SYS(sys_wait4      , 4)
1867         MIPS_SYS(sys_swapoff    , 1)    /* 4115 */
1868         MIPS_SYS(sys_sysinfo    , 1)
1869         MIPS_SYS(sys_ipc                , 6)
1870         MIPS_SYS(sys_fsync      , 1)
1871         MIPS_SYS(sys_sigreturn  , 0)
1872         MIPS_SYS(sys_clone      , 6)    /* 4120 */
1873         MIPS_SYS(sys_setdomainname, 2)
1874         MIPS_SYS(sys_newuname   , 1)
1875         MIPS_SYS(sys_ni_syscall , 0)    /* sys_modify_ldt */
1876         MIPS_SYS(sys_adjtimex   , 1)
1877         MIPS_SYS(sys_mprotect   , 3)    /* 4125 */
1878         MIPS_SYS(sys_sigprocmask        , 3)
1879         MIPS_SYS(sys_ni_syscall , 0)    /* was create_module */
1880         MIPS_SYS(sys_init_module        , 5)
1881         MIPS_SYS(sys_delete_module, 1)
1882         MIPS_SYS(sys_ni_syscall , 0)    /* 4130 was get_kernel_syms */
1883         MIPS_SYS(sys_quotactl   , 0)
1884         MIPS_SYS(sys_getpgid    , 1)
1885         MIPS_SYS(sys_fchdir     , 1)
1886         MIPS_SYS(sys_bdflush    , 2)
1887         MIPS_SYS(sys_sysfs      , 3)    /* 4135 */
1888         MIPS_SYS(sys_personality        , 1)
1889         MIPS_SYS(sys_ni_syscall , 0)    /* for afs_syscall */
1890         MIPS_SYS(sys_setfsuid   , 1)
1891         MIPS_SYS(sys_setfsgid   , 1)
1892         MIPS_SYS(sys_llseek     , 5)    /* 4140 */
1893         MIPS_SYS(sys_getdents   , 3)
1894         MIPS_SYS(sys_select     , 5)
1895         MIPS_SYS(sys_flock      , 2)
1896         MIPS_SYS(sys_msync      , 3)
1897         MIPS_SYS(sys_readv      , 3)    /* 4145 */
1898         MIPS_SYS(sys_writev     , 3)
1899         MIPS_SYS(sys_cacheflush , 3)
1900         MIPS_SYS(sys_cachectl   , 3)
1901         MIPS_SYS(sys_sysmips    , 4)
1902         MIPS_SYS(sys_ni_syscall , 0)    /* 4150 */
1903         MIPS_SYS(sys_getsid     , 1)
1904         MIPS_SYS(sys_fdatasync  , 0)
1905         MIPS_SYS(sys_sysctl     , 1)
1906         MIPS_SYS(sys_mlock      , 2)
1907         MIPS_SYS(sys_munlock    , 2)    /* 4155 */
1908         MIPS_SYS(sys_mlockall   , 1)
1909         MIPS_SYS(sys_munlockall , 0)
1910         MIPS_SYS(sys_sched_setparam, 2)
1911         MIPS_SYS(sys_sched_getparam, 2)
1912         MIPS_SYS(sys_sched_setscheduler, 3)     /* 4160 */
1913         MIPS_SYS(sys_sched_getscheduler, 1)
1914         MIPS_SYS(sys_sched_yield        , 0)
1915         MIPS_SYS(sys_sched_get_priority_max, 1)
1916         MIPS_SYS(sys_sched_get_priority_min, 1)
1917         MIPS_SYS(sys_sched_rr_get_interval, 2)  /* 4165 */
1918         MIPS_SYS(sys_nanosleep, 2)
1919         MIPS_SYS(sys_mremap     , 4)
1920         MIPS_SYS(sys_accept     , 3)
1921         MIPS_SYS(sys_bind       , 3)
1922         MIPS_SYS(sys_connect    , 3)    /* 4170 */
1923         MIPS_SYS(sys_getpeername        , 3)
1924         MIPS_SYS(sys_getsockname        , 3)
1925         MIPS_SYS(sys_getsockopt , 5)
1926         MIPS_SYS(sys_listen     , 2)
1927         MIPS_SYS(sys_recv       , 4)    /* 4175 */
1928         MIPS_SYS(sys_recvfrom   , 6)
1929         MIPS_SYS(sys_recvmsg    , 3)
1930         MIPS_SYS(sys_send       , 4)
1931         MIPS_SYS(sys_sendmsg    , 3)
1932         MIPS_SYS(sys_sendto     , 6)    /* 4180 */
1933         MIPS_SYS(sys_setsockopt , 5)
1934         MIPS_SYS(sys_shutdown   , 2)
1935         MIPS_SYS(sys_socket     , 3)
1936         MIPS_SYS(sys_socketpair , 4)
1937         MIPS_SYS(sys_setresuid  , 3)    /* 4185 */
1938         MIPS_SYS(sys_getresuid  , 3)
1939         MIPS_SYS(sys_ni_syscall , 0)    /* was sys_query_module */
1940         MIPS_SYS(sys_poll       , 3)
1941         MIPS_SYS(sys_nfsservctl , 3)
1942         MIPS_SYS(sys_setresgid  , 3)    /* 4190 */
1943         MIPS_SYS(sys_getresgid  , 3)
1944         MIPS_SYS(sys_prctl      , 5)
1945         MIPS_SYS(sys_rt_sigreturn, 0)
1946         MIPS_SYS(sys_rt_sigaction, 4)
1947         MIPS_SYS(sys_rt_sigprocmask, 4) /* 4195 */
1948         MIPS_SYS(sys_rt_sigpending, 2)
1949         MIPS_SYS(sys_rt_sigtimedwait, 4)
1950         MIPS_SYS(sys_rt_sigqueueinfo, 3)
1951         MIPS_SYS(sys_rt_sigsuspend, 0)
1952         MIPS_SYS(sys_pread64    , 6)    /* 4200 */
1953         MIPS_SYS(sys_pwrite64   , 6)
1954         MIPS_SYS(sys_chown      , 3)
1955         MIPS_SYS(sys_getcwd     , 2)
1956         MIPS_SYS(sys_capget     , 2)
1957         MIPS_SYS(sys_capset     , 2)    /* 4205 */
1958         MIPS_SYS(sys_sigaltstack        , 2)
1959         MIPS_SYS(sys_sendfile   , 4)
1960         MIPS_SYS(sys_ni_syscall , 0)
1961         MIPS_SYS(sys_ni_syscall , 0)
1962         MIPS_SYS(sys_mmap2      , 6)    /* 4210 */
1963         MIPS_SYS(sys_truncate64 , 4)
1964         MIPS_SYS(sys_ftruncate64        , 4)
1965         MIPS_SYS(sys_stat64     , 2)
1966         MIPS_SYS(sys_lstat64    , 2)
1967         MIPS_SYS(sys_fstat64    , 2)    /* 4215 */
1968         MIPS_SYS(sys_pivot_root , 2)
1969         MIPS_SYS(sys_mincore    , 3)
1970         MIPS_SYS(sys_madvise    , 3)
1971         MIPS_SYS(sys_getdents64 , 3)
1972         MIPS_SYS(sys_fcntl64    , 3)    /* 4220 */
1973         MIPS_SYS(sys_ni_syscall , 0)
1974         MIPS_SYS(sys_gettid     , 0)
1975         MIPS_SYS(sys_readahead  , 5)
1976         MIPS_SYS(sys_setxattr   , 5)
1977         MIPS_SYS(sys_lsetxattr  , 5)    /* 4225 */
1978         MIPS_SYS(sys_fsetxattr  , 5)
1979         MIPS_SYS(sys_getxattr   , 4)
1980         MIPS_SYS(sys_lgetxattr  , 4)
1981         MIPS_SYS(sys_fgetxattr  , 4)
1982         MIPS_SYS(sys_listxattr  , 3)    /* 4230 */
1983         MIPS_SYS(sys_llistxattr , 3)
1984         MIPS_SYS(sys_flistxattr , 3)
1985         MIPS_SYS(sys_removexattr        , 2)
1986         MIPS_SYS(sys_lremovexattr, 2)
1987         MIPS_SYS(sys_fremovexattr, 2)   /* 4235 */
1988         MIPS_SYS(sys_tkill      , 2)
1989         MIPS_SYS(sys_sendfile64 , 5)
1990         MIPS_SYS(sys_futex      , 2)
1991         MIPS_SYS(sys_sched_setaffinity, 3)
1992         MIPS_SYS(sys_sched_getaffinity, 3)      /* 4240 */
1993         MIPS_SYS(sys_io_setup   , 2)
1994         MIPS_SYS(sys_io_destroy , 1)
1995         MIPS_SYS(sys_io_getevents, 5)
1996         MIPS_SYS(sys_io_submit  , 3)
1997         MIPS_SYS(sys_io_cancel  , 3)    /* 4245 */
1998         MIPS_SYS(sys_exit_group , 1)
1999         MIPS_SYS(sys_lookup_dcookie, 3)
2000         MIPS_SYS(sys_epoll_create, 1)
2001         MIPS_SYS(sys_epoll_ctl  , 4)
2002         MIPS_SYS(sys_epoll_wait , 3)    /* 4250 */
2003         MIPS_SYS(sys_remap_file_pages, 5)
2004         MIPS_SYS(sys_set_tid_address, 1)
2005         MIPS_SYS(sys_restart_syscall, 0)
2006         MIPS_SYS(sys_fadvise64_64, 7)
2007         MIPS_SYS(sys_statfs64   , 3)    /* 4255 */
2008         MIPS_SYS(sys_fstatfs64  , 2)
2009         MIPS_SYS(sys_timer_create, 3)
2010         MIPS_SYS(sys_timer_settime, 4)
2011         MIPS_SYS(sys_timer_gettime, 2)
2012         MIPS_SYS(sys_timer_getoverrun, 1)       /* 4260 */
2013         MIPS_SYS(sys_timer_delete, 1)
2014         MIPS_SYS(sys_clock_settime, 2)
2015         MIPS_SYS(sys_clock_gettime, 2)
2016         MIPS_SYS(sys_clock_getres, 2)
2017         MIPS_SYS(sys_clock_nanosleep, 4)        /* 4265 */
2018         MIPS_SYS(sys_tgkill     , 3)
2019         MIPS_SYS(sys_utimes     , 2)
2020         MIPS_SYS(sys_mbind      , 4)
2021         MIPS_SYS(sys_ni_syscall , 0)    /* sys_get_mempolicy */
2022         MIPS_SYS(sys_ni_syscall , 0)    /* 4270 sys_set_mempolicy */
2023         MIPS_SYS(sys_mq_open    , 4)
2024         MIPS_SYS(sys_mq_unlink  , 1)
2025         MIPS_SYS(sys_mq_timedsend, 5)
2026         MIPS_SYS(sys_mq_timedreceive, 5)
2027         MIPS_SYS(sys_mq_notify  , 2)    /* 4275 */
2028         MIPS_SYS(sys_mq_getsetattr, 3)
2029         MIPS_SYS(sys_ni_syscall , 0)    /* sys_vserver */
2030         MIPS_SYS(sys_waitid     , 4)
2031         MIPS_SYS(sys_ni_syscall , 0)    /* available, was setaltroot */
2032         MIPS_SYS(sys_add_key    , 5)
2033         MIPS_SYS(sys_request_key, 4)
2034         MIPS_SYS(sys_keyctl     , 5)
2035         MIPS_SYS(sys_set_thread_area, 1)
2036         MIPS_SYS(sys_inotify_init, 0)
2037         MIPS_SYS(sys_inotify_add_watch, 3) /* 4285 */
2038         MIPS_SYS(sys_inotify_rm_watch, 2)
2039         MIPS_SYS(sys_migrate_pages, 4)
2040         MIPS_SYS(sys_openat, 4)
2041         MIPS_SYS(sys_mkdirat, 3)
2042         MIPS_SYS(sys_mknodat, 4)        /* 4290 */
2043         MIPS_SYS(sys_fchownat, 5)
2044         MIPS_SYS(sys_futimesat, 3)
2045         MIPS_SYS(sys_fstatat64, 4)
2046         MIPS_SYS(sys_unlinkat, 3)
2047         MIPS_SYS(sys_renameat, 4)       /* 4295 */
2048         MIPS_SYS(sys_linkat, 5)
2049         MIPS_SYS(sys_symlinkat, 3)
2050         MIPS_SYS(sys_readlinkat, 4)
2051         MIPS_SYS(sys_fchmodat, 3)
2052         MIPS_SYS(sys_faccessat, 3)      /* 4300 */
2053         MIPS_SYS(sys_pselect6, 6)
2054         MIPS_SYS(sys_ppoll, 5)
2055         MIPS_SYS(sys_unshare, 1)
2056         MIPS_SYS(sys_splice, 4)
2057         MIPS_SYS(sys_sync_file_range, 7) /* 4305 */
2058         MIPS_SYS(sys_tee, 4)
2059         MIPS_SYS(sys_vmsplice, 4)
2060         MIPS_SYS(sys_move_pages, 6)
2061         MIPS_SYS(sys_set_robust_list, 2)
2062         MIPS_SYS(sys_get_robust_list, 3) /* 4310 */
2063         MIPS_SYS(sys_kexec_load, 4)
2064         MIPS_SYS(sys_getcpu, 3)
2065         MIPS_SYS(sys_epoll_pwait, 6)
2066         MIPS_SYS(sys_ioprio_set, 3)
2067         MIPS_SYS(sys_ioprio_get, 2)
2068         MIPS_SYS(sys_utimensat, 4)
2069         MIPS_SYS(sys_signalfd, 3)
2070         MIPS_SYS(sys_ni_syscall, 0)     /* was timerfd */
2071         MIPS_SYS(sys_eventfd, 1)
2072         MIPS_SYS(sys_fallocate, 6)      /* 4320 */
2073         MIPS_SYS(sys_timerfd_create, 2)
2074         MIPS_SYS(sys_timerfd_gettime, 2)
2075         MIPS_SYS(sys_timerfd_settime, 4)
2076         MIPS_SYS(sys_signalfd4, 4)
2077         MIPS_SYS(sys_eventfd2, 2)       /* 4325 */
2078         MIPS_SYS(sys_epoll_create1, 1)
2079         MIPS_SYS(sys_dup3, 3)
2080         MIPS_SYS(sys_pipe2, 2)
2081         MIPS_SYS(sys_inotify_init1, 1)
2082         MIPS_SYS(sys_preadv, 6)         /* 4330 */
2083         MIPS_SYS(sys_pwritev, 6)
2084         MIPS_SYS(sys_rt_tgsigqueueinfo, 4)
2085         MIPS_SYS(sys_perf_event_open, 5)
2086         MIPS_SYS(sys_accept4, 4)
2087         MIPS_SYS(sys_recvmmsg, 5)       /* 4335 */
2088         MIPS_SYS(sys_fanotify_init, 2)
2089         MIPS_SYS(sys_fanotify_mark, 6)
2090         MIPS_SYS(sys_prlimit64, 4)
2091         MIPS_SYS(sys_name_to_handle_at, 5)
2092         MIPS_SYS(sys_open_by_handle_at, 3) /* 4340 */
2093         MIPS_SYS(sys_clock_adjtime, 2)
2094         MIPS_SYS(sys_syncfs, 1)
2095 };
2096
2097 #undef MIPS_SYS
2098
2099 static int do_store_exclusive(CPUMIPSState *env)
2100 {
2101     target_ulong addr;
2102     target_ulong page_addr;
2103     target_ulong val;
2104     int flags;
2105     int segv = 0;
2106     int reg;
2107     int d;
2108
2109     addr = env->lladdr;
2110     page_addr = addr & TARGET_PAGE_MASK;
2111     start_exclusive();
2112     mmap_lock();
2113     flags = page_get_flags(page_addr);
2114     if ((flags & PAGE_READ) == 0) {
2115         segv = 1;
2116     } else {
2117         reg = env->llreg & 0x1f;
2118         d = (env->llreg & 0x20) != 0;
2119         if (d) {
2120             segv = get_user_s64(val, addr);
2121         } else {
2122             segv = get_user_s32(val, addr);
2123         }
2124         if (!segv) {
2125             if (val != env->llval) {
2126                 env->active_tc.gpr[reg] = 0;
2127             } else {
2128                 if (d) {
2129                     segv = put_user_u64(env->llnewval, addr);
2130                 } else {
2131                     segv = put_user_u32(env->llnewval, addr);
2132                 }
2133                 if (!segv) {
2134                     env->active_tc.gpr[reg] = 1;
2135                 }
2136             }
2137         }
2138     }
2139     env->lladdr = -1;
2140     if (!segv) {
2141         env->active_tc.PC += 4;
2142     }
2143     mmap_unlock();
2144     end_exclusive();
2145     return segv;
2146 }
2147
2148 void cpu_loop(CPUMIPSState *env)
2149 {
2150     target_siginfo_t info;
2151     int trapnr, ret;
2152     unsigned int syscall_num;
2153
2154     for(;;) {
2155         cpu_exec_start(env);
2156         trapnr = cpu_mips_exec(env);
2157         cpu_exec_end(env);
2158         switch(trapnr) {
2159         case EXCP_SYSCALL:
2160             syscall_num = env->active_tc.gpr[2] - 4000;
2161             env->active_tc.PC += 4;
2162             if (syscall_num >= sizeof(mips_syscall_args)) {
2163                 ret = -TARGET_ENOSYS;
2164             } else {
2165                 int nb_args;
2166                 abi_ulong sp_reg;
2167                 abi_ulong arg5 = 0, arg6 = 0, arg7 = 0, arg8 = 0;
2168
2169                 nb_args = mips_syscall_args[syscall_num];
2170                 sp_reg = env->active_tc.gpr[29];
2171                 switch (nb_args) {
2172                 /* these arguments are taken from the stack */
2173                 /* FIXME - what to do if get_user() fails? */
2174                 case 8: get_user_ual(arg8, sp_reg + 28);
2175                 case 7: get_user_ual(arg7, sp_reg + 24);
2176                 case 6: get_user_ual(arg6, sp_reg + 20);
2177                 case 5: get_user_ual(arg5, sp_reg + 16);
2178                 default:
2179                     break;
2180                 }
2181                 ret = do_syscall(env, env->active_tc.gpr[2],
2182                                  env->active_tc.gpr[4],
2183                                  env->active_tc.gpr[5],
2184                                  env->active_tc.gpr[6],
2185                                  env->active_tc.gpr[7],
2186                                  arg5, arg6, arg7, arg8);
2187             }
2188             if (ret == -TARGET_QEMU_ESIGRETURN) {
2189                 /* Returning from a successful sigreturn syscall.
2190                    Avoid clobbering register state.  */
2191                 break;
2192             }
2193             if ((unsigned int)ret >= (unsigned int)(-1133)) {
2194                 env->active_tc.gpr[7] = 1; /* error flag */
2195                 ret = -ret;
2196             } else {
2197                 env->active_tc.gpr[7] = 0; /* error flag */
2198             }
2199             env->active_tc.gpr[2] = ret;
2200             break;
2201         case EXCP_TLBL:
2202         case EXCP_TLBS:
2203         case EXCP_AdEL:
2204         case EXCP_AdES:
2205             info.si_signo = TARGET_SIGSEGV;
2206             info.si_errno = 0;
2207             /* XXX: check env->error_code */
2208             info.si_code = TARGET_SEGV_MAPERR;
2209             info._sifields._sigfault._addr = env->CP0_BadVAddr;
2210             queue_signal(env, info.si_signo, &info);
2211             break;
2212         case EXCP_CpU:
2213         case EXCP_RI:
2214             info.si_signo = TARGET_SIGILL;
2215             info.si_errno = 0;
2216             info.si_code = 0;
2217             queue_signal(env, info.si_signo, &info);
2218             break;
2219         case EXCP_INTERRUPT:
2220             /* just indicate that signals should be handled asap */
2221             break;
2222         case EXCP_DEBUG:
2223             {
2224                 int sig;
2225
2226                 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2227                 if (sig)
2228                   {
2229                     info.si_signo = sig;
2230                     info.si_errno = 0;
2231                     info.si_code = TARGET_TRAP_BRKPT;
2232                     queue_signal(env, info.si_signo, &info);
2233                   }
2234             }
2235             break;
2236         case EXCP_SC:
2237             if (do_store_exclusive(env)) {
2238                 info.si_signo = TARGET_SIGSEGV;
2239                 info.si_errno = 0;
2240                 info.si_code = TARGET_SEGV_MAPERR;
2241                 info._sifields._sigfault._addr = env->active_tc.PC;
2242                 queue_signal(env, info.si_signo, &info);
2243             }
2244             break;
2245         default:
2246             //        error:
2247             fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
2248                     trapnr);
2249             cpu_dump_state(env, stderr, fprintf, 0);
2250             abort();
2251         }
2252         process_pending_signals(env);
2253     }
2254 }
2255 #endif
2256
2257 #ifdef TARGET_SH4
2258 void cpu_loop (CPUState *env)
2259 {
2260     int trapnr, ret;
2261     target_siginfo_t info;
2262
2263     while (1) {
2264         trapnr = cpu_sh4_exec (env);
2265
2266         switch (trapnr) {
2267         case 0x160:
2268             env->pc += 2;
2269             ret = do_syscall(env,
2270                              env->gregs[3],
2271                              env->gregs[4],
2272                              env->gregs[5],
2273                              env->gregs[6],
2274                              env->gregs[7],
2275                              env->gregs[0],
2276                              env->gregs[1],
2277                              0, 0);
2278             env->gregs[0] = ret;
2279             break;
2280         case EXCP_INTERRUPT:
2281             /* just indicate that signals should be handled asap */
2282             break;
2283         case EXCP_DEBUG:
2284             {
2285                 int sig;
2286
2287                 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2288                 if (sig)
2289                   {
2290                     info.si_signo = sig;
2291                     info.si_errno = 0;
2292                     info.si_code = TARGET_TRAP_BRKPT;
2293                     queue_signal(env, info.si_signo, &info);
2294                   }
2295             }
2296             break;
2297         case 0xa0:
2298         case 0xc0:
2299             info.si_signo = SIGSEGV;
2300             info.si_errno = 0;
2301             info.si_code = TARGET_SEGV_MAPERR;
2302             info._sifields._sigfault._addr = env->tea;
2303             queue_signal(env, info.si_signo, &info);
2304             break;
2305
2306         default:
2307             printf ("Unhandled trap: 0x%x\n", trapnr);
2308             cpu_dump_state(env, stderr, fprintf, 0);
2309             exit (1);
2310         }
2311         process_pending_signals (env);
2312     }
2313 }
2314 #endif
2315
2316 #ifdef TARGET_CRIS
2317 void cpu_loop (CPUState *env)
2318 {
2319     int trapnr, ret;
2320     target_siginfo_t info;
2321     
2322     while (1) {
2323         trapnr = cpu_cris_exec (env);
2324         switch (trapnr) {
2325         case 0xaa:
2326             {
2327                 info.si_signo = SIGSEGV;
2328                 info.si_errno = 0;
2329                 /* XXX: check env->error_code */
2330                 info.si_code = TARGET_SEGV_MAPERR;
2331                 info._sifields._sigfault._addr = env->pregs[PR_EDA];
2332                 queue_signal(env, info.si_signo, &info);
2333             }
2334             break;
2335         case EXCP_INTERRUPT:
2336           /* just indicate that signals should be handled asap */
2337           break;
2338         case EXCP_BREAK:
2339             ret = do_syscall(env, 
2340                              env->regs[9], 
2341                              env->regs[10], 
2342                              env->regs[11], 
2343                              env->regs[12], 
2344                              env->regs[13], 
2345                              env->pregs[7], 
2346                              env->pregs[11],
2347                              0, 0);
2348             env->regs[10] = ret;
2349             break;
2350         case EXCP_DEBUG:
2351             {
2352                 int sig;
2353
2354                 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2355                 if (sig)
2356                   {
2357                     info.si_signo = sig;
2358                     info.si_errno = 0;
2359                     info.si_code = TARGET_TRAP_BRKPT;
2360                     queue_signal(env, info.si_signo, &info);
2361                   }
2362             }
2363             break;
2364         default:
2365             printf ("Unhandled trap: 0x%x\n", trapnr);
2366             cpu_dump_state(env, stderr, fprintf, 0);
2367             exit (1);
2368         }
2369         process_pending_signals (env);
2370     }
2371 }
2372 #endif
2373
2374 #ifdef TARGET_MICROBLAZE
2375 void cpu_loop (CPUState *env)
2376 {
2377     int trapnr, ret;
2378     target_siginfo_t info;
2379     
2380     while (1) {
2381         trapnr = cpu_mb_exec (env);
2382         switch (trapnr) {
2383         case 0xaa:
2384             {
2385                 info.si_signo = SIGSEGV;
2386                 info.si_errno = 0;
2387                 /* XXX: check env->error_code */
2388                 info.si_code = TARGET_SEGV_MAPERR;
2389                 info._sifields._sigfault._addr = 0;
2390                 queue_signal(env, info.si_signo, &info);
2391             }
2392             break;
2393         case EXCP_INTERRUPT:
2394           /* just indicate that signals should be handled asap */
2395           break;
2396         case EXCP_BREAK:
2397             /* Return address is 4 bytes after the call.  */
2398             env->regs[14] += 4;
2399             ret = do_syscall(env, 
2400                              env->regs[12], 
2401                              env->regs[5], 
2402                              env->regs[6], 
2403                              env->regs[7], 
2404                              env->regs[8], 
2405                              env->regs[9], 
2406                              env->regs[10],
2407                              0, 0);
2408             env->regs[3] = ret;
2409             env->sregs[SR_PC] = env->regs[14];
2410             break;
2411         case EXCP_HW_EXCP:
2412             env->regs[17] = env->sregs[SR_PC] + 4;
2413             if (env->iflags & D_FLAG) {
2414                 env->sregs[SR_ESR] |= 1 << 12;
2415                 env->sregs[SR_PC] -= 4;
2416                 /* FIXME: if branch was immed, replay the imm aswell.  */
2417             }
2418
2419             env->iflags &= ~(IMM_FLAG | D_FLAG);
2420
2421             switch (env->sregs[SR_ESR] & 31) {
2422                 case ESR_EC_DIVZERO:
2423                     info.si_signo = SIGFPE;
2424                     info.si_errno = 0;
2425                     info.si_code = TARGET_FPE_FLTDIV;
2426                     info._sifields._sigfault._addr = 0;
2427                     queue_signal(env, info.si_signo, &info);
2428                     break;
2429                 case ESR_EC_FPU:
2430                     info.si_signo = SIGFPE;
2431                     info.si_errno = 0;
2432                     if (env->sregs[SR_FSR] & FSR_IO) {
2433                         info.si_code = TARGET_FPE_FLTINV;
2434                     }
2435                     if (env->sregs[SR_FSR] & FSR_DZ) {
2436                         info.si_code = TARGET_FPE_FLTDIV;
2437                     }
2438                     info._sifields._sigfault._addr = 0;
2439                     queue_signal(env, info.si_signo, &info);
2440                     break;
2441                 default:
2442                     printf ("Unhandled hw-exception: 0x%x\n",
2443                             env->sregs[SR_ESR] & ESR_EC_MASK);
2444                     cpu_dump_state(env, stderr, fprintf, 0);
2445                     exit (1);
2446                     break;
2447             }
2448             break;
2449         case EXCP_DEBUG:
2450             {
2451                 int sig;
2452
2453                 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2454                 if (sig)
2455                   {
2456                     info.si_signo = sig;
2457                     info.si_errno = 0;
2458                     info.si_code = TARGET_TRAP_BRKPT;
2459                     queue_signal(env, info.si_signo, &info);
2460                   }
2461             }
2462             break;
2463         default:
2464             printf ("Unhandled trap: 0x%x\n", trapnr);
2465             cpu_dump_state(env, stderr, fprintf, 0);
2466             exit (1);
2467         }
2468         process_pending_signals (env);
2469     }
2470 }
2471 #endif
2472
2473 #ifdef TARGET_M68K
2474
2475 void cpu_loop(CPUM68KState *env)
2476 {
2477     int trapnr;
2478     unsigned int n;
2479     target_siginfo_t info;
2480     TaskState *ts = env->opaque;
2481
2482     for(;;) {
2483         trapnr = cpu_m68k_exec(env);
2484         switch(trapnr) {
2485         case EXCP_ILLEGAL:
2486             {
2487                 if (ts->sim_syscalls) {
2488                     uint16_t nr;
2489                     nr = lduw(env->pc + 2);
2490                     env->pc += 4;
2491                     do_m68k_simcall(env, nr);
2492                 } else {
2493                     goto do_sigill;
2494                 }
2495             }
2496             break;
2497         case EXCP_HALT_INSN:
2498             /* Semihosing syscall.  */
2499             env->pc += 4;
2500             do_m68k_semihosting(env, env->dregs[0]);
2501             break;
2502         case EXCP_LINEA:
2503         case EXCP_LINEF:
2504         case EXCP_UNSUPPORTED:
2505         do_sigill:
2506             info.si_signo = SIGILL;
2507             info.si_errno = 0;
2508             info.si_code = TARGET_ILL_ILLOPN;
2509             info._sifields._sigfault._addr = env->pc;
2510             queue_signal(env, info.si_signo, &info);
2511             break;
2512         case EXCP_TRAP0:
2513             {
2514                 ts->sim_syscalls = 0;
2515                 n = env->dregs[0];
2516                 env->pc += 2;
2517                 env->dregs[0] = do_syscall(env,
2518                                           n,
2519                                           env->dregs[1],
2520                                           env->dregs[2],
2521                                           env->dregs[3],
2522                                           env->dregs[4],
2523                                           env->dregs[5],
2524                                           env->aregs[0],
2525                                           0, 0);
2526             }
2527             break;
2528         case EXCP_INTERRUPT:
2529             /* just indicate that signals should be handled asap */
2530             break;
2531         case EXCP_ACCESS:
2532             {
2533                 info.si_signo = SIGSEGV;
2534                 info.si_errno = 0;
2535                 /* XXX: check env->error_code */
2536                 info.si_code = TARGET_SEGV_MAPERR;
2537                 info._sifields._sigfault._addr = env->mmu.ar;
2538                 queue_signal(env, info.si_signo, &info);
2539             }
2540             break;
2541         case EXCP_DEBUG:
2542             {
2543                 int sig;
2544
2545                 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2546                 if (sig)
2547                   {
2548                     info.si_signo = sig;
2549                     info.si_errno = 0;
2550                     info.si_code = TARGET_TRAP_BRKPT;
2551                     queue_signal(env, info.si_signo, &info);
2552                   }
2553             }
2554             break;
2555         default:
2556             fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
2557                     trapnr);
2558             cpu_dump_state(env, stderr, fprintf, 0);
2559             abort();
2560         }
2561         process_pending_signals(env);
2562     }
2563 }
2564 #endif /* TARGET_M68K */
2565
2566 #ifdef TARGET_ALPHA
2567 static void do_store_exclusive(CPUAlphaState *env, int reg, int quad)
2568 {
2569     target_ulong addr, val, tmp;
2570     target_siginfo_t info;
2571     int ret = 0;
2572
2573     addr = env->lock_addr;
2574     tmp = env->lock_st_addr;
2575     env->lock_addr = -1;
2576     env->lock_st_addr = 0;
2577
2578     start_exclusive();
2579     mmap_lock();
2580
2581     if (addr == tmp) {
2582         if (quad ? get_user_s64(val, addr) : get_user_s32(val, addr)) {
2583             goto do_sigsegv;
2584         }
2585
2586         if (val == env->lock_value) {
2587             tmp = env->ir[reg];
2588             if (quad ? put_user_u64(tmp, addr) : put_user_u32(tmp, addr)) {
2589                 goto do_sigsegv;
2590             }
2591             ret = 1;
2592         }
2593     }
2594     env->ir[reg] = ret;
2595     env->pc += 4;
2596
2597     mmap_unlock();
2598     end_exclusive();
2599     return;
2600
2601  do_sigsegv:
2602     mmap_unlock();
2603     end_exclusive();
2604
2605     info.si_signo = TARGET_SIGSEGV;
2606     info.si_errno = 0;
2607     info.si_code = TARGET_SEGV_MAPERR;
2608     info._sifields._sigfault._addr = addr;
2609     queue_signal(env, TARGET_SIGSEGV, &info);
2610 }
2611
2612 void cpu_loop (CPUState *env)
2613 {
2614     int trapnr;
2615     target_siginfo_t info;
2616     abi_long sysret;
2617
2618     while (1) {
2619         trapnr = cpu_alpha_exec (env);
2620
2621         /* All of the traps imply a transition through PALcode, which
2622            implies an REI instruction has been executed.  Which means
2623            that the intr_flag should be cleared.  */
2624         env->intr_flag = 0;
2625
2626         switch (trapnr) {
2627         case EXCP_RESET:
2628             fprintf(stderr, "Reset requested. Exit\n");
2629             exit(1);
2630             break;
2631         case EXCP_MCHK:
2632             fprintf(stderr, "Machine check exception. Exit\n");
2633             exit(1);
2634             break;
2635         case EXCP_SMP_INTERRUPT:
2636         case EXCP_CLK_INTERRUPT:
2637         case EXCP_DEV_INTERRUPT:
2638             fprintf(stderr, "External interrupt. Exit\n");
2639             exit(1);
2640             break;
2641         case EXCP_MMFAULT:
2642             env->lock_addr = -1;
2643             info.si_signo = TARGET_SIGSEGV;
2644             info.si_errno = 0;
2645             info.si_code = (page_get_flags(env->trap_arg0) & PAGE_VALID
2646                             ? TARGET_SEGV_ACCERR : TARGET_SEGV_MAPERR);
2647             info._sifields._sigfault._addr = env->trap_arg0;
2648             queue_signal(env, info.si_signo, &info);
2649             break;
2650         case EXCP_UNALIGN:
2651             env->lock_addr = -1;
2652             info.si_signo = TARGET_SIGBUS;
2653             info.si_errno = 0;
2654             info.si_code = TARGET_BUS_ADRALN;
2655             info._sifields._sigfault._addr = env->trap_arg0;
2656             queue_signal(env, info.si_signo, &info);
2657             break;
2658         case EXCP_OPCDEC:
2659         do_sigill:
2660             env->lock_addr = -1;
2661             info.si_signo = TARGET_SIGILL;
2662             info.si_errno = 0;
2663             info.si_code = TARGET_ILL_ILLOPC;
2664             info._sifields._sigfault._addr = env->pc;
2665             queue_signal(env, info.si_signo, &info);
2666             break;
2667         case EXCP_ARITH:
2668             env->lock_addr = -1;
2669             info.si_signo = TARGET_SIGFPE;
2670             info.si_errno = 0;
2671             info.si_code = TARGET_FPE_FLTINV;
2672             info._sifields._sigfault._addr = env->pc;
2673             queue_signal(env, info.si_signo, &info);
2674             break;
2675         case EXCP_FEN:
2676             /* No-op.  Linux simply re-enables the FPU.  */
2677             break;
2678         case EXCP_CALL_PAL:
2679             env->lock_addr = -1;
2680             switch (env->error_code) {
2681             case 0x80:
2682                 /* BPT */
2683                 info.si_signo = TARGET_SIGTRAP;
2684                 info.si_errno = 0;
2685                 info.si_code = TARGET_TRAP_BRKPT;
2686                 info._sifields._sigfault._addr = env->pc;
2687                 queue_signal(env, info.si_signo, &info);
2688                 break;
2689             case 0x81:
2690                 /* BUGCHK */
2691                 info.si_signo = TARGET_SIGTRAP;
2692                 info.si_errno = 0;
2693                 info.si_code = 0;
2694                 info._sifields._sigfault._addr = env->pc;
2695                 queue_signal(env, info.si_signo, &info);
2696                 break;
2697             case 0x83:
2698                 /* CALLSYS */
2699                 trapnr = env->ir[IR_V0];
2700                 sysret = do_syscall(env, trapnr,
2701                                     env->ir[IR_A0], env->ir[IR_A1],
2702                                     env->ir[IR_A2], env->ir[IR_A3],
2703                                     env->ir[IR_A4], env->ir[IR_A5],
2704                                     0, 0);
2705                 if (trapnr == TARGET_NR_sigreturn
2706                     || trapnr == TARGET_NR_rt_sigreturn) {
2707                     break;
2708                 }
2709                 /* Syscall writes 0 to V0 to bypass error check, similar
2710                    to how this is handled internal to Linux kernel.  */
2711                 if (env->ir[IR_V0] == 0) {
2712                     env->ir[IR_V0] = sysret;
2713                 } else {
2714                     env->ir[IR_V0] = (sysret < 0 ? -sysret : sysret);
2715                     env->ir[IR_A3] = (sysret < 0);
2716                 }
2717                 break;
2718             case 0x86:
2719                 /* IMB */
2720                 /* ??? We can probably elide the code using page_unprotect
2721                    that is checking for self-modifying code.  Instead we
2722                    could simply call tb_flush here.  Until we work out the
2723                    changes required to turn off the extra write protection,
2724                    this can be a no-op.  */
2725                 break;
2726             case 0x9E:
2727                 /* RDUNIQUE */
2728                 /* Handled in the translator for usermode.  */
2729                 abort();
2730             case 0x9F:
2731                 /* WRUNIQUE */
2732                 /* Handled in the translator for usermode.  */
2733                 abort();
2734             case 0xAA:
2735                 /* GENTRAP */
2736                 info.si_signo = TARGET_SIGFPE;
2737                 switch (env->ir[IR_A0]) {
2738                 case TARGET_GEN_INTOVF:
2739                     info.si_code = TARGET_FPE_INTOVF;
2740                     break;
2741                 case TARGET_GEN_INTDIV:
2742                     info.si_code = TARGET_FPE_INTDIV;
2743                     break;
2744                 case TARGET_GEN_FLTOVF:
2745                     info.si_code = TARGET_FPE_FLTOVF;
2746                     break;
2747                 case TARGET_GEN_FLTUND:
2748                     info.si_code = TARGET_FPE_FLTUND;
2749                     break;
2750                 case TARGET_GEN_FLTINV:
2751                     info.si_code = TARGET_FPE_FLTINV;
2752                     break;
2753                 case TARGET_GEN_FLTINE:
2754                     info.si_code = TARGET_FPE_FLTRES;
2755                     break;
2756                 case TARGET_GEN_ROPRAND:
2757                     info.si_code = 0;
2758                     break;
2759                 default:
2760                     info.si_signo = TARGET_SIGTRAP;
2761                     info.si_code = 0;
2762                     break;
2763                 }
2764                 info.si_errno = 0;
2765                 info._sifields._sigfault._addr = env->pc;
2766                 queue_signal(env, info.si_signo, &info);
2767                 break;
2768             default:
2769                 goto do_sigill;
2770             }
2771             break;
2772         case EXCP_DEBUG:
2773             info.si_signo = gdb_handlesig (env, TARGET_SIGTRAP);
2774             if (info.si_signo) {
2775                 env->lock_addr = -1;
2776                 info.si_errno = 0;
2777                 info.si_code = TARGET_TRAP_BRKPT;
2778                 queue_signal(env, info.si_signo, &info);
2779             }
2780             break;
2781         case EXCP_STL_C:
2782         case EXCP_STQ_C:
2783             do_store_exclusive(env, env->error_code, trapnr - EXCP_STL_C);
2784             break;
2785         default:
2786             printf ("Unhandled trap: 0x%x\n", trapnr);
2787             cpu_dump_state(env, stderr, fprintf, 0);
2788             exit (1);
2789         }
2790         process_pending_signals (env);
2791     }
2792 }
2793 #endif /* TARGET_ALPHA */
2794
2795 #ifdef TARGET_S390X
2796 void cpu_loop(CPUS390XState *env)
2797 {
2798     int trapnr;
2799     target_siginfo_t info;
2800
2801     while (1) {
2802         trapnr = cpu_s390x_exec (env);
2803
2804         switch (trapnr) {
2805         case EXCP_INTERRUPT:
2806             /* just indicate that signals should be handled asap */
2807             break;
2808         case EXCP_DEBUG:
2809             {
2810                 int sig;
2811
2812                 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2813                 if (sig) {
2814                     info.si_signo = sig;
2815                     info.si_errno = 0;
2816                     info.si_code = TARGET_TRAP_BRKPT;
2817                     queue_signal(env, info.si_signo, &info);
2818                 }
2819             }
2820             break;
2821         case EXCP_SVC:
2822             {
2823                 int n = env->int_svc_code;
2824                 if (!n) {
2825                     /* syscalls > 255 */
2826                     n = env->regs[1];
2827                 }
2828                 env->psw.addr += env->int_svc_ilc;
2829                 env->regs[2] = do_syscall(env, n,
2830                            env->regs[2],
2831                            env->regs[3],
2832                            env->regs[4],
2833                            env->regs[5],
2834                            env->regs[6],
2835                            env->regs[7],
2836                            0, 0);
2837             }
2838             break;
2839         case EXCP_ADDR:
2840             {
2841                 info.si_signo = SIGSEGV;
2842                 info.si_errno = 0;
2843                 /* XXX: check env->error_code */
2844                 info.si_code = TARGET_SEGV_MAPERR;
2845                 info._sifields._sigfault._addr = env->__excp_addr;
2846                 queue_signal(env, info.si_signo, &info);
2847             }
2848             break;
2849         case EXCP_SPEC:
2850             {
2851                 fprintf(stderr,"specification exception insn 0x%08x%04x\n", ldl(env->psw.addr), lduw(env->psw.addr + 4));
2852                 info.si_signo = SIGILL;
2853                 info.si_errno = 0;
2854                 info.si_code = TARGET_ILL_ILLOPC;
2855                 info._sifields._sigfault._addr = env->__excp_addr;
2856                 queue_signal(env, info.si_signo, &info);
2857             }
2858             break;
2859         default:
2860             printf ("Unhandled trap: 0x%x\n", trapnr);
2861             cpu_dump_state(env, stderr, fprintf, 0);
2862             exit (1);
2863         }
2864         process_pending_signals (env);
2865     }
2866 }
2867
2868 #endif /* TARGET_S390X */
2869
2870 static void version(void)
2871 {
2872     printf("qemu-" TARGET_ARCH " version " QEMU_VERSION QEMU_PKGVERSION
2873            ", Copyright (c) 2003-2008 Fabrice Bellard\n");
2874 }
2875
2876 static void usage(void)
2877 {
2878     version();
2879     printf("usage: qemu-" TARGET_ARCH " [options] program [arguments...]\n"
2880            "Linux CPU emulator (compiled for %s emulation)\n"
2881            "\n"
2882            "Standard options:\n"
2883            "-h                print this help\n"
2884            "-version          display version information and exit\n"
2885            "-g port           wait gdb connection to port\n"
2886            "-L path           set the elf interpreter prefix (default=%s)\n"
2887            "-s size           set the stack size in bytes (default=%ld)\n"
2888            "-cpu model        select CPU (-cpu ? for list)\n"
2889            "-drop-ld-preload  drop LD_PRELOAD for target process\n"
2890            "-E var=value      sets/modifies targets environment variable(s)\n"
2891            "-U var            unsets targets environment variable(s)\n"
2892            "-0 argv0          forces target process argv[0] to be argv0\n"
2893 #if defined(CONFIG_USE_GUEST_BASE)
2894            "-B address        set guest_base address to address\n"
2895            "-R size           reserve size bytes for guest virtual address space\n"
2896 #endif
2897            "\n"
2898            "Debug options:\n"
2899            "-d options   activate log (logfile=%s)\n"
2900            "-p pagesize  set the host page size to 'pagesize'\n"
2901            "-singlestep  always run in singlestep mode\n"
2902            "-strace      log system calls\n"
2903            "\n"
2904            "Environment variables:\n"
2905            "QEMU_STRACE       Print system calls and arguments similar to the\n"
2906            "                  'strace' program.  Enable by setting to any value.\n"
2907            "You can use -E and -U options to set/unset environment variables\n"
2908            "for target process.  It is possible to provide several variables\n"
2909            "by repeating the option.  For example:\n"
2910            "    -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
2911            "Note that if you provide several changes to single variable\n"
2912            "last change will stay in effect.\n"
2913            ,
2914            TARGET_ARCH,
2915            interp_prefix,
2916            guest_stack_size,
2917            DEBUG_LOGFILE);
2918     exit(1);
2919 }
2920
2921 THREAD CPUState *thread_env;
2922
2923 void task_settid(TaskState *ts)
2924 {
2925     if (ts->ts_tid == 0) {
2926 #ifdef CONFIG_USE_NPTL
2927         ts->ts_tid = (pid_t)syscall(SYS_gettid);
2928 #else
2929         /* when no threads are used, tid becomes pid */
2930         ts->ts_tid = getpid();
2931 #endif
2932     }
2933 }
2934
2935 void stop_all_tasks(void)
2936 {
2937     /*
2938      * We trust that when using NPTL, start_exclusive()
2939      * handles thread stopping correctly.
2940      */
2941     start_exclusive();
2942 }
2943
2944 /* Assumes contents are already zeroed.  */
2945 void init_task_state(TaskState *ts)
2946 {
2947     int i;
2948  
2949     ts->used = 1;
2950     ts->first_free = ts->sigqueue_table;
2951     for (i = 0; i < MAX_SIGQUEUE_SIZE - 1; i++) {
2952         ts->sigqueue_table[i].next = &ts->sigqueue_table[i + 1];
2953     }
2954     ts->sigqueue_table[i].next = NULL;
2955 }
2956  
2957 int main(int argc, char **argv, char **envp)
2958 {
2959     const char *filename;
2960     const char *cpu_model;
2961     const char *log_file = DEBUG_LOGFILE;
2962     const char *log_mask = NULL;
2963     struct target_pt_regs regs1, *regs = &regs1;
2964     struct image_info info1, *info = &info1;
2965     struct linux_binprm bprm;
2966     TaskState *ts;
2967     CPUState *env;
2968     int optind;
2969     const char *r;
2970     int gdbstub_port = 0;
2971     char **target_environ, **wrk;
2972     char **target_argv;
2973     int target_argc;
2974     envlist_t *envlist = NULL;
2975     const char *argv0 = NULL;
2976     int i;
2977     int ret;
2978
2979     if (argc <= 1)
2980         usage();
2981
2982     qemu_cache_utils_init(envp);
2983
2984     if ((envlist = envlist_create()) == NULL) {
2985         (void) fprintf(stderr, "Unable to allocate envlist\n");
2986         exit(1);
2987     }
2988
2989     /* add current environment into the list */
2990     for (wrk = environ; *wrk != NULL; wrk++) {
2991         (void) envlist_setenv(envlist, *wrk);
2992     }
2993
2994     /* Read the stack limit from the kernel.  If it's "unlimited",
2995        then we can do little else besides use the default.  */
2996     {
2997         struct rlimit lim;
2998         if (getrlimit(RLIMIT_STACK, &lim) == 0
2999             && lim.rlim_cur != RLIM_INFINITY
3000             && lim.rlim_cur == (target_long)lim.rlim_cur) {
3001             guest_stack_size = lim.rlim_cur;
3002         }
3003     }
3004
3005     cpu_model = NULL;
3006 #if defined(cpudef_setup)
3007     cpudef_setup(); /* parse cpu definitions in target config file (TBD) */
3008 #endif
3009
3010     optind = 1;
3011     for(;;) {
3012         if (optind >= argc)
3013             break;
3014         r = argv[optind];
3015         if (r[0] != '-')
3016             break;
3017         optind++;
3018         r++;
3019         if (!strcmp(r, "-")) {
3020             break;
3021         } else if (!strcmp(r, "d")) {
3022             if (optind >= argc) {
3023                 break;
3024             }
3025             log_mask = argv[optind++];
3026         } else if (!strcmp(r, "D")) {
3027             if (optind >= argc) {
3028                 break;
3029             }
3030             log_file = argv[optind++];
3031         } else if (!strcmp(r, "E")) {
3032             r = argv[optind++];
3033             if (envlist_setenv(envlist, r) != 0)
3034                 usage();
3035         } else if (!strcmp(r, "ignore-environment")) {
3036             envlist_free(envlist);
3037             if ((envlist = envlist_create()) == NULL) {
3038                 (void) fprintf(stderr, "Unable to allocate envlist\n");
3039                 exit(1);
3040             }
3041         } else if (!strcmp(r, "U")) {
3042             r = argv[optind++];
3043             if (envlist_unsetenv(envlist, r) != 0)
3044                 usage();
3045         } else if (!strcmp(r, "0")) {
3046             r = argv[optind++];
3047             argv0 = r;
3048         } else if (!strcmp(r, "s")) {
3049             if (optind >= argc)
3050                 break;
3051             r = argv[optind++];
3052             guest_stack_size = strtoul(r, (char **)&r, 0);
3053             if (guest_stack_size == 0)
3054                 usage();
3055             if (*r == 'M')
3056                 guest_stack_size *= 1024 * 1024;
3057             else if (*r == 'k' || *r == 'K')
3058                 guest_stack_size *= 1024;
3059         } else if (!strcmp(r, "L")) {
3060             interp_prefix = argv[optind++];
3061         } else if (!strcmp(r, "p")) {
3062             if (optind >= argc)
3063                 break;
3064             qemu_host_page_size = atoi(argv[optind++]);
3065             if (qemu_host_page_size == 0 ||
3066                 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
3067                 fprintf(stderr, "page size must be a power of two\n");
3068                 exit(1);
3069             }
3070         } else if (!strcmp(r, "g")) {
3071             if (optind >= argc)
3072                 break;
3073             gdbstub_port = atoi(argv[optind++]);
3074         } else if (!strcmp(r, "r")) {
3075             qemu_uname_release = argv[optind++];
3076         } else if (!strcmp(r, "cpu")) {
3077             cpu_model = argv[optind++];
3078             if (cpu_model == NULL || strcmp(cpu_model, "?") == 0) {
3079 /* XXX: implement xxx_cpu_list for targets that still miss it */
3080 #if defined(cpu_list_id)
3081                 cpu_list_id(stdout, &fprintf, "");
3082 #elif defined(cpu_list)
3083                 cpu_list(stdout, &fprintf); /* deprecated */
3084 #endif
3085                 exit(1);
3086             }
3087 #if defined(CONFIG_USE_GUEST_BASE)
3088         } else if (!strcmp(r, "B")) {
3089            guest_base = strtol(argv[optind++], NULL, 0);
3090            have_guest_base = 1;
3091         } else if (!strcmp(r, "R")) {
3092             char *p;
3093             int shift = 0;
3094             reserved_va = strtoul(argv[optind++], &p, 0);
3095             switch (*p) {
3096             case 'k':
3097             case 'K':
3098                 shift = 10;
3099                 break;
3100             case 'M':
3101                 shift = 20;
3102                 break;
3103             case 'G':
3104                 shift = 30;
3105                 break;
3106             }
3107             if (shift) {
3108                 unsigned long unshifted = reserved_va;
3109                 p++;
3110                 reserved_va <<= shift;
3111                 if (((reserved_va >> shift) != unshifted)
3112 #if HOST_LONG_BITS > TARGET_VIRT_ADDR_SPACE_BITS
3113                     || (reserved_va > (1ul << TARGET_VIRT_ADDR_SPACE_BITS))
3114 #endif
3115                     ) {
3116                     fprintf(stderr, "Reserved virtual address too big\n");
3117                     exit(1);
3118                 }
3119             }
3120             if (*p) {
3121                 fprintf(stderr, "Unrecognised -R size suffix '%s'\n", p);
3122                 exit(1);
3123             }
3124 #endif
3125         } else if (!strcmp(r, "drop-ld-preload")) {
3126             (void) envlist_unsetenv(envlist, "LD_PRELOAD");
3127         } else if (!strcmp(r, "singlestep")) {
3128             singlestep = 1;
3129         } else if (!strcmp(r, "strace")) {
3130             do_strace = 1;
3131         } else if (!strcmp(r, "version")) {
3132             version();
3133             exit(0);
3134         } else {
3135             usage();
3136         }
3137     }
3138     /* init debug */
3139     cpu_set_log_filename(log_file);
3140     if (log_mask) {
3141         int mask;
3142         const CPULogItem *item;
3143
3144         mask = cpu_str_to_log_mask(log_mask);
3145         if (!mask) {
3146             printf("Log items (comma separated):\n");
3147             for (item = cpu_log_items; item->mask != 0; item++) {
3148                 printf("%-10s %s\n", item->name, item->help);
3149             }
3150             exit(1);
3151         }
3152         cpu_set_log(mask);
3153     }
3154
3155     if (optind >= argc) {
3156         usage();
3157     }
3158     filename = argv[optind];
3159     exec_path = argv[optind];
3160
3161     /* Zero out regs */
3162     memset(regs, 0, sizeof(struct target_pt_regs));
3163
3164     /* Zero out image_info */
3165     memset(info, 0, sizeof(struct image_info));
3166
3167     memset(&bprm, 0, sizeof (bprm));
3168
3169     /* Scan interp_prefix dir for replacement files. */
3170     init_paths(interp_prefix);
3171
3172     if (cpu_model == NULL) {
3173 #if defined(TARGET_I386)
3174 #ifdef TARGET_X86_64
3175         cpu_model = "qemu64";
3176 #else
3177         cpu_model = "qemu32";
3178 #endif
3179 #elif defined(TARGET_ARM)
3180         cpu_model = "any";
3181 #elif defined(TARGET_UNICORE32)
3182         cpu_model = "any";
3183 #elif defined(TARGET_M68K)
3184         cpu_model = "any";
3185 #elif defined(TARGET_SPARC)
3186 #ifdef TARGET_SPARC64
3187         cpu_model = "TI UltraSparc II";
3188 #else
3189         cpu_model = "Fujitsu MB86904";
3190 #endif
3191 #elif defined(TARGET_MIPS)
3192 #if defined(TARGET_ABI_MIPSN32) || defined(TARGET_ABI_MIPSN64)
3193         cpu_model = "20Kc";
3194 #else
3195         cpu_model = "24Kf";
3196 #endif
3197 #elif defined(TARGET_PPC)
3198 #ifdef TARGET_PPC64
3199         cpu_model = "970fx";
3200 #else
3201         cpu_model = "750";
3202 #endif
3203 #else
3204         cpu_model = "any";
3205 #endif
3206     }
3207     tcg_exec_init(0);
3208     cpu_exec_init_all();
3209     /* NOTE: we need to init the CPU at this stage to get
3210        qemu_host_page_size */
3211     env = cpu_init(cpu_model);
3212     if (!env) {
3213         fprintf(stderr, "Unable to find CPU definition\n");
3214         exit(1);
3215     }
3216 #if defined(TARGET_I386) || defined(TARGET_SPARC) || defined(TARGET_PPC)
3217     cpu_reset(env);
3218 #endif
3219
3220     thread_env = env;
3221
3222     if (getenv("QEMU_STRACE")) {
3223         do_strace = 1;
3224     }
3225
3226     target_environ = envlist_to_environ(envlist, NULL);
3227     envlist_free(envlist);
3228
3229 #if defined(CONFIG_USE_GUEST_BASE)
3230     /*
3231      * Now that page sizes are configured in cpu_init() we can do
3232      * proper page alignment for guest_base.
3233      */
3234     guest_base = HOST_PAGE_ALIGN(guest_base);
3235
3236     if (reserved_va) {
3237         void *p;
3238         int flags;
3239
3240         flags = MAP_ANONYMOUS | MAP_PRIVATE | MAP_NORESERVE;
3241         if (have_guest_base) {
3242             flags |= MAP_FIXED;
3243         }
3244         p = mmap((void *)guest_base, reserved_va, PROT_NONE, flags, -1, 0);
3245         if (p == MAP_FAILED) {
3246             fprintf(stderr, "Unable to reserve guest address space\n");
3247             exit(1);
3248         }
3249         guest_base = (unsigned long)p;
3250         /* Make sure the address is properly aligned.  */
3251         if (guest_base & ~qemu_host_page_mask) {
3252             munmap(p, reserved_va);
3253             p = mmap((void *)guest_base, reserved_va + qemu_host_page_size,
3254                      PROT_NONE, flags, -1, 0);
3255             if (p == MAP_FAILED) {
3256                 fprintf(stderr, "Unable to reserve guest address space\n");
3257                 exit(1);
3258             }
3259             guest_base = HOST_PAGE_ALIGN((unsigned long)p);
3260         }
3261         qemu_log("Reserved 0x%lx bytes of guest address space\n", reserved_va);
3262     }
3263
3264     if (reserved_va || have_guest_base) {
3265         if (!guest_validate_base(guest_base)) {
3266             fprintf(stderr, "Guest base/Reserved VA rejected by guest code\n");
3267             exit(1);
3268         }
3269     }
3270 #endif /* CONFIG_USE_GUEST_BASE */
3271
3272     /*
3273      * Read in mmap_min_addr kernel parameter.  This value is used
3274      * When loading the ELF image to determine whether guest_base
3275      * is needed.  It is also used in mmap_find_vma.
3276      */
3277     {
3278         FILE *fp;
3279
3280         if ((fp = fopen("/proc/sys/vm/mmap_min_addr", "r")) != NULL) {
3281             unsigned long tmp;
3282             if (fscanf(fp, "%lu", &tmp) == 1) {
3283                 mmap_min_addr = tmp;
3284                 qemu_log("host mmap_min_addr=0x%lx\n", mmap_min_addr);
3285             }
3286             fclose(fp);
3287         }
3288     }
3289
3290     /*
3291      * Prepare copy of argv vector for target.
3292      */
3293     target_argc = argc - optind;
3294     target_argv = calloc(target_argc + 1, sizeof (char *));
3295     if (target_argv == NULL) {
3296         (void) fprintf(stderr, "Unable to allocate memory for target_argv\n");
3297         exit(1);
3298     }
3299
3300     /*
3301      * If argv0 is specified (using '-0' switch) we replace
3302      * argv[0] pointer with the given one.
3303      */
3304     i = 0;
3305     if (argv0 != NULL) {
3306         target_argv[i++] = strdup(argv0);
3307     }
3308     for (; i < target_argc; i++) {
3309         target_argv[i] = strdup(argv[optind + i]);
3310     }
3311     target_argv[target_argc] = NULL;
3312
3313     ts = g_malloc0 (sizeof(TaskState));
3314     init_task_state(ts);
3315     /* build Task State */
3316     ts->info = info;
3317     ts->bprm = &bprm;
3318     env->opaque = ts;
3319     task_settid(ts);
3320
3321     ret = loader_exec(filename, target_argv, target_environ, regs,
3322         info, &bprm);
3323     if (ret != 0) {
3324         printf("Error %d while loading %s\n", ret, filename);
3325         _exit(1);
3326     }
3327
3328     for (i = 0; i < target_argc; i++) {
3329         free(target_argv[i]);
3330     }
3331     free(target_argv);
3332
3333     for (wrk = target_environ; *wrk; wrk++) {
3334         free(*wrk);
3335     }
3336
3337     free(target_environ);
3338
3339     if (qemu_log_enabled()) {
3340 #if defined(CONFIG_USE_GUEST_BASE)
3341         qemu_log("guest_base  0x%lx\n", guest_base);
3342 #endif
3343         log_page_dump();
3344
3345         qemu_log("start_brk   0x" TARGET_ABI_FMT_lx "\n", info->start_brk);
3346         qemu_log("end_code    0x" TARGET_ABI_FMT_lx "\n", info->end_code);
3347         qemu_log("start_code  0x" TARGET_ABI_FMT_lx "\n",
3348                  info->start_code);
3349         qemu_log("start_data  0x" TARGET_ABI_FMT_lx "\n",
3350                  info->start_data);
3351         qemu_log("end_data    0x" TARGET_ABI_FMT_lx "\n", info->end_data);
3352         qemu_log("start_stack 0x" TARGET_ABI_FMT_lx "\n",
3353                  info->start_stack);
3354         qemu_log("brk         0x" TARGET_ABI_FMT_lx "\n", info->brk);
3355         qemu_log("entry       0x" TARGET_ABI_FMT_lx "\n", info->entry);
3356     }
3357
3358     target_set_brk(info->brk);
3359     syscall_init();
3360     signal_init();
3361
3362 #if defined(CONFIG_USE_GUEST_BASE)
3363     /* Now that we've loaded the binary, GUEST_BASE is fixed.  Delay
3364        generating the prologue until now so that the prologue can take
3365        the real value of GUEST_BASE into account.  */
3366     tcg_prologue_init(&tcg_ctx);
3367 #endif
3368
3369 #if defined(TARGET_I386)
3370     cpu_x86_set_cpl(env, 3);
3371
3372     env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK;
3373     env->hflags |= HF_PE_MASK;
3374     if (env->cpuid_features & CPUID_SSE) {
3375         env->cr[4] |= CR4_OSFXSR_MASK;
3376         env->hflags |= HF_OSFXSR_MASK;
3377     }
3378 #ifndef TARGET_ABI32
3379     /* enable 64 bit mode if possible */
3380     if (!(env->cpuid_ext2_features & CPUID_EXT2_LM)) {
3381         fprintf(stderr, "The selected x86 CPU does not support 64 bit mode\n");
3382         exit(1);
3383     }
3384     env->cr[4] |= CR4_PAE_MASK;
3385     env->efer |= MSR_EFER_LMA | MSR_EFER_LME;
3386     env->hflags |= HF_LMA_MASK;
3387 #endif
3388
3389     /* flags setup : we activate the IRQs by default as in user mode */
3390     env->eflags |= IF_MASK;
3391
3392     /* linux register setup */
3393 #ifndef TARGET_ABI32
3394     env->regs[R_EAX] = regs->rax;
3395     env->regs[R_EBX] = regs->rbx;
3396     env->regs[R_ECX] = regs->rcx;
3397     env->regs[R_EDX] = regs->rdx;
3398     env->regs[R_ESI] = regs->rsi;
3399     env->regs[R_EDI] = regs->rdi;
3400     env->regs[R_EBP] = regs->rbp;
3401     env->regs[R_ESP] = regs->rsp;
3402     env->eip = regs->rip;
3403 #else
3404     env->regs[R_EAX] = regs->eax;
3405     env->regs[R_EBX] = regs->ebx;
3406     env->regs[R_ECX] = regs->ecx;
3407     env->regs[R_EDX] = regs->edx;
3408     env->regs[R_ESI] = regs->esi;
3409     env->regs[R_EDI] = regs->edi;
3410     env->regs[R_EBP] = regs->ebp;
3411     env->regs[R_ESP] = regs->esp;
3412     env->eip = regs->eip;
3413 #endif
3414
3415     /* linux interrupt setup */
3416 #ifndef TARGET_ABI32
3417     env->idt.limit = 511;
3418 #else
3419     env->idt.limit = 255;
3420 #endif
3421     env->idt.base = target_mmap(0, sizeof(uint64_t) * (env->idt.limit + 1),
3422                                 PROT_READ|PROT_WRITE,
3423                                 MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
3424     idt_table = g2h(env->idt.base);
3425     set_idt(0, 0);
3426     set_idt(1, 0);
3427     set_idt(2, 0);
3428     set_idt(3, 3);
3429     set_idt(4, 3);
3430     set_idt(5, 0);
3431     set_idt(6, 0);
3432     set_idt(7, 0);
3433     set_idt(8, 0);
3434     set_idt(9, 0);
3435     set_idt(10, 0);
3436     set_idt(11, 0);
3437     set_idt(12, 0);
3438     set_idt(13, 0);
3439     set_idt(14, 0);
3440     set_idt(15, 0);
3441     set_idt(16, 0);
3442     set_idt(17, 0);
3443     set_idt(18, 0);
3444     set_idt(19, 0);
3445     set_idt(0x80, 3);
3446
3447     /* linux segment setup */
3448     {
3449         uint64_t *gdt_table;
3450         env->gdt.base = target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES,
3451                                     PROT_READ|PROT_WRITE,
3452                                     MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
3453         env->gdt.limit = sizeof(uint64_t) * TARGET_GDT_ENTRIES - 1;
3454         gdt_table = g2h(env->gdt.base);
3455 #ifdef TARGET_ABI32
3456         write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
3457                  DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
3458                  (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
3459 #else
3460         /* 64 bit code segment */
3461         write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
3462                  DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
3463                  DESC_L_MASK |
3464                  (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
3465 #endif
3466         write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff,
3467                  DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
3468                  (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT));
3469     }
3470     cpu_x86_load_seg(env, R_CS, __USER_CS);
3471     cpu_x86_load_seg(env, R_SS, __USER_DS);
3472 #ifdef TARGET_ABI32
3473     cpu_x86_load_seg(env, R_DS, __USER_DS);
3474     cpu_x86_load_seg(env, R_ES, __USER_DS);
3475     cpu_x86_load_seg(env, R_FS, __USER_DS);
3476     cpu_x86_load_seg(env, R_GS, __USER_DS);
3477     /* This hack makes Wine work... */
3478     env->segs[R_FS].selector = 0;
3479 #else
3480     cpu_x86_load_seg(env, R_DS, 0);
3481     cpu_x86_load_seg(env, R_ES, 0);
3482     cpu_x86_load_seg(env, R_FS, 0);
3483     cpu_x86_load_seg(env, R_GS, 0);
3484 #endif
3485 #elif defined(TARGET_ARM)
3486     {
3487         int i;
3488         cpsr_write(env, regs->uregs[16], 0xffffffff);
3489         for(i = 0; i < 16; i++) {
3490             env->regs[i] = regs->uregs[i];
3491         }
3492     }
3493 #elif defined(TARGET_UNICORE32)
3494     {
3495         int i;
3496         cpu_asr_write(env, regs->uregs[32], 0xffffffff);
3497         for (i = 0; i < 32; i++) {
3498             env->regs[i] = regs->uregs[i];
3499         }
3500     }
3501 #elif defined(TARGET_SPARC)
3502     {
3503         int i;
3504         env->pc = regs->pc;
3505         env->npc = regs->npc;
3506         env->y = regs->y;
3507         for(i = 0; i < 8; i++)
3508             env->gregs[i] = regs->u_regs[i];
3509         for(i = 0; i < 8; i++)
3510             env->regwptr[i] = regs->u_regs[i + 8];
3511     }
3512 #elif defined(TARGET_PPC)
3513     {
3514         int i;
3515
3516 #if defined(TARGET_PPC64)
3517 #if defined(TARGET_ABI32)
3518         env->msr &= ~((target_ulong)1 << MSR_SF);
3519 #else
3520         env->msr |= (target_ulong)1 << MSR_SF;
3521 #endif
3522 #endif
3523         env->nip = regs->nip;
3524         for(i = 0; i < 32; i++) {
3525             env->gpr[i] = regs->gpr[i];
3526         }
3527     }
3528 #elif defined(TARGET_M68K)
3529     {
3530         env->pc = regs->pc;
3531         env->dregs[0] = regs->d0;
3532         env->dregs[1] = regs->d1;
3533         env->dregs[2] = regs->d2;
3534         env->dregs[3] = regs->d3;
3535         env->dregs[4] = regs->d4;
3536         env->dregs[5] = regs->d5;
3537         env->dregs[6] = regs->d6;
3538         env->dregs[7] = regs->d7;
3539         env->aregs[0] = regs->a0;
3540         env->aregs[1] = regs->a1;
3541         env->aregs[2] = regs->a2;
3542         env->aregs[3] = regs->a3;
3543         env->aregs[4] = regs->a4;
3544         env->aregs[5] = regs->a5;
3545         env->aregs[6] = regs->a6;
3546         env->aregs[7] = regs->usp;
3547         env->sr = regs->sr;
3548         ts->sim_syscalls = 1;
3549     }
3550 #elif defined(TARGET_MICROBLAZE)
3551     {
3552         env->regs[0] = regs->r0;
3553         env->regs[1] = regs->r1;
3554         env->regs[2] = regs->r2;
3555         env->regs[3] = regs->r3;
3556         env->regs[4] = regs->r4;
3557         env->regs[5] = regs->r5;
3558         env->regs[6] = regs->r6;
3559         env->regs[7] = regs->r7;
3560         env->regs[8] = regs->r8;
3561         env->regs[9] = regs->r9;
3562         env->regs[10] = regs->r10;
3563         env->regs[11] = regs->r11;
3564         env->regs[12] = regs->r12;
3565         env->regs[13] = regs->r13;
3566         env->regs[14] = regs->r14;
3567         env->regs[15] = regs->r15;          
3568         env->regs[16] = regs->r16;          
3569         env->regs[17] = regs->r17;          
3570         env->regs[18] = regs->r18;          
3571         env->regs[19] = regs->r19;          
3572         env->regs[20] = regs->r20;          
3573         env->regs[21] = regs->r21;          
3574         env->regs[22] = regs->r22;          
3575         env->regs[23] = regs->r23;          
3576         env->regs[24] = regs->r24;          
3577         env->regs[25] = regs->r25;          
3578         env->regs[26] = regs->r26;          
3579         env->regs[27] = regs->r27;          
3580         env->regs[28] = regs->r28;          
3581         env->regs[29] = regs->r29;          
3582         env->regs[30] = regs->r30;          
3583         env->regs[31] = regs->r31;          
3584         env->sregs[SR_PC] = regs->pc;
3585     }
3586 #elif defined(TARGET_MIPS)
3587     {
3588         int i;
3589
3590         for(i = 0; i < 32; i++) {
3591             env->active_tc.gpr[i] = regs->regs[i];
3592         }
3593         env->active_tc.PC = regs->cp0_epc & ~(target_ulong)1;
3594         if (regs->cp0_epc & 1) {
3595             env->hflags |= MIPS_HFLAG_M16;
3596         }
3597     }
3598 #elif defined(TARGET_SH4)
3599     {
3600         int i;
3601
3602         for(i = 0; i < 16; i++) {
3603             env->gregs[i] = regs->regs[i];
3604         }
3605         env->pc = regs->pc;
3606     }
3607 #elif defined(TARGET_ALPHA)
3608     {
3609         int i;
3610
3611         for(i = 0; i < 28; i++) {
3612             env->ir[i] = ((abi_ulong *)regs)[i];
3613         }
3614         env->ir[IR_SP] = regs->usp;
3615         env->pc = regs->pc;
3616     }
3617 #elif defined(TARGET_CRIS)
3618     {
3619             env->regs[0] = regs->r0;
3620             env->regs[1] = regs->r1;
3621             env->regs[2] = regs->r2;
3622             env->regs[3] = regs->r3;
3623             env->regs[4] = regs->r4;
3624             env->regs[5] = regs->r5;
3625             env->regs[6] = regs->r6;
3626             env->regs[7] = regs->r7;
3627             env->regs[8] = regs->r8;
3628             env->regs[9] = regs->r9;
3629             env->regs[10] = regs->r10;
3630             env->regs[11] = regs->r11;
3631             env->regs[12] = regs->r12;
3632             env->regs[13] = regs->r13;
3633             env->regs[14] = info->start_stack;
3634             env->regs[15] = regs->acr;      
3635             env->pc = regs->erp;
3636     }
3637 #elif defined(TARGET_S390X)
3638     {
3639             int i;
3640             for (i = 0; i < 16; i++) {
3641                 env->regs[i] = regs->gprs[i];
3642             }
3643             env->psw.mask = regs->psw.mask;
3644             env->psw.addr = regs->psw.addr;
3645     }
3646 #else
3647 #error unsupported target CPU
3648 #endif
3649
3650 #if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32)
3651     ts->stack_base = info->start_stack;
3652     ts->heap_base = info->brk;
3653     /* This will be filled in on the first SYS_HEAPINFO call.  */
3654     ts->heap_limit = 0;
3655 #endif
3656
3657     if (gdbstub_port) {
3658         if (gdbserver_start(gdbstub_port) < 0) {
3659             fprintf(stderr, "qemu: could not open gdbserver on port %d\n",
3660                     gdbstub_port);
3661             exit(1);
3662         }
3663         gdb_handlesig(env, 0);
3664     }
3665     cpu_loop(env);
3666     /* never exits */
3667     return 0;
3668 }
This page took 0.230352 seconds and 4 git commands to generate.