1/* s_expm1f.c -- float version of s_expm1.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3 */
4
5/*
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 *
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 * ====================================================
14 */
15
16#include <errno.h>
17#include <float.h>
18#include <math.h>
19#include <math_private.h>
20
21static const float huge = 1.0e+30;
22static const float tiny = 1.0e-30;
23
24static const float
25one = 1.0,
26o_threshold = 8.8721679688e+01,/* 0x42b17180 */
27ln2_hi = 6.9313812256e-01,/* 0x3f317180 */
28ln2_lo = 9.0580006145e-06,/* 0x3717f7d1 */
29invln2 = 1.4426950216e+00,/* 0x3fb8aa3b */
30 /* scaled coefficients related to expm1 */
31Q1 = -3.3333335072e-02, /* 0xbd088889 */
32Q2 = 1.5873016091e-03, /* 0x3ad00d01 */
33Q3 = -7.9365076090e-05, /* 0xb8a670cd */
34Q4 = 4.0082177293e-06, /* 0x36867e54 */
35Q5 = -2.0109921195e-07; /* 0xb457edbb */
36
37float
38__expm1f(float x)
39{
40 float y,hi,lo,c,t,e,hxs,hfx,r1;
41 int32_t k,xsb;
42 u_int32_t hx;
43
44 GET_FLOAT_WORD(hx,x);
45 xsb = hx&0x80000000; /* sign bit of x */
46 if(xsb==0) y=x; else y= -x; /* y = |x| */
47 hx &= 0x7fffffff; /* high word of |x| */
48
49 /* filter out huge and non-finite argument */
50 if(hx >= 0x4195b844) { /* if |x|>=27*ln2 */
51 if(hx >= 0x42b17218) { /* if |x|>=88.721... */
52 if(hx>0x7f800000)
53 return x+x; /* NaN */
54 if(hx==0x7f800000)
55 return (xsb==0)? x:-1.0;/* exp(+-inf)={inf,-1} */
56 if(x > o_threshold) {
57 __set_errno (ERANGE);
58 return huge*huge; /* overflow */
59 }
60 }
61 if(xsb!=0) { /* x < -27*ln2, return -1.0 with inexact */
62 math_force_eval(x+tiny);/* raise inexact */
63 return tiny-one; /* return -1 */
64 }
65 }
66
67 /* argument reduction */
68 if(hx > 0x3eb17218) { /* if |x| > 0.5 ln2 */
69 if(hx < 0x3F851592) { /* and |x| < 1.5 ln2 */
70 if(xsb==0)
71 {hi = x - ln2_hi; lo = ln2_lo; k = 1;}
72 else
73 {hi = x + ln2_hi; lo = -ln2_lo; k = -1;}
74 } else {
75 k = invln2*x+((xsb==0)?(float)0.5:(float)-0.5);
76 t = k;
77 hi = x - t*ln2_hi; /* t*ln2_hi is exact here */
78 lo = t*ln2_lo;
79 }
80 x = hi - lo;
81 c = (hi-x)-lo;
82 }
83 else if(hx < 0x33000000) { /* when |x|<2**-25, return x */
84 math_check_force_underflow (x);
85 t = huge+x; /* return x with inexact flags when x!=0 */
86 return x - (t-(huge+x));
87 }
88 else k = 0;
89
90 /* x is now in primary range */
91 hfx = (float)0.5*x;
92 hxs = x*hfx;
93 r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5))));
94 t = (float)3.0-r1*hfx;
95 e = hxs*((r1-t)/((float)6.0 - x*t));
96 if(k==0) return x - (x*e-hxs); /* c is 0 */
97 else {
98 e = (x*(e-c)-c);
99 e -= hxs;
100 if(k== -1) return (float)0.5*(x-e)-(float)0.5;
101 if(k==1) {
102 if(x < (float)-0.25) return -(float)2.0*(e-(x+(float)0.5));
103 else return one+(float)2.0*(x-e);
104 }
105 if (k <= -2 || k>56) { /* suffice to return exp(x)-1 */
106 int32_t i;
107 y = one-(e-x);
108 GET_FLOAT_WORD(i,y);
109 SET_FLOAT_WORD(y,i+(k<<23)); /* add k to y's exponent */
110 return y-one;
111 }
112 t = one;
113 if(k<23) {
114 int32_t i;
115 SET_FLOAT_WORD(t,0x3f800000 - (0x1000000>>k)); /* t=1-2^-k */
116 y = t-(e-x);
117 GET_FLOAT_WORD(i,y);
118 SET_FLOAT_WORD(y,i+(k<<23)); /* add k to y's exponent */
119 } else {
120 int32_t i;
121 SET_FLOAT_WORD(t,((0x7f-k)<<23)); /* 2^-k */
122 y = x-(e+t);
123 y += one;
124 GET_FLOAT_WORD(i,y);
125 SET_FLOAT_WORD(y,i+(k<<23)); /* add k to y's exponent */
126 }
127 }
128 return y;
129}
130weak_alias (__expm1f, expm1f)
131