diff options
author | David Green <david.green@arm.com> | 2022-11-23 12:10:54 +0000 |
---|---|---|
committer | David Green <david.green@arm.com> | 2022-11-23 12:10:54 +0000 |
commit | 7fefa99445155cf019c25a0a1f152fde3f750cae (patch) | |
tree | 1322debe96ca1b6c74b9659b7c035bcf3314c321 /llvm/lib/Support/Host.cpp | |
parent | 3651bc83b6f28d2ae2d6b32db661f0d62cb600d7 (diff) | |
download | llvm-7fefa99445155cf019c25a0a1f152fde3f750cae.zip llvm-7fefa99445155cf019c25a0a1f152fde3f750cae.tar.gz llvm-7fefa99445155cf019c25a0a1f152fde3f750cae.tar.bz2 |
[AArch64] Add Host identifiers for cortex-a55, cortex-a510, cortex-a710 and cortex-x2.
I noticed these were missing, so this adds Host identifiers for
cortex-a55, cortex-a510, cortex-a710 and cortex-x2, taken from their
respective TRMs.
Differential Revision: https://reviews.llvm.org/D138497
Diffstat (limited to 'llvm/lib/Support/Host.cpp')
-rw-r--r-- | llvm/lib/Support/Host.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index 4fc3d7c..6bb452a 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -206,6 +206,8 @@ StringRef sys::detail::getHostCPUNameForARM(StringRef ProcCpuinfoContent) { .Case("0xd02", "cortex-a34") .Case("0xd04", "cortex-a35") .Case("0xd03", "cortex-a53") + .Case("0xd05", "cortex-a55") + .Case("0xd46", "cortex-a510") .Case("0xd07", "cortex-a57") .Case("0xd08", "cortex-a72") .Case("0xd09", "cortex-a73") @@ -213,9 +215,11 @@ StringRef sys::detail::getHostCPUNameForARM(StringRef ProcCpuinfoContent) { .Case("0xd0b", "cortex-a76") .Case("0xd0d", "cortex-a77") .Case("0xd41", "cortex-a78") + .Case("0xd47", "cortex-a710") .Case("0xd4d", "cortex-a715") .Case("0xd44", "cortex-x1") .Case("0xd4c", "cortex-x1c") + .Case("0xd48", "cortex-x2") .Case("0xd4e", "cortex-x3") .Case("0xd0c", "neoverse-n1") .Case("0xd49", "neoverse-n2") |