ce426f
From c59b219a7fb36564572a864bd61a5cdc7e37f25b Mon Sep 17 00:00:00 2001
ce426f
From: Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
ce426f
Date: Wed, 30 Jul 2014 05:35:32 -0500
ce426f
Subject: [PATCH] PowerPC: multiarch rawmemchr for PowerPC64
ce426f
ce426f
commit 1fd005ad2f8ca30d44d5bfa036422b4ec281ea4a
ce426f
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
ce426f
Date:   Fri Dec 13 14:37:26 2013 -0500
ce426f
ce426f
Added sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c and
ce426f
string/rawmemchr.c apart from original commit.
ce426f
---
ce426f
 string/rawmemchr.c                                 |  5 ++-
ce426f
 .../powerpc32/power4/multiarch/rawmemchr-ppc32.c   | 32 +++++++++++++++++++
ce426f
 sysdeps/powerpc/powerpc64/multiarch/Makefile       |  3 +-
ce426f
 .../powerpc/powerpc64/multiarch/ifunc-impl-list.c  |  8 +++++
ce426f
 .../powerpc/powerpc64/multiarch/rawmemchr-power7.S | 35 ++++++++++++++++++++
ce426f
 .../powerpc/powerpc64/multiarch/rawmemchr-ppc64.c  | 19 +++++++++++
ce426f
 sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c    | 37 ++++++++++++++++++++++
ce426f
 7 files changed, 137 insertions(+), 2 deletions(-)
ce426f
 create mode 100644 sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c
ce426f
ce426f
diff --git glibc-2.17-c758a686/string/rawmemchr.c glibc-2.17-c758a686/string/rawmemchr.c
ce426f
index 90e8c7c..0e4f192 100644
ce426f
--- glibc-2.17-c758a686/string/rawmemchr.c
ce426f
+++ glibc-2.17-c758a686/string/rawmemchr.c
ce426f
@@ -47,10 +47,13 @@
ce426f
 
ce426f
 #undef memchr
ce426f
 
ce426f
+#ifndef RAWMEMCHR
ce426f
+# define RAWMEMCHR __rawmemchr
ce426f
+#endif
ce426f
 
ce426f
 /* Find the first occurrence of C in S.  */
ce426f
 __ptr_t
ce426f
-__rawmemchr (s, c_in)
ce426f
+RAWMEMCHR (s, c_in)
ce426f
      const __ptr_t s;
ce426f
      int c_in;
ce426f
 {
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c
ce426f
new file mode 100644
ce426f
index 0000000..2e8abaa
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c
ce426f
@@ -0,0 +1,32 @@
ce426f
+/* PowerPC32 default implementation of rawmemchr.
ce426f
+   Copyright (C) 2013-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 RAWMEMCHR  __rawmemchr_ppc
ce426f
+#undef weak_alias
ce426f
+#define weak_alias(a, b)
ce426f
+#ifdef SHARED
ce426f
+# undef libc_hidden_def
ce426f
+# define libc_hidden_def(name)  \
ce426f
+  __hidden_ver1 (__rawmemchr_ppc, __GI___rawmemchr, __rawmemchr_ppc);
ce426f
+#endif
ce426f
+
ce426f
+extern __typeof (rawmemchr) __rawmemchr_ppc attribute_hidden;
ce426f
+
ce426f
+#include <string/rawmemchr.c>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/Makefile glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/Makefile
ce426f
index db765f2..695112c 100644
ce426f
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/Makefile
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/Makefile
ce426f
@@ -4,5 +4,6 @@ sysdep_routines += memcpy-power7 memcpy-a2 memcpy-power6 memcpy-cell \
ce426f
                   memcmp-ppc64 memset-power7 memset-power6 memset-power4 \
ce426f
                   memset-ppc64 bzero-power4 bzero-power6 bzero-power7 \
ce426f
                   mempcpy-power7 mempcpy-ppc64 memchr-power7 memchr-ppc64 \
ce426f
-                  memrchr-power7 memrchr-ppc64
ce426f
+                  memrchr-power7 memrchr-ppc64 rawmemchr-power7 \
ce426f
+                  rawmemchr-ppc64
ce426f
 endif
ce426f
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
ce426f
index a0700dc..5b15c3f 100644
ce426f
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
ce426f
@@ -114,5 +114,13 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
ce426f
              IFUNC_IMPL_ADD (array, i, memrchr, 1,
ce426f
                              __memrchr_ppc))
ce426f
 
ce426f
+  /* Support sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c.  */
ce426f
+  IFUNC_IMPL (i, name, rawmemchr,
ce426f
+             IFUNC_IMPL_ADD (array, i, rawmemchr,
ce426f
+                             hwcap & PPC_FEATURE_HAS_VSX,
ce426f
+                             __rawmemchr_power7)
ce426f
+             IFUNC_IMPL_ADD (array, i, rawmemchr, 1,
ce426f
+                             __rawmemchr_ppc))
ce426f
+
ce426f
   return i;
ce426f
 }
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S
ce426f
new file mode 100644
ce426f
index 0000000..24ae3bf
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S
ce426f
@@ -0,0 +1,35 @@
ce426f
+/* Optimized rawmemchr implementation for PowerPC64/POWER7.
ce426f
+   Copyright (C) 2013-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 <sysdep.h>
ce426f
+
ce426f
+#undef ENTRY
ce426f
+#define ENTRY(name)						\
ce426f
+  .section ".text";						\
ce426f
+  ENTRY_2(__rawmemchr_power7)					\
ce426f
+  .align ALIGNARG(2);						\
ce426f
+  BODY_LABEL(__rawmemchr_power7):				\
ce426f
+  cfi_startproc;
ce426f
+
ce426f
+#undef END
ce426f
+#define END(name)						\
ce426f
+  cfi_endproc;							\
ce426f
+  TRACEBACK(__rawmemchr_power7)					\
ce426f
+  END_2(__rawmemchr_power7)
ce426f
+
ce426f
+#include <sysdeps/powerpc/powerpc64/power7/rawmemchr.S>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c
ce426f
new file mode 100644
ce426f
index 0000000..0f2f202
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c
ce426f
@@ -0,0 +1,19 @@
ce426f
+/* PowerPC64 default implementation of rawmemchr.
ce426f
+   Copyright (C) 2013-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 <sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c
ce426f
new file mode 100644
ce426f
index 0000000..3f53cd5
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c
ce426f
@@ -0,0 +1,37 @@
ce426f
+/* Multiple versions of rawmemchr.
ce426f
+   Copyright (C) 2013-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 (__rawmemchr) __rawmemchr_ppc attribute_hidden;
ce426f
+extern __typeof (__rawmemchr) __rawmemchr_power7 attribute_hidden;
ce426f
+
ce426f
+/* Avoid DWARF definition DIE on ifunc symbol so that GDB can handle
ce426f
+   ifunc symbol properly.  */
ce426f
+libc_ifunc (__rawmemchr,
ce426f
+	    (hwcap & PPC_FEATURE_HAS_VSX)
ce426f
+            ? __rawmemchr_power7
ce426f
+            : __rawmemchr_ppc);
ce426f
+
ce426f
+weak_alias (__rawmemchr, rawmemchr)
ce426f
+#else
ce426f
+#include <string/rawmemchr.c>
ce426f
+#endif
ce426f
-- 
ce426f
1.8.3.1
ce426f