aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2015-08-25 06:24:16 -0700
committerH.J. Lu <hjl.tools@gmail.com>2015-08-27 09:35:12 -0700
commit2d54b0fbbe3e56cedddf80799238a53b131cb81f (patch)
tree86c6f28dbcf9ee630ffcde37f6a2a42ce131260e
parent22d8f1f781b654f6b8f40e9ad309c4f9678371dd (diff)
downloadglibc-2d54b0fbbe3e56cedddf80799238a53b131cb81f.tar
glibc-2d54b0fbbe3e56cedddf80799238a53b131cb81f.tar.gz
glibc-2d54b0fbbe3e56cedddf80799238a53b131cb81f.tar.bz2
glibc-2d54b0fbbe3e56cedddf80799238a53b131cb81f.zip
Add i386 wcscpy multiarch functions
-rw-r--r--sysdeps/i386/i686/multiarch/Makefile3
-rw-r--r--sysdeps/i386/i686/multiarch/wcscpy.S36
-rw-r--r--sysdeps/i386/multiarch/Makefile2
-rw-r--r--sysdeps/i386/multiarch/ifunc-impl-list.c4
-rw-r--r--sysdeps/i386/multiarch/wcscpy-i386.c (renamed from sysdeps/i386/i686/multiarch/wcscpy-c.c)2
-rw-r--r--sysdeps/i386/multiarch/wcscpy-ssse3.S (renamed from sysdeps/i386/i686/multiarch/wcscpy-ssse3.S)0
-rw-r--r--sysdeps/i386/multiarch/wcscpy.c48
7 files changed, 53 insertions, 42 deletions
diff --git a/sysdeps/i386/i686/multiarch/Makefile b/sysdeps/i386/i686/multiarch/Makefile
index a9d032f106..57cd608c75 100644
--- a/sysdeps/i386/i686/multiarch/Makefile
+++ b/sysdeps/i386/i686/multiarch/Makefile
@@ -1,5 +1,4 @@
ifeq ($(subdir),wcsmbs)
sysdep_routines += wcslen-sse2 wcslen-c \
- wmemcmp-sse4 wmemcmp-ssse3 wmemcmp-c \
- wcscpy-ssse3 wcscpy-c
+ wmemcmp-sse4 wmemcmp-ssse3 wmemcmp-c
endif
diff --git a/sysdeps/i386/i686/multiarch/wcscpy.S b/sysdeps/i386/i686/multiarch/wcscpy.S
deleted file mode 100644
index 5f149701d3..0000000000
--- a/sysdeps/i386/i686/multiarch/wcscpy.S
+++ /dev/null
@@ -1,36 +0,0 @@
-/* Multiple versions of wcscpy
- All versions must be listed in ifunc-impl-list.c.
- Copyright (C) 2011-2015 Free Software Foundation, Inc.
- Contributed by Intel Corporation.
- This file is part of the GNU C Library.
-
- The GNU C Library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- The GNU C Library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
-
-#include <sysdep.h>
-#include <init-arch.h>
-
-/* Define multiple versions only for the definition in libc. */
-#if IS_IN (libc)
- .text
-ENTRY(wcscpy)
- .type wcscpy, @gnu_indirect_function
- LOAD_GOT_AND_RTLD_GLOBAL_RO
- LOAD_FUNC_GOT_EAX (__wcscpy_ia32)
- HAS_CPU_FEATURE (SSSE3)
- jz 2f
- LOAD_FUNC_GOT_EAX (__wcscpy_ssse3)
-2: ret
-END(wcscpy)
-#endif
diff --git a/sysdeps/i386/multiarch/Makefile b/sysdeps/i386/multiarch/Makefile
index 084307b6be..d06b2ad9f9 100644
--- a/sysdeps/i386/multiarch/Makefile
+++ b/sysdeps/i386/multiarch/Makefile
@@ -51,7 +51,7 @@ endif
ifeq ($(subdir),wcsmbs)
sysdep_routines += wcschr-i386 wcschr-sse2 wcsrchr-i386 wcsrchr-sse2 \
- wcscmp-i386 wcscmp-sse2
+ wcscmp-i386 wcscmp-sse2 wcscpy-i386 wcscpy-ssse3
endif
ifeq (mathyes,$(subdir)$(config-cflags-avx))
diff --git a/sysdeps/i386/multiarch/ifunc-impl-list.c b/sysdeps/i386/multiarch/ifunc-impl-list.c
index 63d7ecff7c..c5cc501c75 100644
--- a/sysdeps/i386/multiarch/ifunc-impl-list.c
+++ b/sysdeps/i386/multiarch/ifunc-impl-list.c
@@ -328,13 +328,13 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
__wcscmp_sse2)
IFUNC_IMPL_ADD (array, i, wcscmp, 1, __wcscmp_i386))
-#if 0
/* Support sysdeps/i386/i686/multiarch/wcscpy.S. */
IFUNC_IMPL (i, name, wcscpy,
IFUNC_IMPL_ADD (array, i, wcscpy, HAS_CPU_FEATURE (SSSE3),
__wcscpy_ssse3)
- IFUNC_IMPL_ADD (array, i, wcscpy, 1, __wcscpy_ia32))
+ IFUNC_IMPL_ADD (array, i, wcscpy, 1, __wcscpy_i386))
+#if 0
/* Support sysdeps/i386/i686/multiarch/wcslen.S. */
IFUNC_IMPL (i, name, wcslen,
IFUNC_IMPL_ADD (array, i, wcslen, HAS_CPU_FEATURE (SSE2),
diff --git a/sysdeps/i386/i686/multiarch/wcscpy-c.c b/sysdeps/i386/multiarch/wcscpy-i386.c
index fb3000392b..3207110b6f 100644
--- a/sysdeps/i386/i686/multiarch/wcscpy-c.c
+++ b/sysdeps/i386/multiarch/wcscpy-i386.c
@@ -1,5 +1,5 @@
#if IS_IN (libc)
-# define wcscpy __wcscpy_ia32
+# define wcscpy __wcscpy_i386
#endif
#include "wcsmbs/wcscpy.c"
diff --git a/sysdeps/i386/i686/multiarch/wcscpy-ssse3.S b/sysdeps/i386/multiarch/wcscpy-ssse3.S
index 8828f6eff1..8828f6eff1 100644
--- a/sysdeps/i386/i686/multiarch/wcscpy-ssse3.S
+++ b/sysdeps/i386/multiarch/wcscpy-ssse3.S
diff --git a/sysdeps/i386/multiarch/wcscpy.c b/sysdeps/i386/multiarch/wcscpy.c
new file mode 100644
index 0000000000..ac5f3e50a2
--- /dev/null
+++ b/sysdeps/i386/multiarch/wcscpy.c
@@ -0,0 +1,48 @@
+/* Multiple versions of wcscpy.
+ All versions must be listed in ifunc-impl-list.c.
+ Copyright (C) 2015 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
+
+/* Define multiple versions only for the definition in libc. */
+#if IS_IN (libc)
+/* Redefine wcscpy so that the compiler won't complain about the type
+ mismatch with the IFUNC selector in strong_alias, below. */
+# undef wcscpy
+# define wcscpy __redirect_wcscpy
+# include <wchar.h>
+# undef wcscpy
+
+# include <init-arch.h>
+
+extern __typeof (__redirect_wcscpy) __wcscpy_i386 attribute_hidden;
+extern __typeof (__redirect_wcscpy) __wcscpy_ssse3 attribute_hidden;
+
+/* Avoid DWARF definition DIE on ifunc symbol so that GDB can handle
+ ifunc symbol properly. */
+extern __typeof (__redirect_wcscpy) wcscpy;
+extern void *wcscpy_ifunc (void) __asm__ ("wcscpy");
+
+void *
+wcscpy_ifunc (void)
+{
+ if (HAS_CPU_FEATURE (SSSE3))
+ return __wcscpy_ssse3;
+
+ return __wcscpy_i386;
+}
+__asm__ (".type wcscpy, %gnu_indirect_function");
+#endif