mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-29 08:11:08 +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.
17 lines
341 B
ArmAsm
17 lines
341 B
ArmAsm
#if IS_IN (libc)
|
|
# define VEC_SIZE 32
|
|
# define VEC(i) ymm##i
|
|
# define VMOVU vmovdqu
|
|
# define VMOVA vmovdqa
|
|
|
|
# define VDUP_TO_VEC0_AND_SET_RETURN(d, r) \
|
|
vmovd d, %xmm0; \
|
|
movq r, %rax; \
|
|
vpbroadcastb %xmm0, %ymm0
|
|
|
|
# define SECTION(p) p##.avx
|
|
# define MEMSET_SYMBOL(p,s) p##_avx2_##s
|
|
|
|
# include "memset-vec-unaligned-erms.S"
|
|
#endif
|