]> git.proxmox.com Git - mirror_qemu.git/blobdiff - target-sparc/exec.h
revamp acpitable parsing and allow to specify complete (headerful) table
[mirror_qemu.git] / target-sparc / exec.h
index 2b478cb2b5a05c8f49e4a8c0307c5f1e863de2bf..2395b0092f92a5a793665bfadf03cabe83c25487 100644 (file)
@@ -5,47 +5,11 @@
 
 register struct CPUSPARCState *env asm(AREG0);
 
-#define DT0 (env->dt0)
-#define DT1 (env->dt1)
-#define QT0 (env->qt0)
-#define QT1 (env->qt1)
-
 #include "cpu.h"
 #include "exec-all.h"
 
-static inline void env_to_regs(void)
-{
-}
-
-static inline void regs_to_env(void)
-{
-}
-
-/* helper.c */
-void cpu_lock(void);
-void cpu_unlock(void);
-int cpu_sparc_handle_mmu_fault(CPUState *env1, target_ulong address, int rw,
-                               int mmu_idx, int is_softmmu);
-target_ulong mmu_probe(CPUState *env, target_ulong address, int mmulev);
-void dump_mmu(CPUState *env);
-
-/* op_helper.c */
-void do_interrupt(CPUState *env);
-
-/* cpu-exec.c */
-void cpu_loop_exit(void);
-
-/* sun4m.c */
-void cpu_check_irqs(CPUSPARCState *env);
-
-static inline int cpu_halted(CPUState *env1) {
-    if (!env1->halted)
-        return 0;
-    if ((env1->interrupt_request & CPU_INTERRUPT_HARD) && (env1->psret != 0)) {
-        env1->halted = 0;
-        return 0;
-    }
-    return EXCP_HALTED;
-}
+#if !defined(CONFIG_USER_ONLY)
+#include "softmmu_exec.h"
+#endif /* !defined(CONFIG_USER_ONLY) */
 
 #endif