bdc76f
commit 970449311ded3cacb6058c96143dd4c057900589
bdc76f
Author: Stefan Liebler <stli@linux.ibm.com>
bdc76f
Date:   Tue Dec 18 13:57:11 2018 +0100
bdc76f
bdc76f
    S390: Refactor stpcpy ifunc handling.
bdc76f
    
bdc76f
    The ifunc handling for stpcpy is adjusted in order to omit ifunc
bdc76f
    variants if those will never be used as the minimum architecture level
bdc76f
    already supports newer CPUs by default.
bdc76f
    Glibc internal calls will then also use the "newer" ifunc variant.
bdc76f
    
bdc76f
    ChangeLog:
bdc76f
    
bdc76f
            * sysdeps/s390/multiarch/Makefile
bdc76f
            (sysdep_routines): Remove stpcpy variants.
bdc76f
            * sysdeps/s390/Makefile (sysdep_routines): Add stpcpy variants.
bdc76f
            * sysdeps/s390/multiarch/ifunc-impl-list.c
bdc76f
            (__libc_ifunc_impl_list): Refactor ifunc handling for stpcpy.
bdc76f
            * sysdeps/s390/multiarch/stpcpy-c.c: Move to ...
bdc76f
            * sysdeps/s390/stpcpy-c.c: ... here and adjust ifunc handling.
bdc76f
            * sysdeps/s390/multiarch/stpcpy-vx.S: Move to ...
bdc76f
            * sysdeps/s390/stpcpy-vx.S: ... here and adjust ifunc handling.
bdc76f
            * sysdeps/s390/multiarch/stpcpy.c: Move to ...
bdc76f
            * sysdeps/s390/stpcpy.c: ... here and adjust ifunc handling.
bdc76f
            * sysdeps/s390/ifunc-stpcpy.h: New file.
bdc76f
bdc76f
diff --git a/sysdeps/s390/Makefile b/sysdeps/s390/Makefile
bdc76f
index e4191319531ecb01..b7e1bc8aecf2f8c9 100644
bdc76f
--- a/sysdeps/s390/Makefile
bdc76f
+++ b/sysdeps/s390/Makefile
bdc76f
@@ -39,5 +39,6 @@ sysdep_routines += bzero memset memset-z900 \
bdc76f
 		   memmem memmem-vx memmem-c \
bdc76f
 		   strlen strlen-vx strlen-c \
bdc76f
 		   strnlen strnlen-vx strnlen-c \
bdc76f
-		   strcpy strcpy-vx strcpy-z900
bdc76f
+		   strcpy strcpy-vx strcpy-z900 \
bdc76f
+		   stpcpy stpcpy-vx stpcpy-c
bdc76f
 endif
bdc76f
diff --git a/sysdeps/s390/ifunc-stpcpy.h b/sysdeps/s390/ifunc-stpcpy.h
bdc76f
new file mode 100644
bdc76f
index 0000000000000000..9a70cd7c8c4f4582
bdc76f
--- /dev/null
bdc76f
+++ b/sysdeps/s390/ifunc-stpcpy.h
bdc76f
@@ -0,0 +1,52 @@
bdc76f
+/* stpcpy 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_STPCPY_IFUNC	1
bdc76f
+#else
bdc76f
+# define HAVE_STPCPY_IFUNC	0
bdc76f
+#endif
bdc76f
+
bdc76f
+#ifdef HAVE_S390_VX_ASM_SUPPORT
bdc76f
+# define HAVE_STPCPY_IFUNC_AND_VX_SUPPORT HAVE_STPCPY_IFUNC
bdc76f
+#else
bdc76f
+# define HAVE_STPCPY_IFUNC_AND_VX_SUPPORT 0
bdc76f
+#endif
bdc76f
+
bdc76f
+#if defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
bdc76f
+# define STPCPY_DEFAULT		STPCPY_Z13
bdc76f
+# define HAVE_STPCPY_C		0
bdc76f
+# define HAVE_STPCPY_Z13	1
bdc76f
+#else
bdc76f
+# define STPCPY_DEFAULT		STPCPY_C
bdc76f
+# define HAVE_STPCPY_C		1
bdc76f
+# define HAVE_STPCPY_Z13	HAVE_STPCPY_IFUNC_AND_VX_SUPPORT
bdc76f
+#endif
bdc76f
+
bdc76f
+#if HAVE_STPCPY_C
bdc76f
+# define STPCPY_C		__stpcpy_c
bdc76f
+#else
bdc76f
+# define STPCPY_C		NULL
bdc76f
+#endif
bdc76f
+
bdc76f
+#if HAVE_STPCPY_Z13
bdc76f
+# define STPCPY_Z13		__stpcpy_vx
bdc76f
+#else
bdc76f
+# define STPCPY_Z13		NULL
bdc76f
+#endif
bdc76f
diff --git a/sysdeps/s390/multiarch/Makefile b/sysdeps/s390/multiarch/Makefile
bdc76f
index 50f7f0b78df723bb..9517417dcbe1c701 100644
bdc76f
--- a/sysdeps/s390/multiarch/Makefile
bdc76f
+++ b/sysdeps/s390/multiarch/Makefile
bdc76f
@@ -1,6 +1,5 @@
bdc76f
 ifeq ($(subdir),string)
bdc76f
-sysdep_routines += stpcpy stpcpy-vx stpcpy-c \
bdc76f
-		   strncpy strncpy-vx \
bdc76f
+sysdep_routines += strncpy strncpy-vx \
bdc76f
 		   stpncpy stpncpy-vx stpncpy-c \
bdc76f
 		   strcat strcat-vx strcat-c \
bdc76f
 		   strncat strncat-vx strncat-c \
bdc76f
diff --git a/sysdeps/s390/multiarch/ifunc-impl-list.c b/sysdeps/s390/multiarch/ifunc-impl-list.c
bdc76f
index 1784372db9828463..678ed13833332f11 100644
bdc76f
--- a/sysdeps/s390/multiarch/ifunc-impl-list.c
bdc76f
+++ b/sysdeps/s390/multiarch/ifunc-impl-list.c
bdc76f
@@ -29,6 +29,7 @@
bdc76f
 #include <ifunc-strlen.h>
bdc76f
 #include <ifunc-strnlen.h>
bdc76f
 #include <ifunc-strcpy.h>
bdc76f
+#include <ifunc-stpcpy.h>
bdc76f
 
bdc76f
 /* Maximum number of IFUNC implementations.  */
