]> git.proxmox.com Git - qemu.git/blobdiff - linux-user/main.c
SH usermode fault handling.
[qemu.git] / linux-user / main.c
index 5601a23e674c514f105ccf333933d0b4fa3de766..74642cc36160a1a44a68b41b3d0c8875229f0a6a 100644 (file)
@@ -34,6 +34,7 @@
 #endif
 
 static const char *interp_prefix = CONFIG_QEMU_PREFIX;
+const char *qemu_uname_release = CONFIG_UNAME_RELEASE;
 
 #if defined(__i386__) && !defined(CONFIG_STATIC)
 /* Force usage of an ELF interpreter even if it is an ELF shared
@@ -152,21 +153,25 @@ static void write_dt(void *ptr, unsigned long addr, unsigned long limit,
                      int flags)
 {
     unsigned int e1, e2;
+    uint32_t *p;
     e1 = (addr << 16) | (limit & 0xffff);
     e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000);
     e2 |= flags;
-    stl((uint8_t *)ptr, e1);
-    stl((uint8_t *)ptr + 4, e2);
+    p = ptr;
+    p[0] = tswapl(e1);
+    p[1] = tswapl(e2);
 }
 
 static void set_gate(void *ptr, unsigned int type, unsigned int dpl, 
                      unsigned long addr, unsigned int sel)
 {
     unsigned int e1, e2;
+    uint32_t *p;
     e1 = (addr & 0xffff) | (sel << 16);
     e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
-    stl((uint8_t *)ptr, e1);
-    stl((uint8_t *)ptr + 4, e2);
+    p = ptr;
+    p[0] = tswapl(e1);
+    p[1] = tswapl(e2);
 }
 
 uint64_t gdt_table[6];
@@ -331,6 +336,7 @@ void cpu_loop(CPUARMState *env)
     int trapnr;
     unsigned int n, insn;
     target_siginfo_t info;
+    uint32_t addr;
     
     for(;;) {
         trapnr = cpu_arm_exec(env);
@@ -342,9 +348,9 @@ void cpu_loop(CPUARMState *env)
 
                 /* we handle the FPU emulation here, as Linux */
                 /* we get the opcode */
-                opcode = ldl_raw((uint8_t *)env->regs[15]);
+                opcode = tget32(env->regs[15]);
                 
