ce426f
    Backport of:
ce426f
    commit 94c9680945369d63ef9ed266a29f28ebaaaeb5ce
ce426f
    Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
ce426f
    Date:   Tue Dec 23 13:36:34 2014 -0500
ce426f
    
ce426f
        powerpc: Optimized strcat for POWER8/PPC64
ce426f
    
ce426f
        With new optimized strcpy for POWER8, this patch adds an optimized
ce426f
        strcat which uses it along with default implementation at strings/.
ce426f
    
ce426f
        ChangeLog:
ce426f
            2015-01-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
ce426f
    
ce426f
     	* sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]: Add
ce426f
    	strncat-power8 object.
ce426f
    	* sysdeps/powerpc/powerpc64/multiarch/strcat.c (strcat): Add
ce426f
    	__strcat_power8 implementation.
ce426f
    	* sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
ce426f
    	(__libc_ifunc_impl_list): Add __strcat_power8 implementation.
ce426f
    	* sysdeps/powerpc/powerpc64/multiarch/strcat-power8.c: New file:
ce426f
    	optimized strcat for power8.
ce426f
    
ce426f
    and its dependency:
ce426f
    
ce426f
    commit bc8ea38590070604006399e42469087e943fc8ec
ce426f
    Author: Vidya Ranganathan <vidya@linux.vnet.ibm.com>
ce426f
    Date:   Wed Jun 11 22:21:20 2014 -0500
ce426f
    
ce426f
        PowerPC: strcat optimization for PPC64/POWER7
ce426f
    
ce426f
        This patch adds an ifunc power7 strcat symbol that uses the logic on
ce426f
        sysdeps/powerpc/strcat.c but call power7 strlen/strcpy symbols instead
ce426f
        of default ones.
ce426f
    
ce426f
        ChangeLog:
ce426f
    
ce426f
            2014-07-02  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
ce426f
                Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
ce426f
    
ce426f
            * sysdeps/powerpc/strcat.c: Using macro to redefine symbol name.
ce426f
            * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcat multiarch
ce426f
            optimizations.
ce426f
            * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
ce426f
            (__libc_ifunc_impl_list): Likewise.
ce426f
            * sysdeps/powerpc/powerpc64/multiarch/strcat.c: New file:
ce426f
            multiarch strcat for PPC64.
ce426f
            * sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c: New file/
ce426f
            * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: New file.
ce426f
ce426f
diff --git a/sysdeps/powerpc/powerpc64/multiarch/Makefile b/sysdeps/powerpc/powerpc64/multiarch/Makefile
ce426f
index 1cdd5d6..7ebfc7e 100644
ce426f
--- a/sysdeps/powerpc/powerpc64/multiarch/Makefile
ce426f
+++ b/sysdeps/powerpc/powerpc64/multiarch/Makefile
ce426f
@@ -6,6 +6,7 @@ sysdep_routines += memcpy-power7 memcpy-a2 memcpy-power6 memcpy-cell \
ce426f
                   mempcpy-power7 mempcpy-ppc64 memchr-power7 memchr-ppc64 \
ce426f
                   memrchr-power7 memrchr-ppc64 rawmemchr-power7 \
ce426f
                   stpcpy-power8 stpcpy-power7 stpcpy-ppc64 \
ce426f
+                  strcat-power8 strcat-power7 strcat-ppc64 \
ce426f
                   strcpy-power8 strcpy-power7 strcpy-ppc64 \
ce426f
                   rawmemchr-ppc64 strlen-power7 strlen-ppc64 strnlen-power7 \
ce426f
                   strnlen-ppc64 strcasecmp-power7 strcasecmp_l-power7 \
ce426f
diff --git a/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c b/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
ce426f
index e89fd3e..4e5bb17 100644
ce426f
--- a/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
ce426f
+++ b/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
ce426f
@@ -211,6 +211,17 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
ce426f
              IFUNC_IMPL_ADD (array, i, strncasecmp_l, 1,
ce426f
                              __strncasecmp_l_ppc))
ce426f
 
