]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
AArch64: Use __memcpy_simd on Neoverse N2/V1
authorWilco Dijkstra <wdijkstr@arm.com>
Wed, 14 Oct 2020 12:56:21 +0000 (13:56 +0100)
committerWilco Dijkstra <wdijkstr@arm.com>
Wed, 14 Oct 2020 13:30:01 +0000 (14:30 +0100)
Add CPU detection of Neoverse N2 and Neoverse V1, and select __memcpy_simd as
the memcpy/memmove ifunc.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
(cherry picked from commit e11ed9d2b4558eeacff81557dc9557001af42a6b)

sysdeps/aarch64/multiarch/memcpy.c
sysdeps/aarch64/multiarch/memmove.c
sysdeps/unix/sysv/linux/aarch64/cpu-features.h

index be23c1ef02a4825c3f5258f8831fc8eb413f6b4d..1528d89e5404e09cad1bfcd6d7ba502f24ea5b23 100644 (file)
@@ -41,7 +41,8 @@ libc_ifunc (__libc_memcpy,
                ? __memcpy_falkor
                : (IS_THUNDERX2 (midr) || IS_THUNDERX2PA (midr)
                  ? __memcpy_thunderx2
-                 : (IS_NEOVERSE_N1 (midr)
+                 : (IS_NEOVERSE_N1 (midr) || IS_NEOVERSE_N2 (midr)
+                    || IS_NEOVERSE_V1 (midr)
                     ? __memcpy_simd
                     : __memcpy_generic)))));
 
index 71753f2880a7196adb1f8510714bead017d22131..60a0b250b93c2fc802eb1a92aa77bdde7165e2cd 100644 (file)
@@ -41,7 +41,8 @@ libc_ifunc (__libc_memmove,
                ? __memmove_falkor
                : (IS_THUNDERX2 (midr) || IS_THUNDERX2PA (midr)
                  ? __memmove_thunderx2
-                 : (IS_NEOVERSE_N1 (midr)
+                 : (IS_NEOVERSE_N1 (midr) || IS_NEOVERSE_N2 (midr)
+                    || IS_NEOVERSE_V1 (midr)
                     ? __memmove_simd
                     : __memmove_generic)))));
 
index 85ba3b3d94ffe1b2c6f15f499c2adce330bfa965..0877013a107ca7fc6ddf95dca17acb7c9baa65ef 100644 (file)
                         && MIDR_PARTNUM(midr) == 0x000)
 #define IS_NEOVERSE_N1(midr) (MIDR_IMPLEMENTOR(midr) == 'A'                  \
                              && MIDR_PARTNUM(midr) == 0xd0c)
+#define IS_NEOVERSE_N2(midr) (MIDR_IMPLEMENTOR(midr) == 'A'                  \
+                             && MIDR_PARTNUM(midr) == 0xd49)
+#define IS_NEOVERSE_V1(midr) (MIDR_IMPLEMENTOR(midr) == 'A'                  \
+                             && MIDR_PARTNUM(midr) == 0xd40)
 
 #define IS_EMAG(midr) (MIDR_IMPLEMENTOR(midr) == 'P'                         \
                        && MIDR_PARTNUM(midr) == 0x000)