bdc76f
 #define MAX_IFUNC	3
bdc76f
@@ -203,6 +204,18 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
bdc76f
 		)
bdc76f
 #endif /* HAVE_STRCPY_IFUNC  */
bdc76f
 
bdc76f
+#if HAVE_STPCPY_IFUNC
bdc76f
+    IFUNC_IMPL (i, name, stpcpy,
bdc76f
+# if HAVE_STPCPY_Z13
bdc76f
+		IFUNC_IMPL_ADD (array, i, stpcpy,
bdc76f
+				dl_hwcap & HWCAP_S390_VX, STPCPY_Z13)
bdc76f
+# endif
bdc76f
+# if HAVE_STPCPY_C
bdc76f
+		IFUNC_IMPL_ADD (array, i, stpcpy, 1, STPCPY_C)
bdc76f
+# endif
bdc76f
+		)
bdc76f
+#endif /* HAVE_STPCPY_IFUNC  */
bdc76f
+
bdc76f
 #ifdef HAVE_S390_VX_ASM_SUPPORT
bdc76f
 
bdc76f
 # define IFUNC_VX_IMPL(FUNC)						\
bdc76f
@@ -217,7 +230,6 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
bdc76f
 
bdc76f
   IFUNC_VX_IMPL (wcscpy);
bdc76f
 
bdc76f
-  IFUNC_VX_IMPL (stpcpy);
bdc76f
   IFUNC_VX_IMPL (wcpcpy);
bdc76f
 
bdc76f
   IFUNC_VX_IMPL (strncpy);
bdc76f
diff --git a/sysdeps/s390/multiarch/stpcpy-c.c b/sysdeps/s390/stpcpy-c.c
bdc76f
similarity index 74%
bdc76f
rename from sysdeps/s390/multiarch/stpcpy-c.c
bdc76f
rename to sysdeps/s390/stpcpy-c.c
bdc76f
index 4a1c3e5832c9b544..76ec88462717799c 100644
bdc76f
--- a/sysdeps/s390/multiarch/stpcpy-c.c
bdc76f
+++ b/sysdeps/s390/stpcpy-c.c
bdc76f
@@ -16,20 +16,25 @@
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 STPCPY  __stpcpy_c
bdc76f
-# undef weak_alias
bdc76f
-# define weak_alias(a, b)
bdc76f
-# ifdef SHARED
bdc76f
-#  undef libc_hidden_def
bdc76f
-#  define libc_hidden_def(name)					\
bdc76f
+#include <ifunc-stpcpy.h>
bdc76f
+
bdc76f
+#if HAVE_STPCPY_C
bdc76f
+# if HAVE_STPCPY_IFUNC
bdc76f
+#  define STPCPY STPCPY_C
bdc76f
+
bdc76f
+#  undef weak_alias
bdc76f
+#  define weak_alias(a, b)
bdc76f
+
bdc76f
+#  if defined SHARED && IS_IN (libc)
bdc76f
+#   undef libc_hidden_def
bdc76f
+#   define libc_hidden_def(name)				\
bdc76f
   __hidden_ver1 (__stpcpy_c, __GI___stpcpy, __stpcpy_c);
bdc76f
-#  undef libc_hidden_builtin_def
bdc76f
-#  define libc_hidden_builtin_def(name)				\
bdc76f
+#   undef libc_hidden_builtin_def
bdc76f
+#   define libc_hidden_builtin_def(name)			\
bdc76f
   strong_alias (__stpcpy_c, __stpcpy_c_1);			\
