bdc76f
commit 0582e4284529b4ea0fcd1a8973ccab7d95ec0e87
bdc76f
Author: Stefan Liebler <stli@linux.ibm.com>
bdc76f
Date:   Tue Dec 18 13:57:19 2018 +0100
bdc76f
bdc76f
    S390: Refactor wcpcpy ifunc handling.
bdc76f
    
bdc76f
    The ifunc handling for wcpcpy is adjusted in order to omit ifunc
bdc76f
    if the minimum architecture level already supports newer CPUs by default.
bdc76f
    Unfortunately the c ifunc variant can't be omitted at all as it is used
bdc76f
    by the z13 ifunc variant as fallback if the pointers are not 4-byte aligned.
bdc76f
    
bdc76f
    ChangeLog:
bdc76f
    
bdc76f
            * sysdeps/s390/multiarch/Makefile
bdc76f
            (sysdep_routines): Remove wcpcpy variants.
bdc76f
            * sysdeps/s390/Makefile (sysdep_routines): Add wcpcpy variants.
bdc76f
            * sysdeps/s390/multiarch/ifunc-impl-list.c
bdc76f
            (__libc_ifunc_impl_list): Refactor ifunc handling for wcpcpy.
bdc76f
            * sysdeps/s390/multiarch/wcpcpy-c.c: Move to ...
bdc76f
            * sysdeps/s390/wcpcpy-c.c: ... here and adjust ifunc handling.
bdc76f
            * sysdeps/s390/multiarch/wcpcpy-vx.S: Move to ...
bdc76f
            * sysdeps/s390/wcpcpy-vx.S: ... here and adjust ifunc handling.
bdc76f
            * sysdeps/s390/multiarch/wcpcpy.c: Move to ...
bdc76f
            * sysdeps/s390/wcpcpy.c: ... here and adjust ifunc handling.
bdc76f
            * sysdeps/s390/ifunc-wcpcpy.h: New file.
bdc76f
bdc76f
diff --git a/sysdeps/s390/Makefile b/sysdeps/s390/Makefile
bdc76f
index 8bdbd1b5d8e9df01..5b6446f55299af03 100644
bdc76f
--- a/sysdeps/s390/Makefile
bdc76f
+++ b/sysdeps/s390/Makefile
bdc76f
@@ -62,5 +62,6 @@ endif
bdc76f
 ifeq ($(subdir),wcsmbs)
bdc76f
 sysdep_routines += wcslen wcslen-vx wcslen-c \
bdc76f
 		   wcsnlen wcsnlen-vx wcsnlen-c \
bdc76f
-		   wcscpy wcscpy-vx wcscpy-c
bdc76f
+		   wcscpy wcscpy-vx wcscpy-c \
bdc76f
+		   wcpcpy wcpcpy-vx wcpcpy-c
bdc76f
 endif
