1 /* origin: FreeBSD /usr/src/lib/msun/src/e_rem_pio2.c */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunSoft, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
12 * Optimized by Bruce D. Evans.
16 * return the remainder of x rem pi/2 in y[0]+y[1]
17 * use __rem_pio2_large() for large x
23 * invpio2: 53 bits of 2/pi
24 * pio2_1: first 33 bit of pi/2
25 * pio2_1t: pi/2 - pio2_1
26 * pio2_2: second 33 bit of pi/2
27 * pio2_2t: pi/2 - (pio2_1+pio2_2)
28 * pio2_3: third 33 bit of pi/2
29 * pio2_3t: pi/2 - (pio2_1+pio2_2+pio2_3)
32 two24 = 1.67772160000000000000e+07, /* 0x41700000, 0x00000000 */
33 invpio2 = 6.36619772367581382433e-01, /* 0x3FE45F30, 0x6DC9C883 */
34 pio2_1 = 1.57079632673412561417e+00, /* 0x3FF921FB, 0x54400000 */
35 pio2_1t = 6.07710050650619224932e-11, /* 0x3DD0B461, 0x1A626331 */
36 pio2_2 = 6.07710050630396597660e-11, /* 0x3DD0B461, 0x1A600000 */
37 pio2_2t = 2.02226624879595063154e-21, /* 0x3BA3198A, 0x2E037073 */
38 pio2_3 = 2.02226624871116645580e-21, /* 0x3BA3198A, 0x2E000000 */
39 pio2_3t = 8.47842766036889956997e-32; /* 0x397B839A, 0x252049C1 */
41 /* caller must handle the case when reduction is not needed: |x| ~<= pi/4 */
42 int __rem_pio2(double x, double *y)
46 int32_t e0,i,j,nx,n,ix,hx;
51 if (ix <= 0x400f6a7a) { /* |x| ~<= 5pi/4 */
52 if ((ix & 0xfffff) == 0x921fb) /* |x| ~= pi/2 or 2pi/2 */
53 goto medium; /* cancellation -- use medium case */
54 if (ix <= 0x4002d97c) { /* |x| ~<= 3pi/4 */
56 z = x - pio2_1; /* one round good to 85 bits */
58 y[1] = (z-y[0]) - pio2_1t;
63 y[1] = (z-y[0]) + pio2_1t;
70 y[1] = (z-y[0]) - 2*pio2_1t;
75 y[1] = (z-y[0]) + 2*pio2_1t;
80 if (ix <= 0x401c463b) { /* |x| ~<= 9pi/4 */
81 if (ix <= 0x4015fdbc) { /* |x| ~<= 7pi/4 */
82 if (ix == 0x4012d97c) /* |x| ~= 3pi/2 */
87 y[1] = (z-y[0]) - 3*pio2_1t;
92 y[1] = (z-y[0]) + 3*pio2_1t;
96 if (ix == 0x401921fb) /* |x| ~= 4pi/2 */
100 y[0] = z - 4*pio2_1t;
101 y[1] = (z-y[0]) - 4*pio2_1t;
105 y[0] = z + 4*pio2_1t;
106 y[1] = (z-y[0]) + 4*pio2_1t;
111 if (ix < 0x413921fb) { /* |x| ~< 2^20*(pi/2), medium size */
114 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
115 STRICT_ASSIGN(double, fn, x*invpio2 + 0x1.8p52);
118 #ifdef HAVE_EFFICIENT_IRINT
124 w = fn*pio2_1t; /* 1st round, good to 85 bits */
127 GET_HIGH_WORD(high,y[0]);
128 i = j - ((high>>20)&0x7ff);
129 if (i > 16) { /* 2nd round, good to 118 bits */
133 w = fn*pio2_2t - ((t-r)-w);
135 GET_HIGH_WORD(high,y[0]);
136 i = j - ((high>>20)&0x7ff);
137 if (i > 49) { /* 3rd round, good to 151 bits, covers all cases */
141 w = fn*pio2_3t - ((t-r)-w);
149 * all other (large) arguments
151 if (ix >= 0x7ff00000) { /* x is inf or NaN */
155 /* set z = scalbn(|x|,ilogb(x)-23) */
157 e0 = (ix>>20) - 1046; /* e0 = ilogb(z)-23; */
158 INSERT_WORDS(z, ix - ((int32_t)(e0<<20)), low);
159 for (i=0; i<2; i++) {
160 tx[i] = (double)((int32_t)(z));
165 while (tx[nx-1] == 0.0) nx--; /* skip zero term */
166 n = __rem_pio2_large(tx,ty,e0,nx,1);