Commit 3b1ed6b5cf for qemu.org
commit 3b1ed6b5cfe8e3ef1058cb85bb3c2308464539e1
Author: Richard Henderson <richard.henderson@linaro.org>
Date: Fri May 22 15:02:21 2026 -0700
target/arm: Add isar_feature_aa64_f8cvt
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20260522220306.235200-20-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
diff --git a/target/arm/cpu-features.h b/target/arm/cpu-features.h
index 1bb77d78da..1fde3e9231 100644
--- a/target/arm/cpu-features.h
+++ b/target/arm/cpu-features.h
@@ -1569,6 +1569,11 @@ static inline bool isar_feature_aa64_sme2p1(const ARMISARegisters *id)
return FIELD_EX64_IDREG(id, ID_AA64SMFR0, SMEVER) >= 2;
}
+static inline bool isar_feature_aa64_f8cvt(const ARMISARegisters *id)
+{
+ return FIELD_EX64_IDREG(id, ID_AA64FPFR0, F8CVT);
+}
+
/*
* Combinations of feature tests, for ease of use with TRANS_FEAT.
*/