aboutsummaryrefslogtreecommitdiff
path: root/target/ppc/helper_regs.h
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2021-03-23 12:43:38 -0600
committerDavid Gibson <david@gibson.dropbear.id.au>2021-05-04 11:41:25 +1000
commitd764184ddb22a7a41a293e54c26cfe1717167a3f (patch)
treedd31419ceb1145465b00924d4648ee23c59b2bc2 /target/ppc/helper_regs.h
parent0e6bac3edb42b284aad329313e3a65c451af1d52 (diff)
downloadqemu-d764184ddb22a7a41a293e54c26cfe1717167a3f.zip
qemu-d764184ddb22a7a41a293e54c26cfe1717167a3f.tar.gz
qemu-d764184ddb22a7a41a293e54c26cfe1717167a3f.tar.bz2
target/ppc: Remove env->immu_idx and env->dmmu_idx
We weren't recording MSR_GS in hflags, which means that BookE memory accesses were essentially random vs Guest State. Instead of adding this bit directly, record the completed mmu indexes instead. This makes it obvious that we are recording exactly the information that we need. This also means that we can stop directly recording MSR_IR. Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210323184340.619757-9-richard.henderson@linaro.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/helper_regs.h')
-rw-r--r--target/ppc/helper_regs.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/target/ppc/helper_regs.h b/target/ppc/helper_regs.h
index 4148a44..42f2687 100644
--- a/target/ppc/helper_regs.h
+++ b/target/ppc/helper_regs.h
@@ -21,7 +21,6 @@
#define HELPER_REGS_H
void hreg_swap_gpr_tgpr(CPUPPCState *env);
-void hreg_compute_mem_idx(CPUPPCState *env);
void hreg_compute_hflags(CPUPPCState *env);
void cpu_interrupt_exittb(CPUState *cs);
int hreg_store_msr(CPUPPCState *env, target_ulong value, int alter_hv);