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 "@(#)log.c 4.5 (Berkeley) 8/21/85; 1.6 (ucb.elefunt) 07/13/87"; 17 #endif /* not lint */ 18 19 /* LOG(X) 20 * RETURN THE LOGARITHM OF x 21 * DOUBLE PRECISION (VAX D FORMAT 56 bits or IEEE DOUBLE 53 BITS) 22 * CODED IN C BY K.C. NG, 1/19/85; 23 * REVISED BY K.C. NG on 2/7/85, 3/7/85, 3/24/85, 4/16/85. 24 * 25 * Required system supported functions: 26 * scalb(x,n) 27 * copysign(x,y) 28 * logb(x) 29 * finite(x) 30 * 31 * Required kernel function: 32 * log__L(z) 33 * 34 * Method : 35 * 1. Argument Reduction: find k and f such that 36 * x = 2^k * (1+f), 37 * where sqrt(2)/2 < 1+f < sqrt(2) . 38 * 39 * 2. Let s = f/(2+f) ; based on log(1+f) = log(1+s) - log(1-s) 40 * = 2s + 2/3 s**3 + 2/5 s**5 + ....., 41 * log(1+f) is computed by 42 * 43 * log(1+f) = 2s + s*log__L(s*s) 44 * where 45 * log__L(z) = z*(L1 + z*(L2 + z*(... (L6 + z*L7)...))) 46 * 47 * See log__L() for the values of the coefficients. 48 * 49 * 3. Finally, log(x) = k*ln2 + log(1+f). (Here n*ln2 will be stored 50 * in two floating point number: n*ln2hi + n*ln2lo, n*ln2hi is exact 51 * since the last 20 bits of ln2hi is 0.) 52 * 53 * Special cases: 54 * log(x) is NaN with signal if x < 0 (including -INF) ; 55 * log(+INF) is +INF; log(0) is -INF with signal; 56 * log(NaN) is that NaN with no signal. 57 * 58 * Accuracy: 59 * log(x) returns the exact log(x) nearly rounded. In a test run with 60 * 1,536,000 random arguments on a VAX, the maximum observed error was 61 * .826 ulps (units in the last place). 62 * 63 * Constants: 64 * The hexadecimal values are the intended ones for the following constants. 65 * The decimal values may be used, provided that the compiler will convert 66 * from decimal to binary accurately enough to produce the hexadecimal values 67 * shown. 68 */ 69 70 #if defined(vax)||defined(tahoe) /* VAX D format */ 71 #include <errno.h> 72 #ifdef vax 73 #define _0x(A,B) 0x/**/A/**/B 74 #else /* vax */ 75 #define _0x(A,B) 0x/**/B/**/A 76 #endif /* vax */ 77 /* static double */ 78 /* ln2hi = 6.9314718055829871446E-1 , Hex 2^ 0 * .B17217F7D00000 */ 79 /* ln2lo = 1.6465949582897081279E-12 , Hex 2^-39 * .E7BCD5E4F1D9CC */ 80 /* sqrt2 = 1.4142135623730950622E0 ; Hex 2^ 1 * .B504F333F9DE65 */ 81 static long ln2hix[] = { _0x(7217,4031), _0x(0000,f7d0)}; 82 static long ln2lox[] = { _0x(bcd5,2ce7), _0x(d9cc,e4f1)}; 83 static long sqrt2x[] = { _0x(04f3,40b5), _0x(de65,33f9)}; 84 #define ln2hi (*(double*)ln2hix) 85 #define ln2lo (*(double*)ln2lox) 86 #define sqrt2 (*(double*)sqrt2x) 87 #else /* defined(vax)||defined(tahoe) */ 88 static double 89 ln2hi = 6.9314718036912381649E-1 , /*Hex 2^ -1 * 1.62E42FEE00000 */ 90 ln2lo = 1.9082149292705877000E-10 , /*Hex 2^-33 * 1.A39EF35793C76 */ 91 sqrt2 = 1.4142135623730951455E0 ; /*Hex 2^ 0 * 1.6A09E667F3BCD */ 92 #endif /* defined(vax)||defined(tahoe) */ 93 94 double log(x) 95 double x; 96 { 97 static double zero=0.0, negone= -1.0, half=1.0/2.0; 98 double logb(),scalb(),copysign(),log__L(),s,z,t; 99 int k,n,finite(); 100 101 #if !defined(vax)&&!defined(tahoe) 102 if(x!=x) return(x); /* x is NaN */ 103 #endif /* !defined(vax)&&!defined(tahoe) */ 104 if(finite(x)) { 105 if( x > zero ) { 106 107 /* argument reduction */ 108 k=logb(x); x=scalb(x,-k); 109 if(k == -1022) /* subnormal no. */ 110 {n=logb(x); x=scalb(x,-n); k+=n;} 111 if(x >= sqrt2 ) {k += 1; x *= half;} 112 x += negone ; 113 114 /* compute log(1+x) */ 115 s=x/(2+x); t=x*x*half; 116 z=k*ln2lo+s*(t+log__L(s*s)); 117 x += (z - t) ; 118 119 return(k*ln2hi+x); 120 } 121 /* end of if (x > zero) */ 122 123 else { 124 #if defined(vax)||defined(tahoe) 125 extern double infnan(); 126 if ( x == zero ) 127 return (infnan(-ERANGE)); /* -INF */ 128 else 129 return (infnan(EDOM)); /* NaN */ 130 #else /* defined(vax)||defined(tahoe) */ 131 /* zero argument, return -INF with signal */ 132 if ( x == zero ) 133 return( negone/zero ); 134 135 /* negative argument, return NaN with signal */ 136 else 137 return ( zero / zero ); 138 #endif /* defined(vax)||defined(tahoe) */ 139 } 140 } 141 /* end of if (finite(x)) */ 142 /* NOTREACHED if defined(vax)||defined(tahoe) */ 143 144 /* log(-INF) is NaN with signal */ 145 else if (x<0) 146 return(zero/zero); 147 148 /* log(+INF) is +INF */ 149 else return(x); 150 151 } 152