bdc76f
diff --git a/sysdeps/s390/ifunc-wcpcpy.h b/sysdeps/s390/ifunc-wcpcpy.h
bdc76f
new file mode 100644
bdc76f
index 0000000000000000..0d5e2ba1a0b09905
bdc76f
--- /dev/null
bdc76f
+++ b/sysdeps/s390/ifunc-wcpcpy.h
bdc76f
@@ -0,0 +1,53 @@
bdc76f
+/* wcpcpy variant information on S/390 version.
bdc76f
+   Copyright (C) 2018 Free Software Foundation, Inc.
bdc76f
+   This file is part of the GNU C Library.
bdc76f
+
bdc76f
+   The GNU C Library is free software; you can redistribute it and/or
bdc76f
+   modify it under the terms of the GNU Lesser General Public
bdc76f
+   License as published by the Free Software Foundation; either
bdc76f
+   version 2.1 of the License, or (at your option) any later version.
bdc76f
+
bdc76f
+   The GNU C Library is distributed in the hope that it will be useful,
bdc76f
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
bdc76f
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
bdc76f
+   Lesser General Public License for more details.
bdc76f
+
bdc76f
+   You should have received a copy of the GNU Lesser General Public
bdc76f
+   License along with the GNU C Library; if not, see
bdc76f
+   <http://www.gnu.org/licenses/>.  */
bdc76f
+
bdc76f
+#if defined USE_MULTIARCH && IS_IN (libc)		\
bdc76f
+  && ! defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
bdc76f
+# define HAVE_WCPCPY_IFUNC	1
bdc76f
+#else
bdc76f
+# define HAVE_WCPCPY_IFUNC	0
bdc76f
+#endif
bdc76f
+
bdc76f
+#ifdef HAVE_S390_VX_ASM_SUPPORT
bdc76f
+# define HAVE_WCPCPY_IFUNC_AND_VX_SUPPORT HAVE_WCPCPY_IFUNC
bdc76f
+#else
bdc76f
+# define HAVE_WCPCPY_IFUNC_AND_VX_SUPPORT 0
bdc76f
+#endif
bdc76f
+
bdc76f
+#if defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
bdc76f
+# define WCPCPY_DEFAULT		WCPCPY_Z13
bdc76f
+/* The z13 ifunc variant is using the common code variant as fallback!  */
bdc76f
+# define HAVE_WCPCPY_C		1
bdc76f
+# define HAVE_WCPCPY_Z13	1
bdc76f
+#else
bdc76f
+# define WCPCPY_DEFAULT		WCPCPY_C
bdc76f
+# define HAVE_WCPCPY_C		1
bdc76f
+# define HAVE_WCPCPY_Z13	HAVE_WCPCPY_IFUNC_AND_VX_SUPPORT
bdc76f
+#endif
bdc76f
+
bdc76f
+#if HAVE_WCPCPY_C
bdc76f
+# define WCPCPY_C		__wcpcpy_c
bdc76f
+#else
bdc76f
+# define WCPCPY_C		NULL
bdc76f
+#endif
bdc76f
+
bdc76f
+#if HAVE_WCPCPY_Z13
bdc76f
+# define WCPCPY_Z13		__wcpcpy_vx
bdc76f
+#else
bdc76f
+# define WCPCPY_Z13		NULL
bdc76f
+#endif
bdc76f
diff --git a/sysdeps/s390/multiarch/Makefile b/sysdeps/s390/multiarch/Makefile
bdc76f
index 8828897a59ae580c..7d7b05dcf21cff7d 100644
bdc76f
--- a/sysdeps/s390/multiarch/Makefile
bdc76f
+++ b/sysdeps/s390/multiarch/Makefile
bdc76f
@@ -1,6 +1,5 @@
bdc76f
 ifeq ($(subdir),wcsmbs)
bdc76f
-sysdep_routines += wcpcpy wcpcpy-vx wcpcpy-c \
bdc76f
-		   wcsncpy wcsncpy-vx wcsncpy-c \
bdc76f
+sysdep_routines += wcsncpy wcsncpy-vx wcsncpy-c \
bdc76f
 		   wcpncpy wcpncpy-vx wcpncpy-c \
bdc76f
 		   wcscat wcscat-vx wcscat-c \
bdc76f
 		   wcsncat wcsncat-vx wcsncat-c \
bdc76f
diff --git a/sysdeps/s390/multiarch/ifunc-impl-list.c b/sysdeps/s390/multiarch/ifunc-impl-list.c
bdc76f
index aac8f4ea4671d0cf..656ab59db66dbb48 100644
bdc76f
--- a/sysdeps/s390/multiarch/ifunc-impl-list.c
bdc76f
+++ b/sysdeps/s390/multiarch/ifunc-impl-list.c
bdc76f
@@ -49,6 +49,7 @@
bdc76f
 #include <ifunc-wcslen.h>
bdc76f
 #include <ifunc-wcsnlen.h>
bdc76f
 #include <ifunc-wcscpy.h>
