1*34124Sbostic /* 224593Szliu * Copyright (c) 1985 Regents of the University of California. 3*34124Sbostic * All rights reserved. 4*34124Sbostic * 5*34124Sbostic * Redistribution and use in source and binary forms are permitted 6*34124Sbostic * provided that this notice is preserved and that due credit is given 7*34124Sbostic * to the University of California at Berkeley. The name of the University 8*34124Sbostic * may not be used to endorse or promote products derived from this 9*34124Sbostic * software without specific prior written permission. This software 10*34124Sbostic * is provided ``as is'' without express or implied warranty. 11*34124Sbostic * 12*34124Sbostic * All recipients should regard themselves as participants in an ongoing 13*34124Sbostic * research project and hence should feel obligated to report their 14*34124Sbostic * experiences (good or bad) with these elementary function codes, using 15*34124Sbostic * the sendbug(8) program, to the authors. 1624593Szliu */ 1724593Szliu 1824593Szliu #ifndef lint 19*34124Sbostic static char sccsid[] = "@(#)exp.c 5.2 (Berkeley) 04/29/88"; 20*34124Sbostic #endif /* not lint */ 2124593Szliu 2224593Szliu /* EXP(X) 2324593Szliu * RETURN THE EXPONENTIAL OF X 2424593Szliu * DOUBLE PRECISION (IEEE 53 bits, VAX D FORMAT 56 BITS) 2524593Szliu * CODED IN C BY K.C. NG, 1/19/85; 2629410Selefunt * REVISED BY K.C. NG on 2/6/85, 2/15/85, 3/7/85, 3/24/85, 4/16/85, 6/14/86. 2724593Szliu * 2824593Szliu * Required system supported functions: 2924593Szliu * scalb(x,n) 3024593Szliu * copysign(x,y) 3124593Szliu * finite(x) 3224593Szliu * 3324593Szliu * Method: 3424593Szliu * 1. Argument Reduction: given the input x, find r and integer k such 3524593Szliu * that 3624593Szliu * x = k*ln2 + r, |r| <= 0.5*ln2 . 3724593Szliu * r will be represented as r := z+c for better accuracy. 3824593Szliu * 3929410Selefunt * 2. Compute exp(r) by 4024593Szliu * 4129410Selefunt * exp(r) = 1 + r + r*R1/(2-R1), 4229410Selefunt * where 4329410Selefunt * R1 = x - x^2*(p1+x^2*(p2+x^2*(p3+x^2*(p4+p5*x^2)))). 4424593Szliu * 4529410Selefunt * 3. exp(x) = 2^k * exp(r) . 4624593Szliu * 4724593Szliu * Special cases: 4824593Szliu * exp(INF) is INF, exp(NaN) is NaN; 4924593Szliu * exp(-INF)= 0; 5024593Szliu * for finite argument, only exp(0)=1 is exact. 5124593Szliu * 5224593Szliu * Accuracy: 5324593Szliu * exp(x) returns the exponential of x nearly rounded. In a test run 5424593Szliu * with 1,156,000 random arguments on a VAX, the maximum observed 5529410Selefunt * error was 0.869 ulps (units in the last place). 5624593Szliu * 5724593Szliu * Constants: 5824593Szliu * The hexadecimal values are the intended ones for the following constants. 5924593Szliu * The decimal values may be used, provided that the compiler will convert 6024593Szliu * from decimal to binary accurately enough to produce the hexadecimal values 6124593Szliu * shown. 6224593Szliu */ 6324593Szliu 6431853Szliu #if defined(vax)||defined(tahoe) /* VAX D format */ 6531853Szliu #ifdef vax 6631812Szliu #define _0x(A,B) 0x/**/A/**/B 6731853Szliu #else /* vax */ 6831812Szliu #define _0x(A,B) 0x/**/B/**/A 6931853Szliu #endif /* vax */ 7026893Selefunt /* static double */ 7124593Szliu /* ln2hi = 6.9314718055829871446E-1 , Hex 2^ 0 * .B17217F7D00000 */ 7224593Szliu /* ln2lo = 1.6465949582897081279E-12 , Hex 2^-39 * .E7BCD5E4F1D9CC */ 7324593Szliu /* lnhuge = 9.4961163736712506989E1 , Hex 2^ 7 * .BDEC1DA73E9010 */ 7424593Szliu /* lntiny = -9.5654310917272452386E1 , Hex 2^ 7 * -.BF4F01D72E33AF */ 7524593Szliu /* invln2 = 1.4426950408889634148E0 ; Hex 2^ 1 * .B8AA3B295C17F1 */ 7629410Selefunt /* p1 = 1.6666666666666602251E-1 , Hex 2^-2 * .AAAAAAAAAAA9F1 */ 7729410Selefunt /* p2 = -2.7777777777015591216E-3 , Hex 2^-8 * -.B60B60B5F5EC94 */ 7829410Selefunt /* p3 = 6.6137563214379341918E-5 , Hex 2^-13 * .8AB355792EF15F */ 7929410Selefunt /* p4 = -1.6533902205465250480E-6 , Hex 2^-19 * -.DDEA0E2E935F84 */ 8029410Selefunt /* p5 = 4.1381367970572387085E-8 , Hex 2^-24 * .B1BB4B95F52683 */ 8131812Szliu static long ln2hix[] = { _0x(7217,4031), _0x(0000,f7d0)}; 8231812Szliu static long ln2lox[] = { _0x(bcd5,2ce7), _0x(d9cc,e4f1)}; 8331812Szliu static long lnhugex[] = { _0x(ec1d,43bd), _0x(9010,a73e)}; 8431812Szliu static long lntinyx[] = { _0x(4f01,c3bf), _0x(33af,d72e)}; 8531812Szliu static long invln2x[] = { _0x(aa3b,40b8), _0x(17f1,295c)}; 8631812Szliu static long p1x[] = { _0x(aaaa,3f2a), _0x(a9f1,aaaa)}; 8731812Szliu static long p2x[] = { _0x(0b60,bc36), _0x(ec94,b5f5)}; 8831812Szliu static long p3x[] = { _0x(b355,398a), _0x(f15f,792e)}; 8931812Szliu static long p4x[] = { _0x(ea0e,b6dd), _0x(5f84,2e93)}; 9031812Szliu static long p5x[] = { _0x(bb4b,3431), _0x(2683,95f5)}; 9124593Szliu #define ln2hi (*(double*)ln2hix) 9224593Szliu #define ln2lo (*(double*)ln2lox) 9324593Szliu #define lnhuge (*(double*)lnhugex) 9424593Szliu #define lntiny (*(double*)lntinyx) 9524593Szliu #define invln2 (*(double*)invln2x) 9629410Selefunt #define p1 (*(double*)p1x) 9729410Selefunt #define p2 (*(double*)p2x) 9829410Selefunt #define p3 (*(double*)p3x) 9929410Selefunt #define p4 (*(double*)p4x) 10029410Selefunt #define p5 (*(double*)p5x) 10129410Selefunt 10231853Szliu #else /* defined(vax)||defined(tahoe) */ 10326893Selefunt static double 10429410Selefunt p1 = 1.6666666666666601904E-1 , /*Hex 2^-3 * 1.555555555553E */ 10529410Selefunt p2 = -2.7777777777015593384E-3 , /*Hex 2^-9 * -1.6C16C16BEBD93 */ 10629410Selefunt p3 = 6.6137563214379343612E-5 , /*Hex 2^-14 * 1.1566AAF25DE2C */ 10729410Selefunt p4 = -1.6533902205465251539E-6 , /*Hex 2^-20 * -1.BBD41C5D26BF1 */ 10829410Selefunt p5 = 4.1381367970572384604E-8 , /*Hex 2^-25 * 1.6376972BEA4D0 */ 10924593Szliu ln2hi = 6.9314718036912381649E-1 , /*Hex 2^ -1 * 1.62E42FEE00000 */ 11024593Szliu ln2lo = 1.9082149292705877000E-10 , /*Hex 2^-33 * 1.A39EF35793C76 */ 11124593Szliu lnhuge = 7.1602103751842355450E2 , /*Hex 2^ 9 * 1.6602B15B7ECF2 */ 11224593Szliu lntiny = -7.5137154372698068983E2 , /*Hex 2^ 9 * -1.77AF8EBEAE354 */ 11324593Szliu invln2 = 1.4426950408889633870E0 ; /*Hex 2^ 0 * 1.71547652B82FE */ 11431853Szliu #endif /* defined(vax)||defined(tahoe) */ 11524593Szliu 11624593Szliu double exp(x) 11724593Szliu double x; 11824593Szliu { 11929410Selefunt double scalb(), copysign(), z,hi,lo,c; 12024593Szliu int k,finite(); 12124593Szliu 12231853Szliu #if !defined(vax)&&!defined(tahoe) 12324593Szliu if(x!=x) return(x); /* x is NaN */ 12431853Szliu #endif /* !defined(vax)&&!defined(tahoe) */ 12524593Szliu if( x <= lnhuge ) { 12624593Szliu if( x >= lntiny ) { 12724593Szliu 12824593Szliu /* argument reduction : x --> x - k*ln2 */ 12924593Szliu 13024593Szliu k=invln2*x+copysign(0.5,x); /* k=NINT(x/ln2) */ 13124593Szliu 13229410Selefunt /* express x-k*ln2 as hi-lo and let x=hi-lo rounded */ 13329410Selefunt 13424593Szliu hi=x-k*ln2hi; 13529410Selefunt x=hi-(lo=k*ln2lo); 13624593Szliu 13729410Selefunt /* return 2^k*[1+x+x*c/(2+c)] */ 13829410Selefunt z=x*x; 13929410Selefunt c= x - z*(p1+z*(p2+z*(p3+z*(p4+z*p5)))); 14029890Selefunt return scalb(1.0+(hi-(lo-(x*c)/(2.0-c))),k); 14129410Selefunt 14224593Szliu } 14324593Szliu /* end of x > lntiny */ 14424593Szliu 14524593Szliu else 14624593Szliu /* exp(-big#) underflows to zero */ 14724593Szliu if(finite(x)) return(scalb(1.0,-5000)); 14824593Szliu 14924593Szliu /* exp(-INF) is zero */ 15024593Szliu else return(0.0); 15124593Szliu } 15224593Szliu /* end of x < lnhuge */ 15324593Szliu 15424593Szliu else 15524593Szliu /* exp(INF) is INF, exp(+big#) overflows to INF */ 15624593Szliu return( finite(x) ? scalb(1.0,5000) : x); 15724593Szliu } 158