bdc76f
   __hidden_ver1 (__stpcpy_c_1, __GI_stpcpy, __stpcpy_c_1);
bdc76f
-# endif /* SHARED */
bdc76f
-
bdc76f
+#  endif
bdc76f
+# endif
bdc76f
 
bdc76f
 # include <string/stpcpy.c>
bdc76f
-#endif /* HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc) */
bdc76f
+#endif
bdc76f
diff --git a/sysdeps/s390/multiarch/stpcpy-vx.S b/sysdeps/s390/stpcpy-vx.S
bdc76f
similarity index 90%
bdc76f
rename from sysdeps/s390/multiarch/stpcpy-vx.S
bdc76f
rename to sysdeps/s390/stpcpy-vx.S
bdc76f
index 6c17def0fc35d60d..d2db02d0cd714d27 100644
bdc76f
--- a/sysdeps/s390/multiarch/stpcpy-vx.S
bdc76f
+++ b/sysdeps/s390/stpcpy-vx.S
bdc76f
@@ -16,7 +16,9 @@
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-stpcpy.h>
bdc76f
+
bdc76f
+#if HAVE_STPCPY_Z13
bdc76f
 
bdc76f
 # include "sysdep.h"
bdc76f
 # include "asm-syntax.h"
bdc76f
@@ -36,7 +38,7 @@
bdc76f
    -v17=index of zero
bdc76f
    -v18=part of src
bdc76f
 */
bdc76f
-ENTRY(__stpcpy_vx)
bdc76f
+ENTRY(STPCPY_Z13)
bdc76f
 	.machine "z13"
bdc76f
 	.machinemode "zarch_nohighgprs"
bdc76f
 
bdc76f
@@ -100,5 +102,15 @@ ENTRY(__stpcpy_vx)
bdc76f
 	vstl	%v16,%r5,0(%r2)	/* Copy characters including zero.  */
bdc76f
 	la	%r2,0(%r5,%r2)	/* Return pointer to zero.  */
bdc76f
 	br	%r14
bdc76f
-END(__stpcpy_vx)
bdc76f
-#endif /* HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc) */
bdc76f
+END(STPCPY_Z13)
bdc76f
+
bdc76f
+# if ! HAVE_STPCPY_IFUNC
bdc76f
+strong_alias (STPCPY_Z13, __stpcpy)
bdc76f
+weak_alias (__stpcpy, stpcpy)
bdc76f
+# endif
bdc76f
+
bdc76f
+# if ! HAVE_STPCPY_C && defined SHARED && IS_IN (libc)
bdc76f
+strong_alias (STPCPY_Z13, __GI_stpcpy)
bdc76f
+strong_alias (STPCPY_Z13, __GI___stpcpy)
bdc76f
+# endif
bdc76f
+#endif
bdc76f
diff --git a/sysdeps/s390/multiarch/stpcpy.c b/sysdeps/s390/stpcpy.c
bdc76f
similarity index 74%
bdc76f
rename from sysdeps/s390/multiarch/stpcpy.c
bdc76f
rename to sysdeps/s390/stpcpy.c
bdc76f
index 654f9dfbef512e34..670604e2de3806b7 100644
bdc76f
--- a/sysdeps/s390/multiarch/stpcpy.c
bdc76f
+++ b/sysdeps/s390/stpcpy.c
bdc76f
@@ -16,7 +16,9 @@
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-stpcpy.h>
bdc76f
+
bdc76f
+#if HAVE_STPCPY_IFUNC
bdc76f
 # define stpcpy __redirect_stpcpy
bdc76f
 # define __stpcpy __redirect___stpcpy
bdc76f
 /* Omit the stpcpy inline definitions because it would redefine stpcpy.  */
bdc76f
@@ -27,9 +29,18 @@
bdc76f
 # undef __stpcpy
bdc76f
 # include <ifunc-resolve.h>
bdc76f
 
bdc76f
-s390_vx_libc_ifunc_redirected (__redirect___stpcpy, __stpcpy);
bdc76f
-weak_alias (__stpcpy, stpcpy)
bdc76f
+# if HAVE_STPCPY_C
bdc76f
+extern __typeof (__redirect_stpcpy) STPCPY_C attribute_hidden;
bdc76f
+# endif
bdc76f
 
bdc76f
-#else
bdc76f
-# include <string/stpcpy.c>
bdc76f
-#endif /* !(defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)) */
bdc76f
+# if HAVE_STPCPY_Z13
bdc76f
+extern __typeof (__redirect_stpcpy) STPCPY_Z13 attribute_hidden;
bdc76f
+# endif
bdc76f
+
bdc76f
+s390_libc_ifunc_expr (__redirect___stpcpy, __stpcpy,
bdc76f
+		      (HAVE_STPCPY_Z13 && (hwcap & HWCAP_S390_VX))
bdc76f
+		      ? STPCPY_Z13
bdc76f
+		      : STPCPY_DEFAULT
bdc76f
+		      )
bdc76f
+weak_alias (__stpcpy, stpcpy)
bdc76f
+#endif