aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPan Li <pan2.li@intel.com>2024-09-11 09:34:21 +0800
committerPan Li <pan2.li@intel.com>2024-09-19 18:11:59 +0800
commit2545a1abb77bd62c1f7dea8245dc01671b0f7ce1 (patch)
tree14a6a309b6209d91ba284985491e323eb075a4fe /gcc
parent361903ad1affd508bafdb9b771d6a6ffc98a2100 (diff)
downloadgcc-2545a1abb77bd62c1f7dea8245dc01671b0f7ce1.zip
gcc-2545a1abb77bd62c1f7dea8245dc01671b0f7ce1.tar.gz
gcc-2545a1abb77bd62c1f7dea8245dc01671b0f7ce1.tar.bz2
Genmatch: Refine the gen_phi_on_cond by match_cond_with_binary_phi
This patch would like to leverage the match_cond_with_binary_phi to match the phi on cond, and get the true/false arg if matched. This helps a lot to simplify the implementation of gen_phi_on_cond. Before this patch: basic_block _b1 = gimple_bb (_a1); if (gimple_phi_num_args (_a1) == 2) { basic_block _pb_0_1 = EDGE_PRED (_b1, 0)->src; basic_block _pb_1_1 = EDGE_PRED (_b1, 1)->src; basic_block _db_1 = safe_dyn_cast <gcond *> (*gsi_last_bb (_pb_0_1)) ? _pb_0_1 : _pb_1_1; basic_block _other_db_1 = safe_dyn_cast <gcond *> (*gsi_last_bb (_pb_0_1)) ? _pb_1_1 : _pb_0_1; gcond *_ct_1 = safe_dyn_cast <gcond *> (*gsi_last_bb (_db_1)); if (_ct_1 && EDGE_COUNT (_other_db_1->preds) == 1 && EDGE_COUNT (_other_db_1->succs) == 1 && EDGE_PRED (_other_db_1, 0)->src == _db_1) { tree _cond_lhs_1 = gimple_cond_lhs (_ct_1); tree _cond_rhs_1 = gimple_cond_rhs (_ct_1); tree _p0 = build2 (gimple_cond_code (_ct_1), boolean_type_node, _cond_lhs_1, _cond_rhs_1); bool _arg_0_is_true_1 = gimple_phi_arg_edge (_a1, 0)->flags & EDGE_TRUE_VALUE; tree _p1 = gimple_phi_arg_def (_a1, _arg_0_is_true_1 ? 0 : 1); tree _p2 = gimple_phi_arg_def (_a1, _arg_0_is_true_1 ? 1 : 0); ... After this patch: basic_block _b1 = gimple_bb (_a1); tree _p1, _p2; gcond *_cond_1 = match_cond_with_binary_phi (_a1, &_p1, &_p2); if (_cond_1) { tree _cond_lhs_1 = gimple_cond_lhs (_cond_1); tree _cond_rhs_1 = gimple_cond_rhs (_cond_1); tree _p0 = build2 (gimple_cond_code (_cond_1), boolean_type_node, _cond_lhs_1, _cond_rhs_1); ... The below test suites are passed for this patch. * The rv64gcv fully regression test. * The x86 bootstrap test. * The x86 fully regression test. gcc/ChangeLog: * genmatch.cc (dt_operand::gen_phi_on_cond): Leverage the match_cond_with_binary_phi API to get cond gimple, true and false TREE arg. Signed-off-by: Pan Li <pan2.li@intel.com>
Diffstat (limited to 'gcc')
-rw-r--r--gcc/genmatch.cc66
1 files changed, 14 insertions, 52 deletions
diff --git a/gcc/genmatch.cc b/gcc/genmatch.cc
index f1ff1d1..1efd209 100644
--- a/gcc/genmatch.cc
+++ b/gcc/genmatch.cc
@@ -3516,79 +3516,41 @@ dt_operand::gen (FILE *f, int indent, bool gimple, int depth)
void
dt_operand::gen_phi_on_cond (FILE *f, int indent, int depth)
{
- fprintf_indent (f, indent,
- "basic_block _b%d = gimple_bb (_a%d);\n", depth, depth);
-
- fprintf_indent (f, indent, "if (gimple_phi_num_args (_a%d) == 2)\n", depth);
+ char opname_0[20];
+ char opname_1[20];
+ char opname_2[20];
- indent += 2;
- fprintf_indent (f, indent, "{\n");
- indent += 2;
+ gen_opname (opname_0, 0);
+ gen_opname (opname_1, 1);
+ gen_opname (opname_2, 2);
fprintf_indent (f, indent,
- "basic_block _pb_0_%d = EDGE_PRED (_b%d, 0)->src;\n", depth, depth);
- fprintf_indent (f, indent,
- "basic_block _pb_1_%d = EDGE_PRED (_b%d, 1)->src;\n", depth, depth);
- fprintf_indent (f, indent,
- "basic_block _db_%d = safe_dyn_cast <gcond *> (*gsi_last_bb (_pb_0_%d)) ? "
- "_pb_0_%d : _pb_1_%d;\n", depth, depth, depth, depth);
+ "basic_block _b%d = gimple_bb (_a%d);\n", depth, depth);
+ fprintf_indent (f, indent, "tree %s, %s;\n", opname_1, opname_2);
fprintf_indent (f, indent,
- "basic_block _other_db_%d = safe_dyn_cast <gcond *> "
- "(*gsi_last_bb (_pb_0_%d)) ? _pb_1_%d : _pb_0_%d;\n",
- depth, depth, depth, depth);
+ "gcond *_cond_%d = match_cond_with_binary_phi (_a%d, &%s, &%s);\n",
+ depth, depth, opname_1, opname_2);
- fprintf_indent (f, indent,
- "gcond *_ct_%d = safe_dyn_cast <gcond *> (*gsi_last_bb (_db_%d));\n",
- depth, depth);
- fprintf_indent (f, indent, "if (_ct_%d"
- " && EDGE_COUNT (_other_db_%d->preds) == 1\n", depth, depth);
- fprintf_indent (f, indent,
- " && EDGE_COUNT (_other_db_%d->succs) == 1\n", depth);
- fprintf_indent (f, indent,
- " && EDGE_PRED (_other_db_%d, 0)->src == _db_%d)\n", depth, depth);
+ fprintf_indent (f, indent, "if (_cond_%d)\n", depth);
indent += 2;
fprintf_indent (f, indent, "{\n");
indent += 2;
fprintf_indent (f, indent,
- "tree _cond_lhs_%d = gimple_cond_lhs (_ct_%d);\n", depth, depth);
+ "tree _cond_lhs_%d = gimple_cond_lhs (_cond_%d);\n", depth, depth);
fprintf_indent (f, indent,
- "tree _cond_rhs_%d = gimple_cond_rhs (_ct_%d);\n", depth, depth);
-
- char opname_0[20];
- char opname_1[20];
- char opname_2[20];
- gen_opname (opname_0, 0);
-
+ "tree _cond_rhs_%d = gimple_cond_rhs (_cond_%d);\n", depth, depth);
fprintf_indent (f, indent,
- "tree %s = build2 (gimple_cond_code (_ct_%d), "
+ "tree %s = build2 (gimple_cond_code (_cond_%d), "
"boolean_type_node, _cond_lhs_%d, _cond_rhs_%d);\n",
opname_0, depth, depth, depth);
- fprintf_indent (f, indent,
- "bool _arg_0_is_true_%d = gimple_phi_arg_edge (_a%d, 0)->flags"
- " & EDGE_TRUE_VALUE;\n", depth, depth);
-
- gen_opname (opname_1, 1);
- fprintf_indent (f, indent,
- "tree %s = gimple_phi_arg_def (_a%d, _arg_0_is_true_%d ? 0 : 1);\n",
- opname_1, depth, depth);
-
- gen_opname (opname_2, 2);
- fprintf_indent (f, indent,
- "tree %s = gimple_phi_arg_def (_a%d, _arg_0_is_true_%d ? 1 : 0);\n",
- opname_2, depth, depth);
-
gen_kids (f, indent, true, depth);
indent -= 2;
fprintf_indent (f, indent, "}\n");
indent -= 2;
-
- indent -= 2;
- fprintf_indent (f, indent, "}\n");
- indent -= 2;
}
/* Emit a logging call to the debug file to the file F, with the INDENT from