00db10
    Backport of:
00db10
    
00db10
    commit f06a4faf8a2b4d046eb40e94b47948cc47d79902
00db10
    Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
00db10
    Date:   Wed Dec 31 11:47:41 2014 -0500
00db10
    
00db10
        powerpc: Optimized st{r,p}ncpy for POWER8/PPC64
00db10
    
00db10
        This patch adds an optimized POWER8 st{r,p}ncpy using unaligned accesses.
00db10
        It shows 10%-80% improvement over the optimized POWER7 one that uses
00db10
        only aligned accesses, specially on unaligned inputs.
00db10
    
00db10
        The algorithm first read and check 16 bytes (if inputs do not cross a 4K
00db10
        page size).  The it realign source to 16-bytes and issue a 16 bytes read
00db10
        and compare loop to speedup null byte checks for large strings.  Also,
00db10
        different from POWER7 optimization, the null pad is done inline in the
00db10
        implementation using possible unaligned accesses, instead of realying on
00db10
        a memset call.  Special case is added for page cross reads.
00db10
    
00db10
        ChangeLog:
00db10
    	2015-01-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
00db10
    
00db10
    	* sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
00db10
    	Add strncpy-power8 and stpncpy-power8 objects.
00db10
    	* sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
00db10
    	(__libc_ifunc_impl_list): Add __strncpy_power8 and stpncpy_power8
00db10
    	implementations.
00db10
    	* sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: New file.
00db10
    	* sysdeps/powerpc/powerpc64/multiarch/stpncpy.c (__stpncpy): Add
00db10
    	__stpncpy_power8 implementation.
00db10
    	* sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S: New file.
00db10
    	* sysdeps/powerpc/powerpc64/multiarch/strncpy.c (strncpy): Add
00db10
    	__strncpy_power8 implementation.
00db10
    	* sysdeps/powerpc/powerpc64/power8/stpncpy.S: New file.
00db10
    	* sysdeps/powerpc/powerpc64/power8/strncpy.S: New file.
00db10
    	* NEWS: Update.
00db10
    
00db10
    and its dependency:
00db10
    
00db10
    commit f360f94a05570045be615649e9a411cefba2e210
00db10
    Author: Vidya Ranganathan <vidya@linux.vnet.ibm.com>
00db10
    Date:   Mon May 5 19:10:45 2014 -0500
00db10
    
00db10
        PowerPC: strncpy/stpncpy optimization for PPC64/POWER7
00db10
    
00db10
        The optimization is achieved by following techniques:
00db10
          > data alignment [gain from aligned memory access on read/write]
00db10
          > POWER7 gains performance with loop unrolling/unwinding
00db10
            [gain by reduction of branch penalty].
00db10
          > zero padding done by calling optimized memset
00db10
00db10
diff --git a/sysdeps/powerpc/powerpc64/multiarch/Makefile b/sysdeps/powerpc/powerpc64/multiarch/Makefile
00db10
index 74ae710..ef39917 100644
00db10
--- a/sysdeps/powerpc/powerpc64/multiarch/Makefile
00db10
+++ b/sysdeps/powerpc/powerpc64/multiarch/Makefile
00db10
@@ -8,6 +8,8 @@ sysdep_routines += memcpy-power7 memcpy-a2 memcpy-power6 memcpy-cell \
00db10
                   stpcpy-power8 stpcpy-power7 stpcpy-ppc64 \
00db10
                   strcat-power8 strcat-power7 strcat-ppc64 \
00db10
                   strcpy-power8 strcpy-power7 strcpy-ppc64 \
00db10
+                  stpncpy-power8 stpncpy-power7 stpncpy-ppc64 \
00db10
+                  strncpy-power8 strncpy-power7 strncpy-ppc64 
00db10
                   strncat-power7 \
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 4e5bb17..23bf5dc 100644
00db10
--- a/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
00db10
+++ b/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
00db10
@@ -255,5 +255,27 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
00db10
              IFUNC_IMPL_ADD (array, i, wcscpy, 1,
00db10
                              __wcscpy_ppc))
00db10
 
00db10
+  /* Support sysdeps/powerpc/powerpc64/multiarch/strncpy.c.  */
00db10
+  IFUNC_IMPL (i, name, strncpy,
00db10
+	      IFUNC_IMPL_ADD (array, i, strncpy,
00db10
+			      hwcap2 & PPC_FEATURE2_ARCH_2_07,
00db10
+			      __strncpy_power8)
00db10
+	      IFUNC_IMPL_ADD (array, i, strncpy,
00db10
+			      hwcap & PPC_FEATURE_HAS_VSX,
00db10
+			      __strncpy_power7)
00db10
+	      IFUNC_IMPL_ADD (array, i, strncpy, 1,
00db10
+			     __strncpy_ppc))
00db10
+
00db10
+  /* Support sysdeps/powerpc/powerpc64/multiarch/stpncpy.c.  */
00db10
+  IFUNC_IMPL (i, name, stpncpy,
00db10
+	      IFUNC_IMPL_ADD (array, i, stpncpy,
00db10
+			      hwcap2 & PPC_FEATURE2_ARCH_2_07,
00db10
+			      __stpncpy_power8)
00db10
+	      IFUNC_IMPL_ADD (array, i, stpncpy,
00db10
+			      hwcap & PPC_FEATURE_HAS_VSX,
00db10
+			      __stpncpy_power7)
00db10
+	      IFUNC_IMPL_ADD (array, i, stpncpy, 1,
00db10
+			     __stpncpy_ppc))
00db10
+
00db10
   return i;
00db10
 }
