1 /* sf_expm1.c -- float version of s_expm1.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
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
13 * ====================================================
17 #include "math_config.h"
31 ln2_hi
= 6.9313812256e-01,/* 0x3f317180 */
32 ln2_lo
= 9.0580006145e-06,/* 0x3717f7d1 */
33 invln2
= 1.4426950216e+00,/* 0x3fb8aa3b */
34 /* scaled coefficients related to expm1 */
35 Q1
= -3.3333335072e-02, /* 0xbd088889 */
36 Q2
= 1.5873016091e-03, /* 0x3ad00d01 */
37 Q3
= -7.9365076090e-05, /* 0xb8a670cd */
38 Q4
= 4.0082177293e-06, /* 0x36867e54 */
39 Q5
= -2.0109921195e-07; /* 0xb457edbb */
48 float y
,hi
,lo
,c
,t
,e
,hxs
,hfx
,r1
;
53 xsb
= hx
&0x80000000; /* sign bit of x */
54 if(xsb
==0) y
=x
; else y
= -x
; /* y = |x| */
55 hx
&= 0x7fffffff; /* high word of |x| */
57 /* filter out huge and non-finite argument */
58 if(hx
>= 0x4195b844) { /* if |x|>=27*ln2 */
59 if(FLT_UWORD_IS_NAN(hx
))
61 if(FLT_UWORD_IS_INFINITE(hx
))
62 return (xsb
==0)? x
:-1.0;/* exp(+-inf)={inf,-1} */
63 if(xsb
== 0 && hx
> FLT_UWORD_LOG_MAX
) /* if x>=o_threshold */
64 return __math_oflowf (0); /* overflow */
65 if(xsb
!=0) { /* x < -27*ln2, return -1.0 with inexact */
66 if(x
+tiny
<(float)0.0) /* raise inexact */
67 return tiny
-one
; /* return -1 */
71 /* argument reduction */
72 if(hx
> 0x3eb17218) { /* if |x| > 0.5 ln2 */
73 if(hx
< 0x3F851592) { /* and |x| < 1.5 ln2 */
75 {hi
= x
- ln2_hi
; lo
= ln2_lo
; k
= 1;}
77 {hi
= x
+ ln2_hi
; lo
= -ln2_lo
; k
= -1;}
79 k
= invln2
*x
+((xsb
==0)?(float)0.5:(float)-0.5);
81 hi
= x
- t
*ln2_hi
; /* t*ln2_hi is exact here */
87 else if(hx
< 0x33000000) { /* when |x|<2**-25, return x */
88 t
= huge
+x
; /* return x with inexact flags when x!=0 */
89 return x
- (t
-(huge
+x
));
93 /* x is now in primary range */
96 r1
= one
+hxs
*(Q1
+hxs
*(Q2
+hxs
*(Q3
+hxs
*(Q4
+hxs
*Q5
))));
97 t
= (float)3.0-r1
*hfx
;
98 e
= hxs
*((r1
-t
)/((float)6.0 - x
*t
));
99 if(k
==0) return x
- (x
*e
-hxs
); /* c is 0 */
103 if(k
== -1) return (float)0.5*(x
-e
)-(float)0.5;
105 if(x
< (float)-0.25) return -(float)2.0*(e
-(x
+(float)0.5));
106 else return one
+(float)2.0*(x
-e
);
108 if (k
<= -2 || k
>56) { /* suffice to return exp(x)-1 */
112 SET_FLOAT_WORD(y
,i
+(k
<<23)); /* add k to y's exponent */
118 SET_FLOAT_WORD(t
,0x3f800000 - (0x1000000>>k
)); /* t=1-2^-k */
121 SET_FLOAT_WORD(y
,i
+(k
<<23)); /* add k to y's exponent */
124 SET_FLOAT_WORD(t
,((0x7f-k
)<<23)); /* 2^-k */
128 SET_FLOAT_WORD(y
,i
+(k
<<23)); /* add k to y's exponent */
134 #ifdef _DOUBLE_IS_32BITS
137 double expm1(double x
)
143 return (double) expm1f((float) x
);
146 #endif /* defined(_DOUBLE_IS_32BITS) */