[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 13/52] target/arm: Fix test of TCG_OVERSIZED_GUEST
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v2 13/52] target/arm: Fix test of TCG_OVERSIZED_GUEST |
|
Date: |
Tue, 23 May 2023 06:52:43 -0700 |
The symbol is always defined, even if to 0.
We wanted to test for TCG_OVERSIZED_GUEST == 0.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/ptw.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/target/arm/ptw.c b/target/arm/ptw.c
index 69c05cd9da..b0d2a05403 100644
--- a/target/arm/ptw.c
+++ b/target/arm/ptw.c
@@ -418,6 +418,7 @@ static uint64_t arm_casq_ptw(CPUARMState *env, uint64_t
old_val,
uint64_t new_val, S1Translate *ptw,
ARMMMUFaultInfo *fi)
{
+#ifdef TARGET_AARCH64
uint64_t cur_val;
void *host = ptw->out_host;
@@ -473,7 +474,7 @@ static uint64_t arm_casq_ptw(CPUARMState *env, uint64_t
old_val,
* we know that TCG_OVERSIZED_GUEST is set, which means that we are
* running in round-robin mode and could only race with dma i/o.
*/
-#ifndef TCG_OVERSIZED_GUEST
+#if !TCG_OVERSIZED_GUEST
# error "Unexpected configuration"
#endif
bool locked = qemu_mutex_iothread_locked();
@@ -497,6 +498,10 @@ static uint64_t arm_casq_ptw(CPUARMState *env, uint64_t
old_val,
#endif
return cur_val;
+#else
+ /* AArch32 does not have FEAT_HADFS. */
+ g_assert_not_reached();
+#endif
}
static bool get_level1_table_address(CPUARMState *env, ARMMMUIdx mmu_idx,
--
2.34.1
- [PATCH v2 03/52] tcg/s390x: Remove TARGET_LONG_BITS, TCG_TYPE_TL, (continued)
- [PATCH v2 03/52] tcg/s390x: Remove TARGET_LONG_BITS, TCG_TYPE_TL, Richard Henderson, 2023/05/23
- [PATCH v2 05/52] tcg: Move TCG_TYPE_TL from tcg.h to tcg-op.h, Richard Henderson, 2023/05/23
- [PATCH v2 04/52] tcg/sparc64: Remove TARGET_LONG_BITS, TCG_TYPE_TL, Richard Henderson, 2023/05/23
- [PATCH v2 08/52] tcg: Remove TCG_TARGET_TLB_DISPLACEMENT_BITS, Richard Henderson, 2023/05/23
- [PATCH v2 02/52] tcg/riscv: Remove TARGET_LONG_BITS, TCG_TYPE_TL, Richard Henderson, 2023/05/23
- [PATCH v2 12/52] tcg: Split out tcg-target-reg-bits.h, Richard Henderson, 2023/05/23
- [PATCH v2 06/52] tcg: Widen CPUTLBEntry comparators to 64-bits, Richard Henderson, 2023/05/23
- [PATCH v2 11/52] *: Add missing includes of tcg/tcg.h, Richard Henderson, 2023/05/23
- [PATCH v2 14/52] tcg: Split out tcg/oversized-guest.h, Richard Henderson, 2023/05/23
- [PATCH v2 10/52] *: Add missing includes of tcg/debug-assert.h, Richard Henderson, 2023/05/23
- [PATCH v2 13/52] target/arm: Fix test of TCG_OVERSIZED_GUEST,
Richard Henderson <=
- [PATCH v2 20/52] tcg: Move TCGHelperInfo and dependencies to tcg/helper-info.h, Richard Henderson, 2023/05/23
- [PATCH v2 35/52] tcg: Spit out exec/translation-block.h, Richard Henderson, 2023/05/23
- [PATCH v2 15/52] tcg: Move TCGv, dup_const_tl definitions to tcg-op.h, Richard Henderson, 2023/05/23
- [PATCH v2 19/52] tcg: Remove outdated comments in helper-head.h, Richard Henderson, 2023/05/23
- [PATCH v2 17/52] target/arm: Include helper-gen.h in translator.h, Richard Henderson, 2023/05/23
- [PATCH v2 18/52] target/hexagon: Include helper-gen.h where needed, Richard Henderson, 2023/05/23
- [PATCH v2 09/52] *: Add missing includes of qemu/error-report.h, Richard Henderson, 2023/05/23
- [PATCH v2 22/52] tcg: Move temp_idx and tcgv_i32_temp debug out of line, Richard Henderson, 2023/05/23
- [PATCH v2 23/52] tcg: Split tcg_gen_callN, Richard Henderson, 2023/05/23
- [PATCH v2 21/52] tcg: Pass TCGHelperInfo to tcg_gen_callN, Richard Henderson, 2023/05/23