PowerPC: logb/logbf/logbl multilib for PowerPC32
[glibc.git] / sysdeps / powerpc / powerpc32 / fpu / multiarch / s_logbl-power7.c
blobe783b46c4776264667f08363dc25c9b7fcd72f9a
1 /* logbl(). PowerPC/POWER7 version.
2 Copyright (C) 2012-2013 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <math.h>
20 #include <math_private.h>
21 #include <math_ldbl_opt.h>
23 __typeof (__logbl) __logbl_power7 __attribute__ ((__target__ ("cpu=power7")));
25 /* This implementation avoids FP to INT conversions by using VSX
26 bitwise instructions over FP values. */
28 static const double two1div52 = 2.220446049250313e-16; /* 1/2**52 */
29 static const double two10m1 = -1023.0; /* 2**10 -1 */
31 /* FP mask to extract the exponent. */
32 static const union {
33 unsigned long long mask;
34 double d;
35 } mask = { 0x7ff0000000000000ULL };
37 long double
38 __logbl_power7 (long double x)
40 double xh, xl;
41 double ret;
43 if (__builtin_expect (x == 0.0L, 0))
44 /* Raise FE_DIVBYZERO and return -HUGE_VAL[LF]. */
45 return -1.0L / __builtin_fabsl (x);
47 ldbl_unpack (x, &xh, &xl);
48 /* ret = x & 0x7ff0000000000000; */
49 asm (
50 "xxland %x0,%x1,%x2\n"
51 "fcfid %0,%0"
52 : "=f" (ret)
53 : "f" (xh), "f" (mask.d));
54 /* ret = (ret >> 52) - 1023.0; */
55 ret = (ret * two1div52) + two10m1;
56 if (__builtin_expect (ret > -two10m1, 0))
57 /* Multiplication is used to set logb (+-INF) = INF. */
58 return (xh * xh);
59 else if (__builtin_expect (ret == two10m1, 0))
61 /* POSIX specifies that denormal number is treated as
62 though it were normalized. */
63 int64_t lx, hx;
65 GET_LDOUBLE_WORDS64 (hx, lx, x);
66 return (long double) (-1023 - (__builtin_clzll (hx) - 12));
68 /* Test to avoid logb_downward (0.0) == -0.0. */
69 return ret == -0.0 ? 0.0 : ret;