AArch64: Rename IS_ARES to IS_NEOVERSE_N1

Rename IS_ARES to IS_NEOVERSE_N1 since that is a bit clearer.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
(cherry picked from commit 0f6278a8793a5d04ea31878119eccf99f469a02d)
This commit is contained in:
Wilco Dijkstra 2020-07-15 16:58:07 +01:00
parent 64458aabeb
commit 53d501d6e9
3 changed files with 8 additions and 4 deletions

View File

@ -41,7 +41,9 @@ libc_ifunc (__libc_memcpy,
? __memcpy_falkor
: (IS_THUNDERX2 (midr) || IS_THUNDERX2PA (midr)
? __memcpy_thunderx2
: (IS_ARES (midr) ? __memcpy_simd : __memcpy_generic)))));
: (IS_NEOVERSE_N1 (midr)
? __memcpy_simd
: __memcpy_generic)))));
# undef memcpy
strong_alias (__libc_memcpy, memcpy);

View File

@ -38,7 +38,9 @@ libc_ifunc (__libc_memmove,
? __memmove_thunderx
: (IS_FALKOR (midr) || IS_PHECDA (midr)
? __memmove_falkor
: (IS_ARES (midr) ? __memmove_simd : __memmove_generic))));
: (IS_NEOVERSE_N1 (midr)
? __memmove_simd
: __memmove_generic))));
# undef memmove
strong_alias (__libc_memmove, memmove);

View File

@ -51,8 +51,8 @@
#define IS_PHECDA(midr) (MIDR_IMPLEMENTOR(midr) == 'h' \
&& MIDR_PARTNUM(midr) == 0x000)
#define IS_ARES(midr) (MIDR_IMPLEMENTOR(midr) == 'A' \
&& MIDR_PARTNUM(midr) == 0xd0c)
#define IS_NEOVERSE_N1(midr) (MIDR_IMPLEMENTOR(midr) == 'A' \
&& MIDR_PARTNUM(midr) == 0xd0c)
struct cpu_features
{