This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] [AArch64][gas] Add support for Arm Cortex-A76


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=c2a0f9293adfad7fc1ee6a264f2f4f2a29872e64

commit c2a0f9293adfad7fc1ee6a264f2f4f2a29872e64
Author: kyrtka01 <kyrylo.tkachov@arm.com>
Date:   Fri Jun 8 15:39:47 2018 +0100

    [AArch64][gas] Add support for Arm Cortex-A76
    
    This patch adds support to gas for -mcpu=cortex-a76 in the usual way.
    make check-gas passes without problems.
    
    2018-06-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
    
        * config/tc-aarch64.c (aarch64_cpus): Add Cortex-A76 entry.
        * doc/c-aarch64.texi (-mcpu): Document cortex-a76.

Diff:
---
 gas/ChangeLog           | 5 +++++
 gas/config/tc-aarch64.c | 3 +++
 gas/doc/c-aarch64.texi  | 1 +
 3 files changed, 9 insertions(+)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index ca091bc..21edb9a 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2018-06-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+	* config/tc-aarch64.c (aarch64_cpus): Add Cortex-A76 entry.
+	* doc/c-aarch64.texi (-mcpu): Document cortex-a76.
+
 2018-06-08  Egeyar Bagcioglu  <egeyar.bagcioglu@oracle.com>
 
 	PR 20319
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index 47ca0c8..660fa7c 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -8592,6 +8592,9 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
   {"cortex-a75", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
 				  AARCH64_FEATURE_RCPC | AARCH64_FEATURE_F16 | AARCH64_FEATURE_DOTPROD),
 				  "Cortex-A75"},
+  {"cortex-a76", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
+				  AARCH64_FEATURE_RCPC | AARCH64_FEATURE_F16 | AARCH64_FEATURE_DOTPROD),
+				  "Cortex-A76"},
   {"exynos-m1", AARCH64_FEATURE (AARCH64_ARCH_V8,
 				 AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
 				"Samsung Exynos M1"},
diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi
index 56aa7e1..0423995 100644
--- a/gas/doc/c-aarch64.texi
+++ b/gas/doc/c-aarch64.texi
@@ -62,6 +62,7 @@ on the target processor.  The following processor names are recognized:
 @code{cortex-a72},
 @code{cortex-a73},
 @code{cortex-a75},
+@code{cortex-a76},
 @code{exynos-m1},
 @code{falkor},
 @code{qdf24xx},


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]