aboutsummaryrefslogtreecommitdiff
path: root/gcc/range-op.cc
diff options
context:
space:
mode:
authorAndrew MacLeod <amacleod@redhat.com>2023-06-09 13:42:39 -0400
committerAndrew MacLeod <amacleod@redhat.com>2023-06-09 20:33:03 -0400
commitd5818a361779e19b9c17295c6a014c4145c73937 (patch)
tree7ea95c6d6af4ad6d4d44ceb3729c586fa1dd70ae /gcc/range-op.cc
parenta1aaaff33a79d1b7613fbf8a17b51321a135f19c (diff)
downloadgcc-d5818a361779e19b9c17295c6a014c4145c73937.zip
gcc-d5818a361779e19b9c17295c6a014c4145c73937.tar.gz
gcc-d5818a361779e19b9c17295c6a014c4145c73937.tar.bz2
Unify MINUS_EXPR range operator
Move the declaration of the class to the range-op-mixed header, add the floating point prototypes as well, and use it in the new unified table. * range-op-float.cc (foperator_minus): Remove. Move prototypes to range-op-mixed.h (operator_minus::fold_range): Rename from foperator_minus. (operator_minus::op1_range): Ditto. (operator_minus::op2_range): Ditto. (operator_minus::rv_fold): Ditto. (float_table::float_table): Remove MINUS_EXPR. * range-op-mixed.h (class operator_minus): Combined from integer and float files. * range-op.cc (op_minus): New object. (unified_table::unified_table): Add MINUS_EXPR. (class operator_minus): Move to range-op-mixed.h. (integral_table::integral_table): Remove MINUS_EXPR. (pointer_table::pointer_table): Remove MINUS_EXPR.
Diffstat (limited to 'gcc/range-op.cc')
-rw-r--r--gcc/range-op.cc39
1 files changed, 7 insertions, 32 deletions
diff --git a/gcc/range-op.cc b/gcc/range-op.cc
index b4cdaf5..2094479 100644
--- a/gcc/range-op.cc
+++ b/gcc/range-op.cc
@@ -73,6 +73,7 @@ operator_cst op_cst;
operator_cast op_cast;
operator_plus op_plus;
operator_abs op_abs;
+operator_minus op_minus;
// Invoke the initialization routines for each class of range.
@@ -97,6 +98,7 @@ unified_table::unified_table ()
set (CONVERT_EXPR, op_cast);
set (PLUS_EXPR, op_plus);
set (ABS_EXPR, op_abs);
+ set (MINUS_EXPR, op_minus);
}
// The tables are hidden and accessed via a simple extern function.
@@ -1787,38 +1789,12 @@ operator_widen_plus_unsigned::wi_fold (irange &r, tree type,
r = int_range<2> (type, new_lb, new_ub);
}
-class operator_minus : public range_operator
+void
+operator_minus::update_bitmask (irange &r, const irange &lh,
+ const irange &rh) const
{
- using range_operator::fold_range;
- using range_operator::op1_range;
- using range_operator::op2_range;
- using range_operator::lhs_op1_relation;
-public:
- virtual bool op1_range (irange &r, tree type,
- const irange &lhs,
- const irange &op2,
- relation_trio) const;
- virtual bool op2_range (irange &r, tree type,
- const irange &lhs,
- const irange &op1,
- relation_trio) const;
- virtual void wi_fold (irange &r, tree type,
- const wide_int &lh_lb,
- const wide_int &lh_ub,
- const wide_int &rh_lb,
- const wide_int &rh_ub) const;
- virtual relation_kind lhs_op1_relation (const irange &lhs,
- const irange &op1,
- const irange &op2,
- relation_kind rel) const;
- virtual bool op1_op2_relation_effect (irange &lhs_range,
- tree type,
- const irange &op1_range,
- const irange &op2_range,
- relation_kind rel) const;
- void update_bitmask (irange &r, const irange &lh, const irange &rh) const
- { update_known_bitmask (r, MINUS_EXPR, lh, rh); }
-} op_minus;
+ update_known_bitmask (r, MINUS_EXPR, lh, rh);
+}
void
operator_minus::wi_fold (irange &r, tree type,
@@ -4682,7 +4658,6 @@ pointer_or_operator::wi_fold (irange &r, tree type,
integral_table::integral_table ()
{
- set (MINUS_EXPR, op_minus);
set (MIN_EXPR, op_min);
set (MAX_EXPR, op_max);
set (MULT_EXPR, op_mult);