about summary refs log tree commit diff
path: root/sysdeps/x86_64/multiarch/memmove-avx-unaligned-erms.S
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2016-04-03 14:32:20 -0700
committerH.J. Lu <hjl.tools@gmail.com>2016-04-03 14:35:38 -0700
commit5cd7af016d8587ff53b20ba259746f97edbddbf7 (patch)
tree97e7bf8c54c53bcf58b97649edfdf2db4dff4362 /sysdeps/x86_64/multiarch/memmove-avx-unaligned-erms.S
parentea2785e96fa503f3a2b5dd9f3a6ca65622b3c5f2 (diff)
downloadglibc-5cd7af016d8587ff53b20ba259746f97edbddbf7.tar.gz
glibc-5cd7af016d8587ff53b20ba259746f97edbddbf7.tar.xz
glibc-5cd7af016d8587ff53b20ba259746f97edbddbf7.zip
Don't put SSE2/AVX/AVX512 memmove/memset in ld.so
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.
Diffstat (limited to 'sysdeps/x86_64/multiarch/memmove-avx-unaligned-erms.S')
-rw-r--r--sysdeps/x86_64/multiarch/memmove-avx-unaligned-erms.S16
1 files changed, 9 insertions, 7 deletions
diff --git a/sysdeps/x86_64/multiarch/memmove-avx-unaligned-erms.S b/sysdeps/x86_64/multiarch/memmove-avx-unaligned-erms.S
index 3a72c7eafd..44711c37ca 100644
--- a/sysdeps/x86_64/multiarch/memmove-avx-unaligned-erms.S
+++ b/sysdeps/x86_64/multiarch/memmove-avx-unaligned-erms.S
@@ -1,9 +1,11 @@
-#define VEC_SIZE	32
-#define VEC(i)		ymm##i
-#define VMOVU		vmovdqu
-#define VMOVA		vmovdqa
+#if IS_IN (libc)
+# define VEC_SIZE	32
+# define VEC(i)		ymm##i
+# define VMOVU		vmovdqu
+# define VMOVA		vmovdqa
 
-#define SECTION(p)		p##.avx
-#define MEMMOVE_SYMBOL(p,s)	p##_avx_##s
+# define SECTION(p)		p##.avx
+# define MEMMOVE_SYMBOL(p,s)	p##_avx_##s
 
-#include "memmove-vec-unaligned-erms.S"
+# include "memmove-vec-unaligned-erms.S"
+#endif