diff options
author | Alex Coplan <alex.coplan@arm.com> | 2020-09-24 15:35:30 +0100 |
---|---|---|
committer | Alex Coplan <alex.coplan@arm.com> | 2020-09-24 15:38:30 +0100 |
commit | 6eee0315f6767ba932f19513af1ff432e5071bea (patch) | |
tree | 84938480721c2ed4507b3e5dd2254ef903eff355 | |
parent | 9e980ddcefc2fac99a41965ef77e16386a0f86e2 (diff) | |
download | gdb-6eee0315f6767ba932f19513af1ff432e5071bea.zip gdb-6eee0315f6767ba932f19513af1ff432e5071bea.tar.gz gdb-6eee0315f6767ba932f19513af1ff432e5071bea.tar.bz2 |
arm: Add support for Neoverse V1 CPU
This patch adds support for Arm's Neoverse V1 CPU to AArch32 binutils.
gas/ChangeLog:
2020-09-24 Alex Coplan <alex.coplan@arm.com>
* config/tc-arm.c (arm_cpus): Add Neoverse V1.
* doc/c-arm.texi: Document Neoverse V1 support.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 3 | ||||
-rw-r--r-- | gas/doc/c-arm.texi | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1a16bce..9f224b5 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2020-09-24 Alex Coplan <alex.coplan@arm.com> + * config/tc-arm.c (arm_cpus): Add Neoverse V1. + * doc/c-arm.texi: Document Neoverse V1 support. + +2020-09-24 Alex Coplan <alex.coplan@arm.com> + * config/tc-aarch64.c (aarch64_cpu_option_table): Add Neoverse V1. * doc/c-aarch64.texi: Document Neoverse V1 support. diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index fce3ad3..455a140 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -31599,6 +31599,9 @@ static const struct arm_cpu_option_table arm_cpus[] = | ARM_EXT2_BF16 | ARM_EXT2_I8MM), FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_4), + ARM_CPU_OPT ("neoverse-v1", "Neoverse V1", ARM_ARCH_V8_4A, + ARM_FEATURE_CORE_HIGH (ARM_EXT2_BF16 | ARM_EXT2_I8MM), + FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_4), /* ??? XSCALE is really an architecture. */ ARM_CPU_OPT ("xscale", NULL, ARM_ARCH_XSCALE, ARM_ARCH_NONE, diff --git a/gas/doc/c-arm.texi b/gas/doc/c-arm.texi index 39e24e7..16c94de 100644 --- a/gas/doc/c-arm.texi +++ b/gas/doc/c-arm.texi @@ -152,6 +152,7 @@ recognized: @code{marvell-whitney}, @code{neoverse-n1}, @code{neoverse-n2}, +@code{neoverse-v1}, @code{xgene1}, @code{xgene2}, @code{ep9312} (ARM920 with Cirrus Maverick coprocessor), |