mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 14:30:06 +00:00
5cd7af016d
Since memmove and memset in ld.so don't use IFUNC, don't put SSE2, AVX and AVX512 memmove and memset in ld.so. * sysdeps/x86_64/multiarch/memmove-avx-unaligned-erms.S: Skip if not in libc. * sysdeps/x86_64/multiarch/memmove-avx512-unaligned-erms.S: Likewise. * sysdeps/x86_64/multiarch/memset-avx2-unaligned-erms.S: Likewise. * sysdeps/x86_64/multiarch/memset-avx512-unaligned-erms.S: Likewise.
12 lines
223 B
ArmAsm
12 lines
223 B
ArmAsm
#if IS_IN (libc)
|
|
# define VEC_SIZE 16
|
|
# define VEC(i) xmm##i
|
|
# define VMOVU movdqu
|
|
# define VMOVA movdqa
|
|
|
|
# define SECTION(p) p
|
|
# define MEMMOVE_SYMBOL(p,s) p##_sse2_##s
|
|
|
|
# include "memmove-vec-unaligned-erms.S"
|
|
#endif
|