Add option for Qualcomm Saphira part
This adds an option for the Qualcomm saphira core, the corresponding gcc patch is here: https://gcc.gnu.org/ml/gcc-patches/2017-10/msg02055.html This was tested with an aarch64 build and make check and also by building and running SPEC2006. gas/ * config/tc-aarch64.c (aarch64_cpus): Add saphira. * doc/c-aarch64.texi: Likewise.
This commit is contained in:
parent
bf59c5d5f4
commit
7605d94453
|
@ -1,3 +1,9 @@
|
|||
2017-11-03 Siddhesh Poyarekar <siddhesh.poyarekar@linaro.org>
|
||||
Jim Wilson <jim.wilson@linaro.org>
|
||||
|
||||
* config/tc-aarch64.c (aarch64_cpus): Add saphira.
|
||||
* doc/c-aarch64.texi: Likewise.
|
||||
|
||||
2017-11-02 Thomas Preud'homme <thomas.preudhomme@arm.com>
|
||||
|
||||
* testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-1.d: Add
|
||||
|
|
|
@ -8420,6 +8420,9 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
|
|||
AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO
|
||||
| AARCH64_FEATURE_RDMA),
|
||||
"Qualcomm QDF24XX"},
|
||||
{"saphira", AARCH64_FEATURE (AARCH64_ARCH_V8_3,
|
||||
AARCH64_FEATURE_CRYPTO | AARCH64_FEATURE_PROFILE),
|
||||
"Qualcomm Saphira"},
|
||||
{"thunderx", AARCH64_FEATURE (AARCH64_ARCH_V8,
|
||||
AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
|
||||
"Cavium ThunderX"},
|
||||
|
|
|
@ -65,6 +65,7 @@ on the target processor. The following processor names are recognized:
|
|||
@code{exynos-m1},
|
||||
@code{falkor},
|
||||
@code{qdf24xx},
|
||||
@code{saphira},
|
||||
@code{thunderx},
|
||||
@code{vulcan},
|
||||
@code{xgene1}
|
||||
|
|
Loading…
Reference in New Issue