[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v11 55/55] target/arm: remove v7m stub function for !CONFIG_TCG
From: |
Claudio Fontana |
Subject: |
[RFC v11 55/55] target/arm: remove v7m stub function for !CONFIG_TCG |
Date: |
Tue, 23 Mar 2021 16:46:39 +0100 |
it is needed just once, so just move the CONFIG_TCG check in place.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
---
target/arm/cpu-mmu.c | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/target/arm/cpu-mmu.c b/target/arm/cpu-mmu.c
index c6ac90a61e..9969bc9d30 100644
--- a/target/arm/cpu-mmu.c
+++ b/target/arm/cpu-mmu.c
@@ -155,21 +155,16 @@ int arm_mmu_idx_to_el(ARMMMUIdx mmu_idx)
}
}
-#ifndef CONFIG_TCG
-ARMMMUIdx arm_v7m_mmu_idx_for_secstate(CPUARMState *env, bool secstate)
-{
- g_assert_not_reached();
-}
-#endif
-
ARMMMUIdx arm_mmu_idx_el(CPUARMState *env, int el)
{
ARMMMUIdx idx;
uint64_t hcr;
+#ifdef CONFIG_TCG
if (arm_feature(env, ARM_FEATURE_M)) {
return arm_v7m_mmu_idx_for_secstate(env, env->v7m.secure);
}
+#endif /* CONFIG_TCG */
/* See ARM pseudo-function ELIsInHost. */
switch (el) {
--
2.26.2
- [RFC v11 46/55] target/arm: cpu-sve: split TCG and KVM functionality, (continued)
- [RFC v11 46/55] target/arm: cpu-sve: split TCG and KVM functionality, Claudio Fontana, 2021/03/23
- [RFC v11 43/55] target/arm: add tcg cpu accel class, Claudio Fontana, 2021/03/23
- [RFC v11 48/55] target/arm: arch_dump: restrict ELFCLASS64 to AArch64, Claudio Fontana, 2021/03/23
- [RFC v11 47/55] target/arm: make is_aa64 and arm_el_is_aa64 a macro for !TARGET_AARCH64, Claudio Fontana, 2021/03/23
- [RFC v11 49/55] target/arm: cpu-exceptions: new module, Claudio Fontana, 2021/03/23
- [RFC v11 52/55] target/arm: refactor arm_cpu_finalize_features into cpu64, Claudio Fontana, 2021/03/23
- [RFC v11 55/55] target/arm: remove v7m stub function for !CONFIG_TCG,
Claudio Fontana <=
- [RFC v11 54/55] target/arm: tcg: remove superfluous CONFIG_TCG check, Claudio Fontana, 2021/03/23
- [RFC v11 45/55] target/arm: cpu-sve: new module, Claudio Fontana, 2021/03/23