ce426f
From 9c2d0f05544d22786bff9324fbd24e6bed8839c4 Mon Sep 17 00:00:00 2001
ce426f
From: Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
ce426f
Date: Wed, 30 Jul 2014 11:36:27 -0500
ce426f
Subject: [PATCH] PowerPC: multiarch isinf/isinff for PowerPC64
ce426f
ce426f
commit 8fdad1237900e10b3b263b18bf6ca4c092e2c609
ce426f
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
ce426f
Date:   Fri Dec 13 15:35:44 2013 -0500
ce426f
---
ce426f
 sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile   |  6 ++-
ce426f
 .../powerpc64/fpu/multiarch/s_isinf-power7.S       | 33 ++++++++++++++++
ce426f
 .../powerpc64/fpu/multiarch/s_isinf-ppc64.c        | 33 ++++++++++++++++
ce426f
 sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c  | 44 ++++++++++++++++++++++
ce426f
 .../powerpc64/fpu/multiarch/s_isinff-ppc64.c       | 31 +++++++++++++++
ce426f
 sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c | 33 ++++++++++++++++
ce426f
 6 files changed, 178 insertions(+), 2 deletions(-)
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c
ce426f
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
ce426f
index 1c23ddc..64dd85f 100644
ce426f
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
ce426f
@@ -2,7 +2,8 @@ ifeq ($(subdir),math)
ce426f
 sysdep_routines += s_isnan-power7 s_isnan-power6x s_isnan-power6 \
ce426f
                   s_isnan-power5 s_isnan-ppc64 s_copysign-power6 \
ce426f
                   s_copysign-ppc64 s_finite-power7 s_finite-ppc64 \
ce426f
-                  s_finitef-ppc64
ce426f
+                  s_finitef-ppc64 s_isinff-ppc64 s_isinf-power7 \
ce426f
+                  s_isinf-ppc64
ce426f
 
ce426f
 libm-sysdep_routines += s_isnan-power7 s_isnan-power6x s_isnan-power6 \
ce426f
                        s_isnan-power5 s_isnan-ppc64 s_llround-power6x \
ce426f
@@ -14,5 +15,6 @@ libm-sysdep_routines += s_isnan-power7 s_isnan-power6x s_isnan-power6 \
ce426f
                        s_trunc-ppc64 s_truncf-power5+ s_truncf-ppc64 \
ce426f
                        s_copysign-power6 s_copysign-ppc64 s_llrint-power6x \
ce426f
                        s_llrint-ppc64 s_finite-power7 s_finite-ppc64 \
ce426f
-                       s_finitef-ppc64
ce426f
+                       s_finitef-ppc64 s_isinff-ppc64 s_isinf-power7 \
ce426f
+                       s_isinf-ppc64
ce426f
 endif
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S
ce426f
new file mode 100644
ce426f
index 0000000..80a682a
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S
ce426f
@@ -0,0 +1,33 @@
ce426f
+/* isinf().  PowerPC64/POWER7 version.
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
+#include <math_ldbl_opt.h>
ce426f
+
ce426f
+#undef hidden_def
ce426f
+#define hidden_def(name)
ce426f
+#undef weak_alias
ce426f
+#define weak_alias(name, alias)
ce426f
+#undef strong_alias
ce426f
+#define strong_alias(name, alias)
ce426f
+#undef compat_symbol
ce426f
+#define compat_symbol(lib, name, alias, ver)
ce426f
+
ce426f
+#define __isinf __isinf_power7
ce426f
+
ce426f
+#include <sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.c
ce426f
new file mode 100644
ce426f
index 0000000..28c5602
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.c
ce426f
@@ -0,0 +1,33 @@
ce426f
+/* isinf().  PowerPC64 default version.
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 <math.h>
ce426f
+
ce426f
+#undef weak_alias
ce426f
+#define weak_alias(a, b)
ce426f
+#undef strong_alias
ce426f
+#define strong_alias(a, b)
ce426f
+
ce426f
+#define __isinf __isinf_ppc64
ce426f
+#ifdef SHARED
ce426f
+# undef hidden_def
ce426f
+# define hidden_def(a) \
ce426f
+   __hidden_ver1 (__isinf_ppc64, __GI___isinf, __isinf_ppc64);
ce426f
+#endif
ce426f
+
ce426f
+#include <sysdeps/ieee754/dbl-64/s_isinf.c>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c
ce426f
new file mode 100644
ce426f
index 0000000..1ee230b
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c
ce426f
@@ -0,0 +1,44 @@
ce426f
+/* Multiple versions of isinf.
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 <math.h>
ce426f
+#include <math_ldbl_opt.h>
ce426f
+#include <shlib-compat.h>
ce426f
+#include "init-arch.h"
ce426f
+
ce426f
+extern __typeof (__isinf) __isinf_ppc64 attribute_hidden;
ce426f
+extern __typeof (__isinf) __isinf_power7 attribute_hidden;
ce426f
+
ce426f
+libc_ifunc (__isinf,
ce426f
+	    (hwcap & PPC_FEATURE_ARCH_2_06)
ce426f
+	    ? __isinf_power7
ce426f
+            : __isinf_ppc64);
ce426f
+
ce426f
+weak_alias (__isinf, isinf)
ce426f
+
ce426f
+#ifdef NO_LONG_DOUBLE
ce426f
+strong_alias (__isinf, __isinfl)
ce426f
+weak_alias (__isinf, isinfl)
ce426f
+#endif
ce426f
+
ce426f
+#ifndef IS_IN_libm
ce426f
+# if LONG_DOUBLE_COMPAT (libc, GLIBC_2_0)
ce426f
+compat_symbol (libc, __isinf, __isinfl, GLIBC_2_0);
ce426f
+compat_symbol (libc, isinf, isinfl, GLIBC_2_0);
ce426f
+# endif
ce426f
+#endif
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c
ce426f
new file mode 100644
ce426f
index 0000000..c2559d7
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c
ce426f
@@ -0,0 +1,31 @@
ce426f
+/* isinff().  PowerPC64 default version.
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 <math.h>
ce426f
+
ce426f
+#undef weak_alias
ce426f
+#define weak_alias(a, b)
ce426f
+
ce426f
+#define __isinff __isinff_ppc64
ce426f
+#ifdef SHARED
ce426f
+# undef hidden_def
ce426f
+# define hidden_def(a) \
ce426f
+   __hidden_ver1 (__isinff_ppc64, __GI___isinff, __isinff_ppc64);
ce426f
+#endif
ce426f
+
ce426f
+#include <sysdeps/ieee754/flt-32/s_isinff.c>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c
ce426f
new file mode 100644
ce426f
index 0000000..1336feb
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c
ce426f
@@ -0,0 +1,33 @@
ce426f
+/* Multiple versions of isinf.
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 <math.h>
ce426f
+#include <math_ldbl_opt.h>
ce426f
+#include <shlib-compat.h>
ce426f
+#include "init-arch.h"
ce426f
+
ce426f
+extern __typeof (__isinff) __isinff_ppc64 attribute_hidden;
ce426f
+/* The double-precision version also works for single-precision.  */
ce426f
+extern __typeof (__isinff) __isinf_power7 attribute_hidden;
ce426f
+
ce426f
+libc_ifunc (__isinff,
ce426f
+	    (hwcap & PPC_FEATURE_ARCH_2_06)
ce426f
+	    ? __isinf_power7
ce426f
+            : __isinff_ppc64);
ce426f
+
ce426f
+weak_alias (__isinff, isinff)
ce426f
-- 
ce426f
1.8.3.1
ce426f