4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2006 Pierre d'Herbemont
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #include <sys/syscall.h>
33 #define DEBUG_LOGFILE "/tmp/qemu.log"
36 #include <crt_externs.h>
37 # define environ (*_NSGetEnviron())
40 #include <mach/mach_init.h>
41 #include <mach/vm_map.h>
43 const char *interp_prefix
= "";
45 asm(".zerofill __STD_PROG_ZONE, __STD_PROG_ZONE, __std_prog_zone, 0x0dfff000");
47 /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
48 we allocate a bigger stack. Need a better solution, for example
49 by remapping the process stack directly at the right place */
50 unsigned long stack_size
= 512 * 1024;
52 void qerror(const char *fmt
, ...)
57 vfprintf(stderr
, fmt
, ap
);
59 fprintf(stderr
, "\n");
63 void gemu_log(const char *fmt
, ...)
68 vfprintf(stderr
, fmt
, ap
);
72 void cpu_outb(CPUState
*env
, int addr
, int val
)
74 fprintf(stderr
, "outb: port=0x%04x, data=%02x\n", addr
, val
);
77 void cpu_outw(CPUState
*env
, int addr
, int val
)
79 fprintf(stderr
, "outw: port=0x%04x, data=%04x\n", addr
, val
);
82 void cpu_outl(CPUState
*env
, int addr
, int val
)
84 fprintf(stderr
, "outl: port=0x%04x, data=%08x\n", addr
, val
);
87 int cpu_inb(CPUState
*env
, int addr
)
89 fprintf(stderr
, "inb: port=0x%04x\n", addr
);
93 int cpu_inw(CPUState
*env
, int addr
)
95 fprintf(stderr
, "inw: port=0x%04x\n", addr
);
99 int cpu_inl(CPUState
*env
, int addr
)
101 fprintf(stderr
, "inl: port=0x%04x\n", addr
);
105 int cpu_get_pic_interrupt(CPUState
*env
)
111 static inline uint64_t cpu_ppc_get_tb (CPUState
*env
)
117 uint32_t cpu_ppc_load_tbl (CPUState
*env
)
119 return cpu_ppc_get_tb(env
) & 0xFFFFFFFF;
122 uint32_t cpu_ppc_load_tbu (CPUState
*env
)
124 return cpu_ppc_get_tb(env
) >> 32;
127 uint32_t cpu_ppc_load_atbl (CPUState
*env
)
129 return cpu_ppc_get_tb(env
) & 0xFFFFFFFF;
132 uint32_t cpu_ppc_load_atbu (CPUState
*env
)
134 return cpu_ppc_get_tb(env
) >> 32;
137 uint32_t cpu_ppc601_load_rtcu (CPUState
*env
)
139 cpu_ppc_load_tbu(env
);
142 uint32_t cpu_ppc601_load_rtcl (CPUState
*env
)
144 return cpu_ppc_load_tbl(env
) & 0x3FFFFF80;
147 /* XXX: to be fixed */
148 int ppc_dcr_read (ppc_dcr_t
*dcr_env
, int dcrn
, target_ulong
*valp
)
153 int ppc_dcr_write (ppc_dcr_t
*dcr_env
, int dcrn
, target_ulong val
)
158 #define EXCP_DUMP(env, fmt, args...) \
160 fprintf(stderr, fmt , ##args); \
161 cpu_dump_state(env, stderr, fprintf, 0); \
162 if (loglevel != 0) { \
163 fprintf(logfile, fmt , ##args); \
164 cpu_dump_state(env, logfile, fprintf, 0); \
168 void cpu_loop(CPUPPCState
*env
)
172 target_siginfo_t info
;
175 trapnr
= cpu_ppc_exec(env
);
177 case POWERPC_EXCP_NONE
:
180 case POWERPC_EXCP_CRITICAL
: /* Critical input */
181 cpu_abort(env
, "Critical interrupt while in user mode. "
184 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
185 cpu_abort(env
, "Machine check exception while in user mode. "
188 case POWERPC_EXCP_DSI
: /* Data storage exception */
190 /* To deal with multiple qemu header version as host for the darwin-user code */
193 EXCP_DUMP(env
, "Invalid data memory access: 0x" ADDRX
"\n",
195 /* Handle this via the gdb */
196 gdb_handlesig (env
, SIGSEGV
);
198 info
.si_addr
= (void*)env
->nip
;
199 queue_signal(info
.si_signo
, &info
);
201 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
202 EXCP_DUMP(env
, "Invalid instruction fetch: 0x\n" ADDRX
"\n",
204 /* Handle this via the gdb */
205 gdb_handlesig (env
, SIGSEGV
);
207 info
.si_addr
= (void*)(env
->nip
- 4);
208 queue_signal(info
.si_signo
, &info
);
210 case POWERPC_EXCP_EXTERNAL
: /* External input */
211 cpu_abort(env
, "External interrupt while in user mode. "
214 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
215 EXCP_DUMP(env
, "Unaligned memory access\n");
217 info
.si_code
= BUS_ADRALN
;
218 info
.si_addr
= (void*)(env
->nip
- 4);
219 queue_signal(info
.si_signo
, &info
);
221 case POWERPC_EXCP_PROGRAM
: /* Program exception */
222 /* XXX: check this */
223 switch (env
->error_code
& ~0xF) {
224 case POWERPC_EXCP_FP
:
225 EXCP_DUMP(env
, "Floating point program exception\n");
227 env
->fpscr
[7] |= 0x8;
228 /* Finally, update FEX */
229 if ((((env
->fpscr
[7] & 0x3) << 3) | (env
->fpscr
[6] >> 1)) &
230 ((env
->fpscr
[1] << 1) | (env
->fpscr
[0] >> 3)))
231 env
->fpscr
[7] |= 0x4;
232 info
.si_signo
= SIGFPE
;
234 switch (env
->error_code
& 0xF) {
235 case POWERPC_EXCP_FP_OX
:
236 info
.si_code
= FPE_FLTOVF
;
238 case POWERPC_EXCP_FP_UX
:
239 info
.si_code
= FPE_FLTUND
;
241 case POWERPC_EXCP_FP_ZX
:
242 case POWERPC_EXCP_FP_VXZDZ
:
243 info
.si_code
= FPE_FLTDIV
;
245 case POWERPC_EXCP_FP_XX
:
246 info
.si_code
= FPE_FLTRES
;
248 case POWERPC_EXCP_FP_VXSOFT
:
249 info
.si_code
= FPE_FLTINV
;
251 case POWERPC_EXCP_FP_VXNAN
:
252 case POWERPC_EXCP_FP_VXISI
:
253 case POWERPC_EXCP_FP_VXIDI
:
254 case POWERPC_EXCP_FP_VXIMZ
:
255 case POWERPC_EXCP_FP_VXVC
:
256 case POWERPC_EXCP_FP_VXSQRT
:
257 case POWERPC_EXCP_FP_VXCVI
:
258 info
.si_code
= FPE_FLTSUB
;
261 EXCP_DUMP(env
, "Unknown floating point exception (%02x)\n",
266 case POWERPC_EXCP_INVAL
:
267 EXCP_DUMP(env
, "Invalid instruction\n");
268 info
.si_signo
= SIGILL
;
270 switch (env
->error_code
& 0xF) {
271 case POWERPC_EXCP_INVAL_INVAL
:
272 info
.si_code
= ILL_ILLOPC
;
274 case POWERPC_EXCP_INVAL_LSWX
:
275 info
.si_code
= ILL_ILLOPN
;
277 case POWERPC_EXCP_INVAL_SPR
:
278 info
.si_code
= ILL_PRVREG
;
280 case POWERPC_EXCP_INVAL_FP
:
281 info
.si_code
= ILL_COPROC
;
284 EXCP_DUMP(env
, "Unknown invalid operation (%02x)\n",
285 env
->error_code
& 0xF);
286 info
.si_code
= ILL_ILLADR
;
289 /* Handle this via the gdb */
290 gdb_handlesig (env
, SIGSEGV
);
292 case POWERPC_EXCP_PRIV
:
293 EXCP_DUMP(env
, "Privilege violation\n");
294 info
.si_signo
= SIGILL
;
296 switch (env
->error_code
& 0xF) {
297 case POWERPC_EXCP_PRIV_OPC
:
298 info
.si_code
= ILL_PRVOPC
;
300 case POWERPC_EXCP_PRIV_REG
:
301 info
.si_code
= ILL_PRVREG
;
304 EXCP_DUMP(env
, "Unknown privilege violation (%02x)\n",
305 env
->error_code
& 0xF);
306 info
.si_code
= ILL_PRVOPC
;
310 case POWERPC_EXCP_TRAP
:
311 cpu_abort(env
, "Tried to call a TRAP\n");
314 /* Should not happen ! */
315 cpu_abort(env
, "Unknown program exception (%02x)\n",
319 info
.si_addr
= (void*)(env
->nip
- 4);
320 queue_signal(info
.si_signo
, &info
);
322 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
323 EXCP_DUMP(env
, "No floating point allowed\n");
324 info
.si_signo
= SIGILL
;
326 info
.si_code
= ILL_COPROC
;
327 info
.si_addr
= (void*)(env
->nip
- 4);
328 queue_signal(info
.si_signo
, &info
);
330 case POWERPC_EXCP_SYSCALL
: /* System call exception */
331 cpu_abort(env
, "Syscall exception while in user mode. "
334 case POWERPC_EXCP_APU
: /* Auxiliary processor unavailable */
335 EXCP_DUMP(env
, "No APU instruction allowed\n");
336 info
.si_signo
= SIGILL
;
338 info
.si_code
= ILL_COPROC
;
339 info
.si_addr
= (void*)(env
->nip
- 4);
340 queue_signal(info
.si_signo
, &info
);
342 case POWERPC_EXCP_DECR
: /* Decrementer exception */
343 cpu_abort(env
, "Decrementer interrupt while in user mode. "
346 case POWERPC_EXCP_FIT
: /* Fixed-interval timer interrupt */
347 cpu_abort(env
, "Fix interval timer interrupt while in user mode. "
350 case POWERPC_EXCP_WDT
: /* Watchdog timer interrupt */
351 cpu_abort(env
, "Watchdog timer interrupt while in user mode. "
354 case POWERPC_EXCP_DTLB
: /* Data TLB error */
355 cpu_abort(env
, "Data TLB exception while in user mode. "
358 case POWERPC_EXCP_ITLB
: /* Instruction TLB error */
359 cpu_abort(env
, "Instruction TLB exception while in user mode. "
362 case POWERPC_EXCP_DEBUG
: /* Debug interrupt */
363 gdb_handlesig (env
, SIGTRAP
);
365 #if defined(TARGET_PPCEMB)
366 case POWERPC_EXCP_SPEU
: /* SPE/embedded floating-point unavail. */
367 EXCP_DUMP(env
, "No SPE/floating-point instruction allowed\n");
368 info
.si_signo
= SIGILL
;
370 info
.si_code
= ILL_COPROC
;
371 info
.si_addr
= (void*)(env
->nip
- 4);
372 queue_signal(info
.si_signo
, &info
);
374 case POWERPC_EXCP_EFPDI
: /* Embedded floating-point data IRQ */
375 cpu_abort(env
, "Embedded floating-point data IRQ not handled\n");
377 case POWERPC_EXCP_EFPRI
: /* Embedded floating-point round IRQ */
378 cpu_abort(env
, "Embedded floating-point round IRQ not handled\n");
380 case POWERPC_EXCP_EPERFM
: /* Embedded performance monitor IRQ */
381 cpu_abort(env
, "Performance monitor exception not handled\n");
383 case POWERPC_EXCP_DOORI
: /* Embedded doorbell interrupt */
384 cpu_abort(env
, "Doorbell interrupt while in user mode. "
387 case POWERPC_EXCP_DOORCI
: /* Embedded doorbell critical interrupt */
388 cpu_abort(env
, "Doorbell critical interrupt while in user mode. "
391 #endif /* defined(TARGET_PPCEMB) */
392 case POWERPC_EXCP_RESET
: /* System reset exception */
393 cpu_abort(env
, "Reset interrupt while in user mode. "
396 #if defined(TARGET_PPC64) /* PowerPC 64 */
397 case POWERPC_EXCP_DSEG
: /* Data segment exception */
398 cpu_abort(env
, "Data segment exception while in user mode. "
401 case POWERPC_EXCP_ISEG
: /* Instruction segment exception */
402 cpu_abort(env
, "Instruction segment exception "
403 "while in user mode. Aborting\n");
405 #endif /* defined(TARGET_PPC64) */
406 #if defined(TARGET_PPC64H) /* PowerPC 64 with hypervisor mode support */
407 case POWERPC_EXCP_HDECR
: /* Hypervisor decrementer exception */
408 cpu_abort(env
, "Hypervisor decrementer interrupt "
409 "while in user mode. Aborting\n");
411 #endif /* defined(TARGET_PPC64H) */
412 case POWERPC_EXCP_TRACE
: /* Trace exception */
414 * we use this exception to emulate step-by-step execution mode.
417 #if defined(TARGET_PPC64H) /* PowerPC 64 with hypervisor mode support */
418 case POWERPC_EXCP_HDSI
: /* Hypervisor data storage exception */
419 cpu_abort(env
, "Hypervisor data storage exception "
420 "while in user mode. Aborting\n");
422 case POWERPC_EXCP_HISI
: /* Hypervisor instruction storage excp */
423 cpu_abort(env
, "Hypervisor instruction storage exception "
424 "while in user mode. Aborting\n");
426 case POWERPC_EXCP_HDSEG
: /* Hypervisor data segment exception */
427 cpu_abort(env
, "Hypervisor data segment exception "
428 "while in user mode. Aborting\n");
430 case POWERPC_EXCP_HISEG
: /* Hypervisor instruction segment excp */
431 cpu_abort(env
, "Hypervisor instruction segment exception "
432 "while in user mode. Aborting\n");
434 #endif /* defined(TARGET_PPC64H) */
435 case POWERPC_EXCP_VPU
: /* Vector unavailable exception */
436 EXCP_DUMP(env
, "No Altivec instructions allowed\n");
437 info
.si_signo
= SIGILL
;
439 info
.si_code
= ILL_COPROC
;
440 info
.si_addr
= (void*)(env
->nip
- 4);
441 queue_signal(info
.si_signo
, &info
);
443 case POWERPC_EXCP_PIT
: /* Programmable interval timer IRQ */
444 cpu_abort(env
, "Programable interval timer interrupt "
445 "while in user mode. Aborting\n");
447 case POWERPC_EXCP_IO
: /* IO error exception */
448 cpu_abort(env
, "IO error exception while in user mode. "
451 case POWERPC_EXCP_RUNM
: /* Run mode exception */
452 cpu_abort(env
, "Run mode exception while in user mode. "
455 case POWERPC_EXCP_EMUL
: /* Emulation trap exception */
456 cpu_abort(env
, "Emulation trap exception not handled\n");
458 case POWERPC_EXCP_IFTLB
: /* Instruction fetch TLB error */
459 cpu_abort(env
, "Instruction fetch TLB exception "
460 "while in user-mode. Aborting");
462 case POWERPC_EXCP_DLTLB
: /* Data load TLB miss */
463 cpu_abort(env
, "Data load TLB exception while in user-mode. "
466 case POWERPC_EXCP_DSTLB
: /* Data store TLB miss */
467 cpu_abort(env
, "Data store TLB exception while in user-mode. "
470 case POWERPC_EXCP_FPA
: /* Floating-point assist exception */
471 cpu_abort(env
, "Floating-point assist exception not handled\n");
473 case POWERPC_EXCP_IABR
: /* Instruction address breakpoint */
474 cpu_abort(env
, "Instruction address breakpoint exception "
477 case POWERPC_EXCP_SMI
: /* System management interrupt */
478 cpu_abort(env
, "System management interrupt while in user mode. "
481 case POWERPC_EXCP_THERM
: /* Thermal interrupt */
482 cpu_abort(env
, "Thermal interrupt interrupt while in user mode. "
485 case POWERPC_EXCP_PERFM
: /* Embedded performance monitor IRQ */
486 cpu_abort(env
, "Performance monitor exception not handled\n");
488 case POWERPC_EXCP_VPUA
: /* Vector assist exception */
489 cpu_abort(env
, "Vector assist exception not handled\n");
491 case POWERPC_EXCP_SOFTP
: /* Soft patch exception */
492 cpu_abort(env
, "Soft patch exception not handled\n");
494 case POWERPC_EXCP_MAINT
: /* Maintenance exception */
495 cpu_abort(env
, "Maintenance exception while in user mode. "
498 case POWERPC_EXCP_STOP
: /* stop translation */
499 /* We did invalidate the instruction cache. Go on */
501 case POWERPC_EXCP_BRANCH
: /* branch instruction: */
502 /* We just stopped because of a branch. Go on */
504 case POWERPC_EXCP_SYSCALL_USER
:
505 /* system call in user-mode emulation */
507 if(((int)env
->gpr
[0]) <= SYS_MAXSYSCALL
&& ((int)env
->gpr
[0])>0)
508 ret
= do_unix_syscall(env
, env
->gpr
[0]/*, env->gpr[3], env->gpr[4],
509 env->gpr[5], env->gpr[6], env->gpr[7],
510 env->gpr[8], env->gpr[9], env->gpr[10]*/);
511 else if(((int)env
->gpr
[0])<0)
512 ret
= do_mach_syscall(env
, env
->gpr
[0], env
->gpr
[3], env
->gpr
[4],
513 env
->gpr
[5], env
->gpr
[6], env
->gpr
[7],
514 env
->gpr
[8], env
->gpr
[9], env
->gpr
[10]);
516 ret
= do_thread_syscall(env
, env
->gpr
[0], env
->gpr
[3], env
->gpr
[4],
517 env
->gpr
[5], env
->gpr
[6], env
->gpr
[7],
518 env
->gpr
[8], env
->gpr
[9], env
->gpr
[10]);
520 /* Unix syscall error signaling */
521 if(((int)env
->gpr
[0]) <= SYS_MAXSYSCALL
&& ((int)env
->gpr
[0])>0)
533 /* just indicate that signals should be handled asap */
536 cpu_abort(env
, "Unknown exception 0x%d. Aborting\n", trapnr
);
539 process_pending_signals(env
);
547 /***********************************************************/
548 /* CPUX86 core interface */
550 uint64_t cpu_get_tsc(CPUX86State
*env
)
552 return cpu_get_real_ticks();
556 write_dt(void *ptr
, unsigned long addr
, unsigned long limit
,
560 e1
= (addr
<< 16) | (limit
& 0xffff);
561 e2
= ((addr
>> 16) & 0xff) | (addr
& 0xff000000) | (limit
& 0x000f0000);
563 stl((uint8_t *)ptr
, e1
);
564 stl((uint8_t *)ptr
+ 4, e2
);
567 static void set_gate(void *ptr
, unsigned int type
, unsigned int dpl
,
568 unsigned long addr
, unsigned int sel
)
571 e1
= (addr
& 0xffff) | (sel
<< 16);
572 e2
= (addr
& 0xffff0000) | 0x8000 | (dpl
<< 13) | (type
<< 8);
573 stl((uint8_t *)ptr
, e1
);
574 stl((uint8_t *)ptr
+ 4, e2
);
577 #define GDT_TABLE_SIZE 14
578 #define LDT_TABLE_SIZE 15
579 #define IDT_TABLE_SIZE 256
581 uint64_t gdt_table
[GDT_TABLE_SIZE
];
582 uint64_t ldt_table
[LDT_TABLE_SIZE
];
583 uint64_t idt_table
[IDT_TABLE_SIZE
];
584 uint32_t tss
[TSS_SIZE
];
586 /* only dpl matters as we do only user space emulation */
587 static void set_idt(int n
, unsigned int dpl
)
589 set_gate(idt_table
+ n
, 0, dpl
, 0, 0);
592 /* ABI convention: after a syscall if there was an error the CF flag is set */
593 static inline void set_error(CPUX86State
*env
, int ret
)
596 env
->eflags
= env
->eflags
| 0x1;
599 env
->regs
[R_EAX
] = ret
;
602 void cpu_loop(CPUX86State
*env
)
607 target_siginfo_t info
;
610 trapnr
= cpu_x86_exec(env
);
611 uint32_t *params
= (uint32_t *)env
->regs
[R_ESP
];
613 case 0x79: /* Our commpage hack back door exit is here */
614 do_commpage(env
, env
->eip
, *(params
+ 1), *(params
+ 2),
615 *(params
+ 3), *(params
+ 4),
616 *(params
+ 5), *(params
+ 6),
617 *(params
+ 7), *(params
+ 8));
619 case 0x81: /* mach syscall */
621 ret
= do_mach_syscall(env
, env
->regs
[R_EAX
],
622 *(params
+ 1), *(params
+ 2),
623 *(params
+ 3), *(params
+ 4),
624 *(params
+ 5), *(params
+ 6),
625 *(params
+ 7), *(params
+ 8));
629 case 0x90: /* unix backdoor */
631 /* after sysenter, stack is in R_ECX, new eip in R_EDX (sysexit will flip them back)*/
632 int saved_stack
= env
->regs
[R_ESP
];
633 env
->regs
[R_ESP
] = env
->regs
[R_ECX
];
635 ret
= do_unix_syscall(env
, env
->regs
[R_EAX
]);
637 env
->regs
[R_ECX
] = env
->regs
[R_ESP
];
638 env
->regs
[R_ESP
] = saved_stack
;
643 case 0x80: /* unix syscall */
645 ret
= do_unix_syscall(env
, env
->regs
[R_EAX
]/*,
646 *(params + 1), *(params + 2),
647 *(params + 3), *(params + 4),
648 *(params + 5), *(params + 6),
649 *(params + 7), *(params + 8)*/);
653 case 0x82: /* thread syscall */
655 ret
= do_thread_syscall(env
, env
->regs
[R_EAX
],
656 *(params
+ 1), *(params
+ 2),
657 *(params
+ 3), *(params
+ 4),
658 *(params
+ 5), *(params
+ 6),
659 *(params
+ 7), *(params
+ 8));
665 info
.si_signo
= SIGBUS
;
667 info
.si_code
= BUS_NOOP
;
669 gdb_handlesig (env
, SIGBUS
);
670 queue_signal(info
.si_signo
, &info
);
673 info
.si_signo
= SIGSEGV
;
675 info
.si_code
= SEGV_NOOP
;
677 gdb_handlesig (env
, SIGSEGV
);
678 queue_signal(info
.si_signo
, &info
);
681 info
.si_signo
= SIGSEGV
;
683 if (!(env
->error_code
& 1))
684 info
.si_code
= SEGV_MAPERR
;
686 info
.si_code
= SEGV_ACCERR
;
687 info
.si_addr
= (void*)env
->cr
[2];
688 gdb_handlesig (env
, SIGSEGV
);
689 queue_signal(info
.si_signo
, &info
);
692 /* division by zero */
693 info
.si_signo
= SIGFPE
;
695 info
.si_code
= FPE_INTDIV
;
696 info
.si_addr
= (void*)env
->eip
;
697 gdb_handlesig (env
, SIGFPE
);
698 queue_signal(info
.si_signo
, &info
);
702 info
.si_signo
= SIGTRAP
;
704 info
.si_code
= TRAP_BRKPT
;
705 info
.si_addr
= (void*)env
->eip
;
706 gdb_handlesig (env
, SIGTRAP
);
707 queue_signal(info
.si_signo
, &info
);
711 info
.si_signo
= SIGSEGV
;
713 info
.si_code
= SEGV_NOOP
;
715 gdb_handlesig (env
, SIGSEGV
);
716 queue_signal(info
.si_signo
, &info
);
719 info
.si_signo
= SIGILL
;
721 info
.si_code
= ILL_ILLOPN
;
722 info
.si_addr
= (void*)env
->eip
;
723 gdb_handlesig (env
, SIGILL
);
724 queue_signal(info
.si_signo
, &info
);
727 /* just indicate that signals should be handled asap */
733 sig
= gdb_handlesig (env
, SIGTRAP
);
738 info
.si_code
= TRAP_BRKPT
;
739 queue_signal(info
.si_signo
, &info
);
744 pc
= (void*)(env
->segs
[R_CS
].base
+ env
->eip
);
745 fprintf(stderr
, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
749 process_pending_signals(env
);
756 printf("qemu-" TARGET_ARCH
" version " QEMU_VERSION
", Copyright (c) 2003-2004 Fabrice Bellard\n"
757 "usage: qemu-" TARGET_ARCH
" [-h] [-d opts] [-L path] [-s size] program [arguments...]\n"
758 "Darwin CPU emulator (compiled for %s emulation)\n"
760 "-h print this help\n"
761 "-L path set the %s library path (default='%s')\n"
762 "-s size set the stack size in bytes (default=%ld)\n"
766 "-no-code-copy disable code copy acceleration\n"
768 "-d options activate log (logfile='%s')\n"
769 "-g wait for gdb on port 1234\n"
770 "-p pagesize set the host page size to 'pagesize'\n",
779 /* XXX: currently only used for async signals (see signal.c) */
780 CPUState
*global_env
;
781 /* used only if single thread */
782 CPUState
*cpu_single_env
= NULL
;
784 /* used to free thread contexts */
785 TaskState
*first_task_state
;
787 int main(int argc
, char **argv
)
789 const char *filename
;
790 struct target_pt_regs regs1
, *regs
= ®s1
;
791 TaskState ts1
, *ts
= &ts1
;
794 short use_gdbstub
= 0;
801 cpu_set_log_filename(DEBUG_LOGFILE
);
812 if (!strcmp(r
, "-")) {
814 } else if (!strcmp(r
, "d")) {
822 mask
= cpu_str_to_log_mask(r
);
824 printf("Log items (comma separated):\n");
825 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
826 printf("%-10s %s\n", item
->name
, item
->help
);
831 } else if (!strcmp(r
, "s")) {
833 stack_size
= strtol(r
, (char **)&r
, 0);
837 stack_size
*= 1024 * 1024;
838 else if (*r
== 'k' || *r
== 'K')
840 } else if (!strcmp(r
, "L")) {
841 interp_prefix
= argv
[optind
++];
842 } else if (!strcmp(r
, "p")) {
843 qemu_host_page_size
= atoi(argv
[optind
++]);
844 if (qemu_host_page_size
== 0 ||
845 (qemu_host_page_size
& (qemu_host_page_size
- 1)) != 0) {
846 fprintf(stderr
, "page size must be a power of two\n");
850 if (!strcmp(r
, "g")) {
854 if (!strcmp(r
, "no-code-copy")) {
855 code_copy_enabled
= 0;
864 filename
= argv
[optind
];
867 memset(regs
, 0, sizeof(struct target_pt_regs
));
869 /* NOTE: we need to init the CPU at this stage to get
870 qemu_host_page_size */
873 printf("Starting %s with qemu\n----------------\n", filename
);
877 if (mach_exec(filename
, argv
+optind
, environ
, regs
) != 0) {
878 printf("Error loading %s\n", filename
);
886 /* build Task State */
887 memset(ts
, 0, sizeof(TaskState
));
890 env
->user_mode_only
= 1;
892 #if defined(TARGET_I386)
893 cpu_x86_set_cpl(env
, 3);
895 env
->cr
[0] = CR0_PG_MASK
| CR0_WP_MASK
| CR0_PE_MASK
;
896 env
->hflags
|= HF_PE_MASK
;
898 if (env
->cpuid_features
& CPUID_SSE
) {
899 env
->cr
[4] |= CR4_OSFXSR_MASK
;
900 env
->hflags
|= HF_OSFXSR_MASK
;
903 /* flags setup : we activate the IRQs by default as in user mode */
904 env
->eflags
|= IF_MASK
;
906 /* darwin register setup */
907 env
->regs
[R_EAX
] = regs
->eax
;
908 env
->regs
[R_EBX
] = regs
->ebx
;
909 env
->regs
[R_ECX
] = regs
->ecx
;
910 env
->regs
[R_EDX
] = regs
->edx
;
911 env
->regs
[R_ESI
] = regs
->esi
;
912 env
->regs
[R_EDI
] = regs
->edi
;
913 env
->regs
[R_EBP
] = regs
->ebp
;
914 env
->regs
[R_ESP
] = regs
->esp
;
915 env
->eip
= regs
->eip
;
917 /* Darwin LDT setup */
918 /* 2 - User code segment
919 3 - User data segment
921 bzero(ldt_table
, LDT_TABLE_SIZE
* sizeof(ldt_table
[0]));
922 env
->ldt
.base
= (uint32_t) ldt_table
;
923 env
->ldt
.limit
= sizeof(ldt_table
) - 1;
925 write_dt(ldt_table
+ 2, 0, 0xfffff,
926 DESC_G_MASK
| DESC_B_MASK
| DESC_P_MASK
| DESC_S_MASK
|
927 (3 << DESC_DPL_SHIFT
) | (0xa << DESC_TYPE_SHIFT
));
928 write_dt(ldt_table
+ 3, 0, 0xfffff,
929 DESC_G_MASK
| DESC_B_MASK
| DESC_P_MASK
| DESC_S_MASK
|
930 (3 << DESC_DPL_SHIFT
) | (0x2 << DESC_TYPE_SHIFT
));
931 write_dt(ldt_table
+ 4, 0, 0xfffff,
932 DESC_G_MASK
| DESC_B_MASK
| DESC_P_MASK
| DESC_S_MASK
|
933 (3 << DESC_DPL_SHIFT
) | (0x2 << DESC_TYPE_SHIFT
));
936 * has changed a lot between old Darwin/x86 (pre-Mac Intel) and Mac OS X/x86,
937 now everything is done via int 0x81(mach) int 0x82 (thread) and sysenter/sysexit(unix) */
938 bzero(gdt_table
, sizeof(gdt_table
));
939 env
->gdt
.base
= (uint32_t)gdt_table
;
940 env
->gdt
.limit
= sizeof(gdt_table
) - 1;
942 /* Set up a back door to handle sysenter syscalls (unix) */
943 char * syscallbackdoor
= malloc(64);
944 page_set_flags((int)syscallbackdoor
, (int)syscallbackdoor
+ 64, PROT_EXEC
| PROT_READ
| PAGE_VALID
);
947 syscallbackdoor
[i
++] = 0xcd;
948 syscallbackdoor
[i
++] = 0x90; /* int 0x90 */
949 syscallbackdoor
[i
++] = 0x0F;
950 syscallbackdoor
[i
++] = 0x35; /* sysexit */
952 /* Darwin sysenter/sysexit setup */
953 env
->sysenter_cs
= 0x1; //XXX
954 env
->sysenter_eip
= (int)syscallbackdoor
;
955 env
->sysenter_esp
= (int)malloc(64);
958 This must match up with GDT[4] */
959 env
->tr
.base
= (uint32_t) tss
;
960 env
->tr
.limit
= sizeof(tss
) - 1;
961 env
->tr
.flags
= DESC_P_MASK
| (0x9 << DESC_TYPE_SHIFT
);
962 stw(tss
+ 2, 0x10); // ss0 = 0x10 = GDT[2] = Kernel Data Segment
964 /* Darwin interrupt setup */
965 bzero(idt_table
, sizeof(idt_table
));
966 env
->idt
.base
= (uint32_t) idt_table
;
967 env
->idt
.limit
= sizeof(idt_table
) - 1;
988 /* Syscalls are done via
989 int 0x80 (unix) (rarely used)
992 int 0x83 (diag) (not handled here)
993 sysenter/sysexit (unix) -> we redirect that to int 0x90 */
994 set_idt(0x79, 3); /* Commpage hack, here is our backdoor interrupt */
995 set_idt(0x80, 3); /* Unix Syscall */
996 set_idt(0x81, 3); /* Mach Syscalls */
997 set_idt(0x82, 3); /* thread Syscalls */
999 set_idt(0x90, 3); /* qemu-darwin-user's Unix syscalls backdoor */
1002 cpu_x86_load_seg(env
, R_CS
, __USER_CS
);
1003 cpu_x86_load_seg(env
, R_DS
, __USER_DS
);
1004 cpu_x86_load_seg(env
, R_ES
, __USER_DS
);
1005 cpu_x86_load_seg(env
, R_SS
, __USER_DS
);
1006 cpu_x86_load_seg(env
, R_FS
, __USER_DS
);
1007 cpu_x86_load_seg(env
, R_GS
, __USER_DS
);
1009 #elif defined(TARGET_PPC)
1012 env
->nip
= regs
->nip
;
1013 for(i
= 0; i
< 32; i
++) {
1014 env
->gpr
[i
] = regs
->gpr
[i
];
1018 #error unsupported target CPU
1022 printf("Waiting for gdb Connection on port 1234...\n");
1023 gdbserver_start (1234);
1024 gdb_handlesig(env
, 0);