Skip to content

Commit b60031e

Browse files
committed
gimple: Remove special handling of COND_EXPR for COMPARISON_CLASS_P [PR116949, PR114785]
After r13-707-g68e0063397ba82, COND_EXPR for gimple assign no longer could contain a comparison. The vectorizer was builting gimple assigns with comparison until r15-4695-gd17e672ce82e69 (which added an assert to make sure it no longer builds it). So let's remove the special handling COND_EXPR in a few places and add an assert to gimple_build_assign_1 to make sure we don't build a gimple assign any more with a comparison. Bootstrapped and tested on x86_64-linux-gnu. gcc/ChangeLog: PR middle-end/114785 PR middle-end/116949 * gimple-match-exports.cc (maybe_push_res_to_seq): Remove special handling of COMPARISON_CLASS_P in COND_EXPR/VEC_COND_EXPR. (gimple_extract): Likewise. * gimple-walk.cc (walk_stmt_load_store_addr_ops): Likewise. * gimple.cc (gimple_build_assign_1): Add assert for COND_EXPR so its 1st operand is not a comparison. Signed-off-by: Andrew Pinski <[email protected]>
1 parent 717051a commit b60031e

File tree

3 files changed

+4
-22
lines changed

3 files changed

+4
-22
lines changed

gcc/gimple-match-exports.cc

+1-11
Original file line numberDiff line numberDiff line change
@@ -489,12 +489,6 @@ maybe_push_res_to_seq (gimple_match_op *res_op, gimple_seq *seq, tree res)
489489
&& SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ops[i]))
490490
return NULL_TREE;
491491

492-
if (num_ops > 0 && COMPARISON_CLASS_P (ops[0]))
493-
for (unsigned int i = 0; i < 2; ++i)
494-
if (TREE_CODE (TREE_OPERAND (ops[0], i)) == SSA_NAME
495-
&& SSA_NAME_OCCURS_IN_ABNORMAL_PHI (TREE_OPERAND (ops[0], i)))
496-
return NULL_TREE;
497-
498492
if (res_op->code.is_tree_code ())
499493
{
500494
auto code = tree_code (res_op->code);
@@ -786,11 +780,7 @@ gimple_extract (gimple *stmt, gimple_match_op *res_op,
786780
}
787781
case GIMPLE_TERNARY_RHS:
788782
{
789-
tree rhs1 = gimple_assign_rhs1 (stmt);
790-
if (code == COND_EXPR && COMPARISON_CLASS_P (rhs1))
791-
rhs1 = valueize_condition (rhs1);
792-
else
793-
rhs1 = valueize_op (rhs1);
783+
tree rhs1 = valueize_op (gimple_assign_rhs1 (stmt));
794784
tree rhs2 = valueize_op (gimple_assign_rhs2 (stmt));
795785
tree rhs3 = valueize_op (gimple_assign_rhs3 (stmt));
796786
res_op->set_op (code, type, rhs1, rhs2, rhs3);

gcc/gimple-walk.cc

-11
Original file line numberDiff line numberDiff line change
@@ -835,17 +835,6 @@ walk_stmt_load_store_addr_ops (gimple *stmt, void *data,
835835
;
836836
else if (TREE_CODE (op) == ADDR_EXPR)
837837
ret |= visit_addr (stmt, TREE_OPERAND (op, 0), op, data);
838-
/* COND_EXPR and VCOND_EXPR rhs1 argument is a comparison
839-
tree with two operands. */
840-
else if (i == 1 && COMPARISON_CLASS_P (op))
841-
{
842-
if (TREE_CODE (TREE_OPERAND (op, 0)) == ADDR_EXPR)
843-
ret |= visit_addr (stmt, TREE_OPERAND (TREE_OPERAND (op, 0),
844-
0), op, data);
845-
if (TREE_CODE (TREE_OPERAND (op, 1)) == ADDR_EXPR)
846-
ret |= visit_addr (stmt, TREE_OPERAND (TREE_OPERAND (op, 1),
847-
0), op, data);
848-
}
849838
}
850839
}
851840
else if (gcall *call_stmt = dyn_cast <gcall *> (stmt))

gcc/gimple.cc

+3
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,9 @@ gimple_build_assign_1 (tree lhs, enum tree_code subcode, tree op1,
475475
gimple_build_with_ops_stat (GIMPLE_ASSIGN, (unsigned)subcode, num_ops
476476
PASS_MEM_STAT));
477477
gimple_assign_set_lhs (p, lhs);
478+
/* For COND_EXPR, op1 should not be a comparison. */
479+
if (op1 && subcode == COND_EXPR)
480+
gcc_assert (!COMPARISON_CLASS_P (op1));
478481
gimple_assign_set_rhs1 (p, op1);
479482
if (op2)
480483
{

0 commit comments

Comments
 (0)