-
Notifications
You must be signed in to change notification settings - Fork 25
/
e_ilogbl.c
85 lines (73 loc) · 1.78 KB
/
e_ilogbl.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* s_ilogbl.c -- long double version of s_ilogb.c.
* Conversion to long double by Ulrich Drepper,
* Cygnus Support, [email protected].
*/
/*
* ====================================================
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
*
* Developed at SunPro, a Sun Microsystems, Inc. business.
* Permission to use, copy, modify, and distribute this
* software is freely granted, provided that this notice
* is preserved.
* ====================================================
*/
/* ilogbl(long double x)
* return the binary exponent of non-zero x
* ilogbl(0) = FP_ILOGB0
* ilogbl(NaN) = FP_ILOGBNAN (no signal is raised)
* ilogbl(+-Inf) = INT_MAX (no signal is raised)
*/
#ifndef __FDLIBM_H__
#include "fdlibm.h"
#endif
#ifndef __NO_LONG_DOUBLE_MATH
#ifndef __have_fpu_ilogb
int __ieee754_ilogbl(long double x)
{
int32_t es, hx, lx, ix;
GET_LDOUBLE_EXP(es, x);
es &= 0x7fff;
if (es == 0)
{
GET_LDOUBLE_WORDS(es, hx, lx, x);
hx &= IC(0x7fffffff);
if ((hx | lx) == 0)
return FP_ILOGB0; /* ilogbl(0) = FP_ILOGB0 */
/* subnormal x */
if (hx == 0)
{
for (ix = -16414; lx > 0; lx <<= 1)
ix -= 1;
} else
{
for (ix = -16383, hx <<= 1; hx > 0; hx <<= 1)
ix -= 1;
}
return (int)ix;
}
if (es < 0x7fff)
return (int)es - 0x3fff;
#if FP_ILOGBNAN != INT_MAX
GET_LDOUBLE_WORDS(es, hx, lx, x);
if (((hx & IC(0x7fffffff)) | lx) == 0)
/* ISO C99 requires ilogbl(+-Inf) == INT_MAX. */
return INT_MAX;
#endif
return FP_ILOGBNAN;
}
#endif
/* wrapper ilogbl */
int __ilogbl(long double x)
{
int r = __ieee754_ilogbl(x);
if (r == FP_ILOGB0 ||
r == FP_ILOGBNAN ||
r == INT_MAX)
{
__kernel_standard_l(x, x, x, KMATHERRL_ILOGB);
}
return r;
}
__typeof(__ilogbl) ilogbl __attribute__((weak, alias("__ilogbl")));
#endif