add .gitignore file
[musl] / src / math / e_expf.c
1 /* e_expf.c -- float version of e_exp.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 <math.h>
17 #include "math_private.h"
18
19 static const float
20 one     = 1.0,
21 halF[2] = {0.5,-0.5,},
22 huge    = 1.0e+30,
23 twom100 = 7.8886090522e-31,      /* 2**-100=0x0d800000 */
24 o_threshold=  8.8721679688e+01,  /* 0x42b17180 */
25 u_threshold= -1.0397208405e+02,  /* 0xc2cff1b5 */
26 ln2HI[2]   ={ 6.9313812256e-01,         /* 0x3f317180 */
27              -6.9313812256e-01,},       /* 0xbf317180 */
28 ln2LO[2]   ={ 9.0580006145e-06,         /* 0x3717f7d1 */
29              -9.0580006145e-06,},       /* 0xb717f7d1 */
30 invln2 =  1.4426950216e+00,             /* 0x3fb8aa3b */
31 P1   =  1.6666667163e-01, /* 0x3e2aaaab */
32 P2   = -2.7777778450e-03, /* 0xbb360b61 */
33 P3   =  6.6137559770e-05, /* 0x388ab355 */
34 P4   = -1.6533901999e-06, /* 0xb5ddea0e */
35 P5   =  4.1381369442e-08; /* 0x3331bb4c */
36
37 float
38 expf(float x) /* default IEEE double exp */
39 {
40         float y,hi=0.0,lo=0.0,c,t;
41         int32_t k=0,xsb;
42         uint32_t hx;
43
44         GET_FLOAT_WORD(hx,x);
45         xsb = (hx>>31)&1;               /* sign bit of x */
46         hx &= 0x7fffffff;               /* high word of |x| */
47
48     /* filter out non-finite argument */
49         if(hx >= 0x42b17218) {                  /* if |x|>=88.721... */
50             if(hx>0x7f800000)
51                  return x+x;                    /* NaN */
52             if(hx==0x7f800000)
53                 return (xsb==0)? x:0.0;         /* exp(+-inf)={inf,0} */
54             if(x > o_threshold) return huge*huge; /* overflow */
55             if(x < u_threshold) return twom100*twom100; /* underflow */
56         }
57
58     /* argument reduction */
59         if(hx > 0x3eb17218) {           /* if  |x| > 0.5 ln2 */
60             if(hx < 0x3F851592) {       /* and |x| < 1.5 ln2 */
61                 hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb;
62             } else {
63                 k  = invln2*x+halF[xsb];
64                 t  = k;
65                 hi = x - t*ln2HI[0];    /* t*ln2HI is exact here */
66                 lo = t*ln2LO[0];
67             }
68             x  = hi - lo;
69         }
70         else if(hx < 0x31800000)  {     /* when |x|<2**-28 */
71             if(huge+x>one) return one+x;/* trigger inexact */
72         }
73         else k = 0;
74
75     /* x is now in primary range */
76         t  = x*x;
77         c  = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
78         if(k==0)        return one-((x*c)/(c-(float)2.0)-x);
79         else            y = one-((lo-(x*c)/((float)2.0-c))-hi);
80         if(k >= -125) {
81             uint32_t hy;
82             GET_FLOAT_WORD(hy,y);
83             SET_FLOAT_WORD(y,hy+(k<<23));       /* add k to y's exponent */
84             return y;
85         } else {
86             uint32_t hy;
87             GET_FLOAT_WORD(hy,y);
88             SET_FLOAT_WORD(y,hy+((k+100)<<23)); /* add k to y's exponent */
89             return y*twom100;
90         }
91 }