diff options
author | Kyrylo Tkachov <kyrylo.tkachov@arm.com> | 2019-01-07 09:22:55 +0000 |
---|---|---|
committer | Kyrylo Tkachov <kyrylo.tkachov@arm.com> | 2019-01-07 09:22:55 +0000 |
commit | ef8df4caec24669a11680aa1a696d470fb6177ba (patch) | |
tree | 9dba1ab3b1a201fb9def27373de916455325709a /gas/config/tc-arm.c | |
parent | 7e9ca91e006d57bd39838ca5196c1bd0db3ef170 (diff) | |
download | binutils-gdb-ef8df4caec24669a11680aa1a696d470fb6177ba.tar.gz |
[arm][gas] Add -mcpu support for Arm Ares
This adds support for the Arm Ares CPU in the arm port.
It implements the Armv8.2-A architecture with the relevant optional
features
of dot product and FP16 on by default.
Note: Ares is a codename to enable early adopters and in time
we will add the final product name once it's announced.
* config/tc-arm.c (arm_cpus): Add ares.
* doc/c-arm.texi (-mcpu): Document ares value.
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r-- | gas/config/tc-arm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 5d0d56e2f83..7900c1b369e 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -26202,6 +26202,9 @@ static const struct arm_cpu_option_table arm_cpus[] = ARM_CPU_OPT ("cortex-a76", "Cortex-A76", ARM_ARCH_V8_2A, ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST), FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD), + ARM_CPU_OPT ("ares", "Ares", ARM_ARCH_V8_2A, + ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST), + FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD), ARM_CPU_OPT ("cortex-r4", "Cortex-R4", ARM_ARCH_V7R, ARM_ARCH_NONE, FPU_NONE), |