diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2013-03-12 00:31:15 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2013-03-22 15:28:48 +0100 |
commit | 59191721a16ae393c01280dc633937374cdf474e (patch) | |
tree | 94370e8c33a59a86f3d046b51446da02e2cde305 /target-ppc/cpu.h | |
parent | 496272a7018ba01aa2b87a1a5ed866ff85133401 (diff) | |
download | qemu-59191721a16ae393c01280dc633937374cdf474e.zip qemu-59191721a16ae393c01280dc633937374cdf474e.tar.gz qemu-59191721a16ae393c01280dc633937374cdf474e.tar.bz2 |
target-ppc: Don't share get_pteg_offset() between 32 and 64-bit
The get_pteg_offset() helper function is currently shared between 32-bit
and 64-bit hash mmus, taking a parameter for the hash pte size. In the
64-bit paths, it's only called in one place, and it's a trivial
calculation. This patch, therefore, open codes it for 64-bit. The
remaining version, which is used in two places is made 32-bit only and
moved to mmu-hash32.c.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-ppc/cpu.h')
-rw-r--r-- | target-ppc/cpu.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 41cd5d6..86e8978 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -1133,7 +1133,6 @@ void ppc_hw_interrupt (CPUPPCState *env); #if !defined(CONFIG_USER_ONLY) void ppc_store_sdr1 (CPUPPCState *env, target_ulong value); -hwaddr get_pteg_offset(CPUPPCState *env, hwaddr hash, int pte_size); int get_bat(CPUPPCState *env, mmu_ctx_t *ctx, target_ulong virtual, int rw, int type); #endif /* !defined(CONFIG_USER_ONLY) */ |