mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-03 02:11:08 +00:00
e6f3fe362f
Since __memcpy_simd is the fastest memcpy on almost all cores, replace the generic memcpy with it. If SVE is available, a SVE memcpy will be used by default (including for Neoverse N2).
20 lines
337 B
Makefile
20 lines
337 B
Makefile
ifeq ($(subdir),string)
|
|
sysdep_routines += \
|
|
memchr_generic \
|
|
memchr_nosimd \
|
|
memcpy_a64fx \
|
|
memcpy_falkor \
|
|
memcpy_generic \
|
|
memcpy_sve \
|
|
memcpy_thunderx \
|
|
memcpy_thunderx2 \
|
|
memset_a64fx \
|
|
memset_emag \
|
|
memset_falkor \
|
|
memset_generic \
|
|
memset_kunpeng \
|
|
strlen_asimd \
|
|
strlen_mte \
|
|
# sysdep_routines
|
|
endif
|