Optimize handling of denormals in logb/logbf/logbl
[glibc.git] / sysdeps / ieee754 / ldbl-128ibm / s_logbl.c
blob92ce2c1896119e61c5ae626baa4340c8b20a073a
1 /* s_logbl.c -- long double version of s_logb.c.
2 * Conversion to IEEE quad long double by Jakub Jelinek, jj@ultra.linux.cz.
3 */
5 /*
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
12 * is preserved.
13 * ====================================================
17 * long double logbl(x)
18 * IEEE 754 logb. Included to pass IEEE test suite. Not recommend.
19 * Use ilogb instead.
22 #include <math.h>
23 #include <math_private.h>
24 #include <math_ldbl_opt.h>
26 long double
27 __logbl (long double x)
29 int64_t lx, hx, rhx;
31 GET_LDOUBLE_WORDS64 (hx, lx, x);
32 hx &= 0x7fffffffffffffffLL; /* high |x| */
33 if (hx == 0)
34 return -1.0 / fabs (x);
35 if (hx >= 0x7ff0000000000000LL)
36 return x * x;
37 if (__builtin_expect ((rhx = hx >> 52) == 0, 0))
39 /* POSIX specifies that denormal number is treated as
40 though it were normalized. */
41 rhx -= __builtin_clzll (hx) - 12;
43 return (long double) (rhx - 1023);
46 long_double_symbol (libm, __logbl, logbl);