diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-05-24 18:03:55 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-05-25 16:01:44 +0100 |
commit | 51879c671b7b0bf513cac6a5386097c8cfd17b3c (patch) | |
tree | 84984c4b47e800f46c4d0568eedfbd164ecbf5e5 /target/arm/cpu.h | |
parent | f0ad96cb28637a91f7904b83b55a001e294e62c0 (diff) | |
download | qemu-51879c671b7b0bf513cac6a5386097c8cfd17b3c.zip qemu-51879c671b7b0bf513cac6a5386097c8cfd17b3c.tar.gz qemu-51879c671b7b0bf513cac6a5386097c8cfd17b3c.tar.bz2 |
target/arm: Implement aarch32 VSUDOT, VUSDOT
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210525010358.152808-90-richard.henderson@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 8ecb2a1..04f8be3 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -3783,6 +3783,11 @@ static inline bool isar_feature_aa32_predinv(const ARMISARegisters *id) return FIELD_EX32(id->id_isar6, ID_ISAR6, SPECRES) != 0; } +static inline bool isar_feature_aa32_i8mm(const ARMISARegisters *id) +{ + return FIELD_EX32(id->id_isar6, ID_ISAR6, I8MM) != 0; +} + static inline bool isar_feature_aa32_ras(const ARMISARegisters *id) { return FIELD_EX32(id->id_pfr0, ID_PFR0, RAS) != 0; |