4 * Copyright (c) 2003-2008 Fabrice Bellard
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.
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.
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/>.
26 #include <sys/syscall.h>
29 #include "qemu-common.h"
30 #include "cache-utils.h"
37 #define DEBUG_LOGFILE "/tmp/qemu.log"
42 #if defined(CONFIG_USE_GUEST_BASE)
43 unsigned long mmap_min_addr
;
44 unsigned long guest_base
;
48 static const char *interp_prefix
= CONFIG_QEMU_PREFIX
;
49 const char *qemu_uname_release
= CONFIG_UNAME_RELEASE
;
51 /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
52 we allocate a bigger stack. Need a better solution, for example
53 by remapping the process stack directly at the right place */
54 unsigned long x86_stack_size
= 512 * 1024;
56 void gemu_log(const char *fmt
, ...)
61 vfprintf(stderr
, fmt
, ap
);
65 #if defined(TARGET_I386)
66 int cpu_get_pic_interrupt(CPUState
*env
)
72 /* timers for rdtsc */
76 static uint64_t emu_time
;
78 int64_t cpu_get_real_ticks(void)
85 #if defined(CONFIG_USE_NPTL)
86 /***********************************************************/
87 /* Helper routines for implementing atomic operations. */
89 /* To implement exclusive operations we force all cpus to syncronise.
90 We don't require a full sync, only that no cpus are executing guest code.
91 The alternative is to map target atomic ops onto host equivalents,
92 which requires quite a lot of per host/target work. */
93 static pthread_mutex_t cpu_list_mutex
= PTHREAD_MUTEX_INITIALIZER
;
94 static pthread_mutex_t exclusive_lock
= PTHREAD_MUTEX_INITIALIZER
;
95 static pthread_cond_t exclusive_cond
= PTHREAD_COND_INITIALIZER
;
96 static pthread_cond_t exclusive_resume
= PTHREAD_COND_INITIALIZER
;
97 static int pending_cpus
;
99 /* Make sure everything is in a consistent state for calling fork(). */
100 void fork_start(void)
102 pthread_mutex_lock(&tb_lock
);
103 pthread_mutex_lock(&exclusive_lock
);
107 void fork_end(int child
)
109 mmap_fork_end(child
);
111 /* Child processes created by fork() only have a single thread.
112 Discard information about the parent threads. */
113 first_cpu
= thread_env
;
114 thread_env
->next_cpu
= NULL
;
116 pthread_mutex_init(&exclusive_lock
, NULL
);
117 pthread_mutex_init(&cpu_list_mutex
, NULL
);
118 pthread_cond_init(&exclusive_cond
, NULL
);
119 pthread_cond_init(&exclusive_resume
, NULL
);
120 pthread_mutex_init(&tb_lock
, NULL
);
121 gdbserver_fork(thread_env
);
123 pthread_mutex_unlock(&exclusive_lock
);
124 pthread_mutex_unlock(&tb_lock
);
128 /* Wait for pending exclusive operations to complete. The exclusive lock
130 static inline void exclusive_idle(void)
132 while (pending_cpus
) {
133 pthread_cond_wait(&exclusive_resume
, &exclusive_lock
);
137 /* Start an exclusive operation.
138 Must only be called from outside cpu_arm_exec. */
139 static inline void start_exclusive(void)
142 pthread_mutex_lock(&exclusive_lock
);
146 /* Make all other cpus stop executing. */
147 for (other
= first_cpu
; other
; other
= other
->next_cpu
) {
148 if (other
->running
) {
153 if (pending_cpus
> 1) {
154 pthread_cond_wait(&exclusive_cond
, &exclusive_lock
);
158 /* Finish an exclusive operation. */
159 static inline void end_exclusive(void)
162 pthread_cond_broadcast(&exclusive_resume
);
163 pthread_mutex_unlock(&exclusive_lock
);
166 /* Wait for exclusive ops to finish, and begin cpu execution. */
167 static inline void cpu_exec_start(CPUState
*env
)
169 pthread_mutex_lock(&exclusive_lock
);
172 pthread_mutex_unlock(&exclusive_lock
);
175 /* Mark cpu as not executing, and release pending exclusive ops. */
176 static inline void cpu_exec_end(CPUState
*env
)
178 pthread_mutex_lock(&exclusive_lock
);
180 if (pending_cpus
> 1) {
182 if (pending_cpus
== 1) {
183 pthread_cond_signal(&exclusive_cond
);
187 pthread_mutex_unlock(&exclusive_lock
);
190 void cpu_list_lock(void)
192 pthread_mutex_lock(&cpu_list_mutex
);
195 void cpu_list_unlock(void)
197 pthread_mutex_unlock(&cpu_list_mutex
);
199 #else /* if !CONFIG_USE_NPTL */
200 /* These are no-ops because we are not threadsafe. */
201 static inline void cpu_exec_start(CPUState
*env
)
205 static inline void cpu_exec_end(CPUState
*env
)
209 static inline void start_exclusive(void)
213 static inline void end_exclusive(void)
217 void fork_start(void)
221 void fork_end(int child
)
224 gdbserver_fork(thread_env
);
228 void cpu_list_lock(void)
232 void cpu_list_unlock(void)
239 /***********************************************************/
240 /* CPUX86 core interface */
242 void cpu_smm_update(CPUState
*env
)
246 uint64_t cpu_get_tsc(CPUX86State
*env
)
248 return cpu_get_real_ticks();
251 static void write_dt(void *ptr
, unsigned long addr
, unsigned long limit
,
256 e1
= (addr
<< 16) | (limit
& 0xffff);
257 e2
= ((addr
>> 16) & 0xff) | (addr
& 0xff000000) | (limit
& 0x000f0000);
264 static uint64_t *idt_table
;
266 static void set_gate64(void *ptr
, unsigned int type
, unsigned int dpl
,
267 uint64_t addr
, unsigned int sel
)
270 e1
= (addr
& 0xffff) | (sel
<< 16);
271 e2
= (addr
& 0xffff0000) | 0x8000 | (dpl
<< 13) | (type
<< 8);
275 p
[2] = tswap32(addr
>> 32);
278 /* only dpl matters as we do only user space emulation */
279 static void set_idt(int n
, unsigned int dpl
)
281 set_gate64(idt_table
+ n
* 2, 0, dpl
, 0, 0);
284 static void set_gate(void *ptr
, unsigned int type
, unsigned int dpl
,
285 uint32_t addr
, unsigned int sel
)
288 e1
= (addr
& 0xffff) | (sel
<< 16);
289 e2
= (addr
& 0xffff0000) | 0x8000 | (dpl
<< 13) | (type
<< 8);
295 /* only dpl matters as we do only user space emulation */
296 static void set_idt(int n
, unsigned int dpl
)
298 set_gate(idt_table
+ n
, 0, dpl
, 0, 0);
302 void cpu_loop(CPUX86State
*env
)
306 target_siginfo_t info
;
309 trapnr
= cpu_x86_exec(env
);
312 /* linux syscall from int $0x80 */
313 env
->regs
[R_EAX
] = do_syscall(env
,
324 /* linux syscall from syscall intruction */
325 env
->regs
[R_EAX
] = do_syscall(env
,
333 env
->eip
= env
->exception_next_eip
;
338 info
.si_signo
= SIGBUS
;
340 info
.si_code
= TARGET_SI_KERNEL
;
341 info
._sifields
._sigfault
._addr
= 0;
342 queue_signal(env
, info
.si_signo
, &info
);
345 /* XXX: potential problem if ABI32 */
346 #ifndef TARGET_X86_64
347 if (env
->eflags
& VM_MASK
) {
348 handle_vm86_fault(env
);
352 info
.si_signo
= SIGSEGV
;
354 info
.si_code
= TARGET_SI_KERNEL
;
355 info
._sifields
._sigfault
._addr
= 0;
356 queue_signal(env
, info
.si_signo
, &info
);
360 info
.si_signo
= SIGSEGV
;
362 if (!(env
->error_code
& 1))
363 info
.si_code
= TARGET_SEGV_MAPERR
;
365 info
.si_code
= TARGET_SEGV_ACCERR
;
366 info
._sifields
._sigfault
._addr
= env
->cr
[2];
367 queue_signal(env
, info
.si_signo
, &info
);
370 #ifndef TARGET_X86_64
371 if (env
->eflags
& VM_MASK
) {
372 handle_vm86_trap(env
, trapnr
);
376 /* division by zero */
377 info
.si_signo
= SIGFPE
;
379 info
.si_code
= TARGET_FPE_INTDIV
;
380 info
._sifields
._sigfault
._addr
= env
->eip
;
381 queue_signal(env
, info
.si_signo
, &info
);
386 #ifndef TARGET_X86_64
387 if (env
->eflags
& VM_MASK
) {
388 handle_vm86_trap(env
, trapnr
);
392 info
.si_signo
= SIGTRAP
;
394 if (trapnr
== EXCP01_DB
) {
395 info
.si_code
= TARGET_TRAP_BRKPT
;
396 info
._sifields
._sigfault
._addr
= env
->eip
;
398 info
.si_code
= TARGET_SI_KERNEL
;
399 info
._sifields
._sigfault
._addr
= 0;
401 queue_signal(env
, info
.si_signo
, &info
);
406 #ifndef TARGET_X86_64
407 if (env
->eflags
& VM_MASK
) {
408 handle_vm86_trap(env
, trapnr
);
412 info
.si_signo
= SIGSEGV
;
414 info
.si_code
= TARGET_SI_KERNEL
;
415 info
._sifields
._sigfault
._addr
= 0;
416 queue_signal(env
, info
.si_signo
, &info
);
420 info
.si_signo
= SIGILL
;
422 info
.si_code
= TARGET_ILL_ILLOPN
;
423 info
._sifields
._sigfault
._addr
= env
->eip
;
424 queue_signal(env
, info
.si_signo
, &info
);
427 /* just indicate that signals should be handled asap */
433 sig
= gdb_handlesig (env
, TARGET_SIGTRAP
);
438 info
.si_code
= TARGET_TRAP_BRKPT
;
439 queue_signal(env
, info
.si_signo
, &info
);
444 pc
= env
->segs
[R_CS
].base
+ env
->eip
;
445 fprintf(stderr
, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
449 process_pending_signals(env
);
456 static void arm_cache_flush(abi_ulong start
, abi_ulong last
)
458 abi_ulong addr
, last1
;
464 last1
= ((addr
+ TARGET_PAGE_SIZE
) & TARGET_PAGE_MASK
) - 1;
467 tb_invalidate_page_range(addr
, last1
+ 1);
474 /* Handle a jump to the kernel code page. */
476 do_kernel_trap(CPUARMState
*env
)
482 switch (env
->regs
[15]) {
483 case 0xffff0fa0: /* __kernel_memory_barrier */
484 /* ??? No-op. Will need to do better for SMP. */
486 case 0xffff0fc0: /* __kernel_cmpxchg */
487 /* XXX: This only works between threads, not between processes.
488 It's probably possible to implement this with native host
489 operations. However things like ldrex/strex are much harder so
490 there's not much point trying. */
492 cpsr
= cpsr_read(env
);
494 /* FIXME: This should SEGV if the access fails. */
495 if (get_user_u32(val
, addr
))
497 if (val
== env
->regs
[0]) {
499 /* FIXME: Check for segfaults. */
500 put_user_u32(val
, addr
);
507 cpsr_write(env
, cpsr
, CPSR_C
);
510 case 0xffff0fe0: /* __kernel_get_tls */
511 env
->regs
[0] = env
->cp15
.c13_tls2
;
516 /* Jump back to the caller. */
517 addr
= env
->regs
[14];
522 env
->regs
[15] = addr
;
527 static int do_strex(CPUARMState
*env
)
535 addr
= env
->exclusive_addr
;
536 if (addr
!= env
->exclusive_test
) {
539 size
= env
->exclusive_info
& 0xf;
542 segv
= get_user_u8(val
, addr
);
545 segv
= get_user_u16(val
, addr
);
549 segv
= get_user_u32(val
, addr
);
555 env
->cp15
.c6_data
= addr
;
558 if (val
!= env
->exclusive_val
) {
562 segv
= get_user_u32(val
, addr
+ 4);
564 env
->cp15
.c6_data
= addr
+ 4;
567 if (val
!= env
->exclusive_high
) {
571 val
= env
->regs
[(env
->exclusive_info
>> 8) & 0xf];
574 segv
= put_user_u8(val
, addr
);
577 segv
= put_user_u16(val
, addr
);
581 segv
= put_user_u32(val
, addr
);
585 env
->cp15
.c6_data
= addr
;
589 val
= env
->regs
[(env
->exclusive_info
>> 12) & 0xf];
590 segv
= put_user_u32(val
, addr
);
592 env
->cp15
.c6_data
= addr
+ 4;
599 env
->regs
[(env
->exclusive_info
>> 4) & 0xf] = rc
;
605 void cpu_loop(CPUARMState
*env
)
608 unsigned int n
, insn
;
609 target_siginfo_t info
;
614 trapnr
= cpu_arm_exec(env
);
619 TaskState
*ts
= env
->opaque
;
623 /* we handle the FPU emulation here, as Linux */
624 /* we get the opcode */
625 /* FIXME - what to do if get_user() fails? */
626 get_user_u32(opcode
, env
->regs
[15]);
628 rc
= EmulateAll(opcode
, &ts
->fpa
, env
);
629 if (rc
== 0) { /* illegal instruction */
630 info
.si_signo
= SIGILL
;
632 info
.si_code
= TARGET_ILL_ILLOPN
;
633 info
._sifields
._sigfault
._addr
= env
->regs
[15];
634 queue_signal(env
, info
.si_signo
, &info
);
635 } else if (rc
< 0) { /* FP exception */
638 /* translate softfloat flags to FPSR flags */
639 if (-rc
& float_flag_invalid
)
641 if (-rc
& float_flag_divbyzero
)
643 if (-rc
& float_flag_overflow
)
645 if (-rc
& float_flag_underflow
)
647 if (-rc
& float_flag_inexact
)
650 FPSR fpsr
= ts
->fpa
.fpsr
;
651 //printf("fpsr 0x%x, arm_fpe 0x%x\n",fpsr,arm_fpe);
653 if (fpsr
& (arm_fpe
<< 16)) { /* exception enabled? */
654 info
.si_signo
= SIGFPE
;
657 /* ordered by priority, least first */
658 if (arm_fpe
& BIT_IXC
) info
.si_code
= TARGET_FPE_FLTRES
;
659 if (arm_fpe
& BIT_UFC
) info
.si_code
= TARGET_FPE_FLTUND
;
660 if (arm_fpe
& BIT_OFC
) info
.si_code
= TARGET_FPE_FLTOVF
;
661 if (arm_fpe
& BIT_DZC
) info
.si_code
= TARGET_FPE_FLTDIV
;
662 if (arm_fpe
& BIT_IOC
) info
.si_code
= TARGET_FPE_FLTINV
;
664 info
._sifields
._sigfault
._addr
= env
->regs
[15];
665 queue_signal(env
, info
.si_signo
, &info
);
670 /* accumulate unenabled exceptions */
671 if ((!(fpsr
& BIT_IXE
)) && (arm_fpe
& BIT_IXC
))
673 if ((!(fpsr
& BIT_UFE
)) && (arm_fpe
& BIT_UFC
))
675 if ((!(fpsr
& BIT_OFE
)) && (arm_fpe
& BIT_OFC
))
677 if ((!(fpsr
& BIT_DZE
)) && (arm_fpe
& BIT_DZC
))
679 if ((!(fpsr
& BIT_IOE
)) && (arm_fpe
& BIT_IOC
))
682 } else { /* everything OK */
693 if (trapnr
== EXCP_BKPT
) {
695 /* FIXME - what to do if get_user() fails? */
696 get_user_u16(insn
, env
->regs
[15]);
700 /* FIXME - what to do if get_user() fails? */
701 get_user_u32(insn
, env
->regs
[15]);
702 n
= (insn
& 0xf) | ((insn
>> 4) & 0xff0);
707 /* FIXME - what to do if get_user() fails? */
708 get_user_u16(insn
, env
->regs
[15] - 2);
711 /* FIXME - what to do if get_user() fails? */
712 get_user_u32(insn
, env
->regs
[15] - 4);
717 if (n
== ARM_NR_cacheflush
) {
718 arm_cache_flush(env
->regs
[0], env
->regs
[1]);
719 } else if (n
== ARM_NR_semihosting
720 || n
== ARM_NR_thumb_semihosting
) {
721 env
->regs
[0] = do_arm_semihosting (env
);
722 } else if (n
== 0 || n
>= ARM_SYSCALL_BASE
723 || (env
->thumb
&& n
== ARM_THUMB_SYSCALL
)) {
725 if (env
->thumb
|| n
== 0) {
728 n
-= ARM_SYSCALL_BASE
;
731 if ( n
> ARM_NR_BASE
) {
733 case ARM_NR_cacheflush
:
734 arm_cache_flush(env
->regs
[0], env
->regs
[1]);
737 cpu_set_tls(env
, env
->regs
[0]);
741 gemu_log("qemu: Unsupported ARM syscall: 0x%x\n",
743 env
->regs
[0] = -TARGET_ENOSYS
;
747 env
->regs
[0] = do_syscall(env
,
762 /* just indicate that signals should be handled asap */
764 case EXCP_PREFETCH_ABORT
:
765 addr
= env
->cp15
.c6_insn
;
767 case EXCP_DATA_ABORT
:
768 addr
= env
->cp15
.c6_data
;
772 info
.si_signo
= SIGSEGV
;
774 /* XXX: check env->error_code */
775 info
.si_code
= TARGET_SEGV_MAPERR
;
776 info
._sifields
._sigfault
._addr
= addr
;
777 queue_signal(env
, info
.si_signo
, &info
);
784 sig
= gdb_handlesig (env
, TARGET_SIGTRAP
);
789 info
.si_code
= TARGET_TRAP_BRKPT
;
790 queue_signal(env
, info
.si_signo
, &info
);
794 case EXCP_KERNEL_TRAP
:
795 if (do_kernel_trap(env
))
800 addr
= env
->cp15
.c6_data
;
806 fprintf(stderr
, "qemu: unhandled CPU exception 0x%x - aborting\n",
808 cpu_dump_state(env
, stderr
, fprintf
, 0);
811 process_pending_signals(env
);
818 #define SPARC64_STACK_BIAS 2047
822 /* WARNING: dealing with register windows _is_ complicated. More info
823 can be found at http://www.sics.se/~psm/sparcstack.html */
824 static inline int get_reg_index(CPUSPARCState
*env
, int cwp
, int index
)
826 index
= (index
+ cwp
* 16) % (16 * env
->nwindows
);
827 /* wrap handling : if cwp is on the last window, then we use the
828 registers 'after' the end */
829 if (index
< 8 && env
->cwp
== env
->nwindows
- 1)
830 index
+= 16 * env
->nwindows
;
834 /* save the register window 'cwp1' */
835 static inline void save_window_offset(CPUSPARCState
*env
, int cwp1
)
840 sp_ptr
= env
->regbase
[get_reg_index(env
, cwp1
, 6)];
841 #ifdef TARGET_SPARC64
843 sp_ptr
+= SPARC64_STACK_BIAS
;
845 #if defined(DEBUG_WIN)
846 printf("win_overflow: sp_ptr=0x" TARGET_ABI_FMT_lx
" save_cwp=%d\n",
849 for(i
= 0; i
< 16; i
++) {
850 /* FIXME - what to do if put_user() fails? */
851 put_user_ual(env
->regbase
[get_reg_index(env
, cwp1
, 8 + i
)], sp_ptr
);
852 sp_ptr
+= sizeof(abi_ulong
);
856 static void save_window(CPUSPARCState
*env
)
858 #ifndef TARGET_SPARC64
859 unsigned int new_wim
;
860 new_wim
= ((env
->wim
>> 1) | (env
->wim
<< (env
->nwindows
- 1))) &
861 ((1LL << env
->nwindows
) - 1);
862 save_window_offset(env
, cpu_cwp_dec(env
, env
->cwp
- 2));
865 save_window_offset(env
, cpu_cwp_dec(env
, env
->cwp
- 2));
871 static void restore_window(CPUSPARCState
*env
)
873 #ifndef TARGET_SPARC64
874 unsigned int new_wim
;
876 unsigned int i
, cwp1
;
879 #ifndef TARGET_SPARC64
880 new_wim
= ((env
->wim
<< 1) | (env
->wim
>> (env
->nwindows
- 1))) &
881 ((1LL << env
->nwindows
) - 1);
884 /* restore the invalid window */
885 cwp1
= cpu_cwp_inc(env
, env
->cwp
+ 1);
886 sp_ptr
= env
->regbase
[get_reg_index(env
, cwp1
, 6)];
887 #ifdef TARGET_SPARC64
889 sp_ptr
+= SPARC64_STACK_BIAS
;
891 #if defined(DEBUG_WIN)
892 printf("win_underflow: sp_ptr=0x" TARGET_ABI_FMT_lx
" load_cwp=%d\n",
895 for(i
= 0; i
< 16; i
++) {
896 /* FIXME - what to do if get_user() fails? */
897 get_user_ual(env
->regbase
[get_reg_index(env
, cwp1
, 8 + i
)], sp_ptr
);
898 sp_ptr
+= sizeof(abi_ulong
);
900 #ifdef TARGET_SPARC64
902 if (env
->cleanwin
< env
->nwindows
- 1)
910 static void flush_windows(CPUSPARCState
*env
)
916 /* if restore would invoke restore_window(), then we can stop */
917 cwp1
= cpu_cwp_inc(env
, env
->cwp
+ offset
);
918 #ifndef TARGET_SPARC64
919 if (env
->wim
& (1 << cwp1
))
922 if (env
->canrestore
== 0)
927 save_window_offset(env
, cwp1
);
930 cwp1
= cpu_cwp_inc(env
, env
->cwp
+ 1);
931 #ifndef TARGET_SPARC64
932 /* set wim so that restore will reload the registers */
933 env
->wim
= 1 << cwp1
;
935 #if defined(DEBUG_WIN)
936 printf("flush_windows: nb=%d\n", offset
- 1);
940 void cpu_loop (CPUSPARCState
*env
)
943 target_siginfo_t info
;
946 trapnr
= cpu_sparc_exec (env
);
949 #ifndef TARGET_SPARC64
956 ret
= do_syscall (env
, env
->gregs
[1],
957 env
->regwptr
[0], env
->regwptr
[1],
958 env
->regwptr
[2], env
->regwptr
[3],
959 env
->regwptr
[4], env
->regwptr
[5]);
960 if ((unsigned int)ret
>= (unsigned int)(-515)) {
961 #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
962 env
->xcc
|= PSR_CARRY
;
964 env
->psr
|= PSR_CARRY
;
968 #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
969 env
->xcc
&= ~PSR_CARRY
;
971 env
->psr
&= ~PSR_CARRY
;
974 env
->regwptr
[0] = ret
;
975 /* next instruction */
977 env
->npc
= env
->npc
+ 4;
979 case 0x83: /* flush windows */
984 /* next instruction */
986 env
->npc
= env
->npc
+ 4;
988 #ifndef TARGET_SPARC64
989 case TT_WIN_OVF
: /* window overflow */
992 case TT_WIN_UNF
: /* window underflow */
998 info
.si_signo
= SIGSEGV
;
1000 /* XXX: check env->error_code */
1001 info
.si_code
= TARGET_SEGV_MAPERR
;
1002 info
._sifields
._sigfault
._addr
= env
->mmuregs
[4];
1003 queue_signal(env
, info
.si_signo
, &info
);
1007 case TT_SPILL
: /* window overflow */
1010 case TT_FILL
: /* window underflow */
1011 restore_window(env
);
1016 info
.si_signo
= SIGSEGV
;
1018 /* XXX: check env->error_code */
1019 info
.si_code
= TARGET_SEGV_MAPERR
;
1020 if (trapnr
== TT_DFAULT
)
1021 info
._sifields
._sigfault
._addr
= env
->dmmuregs
[4];
1023 info
._sifields
._sigfault
._addr
= cpu_tsptr(env
)->tpc
;
1024 queue_signal(env
, info
.si_signo
, &info
);
1027 #ifndef TARGET_ABI32
1030 sparc64_get_context(env
);
1034 sparc64_set_context(env
);
1038 case EXCP_INTERRUPT
:
1039 /* just indicate that signals should be handled asap */
1045 sig
= gdb_handlesig (env
, TARGET_SIGTRAP
);
1048 info
.si_signo
= sig
;
1050 info
.si_code
= TARGET_TRAP_BRKPT
;
1051 queue_signal(env
, info
.si_signo
, &info
);
1056 printf ("Unhandled trap: 0x%x\n", trapnr
);
1057 cpu_dump_state(env
, stderr
, fprintf
, 0);
1060 process_pending_signals (env
);
1067 static inline uint64_t cpu_ppc_get_tb (CPUState
*env
)
1073 uint64_t cpu_ppc_load_tbl (CPUState
*env
)
1075 return cpu_ppc_get_tb(env
);
1078 uint32_t cpu_ppc_load_tbu (CPUState
*env
)
1080 return cpu_ppc_get_tb(env
) >> 32;
1083 uint64_t cpu_ppc_load_atbl (CPUState
*env
)
1085 return cpu_ppc_get_tb(env
);
1088 uint32_t cpu_ppc_load_atbu (CPUState
*env
)
1090 return cpu_ppc_get_tb(env
) >> 32;
1093 uint32_t cpu_ppc601_load_rtcu (CPUState
*env
)
1094 __attribute__ (( alias ("cpu_ppc_load_tbu") ));
1096 uint32_t cpu_ppc601_load_rtcl (CPUState
*env
)
1098 return cpu_ppc_load_tbl(env
) & 0x3FFFFF80;
1101 /* XXX: to be fixed */
1102 int ppc_dcr_read (ppc_dcr_t
*dcr_env
, int dcrn
, uint32_t *valp
)
1107 int ppc_dcr_write (ppc_dcr_t
*dcr_env
, int dcrn
, uint32_t val
)
1112 #define EXCP_DUMP(env, fmt, ...) \
1114 fprintf(stderr, fmt , ## __VA_ARGS__); \
1115 cpu_dump_state(env, stderr, fprintf, 0); \
1116 qemu_log(fmt, ## __VA_ARGS__); \
1118 log_cpu_state(env, 0); \
1121 static int do_store_exclusive(CPUPPCState
*env
)
1124 target_ulong page_addr
;
1129 addr
= env
->reserve_ea
;
1130 page_addr
= addr
& TARGET_PAGE_MASK
;
1133 flags
= page_get_flags(page_addr
);
1134 if ((flags
& PAGE_READ
) == 0) {
1137 int reg
= env
->reserve_info
& 0x1f;
1138 int size
= (env
->reserve_info
>> 5) & 0xf;
1141 if (addr
== env
->reserve_addr
) {
1143 case 1: segv
= get_user_u8(val
, addr
); break;
1144 case 2: segv
= get_user_u16(val
, addr
); break;
1145 case 4: segv
= get_user_u32(val
, addr
); break;
1146 #if defined(TARGET_PPC64)
1147 case 8: segv
= get_user_u64(val
, addr
); break;
1151 if (!segv
&& val
== env
->reserve_val
) {
1152 val
= env
->gpr
[reg
];
1154 case 1: segv
= put_user_u8(val
, addr
); break;
1155 case 2: segv
= put_user_u16(val
, addr
); break;
1156 case 4: segv
= put_user_u32(val
, addr
); break;
1157 #if defined(TARGET_PPC64)
1158 case 8: segv
= put_user_u64(val
, addr
); break;
1167 env
->crf
[0] = (stored
<< 1) | xer_so
;
1168 env
->reserve_addr
= (target_ulong
)-1;
1178 void cpu_loop(CPUPPCState
*env
)
1180 target_siginfo_t info
;
1185 cpu_exec_start(env
);
1186 trapnr
= cpu_ppc_exec(env
);
1189 case POWERPC_EXCP_NONE
:
1192 case POWERPC_EXCP_CRITICAL
: /* Critical input */
1193 cpu_abort(env
, "Critical interrupt while in user mode. "
1196 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
1197 cpu_abort(env
, "Machine check exception while in user mode. "
1200 case POWERPC_EXCP_DSI
: /* Data storage exception */
1201 EXCP_DUMP(env
, "Invalid data memory access: 0x" TARGET_FMT_lx
"\n",
1203 /* XXX: check this. Seems bugged */
1204 switch (env
->error_code
& 0xFF000000) {
1206 info
.si_signo
= TARGET_SIGSEGV
;
1208 info
.si_code
= TARGET_SEGV_MAPERR
;
1211 info
.si_signo
= TARGET_SIGILL
;
1213 info
.si_code
= TARGET_ILL_ILLADR
;
1216 info
.si_signo
= TARGET_SIGSEGV
;
1218 info
.si_code
= TARGET_SEGV_ACCERR
;
1221 /* Let's send a regular segfault... */
1222 EXCP_DUMP(env
, "Invalid segfault errno (%02x)\n",
1224 info
.si_signo
= TARGET_SIGSEGV
;
1226 info
.si_code
= TARGET_SEGV_MAPERR
;
1229 info
._sifields
._sigfault
._addr
= env
->nip
;
1230 queue_signal(env
, info
.si_signo
, &info
);
1232 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
1233 EXCP_DUMP(env
, "Invalid instruction fetch: 0x\n" TARGET_FMT_lx
1234 "\n", env
->spr
[SPR_SRR0
]);
1235 /* XXX: check this */
1236 switch (env
->error_code
& 0xFF000000) {
1238 info
.si_signo
= TARGET_SIGSEGV
;
1240 info
.si_code
= TARGET_SEGV_MAPERR
;
1244 info
.si_signo
= TARGET_SIGSEGV
;
1246 info
.si_code
= TARGET_SEGV_ACCERR
;
1249 /* Let's send a regular segfault... */
1250 EXCP_DUMP(env
, "Invalid segfault errno (%02x)\n",
1252 info
.si_signo
= TARGET_SIGSEGV
;
1254 info
.si_code
= TARGET_SEGV_MAPERR
;
1257 info
._sifields
._sigfault
._addr
= env
->nip
- 4;
1258 queue_signal(env
, info
.si_signo
, &info
);
1260 case POWERPC_EXCP_EXTERNAL
: /* External input */
1261 cpu_abort(env
, "External interrupt while in user mode. "
1264 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
1265 EXCP_DUMP(env
, "Unaligned memory access\n");
1266 /* XXX: check this */
1267 info
.si_signo
= TARGET_SIGBUS
;
1269 info
.si_code
= TARGET_BUS_ADRALN
;
1270 info
._sifields
._sigfault
._addr
= env
->nip
- 4;
1271 queue_signal(env
, info
.si_signo
, &info
);
1273 case POWERPC_EXCP_PROGRAM
: /* Program exception */
1274 /* XXX: check this */
1275 switch (env
->error_code
& ~0xF) {
1276 case POWERPC_EXCP_FP
:
1277 EXCP_DUMP(env
, "Floating point program exception\n");
1278 info
.si_signo
= TARGET_SIGFPE
;
1280 switch (env
->error_code
& 0xF) {
1281 case POWERPC_EXCP_FP_OX
:
1282 info
.si_code
= TARGET_FPE_FLTOVF
;
1284 case POWERPC_EXCP_FP_UX
:
1285 info
.si_code
= TARGET_FPE_FLTUND
;
1287 case POWERPC_EXCP_FP_ZX
:
1288 case POWERPC_EXCP_FP_VXZDZ
:
1289 info
.si_code
= TARGET_FPE_FLTDIV
;
1291 case POWERPC_EXCP_FP_XX
:
1292 info
.si_code
= TARGET_FPE_FLTRES
;
1294 case POWERPC_EXCP_FP_VXSOFT
:
1295 info
.si_code
= TARGET_FPE_FLTINV
;
1297 case POWERPC_EXCP_FP_VXSNAN
:
1298 case POWERPC_EXCP_FP_VXISI
:
1299 case POWERPC_EXCP_FP_VXIDI
:
1300 case POWERPC_EXCP_FP_VXIMZ
:
1301 case POWERPC_EXCP_FP_VXVC
:
1302 case POWERPC_EXCP_FP_VXSQRT
:
1303 case POWERPC_EXCP_FP_VXCVI
:
1304 info
.si_code
= TARGET_FPE_FLTSUB
;
1307 EXCP_DUMP(env
, "Unknown floating point exception (%02x)\n",
1312 case POWERPC_EXCP_INVAL
:
1313 EXCP_DUMP(env
, "Invalid instruction\n");
1314 info
.si_signo
= TARGET_SIGILL
;
1316 switch (env
->error_code
& 0xF) {
1317 case POWERPC_EXCP_INVAL_INVAL
:
1318 info
.si_code
= TARGET_ILL_ILLOPC
;
1320 case POWERPC_EXCP_INVAL_LSWX
:
1321 info
.si_code
= TARGET_ILL_ILLOPN
;
1323 case POWERPC_EXCP_INVAL_SPR
:
1324 info
.si_code
= TARGET_ILL_PRVREG
;
1326 case POWERPC_EXCP_INVAL_FP
:
1327 info
.si_code
= TARGET_ILL_COPROC
;
1330 EXCP_DUMP(env
, "Unknown invalid operation (%02x)\n",
1331 env
->error_code
& 0xF);
1332 info
.si_code
= TARGET_ILL_ILLADR
;
1336 case POWERPC_EXCP_PRIV
:
1337 EXCP_DUMP(env
, "Privilege violation\n");
1338 info
.si_signo
= TARGET_SIGILL
;
1340 switch (env
->error_code
& 0xF) {
1341 case POWERPC_EXCP_PRIV_OPC
:
1342 info
.si_code
= TARGET_ILL_PRVOPC
;
1344 case POWERPC_EXCP_PRIV_REG
:
1345 info
.si_code
= TARGET_ILL_PRVREG
;
1348 EXCP_DUMP(env
, "Unknown privilege violation (%02x)\n",
1349 env
->error_code
& 0xF);
1350 info
.si_code
= TARGET_ILL_PRVOPC
;
1354 case POWERPC_EXCP_TRAP
:
1355 cpu_abort(env
, "Tried to call a TRAP\n");
1358 /* Should not happen ! */
1359 cpu_abort(env
, "Unknown program exception (%02x)\n",
1363 info
._sifields
._sigfault
._addr
= env
->nip
- 4;
1364 queue_signal(env
, info
.si_signo
, &info
);
1366 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
1367 EXCP_DUMP(env
, "No floating point allowed\n");
1368 info
.si_signo
= TARGET_SIGILL
;
1370 info
.si_code
= TARGET_ILL_COPROC
;
1371 info
._sifields
._sigfault
._addr
= env
->nip
- 4;
1372 queue_signal(env
, info
.si_signo
, &info
);
1374 case POWERPC_EXCP_SYSCALL
: /* System call exception */
1375 cpu_abort(env
, "Syscall exception while in user mode. "
1378 case POWERPC_EXCP_APU
: /* Auxiliary processor unavailable */
1379 EXCP_DUMP(env
, "No APU instruction allowed\n");
1380 info
.si_signo
= TARGET_SIGILL
;
1382 info
.si_code
= TARGET_ILL_COPROC
;
1383 info
._sifields
._sigfault
._addr
= env
->nip
- 4;
1384 queue_signal(env
, info
.si_signo
, &info
);
1386 case POWERPC_EXCP_DECR
: /* Decrementer exception */
1387 cpu_abort(env
, "Decrementer interrupt while in user mode. "
1390 case POWERPC_EXCP_FIT
: /* Fixed-interval timer interrupt */
1391 cpu_abort(env
, "Fix interval timer interrupt while in user mode. "
1394 case POWERPC_EXCP_WDT
: /* Watchdog timer interrupt */
1395 cpu_abort(env
, "Watchdog timer interrupt while in user mode. "
1398 case POWERPC_EXCP_DTLB
: /* Data TLB error */
1399 cpu_abort(env
, "Data TLB exception while in user mode. "
1402 case POWERPC_EXCP_ITLB
: /* Instruction TLB error */
1403 cpu_abort(env
, "Instruction TLB exception while in user mode. "
1406 case POWERPC_EXCP_SPEU
: /* SPE/embedded floating-point unavail. */
1407 EXCP_DUMP(env
, "No SPE/floating-point instruction allowed\n");
1408 info
.si_signo
= TARGET_SIGILL
;
1410 info
.si_code
= TARGET_ILL_COPROC
;
1411 info
._sifields
._sigfault
._addr
= env
->nip
- 4;
1412 queue_signal(env
, info
.si_signo
, &info
);
1414 case POWERPC_EXCP_EFPDI
: /* Embedded floating-point data IRQ */
1415 cpu_abort(env
, "Embedded floating-point data IRQ not handled\n");
1417 case POWERPC_EXCP_EFPRI
: /* Embedded floating-point round IRQ */
1418 cpu_abort(env
, "Embedded floating-point round IRQ not handled\n");
1420 case POWERPC_EXCP_EPERFM
: /* Embedded performance monitor IRQ */
1421 cpu_abort(env
, "Performance monitor exception not handled\n");
1423 case POWERPC_EXCP_DOORI
: /* Embedded doorbell interrupt */
1424 cpu_abort(env
, "Doorbell interrupt while in user mode. "
1427 case POWERPC_EXCP_DOORCI
: /* Embedded doorbell critical interrupt */
1428 cpu_abort(env
, "Doorbell critical interrupt while in user mode. "
1431 case POWERPC_EXCP_RESET
: /* System reset exception */
1432 cpu_abort(env
, "Reset interrupt while in user mode. "
1435 case POWERPC_EXCP_DSEG
: /* Data segment exception */
1436 cpu_abort(env
, "Data segment exception while in user mode. "
1439 case POWERPC_EXCP_ISEG
: /* Instruction segment exception */
1440 cpu_abort(env
, "Instruction segment exception "
1441 "while in user mode. Aborting\n");
1443 /* PowerPC 64 with hypervisor mode support */
1444 case POWERPC_EXCP_HDECR
: /* Hypervisor decrementer exception */
1445 cpu_abort(env
, "Hypervisor decrementer interrupt "
1446 "while in user mode. Aborting\n");
1448 case POWERPC_EXCP_TRACE
: /* Trace exception */
1450 * we use this exception to emulate step-by-step execution mode.
1453 /* PowerPC 64 with hypervisor mode support */
1454 case POWERPC_EXCP_HDSI
: /* Hypervisor data storage exception */
1455 cpu_abort(env
, "Hypervisor data storage exception "
1456 "while in user mode. Aborting\n");
1458 case POWERPC_EXCP_HISI
: /* Hypervisor instruction storage excp */
1459 cpu_abort(env
, "Hypervisor instruction storage exception "
1460 "while in user mode. Aborting\n");
1462 case POWERPC_EXCP_HDSEG
: /* Hypervisor data segment exception */
1463 cpu_abort(env
, "Hypervisor data segment exception "
1464 "while in user mode. Aborting\n");
1466 case POWERPC_EXCP_HISEG
: /* Hypervisor instruction segment excp */
1467 cpu_abort(env
, "Hypervisor instruction segment exception "
1468 "while in user mode. Aborting\n");
1470 case POWERPC_EXCP_VPU
: /* Vector unavailable exception */
1471 EXCP_DUMP(env
, "No Altivec instructions allowed\n");
1472 info
.si_signo
= TARGET_SIGILL
;
1474 info
.si_code
= TARGET_ILL_COPROC
;
1475 info
._sifields
._sigfault
._addr
= env
->nip
- 4;
1476 queue_signal(env
, info
.si_signo
, &info
);
1478 case POWERPC_EXCP_PIT
: /* Programmable interval timer IRQ */
1479 cpu_abort(env
, "Programable interval timer interrupt "
1480 "while in user mode. Aborting\n");
1482 case POWERPC_EXCP_IO
: /* IO error exception */
1483 cpu_abort(env
, "IO error exception while in user mode. "
1486 case POWERPC_EXCP_RUNM
: /* Run mode exception */
1487 cpu_abort(env
, "Run mode exception while in user mode. "
1490 case POWERPC_EXCP_EMUL
: /* Emulation trap exception */
1491 cpu_abort(env
, "Emulation trap exception not handled\n");
1493 case POWERPC_EXCP_IFTLB
: /* Instruction fetch TLB error */
1494 cpu_abort(env
, "Instruction fetch TLB exception "
1495 "while in user-mode. Aborting");
1497 case POWERPC_EXCP_DLTLB
: /* Data load TLB miss */
1498 cpu_abort(env
, "Data load TLB exception while in user-mode. "
1501 case POWERPC_EXCP_DSTLB
: /* Data store TLB miss */
1502 cpu_abort(env
, "Data store TLB exception while in user-mode. "
1505 case POWERPC_EXCP_FPA
: /* Floating-point assist exception */
1506 cpu_abort(env
, "Floating-point assist exception not handled\n");
1508 case POWERPC_EXCP_IABR
: /* Instruction address breakpoint */
1509 cpu_abort(env
, "Instruction address breakpoint exception "
1512 case POWERPC_EXCP_SMI
: /* System management interrupt */
1513 cpu_abort(env
, "System management interrupt while in user mode. "
1516 case POWERPC_EXCP_THERM
: /* Thermal interrupt */
1517 cpu_abort(env
, "Thermal interrupt interrupt while in user mode. "
1520 case POWERPC_EXCP_PERFM
: /* Embedded performance monitor IRQ */
1521 cpu_abort(env
, "Performance monitor exception not handled\n");
1523 case POWERPC_EXCP_VPUA
: /* Vector assist exception */
1524 cpu_abort(env
, "Vector assist exception not handled\n");
1526 case POWERPC_EXCP_SOFTP
: /* Soft patch exception */
1527 cpu_abort(env
, "Soft patch exception not handled\n");
1529 case POWERPC_EXCP_MAINT
: /* Maintenance exception */
1530 cpu_abort(env
, "Maintenance exception while in user mode. "
1533 case POWERPC_EXCP_STOP
: /* stop translation */
1534 /* We did invalidate the instruction cache. Go on */
1536 case POWERPC_EXCP_BRANCH
: /* branch instruction: */
1537 /* We just stopped because of a branch. Go on */
1539 case POWERPC_EXCP_SYSCALL_USER
:
1540 /* system call in user-mode emulation */
1542 * PPC ABI uses overflow flag in cr0 to signal an error
1546 printf("syscall %d 0x%08x 0x%08x 0x%08x 0x%08x\n", env
->gpr
[0],
1547 env
->gpr
[3], env
->gpr
[4], env
->gpr
[5], env
->gpr
[6]);
1549 env
->crf
[0] &= ~0x1;
1550 ret
= do_syscall(env
, env
->gpr
[0], env
->gpr
[3], env
->gpr
[4],
1551 env
->gpr
[5], env
->gpr
[6], env
->gpr
[7],
1553 if (ret
== (uint32_t)(-TARGET_QEMU_ESIGRETURN
)) {
1554 /* Returning from a successful sigreturn syscall.
1555 Avoid corrupting register state. */
1558 if (ret
> (uint32_t)(-515)) {
1564 printf("syscall returned 0x%08x (%d)\n", ret
, ret
);
1567 case POWERPC_EXCP_STCX
:
1568 if (do_store_exclusive(env
)) {
1569 info
.si_signo
= TARGET_SIGSEGV
;
1571 info
.si_code
= TARGET_SEGV_MAPERR
;
1572 info
._sifields
._sigfault
._addr
= env
->nip
;
1573 queue_signal(env
, info
.si_signo
, &info
);
1580 sig
= gdb_handlesig(env
, TARGET_SIGTRAP
);
1582 info
.si_signo
= sig
;
1584 info
.si_code
= TARGET_TRAP_BRKPT
;
1585 queue_signal(env
, info
.si_signo
, &info
);
1589 case EXCP_INTERRUPT
:
1590 /* just indicate that signals should be handled asap */
1593 cpu_abort(env
, "Unknown exception 0x%d. Aborting\n", trapnr
);
1596 process_pending_signals(env
);
1603 #define MIPS_SYS(name, args) args,
1605 static const uint8_t mips_syscall_args
[] = {
1606 MIPS_SYS(sys_syscall
, 0) /* 4000 */
1607 MIPS_SYS(sys_exit
, 1)
1608 MIPS_SYS(sys_fork
, 0)
1609 MIPS_SYS(sys_read
, 3)
1610 MIPS_SYS(sys_write
, 3)
1611 MIPS_SYS(sys_open
, 3) /* 4005 */
1612 MIPS_SYS(sys_close
, 1)
1613 MIPS_SYS(sys_waitpid
, 3)
1614 MIPS_SYS(sys_creat
, 2)
1615 MIPS_SYS(sys_link
, 2)
1616 MIPS_SYS(sys_unlink
, 1) /* 4010 */
1617 MIPS_SYS(sys_execve
, 0)
1618 MIPS_SYS(sys_chdir
, 1)
1619 MIPS_SYS(sys_time
, 1)
1620 MIPS_SYS(sys_mknod
, 3)
1621 MIPS_SYS(sys_chmod
, 2) /* 4015 */
1622 MIPS_SYS(sys_lchown
, 3)
1623 MIPS_SYS(sys_ni_syscall
, 0)
1624 MIPS_SYS(sys_ni_syscall
, 0) /* was sys_stat */
1625 MIPS_SYS(sys_lseek
, 3)
1626 MIPS_SYS(sys_getpid
, 0) /* 4020 */
1627 MIPS_SYS(sys_mount
, 5)
1628 MIPS_SYS(sys_oldumount
, 1)
1629 MIPS_SYS(sys_setuid
, 1)
1630 MIPS_SYS(sys_getuid
, 0)
1631 MIPS_SYS(sys_stime
, 1) /* 4025 */
1632 MIPS_SYS(sys_ptrace
, 4)
1633 MIPS_SYS(sys_alarm
, 1)
1634 MIPS_SYS(sys_ni_syscall
, 0) /* was sys_fstat */
1635 MIPS_SYS(sys_pause
, 0)
1636 MIPS_SYS(sys_utime
, 2) /* 4030 */
1637 MIPS_SYS(sys_ni_syscall
, 0)
1638 MIPS_SYS(sys_ni_syscall
, 0)
1639 MIPS_SYS(sys_access
, 2)
1640 MIPS_SYS(sys_nice
, 1)
1641 MIPS_SYS(sys_ni_syscall
, 0) /* 4035 */
1642 MIPS_SYS(sys_sync
, 0)
1643 MIPS_SYS(sys_kill
, 2)
1644 MIPS_SYS(sys_rename
, 2)
1645 MIPS_SYS(sys_mkdir
, 2)
1646 MIPS_SYS(sys_rmdir
, 1) /* 4040 */
1647 MIPS_SYS(sys_dup
, 1)
1648 MIPS_SYS(sys_pipe
, 0)
1649 MIPS_SYS(sys_times
, 1)
1650 MIPS_SYS(sys_ni_syscall
, 0)
1651 MIPS_SYS(sys_brk
, 1) /* 4045 */
1652 MIPS_SYS(sys_setgid
, 1)
1653 MIPS_SYS(sys_getgid
, 0)
1654 MIPS_SYS(sys_ni_syscall
, 0) /* was signal(2) */
1655 MIPS_SYS(sys_geteuid
, 0)
1656 MIPS_SYS(sys_getegid
, 0) /* 4050 */
1657 MIPS_SYS(sys_acct
, 0)
1658 MIPS_SYS(sys_umount
, 2)
1659 MIPS_SYS(sys_ni_syscall
, 0)
1660 MIPS_SYS(sys_ioctl
, 3)
1661 MIPS_SYS(sys_fcntl
, 3) /* 4055 */
1662 MIPS_SYS(sys_ni_syscall
, 2)
1663 MIPS_SYS(sys_setpgid
, 2)
1664 MIPS_SYS(sys_ni_syscall
, 0)
1665 MIPS_SYS(sys_olduname
, 1)
1666 MIPS_SYS(sys_umask
, 1) /* 4060 */
1667 MIPS_SYS(sys_chroot
, 1)
1668 MIPS_SYS(sys_ustat
, 2)
1669 MIPS_SYS(sys_dup2
, 2)
1670 MIPS_SYS(sys_getppid
, 0)
1671 MIPS_SYS(sys_getpgrp
, 0) /* 4065 */
1672 MIPS_SYS(sys_setsid
, 0)
1673 MIPS_SYS(sys_sigaction
, 3)
1674 MIPS_SYS(sys_sgetmask
, 0)
1675 MIPS_SYS(sys_ssetmask
, 1)
1676 MIPS_SYS(sys_setreuid
, 2) /* 4070 */
1677 MIPS_SYS(sys_setregid
, 2)
1678 MIPS_SYS(sys_sigsuspend
, 0)
1679 MIPS_SYS(sys_sigpending
, 1)
1680 MIPS_SYS(sys_sethostname
, 2)
1681 MIPS_SYS(sys_setrlimit
, 2) /* 4075 */
1682 MIPS_SYS(sys_getrlimit
, 2)
1683 MIPS_SYS(sys_getrusage
, 2)
1684 MIPS_SYS(sys_gettimeofday
, 2)
1685 MIPS_SYS(sys_settimeofday
, 2)
1686 MIPS_SYS(sys_getgroups
, 2) /* 4080 */
1687 MIPS_SYS(sys_setgroups
, 2)
1688 MIPS_SYS(sys_ni_syscall
, 0) /* old_select */
1689 MIPS_SYS(sys_symlink
, 2)
1690 MIPS_SYS(sys_ni_syscall
, 0) /* was sys_lstat */
1691 MIPS_SYS(sys_readlink
, 3) /* 4085 */
1692 MIPS_SYS(sys_uselib
, 1)
1693 MIPS_SYS(sys_swapon
, 2)
1694 MIPS_SYS(sys_reboot
, 3)
1695 MIPS_SYS(old_readdir
, 3)
1696 MIPS_SYS(old_mmap
, 6) /* 4090 */
1697 MIPS_SYS(sys_munmap
, 2)
1698 MIPS_SYS(sys_truncate
, 2)
1699 MIPS_SYS(sys_ftruncate
, 2)
1700 MIPS_SYS(sys_fchmod
, 2)
1701 MIPS_SYS(sys_fchown
, 3) /* 4095 */
1702 MIPS_SYS(sys_getpriority
, 2)
1703 MIPS_SYS(sys_setpriority
, 3)
1704 MIPS_SYS(sys_ni_syscall
, 0)
1705 MIPS_SYS(sys_statfs
, 2)
1706 MIPS_SYS(sys_fstatfs
, 2) /* 4100 */
1707 MIPS_SYS(sys_ni_syscall
, 0) /* was ioperm(2) */
1708 MIPS_SYS(sys_socketcall
, 2)
1709 MIPS_SYS(sys_syslog
, 3)
1710 MIPS_SYS(sys_setitimer
, 3)
1711 MIPS_SYS(sys_getitimer
, 2) /* 4105 */
1712 MIPS_SYS(sys_newstat
, 2)
1713 MIPS_SYS(sys_newlstat
, 2)
1714 MIPS_SYS(sys_newfstat
, 2)
1715 MIPS_SYS(sys_uname
, 1)
1716 MIPS_SYS(sys_ni_syscall
, 0) /* 4110 was iopl(2) */
1717 MIPS_SYS(sys_vhangup
, 0)
1718 MIPS_SYS(sys_ni_syscall
, 0) /* was sys_idle() */
1719 MIPS_SYS(sys_ni_syscall
, 0) /* was sys_vm86 */
1720 MIPS_SYS(sys_wait4
, 4)
1721 MIPS_SYS(sys_swapoff
, 1) /* 4115 */
1722 MIPS_SYS(sys_sysinfo
, 1)
1723 MIPS_SYS(sys_ipc
, 6)
1724 MIPS_SYS(sys_fsync
, 1)
1725 MIPS_SYS(sys_sigreturn
, 0)
1726 MIPS_SYS(sys_clone
, 6) /* 4120 */
1727 MIPS_SYS(sys_setdomainname
, 2)
1728 MIPS_SYS(sys_newuname
, 1)
1729 MIPS_SYS(sys_ni_syscall
, 0) /* sys_modify_ldt */
1730 MIPS_SYS(sys_adjtimex
, 1)
1731 MIPS_SYS(sys_mprotect
, 3) /* 4125 */
1732 MIPS_SYS(sys_sigprocmask
, 3)
1733 MIPS_SYS(sys_ni_syscall
, 0) /* was create_module */
1734 MIPS_SYS(sys_init_module
, 5)
1735 MIPS_SYS(sys_delete_module
, 1)
1736 MIPS_SYS(sys_ni_syscall
, 0) /* 4130 was get_kernel_syms */
1737 MIPS_SYS(sys_quotactl
, 0)
1738 MIPS_SYS(sys_getpgid
, 1)
1739 MIPS_SYS(sys_fchdir
, 1)
1740 MIPS_SYS(sys_bdflush
, 2)
1741 MIPS_SYS(sys_sysfs
, 3) /* 4135 */
1742 MIPS_SYS(sys_personality
, 1)
1743 MIPS_SYS(sys_ni_syscall
, 0) /* for afs_syscall */
1744 MIPS_SYS(sys_setfsuid
, 1)
1745 MIPS_SYS(sys_setfsgid
, 1)
1746 MIPS_SYS(sys_llseek
, 5) /* 4140 */
1747 MIPS_SYS(sys_getdents
, 3)
1748 MIPS_SYS(sys_select
, 5)
1749 MIPS_SYS(sys_flock
, 2)
1750 MIPS_SYS(sys_msync
, 3)
1751 MIPS_SYS(sys_readv
, 3) /* 4145 */
1752 MIPS_SYS(sys_writev
, 3)
1753 MIPS_SYS(sys_cacheflush
, 3)
1754 MIPS_SYS(sys_cachectl
, 3)
1755 MIPS_SYS(sys_sysmips
, 4)
1756 MIPS_SYS(sys_ni_syscall
, 0) /* 4150 */
1757 MIPS_SYS(sys_getsid
, 1)
1758 MIPS_SYS(sys_fdatasync
, 0)
1759 MIPS_SYS(sys_sysctl
, 1)
1760 MIPS_SYS(sys_mlock
, 2)
1761 MIPS_SYS(sys_munlock
, 2) /* 4155 */
1762 MIPS_SYS(sys_mlockall
, 1)
1763 MIPS_SYS(sys_munlockall
, 0)
1764 MIPS_SYS(sys_sched_setparam
, 2)
1765 MIPS_SYS(sys_sched_getparam
, 2)
1766 MIPS_SYS(sys_sched_setscheduler
, 3) /* 4160 */
1767 MIPS_SYS(sys_sched_getscheduler
, 1)
1768 MIPS_SYS(sys_sched_yield
, 0)
1769 MIPS_SYS(sys_sched_get_priority_max
, 1)
1770 MIPS_SYS(sys_sched_get_priority_min
, 1)
1771 MIPS_SYS(sys_sched_rr_get_interval
, 2) /* 4165 */
1772 MIPS_SYS(sys_nanosleep
, 2)
1773 MIPS_SYS(sys_mremap
, 4)
1774 MIPS_SYS(sys_accept
, 3)
1775 MIPS_SYS(sys_bind
, 3)
1776 MIPS_SYS(sys_connect
, 3) /* 4170 */
1777 MIPS_SYS(sys_getpeername
, 3)
1778 MIPS_SYS(sys_getsockname
, 3)
1779 MIPS_SYS(sys_getsockopt
, 5)
1780 MIPS_SYS(sys_listen
, 2)
1781 MIPS_SYS(sys_recv
, 4) /* 4175 */
1782 MIPS_SYS(sys_recvfrom
, 6)
1783 MIPS_SYS(sys_recvmsg
, 3)
1784 MIPS_SYS(sys_send
, 4)
1785 MIPS_SYS(sys_sendmsg
, 3)
1786 MIPS_SYS(sys_sendto
, 6) /* 4180 */
1787 MIPS_SYS(sys_setsockopt
, 5)
1788 MIPS_SYS(sys_shutdown
, 2)
1789 MIPS_SYS(sys_socket
, 3)
1790 MIPS_SYS(sys_socketpair
, 4)
1791 MIPS_SYS(sys_setresuid
, 3) /* 4185 */
1792 MIPS_SYS(sys_getresuid
, 3)
1793 MIPS_SYS(sys_ni_syscall
, 0) /* was sys_query_module */
1794 MIPS_SYS(sys_poll
, 3)
1795 MIPS_SYS(sys_nfsservctl
, 3)
1796 MIPS_SYS(sys_setresgid
, 3) /* 4190 */
1797 MIPS_SYS(sys_getresgid
, 3)
1798 MIPS_SYS(sys_prctl
, 5)
1799 MIPS_SYS(sys_rt_sigreturn
, 0)
1800 MIPS_SYS(sys_rt_sigaction
, 4)
1801 MIPS_SYS(sys_rt_sigprocmask
, 4) /* 4195 */
1802 MIPS_SYS(sys_rt_sigpending
, 2)
1803 MIPS_SYS(sys_rt_sigtimedwait
, 4)
1804 MIPS_SYS(sys_rt_sigqueueinfo
, 3)
1805 MIPS_SYS(sys_rt_sigsuspend
, 0)
1806 MIPS_SYS(sys_pread64
, 6) /* 4200 */
1807 MIPS_SYS(sys_pwrite64
, 6)
1808 MIPS_SYS(sys_chown
, 3)
1809 MIPS_SYS(sys_getcwd
, 2)
1810 MIPS_SYS(sys_capget
, 2)
1811 MIPS_SYS(sys_capset
, 2) /* 4205 */
1812 MIPS_SYS(sys_sigaltstack
, 0)
1813 MIPS_SYS(sys_sendfile
, 4)
1814 MIPS_SYS(sys_ni_syscall
, 0)
1815 MIPS_SYS(sys_ni_syscall
, 0)
1816 MIPS_SYS(sys_mmap2
, 6) /* 4210 */
1817 MIPS_SYS(sys_truncate64
, 4)
1818 MIPS_SYS(sys_ftruncate64
, 4)
1819 MIPS_SYS(sys_stat64
, 2)
1820 MIPS_SYS(sys_lstat64
, 2)
1821 MIPS_SYS(sys_fstat64
, 2) /* 4215 */
1822 MIPS_SYS(sys_pivot_root
, 2)
1823 MIPS_SYS(sys_mincore
, 3)
1824 MIPS_SYS(sys_madvise
, 3)
1825 MIPS_SYS(sys_getdents64
, 3)
1826 MIPS_SYS(sys_fcntl64
, 3) /* 4220 */
1827 MIPS_SYS(sys_ni_syscall
, 0)
1828 MIPS_SYS(sys_gettid
, 0)
1829 MIPS_SYS(sys_readahead
, 5)
1830 MIPS_SYS(sys_setxattr
, 5)
1831 MIPS_SYS(sys_lsetxattr
, 5) /* 4225 */
1832 MIPS_SYS(sys_fsetxattr
, 5)
1833 MIPS_SYS(sys_getxattr
, 4)
1834 MIPS_SYS(sys_lgetxattr
, 4)
1835 MIPS_SYS(sys_fgetxattr
, 4)
1836 MIPS_SYS(sys_listxattr
, 3) /* 4230 */
1837 MIPS_SYS(sys_llistxattr
, 3)
1838 MIPS_SYS(sys_flistxattr
, 3)
1839 MIPS_SYS(sys_removexattr
, 2)
1840 MIPS_SYS(sys_lremovexattr
, 2)
1841 MIPS_SYS(sys_fremovexattr
, 2) /* 4235 */
1842 MIPS_SYS(sys_tkill
, 2)
1843 MIPS_SYS(sys_sendfile64
, 5)
1844 MIPS_SYS(sys_futex
, 2)
1845 MIPS_SYS(sys_sched_setaffinity
, 3)
1846 MIPS_SYS(sys_sched_getaffinity
, 3) /* 4240 */
1847 MIPS_SYS(sys_io_setup
, 2)
1848 MIPS_SYS(sys_io_destroy
, 1)
1849 MIPS_SYS(sys_io_getevents
, 5)
1850 MIPS_SYS(sys_io_submit
, 3)
1851 MIPS_SYS(sys_io_cancel
, 3) /* 4245 */
1852 MIPS_SYS(sys_exit_group
, 1)
1853 MIPS_SYS(sys_lookup_dcookie
, 3)
1854 MIPS_SYS(sys_epoll_create
, 1)
1855 MIPS_SYS(sys_epoll_ctl
, 4)
1856 MIPS_SYS(sys_epoll_wait
, 3) /* 4250 */
1857 MIPS_SYS(sys_remap_file_pages
, 5)
1858 MIPS_SYS(sys_set_tid_address
, 1)
1859 MIPS_SYS(sys_restart_syscall
, 0)
1860 MIPS_SYS(sys_fadvise64_64
, 7)
1861 MIPS_SYS(sys_statfs64
, 3) /* 4255 */
1862 MIPS_SYS(sys_fstatfs64
, 2)
1863 MIPS_SYS(sys_timer_create
, 3)
1864 MIPS_SYS(sys_timer_settime
, 4)
1865 MIPS_SYS(sys_timer_gettime
, 2)
1866 MIPS_SYS(sys_timer_getoverrun
, 1) /* 4260 */
1867 MIPS_SYS(sys_timer_delete
, 1)
1868 MIPS_SYS(sys_clock_settime
, 2)
1869 MIPS_SYS(sys_clock_gettime
, 2)
1870 MIPS_SYS(sys_clock_getres
, 2)
1871 MIPS_SYS(sys_clock_nanosleep
, 4) /* 4265 */
1872 MIPS_SYS(sys_tgkill
, 3)
1873 MIPS_SYS(sys_utimes
, 2)
1874 MIPS_SYS(sys_mbind
, 4)
1875 MIPS_SYS(sys_ni_syscall
, 0) /* sys_get_mempolicy */
1876 MIPS_SYS(sys_ni_syscall
, 0) /* 4270 sys_set_mempolicy */
1877 MIPS_SYS(sys_mq_open
, 4)
1878 MIPS_SYS(sys_mq_unlink
, 1)
1879 MIPS_SYS(sys_mq_timedsend
, 5)
1880 MIPS_SYS(sys_mq_timedreceive
, 5)
1881 MIPS_SYS(sys_mq_notify
, 2) /* 4275 */
1882 MIPS_SYS(sys_mq_getsetattr
, 3)
1883 MIPS_SYS(sys_ni_syscall
, 0) /* sys_vserver */
1884 MIPS_SYS(sys_waitid
, 4)
1885 MIPS_SYS(sys_ni_syscall
, 0) /* available, was setaltroot */
1886 MIPS_SYS(sys_add_key
, 5)
1887 MIPS_SYS(sys_request_key
, 4)
1888 MIPS_SYS(sys_keyctl
, 5)
1889 MIPS_SYS(sys_set_thread_area
, 1)
1890 MIPS_SYS(sys_inotify_init
, 0)
1891 MIPS_SYS(sys_inotify_add_watch
, 3) /* 4285 */
1892 MIPS_SYS(sys_inotify_rm_watch
, 2)
1893 MIPS_SYS(sys_migrate_pages
, 4)
1894 MIPS_SYS(sys_openat
, 4)
1895 MIPS_SYS(sys_mkdirat
, 3)
1896 MIPS_SYS(sys_mknodat
, 4) /* 4290 */
1897 MIPS_SYS(sys_fchownat
, 5)
1898 MIPS_SYS(sys_futimesat
, 3)
1899 MIPS_SYS(sys_fstatat64
, 4)
1900 MIPS_SYS(sys_unlinkat
, 3)
1901 MIPS_SYS(sys_renameat
, 4) /* 4295 */
1902 MIPS_SYS(sys_linkat
, 5)
1903 MIPS_SYS(sys_symlinkat
, 3)
1904 MIPS_SYS(sys_readlinkat
, 4)
1905 MIPS_SYS(sys_fchmodat
, 3)
1906 MIPS_SYS(sys_faccessat
, 3) /* 4300 */
1907 MIPS_SYS(sys_pselect6
, 6)
1908 MIPS_SYS(sys_ppoll
, 5)
1909 MIPS_SYS(sys_unshare
, 1)
1910 MIPS_SYS(sys_splice
, 4)
1911 MIPS_SYS(sys_sync_file_range
, 7) /* 4305 */
1912 MIPS_SYS(sys_tee
, 4)
1913 MIPS_SYS(sys_vmsplice
, 4)
1914 MIPS_SYS(sys_move_pages
, 6)
1915 MIPS_SYS(sys_set_robust_list
, 2)
1916 MIPS_SYS(sys_get_robust_list
, 3) /* 4310 */
1917 MIPS_SYS(sys_kexec_load
, 4)
1918 MIPS_SYS(sys_getcpu
, 3)
1919 MIPS_SYS(sys_epoll_pwait
, 6)
1920 MIPS_SYS(sys_ioprio_set
, 3)
1921 MIPS_SYS(sys_ioprio_get
, 2)
1926 static int do_store_exclusive(CPUMIPSState
*env
)
1929 target_ulong page_addr
;
1937 page_addr
= addr
& TARGET_PAGE_MASK
;
1940 flags
= page_get_flags(page_addr
);
1941 if ((flags
& PAGE_READ
) == 0) {
1944 reg
= env
->llreg
& 0x1f;
1945 d
= (env
->llreg
& 0x20) != 0;
1947 segv
= get_user_s64(val
, addr
);
1949 segv
= get_user_s32(val
, addr
);
1952 if (val
!= env
->llval
) {
1953 env
->active_tc
.gpr
[reg
] = 0;
1956 segv
= put_user_u64(env
->llnewval
, addr
);
1958 segv
= put_user_u32(env
->llnewval
, addr
);
1961 env
->active_tc
.gpr
[reg
] = 1;
1968 env
->active_tc
.PC
+= 4;
1975 void cpu_loop(CPUMIPSState
*env
)
1977 target_siginfo_t info
;
1979 unsigned int syscall_num
;
1982 cpu_exec_start(env
);
1983 trapnr
= cpu_mips_exec(env
);
1987 syscall_num
= env
->active_tc
.gpr
[2] - 4000;
1988 env
->active_tc
.PC
+= 4;
1989 if (syscall_num
>= sizeof(mips_syscall_args
)) {
1994 abi_ulong arg5
= 0, arg6
= 0, arg7
= 0, arg8
= 0;
1996 nb_args
= mips_syscall_args
[syscall_num
];
1997 sp_reg
= env
->active_tc
.gpr
[29];
1999 /* these arguments are taken from the stack */
2000 /* FIXME - what to do if get_user() fails? */
2001 case 8: get_user_ual(arg8
, sp_reg
+ 28);
2002 case 7: get_user_ual(arg7
, sp_reg
+ 24);
2003 case 6: get_user_ual(arg6
, sp_reg
+ 20);
2004 case 5: get_user_ual(arg5
, sp_reg
+ 16);
2008 ret
= do_syscall(env
, env
->active_tc
.gpr
[2],
2009 env
->active_tc
.gpr
[4],
2010 env
->active_tc
.gpr
[5],
2011 env
->active_tc
.gpr
[6],
2012 env
->active_tc
.gpr
[7],
2013 arg5
, arg6
/*, arg7, arg8*/);
2015 if (ret
== -TARGET_QEMU_ESIGRETURN
) {
2016 /* Returning from a successful sigreturn syscall.
2017 Avoid clobbering register state. */
2020 if ((unsigned int)ret
>= (unsigned int)(-1133)) {
2021 env
->active_tc
.gpr
[7] = 1; /* error flag */
2024 env
->active_tc
.gpr
[7] = 0; /* error flag */
2026 env
->active_tc
.gpr
[2] = ret
;
2030 info
.si_signo
= TARGET_SIGSEGV
;
2032 /* XXX: check env->error_code */
2033 info
.si_code
= TARGET_SEGV_MAPERR
;
2034 info
._sifields
._sigfault
._addr
= env
->CP0_BadVAddr
;
2035 queue_signal(env
, info
.si_signo
, &info
);
2039 info
.si_signo
= TARGET_SIGILL
;
2042 queue_signal(env
, info
.si_signo
, &info
);
2044 case EXCP_INTERRUPT
:
2045 /* just indicate that signals should be handled asap */
2051 sig
= gdb_handlesig (env
, TARGET_SIGTRAP
);
2054 info
.si_signo
= sig
;
2056 info
.si_code
= TARGET_TRAP_BRKPT
;
2057 queue_signal(env
, info
.si_signo
, &info
);
2062 if (do_store_exclusive(env
)) {
2063 info
.si_signo
= TARGET_SIGSEGV
;
2065 info
.si_code
= TARGET_SEGV_MAPERR
;
2066 info
._sifields
._sigfault
._addr
= env
->active_tc
.PC
;
2067 queue_signal(env
, info
.si_signo
, &info
);
2072 fprintf(stderr
, "qemu: unhandled CPU exception 0x%x - aborting\n",
2074 cpu_dump_state(env
, stderr
, fprintf
, 0);
2077 process_pending_signals(env
);
2083 void cpu_loop (CPUState
*env
)
2086 target_siginfo_t info
;
2089 trapnr
= cpu_sh4_exec (env
);
2094 ret
= do_syscall(env
,
2102 env
->gregs
[0] = ret
;
2104 case EXCP_INTERRUPT
:
2105 /* just indicate that signals should be handled asap */
2111 sig
= gdb_handlesig (env
, TARGET_SIGTRAP
);
2114 info
.si_signo
= sig
;
2116 info
.si_code
= TARGET_TRAP_BRKPT
;
2117 queue_signal(env
, info
.si_signo
, &info
);
2123 info
.si_signo
= SIGSEGV
;
2125 info
.si_code
= TARGET_SEGV_MAPERR
;
2126 info
._sifields
._sigfault
._addr
= env
->tea
;
2127 queue_signal(env
, info
.si_signo
, &info
);
2131 printf ("Unhandled trap: 0x%x\n", trapnr
);
2132 cpu_dump_state(env
, stderr
, fprintf
, 0);
2135 process_pending_signals (env
);
2141 void cpu_loop (CPUState
*env
)
2144 target_siginfo_t info
;
2147 trapnr
= cpu_cris_exec (env
);
2151 info
.si_signo
= SIGSEGV
;
2153 /* XXX: check env->error_code */
2154 info
.si_code
= TARGET_SEGV_MAPERR
;
2155 info
._sifields
._sigfault
._addr
= env
->pregs
[PR_EDA
];
2156 queue_signal(env
, info
.si_signo
, &info
);
2159 case EXCP_INTERRUPT
:
2160 /* just indicate that signals should be handled asap */
2163 ret
= do_syscall(env
,
2171 env
->regs
[10] = ret
;
2177 sig
= gdb_handlesig (env
, TARGET_SIGTRAP
);
2180 info
.si_signo
= sig
;
2182 info
.si_code
= TARGET_TRAP_BRKPT
;
2183 queue_signal(env
, info
.si_signo
, &info
);
2188 printf ("Unhandled trap: 0x%x\n", trapnr
);
2189 cpu_dump_state(env
, stderr
, fprintf
, 0);
2192 process_pending_signals (env
);
2197 #ifdef TARGET_MICROBLAZE
2198 void cpu_loop (CPUState
*env
)
2201 target_siginfo_t info
;
2204 trapnr
= cpu_mb_exec (env
);
2208 info
.si_signo
= SIGSEGV
;
2210 /* XXX: check env->error_code */
2211 info
.si_code
= TARGET_SEGV_MAPERR
;
2212 info
._sifields
._sigfault
._addr
= 0;
2213 queue_signal(env
, info
.si_signo
, &info
);
2216 case EXCP_INTERRUPT
:
2217 /* just indicate that signals should be handled asap */
2220 /* Return address is 4 bytes after the call. */
2222 ret
= do_syscall(env
,
2231 env
->sregs
[SR_PC
] = env
->regs
[14];
2237 sig
= gdb_handlesig (env
, TARGET_SIGTRAP
);
2240 info
.si_signo
= sig
;
2242 info
.si_code
= TARGET_TRAP_BRKPT
;
2243 queue_signal(env
, info
.si_signo
, &info
);
2248 printf ("Unhandled trap: 0x%x\n", trapnr
);
2249 cpu_dump_state(env
, stderr
, fprintf
, 0);
2252 process_pending_signals (env
);
2259 void cpu_loop(CPUM68KState
*env
)
2263 target_siginfo_t info
;
2264 TaskState
*ts
= env
->opaque
;
2267 trapnr
= cpu_m68k_exec(env
);
2271 if (ts
->sim_syscalls
) {
2273 nr
= lduw(env
->pc
+ 2);
2275 do_m68k_simcall(env
, nr
);
2281 case EXCP_HALT_INSN
:
2282 /* Semihosing syscall. */
2284 do_m68k_semihosting(env
, env
->dregs
[0]);
2288 case EXCP_UNSUPPORTED
:
2290 info
.si_signo
= SIGILL
;
2292 info
.si_code
= TARGET_ILL_ILLOPN
;
2293 info
._sifields
._sigfault
._addr
= env
->pc
;
2294 queue_signal(env
, info
.si_signo
, &info
);
2298 ts
->sim_syscalls
= 0;
2301 env
->dregs
[0] = do_syscall(env
,
2311 case EXCP_INTERRUPT
:
2312 /* just indicate that signals should be handled asap */
2316 info
.si_signo
= SIGSEGV
;
2318 /* XXX: check env->error_code */
2319 info
.si_code
= TARGET_SEGV_MAPERR
;
2320 info
._sifields
._sigfault
._addr
= env
->mmu
.ar
;
2321 queue_signal(env
, info
.si_signo
, &info
);
2328 sig
= gdb_handlesig (env
, TARGET_SIGTRAP
);
2331 info
.si_signo
= sig
;
2333 info
.si_code
= TARGET_TRAP_BRKPT
;
2334 queue_signal(env
, info
.si_signo
, &info
);
2339 fprintf(stderr
, "qemu: unhandled CPU exception 0x%x - aborting\n",
2341 cpu_dump_state(env
, stderr
, fprintf
, 0);
2344 process_pending_signals(env
);
2347 #endif /* TARGET_M68K */
2350 void cpu_loop (CPUState
*env
)
2353 target_siginfo_t info
;
2356 trapnr
= cpu_alpha_exec (env
);
2360 fprintf(stderr
, "Reset requested. Exit\n");
2364 fprintf(stderr
, "Machine check exception. Exit\n");
2368 fprintf(stderr
, "Arithmetic trap.\n");
2371 case EXCP_HW_INTERRUPT
:
2372 fprintf(stderr
, "External interrupt. Exit\n");
2376 fprintf(stderr
, "MMU data fault\n");
2379 case EXCP_DTB_MISS_PAL
:
2380 fprintf(stderr
, "MMU data TLB miss in PALcode\n");
2384 fprintf(stderr
, "MMU instruction TLB miss\n");
2388 fprintf(stderr
, "MMU instruction access violation\n");
2391 case EXCP_DTB_MISS_NATIVE
:
2392 fprintf(stderr
, "MMU data TLB miss\n");
2396 fprintf(stderr
, "Unaligned access\n");
2400 fprintf(stderr
, "Invalid instruction\n");
2404 fprintf(stderr
, "Floating-point not allowed\n");
2407 case EXCP_CALL_PAL
... (EXCP_CALL_PALP
- 1):
2408 call_pal(env
, (trapnr
>> 6) | 0x80);
2410 case EXCP_CALL_PALP
... (EXCP_CALL_PALE
- 1):
2411 fprintf(stderr
, "Privileged call to PALcode\n");
2418 sig
= gdb_handlesig (env
, TARGET_SIGTRAP
);
2421 info
.si_signo
= sig
;
2423 info
.si_code
= TARGET_TRAP_BRKPT
;
2424 queue_signal(env
, info
.si_signo
, &info
);
2429 printf ("Unhandled trap: 0x%x\n", trapnr
);
2430 cpu_dump_state(env
, stderr
, fprintf
, 0);
2433 process_pending_signals (env
);
2436 #endif /* TARGET_ALPHA */
2438 static void usage(void)
2440 printf("qemu-" TARGET_ARCH
" version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n"
2441 "usage: qemu-" TARGET_ARCH
" [options] program [arguments...]\n"
2442 "Linux CPU emulator (compiled for %s emulation)\n"
2444 "Standard options:\n"
2445 "-h print this help\n"
2446 "-g port wait gdb connection to port\n"
2447 "-L path set the elf interpreter prefix (default=%s)\n"
2448 "-s size set the stack size in bytes (default=%ld)\n"
2449 "-cpu model select CPU (-cpu ? for list)\n"
2450 "-drop-ld-preload drop LD_PRELOAD for target process\n"
2451 "-E var=value sets/modifies targets environment variable(s)\n"
2452 "-U var unsets targets environment variable(s)\n"
2453 "-0 argv0 forces target process argv[0] to be argv0\n"
2454 #if defined(CONFIG_USE_GUEST_BASE)
2455 "-B address set guest_base address to address\n"
2459 "-d options activate log (logfile=%s)\n"
2460 "-p pagesize set the host page size to 'pagesize'\n"
2461 "-singlestep always run in singlestep mode\n"
2462 "-strace log system calls\n"
2464 "Environment variables:\n"
2465 "QEMU_STRACE Print system calls and arguments similar to the\n"
2466 " 'strace' program. Enable by setting to any value.\n"
2467 "You can use -E and -U options to set/unset environment variables\n"
2468 "for target process. It is possible to provide several variables\n"
2469 "by repeating the option. For example:\n"
2470 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
2471 "Note that if you provide several changes to single variable\n"
2472 "last change will stay in effect.\n"
2481 THREAD CPUState
*thread_env
;
2483 void task_settid(TaskState
*ts
)
2485 if (ts
->ts_tid
== 0) {
2486 #ifdef CONFIG_USE_NPTL
2487 ts
->ts_tid
= (pid_t
)syscall(SYS_gettid
);
2489 /* when no threads are used, tid becomes pid */
2490 ts
->ts_tid
= getpid();
2495 void stop_all_tasks(void)
2498 * We trust that when using NPTL, start_exclusive()
2499 * handles thread stopping correctly.
2504 /* Assumes contents are already zeroed. */
2505 void init_task_state(TaskState
*ts
)
2510 ts
->first_free
= ts
->sigqueue_table
;
2511 for (i
= 0; i
< MAX_SIGQUEUE_SIZE
- 1; i
++) {
2512 ts
->sigqueue_table
[i
].next
= &ts
->sigqueue_table
[i
+ 1];
2514 ts
->sigqueue_table
[i
].next
= NULL
;
2517 int main(int argc
, char **argv
, char **envp
)
2519 const char *filename
;
2520 const char *cpu_model
;
2521 struct target_pt_regs regs1
, *regs
= ®s1
;
2522 struct image_info info1
, *info
= &info1
;
2523 struct linux_binprm bprm
;
2524 TaskState ts1
, *ts
= &ts1
;
2528 int gdbstub_port
= 0;
2529 char **target_environ
, **wrk
;
2532 envlist_t
*envlist
= NULL
;
2533 const char *argv0
= NULL
;
2540 qemu_cache_utils_init(envp
);
2543 cpu_set_log_filename(DEBUG_LOGFILE
);
2545 if ((envlist
= envlist_create()) == NULL
) {
2546 (void) fprintf(stderr
, "Unable to allocate envlist\n");
2550 /* add current environment into the list */
2551 for (wrk
= environ
; *wrk
!= NULL
; wrk
++) {
2552 (void) envlist_setenv(envlist
, *wrk
);
2565 if (!strcmp(r
, "-")) {
2567 } else if (!strcmp(r
, "d")) {
2569 const CPULogItem
*item
;
2575 mask
= cpu_str_to_log_mask(r
);
2577 printf("Log items (comma separated):\n");
2578 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
2579 printf("%-10s %s\n", item
->name
, item
->help
);
2584 } else if (!strcmp(r
, "E")) {
2586 if (envlist_setenv(envlist
, r
) != 0)
2588 } else if (!strcmp(r
, "U")) {
2590 if (envlist_unsetenv(envlist
, r
) != 0)
2592 } else if (!strcmp(r
, "0")) {
2595 } else if (!strcmp(r
, "s")) {
2599 x86_stack_size
= strtol(r
, (char **)&r
, 0);
2600 if (x86_stack_size
<= 0)
2603 x86_stack_size
*= 1024 * 1024;
2604 else if (*r
== 'k' || *r
== 'K')
2605 x86_stack_size
*= 1024;
2606 } else if (!strcmp(r
, "L")) {
2607 interp_prefix
= argv
[optind
++];
2608 } else if (!strcmp(r
, "p")) {
2611 qemu_host_page_size
= atoi(argv
[optind
++]);
2612 if (qemu_host_page_size
== 0 ||
2613 (qemu_host_page_size
& (qemu_host_page_size
- 1)) != 0) {
2614 fprintf(stderr
, "page size must be a power of two\n");
2617 } else if (!strcmp(r
, "g")) {
2620 gdbstub_port
= atoi(argv
[optind
++]);
2621 } else if (!strcmp(r
, "r")) {
2622 qemu_uname_release
= argv
[optind
++];
2623 } else if (!strcmp(r
, "cpu")) {
2624 cpu_model
= argv
[optind
++];
2625 if (cpu_model
== NULL
|| strcmp(cpu_model
, "?") == 0) {
2626 /* XXX: implement xxx_cpu_list for targets that still miss it */
2627 #if defined(cpu_list)
2628 cpu_list(stdout
, &fprintf
);
2632 #if defined(CONFIG_USE_GUEST_BASE)
2633 } else if (!strcmp(r
, "B")) {
2634 guest_base
= strtol(argv
[optind
++], NULL
, 0);
2635 have_guest_base
= 1;
2637 } else if (!strcmp(r
, "drop-ld-preload")) {
2638 (void) envlist_unsetenv(envlist
, "LD_PRELOAD");
2639 } else if (!strcmp(r
, "singlestep")) {
2641 } else if (!strcmp(r
, "strace")) {
2650 filename
= argv
[optind
];
2651 exec_path
= argv
[optind
];
2654 memset(regs
, 0, sizeof(struct target_pt_regs
));
2656 /* Zero out image_info */
2657 memset(info
, 0, sizeof(struct image_info
));
2659 memset(&bprm
, 0, sizeof (bprm
));
2661 /* Scan interp_prefix dir for replacement files. */
2662 init_paths(interp_prefix
);
2664 if (cpu_model
== NULL
) {
2665 #if defined(TARGET_I386)
2666 #ifdef TARGET_X86_64
2667 cpu_model
= "qemu64";
2669 cpu_model
= "qemu32";
2671 #elif defined(TARGET_ARM)
2673 #elif defined(TARGET_M68K)
2675 #elif defined(TARGET_SPARC)
2676 #ifdef TARGET_SPARC64
2677 cpu_model
= "TI UltraSparc II";
2679 cpu_model
= "Fujitsu MB86904";
2681 #elif defined(TARGET_MIPS)
2682 #if defined(TARGET_ABI_MIPSN32) || defined(TARGET_ABI_MIPSN64)
2687 #elif defined(TARGET_PPC)
2697 cpu_exec_init_all(0);
2698 /* NOTE: we need to init the CPU at this stage to get
2699 qemu_host_page_size */
2700 env
= cpu_init(cpu_model
);
2702 fprintf(stderr
, "Unable to find CPU definition\n");
2705 #if defined(TARGET_I386) || defined(TARGET_SPARC) || defined(TARGET_PPC)
2711 if (getenv("QEMU_STRACE")) {
2715 target_environ
= envlist_to_environ(envlist
, NULL
);
2716 envlist_free(envlist
);
2718 #if defined(CONFIG_USE_GUEST_BASE)
2720 * Now that page sizes are configured in cpu_init() we can do
2721 * proper page alignment for guest_base.
2723 guest_base
= HOST_PAGE_ALIGN(guest_base
);
2726 * Read in mmap_min_addr kernel parameter. This value is used
2727 * When loading the ELF image to determine whether guest_base
2730 * When user has explicitly set the quest base, we skip this
2733 if (!have_guest_base
) {
2736 if ((fp
= fopen("/proc/sys/vm/mmap_min_addr", "r")) != NULL
) {
2738 if (fscanf(fp
, "%lu", &tmp
) == 1) {
2739 mmap_min_addr
= tmp
;
2740 qemu_log("host mmap_min_addr=0x%lx\n", mmap_min_addr
);
2745 #endif /* CONFIG_USE_GUEST_BASE */
2748 * Prepare copy of argv vector for target.
2750 target_argc
= argc
- optind
;
2751 target_argv
= calloc(target_argc
+ 1, sizeof (char *));
2752 if (target_argv
== NULL
) {
2753 (void) fprintf(stderr
, "Unable to allocate memory for target_argv\n");
2758 * If argv0 is specified (using '-0' switch) we replace
2759 * argv[0] pointer with the given one.
2762 if (argv0
!= NULL
) {
2763 target_argv
[i
++] = strdup(argv0
);
2765 for (; i
< target_argc
; i
++) {
2766 target_argv
[i
] = strdup(argv
[optind
+ i
]);
2768 target_argv
[target_argc
] = NULL
;
2770 memset(ts
, 0, sizeof(TaskState
));
2771 init_task_state(ts
);
2772 /* build Task State */
2778 ret
= loader_exec(filename
, target_argv
, target_environ
, regs
,
2781 printf("Error %d while loading %s\n", ret
, filename
);
2785 for (i
= 0; i
< target_argc
; i
++) {
2786 free(target_argv
[i
]);
2790 for (wrk
= target_environ
; *wrk
; wrk
++) {
2794 free(target_environ
);
2796 if (qemu_log_enabled()) {
2797 #if defined(CONFIG_USE_GUEST_BASE)
2798 qemu_log("guest_base 0x%lx\n", guest_base
);
2802 qemu_log("start_brk 0x" TARGET_ABI_FMT_lx
"\n", info
->start_brk
);
2803 qemu_log("end_code 0x" TARGET_ABI_FMT_lx
"\n", info
->end_code
);
2804 qemu_log("start_code 0x" TARGET_ABI_FMT_lx
"\n",
2806 qemu_log("start_data 0x" TARGET_ABI_FMT_lx
"\n",
2808 qemu_log("end_data 0x" TARGET_ABI_FMT_lx
"\n", info
->end_data
);
2809 qemu_log("start_stack 0x" TARGET_ABI_FMT_lx
"\n",
2811 qemu_log("brk 0x" TARGET_ABI_FMT_lx
"\n", info
->brk
);
2812 qemu_log("entry 0x" TARGET_ABI_FMT_lx
"\n", info
->entry
);
2815 target_set_brk(info
->brk
);
2819 #if defined(TARGET_I386)
2820 cpu_x86_set_cpl(env
, 3);
2822 env
->cr
[0] = CR0_PG_MASK
| CR0_WP_MASK
| CR0_PE_MASK
;
2823 env
->hflags
|= HF_PE_MASK
;
2824 if (env
->cpuid_features
& CPUID_SSE
) {
2825 env
->cr
[4] |= CR4_OSFXSR_MASK
;
2826 env
->hflags
|= HF_OSFXSR_MASK
;
2828 #ifndef TARGET_ABI32
2829 /* enable 64 bit mode if possible */
2830 if (!(env
->cpuid_ext2_features
& CPUID_EXT2_LM
)) {
2831 fprintf(stderr
, "The selected x86 CPU does not support 64 bit mode\n");
2834 env
->cr
[4] |= CR4_PAE_MASK
;
2835 env
->efer
|= MSR_EFER_LMA
| MSR_EFER_LME
;
2836 env
->hflags
|= HF_LMA_MASK
;
2839 /* flags setup : we activate the IRQs by default as in user mode */
2840 env
->eflags
|= IF_MASK
;
2842 /* linux register setup */
2843 #ifndef TARGET_ABI32
2844 env
->regs
[R_EAX
] = regs
->rax
;
2845 env
->regs
[R_EBX
] = regs
->rbx
;
2846 env
->regs
[R_ECX
] = regs
->rcx
;
2847 env
->regs
[R_EDX
] = regs
->rdx
;
2848 env
->regs
[R_ESI
] = regs
->rsi
;
2849 env
->regs
[R_EDI
] = regs
->rdi
;
2850 env
->regs
[R_EBP
] = regs
->rbp
;
2851 env
->regs
[R_ESP
] = regs
->rsp
;
2852 env
->eip
= regs
->rip
;
2854 env
->regs
[R_EAX
] = regs
->eax
;
2855 env
->regs
[R_EBX
] = regs
->ebx
;
2856 env
->regs
[R_ECX
] = regs
->ecx
;
2857 env
->regs
[R_EDX
] = regs
->edx
;
2858 env
->regs
[R_ESI
] = regs
->esi
;
2859 env
->regs
[R_EDI
] = regs
->edi
;
2860 env
->regs
[R_EBP
] = regs
->ebp
;
2861 env
->regs
[R_ESP
] = regs
->esp
;
2862 env
->eip
= regs
->eip
;
2865 /* linux interrupt setup */
2866 #ifndef TARGET_ABI32
2867 env
->idt
.limit
= 511;
2869 env
->idt
.limit
= 255;
2871 env
->idt
.base
= target_mmap(0, sizeof(uint64_t) * (env
->idt
.limit
+ 1),
2872 PROT_READ
|PROT_WRITE
,
2873 MAP_ANONYMOUS
|MAP_PRIVATE
, -1, 0);
2874 idt_table
= g2h(env
->idt
.base
);
2897 /* linux segment setup */
2899 uint64_t *gdt_table
;
2900 env
->gdt
.base
= target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES
,
2901 PROT_READ
|PROT_WRITE
,
2902 MAP_ANONYMOUS
|MAP_PRIVATE
, -1, 0);
2903 env
->gdt
.limit
= sizeof(uint64_t) * TARGET_GDT_ENTRIES
- 1;
2904 gdt_table
= g2h(env
->gdt
.base
);
2906 write_dt(&gdt_table
[__USER_CS
>> 3], 0, 0xfffff,
2907 DESC_G_MASK
| DESC_B_MASK
| DESC_P_MASK
| DESC_S_MASK
|
2908 (3 << DESC_DPL_SHIFT
) | (0xa << DESC_TYPE_SHIFT
));
2910 /* 64 bit code segment */
2911 write_dt(&gdt_table
[__USER_CS
>> 3], 0, 0xfffff,
2912 DESC_G_MASK
| DESC_B_MASK
| DESC_P_MASK
| DESC_S_MASK
|
2914 (3 << DESC_DPL_SHIFT
) | (0xa << DESC_TYPE_SHIFT
));
2916 write_dt(&gdt_table
[__USER_DS
>> 3], 0, 0xfffff,
2917 DESC_G_MASK
| DESC_B_MASK
| DESC_P_MASK
| DESC_S_MASK
|
2918 (3 << DESC_DPL_SHIFT
) | (0x2 << DESC_TYPE_SHIFT
));
2920 cpu_x86_load_seg(env
, R_CS
, __USER_CS
);
2921 cpu_x86_load_seg(env
, R_SS
, __USER_DS
);
2923 cpu_x86_load_seg(env
, R_DS
, __USER_DS
);
2924 cpu_x86_load_seg(env
, R_ES
, __USER_DS
);
2925 cpu_x86_load_seg(env
, R_FS
, __USER_DS
);
2926 cpu_x86_load_seg(env
, R_GS
, __USER_DS
);
2927 /* This hack makes Wine work... */
2928 env
->segs
[R_FS
].selector
= 0;
2930 cpu_x86_load_seg(env
, R_DS
, 0);
2931 cpu_x86_load_seg(env
, R_ES
, 0);
2932 cpu_x86_load_seg(env
, R_FS
, 0);
2933 cpu_x86_load_seg(env
, R_GS
, 0);
2935 #elif defined(TARGET_ARM)
2938 cpsr_write(env
, regs
->uregs
[16], 0xffffffff);
2939 for(i
= 0; i
< 16; i
++) {
2940 env
->regs
[i
] = regs
->uregs
[i
];
2943 #elif defined(TARGET_SPARC)
2947 env
->npc
= regs
->npc
;
2949 for(i
= 0; i
< 8; i
++)
2950 env
->gregs
[i
] = regs
->u_regs
[i
];
2951 for(i
= 0; i
< 8; i
++)
2952 env
->regwptr
[i
] = regs
->u_regs
[i
+ 8];
2954 #elif defined(TARGET_PPC)
2958 #if defined(TARGET_PPC64)
2959 #if defined(TARGET_ABI32)
2960 env
->msr
&= ~((target_ulong
)1 << MSR_SF
);
2962 env
->msr
|= (target_ulong
)1 << MSR_SF
;
2965 env
->nip
= regs
->nip
;
2966 for(i
= 0; i
< 32; i
++) {
2967 env
->gpr
[i
] = regs
->gpr
[i
];
2970 #elif defined(TARGET_M68K)
2973 env
->dregs
[0] = regs
->d0
;
2974 env
->dregs
[1] = regs
->d1
;
2975 env
->dregs
[2] = regs
->d2
;
2976 env
->dregs
[3] = regs
->d3
;
2977 env
->dregs
[4] = regs
->d4
;
2978 env
->dregs
[5] = regs
->d5
;
2979 env
->dregs
[6] = regs
->d6
;
2980 env
->dregs
[7] = regs
->d7
;
2981 env
->aregs
[0] = regs
->a0
;
2982 env
->aregs
[1] = regs
->a1
;
2983 env
->aregs
[2] = regs
->a2
;
2984 env
->aregs
[3] = regs
->a3
;
2985 env
->aregs
[4] = regs
->a4
;
2986 env
->aregs
[5] = regs
->a5
;
2987 env
->aregs
[6] = regs
->a6
;
2988 env
->aregs
[7] = regs
->usp
;
2990 ts
->sim_syscalls
= 1;
2992 #elif defined(TARGET_MICROBLAZE)
2994 env
->regs
[0] = regs
->r0
;
2995 env
->regs
[1] = regs
->r1
;
2996 env
->regs
[2] = regs
->r2
;
2997 env
->regs
[3] = regs
->r3
;
2998 env
->regs
[4] = regs
->r4
;
2999 env
->regs
[5] = regs
->r5
;
3000 env
->regs
[6] = regs
->r6
;
3001 env
->regs
[7] = regs
->r7
;
3002 env
->regs
[8] = regs
->r8
;
3003 env
->regs
[9] = regs
->r9
;
3004 env
->regs
[10] = regs
->r10
;
3005 env
->regs
[11] = regs
->r11
;
3006 env
->regs
[12] = regs
->r12
;
3007 env
->regs
[13] = regs
->r13
;
3008 env
->regs
[14] = regs
->r14
;
3009 env
->regs
[15] = regs
->r15
;
3010 env
->regs
[16] = regs
->r16
;
3011 env
->regs
[17] = regs
->r17
;
3012 env
->regs
[18] = regs
->r18
;
3013 env
->regs
[19] = regs
->r19
;
3014 env
->regs
[20] = regs
->r20
;
3015 env
->regs
[21] = regs
->r21
;
3016 env
->regs
[22] = regs
->r22
;
3017 env
->regs
[23] = regs
->r23
;
3018 env
->regs
[24] = regs
->r24
;
3019 env
->regs
[25] = regs
->r25
;
3020 env
->regs
[26] = regs
->r26
;
3021 env
->regs
[27] = regs
->r27
;
3022 env
->regs
[28] = regs
->r28
;
3023 env
->regs
[29] = regs
->r29
;
3024 env
->regs
[30] = regs
->r30
;
3025 env
->regs
[31] = regs
->r31
;
3026 env
->sregs
[SR_PC
] = regs
->pc
;
3028 #elif defined(TARGET_MIPS)
3032 for(i
= 0; i
< 32; i
++) {
3033 env
->active_tc
.gpr
[i
] = regs
->regs
[i
];
3035 env
->active_tc
.PC
= regs
->cp0_epc
;
3037 #elif defined(TARGET_SH4)
3041 for(i
= 0; i
< 16; i
++) {
3042 env
->gregs
[i
] = regs
->regs
[i
];
3046 #elif defined(TARGET_ALPHA)
3050 for(i
= 0; i
< 28; i
++) {
3051 env
->ir
[i
] = ((abi_ulong
*)regs
)[i
];
3053 env
->ipr
[IPR_USP
] = regs
->usp
;
3054 env
->ir
[30] = regs
->usp
;
3056 env
->unique
= regs
->unique
;
3058 #elif defined(TARGET_CRIS)
3060 env
->regs
[0] = regs
->r0
;
3061 env
->regs
[1] = regs
->r1
;
3062 env
->regs
[2] = regs
->r2
;
3063 env
->regs
[3] = regs
->r3
;
3064 env
->regs
[4] = regs
->r4
;
3065 env
->regs
[5] = regs
->r5
;
3066 env
->regs
[6] = regs
->r6
;
3067 env
->regs
[7] = regs
->r7
;
3068 env
->regs
[8] = regs
->r8
;
3069 env
->regs
[9] = regs
->r9
;
3070 env
->regs
[10] = regs
->r10
;
3071 env
->regs
[11] = regs
->r11
;
3072 env
->regs
[12] = regs
->r12
;
3073 env
->regs
[13] = regs
->r13
;
3074 env
->regs
[14] = info
->start_stack
;
3075 env
->regs
[15] = regs
->acr
;
3076 env
->pc
= regs
->erp
;
3079 #error unsupported target CPU
3082 #if defined(TARGET_ARM) || defined(TARGET_M68K)
3083 ts
->stack_base
= info
->start_stack
;
3084 ts
->heap_base
= info
->brk
;
3085 /* This will be filled in on the first SYS_HEAPINFO call. */
3090 gdbserver_start (gdbstub_port
);
3091 gdb_handlesig(env
, 0);