@samitouri / QOSamiQemu / commits / 3b1ed6b5cf

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>

Richard Henderson committed May 22, 2026 at 15:02 UTC 3b1ed6b5cfe8e3ef1058cb85bb3c2308464539e1
1 file changed +5
target/arm/cpu-features.h
+5
@@ -1569,6 +1569,11 @@ static inline bool isar_feature_aa64_sme2p1(const ARMISARegisters *id)
1569 return FIELD_EX64_IDREG(id, ID_AA64SMFR0, SMEVER) >= 2;
1570 }
1571
1572 +static inline bool isar_feature_aa64_f8cvt(const ARMISARegisters *id)
1573 +{
1574 + return FIELD_EX64_IDREG(id, ID_AA64FPFR0, F8CVT);
1575 +}
1576 +
1577 /*
1578 * Combinations of feature tests, for ease of use with TRANS_FEAT.
1579 */