bdc76f
+#include <ifunc-wcpcpy.h>
bdc76f
 
bdc76f
 /* Maximum number of IFUNC implementations.  */
bdc76f
 #define MAX_IFUNC	3
bdc76f
@@ -463,6 +464,18 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
bdc76f
 		)
bdc76f
 #endif /* HAVE_WCSCPY_IFUNC  */
bdc76f
 
bdc76f
+#if HAVE_WCPCPY_IFUNC
bdc76f
+    IFUNC_IMPL (i, name, wcpcpy,
bdc76f
+# if HAVE_WCPCPY_Z13
bdc76f
+		IFUNC_IMPL_ADD (array, i, wcpcpy,
bdc76f
+				dl_hwcap & HWCAP_S390_VX, WCPCPY_Z13)
bdc76f
+# endif
bdc76f
+# if HAVE_WCPCPY_C
bdc76f
+		IFUNC_IMPL_ADD (array, i, wcpcpy, 1, WCPCPY_C)
bdc76f
+# endif
bdc76f
+		)
bdc76f
+#endif /* HAVE_WCPCPY_IFUNC  */
bdc76f
+
bdc76f
 #ifdef HAVE_S390_VX_ASM_SUPPORT
bdc76f
 
bdc76f
 # define IFUNC_VX_IMPL(FUNC)						\
bdc76f
@@ -471,8 +484,6 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
bdc76f
 			      __##FUNC##_vx)				\
