diff options
author | Srinath Parvathaneni <srinath.parvathaneni@arm.com> | 2024-01-15 09:28:28 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2024-01-15 11:45:41 +0000 |
commit | 7e8d2d875701971c77224079056a0c8272d63109 (patch) | |
tree | e93952f32f7f22fc01ab87883d03f7ab0d1bd23f /include | |
parent | 5186cf88ac09eb81cac89de7483e91f9c5ed6252 (diff) | |
download | binutils-7e8d2d875701971c77224079056a0c8272d63109.zip binutils-7e8d2d875701971c77224079056a0c8272d63109.tar.gz binutils-7e8d2d875701971c77224079056a0c8272d63109.tar.bz2 |
aarch64: Add support for FEAT_B16B16 instructions.
Hi,
This patch add support for SVE2.1 and SME2.1 non-widening BFloat16
(FEAT_B16B16) instructions.
Following instructions predicated, unpredicated and indexed
variants are added in this patch.
bfadd, bfclamp, bfmax bfmaxnm, bfmin,bfminnm,
bfmla,bfmls,bfmul and bfsub.
Regression testing for aarch64-none-elf target and found no regressions.
Ok for binutils-master?
Regards,
Srinath.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/aarch64.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h index 9d64d7a..e2ca923 100644 --- a/include/opcode/aarch64.h +++ b/include/opcode/aarch64.h @@ -222,6 +222,8 @@ enum aarch64_feature_bit { AARCH64_FEATURE_PMUv3_ICNTR, /* Performance Monitors Synchronous-Exception-Based Event Extension. */ AARCH64_FEATURE_SEBEP, + /* SVE2.1 and SME2.1 non-widening BFloat16 instructions. */ + AARCH64_FEATURE_B16B16, AARCH64_NUM_FEATURES }; |