Bug 1888033 - [Menu Redesign] Add a secret setting and feature flag for the menu...
[gecko.git] / modules / fdlibm / src / e_rem_pio2.cpp
blob1e5e1cc9f4f07e24ecd3fa11ad3e060e4a929b3d
2 /* @(#)e_rem_pio2.c 1.4 95/01/18 */
3 /*
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
7 * Developed at SunSoft, a Sun Microsystems, Inc. business.
8 * Permission to use, copy, modify, and distribute this
9 * software is freely granted, provided that this notice
10 * is preserved.
11 * ====================================================
13 * Optimized by Bruce D. Evans.
16 //#include <sys/cdefs.h>
17 //__FBSDID("$FreeBSD$");
19 /* __ieee754_rem_pio2(x,y)
21 * return the remainder of x rem pi/2 in y[0]+y[1]
22 * use __kernel_rem_pio2()
25 #include <float.h>
27 #include "math_private.h"
30 * invpio2: 53 bits of 2/pi
31 * pio2_1: first 33 bit of pi/2
32 * pio2_1t: pi/2 - pio2_1
33 * pio2_2: second 33 bit of pi/2
34 * pio2_2t: pi/2 - (pio2_1+pio2_2)
35 * pio2_3: third 33 bit of pi/2
36 * pio2_3t: pi/2 - (pio2_1+pio2_2+pio2_3)
39 static const double
40 zero = 0.00000000000000000000e+00, /* 0x00000000, 0x00000000 */
41 two24 = 1.67772160000000000000e+07, /* 0x41700000, 0x00000000 */
42 invpio2 = 6.36619772367581382433e-01, /* 0x3FE45F30, 0x6DC9C883 */
43 pio2_1 = 1.57079632673412561417e+00, /* 0x3FF921FB, 0x54400000 */
44 pio2_1t = 6.07710050650619224932e-11, /* 0x3DD0B461, 0x1A626331 */
45 pio2_2 = 6.07710050630396597660e-11, /* 0x3DD0B461, 0x1A600000 */
46 pio2_2t = 2.02226624879595063154e-21, /* 0x3BA3198A, 0x2E037073 */
47 pio2_3 = 2.02226624871116645580e-21, /* 0x3BA3198A, 0x2E000000 */
48 pio2_3t = 8.47842766036889956997e-32; /* 0x397B839A, 0x252049C1 */
50 #ifdef INLINE_REM_PIO2
51 static inline
52 #endif
53 int
54 __ieee754_rem_pio2(double x, double *y)
56 double z,w,t,r,fn;
57 double tx[3],ty[2];
58 int32_t e0,i,j,nx,n,ix,hx;
59 u_int32_t low;
61 GET_HIGH_WORD(hx,x); /* high word of x */
62 ix = hx&0x7fffffff;
63 #if 0 /* Must be handled in caller. */
64 if(ix<=0x3fe921fb) /* |x| ~<= pi/4 , no need for reduction */
65 {y[0] = x; y[1] = 0; return 0;}
66 #endif
67 if (ix <= 0x400f6a7a) { /* |x| ~<= 5pi/4 */
68 if ((ix & 0xfffff) == 0x921fb) /* |x| ~= pi/2 or 2pi/2 */
69 goto medium; /* cancellation -- use medium case */
70 if (ix <= 0x4002d97c) { /* |x| ~<= 3pi/4 */
71 if (hx > 0) {
72 z = x - pio2_1; /* one round good to 85 bits */
73 y[0] = z - pio2_1t;
74 y[1] = (z-y[0])-pio2_1t;
75 return 1;
76 } else {
77 z = x + pio2_1;
78 y[0] = z + pio2_1t;
79 y[1] = (z-y[0])+pio2_1t;
80 return -1;
82 } else {
83 if (hx > 0) {
84 z = x - 2*pio2_1;
85 y[0] = z - 2*pio2_1t;
86 y[1] = (z-y[0])-2*pio2_1t;
87 return 2;
88 } else {
89 z = x + 2*pio2_1;
90 y[0] = z + 2*pio2_1t;
91 y[1] = (z-y[0])+2*pio2_1t;
92 return -2;
96 if (ix <= 0x401c463b) { /* |x| ~<= 9pi/4 */
97 if (ix <= 0x4015fdbc) { /* |x| ~<= 7pi/4 */
98 if (ix == 0x4012d97c) /* |x| ~= 3pi/2 */
99 goto medium;
100 if (hx > 0) {
101 z = x - 3*pio2_1;
102 y[0] = z - 3*pio2_1t;
103 y[1] = (z-y[0])-3*pio2_1t;
104 return 3;
105 } else {
106 z = x + 3*pio2_1;
107 y[0] = z + 3*pio2_1t;
108 y[1] = (z-y[0])+3*pio2_1t;
109 return -3;
111 } else {
112 if (ix == 0x401921fb) /* |x| ~= 4pi/2 */
113 goto medium;
114 if (hx > 0) {
115 z = x - 4*pio2_1;
116 y[0] = z - 4*pio2_1t;
117 y[1] = (z-y[0])-4*pio2_1t;
118 return 4;
119 } else {
120 z = x + 4*pio2_1;
121 y[0] = z + 4*pio2_1t;
122 y[1] = (z-y[0])+4*pio2_1t;
123 return -4;
127 if(ix<0x413921fb) { /* |x| ~< 2^20*(pi/2), medium size */
128 medium:
129 fn = rnint((double_t)x*invpio2);
130 n = irint(fn);
131 r = x-fn*pio2_1;
132 w = fn*pio2_1t; /* 1st round good to 85 bit */
134 u_int32_t high;
135 j = ix>>20;
136 y[0] = r-w;
137 GET_HIGH_WORD(high,y[0]);
138 i = j-((high>>20)&0x7ff);
139 if(i>16) { /* 2nd iteration needed, good to 118 */
140 t = r;
141 w = fn*pio2_2;
142 r = t-w;
143 w = fn*pio2_2t-((t-r)-w);
144 y[0] = r-w;
145 GET_HIGH_WORD(high,y[0]);
146 i = j-((high>>20)&0x7ff);
147 if(i>49) { /* 3rd iteration need, 151 bits acc */
148 t = r; /* will cover all possible cases */
149 w = fn*pio2_3;
150 r = t-w;
151 w = fn*pio2_3t-((t-r)-w);
152 y[0] = r-w;
156 y[1] = (r-y[0])-w;
157 return n;
160 * all other (large) arguments
162 if(ix>=0x7ff00000) { /* x is inf or NaN */
163 y[0]=y[1]=x-x; return 0;
165 /* set z = scalbn(|x|,ilogb(x)-23) */
166 GET_LOW_WORD(low,x);
167 e0 = (ix>>20)-1046; /* e0 = ilogb(z)-23; */
168 INSERT_WORDS(z, ix - ((int32_t)(e0<<20)), low);
169 for(i=0;i<2;i++) {
170 tx[i] = (double)((int32_t)(z));
171 z = (z-tx[i])*two24;
173 tx[2] = z;
174 nx = 3;
175 while(tx[nx-1]==zero) nx--; /* skip zero term */
176 n = __kernel_rem_pio2(tx,ty,e0,nx,1);
177 if(hx<0) {y[0] = -ty[0]; y[1] = -ty[1]; return -n;}
178 y[0] = ty[0]; y[1] = ty[1]; return n;