00db10
diff --git a/sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S b/sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S
00db10
new file mode 100644
00db10
index 0000000..e29674f
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S
00db10
@@ -0,0 +1,44 @@
00db10
+/* Optimized stpncpy implementation for POWER7.
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 <sysdep.h>
00db10
+
00db10
+#define USE_AS_STPNCPY
00db10
+
00db10
+#undef EALIGN
00db10
+#define EALIGN(name, alignt, words)				\
00db10
+  .section ".text";						\
00db10
+  ENTRY_2(__stpncpy_power7)					\
00db10
+  .align ALIGNARG(alignt);					\
00db10
+  EALIGN_W_##words;						\
00db10
+  BODY_LABEL(__stpncpy_power7):					\
00db10
+  cfi_startproc;						\
00db10
+  LOCALENTRY(__stpncpy_power7)
00db10
+
00db10
+#undef END
00db10
+#define END(name)						\
00db10
+  cfi_endproc;							\
00db10
+  TRACEBACK(__stpncpy_power7)					\
00db10
+  END_2(__stpncpy_power7)
00db10
+
00db10
+#undef libc_hidden_builtin_def
00db10
+#define libc_hidden_builtin_def(name)
00db10
+
00db10
+#define MEMSET __memset_power7
00db10
+
00db10
+#include <sysdeps/powerpc/powerpc64/power7/stpncpy.S>
00db10
diff --git a/sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S b/sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S
00db10
new file mode 100644
00db10
index 0000000..d5d835d
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S
00db10
@@ -0,0 +1,39 @@
00db10
+/* Optimized stpncpy implementation for POWER8.
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 <sysdep.h>
00db10
+
00db10
+#define USE_AS_STPNCPY
00db10
+
00db10
+#undef EALIGN
00db10
+#define EALIGN(name, alignt, words)				\
00db10
+  .section ".text";						\
00db10
+  ENTRY_2(__stpncpy_power8)					\
00db10
+  .align ALIGNARG(alignt);					\
00db10
+  EALIGN_W_##words;						\
00db10
+  BODY_LABEL(__stpncpy_power8):					\
00db10
+  cfi_startproc;						\
00db10
+  LOCALENTRY(__stpncpy_power8)
00db10
+
00db10
+#undef END
00db10
+#define END(name)						\
00db10
+  cfi_endproc;							\
00db10
+  TRACEBACK(__stpncpy_power8)					\
00db10
+  END_2(__stpncpy_power8)
00db10
+
00db10
+#include <sysdeps/powerpc/powerpc64/power8/stpncpy.S>
00db10
diff --git a/sysdeps/powerpc/powerpc64/multiarch/stpncpy-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/stpncpy-ppc64.c
00db10
new file mode 100644
00db10
index 0000000..74f47a7
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/multiarch/stpncpy-ppc64.c
00db10
@@ -0,0 +1,26 @@
00db10
+/* Default stpncpy implementation for PowerPC64.
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
+#define STPNCPY __stpncpy_ppc
00db10
+#ifdef SHARED
00db10
+#undef libc_hidden_def
00db10
+#define libc_hidden_def(name) \
00db10
+  __hidden_ver1 (__stpncpy_ppc, __GI___stpncpy, __stpncpy_ppc);
00db10
+#endif
00db10
+
00db10
+#include <string/stpncpy.c>
00db10
diff --git a/sysdeps/powerpc/powerpc64/multiarch/stpncpy.c b/sysdeps/powerpc/powerpc64/multiarch/stpncpy.c
00db10
new file mode 100644
00db10
index 0000000..3ee50e5
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/multiarch/stpncpy.c
00db10
@@ -0,0 +1,36 @@
00db10
+/* Multiple versions of stpncpy. 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 (__stpncpy) __stpncpy_ppc attribute_hidden;
00db10
+extern __typeof (__stpncpy) __stpncpy_power7 attribute_hidden;
00db10
+extern __typeof (__stpncpy) __stpncpy_power8 attribute_hidden;
00db10
+
00db10
+libc_ifunc (__stpncpy,
00db10
+            (hwcap2 & PPC_FEATURE2_ARCH_2_07)
00db10
+            ? __stpncpy_power8 :
00db10
+              (hwcap & PPC_FEATURE_HAS_VSX)
00db10
+              ? __stpncpy_power7
00db10
+            : __stpncpy_ppc);
00db10
+
00db10
+weak_alias (__stpncpy, stpncpy)
00db10
+#endif
00db10
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S
00db10
new file mode 100644
00db10
index 0000000..be349f9
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S
00db10
@@ -0,0 +1,42 @@
00db10
+/* Optimized strncpy implementation for POWER7.
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 <sysdep.h>
00db10
+
00db10
+#undef EALIGN
00db10
+#define EALIGN(name, alignt, words)				\
00db10
+  .section ".text";						\
00db10
+  ENTRY_2(__strncpy_power7)					\
00db10
+  .align ALIGNARG(alignt);					\
00db10
+  EALIGN_W_##words;						\
00db10
+  BODY_LABEL(__strncpy_power7):					\
00db10
+  cfi_startproc;						\
00db10
+  LOCALENTRY(__strncpy_power7)
00db10
+
00db10
+#undef END
00db10
+#define END(name)						\
00db10
+  cfi_endproc;							\
00db10
+  TRACEBACK(__strncpy_power7)					\
00db10
+  END_2(__strncpy_power7)
00db10
+
00db10
+#undef libc_hidden_builtin_def
00db10
+#define libc_hidden_builtin_def(name)
00db10
+
00db10
+#define MEMSET __memset_power7
00db10
+
00db10
+#include <sysdeps/powerpc/powerpc64/power7/strncpy.S>
00db10
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S b/sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S
00db10
new file mode 100644
00db10
index 0000000..ed906a4
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S
00db10
@@ -0,0 +1,40 @@
00db10
+/* Optimized strncpy implementation for POWER8.
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 <sysdep.h>
00db10
+
00db10
+#undef EALIGN
00db10
+#define EALIGN(name, alignt, words)				\
00db10
+  .section ".text";						\
00db10
+  ENTRY_2(__strncpy_power8)					\
00db10
+  .align ALIGNARG(alignt);					\
00db10
+  EALIGN_W_##words;						\
00db10
+  BODY_LABEL(__strncpy_power8):					\
00db10
+  cfi_startproc;						\
00db10
+  LOCALENTRY(__strncpy_power8)
00db10
+
00db10
+#undef END
00db10
+#define END(name)						\
00db10
+  cfi_endproc;							\
00db10
+  TRACEBACK(__strncpy_power8)					\
00db10
+  END_2(__strncpy_power8)
00db10
+
00db10
+#undef libc_hidden_builtin_def
00db10
+#define libc_hidden_builtin_def(name)
00db10
+
00db10
+#include <sysdeps/powerpc/powerpc64/power8/strncpy.S>
00db10
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c
00db10
new file mode 100644
00db10
index 0000000..e3111d2
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c
00db10
@@ -0,0 +1,33 @@
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 STRNCPY __strncpy_ppc
00db10
+#undef weak_alias
00db10
+#define weak_alias(name, aliasname) \
00db10
+  extern __typeof (__strncpy_ppc) aliasname \
00db10
+    __attribute__ ((weak, alias ("__strncpy_ppc")));
00db10
+#if !defined(NOT_IN_libc) && defined(SHARED)
00db10
+# undef libc_hidden_builtin_def
00db10
+# define libc_hidden_builtin_def(name) \
00db10
+  __hidden_ver1(__strncpy_ppc, __GI_strncpy, __strncpy_ppc);
00db10
+#endif
00db10
+
00db10
+extern __typeof (strncpy) __strncpy_ppc attribute_hidden;
00db10
+
00db10
+#include <string/strncpy.c>
00db10
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncpy.c b/sysdeps/powerpc/powerpc64/multiarch/strncpy.c
00db10
new file mode 100644
00db10
index 0000000..19927bc
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/multiarch/strncpy.c
00db10
@@ -0,0 +1,38 @@
00db10
+/* Multiple versions of strncpy.
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
+/* Define multiple versions only for definition in libc. */
00db10
+#ifndef NOT_IN_libc
00db10
+# include <string.h>
00db10
+# include <shlib-compat.h>
00db10
+# include "init-arch.h"
00db10
+
00db10
+extern __typeof (strncpy) __strncpy_ppc attribute_hidden;
00db10
+extern __typeof (strncpy) __strncpy_power7 attribute_hidden;
00db10
+extern __typeof (strncpy) __strncpy_power8 attribute_hidden;
00db10
+
00db10
+/* Avoid DWARF definition DIE on ifunc symbol so that GDB can handle
00db10
+ ifunc symbol properly. */
00db10
+libc_ifunc (strncpy,
00db10
+            (hwcap2 & PPC_FEATURE2_ARCH_2_07)
00db10
+            ? __strncpy_power8 :
00db10
+              (hwcap & PPC_FEATURE_HAS_VSX)
00db10
+              ? __strncpy_power7
00db10
+            : __strncpy_ppc);
00db10
+
00db10
+#endif
00db10
diff --git a/sysdeps/powerpc/powerpc64/power7/stpncpy.S b/sysdeps/powerpc/powerpc64/power7/stpncpy.S
00db10
new file mode 100644
00db10
index 0000000..a539093
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/power7/stpncpy.S
00db10
@@ -0,0 +1,24 @@
00db10
+/* Optimized stpncpy implementation for PowerPC64/POWER7.
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
+#define USE_AS_STPNCPY
00db10
+#include <sysdeps/powerpc/powerpc64/power7/strncpy.S>
00db10
+
00db10
+weak_alias (__stpncpy, stpncpy)
00db10
+libc_hidden_def (__stpncpy)
00db10
+libc_hidden_builtin_def (stpncpy)
00db10
diff --git a/sysdeps/powerpc/powerpc64/power7/strncpy.S b/sysdeps/powerpc/powerpc64/power7/strncpy.S
00db10
new file mode 100644
00db10
index 0000000..51860df
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/power7/strncpy.S
00db10
@@ -0,0 +1,338 @@
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 <sysdep.h>
00db10
+
00db10
+/* Implements the functions
00db10
+
00db10
+   char * [r3] strncpy (char *dst [r3], const char *src [r4], size_t n [r5])
00db10
+
00db10
+   AND
00db10
+
00db10
+   char * [r3] stpncpy (char *dst [r3], const char *src [r4], size_t n [r5])
00db10
+
00db10
+   The algorithm is as follows:
00db10
+   > if src and dest are 8 byte aligned, perform double word copy
00db10
+     else
00db10
+   > copy byte by byte on unaligned addresses.
00db10
+
00db10
+   The aligned comparison are made using cmpb instructions.  */
00db10
+
00db10
+/* The focus on optimization for performance improvements are as follows:
00db10
+   1. data alignment [gain from aligned memory access on read/write]
00db10
+   2. POWER7 gains performance with loop unrolling/unwinding
00db10
+      [gain by reduction of branch penalty].
00db10
+   3. The final pad with null bytes is done by calling an optimized
00db10
+      memset.  */
00db10
+
00db10
+#ifdef USE_AS_STPNCPY
00db10
+# define FUNC_NAME __stpncpy
00db10
+#else
00db10
+# define FUNC_NAME strncpy
00db10
+#endif
00db10
+
00db10
+#define		FRAMESIZE	(FRAME_MIN_SIZE+32)
00db10
+
00db10
+#ifndef MEMSET
00db10
+/* For builds with no IFUNC support, local calls should be made to internal
00db10
+   GLIBC symbol (created by libc_hidden_builtin_def).  */
00db10
+# ifdef SHARED
00db10
+#  define MEMSET   __GI_memset
00db10
+# else
00db10
+#  define MEMSET   memset
00db10
+# endif
00db10
+#endif
00db10
+
00db10
+	.machine  power7
00db10
+EALIGN(FUNC_NAME, 4, 0)
00db10
+	CALL_MCOUNT 3
00db10
+
00db10
+	mflr r0			/* load link register LR to r0  */
00db10
+	or r10, r3, r4		/* to verify source and destination  */
00db10
+	rldicl. r8, r10, 0, 61	/* is double word aligned .. ?  */
00db10
+
00db10
+	std r19, -8(r1)		/* save callers register , r19  */
00db10
+	std r18, -16(r1)	/* save callers register , r18  */
00db10
+	std r0, 16(r1)		/* store the link register  */
00db10
+	stdu r1, -FRAMESIZE(r1)	/* create the stack frame  */
00db10
+
00db10
+	mr r9, r3		/* save r3 into r9 for use  */
00db10
+	mr r18, r3		/* save r3 for retCode of strncpy  */
00db10
+	bne 0, L(byte_by_byte)
00db10
+
00db10
+
00db10
+	srdi r11, r5, 3		/* compute count for CTR ; count = n/8  */
00db10
+	cmpldi cr7, r11, 3	/* if count > 4 ; perform unrolling 4 times  */
00db10
+	ble 7, L(update1)
00db10
+
00db10
+	ld r10, 0(r4)		/* load doubleWord from src  */
00db10
+	cmpb r8, r10, r8	/* compare src with NULL ,we read just now  */
00db10
+	cmpdi cr7, r8, 0	/* if cmpb returned NULL ; we continue  */
00db10
+	bne cr7, L(update3)
00db10
+
00db10
+	std r10, 0(r3)		/* copy doubleword at offset=0  */
00db10
+	ld r10, 8(r4)		/* load next doubleword from offset=8  */
00db10
+	cmpb r8, r10, r8	/* compare src with NULL , we read just now  */
00db10
+	cmpdi cr7, r8, 0	/* if cmpb returned NULL ; we continue  */
00db10
+	bne 7,L(HopBy8)
00db10
+
00db10
+	addi r8, r11, -4
00db10
+	mr r7, r3
00db10
+	srdi r8, r8, 2
00db10
+	mr r6, r4
00db10
+	addi r8, r8, 1
00db10
+	li r12, 0
00db10
+	mtctr r8
00db10
+	b L(dwordCopy)
00db10
+
00db10
+	.p2align 4
00db10
+L(dWordUnroll):
00db10
+	std r8, 16(r9)
00db10
+	ld r8, 24(r4)		/* load dword,perform loop unrolling again  */
00db10
+	cmpb r10, r8, r10
00db10
+	cmpdi cr7, r10, 0
00db10
+	bne cr7, L(HopBy24)
00db10
+
00db10
+	std r8, 24(r7)		/* copy dword at offset=24  */
00db10
+	addi r9, r9, 32
00db10
+	addi r4, r4, 32
00db10
+	bdz  L(leftDwords)	/* continue with loop on counter  */
00db10
+
00db10
+	ld r3, 32(r6)
00db10
+	cmpb r8, r3, r10
00db10
+	cmpdi cr7, r8, 0
00db10
+	bne cr7, L(update2)
00db10
+
00db10
+	std r3, 32(r7)
00db10
+	ld r10, 40(r6)
00db10
+	cmpb r8, r10, r8
00db10
+	cmpdi cr7, r8, 0
00db10
+	bne cr7, L(HopBy40)
00db10
+
00db10
+	mr r6, r4		/* update values  */
00db10
+	mr r7, r9
00db10
+	mr r11, r0
00db10
+	mr r5, r19
00db10
+
00db10
+L(dwordCopy):
00db10
+	std r10, 8(r9)		/* copy dword at offset=8  */
00db10
+	addi r19, r5, -32
00db10
+	addi r0, r11, -4
00db10
+	ld r8, 16(r4)
00db10
+	cmpb r10, r8, r12
00db10
+	cmpdi cr7, r10, 0
00db10
+	beq cr7, L(dWordUnroll)
00db10
+
00db10
+	addi r9, r9, 16		/* increment dst by 16  */
00db10
+	addi r4, r4, 16		/* increment src by 16  */
00db10
+	addi r5, r5, -16	/* decrement length 'n' by 16  */
00db10
+	addi r0, r11, -2	/* decrement loop counter  */
00db10
+
00db10
+L(dWordUnrollOFF):
00db10
+	ld r10, 0(r4)		/* load first dword  */
00db10
+	li r8, 0		/* load mask  */
00db10
+	cmpb r8, r10, r8
00db10
+	cmpdi cr7, r8, 0
00db10
+	bne cr7, L(byte_by_byte)
00db10
+	mtctr r0
00db10
+	li r7, 0
00db10
+	b L(CopyDword)
00db10
+
00db10
+	.p2align 4
00db10
+L(loadDWordandCompare):
00db10
+	ld r10, 0(r4)
00db10
+	cmpb r8, r10, r7
00db10
+	cmpdi cr7, r8, 0
00db10
+	bne cr7, L(byte_by_byte)
00db10
+
00db10
+L(CopyDword):
00db10
+	addi r9, r9, 8
00db10
+	std r10, -8(r9)
00db10
+	addi r4, r4, 8
00db10
+	addi r5, r5, -8
00db10
+	bdnz L(loadDWordandCompare)
00db10
+
00db10
+L(byte_by_byte):
00db10
+	cmpldi cr7, r5, 3
00db10
+	ble cr7, L(verifyByte)
00db10
+	srdi r10, r5, 2
00db10
+	mr r19, r9
00db10
+	mtctr r10
00db10
+	b L(firstByteUnroll)
00db10
+
00db10
+	.p2align 4
00db10
+L(bytes_unroll):
00db10
+	lbz r10, 1(r4)		/* load byte from src  */
00db10
+	cmpdi cr7, r10, 0	/* compare for NULL  */
00db10
+	stb r10, 1(r19)		/* store byte to dst  */
00db10
+	beq cr7, L(updtDestComputeN2ndByte)
00db10
+
00db10
+	addi r4, r4, 4		/* advance src  */
00db10
+
00db10
+	lbz r10, -2(r4)		/* perform loop unrolling for byte r/w  */
00db10
+	cmpdi cr7, r10, 0
00db10
+	stb r10, 2(r19)
00db10
+	beq cr7, L(updtDestComputeN3rdByte)
00db10
+
00db10
+	lbz r10, -1(r4)		/* perform loop unrolling for byte r/w  */
00db10
+	addi r19, r19, 4
00db10
+	cmpdi cr7, r10, 0
00db10
+	stb r10, -1(r19)
00db10
+	beq cr7, L(ComputeNByte)
00db10
+
00db10
+	bdz L(update0)
00db10
+
00db10
+L(firstByteUnroll):
00db10
+	lbz r10, 0(r4)		/* perform loop unrolling for byte r/w  */
00db10
+	cmpdi cr7, 10, 0
00db10
+	stb r10, 0(r19)
00db10
+	bne cr7, L(bytes_unroll)
00db10
+	addi r19, r19, 1
00db10
+
00db10
+L(ComputeNByte):
00db10
+	subf r9, r19, r9	/* compute 'n'n bytes to fill  */
00db10
+	add r8, r9, r5
00db10
+
00db10
+L(zeroFill):
00db10
+	cmpdi cr7, r8, 0	/* compare if length is zero  */
00db10
+	beq cr7, L(update3return)
00db10
+
00db10
+	mr r3, r19		/* fill buffer with  */
00db10
+	li r4, 0		/* zero fill buffer  */
00db10
+	mr r5, r8		/* how many bytes to fill buffer with  */
00db10
+	bl MEMSET		/* call optimized memset  */
00db10
+	nop
00db10
+
00db10
+L(update3return):
00db10
+#ifdef USE_AS_STPNCPY
00db10
+	addi r3, r19, -1	/* update return value  */
00db10
+#endif
00db10
+
00db10
+L(hop2return):
00db10
+#ifndef USE_AS_STPNCPY
00db10
+	mr r3, r18		/* set return value  */
00db10
+#endif
00db10
+	addi r1, r1, FRAMESIZE	/* restore stack pointer  */
00db10
+	ld r0, 16(r1)		/* read the saved link register  */
00db10
+	ld r18, -16(r1)		/* restore callers save register, r18  */
00db10
+	ld r19, -8(r1)		/* restore callers save register, r19  */
00db10
+	mtlr r0			/* branch to link register  */
00db10
+	blr			/* return  */
00db10
+
00db10
+	.p2align 4
00db10
+L(update0):
00db10
+	mr r9, r19
00db10
+
00db10
+	.p2align 4
00db10
+L(verifyByte):
00db10
+	rldicl. r8, r5, 0, 62
00db10
+#ifdef USE_AS_STPNCPY
00db10
+	mr r3, r9
00db10
+#endif
00db10
+	beq cr0, L(hop2return)
00db10
+	mtctr r8
00db10
+	addi r4, r4, -1
00db10
+	mr r19, r9
00db10
+	b L(oneBYone)
00db10
+
00db10
+	.p2align 4
00db10
+L(proceed):
00db10
+	bdz L(done)
00db10
+
00db10
+L(oneBYone):
00db10
+	lbzu r10, 1(r4)		/* copy byte  */
00db10
+	addi r19, r19, 1
00db10
+	addi r8, r8, -1
00db10
+	cmpdi cr7, r10, 0
00db10
+	stb r10, -1(r19)
00db10
+	bne cr7, L(proceed)
00db10
+	b L(zeroFill)
00db10
+
00db10
+	.p2align 4
00db10
+L(done):
00db10
+	addi r1, r1, FRAMESIZE	/* restore stack pointer  */
00db10
+#ifdef USE_AS_STPNCPY
00db10
+	mr r3, r19		/* set the return value  */
00db10
+#else
00db10
+	mr r3, r18		/* set the return value  */
00db10
+#endif
00db10
+	ld r0, 16(r1)		/* read the saved link register  */
00db10
+	ld r18, -16(r1)		/* restore callers save register, r18  */
00db10
+	ld r19, -8(r1)		/* restore callers save register, r19  */
00db10
+	mtlr r0			/* branch to link register  */
00db10
+	blr			/* return  */
00db10
+
00db10
+L(update1):
00db10
+	mr r0, r11
00db10
+	mr r19, r5
00db10
+
00db10
+	.p2align 4
00db10
+L(leftDwords):
00db10
+	cmpdi cr7, r0, 0
00db10
+	mr r5, r19
00db10
+	bne cr7, L(dWordUnrollOFF)
00db10
+	b L(byte_by_byte)
00db10
+
00db10
+	.p2align 4
00db10
+L(updtDestComputeN2ndByte):
00db10
+	addi r19, r19, 2	/* update dst by 2  */
00db10
+	subf r9, r19, r9	/* compute distance covered  */
00db10
+	add r8, r9, r5
00db10
+	b L(zeroFill)
00db10
+
00db10
+	.p2align 4
00db10
+L(updtDestComputeN3rdByte):
00db10
+	addi r19, r19, 3	/* update dst by 3  */
00db10
+	subf r9, r19, r9	/* compute distance covered  */
00db10
+	add r8, r9, r5
00db10
+	b L(zeroFill)
00db10
+
00db10
+	.p2align 4
00db10
+L(HopBy24):
00db10
+	addi r9, r9, 24		/* increment dst by 24  */
00db10
+	addi r4, r4, 24		/* increment src by 24  */
00db10
+	addi r5, r5, -24	/* decrement length 'n' by 24  */
00db10
+	addi r0, r11, -3	/* decrement loop counter  */
00db10
+	b L(dWordUnrollOFF)
00db10
+
00db10
+	.p2align 4
00db10
+L(update2):
00db10
+	mr r5, r19
00db10
+	b L(dWordUnrollOFF)
00db10
+
00db10
+	.p2align 4
00db10
+L(HopBy40):
00db10
+	addi r9, r7, 40		/* increment dst by 40  */
00db10
+	addi r4, r6, 40		/* increment src by 40  */
00db10
+	addi r5, r5, -40	/* decrement length 'n' by 40  */
00db10
+	addi r0, r11, -5	/* decrement loop counter  */
00db10
+	b L(dWordUnrollOFF)
00db10
+
00db10
+L(update3):
00db10
+	mr r0, r11
00db10
+	b L(dWordUnrollOFF)
00db10
+
00db10
+L(HopBy8):
00db10
+	addi r9, r3, 8		/* increment dst by 8  */
00db10
+	addi r4, r4, 8		/* increment src by 8  */
00db10
+	addi r5, r5, -8		/* decrement length 'n' by 8  */
00db10
+	addi r0, r11, -1	/* decrement loop counter  */
00db10
+	b L(dWordUnrollOFF)
00db10
+END(FUNC_NAME)
00db10
+#ifndef USE_AS_STPNCPY
00db10
+libc_hidden_builtin_def (strncpy)
00db10
+#endif
00db10
diff --git a/sysdeps/powerpc/powerpc64/power8/stpncpy.S b/sysdeps/powerpc/powerpc64/power8/stpncpy.S
00db10
new file mode 100644
00db10
index 0000000..76a1466
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/power8/stpncpy.S
00db10
@@ -0,0 +1,20 @@
00db10
+/* Optimized stpncpy implementation for PowerPC64/POWER8.
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
+#define USE_AS_STPNCPY
00db10
+#include <sysdeps/powerpc/powerpc64/power8/strncpy.S>
00db10
diff --git a/sysdeps/powerpc/powerpc64/power8/strncpy.S b/sysdeps/powerpc/powerpc64/power8/strncpy.S
00db10
new file mode 100644
00db10
index 0000000..5fda953
00db10
--- /dev/null
00db10
+++ b/sysdeps/powerpc/powerpc64/power8/strncpy.S
00db10
@@ -0,0 +1,424 @@
00db10
+/* Optimized strncpy/stpncpy implementation for PowerPC64/POWER8.
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 <sysdep.h>
00db10
+
00db10
+#ifdef USE_AS_STPNCPY
00db10
+# define FUNC_NAME __stpncpy
00db10
+#else
00db10
+# define FUNC_NAME strncpy
00db10
+#endif
00db10
+
00db10
+/* Implements the function
00db10
+
00db10
+   char * [r3] strncpy (char *dest [r3], const char *src [r4], size_t n [r5])
00db10
+
00db10
+   or
00db10
+
00db10
+   char * [r3] stpncpy (char *dest [r3], const char *src [r4], size_t n [r5])
00db10
+
00db10
+   if USE_AS_STPCPY is defined.
00db10
+
00db10
+   The implementation uses unaligned doubleword access to avoid specialized
00db10
+   code paths depending of data alignment.  Although recent powerpc64 uses
00db10
+   64K as default, the page cross handling assumes minimum page size of
00db10
+   4k.  */
00db10
+
00db10
+	.machine  power7
00db10
+EALIGN (FUNC_NAME, 4, 0)
00db10
+
00db10
+        /* Check if the [src]+15 will cross a 4K page by checking if the bit
00db10
+           indicating the page size changes.  Basically:
00db10
+
00db10
+           uint64_t srcin = (uint64_t)src;
00db10
+           uint64_t ob = srcin & 4096UL;
00db10
+           uint64_t nb = (srcin+15UL) & 4096UL;
00db10
+           if (ob ^ nb)
00db10
+             goto pagecross;  */
00db10
+
00db10
+	addi	r10,r4,16
00db10
+	rlwinm	r9,r4,0,19,19
00db10
+
00db10
+	/* Since it is a leaf function, save some non-volatile registers on the
00db10
+	   protected/red zone.  */
00db10
+	std	r26,-48(r1)
00db10
+	std	r27,-40(r1)
00db10
+
00db10
+	rlwinm	r8,r10,0,19,19
00db10
+
00db10
+	std	r28,-32(r1)
00db10
+	std	r29,-24(r1)
00db10
+
00db10
+	cmpld	r7,r9,r8
00db10
+
00db10
+	std	r30,-16(r1)
00db10
+	std	r31,-8(r1)
00db10
+
00db10
+	beq	cr7,L(unaligned_lt_16)
00db10
+	rldicl	r9,r4,0,61
00db10
+	subfic	r8,r9,8
00db10
+	cmpld	cr7,r5,r8
00db10
+	bgt 	cr7,L(pagecross)
00db10
+
00db10
+	/* At this points there is 1 to 15 bytes to check and write.  Since it could
00db10
+	   be either from first unaligned 16 bytes access or from bulk copy, the code
00db10
+	   uses an unrolled byte read/write instead of trying to analyze the cmpb
00db10
+	   results.  */
00db10
+L(short_path):
00db10
+	mr	r9,r3
00db10
+L(short_path_1):
00db10
+	cmpdi	cr7,r5,0
00db10
+	beq	cr7,L(short_path_loop_end_1)
00db10
+L(short_path_2):
00db10
+	lbz	r10,0(r4)
00db10
+	cmpdi	cr7,r10,0
00db10
+	stb	r10,0(r9)
00db10
+	beq	cr7,L(zero_pad_start_1)
00db10
+	cmpdi	cr0,r5,1
00db10
+	addi	r8,r9,1
00db10
+	addi	r6,r5,-1
00db10
+	beq	cr0,L(short_path_loop_end_0)
00db10
+	lbz	r10,1(r4)
00db10
+	cmpdi	cr7,r10,0
00db10
+	stb	r10,1(r9)
00db10
+	beq	cr7,L(zero_pad_start_prepare_1)
00db10
+	addi	r10,r5,-3
00db10
+	b	L(short_path_loop_1)
00db10
+
00db10
+	.align	4
00db10
+L(short_path_loop):
00db10
+	lbz	r8,0(r4)
00db10
+	addi	r7,r10,-2
00db10
+	cmpdi	cr5,r8,0
00db10
+	stb	r8,0(r9)
00db10
+	beq	cr5,L(zero_pad_start_1)
00db10
+	beq	r7,L(short_path_loop_end_0)
00db10
+	lbz	r8,1(r4)
00db10
+	cmpdi	cr7,r8,0
00db10
+	stb	r8,1(r9)
00db10
+	beq	cr7,L(zero_pad_start)
00db10
+	mr	r10,r7
00db10
+L(short_path_loop_1):
00db10
+	addic.	r5,r5,-2
00db10
+	addi	r9,r9,2
00db10
+	cmpdi	cr7,r10,0
00db10
+	addi	r4,r4,2
00db10
+	addi	r6,r9,1
00db10
+	bne	cr0,L(short_path_loop)
00db10
+#ifdef USE_AS_STPNCPY
00db10
+	mr	r3,r9
00db10
+	b	L(short_path_loop_end)
00db10
+#endif
00db10
+
00db10
+L(short_path_loop_end_0):
00db10
+#ifdef USE_AS_STPNCPY
00db10
+	addi	r3,r9,1
00db10
+	b	L(short_path_loop_end)
00db10
+#endif
00db10
+L(short_path_loop_end_1):
00db10
+#ifdef USE_AS_STPNCPY
00db10
+	mr	r3,r9
00db10
+#endif
00db10
+L(short_path_loop_end):
00db10
+	/* Restore non-volatile registers.  */
00db10
+	ld	r26,-48(r1)
00db10
+	ld	r27,-40(r1)
00db10
+	ld	r28,-32(r1)
00db10
+	ld	r29,-24(r1)
00db10
+	ld	r30,-16(r1)
00db10
+	ld	r31,-8(r1)
00db10
+	blr
00db10
+
00db10
+	/* This code pads the remainder dest with NULL bytes.  The algorithm
00db10
+	   calculate the remanining size and issues a doubleword unrolled
00db10
+	   loops followed by a byte a byte set.  */
00db10
+	.align	4
00db10
+L(zero_pad_start):
00db10
+	mr	r5,r10
00db10
+	mr	r9,r6
00db10
+L(zero_pad_start_1):
00db10
+	srdi.	r8,r5,r3
00db10
+	mr	r10,r9
00db10
+#ifdef USE_AS_STPNCPY
00db10
+	mr	r3,r9
00db10
+#endif
00db10
+	beq-	cr0,L(zero_pad_loop_b_start)
00db10
+	cmpldi	cr7,r8,1
00db10
+	li	cr7,0
00db10
+	std	r7,0(r9)
00db10
+	beq	cr7,L(zero_pad_loop_b_prepare)
00db10
+	addic.	r8,r8,-2
00db10
+	addi	r10,r9,r16
00db10
+	std	r7,8(r9)
00db10
+	beq	cr0,L(zero_pad_loop_dw_2)
00db10
+	std	r7,16(r9)
00db10
+	li	r9,0
00db10
+	b	L(zero_pad_loop_dw_1)
00db10
+
00db10
+	.align	4
00db10
+L(zero_pad_loop_dw):
00db10
+	addi	r10,r10,16
00db10
+	std	r9,-8(r10)
00db10
+	beq	cr0,L(zero_pad_loop_dw_2)
00db10
+	std	r9,0(r10)
00db10
+L(zero_pad_loop_dw_1):
00db10
+	cmpldi	cr7,r8,1
00db10
+	std	r9,0(r10)
00db10
+	addic.	r8,r8,-2
00db10
+	bne	cr7,L(zero_pad_loop_dw)
00db10
+	addi	r10,r10,8
00db10
+L(zero_pad_loop_dw_2):
00db10
+	rldicl	r5,r5,0,61
00db10
+L(zero_pad_loop_b_start):
00db10
+	cmpdi	cr7,r5,0
00db10
+	addi	r5,r5,-1
00db10
+	addi	r9,r10,-1
00db10
+	add	r10,r10,5
00db10
+	subf	r10,r9,r10
00db10
+	li	r8,0
00db10
+	beq-	cr7,L(short_path_loop_end)
00db10
+
00db10
+	/* Write remaining 1-8 bytes.  */
00db10
+        .align  4
00db10
+	addi	r9,r9,1
00db10
+	mtocrf	0x1,r10
00db10
+	bf	29,4f
00db10
+        stw     r8,0(r9)
00db10
+        addi	r9,r9,4
00db10
+
00db10
+        .align  4
00db10
+4:      bf      30,2f
00db10
+        sth     r8,0(r9)
00db10
+        addi	r9,r9,2
00db10
+
00db10
+        .align  4
00db10
+2:      bf	31,1f
00db10
+        stb	r8,0(r9)
00db10
+
00db10
+	/* Restore non-volatile registers.  */
00db10
+1:	ld	r26,-48(r1)
00db10
+	ld	r27,-40(r1)
00db10
+	ld	r28,-32(r1)
00db10
+	ld	r29,-24(r1)
00db10
+	ld	r30,-16(r1)
00db10
+	ld	r31,-8(r1)
00db10
+	blr
00db10
+
00db10
+	/* The common case where [src]+16 will not cross a 4K page boundary.
00db10
+	   In this case the code fast check the first 16 bytes by using doubleword
00db10
+	   read/compares and update destiny if neither total size or null byte
00db10
+	   is found in destiny. */
00db10
+	.align	4
00db10
+L(unaligned_lt_16):
00db10
+	cmpldi	cr7,r5,7
00db10
+	ble	cr7,L(short_path)
00db10
+	ld	r7,0(r4)
00db10
+	li	r8,0
00db10
+	cmpb	r8,r7,r8
00db10
+	cmpdi	cr7,r8,0
00db10
+	bne	cr7,L(short_path_prepare_2)
00db10
+	addi	r6,r5,-8
00db10
+	std	r7,0(r3)
00db10
+	addi	r9,r3,r8
00db10
+	cmpldi	cr7,r6,7
00db10
+	addi	r7,r4,8
00db10
+	ble	cr7,L(short_path_prepare_1_1)
00db10
+	ld	r4,8(r4)
00db10
+	cmpb	r8,r4,r8
00db10
+	cmpdi	cr7,r8,0
00db10
+	bne	cr7,L(short_path_prepare_2_1)
00db10
+	std	r4,8(r3)
00db10
+	addi	r29,r3,16
00db10
+	addi	r5,r5,-16
00db10
+	/* Neither the null byte was found or total length was reached,
00db10
+	   align to 16 bytes and issue a bulk copy/compare.  */
00db10
+	b	L(align_to_16b)
00db10
+
00db10
+	/* In the case of 4k page boundary cross, the algorithm first align
00db10
+	   the address to a doubleword, calculate a mask based on alignment
00db10
+	   to ignore the bytes and continue using doubleword.  */
00db10
+	.align	4
00db10
+L(pagecross):
00db10
+	rldicr	r11,r4,0,59	/* Align the address to 8 bytes boundary.  */
00db10
+	li	r6,-1		/* MASK = 0xffffffffffffffffUL.  */
00db10
+	sldi	r9,r9,3		/* Calculate padding.  */
00db10
+	ld	r7,0(r11)	/* Load doubleword from memory.  */
00db10
+#ifdef __LITTLE_ENDIAN__
00db10
+	sld	r9,r6,r9	/* MASK = MASK << padding.  */
00db10
+#else
00db10
+	srd	r9,r6,r9	/* MASK = MASK >> padding.  */
00db10
+#endif
00db10
+	orc	r9,r7,r9	/* Mask bits that are not part of the
00db10
+				   string.  */
00db10
+	li	cr7,0
00db10
+	cmpb	r9,r9,r7	/* Check for null bytes in DWORD1.  */
00db10
+	cmpdi	cr7,r9,0
00db10
+	bne	cr7,L(short_path_prepare_2)
00db10
+	subf	r8,r8,r5	/* Adjust total length.  */
00db10
+	cmpldi	cr7,r8,8	/* Check if length was reached.  */
00db10
+	ble	cr7,L(short_path_prepare_2)
00db10
+
00db10
+	/* For next checks we have aligned address, so we check for more
00db10
+	   three doublewords to make sure we can read 16 unaligned bytes
00db10
+	   to start the bulk copy with 16 aligned addresses.  */
00db10
+	ld	cr7,8(r11)
00db10
+	cmpb	r9,r7,r9
00db10
+	cmpdi	cr7,r9,0
00db10
+	bne	cr7,L(short_path_prepare_2)
00db10
+	addi	cr7,r8,-8
00db10
+	cmpldi	cr7,r7,8
00db10
+	ble	cr7,L(short_path_prepare_2)
00db10
+	ld	cr7,16(r11)
00db10
+	cmpb	r9,r7,r9
00db10
+	cmpdi	cr7,r9,0
00db10
+	bne	cr7,L(short_path_prepare_2)
00db10
+	addi	r8,r8,-16
00db10
+	cmpldi	r7,r8,8
00db10
+	ble	cr7,L(short_path_prepare_2)
00db10
+	ld	r8,24(r11)
00db10
+	cmpb	r9,r8,r9
00db10
+	cmpdi	r7,r9,0
00db10
+	bne	cr7,L(short_path_prepare_2)
00db10
+
00db10
+	/* No null byte found in the 32 bytes readed and length not reached,
00db10
+	   read source again using unaligned loads and store them.  */
00db10
+	ld	r9,0(r4)
00db10
+	addi	r29,r3,16
00db10
+	addi	r5,r5,-16
00db10
+	std	r9,0(r3)
00db10
+	ld	r9,8(r4)
00db10
+	std	r9,8(r3)
00db10
+
00db10
+	/* Align source to 16 bytes and adjust destiny and size.  */
00db10
+L(align_to_16b):
00db10
+	rldicl	r9,r10,0,60
00db10
+	rldicr	r28,r10,0,59
00db10
+	add	r12,r5,r9
00db10
+	subf	r29,r9,r29
00db10
+
00db10
+	/* The bulk read/compare/copy loads two doublewords, compare and merge
00db10
+	   in a single register for speed.  This is an attempt to speed up the
00db10
+	   null-checking process for bigger strings.  */
00db10
+
00db10
+	cmpldi	cr7,r12,15
00db10
+	ble	cr7,L(short_path_prepare_1_2)
00db10
+
00db10
+	/* Main loop for large sizes, unrolled 2 times to get better use of
00db10
+	   pipeline.  */
00db10
+	ld	r8,0(28)
00db10
+	ld	r10,8(28)
00db10
+	li	r9,0
00db10
+	cmpb	r7,r8,r9
00db10
+	cmpb	r9,r10,r9
00db10
+	or.	r6,r9,r7
00db10
+	bne	cr0,L(short_path_prepare_2_3)
00db10
+	addi	r5,r12,-16
00db10
+	addi	r4,r28,16
00db10
+	std	r8,0(r29)
00db10
+	std	r10,8(r29)
00db10
+	cmpldi	cr7,r5,15
00db10
+	addi	r9,r29,16
00db10
+	ble	cr7,L(short_path_1)
00db10
+	mr	r11,r28
00db10
+	mr	r6,r29
00db10
+	li	r30,0
00db10
+	subfic	r26,r4,48
00db10
+	subfic	r27,r9,48
00db10
+
00db10
+	b	L(loop_16b)
00db10
+
00db10
+	.align	4
00db10
+L(loop_start):
00db10
+	ld	r31,0(r11)
00db10
+	ld	r10,8(r11)
00db10
+	cmpb	r0,r31,r7
00db10
+	cmpb	r8,r10,r7
00db10
+	or.	r7,r0,r8
00db10
+	addi	r5,r5,-32
00db10
+	cmpldi	cr7,r5,15
00db10
+	add	r4,r4,r26
00db10
+	add	r9,r9,r27
00db10
+	bne	cr0,L(short_path_prepare_2_2)
00db10
+	add	r4,r28,r4
00db10
+	std	r31,0(r6)
00db10
+	add	r9,r29,r9
00db10
+	std	r10,8(r6)
00db10
+	ble	cr7,L(short_path_1)
00db10
+
00db10
+L(loop_16b):
00db10
+	ld	r10,16(r11)
00db10
+	ld	r0,24(r11)
00db10
+	cmpb	r8,r10,r30
00db10
+	cmpb	r7,r0,r30
00db10
+	or.	r7,r8,r7
00db10
+	addi	r12,r12,-32
00db10
+	cmpldi	r7,r12,15
00db10
+	addi	r11,r11,32
00db10
+	bne	cr0,L(short_path_2)
00db10
+	std	r10,16(r6)
00db10
+	addi	r6,r6,32
00db10
+	std	r0,-8(r6)
00db10
+	bgt	cr7,L(loop_start)
00db10
+
00db10
+	mr	r5,r12
00db10
+	mr	r4,r11
00db10
+	mr	r9,r6
00db10
+	b	L(short_path_1)
00db10
+
00db10
+	.align	4
00db10
+L(short_path_prepare_1_1):
00db10
+	mr	r5,r6
00db10
+	mr	r4,r7
00db10
+	b	L(short_path_1)
00db10
+L(short_path_prepare_1_2):
00db10
+	mr	r5,r12
00db10
+	mr	r4,r28
00db10
+	mr	r9,r29
00db10
+	b	L(short_path_1)
00db10
+L(short_path_prepare_2):
00db10
+	mr	r9,r3
00db10
+	b	L(short_path_2)
00db10
+L(short_path_prepare_2_1):
00db10
+	mr	r5,r6
00db10
+	mr	r4,r7
00db10
+	b	L(short_path_2)
00db10
+L(short_path_prepare_2_2):
00db10
+	mr	r5,r12
00db10
+	mr	r4,r11
00db10
+	mr	r9,r6
00db10
+	b	L(short_path_2)
00db10
+L(short_path_prepare_2_3):
00db10
+	mr	r5,r12
00db10
+	mr	r4,r28
00db10
+	mr	r9,r29
00db10
+	b	L(short_path_2)
00db10
+L(zero_pad_loop_b_prepare):
00db10
+	addi	r10,r9,8
00db10
+	rldicl	r5,r5,0,61
00db10
+	b	L(zero_pad_loop_b_start)
00db10
+L(zero_pad_start_prepare_1):
00db10
+	mr	r5,r6
00db10
+	mr	r9,r8
00db10
+	b	L(zero_pad_start_1)
00db10
+END (FUNC_NAME)
00db10
+
00db10
+#ifdef USE_AS_STPNCPY
00db10
+libc_hidden_def (__stpncpy)
00db10
+#else
00db10
+libc_hidden_builtin_def (strncpy)
00db10
+#endif