2 * i386 emulator main execution loop
4 * Copyright (c) 2003 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 int tb_invalidated_flag;
27 //#define DEBUG_SIGNAL
29 #if defined(TARGET_ARM) || defined(TARGET_SPARC)
30 /* XXX: unify with i386 target */
31 void cpu_loop_exit(void)
33 longjmp(env->jmp_env, 1);
37 /* main execution loop */
39 int cpu_exec(CPUState *env1)
41 int saved_T0, saved_T1, saved_T2;
70 int code_gen_size, ret, interrupt_request;
71 void (*gen_func)(void);
72 TranslationBlock *tb, **ptb;
73 uint8_t *tc_ptr, *cs_base, *pc;
76 /* first we save global registers */
83 /* we also save i7 because longjmp may not restore it */
84 asm volatile ("mov %%i7, %0" : "=r" (saved_i7));
87 #if defined(TARGET_I386)
90 EAX = env->regs[R_EAX];
94 ECX = env->regs[R_ECX];
98 EDX = env->regs[R_EDX];
102 EBX = env->regs[R_EBX];
106 ESP = env->regs[R_ESP];
110 EBP = env->regs[R_EBP];
114 ESI = env->regs[R_ESI];
118 EDI = env->regs[R_EDI];
121 /* put eflags in CPU temporary format */
122 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
123 DF = 1 - (2 * ((env->eflags >> 10) & 1));
124 CC_OP = CC_OP_EFLAGS;
125 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
126 #elif defined(TARGET_ARM)
130 env->CF = (psr >> 29) & 1;
131 env->NZF = (psr & 0xc0000000) ^ 0x40000000;
132 env->VF = (psr << 3) & 0x80000000;
133 env->cpsr = psr & ~0xf0000000;
135 #elif defined(TARGET_SPARC)
136 #elif defined(TARGET_PPC)
138 #error unsupported target CPU
140 env->exception_index = -1;
142 /* prepare setjmp context for exception handling */
144 if (setjmp(env->jmp_env) == 0) {
145 env->current_tb = NULL;
146 /* if an exception is pending, we execute it here */
147 if (env->exception_index >= 0) {
148 if (env->exception_index >= EXCP_INTERRUPT) {
149 /* exit request from the cpu execution loop */
150 ret = env->exception_index;
152 } else if (env->user_mode_only) {
153 /* if user mode only, we simulate a fake exception
154 which will be hanlded outside the cpu execution
156 #if defined(TARGET_I386)
157 do_interrupt_user(env->exception_index,
158 env->exception_is_int,
160 env->exception_next_eip);
162 ret = env->exception_index;
165 #if defined(TARGET_I386)
166 /* simulate a real cpu exception. On i386, it can
167 trigger new exceptions, but we do not handle
168 double or triple faults yet. */
169 do_interrupt(env->exception_index,
170 env->exception_is_int,
172 env->exception_next_eip, 0);
173 #elif defined(TARGET_PPC)
177 env->exception_index = -1;
179 T0 = 0; /* force lookup of first TB */
182 /* g1 can be modified by some libc? functions */
185 interrupt_request = env->interrupt_request;
186 if (__builtin_expect(interrupt_request, 0)) {
187 #if defined(TARGET_I386)
188 /* if hardware interrupt pending, we execute it */
189 if ((interrupt_request & CPU_INTERRUPT_HARD) &&
190 (env->eflags & IF_MASK) &&
191 !(env->hflags & HF_INHIBIT_IRQ_MASK)) {
193 intno = cpu_x86_get_pic_interrupt(env);
195 fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno);
197 do_interrupt(intno, 0, 0, 0, 1);
198 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
199 /* ensure that no TB jump will be modified as
200 the program flow was changed */
207 #elif defined(TARGET_PPC)
208 if ((interrupt_request & CPU_INTERRUPT_HARD)) {
209 do_queue_exception(EXCP_EXTERNAL);
210 if (check_exception_state(env))
212 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
215 if (interrupt_request & CPU_INTERRUPT_EXITTB) {
216 env->interrupt_request &= ~CPU_INTERRUPT_EXITTB;
217 /* ensure that no TB jump will be modified as
218 the program flow was changed */
225 if (interrupt_request & CPU_INTERRUPT_EXIT) {
226 env->interrupt_request &= ~CPU_INTERRUPT_EXIT;
227 env->exception_index = EXCP_INTERRUPT;
233 #if defined(TARGET_I386)
234 /* restore flags in standard format */
235 env->regs[R_EAX] = EAX;
236 env->regs[R_EBX] = EBX;
237 env->regs[R_ECX] = ECX;
238 env->regs[R_EDX] = EDX;
239 env->regs[R_ESI] = ESI;
240 env->regs[R_EDI] = EDI;
241 env->regs[R_EBP] = EBP;
242 env->regs[R_ESP] = ESP;
243 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
244 cpu_x86_dump_state(env, logfile, X86_DUMP_CCOP);
245 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
246 #elif defined(TARGET_ARM)
247 env->cpsr = compute_cpsr();
248 cpu_arm_dump_state(env, logfile, 0);
249 env->cpsr &= ~0xf0000000;
250 #elif defined(TARGET_SPARC)
251 cpu_sparc_dump_state (env, logfile, 0);
252 #elif defined(TARGET_PPC)
253 cpu_ppc_dump_state(env, logfile, 0);
255 #error unsupported target CPU
259 /* we record a subset of the CPU state. It will
260 always be the same before a given translated block
262 #if defined(TARGET_I386)
264 flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK));
265 cs_base = env->segs[R_CS].base;
266 pc = cs_base + env->eip;
267 #elif defined(TARGET_ARM)
270 pc = (uint8_t *)env->regs[15];
271 #elif defined(TARGET_SPARC)
273 cs_base = (uint8_t *)env->npc;
274 pc = (uint8_t *) env->pc;
275 #elif defined(TARGET_PPC)
278 pc = (uint8_t *)env->nip;
280 #error unsupported CPU
282 tb = tb_find(&ptb, (unsigned long)pc, (unsigned long)cs_base,
285 TranslationBlock **ptb1;
287 target_ulong phys_pc, phys_page1, phys_page2, virt_page2;
292 tb_invalidated_flag = 0;
294 /* find translated block using physical mappings */
295 phys_pc = get_phys_addr_code(env, (unsigned long)pc);
296 phys_page1 = phys_pc & TARGET_PAGE_MASK;
298 h = tb_phys_hash_func(phys_pc);
299 ptb1 = &tb_phys_hash[h];
304 if (tb->pc == (unsigned long)pc &&
305 tb->page_addr[0] == phys_page1 &&
306 tb->cs_base == (unsigned long)cs_base &&
307 tb->flags == flags) {
308 /* check next page if needed */
309 if (tb->page_addr[1] != -1) {
310 virt_page2 = ((unsigned long)pc & TARGET_PAGE_MASK) +
312 phys_page2 = get_phys_addr_code(env, virt_page2);
313 if (tb->page_addr[1] == phys_page2)
319 ptb1 = &tb->phys_hash_next;
322 /* if no translated code available, then translate it now */
323 tb = tb_alloc((unsigned long)pc);
325 /* flush must be done */
327 /* cannot fail at this point */
328 tb = tb_alloc((unsigned long)pc);
329 /* don't forget to invalidate previous TB info */
330 ptb = &tb_hash[tb_hash_func((unsigned long)pc)];
333 tc_ptr = code_gen_ptr;
335 tb->cs_base = (unsigned long)cs_base;
337 cpu_gen_code(env, tb, CODE_GEN_MAX_SIZE, &code_gen_size);
338 code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1));
340 /* check next page if needed */
341 virt_page2 = ((unsigned long)pc + tb->size - 1) & TARGET_PAGE_MASK;
343 if (((unsigned long)pc & TARGET_PAGE_MASK) != virt_page2) {
344 phys_page2 = get_phys_addr_code(env, virt_page2);
346 tb_link_phys(tb, phys_pc, phys_page2);
349 if (tb_invalidated_flag) {
350 /* as some TB could have been invalidated because
351 of memory exceptions while generating the code, we
352 must recompute the hash index here */
353 ptb = &tb_hash[tb_hash_func((unsigned long)pc)];
355 ptb = &(*ptb)->hash_next;
358 /* we add the TB in the virtual pc hash table */
360 tb->hash_next = NULL;
362 spin_unlock(&tb_lock);
366 fprintf(logfile, "Trace 0x%08lx [0x%08lx] %s\n",
367 (long)tb->tc_ptr, (long)tb->pc,
368 lookup_symbol((void *)tb->pc));
374 /* see if we can patch the calling TB. */
376 #if defined(TARGET_I386) && defined(USE_CODE_COPY)
377 && (tb->cflags & CF_CODE_COPY) ==
378 (((TranslationBlock *)(T0 & ~3))->cflags & CF_CODE_COPY)
382 tb_add_jump((TranslationBlock *)(T0 & ~3), T0 & 3, tb);
383 spin_unlock(&tb_lock);
386 env->current_tb = tb;
387 /* execute the generated code */
388 gen_func = (void *)tc_ptr;
389 #if defined(__sparc__)
390 __asm__ __volatile__("call %0\n\t"
394 : "i0", "i1", "i2", "i3", "i4", "i5");
395 #elif defined(__arm__)
396 asm volatile ("mov pc, %0\n\t"
397 ".global exec_loop\n\t"
401 : "r1", "r2", "r3", "r8", "r9", "r10", "r12", "r14");
402 #elif defined(TARGET_I386) && defined(USE_CODE_COPY)
404 if (!(tb->cflags & CF_CODE_COPY)) {
407 /* we work with native eflags */
408 CC_SRC = cc_table[CC_OP].compute_all();
409 CC_OP = CC_OP_EFLAGS;
410 asm(".globl exec_loop\n"
415 " fs movl %11, %%eax\n"
416 " andl $0x400, %%eax\n"
417 " fs orl %8, %%eax\n"
420 " fs movl %%esp, %12\n"
421 " fs movl %0, %%eax\n"
422 " fs movl %1, %%ecx\n"
423 " fs movl %2, %%edx\n"
424 " fs movl %3, %%ebx\n"
425 " fs movl %4, %%esp\n"
426 " fs movl %5, %%ebp\n"
427 " fs movl %6, %%esi\n"
428 " fs movl %7, %%edi\n"
431 " fs movl %%esp, %4\n"
432 " fs movl %12, %%esp\n"
433 " fs movl %%eax, %0\n"
434 " fs movl %%ecx, %1\n"
435 " fs movl %%edx, %2\n"
436 " fs movl %%ebx, %3\n"
437 " fs movl %%ebp, %5\n"
438 " fs movl %%esi, %6\n"
439 " fs movl %%edi, %7\n"
442 " movl %%eax, %%ecx\n"
443 " andl $0x400, %%ecx\n"
445 " andl $0x8d5, %%eax\n"
446 " fs movl %%eax, %8\n"
448 " subl %%ecx, %%eax\n"
449 " fs movl %%eax, %11\n"
450 " fs movl %9, %%ebx\n" /* get T0 value */
453 : "m" (*(uint8_t *)offsetof(CPUState, regs[0])),
454 "m" (*(uint8_t *)offsetof(CPUState, regs[1])),
455 "m" (*(uint8_t *)offsetof(CPUState, regs[2])),
456 "m" (*(uint8_t *)offsetof(CPUState, regs[3])),
457 "m" (*(uint8_t *)offsetof(CPUState, regs[4])),
458 "m" (*(uint8_t *)offsetof(CPUState, regs[5])),
459 "m" (*(uint8_t *)offsetof(CPUState, regs[6])),
460 "m" (*(uint8_t *)offsetof(CPUState, regs[7])),
461 "m" (*(uint8_t *)offsetof(CPUState, cc_src)),
462 "m" (*(uint8_t *)offsetof(CPUState, tmp0)),
464 "m" (*(uint8_t *)offsetof(CPUState, df)),
465 "m" (*(uint8_t *)offsetof(CPUState, saved_esp))
473 env->current_tb = NULL;
474 /* reset soft MMU for next block (it can currently
475 only be set by a memory fault) */
476 #if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU)
477 if (env->hflags & HF_SOFTMMU_MASK) {
478 env->hflags &= ~HF_SOFTMMU_MASK;
479 /* do not allow linking to another block */
489 #if defined(TARGET_I386)
490 /* restore flags in standard format */
491 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
493 /* restore global registers */
518 #elif defined(TARGET_ARM)
519 env->cpsr = compute_cpsr();
520 #elif defined(TARGET_SPARC)
521 #elif defined(TARGET_PPC)
523 #error unsupported target CPU
526 asm volatile ("mov %0, %%i7" : : "r" (saved_i7));
535 #if defined(TARGET_I386) && defined(CONFIG_USER_ONLY)
537 void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector)
539 CPUX86State *saved_env;
543 if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) {
545 cpu_x86_load_seg_cache(env, seg_reg, selector,
546 (uint8_t *)(selector << 4), 0xffff, 0);
548 load_seg(seg_reg, selector);
553 void cpu_x86_fsave(CPUX86State *s, uint8_t *ptr, int data32)
555 CPUX86State *saved_env;
560 helper_fsave(ptr, data32);
565 void cpu_x86_frstor(CPUX86State *s, uint8_t *ptr, int data32)
567 CPUX86State *saved_env;
572 helper_frstor(ptr, data32);
577 #endif /* TARGET_I386 */
589 #include <sys/ucontext.h>
591 #if defined(TARGET_I386)
593 /* 'pc' is the host PC at which the exception was raised. 'address' is
594 the effective address of the memory exception. 'is_write' is 1 if a
595 write caused the exception and otherwise 0'. 'old_set' is the
596 signal set which should be restored */
597 static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
598 int is_write, sigset_t *old_set,
601 TranslationBlock *tb;
605 env = cpu_single_env; /* XXX: find a correct solution for multithread */
606 #if defined(DEBUG_SIGNAL)
607 qemu_printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
608 pc, address, is_write, *(unsigned long *)old_set);
610 /* XXX: locking issue */
611 if (is_write && page_unprotect(address)) {
614 /* see if it is an MMU fault */
615 ret = cpu_x86_handle_mmu_fault(env, address, is_write,
616 ((env->hflags & HF_CPL_MASK) == 3), 0);
618 return 0; /* not an MMU fault */
620 return 1; /* the MMU fault was handled without causing real CPU fault */
621 /* now we have a real cpu fault */
624 /* the PC is inside the translated code. It means that we have
625 a virtual CPU fault */
626 cpu_restore_state(tb, env, pc, puc);
630 printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
631 env->eip, env->cr[2], env->error_code);
633 /* we restore the process signal mask as the sigreturn should
634 do it (XXX: use sigsetjmp) */
635 sigprocmask(SIG_SETMASK, old_set, NULL);
636 raise_exception_err(EXCP0E_PAGE, env->error_code);
638 /* activate soft MMU for this block */
639 env->hflags |= HF_SOFTMMU_MASK;
640 sigprocmask(SIG_SETMASK, old_set, NULL);
643 /* never comes here */
647 #elif defined(TARGET_ARM)
648 static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
649 int is_write, sigset_t *old_set,
655 #elif defined(TARGET_SPARC)
656 static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
657 int is_write, sigset_t *old_set,
660 /* XXX: locking issue */
661 if (is_write && page_unprotect(address)) {
666 #elif defined (TARGET_PPC)
667 static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
668 int is_write, sigset_t *old_set,
671 TranslationBlock *tb;
676 env = cpu_single_env; /* XXX: find a correct solution for multithread */
678 #if defined(DEBUG_SIGNAL)
679 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
680 pc, address, is_write, *(unsigned long *)old_set);
682 /* XXX: locking issue */
683 if (is_write && page_unprotect(address)) {
687 /* see if it is an MMU fault */
688 ret = cpu_ppc_handle_mmu_fault(env, address, is_write, msr_pr, 0);
690 return 0; /* not an MMU fault */
692 return 1; /* the MMU fault was handled without causing real CPU fault */
694 /* now we have a real cpu fault */
697 /* the PC is inside the translated code. It means that we have
698 a virtual CPU fault */
699 cpu_restore_state(tb, env, pc, puc);
703 printf("PF exception: NIP=0x%08x error=0x%x %p\n",
704 env->nip, env->error_code, tb);
706 /* we restore the process signal mask as the sigreturn should
707 do it (XXX: use sigsetjmp) */
708 sigprocmask(SIG_SETMASK, old_set, NULL);
709 do_queue_exception_err(env->exception_index, env->error_code);
711 /* activate soft MMU for this block */
712 sigprocmask(SIG_SETMASK, old_set, NULL);
715 /* never comes here */
719 #error unsupported target CPU
722 #if defined(__i386__)
724 #if defined(USE_CODE_COPY)
725 static void cpu_send_trap(unsigned long pc, int trap,
728 TranslationBlock *tb;
731 env = cpu_single_env; /* XXX: find a correct solution for multithread */
732 /* now we have a real cpu fault */
735 /* the PC is inside the translated code. It means that we have
736 a virtual CPU fault */
737 cpu_restore_state(tb, env, pc, uc);
739 sigprocmask(SIG_SETMASK, &uc->uc_sigmask, NULL);
740 raise_exception_err(trap, env->error_code);
744 int cpu_signal_handler(int host_signum, struct siginfo *info,
747 struct ucontext *uc = puc;
755 #define REG_TRAPNO TRAPNO
757 pc = uc->uc_mcontext.gregs[REG_EIP];
758 trapno = uc->uc_mcontext.gregs[REG_TRAPNO];
759 #if defined(TARGET_I386) && defined(USE_CODE_COPY)
760 if (trapno == 0x00 || trapno == 0x05) {
761 /* send division by zero or bound exception */
762 cpu_send_trap(pc, trapno, uc);
766 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
768 (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0,
769 &uc->uc_sigmask, puc);
772 #elif defined(__powerpc)
774 int cpu_signal_handler(int host_signum, struct siginfo *info,
777 struct ucontext *uc = puc;
778 struct pt_regs *regs = uc->uc_mcontext.regs;
786 if (regs->dsisr & 0x00800000)
789 if (regs->trap != 0x400 && (regs->dsisr & 0x02000000))
792 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
793 is_write, &uc->uc_sigmask, puc);
796 #elif defined(__alpha__)
798 int cpu_signal_handler(int host_signum, struct siginfo *info,
801 struct ucontext *uc = puc;
802 uint32_t *pc = uc->uc_mcontext.sc_pc;
806 /* XXX: need kernel patch to get write flag faster */
807 switch (insn >> 26) {
822 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
823 is_write, &uc->uc_sigmask, puc);
825 #elif defined(__sparc__)
827 int cpu_signal_handler(int host_signum, struct siginfo *info,
830 uint32_t *regs = (uint32_t *)(info + 1);
831 void *sigmask = (regs + 20);
836 /* XXX: is there a standard glibc define ? */
838 /* XXX: need kernel patch to get write flag faster */
840 insn = *(uint32_t *)pc;
841 if ((insn >> 30) == 3) {
842 switch((insn >> 19) & 0x3f) {
854 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
855 is_write, sigmask, NULL);
858 #elif defined(__arm__)
860 int cpu_signal_handler(int host_signum, struct siginfo *info,
863 struct ucontext *uc = puc;
867 pc = uc->uc_mcontext.gregs[R15];
868 /* XXX: compute is_write */
870 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
875 #elif defined(__mc68000)
877 int cpu_signal_handler(int host_signum, struct siginfo *info,
880 struct ucontext *uc = puc;
884 pc = uc->uc_mcontext.gregs[16];
885 /* XXX: compute is_write */
887 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
889 &uc->uc_sigmask, puc);
894 #error host CPU specific signal handler needed