aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-arm.c
diff options
context:
space:
mode:
authorPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>2015-01-09 20:00:14 +0000
committerNick Clifton <nickc@redhat.com>2015-01-09 20:00:14 +0000
commitea0d6bb94c47283ce54ad62485997e2aef296d43 (patch)
tree4eb2804212de2f2a2a81165d6c95a80ee1adb45c /gas/config/tc-arm.c
parent588dcc3edbde19f90e76de969dbfa7ab3e17951a (diff)
downloadgdb-ea0d6bb94c47283ce54ad62485997e2aef296d43.zip
gdb-ea0d6bb94c47283ce54ad62485997e2aef296d43.tar.gz
gdb-ea0d6bb94c47283ce54ad62485997e2aef296d43.tar.bz2
This patch adds the necessary support to the assembler to allow wiring
the X-Gene scheduling description up in the respective GCC backend. * config/tc-arm.c (arm_cpus): Add support for APM X-Gene 1 and X-Gene 2. * doc/c-arm.texi (ARM Options): Mention xgene1 and xgene2.
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r--gas/config/tc-arm.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index 6c01c21..37d2e3e 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -24463,6 +24463,11 @@ static const struct arm_cpu_option_table arm_cpus[] =
ARM_CPU_OPT ("marvell-whitney", ARM_FEATURE (ARM_AEXT_V7A | ARM_EXT_MP
| ARM_EXT_SEC, 0),
FPU_ARCH_NEON_VFP_V4, NULL),
+ /* APM X-Gene family. */
+ ARM_CPU_OPT ("xgene1", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
+ "APM X-Gene 1"),
+ ARM_CPU_OPT ("xgene2", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
+ "APM X-Gene 2"),
{ NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
};