4 * Copyright (c) 2003 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, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #define DEBUG_LOGFILE "/tmp/qemu.log"
32 #include <crt_externs.h>
33 # define environ (*_NSGetEnviron())
36 static const char *interp_prefix = CONFIG_QEMU_PREFIX;
38 #if defined(__i386__) && !defined(CONFIG_STATIC)
39 /* Force usage of an ELF interpreter even if it is an ELF shared
41 const char interp[] __attribute__((section(".interp"))) = "/lib/ld-linux.so.2";
44 /* for recent libc, we add these dummy symbols which are not declared
45 when generating a linked object (bug in ld ?) */
46 #if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined(CONFIG_STATIC)
47 long __preinit_array_start[0];
48 long __preinit_array_end[0];
49 long __init_array_start[0];
50 long __init_array_end[0];
51 long __fini_array_start[0];
52 long __fini_array_end[0];
55 /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
56 we allocate a bigger stack. Need a better solution, for example
57 by remapping the process stack directly at the right place */
58 unsigned long x86_stack_size = 512 * 1024;
60 void gemu_log(const char *fmt, ...)
65 vfprintf(stderr, fmt, ap);
69 void cpu_outb(CPUState *env, int addr, int val)
71 fprintf(stderr, "outb: port=0x%04x, data=%02x\n", addr, val);
74 void cpu_outw(CPUState *env, int addr, int val)
76 fprintf(stderr, "outw: port=0x%04x, data=%04x\n", addr, val);
79 void cpu_outl(CPUState *env, int addr, int val)
81 fprintf(stderr, "outl: port=0x%04x, data=%08x\n", addr, val);
84 int cpu_inb(CPUState *env, int addr)
86 fprintf(stderr, "inb: port=0x%04x\n", addr);
90 int cpu_inw(CPUState *env, int addr)
92 fprintf(stderr, "inw: port=0x%04x\n", addr);
96 int cpu_inl(CPUState *env, int addr)
98 fprintf(stderr, "inl: port=0x%04x\n", addr);
102 int cpu_get_pic_interrupt(CPUState *env)
107 /* timers for rdtsc */
109 #if defined(__i386__)
111 int64_t cpu_get_real_ticks(void)
114 asm volatile ("rdtsc" : "=A" (val));
118 #elif defined(__x86_64__)
120 int64_t cpu_get_real_ticks(void)
124 asm volatile("rdtsc" : "=a" (low), "=d" (high));
133 static uint64_t emu_time;
135 int64_t cpu_get_real_ticks(void)
143 /***********************************************************/
144 /* CPUX86 core interface */
146 uint64_t cpu_get_tsc(CPUX86State *env)
148 return cpu_get_real_ticks();
151 static void write_dt(void *ptr, unsigned long addr, unsigned long limit,
155 e1 = (addr << 16) | (limit & 0xffff);
156 e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000);
158 stl((uint8_t *)ptr, e1);
159 stl((uint8_t *)ptr + 4, e2);
162 static void set_gate(void *ptr, unsigned int type, unsigned int dpl,
163 unsigned long addr, unsigned int sel)
166 e1 = (addr & 0xffff) | (sel << 16);
167 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
168 stl((uint8_t *)ptr, e1);
169 stl((uint8_t *)ptr + 4, e2);
172 uint64_t gdt_table[6];
173 uint64_t idt_table[256];
175 /* only dpl matters as we do only user space emulation */
176 static void set_idt(int n, unsigned int dpl)
178 set_gate(idt_table + n, 0, dpl, 0, 0);
181 void cpu_loop(CPUX86State *env)
185 target_siginfo_t info;
188 trapnr = cpu_x86_exec(env);
192 env->regs[R_EAX] = do_syscall(env,
203 info.si_signo = SIGBUS;
205 info.si_code = TARGET_SI_KERNEL;
206 info._sifields._sigfault._addr = 0;
207 queue_signal(info.si_signo, &info);
210 if (env->eflags & VM_MASK) {
211 handle_vm86_fault(env);
213 info.si_signo = SIGSEGV;
215 info.si_code = TARGET_SI_KERNEL;
216 info._sifields._sigfault._addr = 0;
217 queue_signal(info.si_signo, &info);
221 info.si_signo = SIGSEGV;
223 if (!(env->error_code & 1))
224 info.si_code = TARGET_SEGV_MAPERR;
226 info.si_code = TARGET_SEGV_ACCERR;
227 info._sifields._sigfault._addr = env->cr[2];
228 queue_signal(info.si_signo, &info);
231 if (env->eflags & VM_MASK) {
232 handle_vm86_trap(env, trapnr);
234 /* division by zero */
235 info.si_signo = SIGFPE;
237 info.si_code = TARGET_FPE_INTDIV;
238 info._sifields._sigfault._addr = env->eip;
239 queue_signal(info.si_signo, &info);
244 if (env->eflags & VM_MASK) {
245 handle_vm86_trap(env, trapnr);
247 info.si_signo = SIGTRAP;
249 if (trapnr == EXCP01_SSTP) {
250 info.si_code = TARGET_TRAP_BRKPT;
251 info._sifields._sigfault._addr = env->eip;
253 info.si_code = TARGET_SI_KERNEL;
254 info._sifields._sigfault._addr = 0;
256 queue_signal(info.si_signo, &info);
261 if (env->eflags & VM_MASK) {
262 handle_vm86_trap(env, trapnr);
264 info.si_signo = SIGSEGV;
266 info.si_code = TARGET_SI_KERNEL;
267 info._sifields._sigfault._addr = 0;
268 queue_signal(info.si_signo, &info);
272 info.si_signo = SIGILL;
274 info.si_code = TARGET_ILL_ILLOPN;
275 info._sifields._sigfault._addr = env->eip;
276 queue_signal(info.si_signo, &info);
279 /* just indicate that signals should be handled asap */
285 sig = gdb_handlesig (env, TARGET_SIGTRAP);
290 info.si_code = TARGET_TRAP_BRKPT;
291 queue_signal(info.si_signo, &info);
296 pc = env->segs[R_CS].base + env->eip;
297 fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
301 process_pending_signals(env);
308 /* XXX: find a better solution */
309 extern void tb_invalidate_page_range(target_ulong start, target_ulong end);
311 static void arm_cache_flush(target_ulong start, target_ulong last)
313 target_ulong addr, last1;
319 last1 = ((addr + TARGET_PAGE_SIZE) & TARGET_PAGE_MASK) - 1;
322 tb_invalidate_page_range(addr, last1 + 1);
329 void cpu_loop(CPUARMState *env)
332 unsigned int n, insn;
333 target_siginfo_t info;
337 trapnr = cpu_arm_exec(env);
341 TaskState *ts = env->opaque;
344 /* we handle the FPU emulation here, as Linux */
345 /* we get the opcode */
346 opcode = ldl_raw((uint8_t *)env->regs[15]);
348 if (EmulateAll(opcode, &ts->fpa, env->regs) == 0) {
349 info.si_signo = SIGILL;
351 info.si_code = TARGET_ILL_ILLOPN;
352 info._sifields._sigfault._addr = env->regs[15];
353 queue_signal(info.si_signo, &info);
364 insn = lduw((void *)(env->regs[15] - 2));
367 insn = ldl((void *)(env->regs[15] - 4));
371 if (n == ARM_NR_cacheflush) {
372 arm_cache_flush(env->regs[0], env->regs[1]);
373 } else if (n == ARM_NR_semihosting
374 || n == ARM_NR_thumb_semihosting) {
375 env->regs[0] = do_arm_semihosting (env);
376 } else if (n >= ARM_SYSCALL_BASE
377 || (env->thumb && n == ARM_THUMB_SYSCALL)) {
382 n -= ARM_SYSCALL_BASE;
384 env->regs[0] = do_syscall(env,
398 /* just indicate that signals should be handled asap */
400 case EXCP_PREFETCH_ABORT:
401 addr = env->cp15.c6_data;
403 case EXCP_DATA_ABORT:
404 addr = env->cp15.c6_insn;
408 info.si_signo = SIGSEGV;
410 /* XXX: check env->error_code */
411 info.si_code = TARGET_SEGV_MAPERR;
412 info._sifields._sigfault._addr = addr;
413 queue_signal(info.si_signo, &info);
420 sig = gdb_handlesig (env, TARGET_SIGTRAP);
425 info.si_code = TARGET_TRAP_BRKPT;
426 queue_signal(info.si_signo, &info);
432 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
434 cpu_dump_state(env, stderr, fprintf, 0);
437 process_pending_signals(env);
447 /* WARNING: dealing with register windows _is_ complicated. More info
448 can be found at http://www.sics.se/~psm/sparcstack.html */
449 static inline int get_reg_index(CPUSPARCState *env, int cwp, int index)
451 index = (index + cwp * 16) & (16 * NWINDOWS - 1);
452 /* wrap handling : if cwp is on the last window, then we use the
453 registers 'after' the end */
454 if (index < 8 && env->cwp == (NWINDOWS - 1))
455 index += (16 * NWINDOWS);
459 /* save the register window 'cwp1' */
460 static inline void save_window_offset(CPUSPARCState *env, int cwp1)
465 sp_ptr = (uint32_t *)(env->regbase[get_reg_index(env, cwp1, 6)]);
466 #if defined(DEBUG_WIN)
467 printf("win_overflow: sp_ptr=0x%x save_cwp=%d\n",
470 for(i = 0; i < 16; i++) {
471 put_user(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
476 static void save_window(CPUSPARCState *env)
478 unsigned int new_wim;
479 new_wim = ((env->wim >> 1) | (env->wim << (NWINDOWS - 1))) &
480 ((1LL << NWINDOWS) - 1);
481 save_window_offset(env, (env->cwp - 2) & (NWINDOWS - 1));
485 static void restore_window(CPUSPARCState *env)
487 unsigned int new_wim, i, cwp1;
488 uint32_t *sp_ptr, reg;
490 new_wim = ((env->wim << 1) | (env->wim >> (NWINDOWS - 1))) &
491 ((1LL << NWINDOWS) - 1);
493 /* restore the invalid window */
494 cwp1 = (env->cwp + 1) & (NWINDOWS - 1);
495 sp_ptr = (uint32_t *)(env->regbase[get_reg_index(env, cwp1, 6)]);
496 #if defined(DEBUG_WIN)
497 printf("win_underflow: sp_ptr=0x%x load_cwp=%d\n",
500 for(i = 0; i < 16; i++) {
501 get_user(reg, sp_ptr);
502 env->regbase[get_reg_index(env, cwp1, 8 + i)] = reg;
508 static void flush_windows(CPUSPARCState *env)
514 /* if restore would invoke restore_window(), then we can stop */
515 cwp1 = (env->cwp + offset) & (NWINDOWS - 1);
516 if (env->wim & (1 << cwp1))
518 save_window_offset(env, cwp1);
521 /* set wim so that restore will reload the registers */
522 cwp1 = (env->cwp + 1) & (NWINDOWS - 1);
523 env->wim = 1 << cwp1;
524 #if defined(DEBUG_WIN)
525 printf("flush_windows: nb=%d\n", offset - 1);
529 void cpu_loop (CPUSPARCState *env)
532 target_siginfo_t info;
535 trapnr = cpu_sparc_exec (env);
540 ret = do_syscall (env, env->gregs[1],
541 env->regwptr[0], env->regwptr[1],
542 env->regwptr[2], env->regwptr[3],
543 env->regwptr[4], env->regwptr[5]);
544 if ((unsigned int)ret >= (unsigned int)(-515)) {
545 env->psr |= PSR_CARRY;
548 env->psr &= ~PSR_CARRY;
550 env->regwptr[0] = ret;
551 /* next instruction */
553 env->npc = env->npc + 4;
555 case 0x83: /* flush windows */
557 /* next instruction */
559 env->npc = env->npc + 4;
561 #ifndef TARGET_SPARC64
562 case TT_WIN_OVF: /* window overflow */
565 case TT_WIN_UNF: /* window underflow */
571 info.si_signo = SIGSEGV;
573 /* XXX: check env->error_code */
574 info.si_code = TARGET_SEGV_MAPERR;
575 info._sifields._sigfault._addr = env->mmuregs[4];
576 queue_signal(info.si_signo, &info);
582 case 0x100: // XXX, why do we get these?
588 sig = gdb_handlesig (env, TARGET_SIGTRAP);
593 info.si_code = TARGET_TRAP_BRKPT;
594 queue_signal(info.si_signo, &info);
599 printf ("Unhandled trap: 0x%x\n", trapnr);
600 cpu_dump_state(env, stderr, fprintf, 0);
603 process_pending_signals (env);
611 static inline uint64_t cpu_ppc_get_tb (CPUState *env)
617 uint32_t cpu_ppc_load_tbl (CPUState *env)
619 return cpu_ppc_get_tb(env) & 0xFFFFFFFF;
622 uint32_t cpu_ppc_load_tbu (CPUState *env)
624 return cpu_ppc_get_tb(env) >> 32;
627 static void cpu_ppc_store_tb (CPUState *env, uint64_t value)
632 void cpu_ppc_store_tbu (CPUState *env, uint32_t value)
634 cpu_ppc_store_tb(env, ((uint64_t)value << 32) | cpu_ppc_load_tbl(env));
637 void cpu_ppc_store_tbl (CPUState *env, uint32_t value)
639 cpu_ppc_store_tb(env, ((uint64_t)cpu_ppc_load_tbl(env) << 32) | value);
642 uint32_t cpu_ppc_load_decr (CPUState *env)
648 void cpu_ppc_store_decr (CPUState *env, uint32_t value)
653 void cpu_loop(CPUPPCState *env)
655 target_siginfo_t info;
660 trapnr = cpu_ppc_exec(env);
661 if (trapnr != EXCP_SYSCALL_USER && trapnr != EXCP_BRANCH &&
662 trapnr != EXCP_TRACE) {
664 cpu_dump_state(env, logfile, fprintf, 0);
670 case EXCP_SYSCALL_USER:
673 * PPC ABI uses overflow flag in cr0 to signal an error
677 printf("syscall %d 0x%08x 0x%08x 0x%08x 0x%08x\n", env->gpr[0],
678 env->gpr[3], env->gpr[4], env->gpr[5], env->gpr[6]);
681 ret = do_syscall(env, env->gpr[0], env->gpr[3], env->gpr[4],
682 env->gpr[5], env->gpr[6], env->gpr[7],
684 if (ret > (uint32_t)(-515)) {
690 printf("syscall returned 0x%08x (%d)\n", ret, ret);
694 /* Should not happen ! */
695 fprintf(stderr, "RESET asked... Stop emulation\n");
697 fprintf(logfile, "RESET asked... Stop emulation\n");
699 case EXCP_MACHINE_CHECK:
700 fprintf(stderr, "Machine check exeption... Stop emulation\n");
702 fprintf(logfile, "RESET asked... Stop emulation\n");
703 info.si_signo = TARGET_SIGBUS;
705 info.si_code = TARGET_BUS_OBJERR;
706 info._sifields._sigfault._addr = env->nip - 4;
707 queue_signal(info.si_signo, &info);
709 fprintf(stderr, "Invalid data memory access: 0x%08x\n",
712 fprintf(logfile, "Invalid data memory access: 0x%08x\n",
715 switch (env->error_code & 0xFF000000) {
717 info.si_signo = TARGET_SIGSEGV;
719 info.si_code = TARGET_SEGV_MAPERR;
722 info.si_signo = TARGET_SIGILL;
724 info.si_code = TARGET_ILL_ILLADR;
727 info.si_signo = TARGET_SIGSEGV;
729 info.si_code = TARGET_SEGV_ACCERR;
732 /* Let's send a regular segfault... */
733 fprintf(stderr, "Invalid segfault errno (%02x)\n",
736 fprintf(logfile, "Invalid segfault errno (%02x)\n",
739 info.si_signo = TARGET_SIGSEGV;
741 info.si_code = TARGET_SEGV_MAPERR;
744 info._sifields._sigfault._addr = env->nip;
745 queue_signal(info.si_signo, &info);
748 fprintf(stderr, "Invalid instruction fetch\n");
750 fprintf(logfile, "Invalid instruction fetch\n");
751 switch (env->error_code & 0xFF000000) {
753 info.si_signo = TARGET_SIGSEGV;
755 info.si_code = TARGET_SEGV_MAPERR;
759 info.si_signo = TARGET_SIGSEGV;
761 info.si_code = TARGET_SEGV_ACCERR;
764 /* Let's send a regular segfault... */
765 fprintf(stderr, "Invalid segfault errno (%02x)\n",
768 fprintf(logfile, "Invalid segfault errno (%02x)\n",
771 info.si_signo = TARGET_SIGSEGV;
773 info.si_code = TARGET_SEGV_MAPERR;
776 info._sifields._sigfault._addr = env->nip - 4;
777 queue_signal(info.si_signo, &info);
780 /* Should not happen ! */
781 fprintf(stderr, "External interruption... Stop emulation\n");
783 fprintf(logfile, "External interruption... Stop emulation\n");
786 fprintf(stderr, "Invalid unaligned memory access\n");
788 fprintf(logfile, "Invalid unaligned memory access\n");
789 info.si_signo = TARGET_SIGBUS;
791 info.si_code = TARGET_BUS_ADRALN;
792 info._sifields._sigfault._addr = env->nip - 4;
793 queue_signal(info.si_signo, &info);
796 switch (env->error_code & ~0xF) {
798 fprintf(stderr, "Program exception\n");
800 fprintf(logfile, "Program exception\n");
802 env->fpscr[7] |= 0x8;
803 /* Finally, update FEX */
804 if ((((env->fpscr[7] & 0x3) << 3) | (env->fpscr[6] >> 1)) &
805 ((env->fpscr[1] << 1) | (env->fpscr[0] >> 3)))
806 env->fpscr[7] |= 0x4;
807 info.si_signo = TARGET_SIGFPE;
809 switch (env->error_code & 0xF) {
811 info.si_code = TARGET_FPE_FLTOVF;
814 info.si_code = TARGET_FPE_FLTUND;
818 info.si_code = TARGET_FPE_FLTDIV;
821 info.si_code = TARGET_FPE_FLTRES;
824 info.si_code = TARGET_FPE_FLTINV;
833 info.si_code = TARGET_FPE_FLTSUB;
836 fprintf(stderr, "Unknown floating point exception "
837 "(%02x)\n", env->error_code);
839 fprintf(logfile, "Unknown floating point exception "
840 "(%02x)\n", env->error_code & 0xF);
845 fprintf(stderr, "Invalid instruction\n");
847 fprintf(logfile, "Invalid instruction\n");
848 info.si_signo = TARGET_SIGILL;
850 switch (env->error_code & 0xF) {
851 case EXCP_INVAL_INVAL:
852 info.si_code = TARGET_ILL_ILLOPC;
854 case EXCP_INVAL_LSWX:
855 info.si_code = TARGET_ILL_ILLOPN;
858 info.si_code = TARGET_ILL_PRVREG;
861 info.si_code = TARGET_ILL_COPROC;
864 fprintf(stderr, "Unknown invalid operation (%02x)\n",
865 env->error_code & 0xF);
867 fprintf(logfile, "Unknown invalid operation (%02x)\n",
868 env->error_code & 0xF);
870 info.si_code = TARGET_ILL_ILLADR;
875 fprintf(stderr, "Privilege violation\n");
877 fprintf(logfile, "Privilege violation\n");
878 info.si_signo = TARGET_SIGILL;
880 switch (env->error_code & 0xF) {
882 info.si_code = TARGET_ILL_PRVOPC;
885 info.si_code = TARGET_ILL_PRVREG;
888 fprintf(stderr, "Unknown privilege violation (%02x)\n",
889 env->error_code & 0xF);
890 info.si_code = TARGET_ILL_PRVOPC;
895 fprintf(stderr, "Tried to call a TRAP\n");
897 fprintf(logfile, "Tried to call a TRAP\n");
900 /* Should not happen ! */
901 fprintf(stderr, "Unknown program exception (%02x)\n",
904 fprintf(logfile, "Unknwon program exception (%02x)\n",
909 info._sifields._sigfault._addr = env->nip - 4;
910 queue_signal(info.si_signo, &info);
913 fprintf(stderr, "No floating point allowed\n");
915 fprintf(logfile, "No floating point allowed\n");
916 info.si_signo = TARGET_SIGILL;
918 info.si_code = TARGET_ILL_COPROC;
919 info._sifields._sigfault._addr = env->nip - 4;
920 queue_signal(info.si_signo, &info);
923 /* Should not happen ! */
924 fprintf(stderr, "Decrementer exception\n");
926 fprintf(logfile, "Decrementer exception\n");
929 /* Do nothing: we use this to trace execution */
932 /* Should not happen ! */
933 fprintf(stderr, "Floating point assist exception\n");
935 fprintf(logfile, "Floating point assist exception\n");
938 /* We reloaded the msr, just go on */
940 fprintf(stderr, "Tried to go into supervisor mode !\n");
942 fprintf(logfile, "Tried to go into supervisor mode !\n");
947 /* We stopped because of a jump... */
950 /* Don't know why this should ever happen... */
956 sig = gdb_handlesig (env, TARGET_SIGTRAP);
961 info.si_code = TARGET_TRAP_BRKPT;
962 queue_signal(info.si_signo, &info);
967 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
970 fprintf(logfile, "qemu: unhandled CPU exception 0x%02x - "
971 "0x%02x - aborting\n", trapnr, env->error_code);
975 process_pending_signals(env);
982 printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2005 Fabrice Bellard\n"
983 "usage: qemu-" TARGET_ARCH " [-h] [-g] [-d opts] [-L path] [-s size] program [arguments...]\n"
984 "Linux CPU emulator (compiled for %s emulation)\n"
986 "-h print this help\n"
987 "-g port wait gdb connection to port\n"
988 "-L path set the elf interpreter prefix (default=%s)\n"
989 "-s size set the stack size in bytes (default=%ld)\n"
993 "-no-code-copy disable code copy acceleration\n"
995 "-d options activate log (logfile=%s)\n"
996 "-p pagesize set the host page size to 'pagesize'\n",
1004 /* XXX: currently only used for async signals (see signal.c) */
1005 CPUState *global_env;
1007 /* used to free thread contexts */
1008 TaskState *first_task_state;
1010 int main(int argc, char **argv)
1012 const char *filename;
1013 struct target_pt_regs regs1, *regs = ®s1;
1014 struct image_info info1, *info = &info1;
1015 TaskState ts1, *ts = &ts1;
1019 int gdbstub_port = 0;
1025 cpu_set_log_filename(DEBUG_LOGFILE);
1036 if (!strcmp(r, "-")) {
1038 } else if (!strcmp(r, "d")) {
1046 mask = cpu_str_to_log_mask(r);
1048 printf("Log items (comma separated):\n");
1049 for(item = cpu_log_items; item->mask != 0; item++) {
1050 printf("%-10s %s\n", item->name, item->help);
1055 } else if (!strcmp(r, "s")) {
1057 x86_stack_size = strtol(r, (char **)&r, 0);
1058 if (x86_stack_size <= 0)
1061 x86_stack_size *= 1024 * 1024;
1062 else if (*r == 'k' || *r == 'K')
1063 x86_stack_size *= 1024;
1064 } else if (!strcmp(r, "L")) {
1065 interp_prefix = argv[optind++];
1066 } else if (!strcmp(r, "p")) {
1067 qemu_host_page_size = atoi(argv[optind++]);
1068 if (qemu_host_page_size == 0 ||
1069 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
1070 fprintf(stderr, "page size must be a power of two\n");
1073 } else if (!strcmp(r, "g")) {
1074 gdbstub_port = atoi(argv[optind++]);
1076 #ifdef USE_CODE_COPY
1077 if (!strcmp(r, "no-code-copy")) {
1078 code_copy_enabled = 0;
1087 filename = argv[optind];
1090 memset(regs, 0, sizeof(struct target_pt_regs));
1092 /* Zero out image_info */
1093 memset(info, 0, sizeof(struct image_info));
1095 /* Scan interp_prefix dir for replacement files. */
1096 init_paths(interp_prefix);
1098 /* NOTE: we need to init the CPU at this stage to get
1099 qemu_host_page_size */
1102 if (elf_exec(filename, argv+optind, environ, regs, info) != 0) {
1103 printf("Error loading %s\n", filename);
1110 fprintf(logfile, "start_brk 0x%08lx\n" , info->start_brk);
1111 fprintf(logfile, "end_code 0x%08lx\n" , info->end_code);
1112 fprintf(logfile, "start_code 0x%08lx\n" , info->start_code);
1113 fprintf(logfile, "end_data 0x%08lx\n" , info->end_data);
1114 fprintf(logfile, "start_stack 0x%08lx\n" , info->start_stack);
1115 fprintf(logfile, "brk 0x%08lx\n" , info->brk);
1116 fprintf(logfile, "entry 0x%08lx\n" , info->entry);
1119 target_set_brk((char *)info->brk);
1125 /* build Task State */
1126 memset(ts, 0, sizeof(TaskState));
1129 env->user_mode_only = 1;
1131 #if defined(TARGET_I386)
1132 cpu_x86_set_cpl(env, 3);
1134 env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK;
1135 env->hflags |= HF_PE_MASK;
1136 if (env->cpuid_features & CPUID_SSE) {
1137 env->cr[4] |= CR4_OSFXSR_MASK;
1138 env->hflags |= HF_OSFXSR_MASK;
1141 /* flags setup : we activate the IRQs by default as in user mode */
1142 env->eflags |= IF_MASK;
1144 /* linux register setup */
1145 env->regs[R_EAX] = regs->eax;
1146 env->regs[R_EBX] = regs->ebx;
1147 env->regs[R_ECX] = regs->ecx;
1148 env->regs[R_EDX] = regs->edx;
1149 env->regs[R_ESI] = regs->esi;
1150 env->regs[R_EDI] = regs->edi;
1151 env->regs[R_EBP] = regs->ebp;
1152 env->regs[R_ESP] = regs->esp;
1153 env->eip = regs->eip;
1155 /* linux interrupt setup */
1156 env->idt.base = (long)idt_table;
1157 env->idt.limit = sizeof(idt_table) - 1;
1180 /* linux segment setup */
1181 env->gdt.base = (long)gdt_table;
1182 env->gdt.limit = sizeof(gdt_table) - 1;
1183 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
1184 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
1185 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
1186 write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff,
1187 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
1188 (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT));
1189 cpu_x86_load_seg(env, R_CS, __USER_CS);
1190 cpu_x86_load_seg(env, R_DS, __USER_DS);
1191 cpu_x86_load_seg(env, R_ES, __USER_DS);
1192 cpu_x86_load_seg(env, R_SS, __USER_DS);
1193 cpu_x86_load_seg(env, R_FS, __USER_DS);
1194 cpu_x86_load_seg(env, R_GS, __USER_DS);
1196 #elif defined(TARGET_ARM)
1199 cpsr_write(env, regs->uregs[16], 0xffffffff);
1200 for(i = 0; i < 16; i++) {
1201 env->regs[i] = regs->uregs[i];
1203 ts->stack_base = info->start_stack;
1204 ts->heap_base = info->brk;
1205 /* This will be filled in on the first SYS_HEAPINFO call. */
1208 #elif defined(TARGET_SPARC)
1212 env->npc = regs->npc;
1214 for(i = 0; i < 8; i++)
1215 env->gregs[i] = regs->u_regs[i];
1216 for(i = 0; i < 8; i++)
1217 env->regwptr[i] = regs->u_regs[i + 8];
1219 #elif defined(TARGET_PPC)
1224 /* Choose and initialise CPU */
1225 /* XXX: CPU model (or PVR) should be provided on command line */
1226 // ppc_find_by_name("750gx", &def);
1227 // ppc_find_by_name("750fx", &def);
1228 // ppc_find_by_name("750p", &def);
1229 ppc_find_by_name("750", &def);
1230 // ppc_find_by_name("G3", &def);
1231 // ppc_find_by_name("604r", &def);
1232 // ppc_find_by_name("604e", &def);
1233 // ppc_find_by_name("604", &def);
1236 "Unable to find PowerPC CPU definition\n");
1238 cpu_ppc_register(env, def);
1240 for (i = 0; i < 32; i++) {
1241 if (i != 12 && i != 6 && i != 13)
1242 env->msr[i] = (regs->msr >> i) & 1;
1244 env->nip = regs->nip;
1245 for(i = 0; i < 32; i++) {
1246 env->gpr[i] = regs->gpr[i];
1250 #error unsupported target CPU
1254 gdbserver_start (gdbstub_port);
1255 gdb_handlesig(env, 0);