diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2020-07-17 14:09:36 +0100 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2020-07-17 15:07:23 +0100 |
commit | f46ef33ad134bec7ac992f28ee4b8b0614590e3e (patch) | |
tree | f34fe31172e393172c15b2bb189382ad9c0b17e2 /sysdeps/aarch64/multiarch/ifunc-impl-list.c | |
parent | 76b8442db51a8976de19934638a42532a3af607f (diff) | |
download | glibc-f46ef33ad134bec7ac992f28ee4b8b0614590e3e.tar glibc-f46ef33ad134bec7ac992f28ee4b8b0614590e3e.tar.gz glibc-f46ef33ad134bec7ac992f28ee4b8b0614590e3e.tar.bz2 glibc-f46ef33ad134bec7ac992f28ee4b8b0614590e3e.zip |
AArch64: Improve strlen_asimd performance (bug 25824)
Optimize strlen using a mix of scalar and SIMD code. On modern micro
architectures large strings are 2.6 times faster than existing
strlen_asimd and 35% faster than the new MTE version of strlen.
On a random strlen benchmark using small sizes the speedup is 7% vs
strlen_asimd and 40% vs the MTE strlen. This fixes the main strlen
regressions on Cortex-A53 and other cores with a simple Neon unit.
Rename __strlen_generic to __strlen_mte, and select strlen_asimd when
MTE is not enabled (this is waiting on support for a HWCAP_MTE bit).
This fixes big-endian bug 25824. Passes GLIBC regression tests.
Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
Diffstat (limited to 'sysdeps/aarch64/multiarch/ifunc-impl-list.c')
-rw-r--r-- | sysdeps/aarch64/multiarch/ifunc-impl-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/aarch64/multiarch/ifunc-impl-list.c b/sysdeps/aarch64/multiarch/ifunc-impl-list.c index 4b004ac47f..09feea97ea 100644 --- a/sysdeps/aarch64/multiarch/ifunc-impl-list.c +++ b/sysdeps/aarch64/multiarch/ifunc-impl-list.c @@ -63,7 +63,7 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array, IFUNC_IMPL (i, name, strlen, IFUNC_IMPL_ADD (array, i, strlen, 1, __strlen_asimd) - IFUNC_IMPL_ADD (array, i, strlen, 1, __strlen_generic)) + IFUNC_IMPL_ADD (array, i, strlen, 1, __strlen_mte)) return i; } |