|
|
29e444 |
Consolidated two commits:
|
|
|
29e444 |
|
|
|
29e444 |
From 51c33bd233d00d77f268ec28565506a6cd1e7d10 Mon Sep 17 00:00:00 2001
|
|
|
29e444 |
From: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
|
|
29e444 |
Date: Mon, 25 Mar 2013 16:10:06 -0500
|
|
|
29e444 |
Subject: [PATCH 25/42] PowerPC: modf optimization
|
|
|
29e444 |
|
|
|
29e444 |
This patch implements modf/modff optimization for POWER by focus
|
|
|
29e444 |
on FP operations instead of relying in integer ones.
|
|
|
29e444 |
(backported from commit 3c0265394d9ffedff2b0de508602dc52e077ce5c)
|
|
|
29e444 |
|
|
|
29e444 |
This backport does not include the benchmark tests from the original
|
|
|
29e444 |
commit.
|
|
|
29e444 |
|
|
|
29e444 |
From 599fefcc3e7fbf65d9c441bf1b336b272c39f262 Mon Sep 17 00:00:00 2001
|
|
|
29e444 |
From: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
|
|
29e444 |
Date: Fri, 26 Apr 2013 13:00:56 -0500
|
|
|
29e444 |
Subject: [PATCH 26/42] PowerPC: modf optimization fix
|
|
|
29e444 |
|
|
|
29e444 |
This patch fix the 3c0265394d9ffedff2b0de508602dc52e077ce5c commits
|
|
|
29e444 |
by correctly setting minimum architecture for modf PPC optimization
|
|
|
29e444 |
to power5+ instead of power5 (since only on power5+ round/ceil will
|
|
|
29e444 |
be inline to inline assembly).
|
|
|
29e444 |
(cherry picked from commit aa630f590c9c7d070a7cdf3a2a88069ad6b63de9)
|
|
|
29e444 |
|
|
|
29e444 |
diff -pruN glibc-2.17-c758a686/sysdeps/powerpc/power5+/fpu/s_modf.c glibc-2.17-c758a686.new/sysdeps/powerpc/power5+/fpu/s_modf.c
|
|
|
29e444 |
--- glibc-2.17-c758a686/sysdeps/powerpc/power5+/fpu/s_modf.c 1970-01-01 05:30:00.000000000 +0530
|
|
|
29e444 |
+++ glibc-2.17-c758a686.new/sysdeps/powerpc/power5+/fpu/s_modf.c 2013-08-06 17:48:57.609526556 +0530
|
|
|
29e444 |
@@ -0,0 +1,58 @@
|
|
|
29e444 |
+/* Copyright (C) 2013 Free Software Foundation, Inc.
|
|
|
29e444 |
+ This file is part of the GNU C Library
|
|
|
29e444 |
+
|
|
|
29e444 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
29e444 |
+ modify it under the terms of the GNU Library General Public License as
|
|
|
29e444 |
+ published by the Free Software Foundation; either version 2 of the
|
|
|
29e444 |
+ License, or (at your option) any later version.
|
|
|
29e444 |
+
|
|
|
29e444 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
29e444 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
29e444 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
29e444 |
+ Library General Public License for more details.
|
|
|
29e444 |
+
|
|
|
29e444 |
+ You should have received a copy of the GNU Library General Public
|
|
|
29e444 |
+ License along with the GNU C Library; see the file COPYING.LIB. If
|
|
|
29e444 |
+ not, see <http://www.gnu.org/licenses/>. */
|
|
|
29e444 |
+
|
|
|
29e444 |
+#include <math.h>
|
|
|
29e444 |
+#include <math_private.h>
|
|
|
29e444 |
+#include <math_ldbl_opt.h>
|
|
|
29e444 |
+
|
|
|
29e444 |
+double
|
|
|
29e444 |
+__modf (double x, double *iptr)
|
|
|
29e444 |
+{
|
|
|
29e444 |
+ if (__builtin_isinf (x))
|
|
|
29e444 |
+ {
|
|
|
29e444 |
+ *iptr = x;
|
|
|
29e444 |
+ return __copysign (0.0, x);
|
|
|
29e444 |
+ }
|
|
|
29e444 |
+ else if (__builtin_isnan (x))
|
|
|
29e444 |
+ {
|
|
|
29e444 |
+ *iptr = NAN;
|
|
|
29e444 |
+ return NAN;
|
|
|
29e444 |
+ }
|
|
|
29e444 |
+
|
|
|
29e444 |
+ if (x >= 0.0)
|
|
|
29e444 |
+ {
|
|
|
29e444 |
+ *iptr = __floor (x);
|
|
|
29e444 |
+ return (x - *iptr);
|
|
|
29e444 |
+ }
|
|
|
29e444 |
+ else
|
|
|
29e444 |
+ {
|
|
|
29e444 |
+ *iptr = __ceil (x);
|
|
|
29e444 |
+ return (x - *iptr);
|
|
|
29e444 |
+ }
|
|
|
29e444 |
+}
|
|
|
29e444 |
+weak_alias (__modf, modf)
|
|
|
29e444 |
+#ifdef NO_LONG_DOUBLE
|
|
|
29e444 |
+strong_alias (__modf, __modfl)
|
|
|
29e444 |
+weak_alias (__modf, modfl)
|
|
|
29e444 |
+#endif
|
|
|
29e444 |
+#ifdef IS_IN_libm
|
|
|
29e444 |
+# if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
|
|
|
29e444 |
+compat_symbol (libm, __modf, modfl, GLIBC_2_0);
|
|
|
29e444 |
+# endif
|
|
|
29e444 |
+#elif LONG_DOUBLE_COMPAT(libc, GLIBC_2_0)
|
|
|
29e444 |
+compat_symbol (libc, __modf, modfl, GLIBC_2_0);
|
|
|
29e444 |
+#endif
|
|
|
29e444 |
diff -pruN glibc-2.17-c758a686/sysdeps/powerpc/power5+/fpu/s_modff.c glibc-2.17-c758a686.new/sysdeps/powerpc/power5+/fpu/s_modff.c
|
|
|
29e444 |
--- glibc-2.17-c758a686/sysdeps/powerpc/power5+/fpu/s_modff.c 1970-01-01 05:30:00.000000000 +0530
|
|
|
29e444 |
+++ glibc-2.17-c758a686.new/sysdeps/powerpc/power5+/fpu/s_modff.c 2013-08-06 17:48:57.609526556 +0530
|
|
|
29e444 |
@@ -0,0 +1,46 @@
|
|
|
29e444 |
+/* Copyright (C) 2013 Free Software Foundation, Inc.
|
|
|
29e444 |
+ This file is part of the GNU C Library
|
|
|
29e444 |
+
|
|
|
29e444 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
29e444 |
+ modify it under the terms of the GNU Library General Public License as
|
|
|
29e444 |
+ published by the Free Software Foundation; either version 2 of the
|
|
|
29e444 |
+ License, or (at your option) any later version.
|
|
|
29e444 |
+
|
|
|
29e444 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
29e444 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
29e444 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
29e444 |
+ Library General Public License for more details.
|
|
|
29e444 |
+
|
|
|
29e444 |
+ You should have received a copy of the GNU Library General Public
|
|
|
29e444 |
+ License along with the GNU C Library; see the file COPYING.LIB. If
|
|
|
29e444 |
+ not, see <http://www.gnu.org/licenses/>. */
|
|
|
29e444 |
+
|
|
|
29e444 |
+#include <math.h>
|
|
|
29e444 |
+#include <math_private.h>
|
|
|
29e444 |
+
|
|
|
29e444 |
+float
|
|
|
29e444 |
+__modff (float x, float *iptr)
|
|
|
29e444 |
+{
|
|
|
29e444 |
+ if (__builtin_isinff (x))
|
|
|
29e444 |
+ {
|
|
|
29e444 |
+ *iptr = x;
|
|
|
29e444 |
+ return __copysignf (0.0, x);
|
|
|
29e444 |
+ }
|
|
|
29e444 |
+ else if (__builtin_isnanf (x))
|
|
|
29e444 |
+ {
|
|
|
29e444 |
+ *iptr = NAN;
|
|
|
29e444 |
+ return NAN;
|
|
|
29e444 |
+ }
|
|
|
29e444 |
+
|
|
|
29e444 |
+ if (x >= 0.0)
|
|
|
29e444 |
+ {
|
|
|
29e444 |
+ *iptr = __floorf (x);
|
|
|
29e444 |
+ return (x - *iptr);
|
|
|
29e444 |
+ }
|
|
|
29e444 |
+ else
|
|
|
29e444 |
+ {
|
|
|
29e444 |
+ *iptr = __ceilf (x);
|
|
|
29e444 |
+ return (x - *iptr);
|
|
|
29e444 |
+ }
|
|
|
29e444 |
+}
|
|
|
29e444 |
+weak_alias (__modff, modff)
|
|
|
29e444 |
diff -pruN glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power5/Implies glibc-2.17-c758a686.new/sysdeps/powerpc/powerpc32/power5/Implies
|
|
|
29e444 |
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power5/Implies 2012-12-25 08:32:13.000000000 +0530
|
|
|
29e444 |
+++ glibc-2.17-c758a686.new/sysdeps/powerpc/powerpc32/power5/Implies 2013-08-06 17:48:54.266526703 +0530
|
|
|
29e444 |
@@ -1,2 +1,4 @@
|
|
|
29e444 |
+powerpc/power5/fpu
|
|
|
29e444 |
+powerpc/power5
|
|
|
29e444 |
powerpc/powerpc32/power4/fpu
|
|
|
29e444 |
powerpc/powerpc32/power4
|
|
|
29e444 |
diff -pruN glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power5+/Implies glibc-2.17-c758a686.new/sysdeps/powerpc/powerpc32/power5+/Implies
|
|
|
29e444 |
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc32/power5+/Implies 2012-12-25 08:32:13.000000000 +0530
|
|
|
29e444 |
+++ glibc-2.17-c758a686.new/sysdeps/powerpc/powerpc32/power5+/Implies 2013-08-06 17:48:57.609526556 +0530
|
|
|
29e444 |
@@ -1,2 +1,4 @@
|
|
|
29e444 |
+powerpc/power5+/fpu
|
|
|
29e444 |
+powerpc/power5+
|
|
|
29e444 |
powerpc/powerpc32/power5/fpu
|
|
|
29e444 |
powerpc/powerpc32/power5
|
|
|
29e444 |
diff -pruN glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/power5/Implies glibc-2.17-c758a686.new/sysdeps/powerpc/powerpc64/power5/Implies
|
|
|
29e444 |
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/power5/Implies 2012-12-25 08:32:13.000000000 +0530
|
|
|
29e444 |
+++ glibc-2.17-c758a686.new/sysdeps/powerpc/powerpc64/power5/Implies 2013-08-06 17:48:54.266526703 +0530
|
|
|
29e444 |
@@ -1,2 +1,4 @@
|
|
|
29e444 |
+powerpc/power5/fpu
|
|
|
29e444 |
+powerpc/power5
|
|
|
29e444 |
powerpc/powerpc64/power4/fpu
|
|
|
29e444 |
powerpc/powerpc64/power4
|
|
|
29e444 |
diff -pruN glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/power5+/Implies glibc-2.17-c758a686.new/sysdeps/powerpc/powerpc64/power5+/Implies
|
|
|
29e444 |
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/power5+/Implies 2012-12-25 08:32:13.000000000 +0530
|
|
|
29e444 |
+++ glibc-2.17-c758a686.new/sysdeps/powerpc/powerpc64/power5+/Implies 2013-08-06 17:48:57.610526556 +0530
|
|
|
29e444 |
@@ -1,2 +1,4 @@
|
|
|
29e444 |
+powerpc/power5+/fpu
|
|
|
29e444 |
+powerpc/power5+
|
|
|
29e444 |
powerpc/powerpc64/power5/fpu
|
|
|
29e444 |
powerpc/powerpc64/power5
|