From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L61p1-00036R-SC for qemu-devel@nongnu.org; Fri, 28 Nov 2008 06:47:44 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L61oz-000359-So for qemu-devel@nongnu.org; Fri, 28 Nov 2008 06:47:42 -0500 Received: from [199.232.76.173] (port=53037 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L61oz-00034x-EQ for qemu-devel@nongnu.org; Fri, 28 Nov 2008 06:47:41 -0500 Received: from gecko.sbs.de ([194.138.37.40]:15380) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L61oy-0007gw-TD for qemu-devel@nongnu.org; Fri, 28 Nov 2008 06:47:41 -0500 Received: from mail2.sbs.de (localhost [127.0.0.1]) by gecko.sbs.de (8.12.11.20060308/8.12.11) with ESMTP id mASBldnW029112 for ; Fri, 28 Nov 2008 12:47:39 +0100 Received: from [139.25.109.167] (mchn012c.mchp.siemens.de [139.25.109.167] (may be forged)) by mail2.sbs.de (8.12.11.20060308/8.12.11) with ESMTP id mASBld3s025024 for ; Fri, 28 Nov 2008 12:47:39 +0100 Message-ID: <492FDA5B.4050207@siemens.com> Date: Fri, 28 Nov 2008 12:47:39 +0100 From: Jan Kiszka MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 1/2] Common cpu_loop_exit prototype Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org All archs use the same cpu_loop_exit, so move the prototype in a common header. i386 was carrying a __hidden attribute, but that was empty for this arch anyway. Signed-off-by: Jan Kiszka --- exec-all.h | 1 + target-alpha/cpu.h | 1 - target-arm/exec.h | 2 -- target-cris/exec.h | 2 -- target-i386/exec.h | 1 - target-m68k/exec.h | 2 -- target-mips/exec.h | 1 - target-ppc/cpu.h | 1 - target-sh4/exec.h | 2 -- target-sparc/exec.h | 3 --- 10 files changed, 1 insertions(+), 15 deletions(-) diff --git a/exec-all.h b/exec-all.h index aec318b..ca97f57 100644 --- a/exec-all.h +++ b/exec-all.h @@ -82,6 +82,7 @@ TranslationBlock *tb_gen_code(CPUState *env, target_ulong pc, target_ulong cs_base, int flags, int cflags); void cpu_exec_init(CPUState *env); +void cpu_loop_exit(void); int page_unprotect(target_ulong address, unsigned long pc, void *puc); void tb_invalidate_phys_page_range(target_phys_addr_t start, target_phys_addr_t end, int is_cpu_write_access); diff --git a/target-alpha/cpu.h b/target-alpha/cpu.h index 122e2c2..65be4fb 100644 --- a/target-alpha/cpu.h +++ b/target-alpha/cpu.h @@ -409,7 +409,6 @@ int cpu_alpha_signal_handler(int host_signum, void *pinfo, void *puc); int cpu_alpha_mfpr (CPUState *env, int iprn, uint64_t *valp); int cpu_alpha_mtpr (CPUState *env, int iprn, uint64_t val, uint64_t *oldvalp); -void cpu_loop_exit (void); void pal_init (CPUState *env); #if !defined (CONFIG_USER_ONLY) void call_pal (CPUState *env); diff --git a/target-arm/exec.h b/target-arm/exec.h index c543cf4..88f0886 100644 --- a/target-arm/exec.h +++ b/target-arm/exec.h @@ -58,6 +58,4 @@ static inline int cpu_halted(CPUState *env) { #include "softmmu_exec.h" #endif -void cpu_loop_exit(void); - void raise_exception(int); diff --git a/target-cris/exec.h b/target-cris/exec.h index 6171473..ec7346a 100644 --- a/target-cris/exec.h +++ b/target-cris/exec.h @@ -45,8 +45,6 @@ int cpu_cris_handle_mmu_fault (CPUState *env, target_ulong address, int rw, void cpu_cris_flush_flags(CPUCRISState *env, int cc_op); void helper_movec(CPUCRISState *env, int reg, uint32_t val); -void cpu_loop_exit(void); - static inline int cpu_halted(CPUState *env) { if (!env->halted) return 0; diff --git a/target-i386/exec.h b/target-i386/exec.h index d0756e1..3663166 100644 --- a/target-i386/exec.h +++ b/target-i386/exec.h @@ -72,7 +72,6 @@ void raise_interrupt(int intno, int is_int, int error_code, void raise_exception_err(int exception_index, int error_code); void raise_exception(int exception_index); void do_smm_enter(void); -void __hidden cpu_loop_exit(void); /* n must be a constant to be efficient */ static inline target_long lshift(target_long x, int n) diff --git a/target-m68k/exec.h b/target-m68k/exec.h index 745606e..f67941d 100644 --- a/target-m68k/exec.h +++ b/target-m68k/exec.h @@ -44,8 +44,6 @@ int cpu_m68k_handle_mmu_fault (CPUState *env, target_ulong address, int rw, #include "softmmu_exec.h" #endif -void cpu_loop_exit(void); - static inline int cpu_halted(CPUState *env) { if (!env->halted) return 0; diff --git a/target-mips/exec.h b/target-mips/exec.h index 5d3e356..8ab6437 100644 --- a/target-mips/exec.h +++ b/target-mips/exec.h @@ -29,7 +29,6 @@ int cpu_mips_handle_mmu_fault (CPUState *env, target_ulong address, int rw, void do_interrupt (CPUState *env); void r4k_invalidate_tlb (CPUState *env, int idx, int use_extra); -void cpu_loop_exit(void); void do_raise_exception_err (uint32_t exception, int error_code); void do_raise_exception (uint32_t exception); diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 711044b..8f7309b 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -689,7 +689,6 @@ int cpu_ppc_signal_handler (int host_signum, void *pinfo, void do_interrupt (CPUPPCState *env); void ppc_hw_interrupt (CPUPPCState *env); -void cpu_loop_exit (void); void dump_stack (CPUPPCState *env); diff --git a/target-sh4/exec.h b/target-sh4/exec.h index f2e6fea..6122610 100644 --- a/target-sh4/exec.h +++ b/target-sh4/exec.h @@ -65,6 +65,4 @@ int find_utlb_entry(CPUState * env, target_ulong address, int use_asid); void do_interrupt(CPUState * env); -void cpu_loop_exit(void); - #endif /* _EXEC_SH4_H */ diff --git a/target-sparc/exec.h b/target-sparc/exec.h index 75410aa..36fd117 100644 --- a/target-sparc/exec.h +++ b/target-sparc/exec.h @@ -24,9 +24,6 @@ static inline void regs_to_env(void) /* op_helper.c */ void do_interrupt(CPUState *env); -/* cpu-exec.c */ -void cpu_loop_exit(void); - static inline int cpu_halted(CPUState *env1) { if (!env1->halted) return 0;