Update copyright dates with scripts/update-copyrights.
[glibc.git] / sysdeps / ieee754 / dbl-64 / e_log.c
blob7a498e83e1395c4b06faf0217005935051f0e579
1 /*
2 * IBM Accurate Mathematical Library
3 * written by International Business Machines Corp.
4 * Copyright (C) 2001-2015 Free Software Foundation, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 /*********************************************************************/
20 /* */
21 /* MODULE_NAME:ulog.c */
22 /* */
23 /* FUNCTION:ulog */
24 /* */
25 /* FILES NEEDED: dla.h endian.h mpa.h mydefs.h ulog.h */
26 /* mpexp.c mplog.c mpa.c */
27 /* ulog.tbl */
28 /* */
29 /* An ultimate log routine. Given an IEEE double machine number x */
30 /* it computes the correctly rounded (to nearest) value of log(x). */
31 /* Assumption: Machine arithmetic operations are performed in */
32 /* round to nearest mode of IEEE 754 standard. */
33 /* */
34 /*********************************************************************/
37 #include "endian.h"
38 #include <dla.h>
39 #include "mpa.h"
40 #include "MathLib.h"
41 #include <math_private.h>
42 #include <stap-probe.h>
44 #ifndef SECTION
45 # define SECTION
46 #endif
48 void __mplog (mp_no *, mp_no *, int);
50 /*********************************************************************/
51 /* An ultimate log routine. Given an IEEE double machine number x */
52 /* it computes the correctly rounded (to nearest) value of log(x). */
53 /*********************************************************************/
54 double
55 SECTION
56 __ieee754_log (double x)
58 #define M 4
59 static const int pr[M] = { 8, 10, 18, 32 };
60 int i, j, n, ux, dx, p;
61 double dbl_n, u, p0, q, r0, w, nln2a, luai, lubi, lvaj, lvbj,
62 sij, ssij, ttij, A, B, B0, y, y1, y2, polI, polII, sa, sb,
63 t1, t2, t7, t8, t, ra, rb, ww,
64 a0, aa0, s1, s2, ss2, s3, ss3, a1, aa1, a, aa, b, bb, c;
65 #ifndef DLA_FMS
66 double t3, t4, t5, t6;
67 #endif
68 number num;
69 mp_no mpx, mpy, mpy1, mpy2, mperr;
71 #include "ulog.tbl"
72 #include "ulog.h"
74 /* Treating special values of x ( x<=0, x=INF, x=NaN etc.). */
76 num.d = x;
77 ux = num.i[HIGH_HALF];
78 dx = num.i[LOW_HALF];
79 n = 0;
80 if (__glibc_unlikely (ux < 0x00100000))
82 if (__glibc_unlikely (((ux & 0x7fffffff) | dx) == 0))
83 return MHALF / 0.0; /* return -INF */
84 if (__glibc_unlikely (ux < 0))
85 return (x - x) / 0.0; /* return NaN */
86 n -= 54;
87 x *= two54.d; /* scale x */
88 num.d = x;
90 if (__glibc_unlikely (ux >= 0x7ff00000))
91 return x + x; /* INF or NaN */
93 /* Regular values of x */
95 w = x - 1;
96 if (__glibc_likely (ABS (w) > U03))
97 goto case_03;
99 /* log (1) is +0 in all rounding modes. */
100 if (w == 0.0)
101 return 0.0;
103 /*--- Stage I, the case abs(x-1) < 0.03 */
105 t8 = MHALF * w;
106 EMULV (t8, w, a, aa, t1, t2, t3, t4, t5);
107 EADD (w, a, b, bb);
108 /* Evaluate polynomial II */
109 polII = b7.d + w * b8.d;
110 polII = b6.d + w * polII;
111 polII = b5.d + w * polII;
112 polII = b4.d + w * polII;
113 polII = b3.d + w * polII;
114 polII = b2.d + w * polII;
115 polII = b1.d + w * polII;
116 polII = b0.d + w * polII;
117 polII *= w * w * w;
118 c = (aa + bb) + polII;
120 /* End stage I, case abs(x-1) < 0.03 */
121 if ((y = b + (c + b * E2)) == b + (c - b * E2))
122 return y;
124 /*--- Stage II, the case abs(x-1) < 0.03 */
126 a = d19.d + w * d20.d;
127 a = d18.d + w * a;
128 a = d17.d + w * a;
129 a = d16.d + w * a;
130 a = d15.d + w * a;
131 a = d14.d + w * a;
132 a = d13.d + w * a;
133 a = d12.d + w * a;
134 a = d11.d + w * a;
136 EMULV (w, a, s2, ss2, t1, t2, t3, t4, t5);
137 ADD2 (d10.d, dd10.d, s2, ss2, s3, ss3, t1, t2);
138 MUL2 (w, 0, s3, ss3, s2, ss2, t1, t2, t3, t4, t5, t6, t7, t8);
139 ADD2 (d9.d, dd9.d, s2, ss2, s3, ss3, t1, t2);
140 MUL2 (w, 0, s3, ss3, s2, ss2, t1, t2, t3, t4, t5, t6, t7, t8);
141 ADD2 (d8.d, dd8.d, s2, ss2, s3, ss3, t1, t2);
142 MUL2 (w, 0, s3, ss3, s2, ss2, t1, t2, t3, t4, t5, t6, t7, t8);
143 ADD2 (d7.d, dd7.d, s2, ss2, s3, ss3, t1, t2);
144 MUL2 (w, 0, s3, ss3, s2, ss2, t1, t2, t3, t4, t5, t6, t7, t8);
145 ADD2 (d6.d, dd6.d, s2, ss2, s3, ss3, t1, t2);
146 MUL2 (w, 0, s3, ss3, s2, ss2, t1, t2, t3, t4, t5, t6, t7, t8);
147 ADD2 (d5.d, dd5.d, s2, ss2, s3, ss3, t1, t2);
148 MUL2 (w, 0, s3, ss3, s2, ss2, t1, t2, t3, t4, t5, t6, t7, t8);
149 ADD2 (d4.d, dd4.d, s2, ss2, s3, ss3, t1, t2);
150 MUL2 (w, 0, s3, ss3, s2, ss2, t1, t2, t3, t4, t5, t6, t7, t8);
151 ADD2 (d3.d, dd3.d, s2, ss2, s3, ss3, t1, t2);
152 MUL2 (w, 0, s3, ss3, s2, ss2, t1, t2, t3, t4, t5, t6, t7, t8);
153 ADD2 (d2.d, dd2.d, s2, ss2, s3, ss3, t1, t2);
154 MUL2 (w, 0, s3, ss3, s2, ss2, t1, t2, t3, t4, t5, t6, t7, t8);
155 MUL2 (w, 0, s2, ss2, s3, ss3, t1, t2, t3, t4, t5, t6, t7, t8);
156 ADD2 (w, 0, s3, ss3, b, bb, t1, t2);
158 /* End stage II, case abs(x-1) < 0.03 */
159 if ((y = b + (bb + b * E4)) == b + (bb - b * E4))
160 return y;
161 goto stage_n;
163 /*--- Stage I, the case abs(x-1) > 0.03 */
164 case_03:
166 /* Find n,u such that x = u*2**n, 1/sqrt(2) < u < sqrt(2) */
167 n += (num.i[HIGH_HALF] >> 20) - 1023;
168 num.i[HIGH_HALF] = (num.i[HIGH_HALF] & 0x000fffff) | 0x3ff00000;
169 if (num.d > SQRT_2)
171 num.d *= HALF;
172 n++;
174 u = num.d;
175 dbl_n = (double) n;
177 /* Find i such that ui=1+(i-75)/2**8 is closest to u (i= 0,1,2,...,181) */
178 num.d += h1.d;
179 i = (num.i[HIGH_HALF] & 0x000fffff) >> 12;
181 /* Find j such that vj=1+(j-180)/2**16 is closest to v=u/ui (j= 0,...,361) */
182 num.d = u * Iu[i].d + h2.d;
183 j = (num.i[HIGH_HALF] & 0x000fffff) >> 4;
185 /* Compute w=(u-ui*vj)/(ui*vj) */
186 p0 = (1 + (i - 75) * DEL_U) * (1 + (j - 180) * DEL_V);
187 q = u - p0;
188 r0 = Iu[i].d * Iv[j].d;
189 w = q * r0;
191 /* Evaluate polynomial I */
192 polI = w + (a2.d + a3.d * w) * w * w;
194 /* Add up everything */
195 nln2a = dbl_n * LN2A;
196 luai = Lu[i][0].d;
197 lubi = Lu[i][1].d;
198 lvaj = Lv[j][0].d;
199 lvbj = Lv[j][1].d;
200 EADD (luai, lvaj, sij, ssij);
201 EADD (nln2a, sij, A, ttij);
202 B0 = (((lubi + lvbj) + ssij) + ttij) + dbl_n * LN2B;
203 B = polI + B0;
205 /* End stage I, case abs(x-1) >= 0.03 */
206 if ((y = A + (B + E1)) == A + (B - E1))
207 return y;
210 /*--- Stage II, the case abs(x-1) > 0.03 */
212 /* Improve the accuracy of r0 */
213 EMULV (p0, r0, sa, sb, t1, t2, t3, t4, t5);
214 t = r0 * ((1 - sa) - sb);
215 EADD (r0, t, ra, rb);
217 /* Compute w */
218 MUL2 (q, 0, ra, rb, w, ww, t1, t2, t3, t4, t5, t6, t7, t8);
220 EADD (A, B0, a0, aa0);
222 /* Evaluate polynomial III */
223 s1 = (c3.d + (c4.d + c5.d * w) * w) * w;
224 EADD (c2.d, s1, s2, ss2);
225 MUL2 (s2, ss2, w, ww, s3, ss3, t1, t2, t3, t4, t5, t6, t7, t8);
226 MUL2 (s3, ss3, w, ww, s2, ss2, t1, t2, t3, t4, t5, t6, t7, t8);
227 ADD2 (s2, ss2, w, ww, s3, ss3, t1, t2);
228 ADD2 (s3, ss3, a0, aa0, a1, aa1, t1, t2);
230 /* End stage II, case abs(x-1) >= 0.03 */
231 if ((y = a1 + (aa1 + E3)) == a1 + (aa1 - E3))
232 return y;
235 /* Final stages. Use multi-precision arithmetic. */
236 stage_n:
238 for (i = 0; i < M; i++)
240 p = pr[i];
241 __dbl_mp (x, &mpx, p);
242 __dbl_mp (y, &mpy, p);
243 __mplog (&mpx, &mpy, p);
244 __dbl_mp (e[i].d, &mperr, p);
245 __add (&mpy, &mperr, &mpy1, p);
246 __sub (&mpy, &mperr, &mpy2, p);
247 __mp_dbl (&mpy1, &y1, p);
248 __mp_dbl (&mpy2, &y2, p);
249 if (y1 == y2)
251 LIBC_PROBE (slowlog, 3, &p, &x, &y1);
252 return y1;
255 LIBC_PROBE (slowlog_inexact, 3, &p, &x, &y1);
256 return y1;
259 #ifndef __ieee754_log
260 strong_alias (__ieee754_log, __log_finite)
261 #endif