00db10
From a8d62012e2b47e8f62fafe17ab1042b0415a06ea Mon Sep 17 00:00:00 2001
00db10
From: Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
00db10
Date: Wed, 30 Jul 2014 05:20:37 -0500
00db10
Subject: [PATCH] PowerPC: multiarch memchr for PowerPC64
00db10
00db10
commit 870f867648fc62e230dad80cd34bd599f08e2193
00db10
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
00db10
Date:   Fri Dec 13 14:35:28 2013 -0500
00db10
00db10
Added string/memchr.c and
00db10
sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c aart from
00db10
original commit
00db10
---
00db10
 string/memchr.c                                    |  6 +++-
00db10
 .../powerpc32/power4/multiarch/memchr-ppc32.c      | 34 ++++++++++++++++++
00db10
 sysdeps/powerpc/powerpc64/multiarch/Makefile       |  2 +-
00db10
 .../powerpc/powerpc64/multiarch/ifunc-impl-list.c  |  8 +++++
00db10
 .../powerpc/powerpc64/multiarch/memchr-power7.S    | 40 ++++++++++++++++++++++
00db10
 sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c | 19 ++++++++++
00db10
 sysdeps/powerpc/powerpc64/multiarch/memchr.c       | 38 ++++++++++++++++++++
00db10
 7 files changed, 145 insertions(+), 2 deletions(-)
00db10
 create mode 100644 sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
00db10
 create mode 100644 sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S
00db10
 create mode 100644 sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c
00db10
 create mode 100644 sysdeps/powerpc/powerpc64/multiarch/memchr.c
00db10
00db10
diff --git glibc-2.17-c758a686/string/memchr.c glibc-2.17-c758a686/string/memchr.c
00db10
index 22637cf..822c0a4 100644
00db10
--- glibc-2.17-c758a686/string/memchr.c
00db10
+++ glibc-2.17-c758a686/string/memchr.c
00db10
@@ -56,9 +56,13 @@
00db10
 #undef memchr
00db10
 #undef __memchr
00db10
 
00db10
+#ifndef MEMCHR
00db10
+# define MEMCHR __memchr
00db10
+#endif
00db10
+
00db10
 /* Search no more than N bytes of S for C.  */
00db10
 __ptr_t
00db10
-__memchr (s, c_in, n)
00db10
+MEMCHR (s, c_in, n)
00db10
      const __ptr_t s;
00db10
      int c_in;
00db10
      size_t n;
00db10
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
00db10
new file mode 100644
00db10
index 0000000..43c5652
00db10
--- /dev/null
00db10
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
00db10
@@ -0,0 +1,34 @@
00db10
+/* PowerPC32 default implementation of memchr.
00db10
+   Copyright (C) 2013-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 MEMCHR  __memchr_ppc
00db10
+
00db10
+#undef weak_alias
00db10
+#define weak_alias(a, b)
00db10
+
00db10
+#ifdef SHARED
00db10
+# undef libc_hidden_builtin_def
00db10
+# define libc_hidden_builtin_def(name)  \
00db10
+  __hidden_ver1 (__memchr_ppc, __GI_memchr, __memchr_ppc);
00db10
+#endif
00db10
+
00db10
+extern __typeof (memchr) __memchr_ppc attribute_hidden;
00db10
+
00db10
+#include <string/memchr.c>
00db10
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/Makefile glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/Makefile
00db10
index 22560e8..b2815e7 100644
00db10
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/Makefile
00db10
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/Makefile
00db10
@@ -3,5 +3,5 @@ sysdep_routines += memcpy-power7 memcpy-a2 memcpy-power6 memcpy-cell \
00db10
                   memcpy-power4 memcpy-ppc64 memcmp-power7 memcmp-power4 \
00db10
                   memcmp-ppc64 memset-power7 memset-power6 memset-power4 \
00db10
                   memset-ppc64 bzero-power4 bzero-power6 bzero-power7 \
00db10
-                  mempcpy-power7 mempcpy-ppc64
00db10
+                  mempcpy-power7 mempcpy-ppc64 memchr-power7 memchr-ppc64
00db10
 endif
00db10
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
00db10
index c72c229..663e294 100644
00db10
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
00db10
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
00db10
@@ -98,5 +98,13 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
00db10
              IFUNC_IMPL_ADD (array, i, mempcpy, 1,
00db10
                              __mempcpy_ppc))
00db10
 
00db10
+  /* Support sysdeps/powerpc/powerpc64/multiarch/memchr.c.  */
00db10
+  IFUNC_IMPL (i, name, memchr,
00db10
+             IFUNC_IMPL_ADD (array, i, memchr,
00db10
+                             hwcap & PPC_FEATURE_HAS_VSX,
00db10
+                             __memchr_power7)
00db10
+             IFUNC_IMPL_ADD (array, i, memchr, 1,
00db10
+                             __memchr_ppc))
00db10
+
00db10
   return i;
00db10
 }
00db10
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S
00db10
new file mode 100644
00db10
index 0000000..b1b4ec7
00db10
--- /dev/null
00db10
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S
00db10
@@ -0,0 +1,40 @@
00db10
+/* Optimized memchr implementation for PowerPC64/POWER7.
00db10
+   Copyright (C) 2013-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 ENTRY
00db10
+#define ENTRY(name)						\
00db10
+  .section ".text";						\
00db10
+  ENTRY_2(__memchr_power7)					\
00db10
+  .align ALIGNARG(2);						\
00db10
+  BODY_LABEL(__memchr_power7):					\
00db10
+  cfi_startproc;
00db10
+
00db10
+#undef END
00db10
+#define END(name)						\
00db10
+  cfi_endproc;							\
00db10
+  TRACEBACK(__memchr_power7)					\
00db10
+  END_2(__memchr_power7)
00db10
+
00db10
+#undef libc_hidden_builtin_def
00db10
+#define libc_hidden_builtin_def(name)
00db10
+#undef weak_alias
00db10
+#define weak_alias(name,alias)
00db10
+
00db10
+#include <sysdeps/powerpc/powerpc64/power7/memchr.S>
00db10
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c
00db10
new file mode 100644
00db10
index 0000000..9e2a711
00db10
--- /dev/null
00db10
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c
00db10
@@ -0,0 +1,19 @@
00db10
+/* PowerPC64 default implementation of memchr.
00db10
+   Copyright (C) 2013-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 <sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c>
00db10
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/memchr.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/memchr.c
00db10
new file mode 100644
00db10
index 0000000..ca0f714
00db10
--- /dev/null
00db10
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/memchr.c
00db10
@@ -0,0 +1,38 @@
00db10
+/* Multiple versions of memchr.
00db10
+   Copyright (C) 2013-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 (__memchr) __memchr_ppc attribute_hidden;
00db10
+extern __typeof (__memchr) __memchr_power7 attribute_hidden;
00db10
+
00db10
+/* Avoid DWARF definition DIE on ifunc symbol so that GDB can handle
00db10
+   ifunc symbol properly.  */
00db10
+libc_ifunc (__memchr,
00db10
+	    (hwcap & PPC_FEATURE_HAS_VSX)
00db10
+            ? __memchr_power7
00db10
+            : __memchr_ppc);
00db10
+
00db10
+weak_alias (__memchr, memchr)
00db10
+libc_hidden_builtin_def (memchr)
00db10
+#else
00db10
+#include <string/memchr.c>
00db10
+#endif
00db10
-- 
00db10
1.8.3.1
00db10