ce426f
+    /* Support sysdeps/powerpc/powerpc64/multiarch/strcat.c.  */
ce426f
+    IFUNC_IMPL (i, name, strcat,
ce426f
+                IFUNC_IMPL_ADD (array, i, strcat,
ce426f
+                                hwcap2 & PPC_FEATURE2_ARCH_2_07,
ce426f
+                                __strcat_power8)
ce426f
+                IFUNC_IMPL_ADD (array, i, strcat,
ce426f
+                                hwcap & PPC_FEATURE_HAS_VSX,
ce426f
+                                __strcat_power7)
ce426f
+                IFUNC_IMPL_ADD (array, i, strcat, 1,
ce426f
+                                __strcat_ppc))
ce426f
+
ce426f
   /* Support sysdeps/powerpc/powerpc64/multiarch/wcschr.c.  */
ce426f
   IFUNC_IMPL (i, name, wcschr,
ce426f
              IFUNC_IMPL_ADD (array, i, wcschr,
ce426f
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c b/sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c
ce426f
new file mode 100644
ce426f
index 0000000..291a720
ce426f
--- /dev/null
ce426f
+++ b/sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c
ce426f
@@ -0,0 +1,31 @@
ce426f
+/* Copyright (C) 2014 Free Software Foundation, Inc.
ce426f
+   This file is part of the GNU C Library.
ce426f
+
ce426f
+   The GNU C Library is free software; you can redistribute it and/or
ce426f
+   modify it under the terms of the GNU Lesser General Public
ce426f
+   License as published by the Free Software Foundation; either
ce426f
+   version 2.1 of the License, or (at your option) any later version.
ce426f
+
ce426f
+   The GNU C Library is distributed in the hope that it will be useful,
ce426f
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
ce426f
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
ce426f
+   Lesser General Public License for more details.
ce426f
+
ce426f
+   You should have received a copy of the GNU Lesser General Public
ce426f
+   License along with the GNU C Library; if not, see
ce426f
+   <http://www.gnu.org/licenses/ >.  */
ce426f
+
ce426f
+#include <string.h>
ce426f
+
ce426f
+#define STRCAT __strcat_power7
ce426f
+
ce426f
+#undef libc_hidden_def
ce426f
+#define libc_hidden_def(name)
ce426f
+
ce426f
+extern typeof (strcpy) __strcpy_power7;
ce426f
+extern typeof (strlen) __strlen_power7;
ce426f
+
ce426f
+#define strcpy __strcpy_power7
ce426f
+#define strlen __strlen_power7
ce426f
+
ce426f
+#include <sysdeps/powerpc/strcat.c>
ce426f
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcat-power8.c b/sysdeps/powerpc/powerpc64/multiarch/strcat-power8.c
ce426f
new file mode 100644
ce426f
index 0000000..6c7544c
ce426f
--- /dev/null
ce426f
+++ b/sysdeps/powerpc/powerpc64/multiarch/strcat-power8.c
ce426f
@@ -0,0 +1,30 @@
ce426f
+/* Copyright (C) 2015 Free Software Foundation, Inc.
ce426f
+   This file is part of the GNU C Library.
ce426f
+
ce426f
+   The GNU C Library is free software; you can redistribute it and/or
ce426f
+   modify it under the terms of the GNU Lesser General Public
ce426f
+   License as published by the Free Software Foundation; either
ce426f
+   version 2.1 of the License, or (at your option) any later version.
ce426f
+
ce426f
+   The GNU C Library is distributed in the hope that it will be useful,
ce426f
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
ce426f
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
ce426f
+   Lesser General Public License for more details.
ce426f
+
ce426f
+   You should have received a copy of the GNU Lesser General Public
ce426f
+   License along with the GNU C Library; if not, see
ce426f
+   <http://www.gnu.org/licenses/ >.  */
ce426f
+
ce426f
+#include <string.h>
ce426f
+
ce426f
+#define STRCAT __strcat_power8
ce426f
+
ce426f
+#undef libc_hidden_def
ce426f
+#define libc_hidden_def(name)
ce426f
+
ce426f
+extern typeof (strcpy) __strcpy_power8;
ce426f
+extern typeof (strlen) __strlen_power7;
ce426f
+
ce426f
+#define strcpy __strcpy_power8
ce426f
+#define strlen __strlen_power7
ce426f
+#include <sysdeps/powerpc/strcat.c>
ce426f
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c
ce426f
new file mode 100644
ce426f
index 0000000..1245764
ce426f
--- /dev/null
ce426f
+++ b/sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c
ce426f
@@ -0,0 +1,29 @@
ce426f
+/* Copyright (C) 2014 Free Software Foundation, Inc.
ce426f
+   This file is part of the GNU C Library.
ce426f
+
ce426f
+   The GNU C Library is free software; you can redistribute it and/or
ce426f
+   modify it under the terms of the GNU Lesser General Public
ce426f
+   License as published by the Free Software Foundation; either
ce426f
+   version 2.1 of the License, or (at your option) any later version.
ce426f
+
ce426f
+   The GNU C Library is distributed in the hope that it will be useful,
ce426f
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
ce426f
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
ce426f
+   Lesser General Public License for more details.
ce426f
+
ce426f
+   You should have received a copy of the GNU Lesser General Public
ce426f
+   License along with the GNU C Library; if not, see
ce426f
+   <http://www.gnu.org/licenses/ >.  */
ce426f
+
ce426f
+#include <string.h>
ce426f
+
ce426f
+#define STRCAT __strcat_ppc
ce426f
+#ifdef SHARED
ce426f
+# undef libc_hidden_builtin_def
ce426f
+# define libc_hidden_builtin_def(name) \
ce426f
+  __hidden_ver1 (__strcat_ppc, __GI_strcat, __strcat_ppc);
ce426f
+#endif
ce426f
+
ce426f
+extern __typeof (strcat) __strcat_ppc attribute_hidden;
ce426f
+
ce426f
+#include <sysdeps/powerpc/strcat.c>
ce426f
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcat.c b/sysdeps/powerpc/powerpc64/multiarch/strcat.c
ce426f
new file mode 100644
ce426f
index 0000000..847a62d
ce426f
--- /dev/null
ce426f
+++ b/sysdeps/powerpc/powerpc64/multiarch/strcat.c
ce426f
@@ -0,0 +1,31 @@
ce426f
+/* Multiple versions of strcat. PowerPC64 version.
ce426f
+   Copyright (C) 2014 Free Software Foundation, Inc.
ce426f
+   This file is part of the GNU C Library.
ce426f
+
ce426f
+   The GNU C Library is free software; you can redistribute it and/or
ce426f
+   modify it under the terms of the GNU Lesser General Public
ce426f
+   License as published by the Free Software Foundation; either
ce426f
+   version 2.1 of the License, or (at your option) any later version.
ce426f
+
ce426f
+   The GNU C Library is distributed in the hope that it will be useful,
ce426f
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
ce426f
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
ce426f
+   Lesser General Public License for more details.
ce426f
+
ce426f
+   You should have received a copy of the GNU Lesser General Public
ce426f
+   License along with the GNU C Library; if not, see
ce426f
+   <http://www.gnu.org/licenses/>.  */
ce426f
+
ce426f
+#ifndef NOT_IN_libc
ce426f
+# include <string.h>
ce426f
+# include <shlib-compat.h>
ce426f
+# include "init-arch.h"
ce426f
+
ce426f
+extern __typeof (strcat) __strcat_ppc attribute_hidden;
ce426f
+extern __typeof (strcat) __strcat_power7 attribute_hidden;
ce426f
+
ce426f
+libc_ifunc (strcat,
ce426f
+            (hwcap & PPC_FEATURE_HAS_VSX)
ce426f
+            ? __strcat_power7
ce426f
+            : __strcat_ppc);
ce426f
+#endif
ce426f
diff --git a/sysdeps/powerpc/strcat.c b/sysdeps/powerpc/strcat.c
ce426f
index 28575d0..393bee6 100644
ce426f
--- a/sysdeps/powerpc/strcat.c
ce426f
+++ b/sysdeps/powerpc/strcat.c
ce426f
@@ -18,13 +18,16 @@
ce426f
 
ce426f
 #include <string.h>
ce426f
 
ce426f
-#undef strcat
ce426f
+#ifndef STRCAT
ce426f
+# undef strcat
ce426f
+# define STRCAT  strcat
ce426f
+#endif
ce426f
 
ce426f
 /* Append SRC on the end of DEST.  */
ce426f
 char *
ce426f
-strcat (char *dest, const char *src)
ce426f
+STRCAT(char *dest, const char *src)
ce426f
 {
ce426f
   strcpy (dest + strlen (dest), src);
ce426f
   return dest;
ce426f
 }
ce426f
-libc_hidden_builtin_def (strcat)
ce426f
+libc_hidden_builtin_def (STRCAT)