qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [6971] Make i386-softmmu boot on Sparc host


From: Blue Swirl
Subject: [Qemu-devel] [6971] Make i386-softmmu boot on Sparc host
Date: Sat, 04 Apr 2009 07:41:21 +0000

Revision: 6971
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6971
Author:   blueswir1
Date:     2009-04-04 07:41:20 +0000 (Sat, 04 Apr 2009)
Log Message:
-----------
Make i386-softmmu boot on Sparc host

Modified Paths:
--------------
    trunk/cpu-exec.c

Modified: trunk/cpu-exec.c
===================================================================
--- trunk/cpu-exec.c    2009-04-03 07:33:24 UTC (rev 6970)
+++ trunk/cpu-exec.c    2009-04-04 07:41:20 UTC (rev 6971)
@@ -253,6 +253,11 @@
     /* prepare setjmp context for exception handling */
     for(;;) {
         if (setjmp(env->jmp_env) == 0) {
+#if defined(__sparc__) && !defined(HOST_SOLARIS)
+#undef env
+                    env = cpu_single_env;
+#define env cpu_single_env
+#endif
             env->current_tb = NULL;
             /* if an exception is pending, we execute it here */
             if (env->exception_index >= 0) {
@@ -390,6 +395,11 @@
                             env->interrupt_request &= ~(CPU_INTERRUPT_HARD | 
CPU_INTERRUPT_VIRQ);
                             intno = cpu_get_pic_interrupt(env);
                             qemu_log_mask(CPU_LOG_TB_IN_ASM, "Servicing 
hardware INT=0x%02x\n", intno);
+#if defined(__sparc__) && !defined(HOST_SOLARIS)
+#undef env
+                    env = cpu_single_env;
+#define env cpu_single_env
+#endif
                             do_interrupt(intno, 0, 0, 0, 1);
                             /* ensure that no TB jump will be modified as
                                the program flow was changed */





reply via email to

[Prev in Thread] Current Thread [Next in Thread]