aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2022-11-08 23:49:48 +0100
committerAldy Hernandez <aldyh@redhat.com>2022-11-09 07:58:05 +0100
commit38ec5e4bc8fed58e278e6dcad999d38c5efc1340 (patch)
tree05739f02db62162b25a0cace6a38a513d0420b39
parent0ef5649e9b9f409cf1e133e8670043f066ba3acb (diff)
downloadgcc-38ec5e4bc8fed58e278e6dcad999d38c5efc1340.zip
gcc-38ec5e4bc8fed58e278e6dcad999d38c5efc1340.tar.gz
gcc-38ec5e4bc8fed58e278e6dcad999d38c5efc1340.tar.bz2
[range-op-float] Implement MINUS_EXPR.
Now that the generic parts of the binary operators have been abstracted, implementing MINUS_EXPR is a cinch. The op[12]_range entries will be submitted as a follow-up. gcc/ChangeLog: * range-op-float.cc (class foperator_minus): New. (floating_op_table::floating_op_table): Add MINUS_EXPR entry.
-rw-r--r--gcc/range-op-float.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/gcc/range-op-float.cc b/gcc/range-op-float.cc
index 7075c25..d52e971 100644
--- a/gcc/range-op-float.cc
+++ b/gcc/range-op-float.cc
@@ -1884,6 +1884,29 @@ class foperator_plus : public range_operator_float
} fop_plus;
+class foperator_minus : public range_operator_float
+{
+ void rv_fold (REAL_VALUE_TYPE &lb, REAL_VALUE_TYPE &ub, bool &maybe_nan,
+ tree type,
+ const REAL_VALUE_TYPE &lh_lb,
+ const REAL_VALUE_TYPE &lh_ub,
+ const REAL_VALUE_TYPE &rh_lb,
+ const REAL_VALUE_TYPE &rh_ub) const final override
+ {
+ frange_arithmetic (MINUS_EXPR, type, lb, lh_lb, rh_ub, dconstninf);
+ frange_arithmetic (MINUS_EXPR, type, ub, lh_ub, rh_lb, dconstinf);
+
+ // [+INF] - [+INF] = NAN
+ if (real_isinf (&lh_ub, false) && real_isinf (&rh_ub, false))
+ maybe_nan = true;
+ // [-INF] - [-INF] = NAN
+ else if (real_isinf (&lh_lb, true) && real_isinf (&rh_lb, true))
+ maybe_nan = true;
+ else
+ maybe_nan = false;
+ }
+} fop_minus;
+
// Instantiate a range_op_table for floating point operations.
static floating_op_table global_floating_table;
@@ -1917,6 +1940,7 @@ floating_op_table::floating_op_table ()
set (ABS_EXPR, fop_abs);
set (NEGATE_EXPR, fop_negate);
set (PLUS_EXPR, fop_plus);
+ set (MINUS_EXPR, fop_minus);
}
// Return a pointer to the range_operator_float instance, if there is