-                if (EmulateAll(opcode, &ts->fpa, env->regs) == 0) {
+                if (EmulateAll(opcode, &ts->fpa, env) == 0) {
                     info.si_signo = SIGILL;
                     info.si_errno = 0;
                     info.si_code = TARGET_ILL_ILLOPN;
@@ -357,14 +363,28 @@ void cpu_loop(CPUARMState *env)
             }
             break;
         case EXCP_SWI:
+        case EXCP_BKPT:
             {
+                env->eabi = 1;
                 /* system call */
-                if (env->thumb) {
-                    insn = lduw((void *)(env->regs[15] - 2));
-                    n = insn & 0xff;
+                if (trapnr == EXCP_BKPT) {
+                    if (env->thumb) {
+                        insn = tget16(env->regs[15]);
+                        n = insn & 0xff;
+                        env->regs[15] += 2;
+                    } else {
+                        insn = tget32(env->regs[15]);
+                        n = (insn & 0xf) | ((insn >> 4) & 0xff0);
+                        env->regs[15] += 4;
+                    }
                 } else {
-                    insn = ldl((void *)(env->regs[15] - 4));
-                    n = insn & 0xffffff;
+                    if (env->thumb) {
+                        insn = tget16(env->regs[15] - 2);
+                        n = insn & 0xff;
+                    } else {
+                        insn = tget32(env->regs[15] - 4);
+                        n = insn & 0xffffff;
+                    }
                 }
 
                 if (n == ARM_NR_cacheflush) {
@@ -372,13 +392,14 @@ void cpu_loop(CPUARMState *env)
                 } else if (n == ARM_NR_semihosting
                            || n == ARM_NR_thumb_semihosting) {
                     env->regs[0] = do_arm_semihosting (env);
-                } else if (n >= ARM_SYSCALL_BASE
+                } else if (n == 0 || n >= ARM_SYSCALL_BASE
                            || (env->thumb && n == ARM_THUMB_SYSCALL)) {
                     /* linux syscall */
-                    if (env->thumb) {
+                    if (env->thumb || n == 0) {
                         n = env->regs[7];
                     } else {
                         n -= ARM_SYSCALL_BASE;
+                        env->eabi = 0;
                     }
                     env->regs[0] = do_syscall(env, 
                                               n, 
@@ -397,13 +418,18 @@ void cpu_loop(CPUARMState *env)
             /* just indicate that signals should be handled asap */
             break;
         case EXCP_PREFETCH_ABORT:
+            addr = env->cp15.c6_data;
+            goto do_segv;
         case EXCP_DATA_ABORT:
+            addr = env->cp15.c6_insn;
+            goto do_segv;
+        do_segv:
             {
                 info.si_signo = SIGSEGV;
                 info.si_errno = 0;
                 /* XXX: check env->error_code */
                 info.si_code = TARGET_SEGV_MAPERR;
-                info._sifields._sigfault._addr = env->cp15_6;
+                info._sifields._sigfault._addr = addr;
                 queue_signal(info.si_signo, &info);
             }
             break;
@@ -454,16 +480,16 @@ static inline int get_reg_index(CPUSPARCState *env, int cwp, int index)
 static inline void save_window_offset(CPUSPARCState *env, int cwp1)
 {
     unsigned int i;
-    uint32_t *sp_ptr;
+    target_ulong sp_ptr;
     
-    sp_ptr = (uint32_t *)(env->regbase[get_reg_index(env, cwp1, 6)]);
+    sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
 #if defined(DEBUG_WIN)
     printf("win_overflow: sp_ptr=0x%x save_cwp=%d\n", 
            (int)sp_ptr, cwp1);
 #endif
     for(i = 0; i < 16; i++) {
-        put_user(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
-        sp_ptr++;
+        tputl(sp_ptr, env->regbase[get_reg_index(env, cwp1, 8 + i)]);
+        sp_ptr += sizeof(target_ulong);
     }
 }
 
@@ -479,22 +505,21 @@ static void save_window(CPUSPARCState *env)
 static void restore_window(CPUSPARCState *env)
 {
     unsigned int new_wim, i, cwp1;
-    uint32_t *sp_ptr, reg;
+    target_ulong sp_ptr;
     
     new_wim = ((env->wim << 1) | (env->wim >> (NWINDOWS - 1))) &
         ((1LL << NWINDOWS) - 1);
     
     /* restore the invalid window */
     cwp1 = (env->cwp + 1) & (NWINDOWS - 1);
-    sp_ptr = (uint32_t *)(env->regbase[get_reg_index(env, cwp1, 6)]);
+    sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
 #if defined(DEBUG_WIN)
     printf("win_underflow: sp_ptr=0x%x load_cwp=%d\n", 
            (int)sp_ptr, cwp1);
 #endif
     for(i = 0; i < 16; i++) {
-        get_user(reg, sp_ptr);
-        env->regbase[get_reg_index(env, cwp1, 8 + i)] = reg;
-        sp_ptr++;
+        env->regbase[get_reg_index(env, cwp1, 8 + i)] = tgetl(sp_ptr);
+        sp_ptr += sizeof(target_ulong);
     }
     env->wim = new_wim;
 }
@@ -700,33 +725,28 @@ void cpu_loop(CPUPPCState *env)
             info._sifields._sigfault._addr = env->nip - 4;
             queue_signal(info.si_signo, &info);
         case EXCP_DSI:
-            fprintf(stderr, "Invalid data memory access: 0x%08x\n", env->spr[DAR]);
+            fprintf(stderr, "Invalid data memory access: 0x%08x\n",
+                    env->spr[SPR_DAR]);
             if (loglevel) {
                 fprintf(logfile, "Invalid data memory access: 0x%08x\n",
-                        env->spr[DAR]);
+                        env->spr[SPR_DAR]);
             }
-            switch (env->error_code & 0xF) {
-            case EXCP_DSI_TRANSLATE:
+            switch (env->error_code & 0xFF000000) {
+            case 0x40000000:
                 info.si_signo = TARGET_SIGSEGV;
                 info.si_errno = 0;
                 info.si_code = TARGET_SEGV_MAPERR;
                 break;
-            case EXCP_DSI_NOTSUP:
-            case EXCP_DSI_EXTERNAL:
+            case 0x04000000:
                 info.si_signo = TARGET_SIGILL;
                 info.si_errno = 0;
                 info.si_code = TARGET_ILL_ILLADR;
                 break;
-            case EXCP_DSI_PROT: 
+            case 0x08000000:
                 info.si_signo = TARGET_SIGSEGV;
                 info.si_errno = 0;
                 info.si_code = TARGET_SEGV_ACCERR;
                 break;
-            case EXCP_DSI_DABR:
-                info.si_signo = TARGET_SIGTRAP;
-                info.si_errno = 0;
-                info.si_code = TARGET_TRAP_BRKPT;
-                break;
             default:
                 /* Let's send a regular segfault... */
                 fprintf(stderr, "Invalid segfault errno (%02x)\n",
@@ -747,19 +767,14 @@ void cpu_loop(CPUPPCState *env)
             fprintf(stderr, "Invalid instruction fetch\n");
             if (loglevel)
                 fprintf(logfile, "Invalid instruction fetch\n");
-            switch (env->error_code) {
-            case EXCP_ISI_TRANSLATE:
+            switch (env->error_code & 0xFF000000) {
+            case 0x40000000:
                 info.si_signo = TARGET_SIGSEGV;
             info.si_errno = 0;
                 info.si_code = TARGET_SEGV_MAPERR;
                 break;
-            case EXCP_ISI_GUARD:
-                info.si_signo = TARGET_SIGILL;
-                info.si_errno = 0;
-                info.si_code = TARGET_ILL_ILLADR;
-                break;
-            case EXCP_ISI_NOEXEC:
-            case EXCP_ISI_PROT:
+            case 0x10000000:
+            case 0x08000000:
                 info.si_signo = TARGET_SIGSEGV;
                 info.si_errno = 0;
                 info.si_code = TARGET_SEGV_ACCERR;
@@ -929,18 +944,6 @@ void cpu_loop(CPUPPCState *env)
             if (loglevel)
                 fprintf(logfile, "Decrementer exception\n");
             abort();
-        case EXCP_RESA: /* Implementation specific          */
-            /* Should not happen ! */
-            fprintf(stderr, "RESA exception should never happen !\n");
-            if (loglevel)
-                fprintf(logfile, "RESA exception should never happen !\n");
-            abort();
-        case EXCP_RESB: /* Implementation specific          */
-            /* Should not happen ! */
-            fprintf(stderr, "RESB exception should never happen !\n");
-            if (loglevel)
-                fprintf(logfile, "RESB exception should never happen !\n");
-            abort();
         case EXCP_TRACE:
             /* Do nothing: we use this to trace execution */
             break;
@@ -962,12 +965,6 @@ void cpu_loop(CPUPPCState *env)
         case EXCP_BRANCH:
             /* We stopped because of a jump... */
             break;
-        case EXCP_RFI:
-            /* Should not occur: we always are in user mode */
-            fprintf(stderr, "Return from interrupt ?\n");
-            if (loglevel)
-                fprintf(logfile, "Return from interrupt ?\n");
-            abort();
         case EXCP_INTERRUPT:
             /* Don't know why this should ever happen... */
             break;
@@ -999,14 +996,422 @@ void cpu_loop(CPUPPCState *env)
 }
 #endif
 
+#ifdef TARGET_MIPS
+
+#define MIPS_SYS(name, args) args,
+
+static const uint8_t mips_syscall_args[] = {
+       MIPS_SYS(sys_syscall    , 0)    /* 4000 */
+       MIPS_SYS(sys_exit       , 1)
+       MIPS_SYS(sys_fork       , 0)
+       MIPS_SYS(sys_read       , 3)
+       MIPS_SYS(sys_write      , 3)
+       MIPS_SYS(sys_open       , 3)    /* 4005 */
+       MIPS_SYS(sys_close      , 1)
+       MIPS_SYS(sys_waitpid    , 3)
+       MIPS_SYS(sys_creat      , 2)
+       MIPS_SYS(sys_link       , 2)
+       MIPS_SYS(sys_unlink     , 1)    /* 4010 */
+       MIPS_SYS(sys_execve     , 0)
+       MIPS_SYS(sys_chdir      , 1)
+       MIPS_SYS(sys_time       , 1)
+       MIPS_SYS(sys_mknod      , 3)
+       MIPS_SYS(sys_chmod      , 2)    /* 4015 */
+       MIPS_SYS(sys_lchown     , 3)
+       MIPS_SYS(sys_ni_syscall , 0)
+       MIPS_SYS(sys_ni_syscall , 0)    /* was sys_stat */
+       MIPS_SYS(sys_lseek      , 3)
+       MIPS_SYS(sys_getpid     , 0)    /* 4020 */
+       MIPS_SYS(sys_mount      , 5)
+       MIPS_SYS(sys_oldumount  , 1)
+       MIPS_SYS(sys_setuid     , 1)
+       MIPS_SYS(sys_getuid     , 0)
+       MIPS_SYS(sys_stime      , 1)    /* 4025 */
+       MIPS_SYS(sys_ptrace     , 4)
+       MIPS_SYS(sys_alarm      , 1)
+       MIPS_SYS(sys_ni_syscall , 0)    /* was sys_fstat */
+       MIPS_SYS(sys_pause      , 0)
+       MIPS_SYS(sys_utime      , 2)    /* 4030 */
+       MIPS_SYS(sys_ni_syscall , 0)
+       MIPS_SYS(sys_ni_syscall , 0)
+       MIPS_SYS(sys_access     , 2)
+       MIPS_SYS(sys_nice       , 1)
+       MIPS_SYS(sys_ni_syscall , 0)    /* 4035 */
+       MIPS_SYS(sys_sync       , 0)
+       MIPS_SYS(sys_kill       , 2)
+       MIPS_SYS(sys_rename     , 2)
+       MIPS_SYS(sys_mkdir      , 2)
+       MIPS_SYS(sys_rmdir      , 1)    /* 4040 */
+       MIPS_SYS(sys_dup                , 1)
+       MIPS_SYS(sys_pipe       , 0)
+       MIPS_SYS(sys_times      , 1)
+       MIPS_SYS(sys_ni_syscall , 0)
+       MIPS_SYS(sys_brk                , 1)    /* 4045 */
+       MIPS_SYS(sys_setgid     , 1)
+       MIPS_SYS(sys_getgid     , 0)
+       MIPS_SYS(sys_ni_syscall , 0)    /* was signal(2) */
+       MIPS_SYS(sys_geteuid    , 0)
+       MIPS_SYS(sys_getegid    , 0)    /* 4050 */
+       MIPS_SYS(sys_acct       , 0)
+       MIPS_SYS(sys_umount     , 2)
+       MIPS_SYS(sys_ni_syscall , 0)
+       MIPS_SYS(sys_ioctl      , 3)
+       MIPS_SYS(sys_fcntl      , 3)    /* 4055 */
+       MIPS_SYS(sys_ni_syscall , 2)
+       MIPS_SYS(sys_setpgid    , 2)
+       MIPS_SYS(sys_ni_syscall , 0)
+       MIPS_SYS(sys_olduname   , 1)
+       MIPS_SYS(sys_umask      , 1)    /* 4060 */
+       MIPS_SYS(sys_chroot     , 1)
+       MIPS_SYS(sys_ustat      , 2)
+       MIPS_SYS(sys_dup2       , 2)
+       MIPS_SYS(sys_getppid    , 0)
+       MIPS_SYS(sys_getpgrp    , 0)    /* 4065 */
+       MIPS_SYS(sys_setsid     , 0)
+       MIPS_SYS(sys_sigaction  , 3)
+       MIPS_SYS(sys_sgetmask   , 0)
+       MIPS_SYS(sys_ssetmask   , 1)
+       MIPS_SYS(sys_setreuid   , 2)    /* 4070 */
+       MIPS_SYS(sys_setregid   , 2)
+       MIPS_SYS(sys_sigsuspend , 0)
+       MIPS_SYS(sys_sigpending , 1)
+       MIPS_SYS(sys_sethostname        , 2)
+       MIPS_SYS(sys_setrlimit  , 2)    /* 4075 */
+       MIPS_SYS(sys_getrlimit  , 2)
+       MIPS_SYS(sys_getrusage  , 2)
+       MIPS_SYS(sys_gettimeofday, 2)
+       MIPS_SYS(sys_settimeofday, 2)
+       MIPS_SYS(sys_getgroups  , 2)    /* 4080 */
+       MIPS_SYS(sys_setgroups  , 2)
+       MIPS_SYS(sys_ni_syscall , 0)    /* old_select */
+       MIPS_SYS(sys_symlink    , 2)
+       MIPS_SYS(sys_ni_syscall , 0)    /* was sys_lstat */
+       MIPS_SYS(sys_readlink   , 3)    /* 4085 */
+       MIPS_SYS(sys_uselib     , 1)
+       MIPS_SYS(sys_swapon     , 2)
+       MIPS_SYS(sys_reboot     , 3)
+       MIPS_SYS(old_readdir    , 3)
+       MIPS_SYS(old_mmap       , 6)    /* 4090 */
+       MIPS_SYS(sys_munmap     , 2)
+       MIPS_SYS(sys_truncate   , 2)
+       MIPS_SYS(sys_ftruncate  , 2)
+       MIPS_SYS(sys_fchmod     , 2)
+       MIPS_SYS(sys_fchown     , 3)    /* 4095 */
+       MIPS_SYS(sys_getpriority        , 2)
+       MIPS_SYS(sys_setpriority        , 3)
+       MIPS_SYS(sys_ni_syscall , 0)
+       MIPS_SYS(sys_statfs     , 2)
+       MIPS_SYS(sys_fstatfs    , 2)    /* 4100 */
+       MIPS_SYS(sys_ni_syscall , 0)    /* was ioperm(2) */
+       MIPS_SYS(sys_socketcall , 2)
+       MIPS_SYS(sys_syslog     , 3)
+       MIPS_SYS(sys_setitimer  , 3)
+       MIPS_SYS(sys_getitimer  , 2)    /* 4105 */
+       MIPS_SYS(sys_newstat    , 2)
+       MIPS_SYS(sys_newlstat   , 2)
+       MIPS_SYS(sys_newfstat   , 2)
+       MIPS_SYS(sys_uname      , 1)
+       MIPS_SYS(sys_ni_syscall , 0)    /* 4110 was iopl(2) */
+       MIPS_SYS(sys_vhangup    , 0)
+       MIPS_SYS(sys_ni_syscall , 0)    /* was sys_idle() */
+       MIPS_SYS(sys_ni_syscall , 0)    /* was sys_vm86 */
+       MIPS_SYS(sys_wait4      , 4)
+       MIPS_SYS(sys_swapoff    , 1)    /* 4115 */
+       MIPS_SYS(sys_sysinfo    , 1)
+       MIPS_SYS(sys_ipc                , 6)
+       MIPS_SYS(sys_fsync      , 1)
+       MIPS_SYS(sys_sigreturn  , 0)
+       MIPS_SYS(sys_clone      , 0)    /* 4120 */
+       MIPS_SYS(sys_setdomainname, 2)
+       MIPS_SYS(sys_newuname   , 1)
+       MIPS_SYS(sys_ni_syscall , 0)    /* sys_modify_ldt */
+       MIPS_SYS(sys_adjtimex   , 1)
+       MIPS_SYS(sys_mprotect   , 3)    /* 4125 */
+       MIPS_SYS(sys_sigprocmask        , 3)
+       MIPS_SYS(sys_ni_syscall , 0)    /* was create_module */
+       MIPS_SYS(sys_init_module        , 5)
+       MIPS_SYS(sys_delete_module, 1)
+       MIPS_SYS(sys_ni_syscall , 0)    /* 4130 was get_kernel_syms */
+       MIPS_SYS(sys_quotactl   , 0)
+       MIPS_SYS(sys_getpgid    , 1)
+       MIPS_SYS(sys_fchdir     , 1)
+       MIPS_SYS(sys_bdflush    , 2)
+       MIPS_SYS(sys_sysfs      , 3)    /* 4135 */
+       MIPS_SYS(sys_personality        , 1)
+       MIPS_SYS(sys_ni_syscall , 0)    /* for afs_syscall */
+       MIPS_SYS(sys_setfsuid   , 1)
+       MIPS_SYS(sys_setfsgid   , 1)
+       MIPS_SYS(sys_llseek     , 5)    /* 4140 */
+       MIPS_SYS(sys_getdents   , 3)
+       MIPS_SYS(sys_select     , 5)
+       MIPS_SYS(sys_flock      , 2)
+       MIPS_SYS(sys_msync      , 3)
+       MIPS_SYS(sys_readv      , 3)    /* 4145 */
+       MIPS_SYS(sys_writev     , 3)
+       MIPS_SYS(sys_cacheflush , 3)
+       MIPS_SYS(sys_cachectl   , 3)
+       MIPS_SYS(sys_sysmips    , 4)
+       MIPS_SYS(sys_ni_syscall , 0)    /* 4150 */
+       MIPS_SYS(sys_getsid     , 1)
+       MIPS_SYS(sys_fdatasync  , 0)
+       MIPS_SYS(sys_sysctl     , 1)
+       MIPS_SYS(sys_mlock      , 2)
+       MIPS_SYS(sys_munlock    , 2)    /* 4155 */
+       MIPS_SYS(sys_mlockall   , 1)
+       MIPS_SYS(sys_munlockall , 0)
+       MIPS_SYS(sys_sched_setparam, 2)
+       MIPS_SYS(sys_sched_getparam, 2)
+       MIPS_SYS(sys_sched_setscheduler, 3)     /* 4160 */
+       MIPS_SYS(sys_sched_getscheduler, 1)
+       MIPS_SYS(sys_sched_yield        , 0)
+       MIPS_SYS(sys_sched_get_priority_max, 1)
+       MIPS_SYS(sys_sched_get_priority_min, 1)
+       MIPS_SYS(sys_sched_rr_get_interval, 2)  /* 4165 */
+       MIPS_SYS(sys_nanosleep, 2)
+       MIPS_SYS(sys_mremap     , 4)
+       MIPS_SYS(sys_accept     , 3)
+       MIPS_SYS(sys_bind       , 3)
+       MIPS_SYS(sys_connect    , 3)    /* 4170 */
+       MIPS_SYS(sys_getpeername        , 3)
+       MIPS_SYS(sys_getsockname        , 3)
+       MIPS_SYS(sys_getsockopt , 5)
+       MIPS_SYS(sys_listen     , 2)
+       MIPS_SYS(sys_recv       , 4)    /* 4175 */
+       MIPS_SYS(sys_recvfrom   , 6)
+       MIPS_SYS(sys_recvmsg    , 3)
+       MIPS_SYS(sys_send       , 4)
+       MIPS_SYS(sys_sendmsg    , 3)
+       MIPS_SYS(sys_sendto     , 6)    /* 4180 */
+       MIPS_SYS(sys_setsockopt , 5)
+       MIPS_SYS(sys_shutdown   , 2)
+       MIPS_SYS(sys_socket     , 3)
+       MIPS_SYS(sys_socketpair , 4)
+       MIPS_SYS(sys_setresuid  , 3)    /* 4185 */
+       MIPS_SYS(sys_getresuid  , 3)
+       MIPS_SYS(sys_ni_syscall , 0)    /* was sys_query_module */
+       MIPS_SYS(sys_poll       , 3)
+       MIPS_SYS(sys_nfsservctl , 3)
+       MIPS_SYS(sys_setresgid  , 3)    /* 4190 */
+       MIPS_SYS(sys_getresgid  , 3)
+       MIPS_SYS(sys_prctl      , 5)
+       MIPS_SYS(sys_rt_sigreturn, 0)
+       MIPS_SYS(sys_rt_sigaction, 4)
+       MIPS_SYS(sys_rt_sigprocmask, 4) /* 4195 */
+       MIPS_SYS(sys_rt_sigpending, 2)
+       MIPS_SYS(sys_rt_sigtimedwait, 4)
+       MIPS_SYS(sys_rt_sigqueueinfo, 3)
+       MIPS_SYS(sys_rt_sigsuspend, 0)
+       MIPS_SYS(sys_pread64    , 6)    /* 4200 */
+       MIPS_SYS(sys_pwrite64   , 6)
+       MIPS_SYS(sys_chown      , 3)
+       MIPS_SYS(sys_getcwd     , 2)
+       MIPS_SYS(sys_capget     , 2)
+       MIPS_SYS(sys_capset     , 2)    /* 4205 */
+       MIPS_SYS(sys_sigaltstack        , 0)
+       MIPS_SYS(sys_sendfile   , 4)
+       MIPS_SYS(sys_ni_syscall , 0)
+       MIPS_SYS(sys_ni_syscall , 0)
+       MIPS_SYS(sys_mmap2      , 6)    /* 4210 */
+       MIPS_SYS(sys_truncate64 , 4)
+       MIPS_SYS(sys_ftruncate64        , 4)
+       MIPS_SYS(sys_stat64     , 2)
+       MIPS_SYS(sys_lstat64    , 2)
+       MIPS_SYS(sys_fstat64    , 2)    /* 4215 */
+       MIPS_SYS(sys_pivot_root , 2)
+       MIPS_SYS(sys_mincore    , 3)
+       MIPS_SYS(sys_madvise    , 3)
+       MIPS_SYS(sys_getdents64 , 3)
+       MIPS_SYS(sys_fcntl64    , 3)    /* 4220 */
+       MIPS_SYS(sys_ni_syscall , 0)
+       MIPS_SYS(sys_gettid     , 0)
+       MIPS_SYS(sys_readahead  , 5)
+       MIPS_SYS(sys_setxattr   , 5)
+       MIPS_SYS(sys_lsetxattr  , 5)    /* 4225 */
+       MIPS_SYS(sys_fsetxattr  , 5)
+       MIPS_SYS(sys_getxattr   , 4)
+       MIPS_SYS(sys_lgetxattr  , 4)
+       MIPS_SYS(sys_fgetxattr  , 4)
+       MIPS_SYS(sys_listxattr  , 3)    /* 4230 */
+       MIPS_SYS(sys_llistxattr , 3)
+       MIPS_SYS(sys_flistxattr , 3)
+       MIPS_SYS(sys_removexattr        , 2)
+       MIPS_SYS(sys_lremovexattr, 2)
+       MIPS_SYS(sys_fremovexattr, 2)   /* 4235 */
+       MIPS_SYS(sys_tkill      , 2)
+       MIPS_SYS(sys_sendfile64 , 5)
+       MIPS_SYS(sys_futex      , 2)
+       MIPS_SYS(sys_sched_setaffinity, 3)
+       MIPS_SYS(sys_sched_getaffinity, 3)      /* 4240 */
+       MIPS_SYS(sys_io_setup   , 2)
+       MIPS_SYS(sys_io_destroy , 1)
+       MIPS_SYS(sys_io_getevents, 5)
+       MIPS_SYS(sys_io_submit  , 3)
+       MIPS_SYS(sys_io_cancel  , 3)    /* 4245 */
+       MIPS_SYS(sys_exit_group , 1)
+       MIPS_SYS(sys_lookup_dcookie, 3)
+       MIPS_SYS(sys_epoll_create, 1)
+       MIPS_SYS(sys_epoll_ctl  , 4)
+       MIPS_SYS(sys_epoll_wait , 3)    /* 4250 */
+       MIPS_SYS(sys_remap_file_pages, 5)
+       MIPS_SYS(sys_set_tid_address, 1)
+       MIPS_SYS(sys_restart_syscall, 0)
+       MIPS_SYS(sys_fadvise64_64, 7)
+       MIPS_SYS(sys_statfs64   , 3)    /* 4255 */
+       MIPS_SYS(sys_fstatfs64  , 2)
+       MIPS_SYS(sys_timer_create, 3)
+       MIPS_SYS(sys_timer_settime, 4)
+       MIPS_SYS(sys_timer_gettime, 2)
+       MIPS_SYS(sys_timer_getoverrun, 1)       /* 4260 */
+       MIPS_SYS(sys_timer_delete, 1)
+       MIPS_SYS(sys_clock_settime, 2)
+       MIPS_SYS(sys_clock_gettime, 2)
+       MIPS_SYS(sys_clock_getres, 2)
+       MIPS_SYS(sys_clock_nanosleep, 4)        /* 4265 */
+       MIPS_SYS(sys_tgkill     , 3)
+       MIPS_SYS(sys_utimes     , 2)
+       MIPS_SYS(sys_mbind      , 4)
+       MIPS_SYS(sys_ni_syscall , 0)    /* sys_get_mempolicy */
+       MIPS_SYS(sys_ni_syscall , 0)    /* 4270 sys_set_mempolicy */
+       MIPS_SYS(sys_mq_open    , 4)
+       MIPS_SYS(sys_mq_unlink  , 1)
+       MIPS_SYS(sys_mq_timedsend, 5)
+       MIPS_SYS(sys_mq_timedreceive, 5)
+       MIPS_SYS(sys_mq_notify  , 2)    /* 4275 */
+       MIPS_SYS(sys_mq_getsetattr, 3)
+       MIPS_SYS(sys_ni_syscall , 0)    /* sys_vserver */
+       MIPS_SYS(sys_waitid     , 4)
+       MIPS_SYS(sys_ni_syscall , 0)    /* available, was setaltroot */
+       MIPS_SYS(sys_add_key    , 5)
+       MIPS_SYS(sys_request_key        , 4)
+       MIPS_SYS(sys_keyctl     , 5)
+};
+
+#undef MIPS_SYS
+
+void cpu_loop(CPUMIPSState *env)
+{
+    target_siginfo_t info;
+    int trapnr, ret, nb_args;
+    unsigned int syscall_num;
+    target_ulong arg5, arg6, sp_reg;
+
+    for(;;) {
+        trapnr = cpu_mips_exec(env);
+        switch(trapnr) {
+        case EXCP_SYSCALL:
+            {
+                syscall_num = env->gpr[2] - 4000;
+                if (syscall_num >= sizeof(mips_syscall_args)) {
+                    ret = -ENOSYS;
+                } else {
+                    nb_args = mips_syscall_args[syscall_num];
+                    if (nb_args >= 5) {
+                        sp_reg = env->gpr[29];
+                        /* these arguments are taken from the stack */
+                        arg5 = tgetl(sp_reg + 16);
+                        if (nb_args >= 6) {
+                            arg6 = tgetl(sp_reg + 20);
+                        } else {
+                            arg6 = 0;
+                        }
+                    } else {
+                        arg5 = 0;
+                        arg6 = 0;
+                    }
+                    ret = do_syscall(env, 
+                                     env->gpr[2], 
+                                     env->gpr[4],
+                                     env->gpr[5],
+                                     env->gpr[6],
+                                     env->gpr[7],
+                                     arg5, 
+                                     arg6);
+                }
+                env->PC += 4;
+                if ((unsigned int)ret >= (unsigned int)(-1133)) {
+                    env->gpr[7] = 1; /* error flag */
+                    ret = -ret;
+                    env->gpr[0] = ret;
+                    env->gpr[2] = ret;
+                } else {
+                    env->gpr[7] = 0; /* error flag */
+                    env->gpr[2] = ret;
+                }
+            }
+            break;
+        case EXCP_CpU:
+        case EXCP_RI:
+            info.si_signo = TARGET_SIGILL;
+            info.si_errno = 0;
+            info.si_code = 0;
+            queue_signal(info.si_signo, &info);
+            break;
+        default:
+            //        error:
+            fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n", 
+                    trapnr);
+            cpu_dump_state(env, stderr, fprintf, 0);
+            abort();
+        }
+        process_pending_signals(env);
+    }
+}
+#endif
+
+#ifdef TARGET_SH4
+void cpu_loop (CPUState *env)
+{
+    int trapnr, ret;
+    target_siginfo_t info;
+    
+    while (1) {
+        trapnr = cpu_sh4_exec (env);
+        
+        switch (trapnr) {
+        case 0x160:
+            ret = do_syscall(env, 
+                             env->gregs[0x13], 
+                             env->gregs[0x14], 
+                             env->gregs[0x15], 
+                             env->gregs[0x16], 
+                             env->gregs[0x17], 
+                             env->gregs[0x10], 
+                             0);
+            env->gregs[0x10] = ret;
+            env->pc += 2;
+            break;
+        case EXCP_DEBUG:
+            {
+                int sig;
+
+                sig = gdb_handlesig (env, TARGET_SIGTRAP);
+                if (sig)
+                  {
+                    info.si_signo = sig;
+                    info.si_errno = 0;
+                    info.si_code = TARGET_TRAP_BRKPT;
+                    queue_signal(info.si_signo, &info);
+                  }
+            }
+            break;
+        default:
+            printf ("Unhandled trap: 0x%x\n", trapnr);
+            cpu_dump_state(env, stderr, fprintf, 0);
+            exit (1);
+        }
+        process_pending_signals (env);
+    }
+}
+#endif
+
 void usage(void)
 {
-    printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2004 Fabrice Bellard\n"
+    printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2005 Fabrice Bellard\n"
            "usage: qemu-" TARGET_ARCH " [-h] [-g] [-d opts] [-L path] [-s size] program [arguments...]\n"
            "Linux CPU emulator (compiled for %s emulation)\n"
            "\n"
            "-h           print this help\n"
-           "-g           wait gdb connection to port %d\n"
+           "-g port      wait gdb connection to port\n"
            "-L path      set the elf interpreter prefix (default=%s)\n"
            "-s size      set the stack size in bytes (default=%ld)\n"
            "\n"
@@ -1017,7 +1422,6 @@ void usage(void)
            "-d options   activate log (logfile=%s)\n"
            "-p pagesize  set the host page size to 'pagesize'\n",
            TARGET_ARCH,
-           DEFAULT_GDBSTUB_PORT,
            interp_prefix, 
            x86_stack_size,
            DEBUG_LOGFILE);
@@ -1026,8 +1430,6 @@ void usage(void)
 
 /* XXX: currently only used for async signals (see signal.c) */
 CPUState *global_env;
-/* used only if single thread */
-CPUState *cpu_single_env = NULL;
 
 /* used to free thread contexts */
 TaskState *first_task_state;
@@ -1041,7 +1443,7 @@ int main(int argc, char **argv)
     CPUState *env;
     int optind;
     const char *r;
-    int use_gdbstub = 0;
+    int gdbstub_port = 0;
     
     if (argc <= 1)
         usage();
@@ -1096,7 +1498,9 @@ int main(int argc, char **argv)
                 exit(1);
             }
         } else if (!strcmp(r, "g")) {
-            use_gdbstub = 1;
+            gdbstub_port = atoi(argv[optind++]);
+       } else if (!strcmp(r, "r")) {
+           qemu_uname_release = argv[optind++];
         } else 
 #ifdef USE_CODE_COPY
         if (!strcmp(r, "no-code-copy")) {
@@ -1123,8 +1527,9 @@ int main(int argc, char **argv)
     /* NOTE: we need to init the CPU at this stage to get
        qemu_host_page_size */
     env = cpu_init();
+    global_env = env;
     
-    if (elf_exec(filename, argv+optind, environ, regs, info) != 0) {
+    if (loader_exec(filename, argv+optind, environ, regs, info) != 0) {
        printf("Error loading %s\n", filename);
        _exit(1);
     }
@@ -1135,22 +1540,22 @@ int main(int argc, char **argv)
         fprintf(logfile, "start_brk   0x%08lx\n" , info->start_brk);
         fprintf(logfile, "end_code    0x%08lx\n" , info->end_code);
         fprintf(logfile, "start_code  0x%08lx\n" , info->start_code);
+        fprintf(logfile, "start_data  0x%08lx\n" , info->start_data);
         fprintf(logfile, "end_data    0x%08lx\n" , info->end_data);
         fprintf(logfile, "start_stack 0x%08lx\n" , info->start_stack);
         fprintf(logfile, "brk         0x%08lx\n" , info->brk);
         fprintf(logfile, "entry       0x%08lx\n" , info->entry);
     }
 
-    target_set_brk((char *)info->brk);
+    target_set_brk(info->brk);
     syscall_init();
     signal_init();
 
-    global_env = env;
-
     /* build Task State */
     memset(ts, 0, sizeof(TaskState));
     env->opaque = ts;
     ts->used = 1;
+    ts->info = info;
     env->user_mode_only = 1;
     
 #if defined(TARGET_I386)
@@ -1178,7 +1583,7 @@ int main(int argc, char **argv)
     env->eip = regs->eip;
 
     /* linux interrupt setup */
-    env->idt.base = (long)idt_table;
+    env->idt.base = h2g(idt_table);
     env->idt.limit = sizeof(idt_table) - 1;
     set_idt(0, 0);
     set_idt(1, 0);
@@ -1203,7 +1608,7 @@ int main(int argc, char **argv)
     set_idt(0x80, 3);
 
     /* linux segment setup */
-    env->gdt.base = (long)gdt_table;
+    env->gdt.base = h2g(gdt_table);
     env->gdt.limit = sizeof(gdt_table) - 1;
     write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
              DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK | 
@@ -1221,10 +1626,11 @@ int main(int argc, char **argv)
 #elif defined(TARGET_ARM)
     {
         int i;
+        cpu_arm_set_model(env, ARM_CPUID_ARM1026);
+        cpsr_write(env, regs->uregs[16], 0xffffffff);
         for(i = 0; i < 16; i++) {
             env->regs[i] = regs->uregs[i];
         }
-        env->cpsr = regs->uregs[16];
         ts->stack_base = info->start_stack;
         ts->heap_base = info->brk;
         /* This will be filled in on the first SYS_HEAPINFO call.  */
@@ -1243,7 +1649,25 @@ int main(int argc, char **argv)
     }
 #elif defined(TARGET_PPC)
     {
+        ppc_def_t *def;
         int i;
+
+        /* Choose and initialise CPU */
+        /* XXX: CPU model (or PVR) should be provided on command line */
+        //        ppc_find_by_name("750gx", &def);
+        //        ppc_find_by_name("750fx", &def);
+        //        ppc_find_by_name("750p", &def);
+        ppc_find_by_name("750", &def);
+        //        ppc_find_by_name("G3", &def);
+        //        ppc_find_by_name("604r", &def);
+        //        ppc_find_by_name("604e", &def);
+        //        ppc_find_by_name("604", &def);
+        if (def == NULL) {
+            cpu_abort(env,
+                      "Unable to find PowerPC CPU definition\n");
+        }
+        cpu_ppc_register(env, def);
+
         for (i = 0; i < 32; i++) {
             if (i != 12 && i != 6 && i != 13)
                 env->msr[i] = (regs->msr >> i) & 1;
@@ -1253,12 +1677,33 @@ int main(int argc, char **argv)
             env->gpr[i] = regs->gpr[i];
         }
     }
+#elif defined(TARGET_MIPS)
+    {
+        int i;
+
+        for(i = 0; i < 32; i++) {
+            env->gpr[i] = regs->regs[i];
+        }
+        env->PC = regs->cp0_epc;
+#ifdef MIPS_USES_FPU
+        env->CP0_Status |= (1 << CP0St_CU1);
+#endif
+    }
+#elif defined(TARGET_SH4)
+    {
+        int i;
+
+        for(i = 0; i < 16; i++) {
+            env->gregs[i] = regs->regs[i];
+        }
+        env->pc = regs->pc;
+    }
 #else
 #error unsupported target CPU
 #endif
 
-    if (use_gdbstub) {
-        gdbserver_start (DEFAULT_GDBSTUB_PORT);
+    if (gdbstub_port) {
+        gdbserver_start (gdbstub_port);
         gdb_handlesig(env, 0);
     }
     cpu_loop(env);