xref: /csrg-svn/lib/libm/common_source/exp.c (revision 31853)
1 /*
2  * Copyright (c) 1985 Regents of the University of California.
3  *
4  * Use and reproduction of this software are granted  in  accordance  with
5  * the terms and conditions specified in  the  Berkeley  Software  License
6  * Agreement (in particular, this entails acknowledgement of the programs'
7  * source, and inclusion of this notice) with the additional understanding
8  * that  all  recipients  should regard themselves as participants  in  an
9  * ongoing  research  project and hence should  feel  obligated  to report
10  * their  experiences (good or bad) with these elementary function  codes,
11  * using "sendbug 4bsd-bugs@BERKELEY", to the authors.
12  */
13 
14 #ifndef lint
15 static char sccsid[] =
16 "@(#)exp.c	4.3 (Berkeley) 8/21/85; 1.8 (ucb.elefunt) 07/13/87";
17 #endif	/* not lint */
18 
19 /* EXP(X)
20  * RETURN THE EXPONENTIAL OF X
21  * DOUBLE PRECISION (IEEE 53 bits, VAX D FORMAT 56 BITS)
22  * CODED IN C BY K.C. NG, 1/19/85;
23  * REVISED BY K.C. NG on 2/6/85, 2/15/85, 3/7/85, 3/24/85, 4/16/85, 6/14/86.
24  *
25  * Required system supported functions:
26  *	scalb(x,n)
27  *	copysign(x,y)
28  *	finite(x)
29  *
30  * Method:
31  *	1. Argument Reduction: given the input x, find r and integer k such
32  *	   that
33  *	                   x = k*ln2 + r,  |r| <= 0.5*ln2 .
34  *	   r will be represented as r := z+c for better accuracy.
35  *
36  *	2. Compute exp(r) by
37  *
38  *		exp(r) = 1 + r + r*R1/(2-R1),
39  *	   where
40  *		R1 = x - x^2*(p1+x^2*(p2+x^2*(p3+x^2*(p4+p5*x^2)))).
41  *
42  *	3. exp(x) = 2^k * exp(r) .
43  *
44  * Special cases:
45  *	exp(INF) is INF, exp(NaN) is NaN;
46  *	exp(-INF)=  0;
47  *	for finite argument, only exp(0)=1 is exact.
48  *
49  * Accuracy:
50  *	exp(x) returns the exponential of x nearly rounded. In a test run
51  *	with 1,156,000 random arguments on a VAX, the maximum observed
52  *	error was 0.869 ulps (units in the last place).
53  *
54  * Constants:
55  * The hexadecimal values are the intended ones for the following constants.
56  * The decimal values may be used, provided that the compiler will convert
57  * from decimal to binary accurately enough to produce the hexadecimal values
58  * shown.
59  */
60 
61 #if defined(vax)||defined(tahoe)	/* VAX D format */
62 #ifdef vax
63 #define _0x(A,B)	0x/**/A/**/B
64 #else	/* vax */
65 #define _0x(A,B)	0x/**/B/**/A
66 #endif	/* vax */
67 /* static double */
68 /* ln2hi  =  6.9314718055829871446E-1    , Hex  2^  0   *  .B17217F7D00000 */
69 /* ln2lo  =  1.6465949582897081279E-12   , Hex  2^-39   *  .E7BCD5E4F1D9CC */
70 /* lnhuge =  9.4961163736712506989E1     , Hex  2^  7   *  .BDEC1DA73E9010 */
71 /* lntiny = -9.5654310917272452386E1     , Hex  2^  7   * -.BF4F01D72E33AF */
72 /* invln2 =  1.4426950408889634148E0     ; Hex  2^  1   *  .B8AA3B295C17F1 */
73 /* p1     =  1.6666666666666602251E-1    , Hex  2^-2    *  .AAAAAAAAAAA9F1 */
74 /* p2     = -2.7777777777015591216E-3    , Hex  2^-8    * -.B60B60B5F5EC94 */
75 /* p3     =  6.6137563214379341918E-5    , Hex  2^-13   *  .8AB355792EF15F */
76 /* p4     = -1.6533902205465250480E-6    , Hex  2^-19   * -.DDEA0E2E935F84 */
77 /* p5     =  4.1381367970572387085E-8    , Hex  2^-24   *  .B1BB4B95F52683 */
78 static long     ln2hix[] = { _0x(7217,4031), _0x(0000,f7d0)};
79 static long     ln2lox[] = { _0x(bcd5,2ce7), _0x(d9cc,e4f1)};
80 static long    lnhugex[] = { _0x(ec1d,43bd), _0x(9010,a73e)};
81 static long    lntinyx[] = { _0x(4f01,c3bf), _0x(33af,d72e)};
82 static long    invln2x[] = { _0x(aa3b,40b8), _0x(17f1,295c)};
83 static long        p1x[] = { _0x(aaaa,3f2a), _0x(a9f1,aaaa)};
84 static long        p2x[] = { _0x(0b60,bc36), _0x(ec94,b5f5)};
85 static long        p3x[] = { _0x(b355,398a), _0x(f15f,792e)};
86 static long        p4x[] = { _0x(ea0e,b6dd), _0x(5f84,2e93)};
87 static long        p5x[] = { _0x(bb4b,3431), _0x(2683,95f5)};
88 #define    ln2hi    (*(double*)ln2hix)
89 #define    ln2lo    (*(double*)ln2lox)
90 #define   lnhuge    (*(double*)lnhugex)
91 #define   lntiny    (*(double*)lntinyx)
92 #define   invln2    (*(double*)invln2x)
93 #define       p1    (*(double*)p1x)
94 #define       p2    (*(double*)p2x)
95 #define       p3    (*(double*)p3x)
96 #define       p4    (*(double*)p4x)
97 #define       p5    (*(double*)p5x)
98 
99 #else	/* defined(vax)||defined(tahoe)	*/
100 static double
101 p1     =  1.6666666666666601904E-1    , /*Hex  2^-3    *  1.555555555553E */
102 p2     = -2.7777777777015593384E-3    , /*Hex  2^-9    * -1.6C16C16BEBD93 */
103 p3     =  6.6137563214379343612E-5    , /*Hex  2^-14   *  1.1566AAF25DE2C */
104 p4     = -1.6533902205465251539E-6    , /*Hex  2^-20   * -1.BBD41C5D26BF1 */
105 p5     =  4.1381367970572384604E-8    , /*Hex  2^-25   *  1.6376972BEA4D0 */
106 ln2hi  =  6.9314718036912381649E-1    , /*Hex  2^ -1   *  1.62E42FEE00000 */
107 ln2lo  =  1.9082149292705877000E-10   , /*Hex  2^-33   *  1.A39EF35793C76 */
108 lnhuge =  7.1602103751842355450E2     , /*Hex  2^  9   *  1.6602B15B7ECF2 */
109 lntiny = -7.5137154372698068983E2     , /*Hex  2^  9   * -1.77AF8EBEAE354 */
110 invln2 =  1.4426950408889633870E0     ; /*Hex  2^  0   *  1.71547652B82FE */
111 #endif	/* defined(vax)||defined(tahoe)	*/
112 
113 double exp(x)
114 double x;
115 {
116 	double scalb(), copysign(), z,hi,lo,c;
117 	int k,finite();
118 
119 #if !defined(vax)&&!defined(tahoe)
120 	if(x!=x) return(x);	/* x is NaN */
121 #endif	/* !defined(vax)&&!defined(tahoe) */
122 	if( x <= lnhuge ) {
123 		if( x >= lntiny ) {
124 
125 		    /* argument reduction : x --> x - k*ln2 */
126 
127 			k=invln2*x+copysign(0.5,x);	/* k=NINT(x/ln2) */
128 
129 		    /* express x-k*ln2 as hi-lo and let x=hi-lo rounded */
130 
131 			hi=x-k*ln2hi;
132 			x=hi-(lo=k*ln2lo);
133 
134 		    /* return 2^k*[1+x+x*c/(2+c)]  */
135 			z=x*x;
136 			c= x - z*(p1+z*(p2+z*(p3+z*(p4+z*p5))));
137 			return  scalb(1.0+(hi-(lo-(x*c)/(2.0-c))),k);
138 
139 		}
140 		/* end of x > lntiny */
141 
142 		else
143 		     /* exp(-big#) underflows to zero */
144 		     if(finite(x))  return(scalb(1.0,-5000));
145 
146 		     /* exp(-INF) is zero */
147 		     else return(0.0);
148 	}
149 	/* end of x < lnhuge */
150 
151 	else
152 	/* exp(INF) is INF, exp(+big#) overflows to INF */
153 	    return( finite(x) ?  scalb(1.0,5000)  : x);
154 }
155