diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2023-06-09 13:39:54 -0400 |
---|---|---|
committer | Andrew MacLeod <amacleod@redhat.com> | 2023-06-09 20:33:02 -0400 |
commit | 6a4ac393e199a63f39063daa28827f39dab49a07 (patch) | |
tree | 348d23d2d2e7d4b28a760643510f504b0bb480c6 /gcc | |
parent | 4f0ac5a526180fb2b64ed7ea41acdaab8b91a8bb (diff) | |
download | gcc-6a4ac393e199a63f39063daa28827f39dab49a07.zip gcc-6a4ac393e199a63f39063daa28827f39dab49a07.tar.gz gcc-6a4ac393e199a63f39063daa28827f39dab49a07.tar.bz2 |
Unify operator_cast range operator
Move the declaration of the class to the range-op-mixed header, and use it
in the new unified table.
* range-op-mixed.h (class operator_cast): Combined from integer
and float files.
* range-op.cc (op_cast): New object.
(unified_table::unified_table): Add op_cast
(class operator_cast): Move to range-op-mixed.h.
(integral_table::integral_table): Remove op_cast
(pointer_table::pointer_table): Remove op_cast.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/range-op-mixed.h | 24 | ||||
-rw-r--r-- | gcc/range-op.cc | 34 |
2 files changed, 28 insertions, 30 deletions
diff --git a/gcc/range-op-mixed.h b/gcc/range-op-mixed.h index 5b7fbe8..9de8479 100644 --- a/gcc/range-op-mixed.h +++ b/gcc/range-op-mixed.h @@ -304,4 +304,28 @@ public: relation_trio = TRIO_VARYING) const final override; }; + +class operator_cast: public range_operator +{ +public: + using range_operator::fold_range; + using range_operator::op1_range; + using range_operator::lhs_op1_relation; + bool fold_range (irange &r, tree type, + const irange &op1, const irange &op2, + relation_trio rel = TRIO_VARYING) const final override; + bool op1_range (irange &r, tree type, + const irange &lhs, const irange &op2, + relation_trio rel = TRIO_VARYING) const final override; + relation_kind lhs_op1_relation (const irange &lhs, + const irange &op1, const irange &op2, + relation_kind) const final override; +private: + bool truncating_cast_p (const irange &inner, const irange &outer) const; + bool inside_domain_p (const wide_int &min, const wide_int &max, + const irange &outer) const; + void fold_pair (irange &r, unsigned index, const irange &inner, + const irange &outer) const; +}; + #endif // GCC_RANGE_OP_MIXED_H diff --git a/gcc/range-op.cc b/gcc/range-op.cc index 31d4e1a..7d89b63 100644 --- a/gcc/range-op.cc +++ b/gcc/range-op.cc @@ -70,6 +70,7 @@ operator_gt op_gt; operator_ge op_ge; operator_identity op_ident; operator_cst op_cst; +operator_cast op_cast; // Invoke the initialization routines for each class of range. @@ -90,6 +91,9 @@ unified_table::unified_table () set (OBJ_TYPE_REF, op_ident); set (REAL_CST, op_cst); set (INTEGER_CST, op_cst); + set (NOP_EXPR, op_cast); + set (CONVERT_EXPR, op_cast); + } // The tables are hidden and accessed via a simple extern function. @@ -2868,32 +2872,6 @@ operator_rshift::wi_fold (irange &r, tree type, } -class operator_cast: public range_operator -{ - using range_operator::fold_range; - using range_operator::op1_range; - using range_operator::lhs_op1_relation; -public: - virtual bool fold_range (irange &r, tree type, - const irange &op1, - const irange &op2, - relation_trio rel = TRIO_VARYING) const; - virtual bool op1_range (irange &r, tree type, - const irange &lhs, - const irange &op2, - relation_trio rel = TRIO_VARYING) const; - virtual relation_kind lhs_op1_relation (const irange &lhs, - const irange &op1, - const irange &op2, - relation_kind) const; -private: - bool truncating_cast_p (const irange &inner, const irange &outer) const; - bool inside_domain_p (const wide_int &min, const wide_int &max, - const irange &outer) const; - void fold_pair (irange &r, unsigned index, const irange &inner, - const irange &outer) const; -} op_cast; - // Add a partial equivalence between the LHS and op1 for casts. relation_kind @@ -4744,8 +4722,6 @@ integral_table::integral_table () set (MIN_EXPR, op_min); set (MAX_EXPR, op_max); set (MULT_EXPR, op_mult); - set (NOP_EXPR, op_cast); - set (CONVERT_EXPR, op_cast); set (BIT_AND_EXPR, op_bitwise_and); set (BIT_IOR_EXPR, op_bitwise_or); set (BIT_XOR_EXPR, op_bitwise_xor); @@ -4784,8 +4760,6 @@ pointer_table::pointer_table () set (MAX_EXPR, op_ptr_min_max); set (ADDR_EXPR, op_addr); - set (NOP_EXPR, op_cast); - set (CONVERT_EXPR, op_cast); set (BIT_NOT_EXPR, op_bitwise_not); set (BIT_XOR_EXPR, op_bitwise_xor); |