]> git.proxmox.com Git - mirror_qemu.git/commitdiff
target-ppc: Use cpu_exec_enter qom hook
authorRichard Henderson <rth@twiddle.net>
Sat, 13 Sep 2014 16:45:16 +0000 (09:45 -0700)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 25 Sep 2014 17:54:21 +0000 (18:54 +0100)
Cc: qemu-ppc@nongnu.org
Signed-off-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1410626734-3804-6-git-send-email-rth@twiddle.net
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
cpu-exec.c
target-ppc/translate_init.c

index 9f84dda020f63f7e48bb7e87800bb53913cb622b..d930e7a49afc603ac85c2eb65cace9d6c2322b71 100644 (file)
@@ -352,9 +352,6 @@ int cpu_exec(CPUArchState *env)
         cpu->exit_request = 1;
     }
 
-#if defined(TARGET_PPC)
-    env->reserve_addr = -1;
-#endif
     cc->cpu_exec_enter(cpu);
     cpu->exception_index = -1;
 
index 48177ed0a0fd6f70085a17cc782fb5e7044ad3a8..e577e03b176eff931bda130950fa905ea338f03d 100644 (file)
@@ -9456,6 +9456,14 @@ static bool ppc_cpu_has_work(CPUState *cs)
     return msr_ee && (cs->interrupt_request & CPU_INTERRUPT_HARD);
 }
 
+static void ppc_cpu_exec_enter(CPUState *cs)
+{
+    PowerPCCPU *cpu = POWERPC_CPU(cs);
+    CPUPPCState *env = &cpu->env;
+
+    env->reserve_addr = -1;
+}
+
 /* CPUClass::reset() */
 static void ppc_cpu_reset(CPUState *s)
 {
@@ -9638,6 +9646,7 @@ static void ppc_cpu_class_init(ObjectClass *oc, void *data)
     cc->write_elf64_qemunote = ppc64_cpu_write_elf64_qemunote;
 #endif
 #endif
+    cc->cpu_exec_enter = ppc_cpu_exec_enter;
 
     cc->gdb_num_core_regs = 71;