mirror of https://github.com/xqemu/xqemu.git
target-ppc: remove remaining warnings
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5991 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
94fa46e2c2
commit
9322057384
|
@ -678,13 +678,18 @@ void cpu_ppc_close (CPUPPCState *s);
|
||||||
is returned if the signal was handled by the virtual CPU. */
|
is returned if the signal was handled by the virtual CPU. */
|
||||||
int cpu_ppc_signal_handler (int host_signum, void *pinfo,
|
int cpu_ppc_signal_handler (int host_signum, void *pinfo,
|
||||||
void *puc);
|
void *puc);
|
||||||
|
int cpu_ppc_handle_mmu_fault (CPUPPCState *env, target_ulong address, int rw,
|
||||||
|
int mmu_idx, int is_softmmu);
|
||||||
|
int get_physical_address (CPUPPCState *env, mmu_ctx_t *ctx, target_ulong vaddr,
|
||||||
|
int rw, int access_type);
|
||||||
void do_interrupt (CPUPPCState *env);
|
void do_interrupt (CPUPPCState *env);
|
||||||
void ppc_hw_interrupt (CPUPPCState *env);
|
void ppc_hw_interrupt (CPUPPCState *env);
|
||||||
|
|
||||||
void dump_stack (CPUPPCState *env);
|
void cpu_dump_rfi (target_ulong RA, target_ulong msr);
|
||||||
|
|
||||||
#if !defined(CONFIG_USER_ONLY)
|
#if !defined(CONFIG_USER_ONLY)
|
||||||
|
void ppc6xx_tlb_store (CPUPPCState *env, target_ulong EPN, int way, int is_code,
|
||||||
|
target_ulong pte0, target_ulong pte1);
|
||||||
void ppc_store_ibatu (CPUPPCState *env, int nr, target_ulong value);
|
void ppc_store_ibatu (CPUPPCState *env, int nr, target_ulong value);
|
||||||
void ppc_store_ibatl (CPUPPCState *env, int nr, target_ulong value);
|
void ppc_store_ibatl (CPUPPCState *env, int nr, target_ulong value);
|
||||||
void ppc_store_dbatu (CPUPPCState *env, int nr, target_ulong value);
|
void ppc_store_dbatu (CPUPPCState *env, int nr, target_ulong value);
|
||||||
|
|
|
@ -38,12 +38,6 @@ register struct CPUPPCState *env asm(AREG0);
|
||||||
#include "softmmu_exec.h"
|
#include "softmmu_exec.h"
|
||||||
#endif /* !defined(CONFIG_USER_ONLY) */
|
#endif /* !defined(CONFIG_USER_ONLY) */
|
||||||
|
|
||||||
int get_physical_address (CPUState *env, mmu_ctx_t *ctx, target_ulong vaddr,
|
|
||||||
int rw, int access_type);
|
|
||||||
|
|
||||||
void ppc6xx_tlb_store (CPUState *env, target_ulong EPN, int way, int is_code,
|
|
||||||
target_ulong pte0, target_ulong pte1);
|
|
||||||
|
|
||||||
static always_inline void env_to_regs (void)
|
static always_inline void env_to_regs (void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -52,9 +46,6 @@ static always_inline void regs_to_env (void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
|
|
||||||
int mmu_idx, int is_softmmu);
|
|
||||||
|
|
||||||
static always_inline int cpu_halted (CPUState *env)
|
static always_inline int cpu_halted (CPUState *env)
|
||||||
{
|
{
|
||||||
if (!env->halted)
|
if (!env->halted)
|
||||||
|
|
|
@ -1205,7 +1205,7 @@ static always_inline void ppc4xx_tlb_invalidate_virt (CPUState *env,
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
int mmu40x_get_physical_address (CPUState *env, mmu_ctx_t *ctx,
|
static int mmu40x_get_physical_address (CPUState *env, mmu_ctx_t *ctx,
|
||||||
target_ulong address, int rw, int access_type)
|
target_ulong address, int rw, int access_type)
|
||||||
{
|
{
|
||||||
ppcemb_tlb_t *tlb;
|
ppcemb_tlb_t *tlb;
|
||||||
|
@ -1287,7 +1287,7 @@ void store_40x_sler (CPUPPCState *env, uint32_t val)
|
||||||
env->spr[SPR_405_SLER] = val;
|
env->spr[SPR_405_SLER] = val;
|
||||||
}
|
}
|
||||||
|
|
||||||
int mmubooke_get_physical_address (CPUState *env, mmu_ctx_t *ctx,
|
static int mmubooke_get_physical_address (CPUState *env, mmu_ctx_t *ctx,
|
||||||
target_ulong address, int rw,
|
target_ulong address, int rw,
|
||||||
int access_type)
|
int access_type)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1669,8 +1669,6 @@ void helper_store_msr (target_ulong val)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void cpu_dump_rfi (target_ulong RA, target_ulong msr);
|
|
||||||
|
|
||||||
static always_inline void do_rfi (target_ulong nip, target_ulong msr,
|
static always_inline void do_rfi (target_ulong nip, target_ulong msr,
|
||||||
target_ulong msrm, int keep_msrh)
|
target_ulong msrm, int keep_msrh)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue