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