[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 02/20] target/arm: Add feature test for FEAT_LSE2
From: |
Richard Henderson |
Subject: |
[PATCH v2 02/20] target/arm: Add feature test for FEAT_LSE2 |
Date: |
Thu, 25 May 2023 16:25:40 -0700 |
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/cpu.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/target/arm/cpu.h b/target/arm/cpu.h
index 4e16eab82e..36ab66d0c3 100644
--- a/target/arm/cpu.h
+++ b/target/arm/cpu.h
@@ -3850,6 +3850,11 @@ static inline bool isar_feature_aa64_st(const
ARMISARegisters *id)
return FIELD_EX64(id->id_aa64mmfr2, ID_AA64MMFR2, ST) != 0;
}
+static inline bool isar_feature_aa64_lse2(const ARMISARegisters *id)
+{
+ return FIELD_EX64(id->id_aa64mmfr2, ID_AA64MMFR2, AT) != 0;
+}
+
static inline bool isar_feature_aa64_fwb(const ARMISARegisters *id)
{
return FIELD_EX64(id->id_aa64mmfr2, ID_AA64MMFR2, FWB) != 0;
--
2.34.1
- [PATCH v2 00/20] target/arm: Implement FEAT_LSE2, Richard Henderson, 2023/05/25
- [PATCH v2 03/20] target/arm: Introduce finalize_memop_{atom,pair}, Richard Henderson, 2023/05/25
- [PATCH v2 07/20] target/arm: Use tcg_gen_qemu_{ld, st}_i128 in gen_sve_{ld, st}r, Richard Henderson, 2023/05/25
- [PATCH v2 10/20] target/arm: Hoist finalize_memop out of do_gpr_{ld, st}, Richard Henderson, 2023/05/25
- [PATCH v2 09/20] target/arm: Load/store integer pair with one tcg operation, Richard Henderson, 2023/05/25
- [PATCH v2 11/20] target/arm: Hoist finalize_memop out of do_fp_{ld, st}, Richard Henderson, 2023/05/25
- [PATCH v2 02/20] target/arm: Add feature test for FEAT_LSE2,
Richard Henderson <=
- [PATCH v2 05/20] target/arm: Use tcg_gen_qemu_{st, ld}_i128 for do_fp_{st, ld}, Richard Henderson, 2023/05/25
- [PATCH v2 08/20] target/arm: Sink gen_mte_check1 into load/store_exclusive, Richard Henderson, 2023/05/25
- [PATCH v2 14/20] target/arm: Check alignment in helper_mte_check, Richard Henderson, 2023/05/25
- [PATCH v2 12/20] target/arm: Pass memop to gen_mte_check1*, Richard Henderson, 2023/05/25
- [PATCH v2 01/20] target/arm: Add commentary for CPUARMState.exclusive_high, Richard Henderson, 2023/05/25