diff options
author | Richard Henderson | 2019-02-28 11:55:17 +0100 |
---|---|---|
committer | Peter Maydell | 2019-02-28 12:03:05 +0100 |
commit | 87732318c5d68a366fc2d6fc394d9c20412099fa (patch) | |
tree | c78ecf85dda337d601a5a21b4801d5682adf2f27 /target/arm/cpu.h | |
parent | target/arm: Implement FMLAL and FMLSL for aarch64 (diff) | |
download | qemu-87732318c5d68a366fc2d6fc394d9c20412099fa.tar.gz qemu-87732318c5d68a366fc2d6fc394d9c20412099fa.tar.xz qemu-87732318c5d68a366fc2d6fc394d9c20412099fa.zip |
target/arm: Implement VFMAL and VFMSL for aarch32
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20190219222952.22183-4-richard.henderson@linaro.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 8f52914649..36cd365efa 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -3296,6 +3296,11 @@ static inline bool isar_feature_aa32_dp(const ARMISARegisters *id) return FIELD_EX32(id->id_isar6, ID_ISAR6, DP) != 0; } +static inline bool isar_feature_aa32_fhm(const ARMISARegisters *id) +{ + return FIELD_EX32(id->id_isar6, ID_ISAR6, FHM) != 0; +} + static inline bool isar_feature_aa32_fp16_arith(const ARMISARegisters *id) { /* |