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/>.
20 #include "qemu/osdep.h"
21 #include "qemu-common.h"
22 #include "qemu/units.h"
23 #include "sysemu/tcg.h"
24 #include "qemu-version.h"
25 #include <machine/trap.h>
27 #include "qapi/error.h"
29 #include "qemu/config-file.h"
30 #include "qemu/error-report.h"
31 #include "qemu/path.h"
32 #include "qemu/help_option.h"
33 #include "qemu/module.h"
35 #include "exec/exec-all.h"
37 #include "qemu/timer.h"
38 #include "qemu/envlist.h"
40 #include "trace/control.h"
43 unsigned long mmap_min_addr
;
44 unsigned long guest_base
;
46 unsigned long reserved_va
;
48 static const char *interp_prefix
= CONFIG_QEMU_INTERP_PREFIX
;
49 const char *qemu_uname_release
;
50 extern char **environ
;
51 enum BSDType bsd_type
;
53 /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
54 we allocate a bigger stack. Need a better solution, for example
55 by remapping the process stack directly at the right place */
56 unsigned long x86_stack_size
= 512 * 1024;
58 void gemu_log(const char *fmt
, ...)
63 vfprintf(stderr
, fmt
, ap
);
67 #if defined(TARGET_I386)
68 int cpu_get_pic_interrupt(CPUX86State
*env
)
78 void fork_end(int child
)
81 gdbserver_fork(thread_cpu
);
86 /***********************************************************/
87 /* CPUX86 core interface */
89 uint64_t cpu_get_tsc(CPUX86State
*env
)
91 return cpu_get_host_ticks();
94 static void write_dt(void *ptr
, unsigned long addr
, unsigned long limit
,
99 e1
= (addr
<< 16) | (limit
& 0xffff);
100 e2
= ((addr
>> 16) & 0xff) | (addr
& 0xff000000) | (limit
& 0x000f0000);
107 static uint64_t *idt_table
;
109 static void set_gate64(void *ptr
, unsigned int type
, unsigned int dpl
,
110 uint64_t addr
, unsigned int sel
)
113 e1
= (addr
& 0xffff) | (sel
<< 16);
114 e2
= (addr
& 0xffff0000) | 0x8000 | (dpl
<< 13) | (type
<< 8);
118 p
[2] = tswap32(addr
>> 32);
121 /* only dpl matters as we do only user space emulation */
122 static void set_idt(int n
, unsigned int dpl
)
124 set_gate64(idt_table
+ n
* 2, 0, dpl
, 0, 0);
127 static void set_gate(void *ptr
, unsigned int type
, unsigned int dpl
,
128 uint32_t addr
, unsigned int sel
)
131 e1
= (addr
& 0xffff) | (sel
<< 16);
132 e2
= (addr
& 0xffff0000) | 0x8000 | (dpl
<< 13) | (type
<< 8);
138 /* only dpl matters as we do only user space emulation */
139 static void set_idt(int n
, unsigned int dpl
)
141 set_gate(idt_table
+ n
, 0, dpl
, 0, 0);
145 void cpu_loop(CPUX86State
*env
)
147 CPUState
*cs
= env_cpu(env
);
150 //target_siginfo_t info;
154 trapnr
= cpu_exec(cs
);
156 process_queued_cpu_work(cs
);
160 /* syscall from int $0x80 */
161 if (bsd_type
== target_freebsd
) {
162 abi_ulong params
= (abi_ulong
) env
->regs
[R_ESP
] +
164 int32_t syscall_nr
= env
->regs
[R_EAX
];
165 int32_t arg1
, arg2
, arg3
, arg4
, arg5
, arg6
, arg7
, arg8
;
167 if (syscall_nr
== TARGET_FREEBSD_NR_syscall
) {
168 get_user_s32(syscall_nr
, params
);
169 params
+= sizeof(int32_t);
170 } else if (syscall_nr
== TARGET_FREEBSD_NR___syscall
) {
171 get_user_s32(syscall_nr
, params
);
172 params
+= sizeof(int64_t);
174 get_user_s32(arg1
, params
);
175 params
+= sizeof(int32_t);
176 get_user_s32(arg2
, params
);
177 params
+= sizeof(int32_t);
178 get_user_s32(arg3
, params
);
179 params
+= sizeof(int32_t);
180 get_user_s32(arg4
, params
);
181 params
+= sizeof(int32_t);
182 get_user_s32(arg5
, params
);
183 params
+= sizeof(int32_t);
184 get_user_s32(arg6
, params
);
185 params
+= sizeof(int32_t);
186 get_user_s32(arg7
, params
);
187 params
+= sizeof(int32_t);
188 get_user_s32(arg8
, params
);
189 env
->regs
[R_EAX
] = do_freebsd_syscall(env
,
199 } else { //if (bsd_type == target_openbsd)
200 env
->regs
[R_EAX
] = do_openbsd_syscall(env
,
209 if (((abi_ulong
)env
->regs
[R_EAX
]) >= (abi_ulong
)(-515)) {
210 env
->regs
[R_EAX
] = -env
->regs
[R_EAX
];
213 env
->eflags
&= ~CC_C
;
218 /* syscall from syscall instruction */
219 if (bsd_type
== target_freebsd
)
220 env
->regs
[R_EAX
] = do_freebsd_syscall(env
,
228 else { //if (bsd_type == target_openbsd)
229 env
->regs
[R_EAX
] = do_openbsd_syscall(env
,
238 env
->eip
= env
->exception_next_eip
;
239 if (((abi_ulong
)env
->regs
[R_EAX
]) >= (abi_ulong
)(-515)) {
240 env
->regs
[R_EAX
] = -env
->regs
[R_EAX
];
243 env
->eflags
&= ~CC_C
;
250 info
.si_signo
= SIGBUS
;
252 info
.si_code
= TARGET_SI_KERNEL
;
253 info
._sifields
._sigfault
._addr
= 0;
254 queue_signal(env
, info
.si_signo
, &info
);
257 /* XXX: potential problem if ABI32 */
258 #ifndef TARGET_X86_64
259 if (env
->eflags
& VM_MASK
) {
260 handle_vm86_fault(env
);
264 info
.si_signo
= SIGSEGV
;
266 info
.si_code
= TARGET_SI_KERNEL
;
267 info
._sifields
._sigfault
._addr
= 0;
268 queue_signal(env
, info
.si_signo
, &info
);
272 info
.si_signo
= SIGSEGV
;
274 if (!(env
->error_code
& 1))
275 info
.si_code
= TARGET_SEGV_MAPERR
;
277 info
.si_code
= TARGET_SEGV_ACCERR
;
278 info
._sifields
._sigfault
._addr
= env
->cr
[2];
279 queue_signal(env
, info
.si_signo
, &info
);
282 #ifndef TARGET_X86_64
283 if (env
->eflags
& VM_MASK
) {
284 handle_vm86_trap(env
, trapnr
);
288 /* division by zero */
289 info
.si_signo
= SIGFPE
;
291 info
.si_code
= TARGET_FPE_INTDIV
;
292 info
._sifields
._sigfault
._addr
= env
->eip
;
293 queue_signal(env
, info
.si_signo
, &info
);
298 #ifndef TARGET_X86_64
299 if (env
->eflags
& VM_MASK
) {
300 handle_vm86_trap(env
, trapnr
);
304 info
.si_signo
= SIGTRAP
;
306 if (trapnr
== EXCP01_DB
) {
307 info
.si_code
= TARGET_TRAP_BRKPT
;
308 info
._sifields
._sigfault
._addr
= env
->eip
;
310 info
.si_code
= TARGET_SI_KERNEL
;
311 info
._sifields
._sigfault
._addr
= 0;
313 queue_signal(env
, info
.si_signo
, &info
);
318 #ifndef TARGET_X86_64
319 if (env
->eflags
& VM_MASK
) {
320 handle_vm86_trap(env
, trapnr
);
324 info
.si_signo
= SIGSEGV
;
326 info
.si_code
= TARGET_SI_KERNEL
;
327 info
._sifields
._sigfault
._addr
= 0;
328 queue_signal(env
, info
.si_signo
, &info
);
332 info
.si_signo
= SIGILL
;
334 info
.si_code
= TARGET_ILL_ILLOPN
;
335 info
._sifields
._sigfault
._addr
= env
->eip
;
336 queue_signal(env
, info
.si_signo
, &info
);
340 /* just indicate that signals should be handled asap */
347 sig
= gdb_handlesig (env
, TARGET_SIGTRAP
);
352 info
.si_code
= TARGET_TRAP_BRKPT
;
353 queue_signal(env
, info
.si_signo
, &info
);
359 pc
= env
->segs
[R_CS
].base
+ env
->eip
;
360 fprintf(stderr
, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
364 process_pending_signals(env
);
370 #define SPARC64_STACK_BIAS 2047
373 /* WARNING: dealing with register windows _is_ complicated. More info
374 can be found at http://www.sics.se/~psm/sparcstack.html */
375 static inline int get_reg_index(CPUSPARCState
*env
, int cwp
, int index
)
377 index
= (index
+ cwp
* 16) % (16 * env
->nwindows
);
378 /* wrap handling : if cwp is on the last window, then we use the
379 registers 'after' the end */
380 if (index
< 8 && env
->cwp
== env
->nwindows
- 1)
381 index
+= 16 * env
->nwindows
;
385 /* save the register window 'cwp1' */
386 static inline void save_window_offset(CPUSPARCState
*env
, int cwp1
)
391 sp_ptr
= env
->regbase
[get_reg_index(env
, cwp1
, 6)];
392 #ifdef TARGET_SPARC64
394 sp_ptr
+= SPARC64_STACK_BIAS
;
396 #if defined(DEBUG_WIN)
397 printf("win_overflow: sp_ptr=0x" TARGET_ABI_FMT_lx
" save_cwp=%d\n",
400 for(i
= 0; i
< 16; i
++) {
401 /* FIXME - what to do if put_user() fails? */
402 put_user_ual(env
->regbase
[get_reg_index(env
, cwp1
, 8 + i
)], sp_ptr
);
403 sp_ptr
+= sizeof(abi_ulong
);
407 static void save_window(CPUSPARCState
*env
)
409 #ifndef TARGET_SPARC64
410 unsigned int new_wim
;
411 new_wim
= ((env
->wim
>> 1) | (env
->wim
<< (env
->nwindows
- 1))) &
412 ((1LL << env
->nwindows
) - 1);
413 save_window_offset(env
, cpu_cwp_dec(env
, env
->cwp
- 2));
416 save_window_offset(env
, cpu_cwp_dec(env
, env
->cwp
- 2));
422 static void restore_window(CPUSPARCState
*env
)
424 #ifndef TARGET_SPARC64
425 unsigned int new_wim
;
427 unsigned int i
, cwp1
;
430 #ifndef TARGET_SPARC64
431 new_wim
= ((env
->wim
<< 1) | (env
->wim
>> (env
->nwindows
- 1))) &
432 ((1LL << env
->nwindows
) - 1);
435 /* restore the invalid window */
436 cwp1
= cpu_cwp_inc(env
, env
->cwp
+ 1);
437 sp_ptr
= env
->regbase
[get_reg_index(env
, cwp1
, 6)];
438 #ifdef TARGET_SPARC64
440 sp_ptr
+= SPARC64_STACK_BIAS
;
442 #if defined(DEBUG_WIN)
443 printf("win_underflow: sp_ptr=0x" TARGET_ABI_FMT_lx
" load_cwp=%d\n",
446 for(i
= 0; i
< 16; i
++) {
447 /* FIXME - what to do if get_user() fails? */
448 get_user_ual(env
->regbase
[get_reg_index(env
, cwp1
, 8 + i
)], sp_ptr
);
449 sp_ptr
+= sizeof(abi_ulong
);
451 #ifdef TARGET_SPARC64
453 if (env
->cleanwin
< env
->nwindows
- 1)
461 static void flush_windows(CPUSPARCState
*env
)
467 /* if restore would invoke restore_window(), then we can stop */
468 cwp1
= cpu_cwp_inc(env
, env
->cwp
+ offset
);
469 #ifndef TARGET_SPARC64
470 if (env
->wim
& (1 << cwp1
))
473 if (env
->canrestore
== 0)
478 save_window_offset(env
, cwp1
);
481 cwp1
= cpu_cwp_inc(env
, env
->cwp
+ 1);
482 #ifndef TARGET_SPARC64
483 /* set wim so that restore will reload the registers */
484 env
->wim
= 1 << cwp1
;
486 #if defined(DEBUG_WIN)
487 printf("flush_windows: nb=%d\n", offset
- 1);
491 void cpu_loop(CPUSPARCState
*env
)
493 CPUState
*cs
= env_cpu(env
);
494 int trapnr
, ret
, syscall_nr
;
495 //target_siginfo_t info;
499 trapnr
= cpu_exec(cs
);
501 process_queued_cpu_work(cs
);
504 #ifndef TARGET_SPARC64
507 /* FreeBSD uses 0x141 for syscalls too */
509 if (bsd_type
!= target_freebsd
)
513 syscall_nr
= env
->gregs
[1];
514 if (bsd_type
== target_freebsd
)
515 ret
= do_freebsd_syscall(env
, syscall_nr
,
516 env
->regwptr
[0], env
->regwptr
[1],
517 env
->regwptr
[2], env
->regwptr
[3],
518 env
->regwptr
[4], env
->regwptr
[5], 0, 0);
519 else if (bsd_type
== target_netbsd
)
520 ret
= do_netbsd_syscall(env
, syscall_nr
,
521 env
->regwptr
[0], env
->regwptr
[1],
522 env
->regwptr
[2], env
->regwptr
[3],
523 env
->regwptr
[4], env
->regwptr
[5]);
524 else { //if (bsd_type == target_openbsd)
525 #if defined(TARGET_SPARC64)
526 syscall_nr
&= ~(TARGET_OPENBSD_SYSCALL_G7RFLAG
|
527 TARGET_OPENBSD_SYSCALL_G2RFLAG
);
529 ret
= do_openbsd_syscall(env
, syscall_nr
,
530 env
->regwptr
[0], env
->regwptr
[1],
531 env
->regwptr
[2], env
->regwptr
[3],
532 env
->regwptr
[4], env
->regwptr
[5]);
534 if ((unsigned int)ret
>= (unsigned int)(-515)) {
536 #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
537 env
->xcc
|= PSR_CARRY
;
539 env
->psr
|= PSR_CARRY
;
542 #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
543 env
->xcc
&= ~PSR_CARRY
;
545 env
->psr
&= ~PSR_CARRY
;
548 env
->regwptr
[0] = ret
;
549 /* next instruction */
550 #if defined(TARGET_SPARC64)
551 if (bsd_type
== target_openbsd
&&
552 env
->gregs
[1] & TARGET_OPENBSD_SYSCALL_G2RFLAG
) {
553 env
->pc
= env
->gregs
[2];
554 env
->npc
= env
->pc
+ 4;
555 } else if (bsd_type
== target_openbsd
&&
556 env
->gregs
[1] & TARGET_OPENBSD_SYSCALL_G7RFLAG
) {
557 env
->pc
= env
->gregs
[7];
558 env
->npc
= env
->pc
+ 4;
561 env
->npc
= env
->npc
+ 4;
565 env
->npc
= env
->npc
+ 4;
568 case 0x83: /* flush windows */
573 /* next instruction */
575 env
->npc
= env
->npc
+ 4;
577 #ifndef TARGET_SPARC64
578 case TT_WIN_OVF
: /* window overflow */
581 case TT_WIN_UNF
: /* window underflow */
588 info
.si_signo
= SIGSEGV
;
590 /* XXX: check env->error_code */
591 info
.si_code
= TARGET_SEGV_MAPERR
;
592 info
._sifields
._sigfault
._addr
= env
->mmuregs
[4];
593 queue_signal(env
, info
.si_signo
, &info
);
598 case TT_SPILL
: /* window overflow */
601 case TT_FILL
: /* window underflow */
608 info
.si_signo
= SIGSEGV
;
610 /* XXX: check env->error_code */
611 info
.si_code
= TARGET_SEGV_MAPERR
;
612 if (trapnr
== TT_DFAULT
)
613 info
._sifields
._sigfault
._addr
= env
->dmmuregs
[4];
615 info
._sifields
._sigfault
._addr
= env
->tsptr
->tpc
;
616 //queue_signal(env, info.si_signo, &info);
622 /* just indicate that signals should be handled asap */
629 gdb_handlesig(cs
, TARGET_SIGTRAP
);
635 info
.si_code
= TARGET_TRAP_BRKPT
;
636 //queue_signal(env, info.si_signo, &info);
642 #ifdef TARGET_SPARC64
645 printf ("Unhandled trap: 0x%x\n", trapnr
);
646 cpu_dump_state(cs
, stderr
, 0);
649 process_pending_signals (env
);
655 static void usage(void)
657 printf("qemu-" TARGET_NAME
" version " QEMU_FULL_VERSION
658 "\n" QEMU_COPYRIGHT
"\n"
659 "usage: qemu-" TARGET_NAME
" [options] program [arguments...]\n"
660 "BSD CPU emulator (compiled for %s emulation)\n"
662 "Standard options:\n"
663 "-h print this help\n"
664 "-g port wait gdb connection to port\n"
665 "-L path set the elf interpreter prefix (default=%s)\n"
666 "-s size set the stack size in bytes (default=%ld)\n"
667 "-cpu model select CPU (-cpu help for list)\n"
668 "-drop-ld-preload drop LD_PRELOAD for target process\n"
669 "-E var=value sets/modifies targets environment variable(s)\n"
670 "-U var unsets targets environment variable(s)\n"
671 "-B address set guest_base address to address\n"
672 "-bsd type select emulated BSD type FreeBSD/NetBSD/OpenBSD (default)\n"
675 "-d item1[,...] enable logging of specified items\n"
676 " (use '-d help' for a list of log items)\n"
677 "-D logfile write logs to 'logfile' (default stderr)\n"
678 "-p pagesize set the host page size to 'pagesize'\n"
679 "-singlestep always run in singlestep mode\n"
680 "-strace log system calls\n"
681 "-trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
682 " specify tracing options\n"
684 "Environment variables:\n"
685 "QEMU_STRACE Print system calls and arguments similar to the\n"
686 " 'strace' program. Enable by setting to any value.\n"
687 "You can use -E and -U options to set/unset environment variables\n"
688 "for target process. It is possible to provide several variables\n"
689 "by repeating the option. For example:\n"
690 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
691 "Note that if you provide several changes to single variable\n"
692 "last change will stay in effect.\n"
694 QEMU_HELP_BOTTOM
"\n"
702 THREAD CPUState
*thread_cpu
;
704 bool qemu_cpu_is_self(CPUState
*cpu
)
706 return thread_cpu
== cpu
;
709 void qemu_cpu_kick(CPUState
*cpu
)
714 /* Assumes contents are already zeroed. */
715 void init_task_state(TaskState
*ts
)
720 ts
->first_free
= ts
->sigqueue_table
;
721 for (i
= 0; i
< MAX_SIGQUEUE_SIZE
- 1; i
++) {
722 ts
->sigqueue_table
[i
].next
= &ts
->sigqueue_table
[i
+ 1];
724 ts
->sigqueue_table
[i
].next
= NULL
;
727 int main(int argc
, char **argv
)
729 const char *filename
;
730 const char *cpu_model
;
731 const char *cpu_type
;
732 const char *log_file
= NULL
;
733 const char *log_mask
= NULL
;
734 struct target_pt_regs regs1
, *regs
= ®s1
;
735 struct image_info info1
, *info
= &info1
;
736 TaskState ts1
, *ts
= &ts1
;
741 int gdbstub_port
= 0;
742 char **target_environ
, **wrk
;
743 envlist_t
*envlist
= NULL
;
744 char *trace_file
= NULL
;
745 bsd_type
= target_openbsd
;
751 module_call_init(MODULE_INIT_TRACE
);
752 qemu_init_cpu_list();
753 module_call_init(MODULE_INIT_QOM
);
755 envlist
= envlist_create();
757 /* add current environment into the list */
758 for (wrk
= environ
; *wrk
!= NULL
; wrk
++) {
759 (void) envlist_setenv(envlist
, *wrk
);
764 qemu_add_opts(&qemu_trace_opts
);
775 if (!strcmp(r
, "-")) {
777 } else if (!strcmp(r
, "d")) {
778 if (optind
>= argc
) {
781 log_mask
= argv
[optind
++];
782 } else if (!strcmp(r
, "D")) {
783 if (optind
>= argc
) {
786 log_file
= argv
[optind
++];
787 } else if (!strcmp(r
, "E")) {
789 if (envlist_setenv(envlist
, r
) != 0)
791 } else if (!strcmp(r
, "ignore-environment")) {
792 envlist_free(envlist
);
793 envlist
= envlist_create();
794 } else if (!strcmp(r
, "U")) {
796 if (envlist_unsetenv(envlist
, r
) != 0)
798 } else if (!strcmp(r
, "s")) {
800 x86_stack_size
= strtol(r
, (char **)&r
, 0);
801 if (x86_stack_size
<= 0)
804 x86_stack_size
*= MiB
;
805 else if (*r
== 'k' || *r
== 'K')
806 x86_stack_size
*= KiB
;
807 } else if (!strcmp(r
, "L")) {
808 interp_prefix
= argv
[optind
++];
809 } else if (!strcmp(r
, "p")) {
810 qemu_host_page_size
= atoi(argv
[optind
++]);
811 if (qemu_host_page_size
== 0 ||
812 (qemu_host_page_size
& (qemu_host_page_size
- 1)) != 0) {
813 fprintf(stderr
, "page size must be a power of two\n");
816 } else if (!strcmp(r
, "g")) {
817 gdbstub_port
= atoi(argv
[optind
++]);
818 } else if (!strcmp(r
, "r")) {
819 qemu_uname_release
= argv
[optind
++];
820 } else if (!strcmp(r
, "cpu")) {
821 cpu_model
= argv
[optind
++];
822 if (is_help_option(cpu_model
)) {
823 /* XXX: implement xxx_cpu_list for targets that still miss it */
824 #if defined(cpu_list)
829 } else if (!strcmp(r
, "B")) {
830 guest_base
= strtol(argv
[optind
++], NULL
, 0);
832 } else if (!strcmp(r
, "drop-ld-preload")) {
833 (void) envlist_unsetenv(envlist
, "LD_PRELOAD");
834 } else if (!strcmp(r
, "bsd")) {
835 if (!strcasecmp(argv
[optind
], "freebsd")) {
836 bsd_type
= target_freebsd
;
837 } else if (!strcasecmp(argv
[optind
], "netbsd")) {
838 bsd_type
= target_netbsd
;
839 } else if (!strcasecmp(argv
[optind
], "openbsd")) {
840 bsd_type
= target_openbsd
;
845 } else if (!strcmp(r
, "singlestep")) {
847 } else if (!strcmp(r
, "strace")) {
849 } else if (!strcmp(r
, "trace")) {
851 trace_file
= trace_opt_parse(optarg
);
858 qemu_log_needs_buffers();
859 qemu_set_log_filename(log_file
, &error_fatal
);
863 mask
= qemu_str_to_log_mask(log_mask
);
865 qemu_print_log_usage(stdout
);
871 if (optind
>= argc
) {
874 filename
= argv
[optind
];
876 if (!trace_init_backends()) {
879 trace_init_file(trace_file
);
882 memset(regs
, 0, sizeof(struct target_pt_regs
));
884 /* Zero out image_info */
885 memset(info
, 0, sizeof(struct image_info
));
887 /* Scan interp_prefix dir for replacement files. */
888 init_paths(interp_prefix
);
890 if (cpu_model
== NULL
) {
891 #if defined(TARGET_I386)
893 cpu_model
= "qemu64";
895 cpu_model
= "qemu32";
897 #elif defined(TARGET_SPARC)
898 #ifdef TARGET_SPARC64
899 cpu_model
= "TI UltraSparc II";
901 cpu_model
= "Fujitsu MB86904";
908 /* init tcg before creating CPUs and to get qemu_host_page_size */
911 cpu_type
= parse_cpu_option(cpu_model
);
912 cpu
= cpu_create(cpu_type
);
914 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
919 if (getenv("QEMU_STRACE")) {
923 target_environ
= envlist_to_environ(envlist
, NULL
);
924 envlist_free(envlist
);
927 * Now that page sizes are configured in tcg_exec_init() we can do
928 * proper page alignment for guest_base.
930 guest_base
= HOST_PAGE_ALIGN(guest_base
);
933 * Read in mmap_min_addr kernel parameter. This value is used
934 * When loading the ELF image to determine whether guest_base
937 * When user has explicitly set the quest base, we skip this
940 if (!have_guest_base
) {
943 if ((fp
= fopen("/proc/sys/vm/mmap_min_addr", "r")) != NULL
) {
945 if (fscanf(fp
, "%lu", &tmp
) == 1) {
947 qemu_log_mask(CPU_LOG_PAGE
, "host mmap_min_addr=0x%lx\n", mmap_min_addr
);
953 if (loader_exec(filename
, argv
+optind
, target_environ
, regs
, info
) != 0) {
954 printf("Error loading %s\n", filename
);
958 for (wrk
= target_environ
; *wrk
; wrk
++) {
962 g_free(target_environ
);
964 if (qemu_loglevel_mask(CPU_LOG_PAGE
)) {
965 qemu_log("guest_base 0x%lx\n", guest_base
);
968 qemu_log("start_brk 0x" TARGET_ABI_FMT_lx
"\n", info
->start_brk
);
969 qemu_log("end_code 0x" TARGET_ABI_FMT_lx
"\n", info
->end_code
);
970 qemu_log("start_code 0x" TARGET_ABI_FMT_lx
"\n",
972 qemu_log("start_data 0x" TARGET_ABI_FMT_lx
"\n",
974 qemu_log("end_data 0x" TARGET_ABI_FMT_lx
"\n", info
->end_data
);
975 qemu_log("start_stack 0x" TARGET_ABI_FMT_lx
"\n",
977 qemu_log("brk 0x" TARGET_ABI_FMT_lx
"\n", info
->brk
);
978 qemu_log("entry 0x" TARGET_ABI_FMT_lx
"\n", info
->entry
);
981 target_set_brk(info
->brk
);
985 /* Now that we've loaded the binary, GUEST_BASE is fixed. Delay
986 generating the prologue until now so that the prologue can take
987 the real value of GUEST_BASE into account. */
988 tcg_prologue_init(tcg_ctx
);
991 /* build Task State */
992 memset(ts
, 0, sizeof(TaskState
));
997 #if defined(TARGET_I386)
998 env
->cr
[0] = CR0_PG_MASK
| CR0_WP_MASK
| CR0_PE_MASK
;
999 env
->hflags
|= HF_PE_MASK
| HF_CPL_MASK
;
1000 if (env
->features
[FEAT_1_EDX
] & CPUID_SSE
) {
1001 env
->cr
[4] |= CR4_OSFXSR_MASK
;
1002 env
->hflags
|= HF_OSFXSR_MASK
;
1004 #ifndef TARGET_ABI32
1005 /* enable 64 bit mode if possible */
1006 if (!(env
->features
[FEAT_8000_0001_EDX
] & CPUID_EXT2_LM
)) {
1007 fprintf(stderr
, "The selected x86 CPU does not support 64 bit mode\n");
1010 env
->cr
[4] |= CR4_PAE_MASK
;
1011 env
->efer
|= MSR_EFER_LMA
| MSR_EFER_LME
;
1012 env
->hflags
|= HF_LMA_MASK
;
1015 /* flags setup : we activate the IRQs by default as in user mode */
1016 env
->eflags
|= IF_MASK
;
1018 /* linux register setup */
1019 #ifndef TARGET_ABI32
1020 env
->regs
[R_EAX
] = regs
->rax
;
1021 env
->regs
[R_EBX
] = regs
->rbx
;
1022 env
->regs
[R_ECX
] = regs
->rcx
;
1023 env
->regs
[R_EDX
] = regs
->rdx
;
1024 env
->regs
[R_ESI
] = regs
->rsi
;
1025 env
->regs
[R_EDI
] = regs
->rdi
;
1026 env
->regs
[R_EBP
] = regs
->rbp
;
1027 env
->regs
[R_ESP
] = regs
->rsp
;
1028 env
->eip
= regs
->rip
;
1030 env
->regs
[R_EAX
] = regs
->eax
;
1031 env
->regs
[R_EBX
] = regs
->ebx
;
1032 env
->regs
[R_ECX
] = regs
->ecx
;
1033 env
->regs
[R_EDX
] = regs
->edx
;
1034 env
->regs
[R_ESI
] = regs
->esi
;
1035 env
->regs
[R_EDI
] = regs
->edi
;
1036 env
->regs
[R_EBP
] = regs
->ebp
;
1037 env
->regs
[R_ESP
] = regs
->esp
;
1038 env
->eip
= regs
->eip
;
1041 /* linux interrupt setup */
1042 #ifndef TARGET_ABI32
1043 env
->idt
.limit
= 511;
1045 env
->idt
.limit
= 255;
1047 env
->idt
.base
= target_mmap(0, sizeof(uint64_t) * (env
->idt
.limit
+ 1),
1048 PROT_READ
|PROT_WRITE
,
1049 MAP_ANONYMOUS
|MAP_PRIVATE
, -1, 0);
1050 idt_table
= g2h(env
->idt
.base
);
1073 /* linux segment setup */
1075 uint64_t *gdt_table
;
1076 env
->gdt
.base
= target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES
,
1077 PROT_READ
|PROT_WRITE
,
1078 MAP_ANONYMOUS
|MAP_PRIVATE
, -1, 0);
1079 env
->gdt
.limit
= sizeof(uint64_t) * TARGET_GDT_ENTRIES
- 1;
1080 gdt_table
= g2h(env
->gdt
.base
);
1082 write_dt(&gdt_table
[__USER_CS
>> 3], 0, 0xfffff,
1083 DESC_G_MASK
| DESC_B_MASK
| DESC_P_MASK
| DESC_S_MASK
|
1084 (3 << DESC_DPL_SHIFT
) | (0xa << DESC_TYPE_SHIFT
));
1086 /* 64 bit code segment */
1087 write_dt(&gdt_table
[__USER_CS
>> 3], 0, 0xfffff,
1088 DESC_G_MASK
| DESC_B_MASK
| DESC_P_MASK
| DESC_S_MASK
|
1090 (3 << DESC_DPL_SHIFT
) | (0xa << DESC_TYPE_SHIFT
));
1092 write_dt(&gdt_table
[__USER_DS
>> 3], 0, 0xfffff,
1093 DESC_G_MASK
| DESC_B_MASK
| DESC_P_MASK
| DESC_S_MASK
|
1094 (3 << DESC_DPL_SHIFT
) | (0x2 << DESC_TYPE_SHIFT
));
1097 cpu_x86_load_seg(env
, R_CS
, __USER_CS
);
1098 cpu_x86_load_seg(env
, R_SS
, __USER_DS
);
1100 cpu_x86_load_seg(env
, R_DS
, __USER_DS
);
1101 cpu_x86_load_seg(env
, R_ES
, __USER_DS
);
1102 cpu_x86_load_seg(env
, R_FS
, __USER_DS
);
1103 cpu_x86_load_seg(env
, R_GS
, __USER_DS
);
1104 /* This hack makes Wine work... */
1105 env
->segs
[R_FS
].selector
= 0;
1107 cpu_x86_load_seg(env
, R_DS
, 0);
1108 cpu_x86_load_seg(env
, R_ES
, 0);
1109 cpu_x86_load_seg(env
, R_FS
, 0);
1110 cpu_x86_load_seg(env
, R_GS
, 0);
1112 #elif defined(TARGET_SPARC)
1116 env
->npc
= regs
->npc
;
1118 for(i
= 0; i
< 8; i
++)
1119 env
->gregs
[i
] = regs
->u_regs
[i
];
1120 for(i
= 0; i
< 8; i
++)
1121 env
->regwptr
[i
] = regs
->u_regs
[i
+ 8];
1124 #error unsupported target CPU
1128 gdbserver_start (gdbstub_port
);
1129 gdb_handlesig(cpu
, 0);