bdc76f
 	      IFUNC_IMPL_ADD (array, i, FUNC, 1, __##FUNC##_c))
bdc76f
 
bdc76f
-  IFUNC_VX_IMPL (wcpcpy);
bdc76f
-
bdc76f
   IFUNC_VX_IMPL (wcsncpy);
bdc76f
 
bdc76f
   IFUNC_VX_IMPL (wcpncpy);
bdc76f
diff --git a/sysdeps/s390/multiarch/wcpcpy-c.c b/sysdeps/s390/wcpcpy-c.c
bdc76f
similarity index 86%
bdc76f
rename from sysdeps/s390/multiarch/wcpcpy-c.c
bdc76f
rename to sysdeps/s390/wcpcpy-c.c
bdc76f
index e3282fde19c5262a..ed1539cde2f6f858 100644
bdc76f
--- a/sysdeps/s390/multiarch/wcpcpy-c.c
bdc76f
+++ b/sysdeps/s390/wcpcpy-c.c
bdc76f
@@ -16,10 +16,12 @@
bdc76f
    License along with the GNU C Library; if not, see
bdc76f
    <http://www.gnu.org/licenses/>.  */
bdc76f
 
bdc76f
-#if defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)
bdc76f
-# define WCPCPY  __wcpcpy_c
bdc76f
+#include <ifunc-wcpcpy.h>
bdc76f
+
bdc76f
+#if HAVE_WCPCPY_C
bdc76f
+# if HAVE_WCPCPY_IFUNC || HAVE_WCPCPY_Z13
bdc76f
+#  define WCPCPY WCPCPY_C
bdc76f
+# endif
bdc76f
 
bdc76f
-# include <wchar.h>
bdc76f
-extern __typeof (__wcpcpy) __wcpcpy_c;
bdc76f
 # include <wcsmbs/wcpcpy.c>
bdc76f
 #endif
bdc76f
diff --git a/sysdeps/s390/multiarch/wcpcpy-vx.S b/sysdeps/s390/wcpcpy-vx.S
bdc76f
similarity index 94%
bdc76f
rename from sysdeps/s390/multiarch/wcpcpy-vx.S
bdc76f
rename to sysdeps/s390/wcpcpy-vx.S
bdc76f
index bff6e8562884066c..5154ad44610c1ed1 100644
bdc76f
--- a/sysdeps/s390/multiarch/wcpcpy-vx.S
bdc76f
+++ b/sysdeps/s390/wcpcpy-vx.S
bdc76f
@@ -16,7 +16,8 @@
bdc76f
    License along with the GNU C Library; if not, see
bdc76f
    <http://www.gnu.org/licenses/>.  */
bdc76f
 
bdc76f
-#if defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)
bdc76f
+#include <ifunc-wcpcpy.h>
bdc76f
+#if HAVE_WCPCPY_Z13
bdc76f
 
bdc76f
 # include "sysdep.h"
bdc76f
 # include "asm-syntax.h"
bdc76f
@@ -37,7 +38,7 @@
bdc76f
    -v17=index of zero
bdc76f
    -v18=part of src
bdc76f
 */
bdc76f
-ENTRY(__wcpcpy_vx)
bdc76f
+ENTRY(WCPCPY_Z13)
bdc76f
 	.machine "z13"
bdc76f
 	.machinemode "zarch_nohighgprs"
bdc76f
 
bdc76f
@@ -109,6 +110,11 @@ ENTRY(__wcpcpy_vx)
bdc76f
 	br	%r14
bdc76f
 
bdc76f
 .Lfallback:
bdc76f
-	jg	__wcpcpy_c
bdc76f
-END(__wcpcpy_vx)
bdc76f
-#endif /* HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc) */
bdc76f
+	jg	WCPCPY_C
bdc76f
+END(WCPCPY_Z13)
bdc76f
+
bdc76f
+# if ! HAVE_WCPCPY_IFUNC
bdc76f
+strong_alias (WCPCPY_Z13, __wcpcpy)
bdc76f
+weak_alias (__wcpcpy, wcpcpy)
bdc76f
+# endif
bdc76f
+#endif
bdc76f
diff --git a/sysdeps/s390/multiarch/wcpcpy.c b/sysdeps/s390/wcpcpy.c
bdc76f
similarity index 70%
bdc76f
rename from sysdeps/s390/multiarch/wcpcpy.c
bdc76f
rename to sysdeps/s390/wcpcpy.c
bdc76f
index f19d376d8530d0a4..34ac68b31fedcb09 100644
bdc76f
--- a/sysdeps/s390/multiarch/wcpcpy.c
bdc76f
+++ b/sysdeps/s390/wcpcpy.c
bdc76f
@@ -16,13 +16,24 @@
bdc76f
    License along with the GNU C Library; if not, see
bdc76f
    <http://www.gnu.org/licenses/>.  */
bdc76f
 
bdc76f
-#if defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)
bdc76f
+#include <ifunc-wcpcpy.h>
bdc76f
+
bdc76f
+#if HAVE_WCPCPY_IFUNC
bdc76f
 # include <wchar.h>
bdc76f
 # include <ifunc-resolve.h>
bdc76f
 
bdc76f
-s390_vx_libc_ifunc (__wcpcpy)
bdc76f
-weak_alias (__wcpcpy, wcpcpy)
bdc76f
+# if HAVE_WCPCPY_C
bdc76f
+extern __typeof (__wcpcpy) WCPCPY_C attribute_hidden;
bdc76f
+# endif
bdc76f
 
bdc76f
-#else
bdc76f
-# include <wcsmbs/wcpcpy.c>
bdc76f
-#endif /* !(defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)) */
bdc76f
+# if HAVE_WCPCPY_Z13
bdc76f
+extern __typeof (__wcpcpy) WCPCPY_Z13 attribute_hidden;
bdc76f
+# endif
bdc76f
+
bdc76f
+s390_libc_ifunc_expr (__wcpcpy, __wcpcpy,
bdc76f
+		      (HAVE_WCPCPY_Z13 && (hwcap & HWCAP_S390_VX))
bdc76f
+		      ? WCPCPY_Z13
bdc76f
+		      : WCPCPY_DEFAULT
bdc76f
+		      )
bdc76f
+weak_alias (__wcpcpy, wcpcpy)
bdc76f
+#endif