]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
AArch64: Rename IS_ARES to IS_NEOVERSE_N1
authorWilco Dijkstra <wdijkstr@arm.com>
Wed, 15 Jul 2020 15:58:07 +0000 (16:58 +0100)
committerWilco Dijkstra <wdijkstr@arm.com>
Wed, 15 Jul 2020 15:58:07 +0000 (16:58 +0100)
Rename IS_ARES to IS_NEOVERSE_N1 since that is a bit clearer.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
sysdeps/aarch64/multiarch/memcpy.c
sysdeps/aarch64/multiarch/memmove.c
sysdeps/unix/sysv/linux/aarch64/cpu-features.h

index e6f3ae116701097d71a02e2a1f6bfdadc1eec34a..7cf5f033e8fcdcbfdfbfe73e6ad24d8b3fc79b66 100644 (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);
index 1229f8b89296eddd2e711490bb7fc0b35726b6f5..ad10aa8ac6fba884ffb3736ed6e73d16b6eaa60c 100644 (file)
@@ -41,7 +41,9 @@ libc_ifunc (__libc_memmove,
                ? __memmove_falkor
                : (IS_THUNDERX2 (midr) || IS_THUNDERX2PA (midr)
                  ? __memmove_thunderx2
-                 : (IS_ARES (midr) ? __memmove_simd : __memmove_generic)))));
+                 : (IS_NEOVERSE_N1 (midr)
+                    ? __memmove_simd
+                    : __memmove_generic)))));
 
 # undef memmove
 strong_alias (__libc_memmove, memmove);
index a81f186ec2df43387c50956b74844a4b1ca8d334..fc688450ee0e0f7cf58e73920263631a0ea7c8d6 100644 (file)
@@ -52,8 +52,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)
 
 #define IS_EMAG(midr) (MIDR_IMPLEMENTOR(midr) == 'P'                         \
                        && MIDR_PARTNUM(midr) == 0x000)