summaryrefslogtreecommitdiff
path: root/libgcc/config/libbid/bid64_minmax.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgcc/config/libbid/bid64_minmax.c')
-rw-r--r--libgcc/config/libbid/bid64_minmax.c439
1 files changed, 289 insertions, 150 deletions
diff --git a/libgcc/config/libbid/bid64_minmax.c b/libgcc/config/libbid/bid64_minmax.c
index b0c9a5a552d..1b466bc1ece 100644
--- a/libgcc/config/libbid/bid64_minmax.c
+++ b/libgcc/config/libbid/bid64_minmax.c
@@ -42,41 +42,87 @@ static const UINT64 mult_factor[16] = {
#if DECIMAL_CALL_BY_REFERENCE
void
-__bid64_minnum (UINT64 * pres, UINT64 * px, UINT64 * py) {
+bid64_minnum (UINT64 * pres, UINT64 * px, UINT64 * py _EXC_FLAGS_PARAM) {
UINT64 x = *px;
UINT64 y = *py;
#else
UINT64
-__bid64_minnum (UINT64 x, UINT64 y) {
+bid64_minnum (UINT64 x, UINT64 y _EXC_FLAGS_PARAM) {
#endif
UINT64 res;
int exp_x, exp_y;
UINT64 sig_x, sig_y;
UINT128 sig_n_prime;
- char x_is_zero = 0, y_is_zero = 0, non_canon_x, non_canon_y;
+ char x_is_zero = 0, y_is_zero = 0;
- // NaN (CASE1)
- // if x is NAN, then return y
- if ((x & MASK_NAN) == MASK_NAN) {
- if ((x & 0x0200000000000000ull) == 0x0200000000000000ull) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set exception if sNaN
+ // check for non-canonical x
+ if ((x & MASK_NAN) == MASK_NAN) { // x is NaN
+ x = x & 0xfe03ffffffffffffull; // clear G6-G12
+ if ((x & 0x0003ffffffffffffull) > 999999999999999ull) {
+ x = x & 0xfe00000000000000ull; // clear G6-G12 and the payload bits
}
- // check if y is SNaN
- if ((y & MASK_SNAN) == MASK_SNAN) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set invalid status flag if sNaN
- // return quiet (SNaN)
- ; // y = y & 0xfdffffffffffffffull;
+ } else if ((x & MASK_INF) == MASK_INF) { // check for Infinity
+ x = x & (MASK_SIGN | MASK_INF);
+ } else { // x is not special
+ // check for non-canonical values - treated as zero
+ if ((x & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
+ // if the steering bits are 11, then the exponent is G[0:w+1]
+ if (((x & MASK_BINARY_SIG2) | MASK_BINARY_OR2) >
+ 9999999999999999ull) {
+ // non-canonical
+ x = (x & MASK_SIGN) | ((x & MASK_BINARY_EXPONENT2) << 2);
+ } // else canonical
+ } // else canonical
+ }
+
+ // check for non-canonical y
+ if ((y & MASK_NAN) == MASK_NAN) { // y is NaN
+ y = y & 0xfe03ffffffffffffull; // clear G6-G12
+ if ((y & 0x0003ffffffffffffull) > 999999999999999ull) {
+ y = y & 0xfe00000000000000ull; // clear G6-G12 and the payload bits
}
- res = y;
- BID_RETURN (res);
+ } else if ((y & MASK_INF) == MASK_INF) { // check for Infinity
+ y = y & (MASK_SIGN | MASK_INF);
+ } else { // y is not special
+ // check for non-canonical values - treated as zero
+ if ((y & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
+ // if the steering bits are 11, then the exponent is G[0:w+1]
+ if (((y & MASK_BINARY_SIG2) | MASK_BINARY_OR2) >
+ 9999999999999999ull) {
+ // non-canonical
+ y = (y & MASK_SIGN) | ((y & MASK_BINARY_EXPONENT2) << 2);
+ } // else canonical
+ } // else canonical
}
- // if y is NAN, then return x
- else if ((y & MASK_NAN) == MASK_NAN) {
- if ((y & 0x0200000000000000ull) == 0x0200000000000000ull) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set exception if sNaN
+
+ // NaN (CASE1)
+ if ((x & MASK_NAN) == MASK_NAN) { // x is NAN
+ if ((x & MASK_SNAN) == MASK_SNAN) { // x is SNaN
+ // if x is SNAN, then return quiet (x)
+ *pfpsf |= INVALID_EXCEPTION; // set exception if SNaN
+ x = x & 0xfdffffffffffffffull; // quietize x
+ res = x;
+ } else { // x is QNaN
+ if ((y & MASK_NAN) == MASK_NAN) { // y is NAN
+ if ((y & MASK_SNAN) == MASK_SNAN) { // y is SNAN
+ *pfpsf |= INVALID_EXCEPTION; // set invalid flag
+ }
+ res = x;
+ } else {
+ res = y;
+ }
+ }
+ BID_RETURN (res);
+ } else if ((y & MASK_NAN) == MASK_NAN) { // y is NaN, but x is not
+ if ((y & MASK_SNAN) == MASK_SNAN) {
+ *pfpsf |= INVALID_EXCEPTION; // set exception if SNaN
+ y = y & 0xfdffffffffffffffull; // quietize y
+ res = y;
+ } else {
+ // will return x (which is not NaN)
+ res = x;
}
- res = x;
BID_RETURN (res);
}
// SIMPLE (CASE2)
@@ -107,30 +153,18 @@ __bid64_minnum (UINT64 x, UINT64 y) {
if ((x & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
exp_x = (x & MASK_BINARY_EXPONENT2) >> 51;
sig_x = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
- if (sig_x > 9999999999999999ull) {
- non_canon_x = 1;
- } else {
- non_canon_x = 0;
- }
} else {
exp_x = (x & MASK_BINARY_EXPONENT1) >> 53;
sig_x = (x & MASK_BINARY_SIG1);
- non_canon_x = 0;
}
// if steering bits are 11 (condition will be 0), then exponent is G[0:w+1] =>
if ((y & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
exp_y = (y & MASK_BINARY_EXPONENT2) >> 51;
sig_y = (y & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
- if (sig_y > 9999999999999999ull) {
- non_canon_y = 1;
- } else {
- non_canon_y = 0;
- }
} else {
exp_y = (y & MASK_BINARY_EXPONENT1) >> 53;
sig_y = (y & MASK_BINARY_SIG1);
- non_canon_y = 0;
}
// ZERO (CASE4)
@@ -140,10 +174,10 @@ __bid64_minnum (UINT64 x, UINT64 y) {
// (ZERO x 10^A == ZERO x 10^B) for any valid A, B =>
// ignore the exponent field
// (Any non-canonical # is considered 0)
- if (non_canon_x || sig_x == 0) {
+ if (sig_x == 0) {
x_is_zero = 1;
}
- if (non_canon_y || sig_y == 0) {
+ if (sig_y == 0) {
y_is_zero = 1;
}
@@ -180,7 +214,7 @@ __bid64_minnum (UINT64 x, UINT64 y) {
}
// if exp_x is 15 greater than exp_y, no need for compensation
if (exp_x - exp_y > 15) {
- res = ((x & MASK_SIGN) != MASK_SIGN) ? y : x; // difference cannot be >10^15
+ res = ((x & MASK_SIGN) != MASK_SIGN) ? y : x; // difference cannot be >10^15
BID_RETURN (res);
}
// if exp_x is 15 less than exp_y, no need for compensation
@@ -189,7 +223,7 @@ __bid64_minnum (UINT64 x, UINT64 y) {
BID_RETURN (res);
}
// if |exp_x - exp_y| < 15, it comes down to the compensated significand
- if (exp_x > exp_y) { // to simplify the loop below,
+ if (exp_x > exp_y) { // to simplify the loop below,
// otherwise adjust the x significand upwards
__mul_64x64_to_128MACH (sig_n_prime, sig_x,
@@ -227,40 +261,87 @@ __bid64_minnum (UINT64 x, UINT64 y) {
#if DECIMAL_CALL_BY_REFERENCE
void
-__bid64_minnum_mag (UINT64 * pres, UINT64 * px, UINT64 * py) {
+bid64_minnum_mag (UINT64 * pres, UINT64 * px,
+ UINT64 * py _EXC_FLAGS_PARAM) {
UINT64 x = *px;
UINT64 y = *py;
#else
UINT64
-__bid64_minnum_mag (UINT64 x, UINT64 y) {
+bid64_minnum_mag (UINT64 x, UINT64 y _EXC_FLAGS_PARAM) {
#endif
UINT64 res;
int exp_x, exp_y;
UINT64 sig_x, sig_y;
UINT128 sig_n_prime;
- char non_canon_x, non_canon_y;
- // NaN (CASE1)
- if ((x & MASK_NAN) == MASK_NAN) {
- // if x is NAN, then return y
- if ((x & 0x0200000000000000ull) == 0x0200000000000000ull) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set exception if sNaN
+ // check for non-canonical x
+ if ((x & MASK_NAN) == MASK_NAN) { // x is NaN
+ x = x & 0xfe03ffffffffffffull; // clear G6-G12
+ if ((x & 0x0003ffffffffffffull) > 999999999999999ull) {
+ x = x & 0xfe00000000000000ull; // clear G6-G12 and the payload bits
}
- // check if y is SNaN
- if ((y & MASK_SNAN) == MASK_SNAN) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set invalid status flag if sNaN
- // return quiet (SNaN)
- ; // y = y & 0xfdffffffffffffffull;
+ } else if ((x & MASK_INF) == MASK_INF) { // check for Infinity
+ x = x & (MASK_SIGN | MASK_INF);
+ } else { // x is not special
+ // check for non-canonical values - treated as zero
+ if ((x & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
+ // if the steering bits are 11, then the exponent is G[0:w+1]
+ if (((x & MASK_BINARY_SIG2) | MASK_BINARY_OR2) >
+ 9999999999999999ull) {
+ // non-canonical
+ x = (x & MASK_SIGN) | ((x & MASK_BINARY_EXPONENT2) << 2);
+ } // else canonical
+ } // else canonical
+ }
+
+ // check for non-canonical y
+ if ((y & MASK_NAN) == MASK_NAN) { // y is NaN
+ y = y & 0xfe03ffffffffffffull; // clear G6-G12
+ if ((y & 0x0003ffffffffffffull) > 999999999999999ull) {
+ y = y & 0xfe00000000000000ull; // clear G6-G12 and the payload bits
+ }
+ } else if ((y & MASK_INF) == MASK_INF) { // check for Infinity
+ y = y & (MASK_SIGN | MASK_INF);
+ } else { // y is not special
+ // check for non-canonical values - treated as zero
+ if ((y & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
+ // if the steering bits are 11, then the exponent is G[0:w+1]
+ if (((y & MASK_BINARY_SIG2) | MASK_BINARY_OR2) >
+ 9999999999999999ull) {
+ // non-canonical
+ y = (y & MASK_SIGN) | ((y & MASK_BINARY_EXPONENT2) << 2);
+ } // else canonical
+ } // else canonical
+ }
+
+ // NaN (CASE1)
+ if ((x & MASK_NAN) == MASK_NAN) { // x is NAN
+ if ((x & MASK_SNAN) == MASK_SNAN) { // x is SNaN
+ // if x is SNAN, then return quiet (x)
+ *pfpsf |= INVALID_EXCEPTION; // set exception if SNaN
+ x = x & 0xfdffffffffffffffull; // quietize x
+ res = x;
+ } else { // x is QNaN
+ if ((y & MASK_NAN) == MASK_NAN) { // y is NAN
+ if ((y & MASK_SNAN) == MASK_SNAN) { // y is SNAN
+ *pfpsf |= INVALID_EXCEPTION; // set invalid flag
+ }
+ res = x;
+ } else {
+ res = y;
+ }
}
- res = y;
BID_RETURN (res);
- } else if ((y & MASK_NAN) == MASK_NAN) {
- // if y is NAN, then return x
- if ((y & 0x0200000000000000ull) == 0x0200000000000000ull) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set exception if sNaN
+ } else if ((y & MASK_NAN) == MASK_NAN) { // y is NaN, but x is not
+ if ((y & MASK_SNAN) == MASK_SNAN) {
+ *pfpsf |= INVALID_EXCEPTION; // set exception if SNaN
+ y = y & 0xfdffffffffffffffull; // quietize y
+ res = y;
+ } else {
+ // will return x (which is not NaN)
+ res = x;
}
- res = x;
BID_RETURN (res);
}
// SIMPLE (CASE2)
@@ -285,30 +366,18 @@ __bid64_minnum_mag (UINT64 x, UINT64 y) {
if ((x & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
exp_x = (x & MASK_BINARY_EXPONENT2) >> 51;
sig_x = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
- if (sig_x > 9999999999999999ull) {
- non_canon_x = 1;
- } else {
- non_canon_x = 0;
- }
} else {
exp_x = (x & MASK_BINARY_EXPONENT1) >> 53;
sig_x = (x & MASK_BINARY_SIG1);
- non_canon_x = 0;
}
// if steering bits are 11 (condition will be 0), then exponent is G[0:w+1] =>
if ((y & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
exp_y = (y & MASK_BINARY_EXPONENT2) >> 51;
sig_y = (y & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
- if (sig_y > 9999999999999999ull) {
- non_canon_y = 1;
- } else {
- non_canon_y = 0;
- }
} else {
exp_y = (y & MASK_BINARY_EXPONENT1) >> 53;
sig_y = (y & MASK_BINARY_SIG1);
- non_canon_y = 0;
}
// ZERO (CASE4)
@@ -318,12 +387,12 @@ __bid64_minnum_mag (UINT64 x, UINT64 y) {
// (ZERO x 10^A == ZERO x 10^B) for any valid A, B =>
// ignore the exponent field
// (Any non-canonical # is considered 0)
- if (non_canon_x || sig_x == 0) {
- res = x; // x_is_zero, its magnitude must be smaller than y
+ if (sig_x == 0) {
+ res = x; // x_is_zero, its magnitude must be smaller than y
BID_RETURN (res);
}
- if (non_canon_y || sig_y == 0) {
- res = y; // y_is_zero, its magnitude must be smaller than x
+ if (sig_y == 0) {
+ res = y; // y_is_zero, its magnitude must be smaller than x
BID_RETURN (res);
}
// REDUNDANT REPRESENTATIONS (CASE6)
@@ -339,7 +408,7 @@ __bid64_minnum_mag (UINT64 x, UINT64 y) {
}
// if exp_x is 15 greater than exp_y, no need for compensation
if (exp_x - exp_y > 15) {
- res = y; // difference cannot be greater than 10^15
+ res = y; // difference cannot be greater than 10^15
BID_RETURN (res);
}
// if exp_x is 15 less than exp_y, no need for compensation
@@ -348,7 +417,7 @@ __bid64_minnum_mag (UINT64 x, UINT64 y) {
BID_RETURN (res);
}
// if |exp_x - exp_y| < 15, it comes down to the compensated significand
- if (exp_x > exp_y) { // to simplify the loop below,
+ if (exp_x > exp_y) { // to simplify the loop below,
// otherwise adjust the x significand upwards
__mul_64x64_to_128MACH (sig_n_prime, sig_x,
mult_factor[exp_x - exp_y]);
@@ -369,8 +438,8 @@ __bid64_minnum_mag (UINT64 x, UINT64 y) {
mult_factor[exp_y - exp_x]);
if (sig_n_prime.w[1] == 0 && (sig_n_prime.w[0] == sig_x)) {
- res = ((y & MASK_SIGN) == MASK_SIGN) ? y : x;
- // two numbers are equal, return either
+ res = ((y & MASK_SIGN) == MASK_SIGN) ? y : x;
+ // two numbers are equal, return either
BID_RETURN (res);
}
@@ -384,40 +453,87 @@ __bid64_minnum_mag (UINT64 x, UINT64 y) {
#if DECIMAL_CALL_BY_REFERENCE
void
-__bid64_maxnum (UINT64 * pres, UINT64 * px, UINT64 * py) {
+bid64_maxnum (UINT64 * pres, UINT64 * px, UINT64 * py _EXC_FLAGS_PARAM) {
UINT64 x = *px;
UINT64 y = *py;
#else
UINT64
-__bid64_maxnum (UINT64 x, UINT64 y) {
+bid64_maxnum (UINT64 x, UINT64 y _EXC_FLAGS_PARAM) {
#endif
UINT64 res;
int exp_x, exp_y;
UINT64 sig_x, sig_y;
UINT128 sig_n_prime;
- char x_is_zero = 0, y_is_zero = 0, non_canon_x, non_canon_y;
+ char x_is_zero = 0, y_is_zero = 0;
- // NaN (CASE1)
- if ((x & MASK_NAN) == MASK_NAN) {
- // if x is NAN, then return y
- if ((x & 0x0200000000000000ull) == 0x0200000000000000ull) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set exception if sNaN
+ // check for non-canonical x
+ if ((x & MASK_NAN) == MASK_NAN) { // x is NaN
+ x = x & 0xfe03ffffffffffffull; // clear G6-G12
+ if ((x & 0x0003ffffffffffffull) > 999999999999999ull) {
+ x = x & 0xfe00000000000000ull; // clear G6-G12 and the payload bits
}
- // check if y is SNaN
- if ((y & MASK_SNAN) == MASK_SNAN) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set invalid status flag if sNaN
- // return quiet (SNaN)
- ; // y = y & 0xfdffffffffffffffull;
+ } else if ((x & MASK_INF) == MASK_INF) { // check for Infinity
+ x = x & (MASK_SIGN | MASK_INF);
+ } else { // x is not special
+ // check for non-canonical values - treated as zero
+ if ((x & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
+ // if the steering bits are 11, then the exponent is G[0:w+1]
+ if (((x & MASK_BINARY_SIG2) | MASK_BINARY_OR2) >
+ 9999999999999999ull) {
+ // non-canonical
+ x = (x & MASK_SIGN) | ((x & MASK_BINARY_EXPONENT2) << 2);
+ } // else canonical
+ } // else canonical
+ }
+
+ // check for non-canonical y
+ if ((y & MASK_NAN) == MASK_NAN) { // y is NaN
+ y = y & 0xfe03ffffffffffffull; // clear G6-G12
+ if ((y & 0x0003ffffffffffffull) > 999999999999999ull) {
+ y = y & 0xfe00000000000000ull; // clear G6-G12 and the payload bits
+ }
+ } else if ((y & MASK_INF) == MASK_INF) { // check for Infinity
+ y = y & (MASK_SIGN | MASK_INF);
+ } else { // y is not special
+ // check for non-canonical values - treated as zero
+ if ((y & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
+ // if the steering bits are 11, then the exponent is G[0:w+1]
+ if (((y & MASK_BINARY_SIG2) | MASK_BINARY_OR2) >
+ 9999999999999999ull) {
+ // non-canonical
+ y = (y & MASK_SIGN) | ((y & MASK_BINARY_EXPONENT2) << 2);
+ } // else canonical
+ } // else canonical
+ }
+
+ // NaN (CASE1)
+ if ((x & MASK_NAN) == MASK_NAN) { // x is NAN
+ if ((x & MASK_SNAN) == MASK_SNAN) { // x is SNaN
+ // if x is SNAN, then return quiet (x)
+ *pfpsf |= INVALID_EXCEPTION; // set exception if SNaN
+ x = x & 0xfdffffffffffffffull; // quietize x
+ res = x;
+ } else { // x is QNaN
+ if ((y & MASK_NAN) == MASK_NAN) { // y is NAN
+ if ((y & MASK_SNAN) == MASK_SNAN) { // y is SNAN
+ *pfpsf |= INVALID_EXCEPTION; // set invalid flag
+ }
+ res = x;
+ } else {
+ res = y;
+ }
}
- res = y;
BID_RETURN (res);
- } else if ((y & MASK_NAN) == MASK_NAN) {
- // if y is NAN, then return x
- if ((y & 0x0200000000000000ull) == 0x0200000000000000ull) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set exception if sNaN
+ } else if ((y & MASK_NAN) == MASK_NAN) { // y is NaN, but x is not
+ if ((y & MASK_SNAN) == MASK_SNAN) {
+ *pfpsf |= INVALID_EXCEPTION; // set exception if SNaN
+ y = y & 0xfdffffffffffffffull; // quietize y
+ res = y;
+ } else {
+ // will return x (which is not NaN)
+ res = x;
}
- res = x;
BID_RETURN (res);
}
// SIMPLE (CASE2)
@@ -449,30 +565,18 @@ __bid64_maxnum (UINT64 x, UINT64 y) {
if ((x & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
exp_x = (x & MASK_BINARY_EXPONENT2) >> 51;
sig_x = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
- if (sig_x > 9999999999999999ull) {
- non_canon_x = 1;
- } else {
- non_canon_x = 0;
- }
} else {
exp_x = (x & MASK_BINARY_EXPONENT1) >> 53;
sig_x = (x & MASK_BINARY_SIG1);
- non_canon_x = 0;
}
// if steering bits are 11 (condition will be 0), then exponent is G[0:w+1] =>
if ((y & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
exp_y = (y & MASK_BINARY_EXPONENT2) >> 51;
sig_y = (y & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
- if (sig_y > 9999999999999999ull) {
- non_canon_y = 1;
- } else {
- non_canon_y = 0;
- }
} else {
exp_y = (y & MASK_BINARY_EXPONENT1) >> 53;
sig_y = (y & MASK_BINARY_SIG1);
- non_canon_y = 0;
}
// ZERO (CASE4)
@@ -482,10 +586,10 @@ __bid64_maxnum (UINT64 x, UINT64 y) {
// (ZERO x 10^A == ZERO x 10^B) for any valid A, B =>
// ignore the exponent field
// (Any non-canonical # is considered 0)
- if (non_canon_x || sig_x == 0) {
+ if (sig_x == 0) {
x_is_zero = 1;
}
- if (non_canon_y || sig_y == 0) {
+ if (sig_y == 0) {
y_is_zero = 1;
}
@@ -522,8 +626,8 @@ __bid64_maxnum (UINT64 x, UINT64 y) {
}
// if exp_x is 15 greater than exp_y, no need for compensation
if (exp_x - exp_y > 15) {
- res = ((x & MASK_SIGN) != MASK_SIGN) ? x : y;
- // difference cannot be > 10^15
+ res = ((x & MASK_SIGN) != MASK_SIGN) ? x : y;
+ // difference cannot be > 10^15
BID_RETURN (res);
}
// if exp_x is 15 less than exp_y, no need for compensation
@@ -532,7 +636,7 @@ __bid64_maxnum (UINT64 x, UINT64 y) {
BID_RETURN (res);
}
// if |exp_x - exp_y| < 15, it comes down to the compensated significand
- if (exp_x > exp_y) { // to simplify the loop below,
+ if (exp_x > exp_y) { // to simplify the loop below,
// otherwise adjust the x significand upwards
__mul_64x64_to_128MACH (sig_n_prime, sig_x,
mult_factor[exp_x - exp_y]);
@@ -568,40 +672,87 @@ __bid64_maxnum (UINT64 x, UINT64 y) {
#if DECIMAL_CALL_BY_REFERENCE
void
-__bid64_maxnum_mag (UINT64 * pres, UINT64 * px, UINT64 * py) {
+bid64_maxnum_mag (UINT64 * pres, UINT64 * px,
+ UINT64 * py _EXC_FLAGS_PARAM) {
UINT64 x = *px;
UINT64 y = *py;
#else
UINT64
-__bid64_maxnum_mag (UINT64 x, UINT64 y) {
+bid64_maxnum_mag (UINT64 x, UINT64 y _EXC_FLAGS_PARAM) {
#endif
UINT64 res;
int exp_x, exp_y;
UINT64 sig_x, sig_y;
UINT128 sig_n_prime;
- char non_canon_x, non_canon_y;
- // NaN (CASE1)
- if ((x & MASK_NAN) == MASK_NAN) {
- // if x is NAN, then return y
- if ((x & 0x0200000000000000ull) == 0x0200000000000000ull) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set exception if sNaN
+ // check for non-canonical x
+ if ((x & MASK_NAN) == MASK_NAN) { // x is NaN
+ x = x & 0xfe03ffffffffffffull; // clear G6-G12
+ if ((x & 0x0003ffffffffffffull) > 999999999999999ull) {
+ x = x & 0xfe00000000000000ull; // clear G6-G12 and the payload bits
}
- // check if y is SNaN
- if ((y & MASK_SNAN) == MASK_SNAN) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set invalid status flag if sNaN
- // return quiet (SNaN)
- ; // y = y & 0xfdffffffffffffffull;
+ } else if ((x & MASK_INF) == MASK_INF) { // check for Infinity
+ x = x & (MASK_SIGN | MASK_INF);
+ } else { // x is not special
+ // check for non-canonical values - treated as zero
+ if ((x & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
+ // if the steering bits are 11, then the exponent is G[0:w+1]
+ if (((x & MASK_BINARY_SIG2) | MASK_BINARY_OR2) >
+ 9999999999999999ull) {
+ // non-canonical
+ x = (x & MASK_SIGN) | ((x & MASK_BINARY_EXPONENT2) << 2);
+ } // else canonical
+ } // else canonical
+ }
+
+ // check for non-canonical y
+ if ((y & MASK_NAN) == MASK_NAN) { // y is NaN
+ y = y & 0xfe03ffffffffffffull; // clear G6-G12
+ if ((y & 0x0003ffffffffffffull) > 999999999999999ull) {
+ y = y & 0xfe00000000000000ull; // clear G6-G12 and the payload bits
+ }
+ } else if ((y & MASK_INF) == MASK_INF) { // check for Infinity
+ y = y & (MASK_SIGN | MASK_INF);
+ } else { // y is not special
+ // check for non-canonical values - treated as zero
+ if ((y & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
+ // if the steering bits are 11, then the exponent is G[0:w+1]
+ if (((y & MASK_BINARY_SIG2) | MASK_BINARY_OR2) >
+ 9999999999999999ull) {
+ // non-canonical
+ y = (y & MASK_SIGN) | ((y & MASK_BINARY_EXPONENT2) << 2);
+ } // else canonical
+ } // else canonical
+ }
+
+ // NaN (CASE1)
+ if ((x & MASK_NAN) == MASK_NAN) { // x is NAN
+ if ((x & MASK_SNAN) == MASK_SNAN) { // x is SNaN
+ // if x is SNAN, then return quiet (x)
+ *pfpsf |= INVALID_EXCEPTION; // set exception if SNaN
+ x = x & 0xfdffffffffffffffull; // quietize x
+ res = x;
+ } else { // x is QNaN
+ if ((y & MASK_NAN) == MASK_NAN) { // y is NAN
+ if ((y & MASK_SNAN) == MASK_SNAN) { // y is SNAN
+ *pfpsf |= INVALID_EXCEPTION; // set invalid flag
+ }
+ res = x;
+ } else {
+ res = y;
+ }
}
- res = y;
BID_RETURN (res);
- } else if ((y & MASK_NAN) == MASK_NAN) {
- // if y is NAN, then return x
- if ((y & 0x0200000000000000ull) == 0x0200000000000000ull) {
- ; // *pfpsf |= INVALID_EXCEPTION; // set exception if sNaN
+ } else if ((y & MASK_NAN) == MASK_NAN) { // y is NaN, but x is not
+ if ((y & MASK_SNAN) == MASK_SNAN) {
+ *pfpsf |= INVALID_EXCEPTION; // set exception if SNaN
+ y = y & 0xfdffffffffffffffull; // quietize y
+ res = y;
+ } else {
+ // will return x (which is not NaN)
+ res = x;
}
- res = x;
BID_RETURN (res);
}
// SIMPLE (CASE2)
@@ -626,30 +777,18 @@ __bid64_maxnum_mag (UINT64 x, UINT64 y) {
if ((x & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
exp_x = (x & MASK_BINARY_EXPONENT2) >> 51;
sig_x = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
- if (sig_x > 9999999999999999ull) {
- non_canon_x = 1;
- } else {
- non_canon_x = 0;
- }
} else {
exp_x = (x & MASK_BINARY_EXPONENT1) >> 53;
sig_x = (x & MASK_BINARY_SIG1);
- non_canon_x = 0;
}
// if steering bits are 11 (condition will be 0), then exponent is G[0:w+1] =>
if ((y & MASK_STEERING_BITS) == MASK_STEERING_BITS) {
exp_y = (y & MASK_BINARY_EXPONENT2) >> 51;
sig_y = (y & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
- if (sig_y > 9999999999999999ull) {
- non_canon_y = 1;
- } else {
- non_canon_y = 0;
- }
} else {
exp_y = (y & MASK_BINARY_EXPONENT1) >> 53;
sig_y = (y & MASK_BINARY_SIG1);
- non_canon_y = 0;
}
// ZERO (CASE4)
@@ -659,12 +798,12 @@ __bid64_maxnum_mag (UINT64 x, UINT64 y) {
// (ZERO x 10^A == ZERO x 10^B) for any valid A, B =>
// ignore the exponent field
// (Any non-canonical # is considered 0)
- if (non_canon_x || sig_x == 0) {
- res = y; // x_is_zero, its magnitude must be smaller than y
+ if (sig_x == 0) {
+ res = y; // x_is_zero, its magnitude must be smaller than y
BID_RETURN (res);
}
- if (non_canon_y || sig_y == 0) {
- res = x; // y_is_zero, its magnitude must be smaller than x
+ if (sig_y == 0) {
+ res = x; // y_is_zero, its magnitude must be smaller than x
BID_RETURN (res);
}
// REDUNDANT REPRESENTATIONS (CASE6)
@@ -680,7 +819,7 @@ __bid64_maxnum_mag (UINT64 x, UINT64 y) {
}
// if exp_x is 15 greater than exp_y, no need for compensation
if (exp_x - exp_y > 15) {
- res = x; // difference cannot be greater than 10^15
+ res = x; // difference cannot be greater than 10^15
BID_RETURN (res);
}
// if exp_x is 15 less than exp_y, no need for compensation
@@ -689,7 +828,7 @@ __bid64_maxnum_mag (UINT64 x, UINT64 y) {
BID_RETURN (res);
}
// if |exp_x - exp_y| < 15, it comes down to the compensated significand
- if (exp_x > exp_y) { // to simplify the loop below,
+ if (exp_x > exp_y) { // to simplify the loop below,
// otherwise adjust the x significand upwards
__mul_64x64_to_128MACH (sig_n_prime, sig_x,
mult_factor[exp_x - exp_y]);
@@ -710,8 +849,8 @@ __bid64_maxnum_mag (UINT64 x, UINT64 y) {
mult_factor[exp_y - exp_x]);
if (sig_n_prime.w[1] == 0 && (sig_n_prime.w[0] == sig_x)) {
- res = ((y & MASK_SIGN) == MASK_SIGN) ? x : y;
- // two numbers are equal, return either
+ res = ((y & MASK_SIGN) == MASK_SIGN) ? x : y;
+ // two numbers are equal, return either
BID_RETURN (res);
}