ce426f
From 9b608ba89342c722baadb89d221894ca270d4a02 Mon Sep 17 00:00:00 2001
ce426f
From: Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
ce426f
Date: Wed, 30 Jul 2014 12:09:18 -0500
ce426f
Subject: [PATCH] PowerPC: multiarch modf/modff for PowerPC64
ce426f
ce426f
commit 83efded42445e9684173b09a6244109d058ed2bd
ce426f
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
ce426f
Date:   Fri Dec 13 15:37:23 2013 -0500
ce426f
ce426f
Added the following files apart from the original commit.
ce426f
sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c
ce426f
sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c
ce426f
---
ce426f
 .../power4/fpu/multiarch/s_modf-power5+.c          | 31 +++++++++++++++
ce426f
 .../power4/fpu/multiarch/s_modff-power5+.c         | 27 +++++++++++++
ce426f
 sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile   |  8 +++-
ce426f
 .../powerpc64/fpu/multiarch/s_modf-power5+.c       | 19 ++++++++++
ce426f
 .../powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c | 29 ++++++++++++++
ce426f
 sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c   | 44 ++++++++++++++++++++++
ce426f
 .../powerpc64/fpu/multiarch/s_modff-power5+.c      | 19 ++++++++++
ce426f
 .../powerpc64/fpu/multiarch/s_modff-ppc64.c        | 26 +++++++++++++
ce426f
 sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c  | 30 +++++++++++++++
ce426f
 9 files changed, 231 insertions(+), 2 deletions(-)
ce426f
 create mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c
ce426f
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c
ce426f
new file mode 100644
ce426f
index 0000000..d7ad0b7
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c
ce426f
@@ -0,0 +1,31 @@
ce426f
+/* PowerPC/POWER5+ implementation for modf.
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
+
ce426f
+#undef weak_alias
ce426f
+#define weak_alias(a,b)
ce426f
+#undef strong_alias
ce426f
+#define strong_alias(a,b)
ce426f
+#undef compat_symbol
ce426f
+#define compat_symbol(a,b,c,d)
ce426f
+
ce426f
+#define __modf __modf_power5plus
ce426f
+
ce426f
+#include <sysdeps/powerpc/power5+/fpu/s_modf.c>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c
ce426f
new file mode 100644
ce426f
index 0000000..4021b52
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c
ce426f
@@ -0,0 +1,27 @@
ce426f
+/* PowerPC/POWER5+ implementation for modff.
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
+
ce426f
+#undef weak_alias
ce426f
+#define weak_alias(a,b)
ce426f
+
ce426f
+#define __modff __modff_power5plus
ce426f
+
ce426f
+#include <sysdeps/powerpc/power5+/fpu/s_modff.c>
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 87aabca..e152bf5 100644
ce426f
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
ce426f
@@ -3,7 +3,8 @@ 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 s_isinff-ppc64 s_isinf-power7 \
ce426f
-                  s_isinf-ppc64
ce426f
+                  s_isinf-ppc64 s_modf-power5+ s_modf-ppc64 \
ce426f
+                  s_modff-power5+ s_modff-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
@@ -18,9 +19,12 @@ libm-sysdep_routines += s_isnan-power7 s_isnan-power6x s_isnan-power6 \
ce426f
                        s_finitef-ppc64 s_isinff-ppc64 s_isinf-power7 \
ce426f
                        s_isinf-ppc64 s_logb-power7 s_logbf-power7 \
ce426f
                        s_logbl-power7 s_logb-ppc64 s_logbf-ppc64 \
ce426f
-                       s_logbl-ppc64
ce426f
+                       s_logbl-ppc64 s_modf-power5+ s_modf-ppc64 \
ce426f
+                       s_modff-power5+ s_modff-ppc64
ce426f
 
ce426f
 CFLAGS-s_logbf-power7.c = -mcpu=power7
ce426f
 CFLAGS-s_logbl-power7.c = -mcpu=power7
ce426f
 CFLAGS-s_logb-power7.c = -mcpu=power7
ce426f
+CFLAGS-s_modf-power5+.c = -mcpu=power5+
ce426f
+CFLAGS-s_modff-power5+.c = -mcpu=power5+
ce426f
 endif
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c
ce426f
new file mode 100644
ce426f
index 0000000..bda9920
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c
ce426f
@@ -0,0 +1,19 @@
ce426f
+/* PowerPC/POWER5+ implementation for modf.
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/fpu/multiarch/s_modf-power5+.c>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c
ce426f
new file mode 100644
ce426f
index 0000000..90e7599
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c
ce426f
@@ -0,0 +1,29 @@
ce426f
+/* PowerPC64 default implementation for modf.
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
+
ce426f
+#undef weak_alias
ce426f
+#define weak_alias(a,b)
ce426f
+#undef strong_alias
ce426f
+#define strong_alias(a,b)
ce426f
+
ce426f
+#define __modf __modf_ppc64
ce426f
+
ce426f
+#include <sysdeps/ieee754/dbl-64/s_modf.c>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c
ce426f
new file mode 100644
ce426f
index 0000000..f416fa9
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c
ce426f
@@ -0,0 +1,44 @@
ce426f
+/* Multiple versions of modf.
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 (__modf) __modf_ppc64 attribute_hidden;
ce426f
+extern __typeof (__modf) __modf_power5plus attribute_hidden;
ce426f
+
ce426f
+libc_ifunc (__modf,
ce426f
+	    (hwcap & PPC_FEATURE_POWER5_PLUS)
ce426f
+	    ? __modf_power5plus
ce426f
+            : __modf_ppc64);
ce426f
+
ce426f
+weak_alias (__modf, modf)
ce426f
+
ce426f
+#ifdef NO_LONG_DOUBLE
ce426f
+strong_alias (__modf, __modfl)
ce426f
+weak_alias (__modf, modfl)
ce426f
+#endif
ce426f
+#ifdef IS_IN_libm
ce426f
+# if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
ce426f
+compat_symbol (libm, __modf, modfl, GLIBC_2_0);
ce426f
+# endif
ce426f
+#elif LONG_DOUBLE_COMPAT(libc, GLIBC_2_0)
ce426f
+compat_symbol (libc, __modf, modfl, GLIBC_2_0);
ce426f
+#endif
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c
ce426f
new file mode 100644
ce426f
index 0000000..70a536d
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c
ce426f
@@ -0,0 +1,19 @@
ce426f
+/* PowerPC/POWER5+ implementation for modff.
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/fpu/multiarch/s_modff-power5+.c>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c
ce426f
new file mode 100644
ce426f
index 0000000..89d8f63
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c
ce426f
@@ -0,0 +1,26 @@
ce426f
+/* PowerPC64 default implementation for modff.
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 __modff __modff_ppc64
ce426f
+
ce426f
+#include <sysdeps/ieee754/flt-32/s_modff.c>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c
ce426f
new file mode 100644
ce426f
index 0000000..137b7aa
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c
ce426f
@@ -0,0 +1,30 @@
ce426f
+/* Multiple versions of modff.
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 "init-arch.h"
ce426f
+
ce426f
+extern __typeof (__modff) __modff_ppc64 attribute_hidden;
ce426f
+extern __typeof (__modff) __modff_power5plus attribute_hidden;
ce426f
+
ce426f
+libc_ifunc (__modff,
ce426f
+	    (hwcap & PPC_FEATURE_POWER5_PLUS)
ce426f
+	    ? __modff_power5plus
ce426f
+            : __modff_ppc64);
ce426f
+
ce426f
+weak_alias (__modff, modff)
ce426f
-- 
ce426f
1.8.3.1
ce426f