@@ -64,6 +64,16 @@ class FdLibm {
64
64
private static final double TWO54 = 0x1.0p54 ; // 1.80143985094819840000e+16
65
65
private static final double HUGE = 1.0e+300 ;
66
66
67
+ /*
68
+ * Constants for bit-wise manipulation of IEEE 754 double
69
+ * values. These constants are for the high-order 32-bits of a
70
+ * 64-bit double value: 1 sign bit as the most significant bit,
71
+ * followed by 11 exponent bits, and then the remaining bits as
72
+ * the significand.
73
+ */
74
+ private static final int SIGN_BIT = 0x8000_0000 ;
75
+ private static final int EXP_BITS = 0x7ff0_0000 ;
76
+ private static final int EXP_SIGNIF_BITS = 0x7fff_ffff ;
67
77
68
78
private FdLibm () {
69
79
throw new UnsupportedOperationException ("No FdLibm instances for you." );
@@ -156,10 +166,10 @@ static double compute(double x) {
156
166
ix = __HI (x );
157
167
158
168
// |x| ~< pi/4
159
- ix &= 0x7fff_ffff ;
169
+ ix &= EXP_SIGNIF_BITS ;
160
170
if (ix <= 0x3fe9_21fb ) {
161
171
return __kernel_sin (x , z , 0 );
162
- } else if (ix >= 0x7ff0_0000 ) { // sin(Inf or NaN) is NaN
172
+ } else if (ix >= EXP_BITS ) { // sin(Inf or NaN) is NaN
163
173
return x - x ;
164
174
} else { // argument reduction needed
165
175
n = RemPio2 .__ieee754_rem_pio2 (x , y );
@@ -211,7 +221,7 @@ static double compute(double x) {
211
221
static double __kernel_sin (double x , double y , int iy ) {
212
222
double z , r , v ;
213
223
int ix ;
214
- ix = __HI (x ) & 0x7fff_ffff ; // high word of x
224
+ ix = __HI (x ) & EXP_SIGNIF_BITS ; // high word of x
215
225
if (ix < 0x3e40_0000 ) { // |x| < 2**-27
216
226
if ((int )x == 0 ) // generate inexact
217
227
return x ;
@@ -269,11 +279,11 @@ static double compute(double x) {
269
279
ix = __HI (x );
270
280
271
281
// |x| ~< pi/4
272
- ix &= 0x7fff_ffff ;
282
+ ix &= EXP_SIGNIF_BITS ;
273
283
if (ix <= 0x3fe9_21fb ) {
274
284
return __kernel_cos (x , z );
275
- } else if (ix >= 0x7ff0_0000 ) { // cos(Inf or NaN) is NaN
276
- return x - x ;
285
+ } else if (ix >= EXP_BITS ) { // cos(Inf or NaN) is NaN
286
+ return x - x ;
277
287
} else { // argument reduction needed
278
288
n = RemPio2 .__ieee754_rem_pio2 (x ,y );
279
289
switch (n & 3 ) {
@@ -331,7 +341,7 @@ static double compute(double x) {
331
341
static double __kernel_cos (double x , double y ) {
332
342
double a , hz , z , r , qx = 0.0 ;
333
343
int ix ;
334
- ix = __HI (x ) & 0x7fff_ffff ; // ix = |x|'s high word
344
+ ix = __HI (x ) & EXP_SIGNIF_BITS ; // ix = |x|'s high word
335
345
if (ix < 0x3e40_0000 ) { // if x < 2**27
336
346
if (((int )x ) == 0 ) { // generate inexact
337
347
return 1.0 ;
@@ -395,11 +405,11 @@ static double compute(double x) {
395
405
ix = __HI (x );
396
406
397
407
// |x| ~< pi/4
398
- ix &= 0x7fff_ffff ;
408
+ ix &= EXP_SIGNIF_BITS ;
399
409
if (ix <= 0x3fe9_21fb ) {
400
410
return __kernel_tan (x , z , 1 );
401
- } else if (ix >= 0x7ff0_0000 ) { // tan(Inf or NaN) is NaN
402
- return x - x ; // NaN
411
+ } else if (ix >= EXP_BITS ) { // tan(Inf or NaN) is NaN
412
+ return x - x ; // NaN
403
413
} else { // argument reduction needed
404
414
n = RemPio2 .__ieee754_rem_pio2 (x , y );
405
415
return __kernel_tan (y [0 ], y [1 ], 1 - ((n & 1 ) << 1 )); // 1 -- n even; -1 -- n odd
@@ -462,7 +472,7 @@ static double __kernel_tan(double x, double y, int iy) {
462
472
double z , r , v , w , s ;
463
473
int ix , hx ;
464
474
hx = __HI (x ); // high word of x
465
- ix = hx & 0x7fff_ffff ; // high word of |x|
475
+ ix = hx & EXP_SIGNIF_BITS ; // high word of |x|
466
476
if (ix < 0x3e30_0000 ) { // x < 2**-28
467
477
if ((int )x == 0 ) { // generate inexact
468
478
if (((ix | __LO (x )) | (iy + 1 )) == 0 ) {
@@ -584,7 +594,7 @@ static int __ieee754_rem_pio2(double x, double[] y) {
584
594
int e0 , i , j , nx , n , ix , hx ;
585
595
586
596
hx = __HI (x ); // high word of x
587
- ix = hx & 0x7fff_ffff ;
597
+ ix = hx & EXP_SIGNIF_BITS ;
588
598
if (ix <= 0x3fe9_21fb ) { // |x| ~<= pi/4 , no need for reduction
589
599
y [0 ] = x ;
590
600
y [1 ] = 0 ;
@@ -655,13 +665,13 @@ static int __ieee754_rem_pio2(double x, double[] y) {
655
665
/*
656
666
* all other (large) arguments
657
667
*/
658
- if (ix >= 0x7ff0_0000 ) { // x is inf or NaN
668
+ if (ix >= EXP_BITS ) { // x is inf or NaN
659
669
y [0 ] = y [1 ] = x - x ;
660
670
return 0 ;
661
671
}
662
- // set z = scalbn(|x|,ilogb(x)-23)
672
+ // set z = scalbn(|x|, ilogb(x)-23)
663
673
z = __LO (z , __LO (x ));
664
- e0 = (ix >> 20 ) - 1046 ; /* e0 = ilogb(z)- 23; */
674
+ e0 = (ix >> 20 ) - 1046 ; // e0 = ilogb(z) - 23;
665
675
z = __HI (z , ix - (e0 << 20 ));
666
676
for (i =0 ; i < 2 ; i ++) {
667
677
tx [i ] = (double )((int )(z ));
@@ -859,7 +869,7 @@ static int __kernel_rem_pio2(double[] x, double[] y, int e0, int nx, int prec, f
859
869
860
870
// compute n
861
871
z = Math .scalb (z , q0 ); // actual value of z
862
- z -= 8.0 *Math .floor (z *0.125 ); // trim off integer >= 8
872
+ z -= 8.0 *Math .floor (z *0.125 ); // trim off integer >= 8
863
873
n = (int ) z ;
864
874
z -= (double )n ;
865
875
ih = 0 ;
@@ -1071,7 +1081,7 @@ static double compute(double x) {
1071
1081
double t = 0 , w , p , q , c , r , s ;
1072
1082
int hx , ix ;
1073
1083
hx = __HI (x );
1074
- ix = hx & 0x7fff_ffff ;
1084
+ ix = hx & EXP_SIGNIF_BITS ;
1075
1085
if (ix >= 0x3ff0_0000 ) { // |x| >= 1
1076
1086
if (((ix - 0x3ff0_0000 ) | __LO (x )) == 0 ) {
1077
1087
// asin(1) = +-pi/2 with inexact
@@ -1157,7 +1167,7 @@ static double compute(double x) {
1157
1167
double z , p , q , r , w , s , c , df ;
1158
1168
int hx , ix ;
1159
1169
hx = __HI (x );
1160
- ix = hx & 0x7fff_ffff ;
1170
+ ix = hx & EXP_SIGNIF_BITS ;
1161
1171
if (ix >= 0x3ff0_0000 ) { // |x| >= 1
1162
1172
if (((ix - 0x3ff0_0000 ) | __LO (x )) == 0 ) { // |x| == 1
1163
1173
if (hx > 0 ) {// acos(1) = 0
@@ -1166,7 +1176,7 @@ static double compute(double x) {
1166
1176
return Math .PI + 2.0 *pio2_lo ;
1167
1177
}
1168
1178
}
1169
- return (x - x )/(x - x ); // acos(|x| > 1) is NaN
1179
+ return (x - x )/(x - x ); // acos(|x| > 1) is NaN
1170
1180
}
1171
1181
if (ix < 0x3fe0_0000 ) { // |x| < 0.5
1172
1182
if (ix <= 0x3c60_0000 ) { // if |x| < 2**-57
@@ -1255,10 +1265,10 @@ static double compute(double x) {
1255
1265
int ix , hx , id ;
1256
1266
1257
1267
hx = __HI (x );
1258
- ix = hx & 0x7fff_ffff ;
1268
+ ix = hx & EXP_SIGNIF_BITS ;
1259
1269
if (ix >= 0x4410_0000 ) { // if |x| >= 2^66
1260
- if (ix > 0x7ff0_0000 ||
1261
- (ix == 0x7ff0_0000 && (__LO (x ) != 0 ))) {
1270
+ if (ix > EXP_BITS ||
1271
+ (ix == EXP_BITS && (__LO (x ) != 0 ))) {
1262
1272
return x +x ; // NaN
1263
1273
}
1264
1274
if (hx > 0 ) {
@@ -1352,10 +1362,10 @@ static double compute(double y, double x) {
1352
1362
/*unsigned*/ int lx , ly ;
1353
1363
1354
1364
hx = __HI (x );
1355
- ix = hx & 0x7fff_ffff ;
1365
+ ix = hx & EXP_SIGNIF_BITS ;
1356
1366
lx = __LO (x );
1357
1367
hy = __HI (y );
1358
- iy = hy & 0x7fff_ffff ;
1368
+ iy = hy & EXP_SIGNIF_BITS ;
1359
1369
ly = __LO (y );
1360
1370
if (Double .isNaN (x ) || Double .isNaN (y ))
1361
1371
return x + y ;
@@ -1378,8 +1388,8 @@ static double compute(double y, double x) {
1378
1388
}
1379
1389
1380
1390
// when x is INF
1381
- if (ix == 0x7ff0_0000 ) {
1382
- if (iy == 0x7ff0_0000 ) {
1391
+ if (ix == EXP_BITS ) {
1392
+ if (iy == EXP_BITS ) {
1383
1393
switch (m ) {
1384
1394
case 0 : return pi_o_4 + tiny ; // atan(+INF, +INF)
1385
1395
case 1 : return -pi_o_4 - tiny ; // atan(-INF, +INF)
@@ -1396,7 +1406,7 @@ static double compute(double y, double x) {
1396
1406
}
1397
1407
}
1398
1408
// when y is INF
1399
- if (iy == 0x7ff0_0000 ) {
1409
+ if (iy == EXP_BITS ) {
1400
1410
return (hy < 0 )? -pi_o_2 - tiny : pi_o_2 + tiny ;
1401
1411
}
1402
1412
@@ -1494,23 +1504,23 @@ static class Sqrt {
1494
1504
1495
1505
static double compute (double x ) {
1496
1506
double z = 0.0 ;
1497
- int sign = 0x8000_0000 ;
1507
+ int sign = SIGN_BIT ;
1498
1508
/*unsigned*/ int r , t1 , s1 , ix1 , q1 ;
1499
1509
int ix0 , s0 , q , m , t , i ;
1500
1510
1501
1511
ix0 = __HI (x ); // high word of x
1502
1512
ix1 = __LO (x ); // low word of x
1503
1513
1504
1514
// take care of Inf and NaN
1505
- if ((ix0 & 0x7ff0_0000 ) == 0x7ff0_0000 ) {
1515
+ if ((ix0 & EXP_BITS ) == EXP_BITS ) {
1506
1516
return x *x + x ; // sqrt(NaN)=NaN, sqrt(+inf)=+inf, sqrt(-inf)=sNaN
1507
1517
}
1508
1518
// take care of zero
1509
1519
if (ix0 <= 0 ) {
1510
1520
if (((ix0 & (~sign )) | ix1 ) == 0 )
1511
1521
return x ; // sqrt(+-0) = +-0
1512
1522
else if (ix0 < 0 )
1513
- return (x - x )/(x - x ); // sqrt(-ve) = sNaN
1523
+ return (x - x )/(x - x ); // sqrt(-ve) = sNaN
1514
1524
}
1515
1525
// normalize x
1516
1526
m = (ix0 >> 20 );
@@ -2136,7 +2146,7 @@ else if (x_abs > 1.0) // (|x| > 1)**+/-inf = inf, 0
2136
2146
}
2137
2147
2138
2148
final int hx = __HI (x );
2139
- int ix = hx & 0x7fffffff ;
2149
+ int ix = hx & EXP_SIGNIF_BITS ;
2140
2150
2141
2151
/*
2142
2152
* When x < 0, determine if y is an odd integer:
@@ -2176,7 +2186,7 @@ else if (y_abs >= 1.0) { // |y| >= 1.0
2176
2186
2177
2187
// (x < 0)**(non-int) is NaN
2178
2188
if ((n | y_is_int ) == 0 )
2179
- return (x - x )/(x - x );
2189
+ return (x - x )/(x - x );
2180
2190
2181
2191
s = 1.0 ; // s (sign of result -ve**odd) = -1 else = 1
2182
2192
if ( (n | (y_is_int - 1 )) == 0 )
@@ -2299,7 +2309,7 @@ else if (j < 0xBB67A)
2299
2309
if (p_l + OVT > z - p_h )
2300
2310
return s * INFINITY ; // Overflow
2301
2311
}
2302
- } else if ((j & 0x7fffffff ) >= 0x4090cc00 ) { // z <= -1075
2312
+ } else if ((j & EXP_SIGNIF_BITS ) >= 0x4090cc00 ) { // z <= -1075
2303
2313
if (((j - 0xc090cc00 ) | i )!=0 ) // z < -1075
2304
2314
return s * 0.0 ; // Underflow
2305
2315
else {
@@ -2319,12 +2329,12 @@ else if (j < 0xBB67A)
2319
2329
final double LG2 = 0x1.62e4_2fef_a39efp-1 ; // 6.93147180559945286227e-01
2320
2330
final double LG2_H = 0x1.62e43p-1 ; // 6.93147182464599609375e-01
2321
2331
final double LG2_L = -0x1.05c6_10ca_86c39p-29 ; // -1.90465429995776804525e-09
2322
- i = j & 0x7fffffff ;
2332
+ i = j & EXP_SIGNIF_BITS ;
2323
2333
k = (i >> 20 ) - 0x3ff ;
2324
2334
n = 0 ;
2325
2335
if (i > 0x3fe00000 ) { // if |z| > 0.5, set n = [z + 0.5]
2326
2336
n = j + (0x00100000 >> (k + 1 ));
2327
- k = ((n & 0x7fffffff ) >> 20 ) - 0x3ff ; // new k for n
2337
+ k = ((n & EXP_SIGNIF_BITS ) >> 20 ) - 0x3ff ; // new k for n
2328
2338
t = 0.0 ;
2329
2339
t = __HI (t , (n & ~(0x000fffff >> k )) );
2330
2340
n = ((n & 0x000fffff ) | 0x00100000 ) >> (20 - k );
@@ -2449,7 +2459,7 @@ public static double compute(double x) {
2449
2459
2450
2460
hx = __HI (x ); /* high word of x */
2451
2461
xsb = (hx >> 31 ) & 1 ; /* sign bit of x */
2452
- hx &= 0x7fffffff ; /* high word of |x| */
2462
+ hx &= EXP_SIGNIF_BITS ; /* high word of |x| */
2453
2463
2454
2464
/* filter out non-finite argument */
2455
2465
if (hx >= 0x40862E42 ) { /* if |x| >= 709.78... */
@@ -2568,8 +2578,6 @@ static final class Log {
2568
2578
Lg6 = 0x1.39a09d078c69fp-3 , // 1.531383769920937332e-01
2569
2579
Lg7 = 0x1.2f112df3e5244p-3 ; // 1.479819860511658591e-01
2570
2580
2571
- private static final double zero = 0.0 ;
2572
-
2573
2581
static double compute (double x ) {
2574
2582
double hfsq , f , s , z , R , w , t1 , t2 , dk ;
2575
2583
int k , hx , i , j ;
@@ -2580,17 +2588,17 @@ static double compute(double x) {
2580
2588
2581
2589
k =0 ;
2582
2590
if (hx < 0x0010_0000 ) { // x < 2**-1022
2583
- if (((hx & 0x7fff_ffff ) | lx ) == 0 ) { // log(+-0) = -inf
2584
- return -TWO54 /zero ;
2591
+ if (((hx & EXP_SIGNIF_BITS ) | lx ) == 0 ) { // log(+-0) = -inf
2592
+ return -TWO54 /0.0 ;
2585
2593
}
2586
2594
if (hx < 0 ) { // log(-#) = NaN
2587
- return (x - x )/zero ;
2595
+ return (x - x )/0.0 ;
2588
2596
}
2589
2597
k -= 54 ;
2590
2598
x *= TWO54 ; // subnormal number, scale up x
2591
2599
hx = __HI (x ); // high word of x
2592
2600
}
2593
- if (hx >= 0x7ff0_0000 ) {
2601
+ if (hx >= EXP_BITS ) {
2594
2602
return x + x ;
2595
2603
}
2596
2604
k += (hx >> 20 ) - 1023 ;
@@ -2600,9 +2608,9 @@ static double compute(double x) {
2600
2608
k += (i >> 20 );
2601
2609
f = x - 1.0 ;
2602
2610
if ((0x000f_ffff & (2 + hx )) < 3 ) {// |f| < 2**-20
2603
- if (f == zero ) {
2611
+ if (f == 0.0 ) {
2604
2612
if (k == 0 ) {
2605
- return zero ;
2613
+ return 0.0 ;
2606
2614
} else {
2607
2615
dk = (double )k ;
2608
2616
return dk *ln2_hi + dk *ln2_lo ;
@@ -2694,7 +2702,7 @@ public static double compute(double x) {
2694
2702
2695
2703
k =0 ;
2696
2704
if (hx < 0x0010_0000 ) { /* x < 2**-1022 */
2697
- if (((hx & 0x7fff_ffff ) | lx ) == 0 ) {
2705
+ if (((hx & EXP_SIGNIF_BITS ) | lx ) == 0 ) {
2698
2706
return -TWO54 /0.0 ; /* log(+-0)=-inf */
2699
2707
}
2700
2708
if (hx < 0 ) {
@@ -2705,12 +2713,12 @@ public static double compute(double x) {
2705
2713
hx = __HI (x );
2706
2714
}
2707
2715
2708
- if (hx >= 0x7ff0_0000 ) {
2716
+ if (hx >= EXP_BITS ) {
2709
2717
return x + x ;
2710
2718
}
2711
2719
2712
2720
k += (hx >> 20 ) - 1023 ;
2713
- i = (k & 0x8000_0000 ) >>> 31 ; // unsigned shift
2721
+ i = (k & SIGN_BIT ) >>> 31 ; // unsigned shift
2714
2722
hx = (hx & 0x000f_ffff ) | ((0x3ff - i ) << 20 );
2715
2723
y = (double )(k + i );
2716
2724
x = __HI (x , hx ); // replace high word of x with hx
@@ -2800,7 +2808,7 @@ public static double compute(double x) {
2800
2808
int k , hx , hu =0 , ax ;
2801
2809
2802
2810
hx = __HI (x ); /* high word of x */
2803
- ax = hx & 0x7fff_ffff ;
2811
+ ax = hx & EXP_SIGNIF_BITS ;
2804
2812
2805
2813
k = 1 ;
2806
2814
if (hx < 0x3FDA_827A ) { /* x < 0.41422 */
@@ -2826,7 +2834,7 @@ public static double compute(double x) {
2826
2834
}
2827
2835
}
2828
2836
2829
- if (hx >= 0x7ff0_0000 ) {
2837
+ if (hx >= EXP_BITS ) {
2830
2838
return x + x ;
2831
2839
}
2832
2840
@@ -2977,7 +2985,6 @@ public static double compute(double x) {
2977
2985
* to produce the hexadecimal values shown.
2978
2986
*/
2979
2987
static class Expm1 {
2980
- private static final double one = 1.0 ;
2981
2988
private static final double huge = 1.0e+300 ;
2982
2989
private static final double tiny = 1.0e-300 ;
2983
2990
private static final double o_threshold = 0x1.62e42fefa39efp9 ; // 7.09782712893383973096e+02
@@ -2997,9 +3004,9 @@ static double compute(double x) {
2997
3004
/*unsigned*/ int hx ;
2998
3005
2999
3006
hx = __HI (x ); // high word of x
3000
- xsb = hx & 0x8000_0000 ; // sign bit of x
3007
+ xsb = hx & SIGN_BIT ; // sign bit of x
3001
3008
y = Math .abs (x );
3002
- hx &= 0x7fff_ffff ; // high word of |x|
3009
+ hx &= EXP_SIGNIF_BITS ; // high word of |x|
3003
3010
3004
3011
// filter out huge and non-finite argument
3005
3012
if (hx >= 0x4043_687A ) { // if |x| >= 56*ln2
@@ -3017,7 +3024,7 @@ static double compute(double x) {
3017
3024
}
3018
3025
if (xsb != 0 ) { // x < -56*ln2, return -1.0 with inexact
3019
3026
if (x + tiny < 0.0 ) { // raise inexact
3020
- return tiny - one ; // return -1
3027
+ return tiny - 1.0 ; // return -1
3021
3028
}
3022
3029
}
3023
3030
}
@@ -3052,7 +3059,7 @@ static double compute(double x) {
3052
3059
// x is now in primary range
3053
3060
hfx = 0.5 *x ;
3054
3061
hxs = x *hfx ;
3055
- r1 = one + hxs *(Q1 + hxs *(Q2 + hxs *(Q3 + hxs *(Q4 + hxs *Q5 ))));
3062
+ r1 = 1.0 + hxs *(Q1 + hxs *(Q2 + hxs *(Q3 + hxs *(Q4 + hxs *Q5 ))));
3056
3063
t = 3.0 - r1 *hfx ;
3057
3064
e = hxs *((r1 - t )/(6.0 - x *t ));
3058
3065
if (k == 0 ) {
@@ -3067,23 +3074,23 @@ static double compute(double x) {
3067
3074
if (x < -0.25 ) {
3068
3075
return -2.0 *(e - (x + 0.5 ));
3069
3076
} else {
3070
- return one + 2.0 *(x - e );
3077
+ return 1.0 + 2.0 *(x - e );
3071
3078
}
3072
3079
}
3073
3080
if (k <= -2 || k > 56 ) { // suffice to return exp(x) - 1
3074
- y = one - (e - x );
3081
+ y = 1.0 - (e - x );
3075
3082
y = __HI (y , __HI (y ) + (k << 20 )); // add k to y's exponent
3076
- return y - one ;
3083
+ return y - 1.0 ;
3077
3084
}
3078
- t = one ;
3085
+ t = 1.0 ;
3079
3086
if (k < 20 ) {
3080
3087
t = __HI (t , 0x3ff0_0000 - (0x2_00000 >> k )); // t = 1-2^-k
3081
3088
y = t - ( e - x );
3082
3089
y = __HI (y , __HI (y ) + (k << 20 )); // add k to y's exponent
3083
3090
} else {
3084
3091
t = __HI (t , ((0x3ff - k ) << 20 )); // 2^-k
3085
3092
y = x - (e + t );
3086
- y += one ;
3093
+ y += 1.0 ;
3087
3094
y = __HI (y , __HI (y ) + (k << 20 )); // add k to y's exponent
3088
3095
}
3089
3096
}
@@ -3120,10 +3127,10 @@ static double compute(double x) {
3120
3127
3121
3128
// High word of |x|
3122
3129
jx = __HI (x );
3123
- ix = jx & 0x7fff_ffff ;
3130
+ ix = jx & EXP_SIGNIF_BITS ;
3124
3131
3125
3132
// x is INF or NaN
3126
- if (ix >= 0x7ff0_0000 ) {
3133
+ if (ix >= EXP_BITS ) {
3127
3134
return x + x ;
3128
3135
}
3129
3136
@@ -3196,10 +3203,10 @@ static double compute(double x) {
3196
3203
3197
3204
// High word of |x|
3198
3205
ix = __HI (x );
3199
- ix &= 0x7fff_ffff ;
3206
+ ix &= EXP_SIGNIF_BITS ;
3200
3207
3201
3208
// x is INF or NaN
3202
- if (ix >= 0x7ff0_0000 ) {
3209
+ if (ix >= EXP_BITS ) {
3203
3210
return x *x ;
3204
3211
}
3205
3212
@@ -3273,10 +3280,10 @@ static double compute(double x) {
3273
3280
3274
3281
// High word of |x|.
3275
3282
jx = __HI (x );
3276
- ix = jx & 0x7fff_ffff ;
3283
+ ix = jx & EXP_SIGNIF_BITS ;
3277
3284
3278
3285
// x is INF or NaN
3279
- if (ix >= 0x7ff0_0000 ) {
3286
+ if (ix >= EXP_BITS ) {
3280
3287
if (jx >= 0 ) { // tanh(+-inf)=+-1
3281
3288
return 1.0 /x + 1.0 ;
3282
3289
} else { // tanh(NaN) = NaN
@@ -3314,17 +3321,17 @@ static double compute(double x, double p) {
3314
3321
lx = __LO (x ); // low word of x
3315
3322
hp = __HI (p ); // high word of p
3316
3323
lp = __LO (p ); // low word of p
3317
- sx = hx & 0x8000_0000 ;
3318
- hp &= 0x7fff_ffff ;
3319
- hx &= 0x7fff_ffff ;
3324
+ sx = hx & SIGN_BIT ;
3325
+ hp &= EXP_SIGNIF_BITS ;
3326
+ hx &= EXP_SIGNIF_BITS ;
3320
3327
3321
3328
// purge off exception values
3322
3329
if ((hp | lp ) == 0 ) {// p = 0
3323
3330
return (x *p )/(x *p );
3324
3331
}
3325
- if ((hx >= 0x7ff0_0000 ) || // not finite
3326
- ((hp >= 0x7ff0_0000 ) && // p is NaN
3327
- (((hp - 0x7ff0_0000 ) | lp ) != 0 )))
3332
+ if ((hx >= EXP_BITS ) || // not finite
3333
+ ((hp >= EXP_BITS ) && // p is NaN
3334
+ (((hp - EXP_BITS ) | lp ) != 0 )))
3328
3335
return (x *p )/(x *p );
3329
3336
3330
3337
if (hp <= 0x7fdf_ffff ) { // now x < 2p
@@ -3362,13 +3369,13 @@ private static double __ieee754_fmod(double x, double y) {
3362
3369
lx = __LO (x ); // low word of x
3363
3370
hy = __HI (y ); // high word of y
3364
3371
ly = __LO (y ); // low word of y
3365
- sx = hx & 0x8000_0000 ; // sign of x
3372
+ sx = hx & SIGN_BIT ; // sign of x
3366
3373
hx ^= sx ; // |x|
3367
- hy &= 0x7fff_ffff ; // |y|
3374
+ hy &= EXP_SIGNIF_BITS ; // |y|
3368
3375
3369
3376
// purge off exception values
3370
- if ((hy | ly ) == 0 || (hx >= 0x7ff0_0000 )|| // y = 0, or x not finite
3371
- ((hy | ((ly | -ly ) >>> 31 )) > 0x7ff0_0000 )) // or y is NaN, unsigned shift
3377
+ if ((hy | ly ) == 0 || (hx >= EXP_BITS )|| // y = 0, or x not finite
3378
+ ((hy | ((ly | -ly ) >>> 31 )) > EXP_BITS )) // or y is NaN, unsigned shift
3372
3379
return (x *y )/(x *y );
3373
3380
if (hx <= hy ) {
3374
3381
if ((hx < hy ) || (Integer .compareUnsigned (lx , ly ) < 0 )) { // |x| < |y| return x
0 commit comments