[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 02/20] target/arm: Add feature test for FEAT_LSE2
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v3 02/20] target/arm: Add feature test for FEAT_LSE2 |
|
Date: |
Tue, 30 May 2023 12:14:20 -0700 |
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
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 81c0df9c25..c1db26b299 100644
--- a/target/arm/cpu.h
+++ b/target/arm/cpu.h
@@ -3851,6 +3851,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 v3 00/20] target/arm: Implement FEAT_LSE2, Richard Henderson, 2023/05/30
- [PATCH v3 02/20] target/arm: Add feature test for FEAT_LSE2,
Richard Henderson <=
- [PATCH v3 01/20] target/arm: Add commentary for CPUARMState.exclusive_high, Richard Henderson, 2023/05/30
- [PATCH v3 03/20] target/arm: Introduce finalize_memop_{atom,pair}, Richard Henderson, 2023/05/30
- [PATCH v3 05/20] target/arm: Use tcg_gen_qemu_{st, ld}_i128 for do_fp_{st, ld}, Richard Henderson, 2023/05/30
- [PATCH v3 09/20] target/arm: Load/store integer pair with one tcg operation, Richard Henderson, 2023/05/30
- [PATCH v3 13/20] target/arm: Pass single_memop to gen_mte_checkN, Richard Henderson, 2023/05/30
- [PATCH v3 07/20] target/arm: Use tcg_gen_qemu_{ld, st}_i128 in gen_sve_{ld, st}r, Richard Henderson, 2023/05/30
- [PATCH v3 04/20] target/arm: Use tcg_gen_qemu_ld_i128 for LDXP, Richard Henderson, 2023/05/30
- [PATCH v3 06/20] target/arm: Use tcg_gen_qemu_st_i128 for STZG, STZ2G, Richard Henderson, 2023/05/30
- [PATCH v3 11/20] target/arm: Hoist finalize_memop out of do_fp_{ld, st}, Richard Henderson, 2023/05/30
- [PATCH v3 08/20] target/arm: Sink gen_mte_check1 into load/store_exclusive, Richard Henderson, 2023/05/30