Searched refs:cond_stmt (Results 1 - 25 of 26) sorted by relevance

12

/haiku-buildtools/gcc/gcc/
H A Dtree-ssa-loop-unswitch.c339 gcond *cond_stmt = as_a <gcond *> (stmt); local
340 if (gimple_cond_true_p (cond_stmt))
342 else if (gimple_cond_false_p (cond_stmt))
H A Dgimplify-me.c188 gcond *cond_stmt = as_a <gcond *> (stmt); local
189 gimplify_expr (gimple_cond_lhs_ptr (cond_stmt), &pre, NULL,
191 gimplify_expr (gimple_cond_rhs_ptr (cond_stmt), &pre, NULL,
H A Dtree-parloops.c1515 gcond *cond_stmt, *cond_nit; local
1522 cond_stmt = as_a <gcond *> (last_stmt (exit->src));
1523 control = gimple_cond_lhs (cond_stmt);
1524 gcc_assert (gimple_cond_rhs (cond_stmt) == nit);
1541 gimple_cond_set_lhs (cond_stmt, t);
1542 update_stmt (cond_stmt);
1627 gcond *cond_stmt; local
1671 cond_stmt = as_a <gcond *> (last_stmt (loop->header));
1673 cvar = gimple_cond_lhs (cond_stmt);
1719 gimple_cond_set_lhs (cond_stmt, cvar_bas
1776 gimple cond_stmt; local
[all...]
H A Dtree-ssa-loop-ivcanon.c551 gcond *cond_stmt = as_a <gcond *> (elt->stmt); local
553 gimple_cond_make_true (cond_stmt);
555 gimple_cond_make_false (cond_stmt);
556 update_stmt (cond_stmt);
605 gcond *cond_stmt = as_a <gcond *> (elt->stmt); local
607 gimple_cond_make_false (cond_stmt);
609 gimple_cond_make_true (cond_stmt);
610 update_stmt (cond_stmt);
H A Dtree-switch-conversion.c121 gcond *cond_stmt;
134 cond_stmt = gimple_build_cond_from_tree (tmp, NULL_TREE, NULL_TREE);
135 gsi_insert_before (gsip, cond_stmt, GSI_SAME_STMT);
137 e_false = split_block (split_bb, cond_stmt);
1257 gcond *cond_stmt;
1277 cond_stmt = gimple_build_cond (LE_EXPR, tidx, bound, NULL_TREE, NULL_TREE);
1278 gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STMT);
1279 update_stmt (cond_stmt);
1296 e02 = split_block (bb0, cond_stmt);
120 gcond *cond_stmt; local
1254 gcond *cond_stmt; local
H A Dtree-vect-loop-manip.c688 gcond *cond_stmt; local
714 cond_stmt = gimple_build_cond (code, indx_after_incr, niters, NULL_TREE,
717 gsi_insert_before (&loop_cond_gsi, cond_stmt, GSI_SAME_STMT);
729 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, cond_stmt, 0);
950 gcond *cond_stmt; local
962 cond_stmt = gimple_build_cond_from_tree (cond, NULL_TREE, NULL_TREE);
967 gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STMT);
1065 gcond *cond_stmt; local
1103 cond_stmt = gimple_build_cond_from_tree (cost_pre_condition,
1105 gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STM
[all...]
H A Dsese.c751 gcond *cond_stmt;
759 cond_stmt = gimple_build_cond_from_tree (condition, NULL_TREE, NULL_TREE);
761 gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STMT);
748 gcond *cond_stmt; local
H A Dtree-ssa-loop-im.c933 gcond *cond_stmt; local
944 cond_stmt = dyn_cast <gcond *> (use_stmt);
945 if (!cond_stmt)
947 if (gimple_cond_lhs (cond_stmt) != lhs
948 || (gimple_cond_code (cond_stmt) != NE_EXPR
949 && gimple_cond_code (cond_stmt) != EQ_EXPR)
950 || !integer_zerop (gimple_cond_rhs (cond_stmt)))
998 gimple_cond_set_rhs (cond_stmt,
H A Dvalue-prof.c1404 gcond *cond_stmt; local
1433 cond_stmt = gimple_build_cond (EQ_EXPR, tmp1, tmp0, NULL_TREE, NULL_TREE);
1434 gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STMT);
1448 e_cd = split_block (cond_bb, cond_stmt);
1722 gcond *cond_stmt; local
1749 cond_stmt = gimple_build_cond (EQ_EXPR, tmp1, tmp0, NULL_TREE, NULL_TREE);
1750 gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STMT);
1761 e_ci = split_block (cond_bb, cond_stmt);
H A Dtree-ssa-uninit.c557 gimple cond_stmt; variable
571 cond_stmt = gsi_stmt (gsi);
572 if (is_gimple_call (cond_stmt)
597 if (gimple_code (cond_stmt) == GIMPLE_COND)
599 one_pred.pred_lhs = gimple_cond_lhs (cond_stmt);
600 one_pred.pred_rhs = gimple_cond_rhs (cond_stmt);
601 one_pred.cond_code = gimple_cond_code (cond_stmt);
606 else if (gswitch *gs = dyn_cast <gswitch *> (cond_stmt))
H A Dtree-ssa-propagate.c1518 else if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
1523 gimple_cond_set_code (cond_stmt, NE_EXPR);
1524 gimple_cond_set_lhs (cond_stmt, lhs);
1525 gimple_cond_set_rhs (cond_stmt, rhs);
H A Dtree-ssa-ccp.c2107 gcond *cond_stmt = as_a <gcond *> (stmt); local
2127 gimple_cond_make_false (cond_stmt);
2129 gimple_cond_make_true (cond_stmt);
2638 if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
2641 gimple_cond_make_false (cond_stmt);
2643 gimple_cond_make_true (cond_stmt);
2646 update_stmt (cond_stmt);
H A Dtree-ssa-phiopt.c222 gimple cond_stmt; local
230 cond_stmt = last_stmt (bb);
232 if (!cond_stmt
233 || gimple_code (cond_stmt) != GIMPLE_COND)
284 if (!FLOAT_TYPE_P (TREE_TYPE (gimple_cond_lhs (cond_stmt)))
H A Domp-low.c5747 gcond *cond_stmt;
5755 cond_stmt = gimple_build_cond (fd->loops[i].cond_code, n1, n2,
5757 gsi_insert_before (gsi, cond_stmt, GSI_SAME_STMT);
5758 if (walk_tree (gimple_cond_lhs_ptr (cond_stmt),
5760 || walk_tree (gimple_cond_rhs_ptr (cond_stmt),
5763 *gsi = gsi_for_stmt (cond_stmt);
5764 gimple_regimplify_operands (cond_stmt, gsi);
5766 e = split_block (entry_bb, cond_stmt);
6381 gcond *cond_stmt = gimple_build_cond_empty (t);
6382 gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STM
5746 gcond *cond_stmt; local
6380 gcond *cond_stmt = gimple_build_cond_empty (t); local
6401 gcond *cond_stmt = gimple_build_cond_empty (t); local
6598 gcond *cond_stmt = gimple_build_cond (fd->loop.cond_code, n1, n2, local
6700 gcond *cond_stmt = gimple_build_cond_empty (t); local
6992 gcond *cond_stmt = gimple_build_cond (fd->loop.cond_code, n1, n2, local
7611 gcond *cond_stmt; local
11742 gcond *cond_stmt = as_a <gcond *> (stmt); local
12203 gcond *cond_stmt = as_a <gcond *> (stmt); local
[all...]
H A Dtree-cfg.c643 gcond *cond_stmt = as_a <gcond *> (stmt); local
649 cond = fold_binary_loc (loc, gimple_cond_code (cond_stmt),
651 gimple_cond_lhs (cond_stmt),
652 gimple_cond_rhs (cond_stmt));
665 gimple_cond_make_false (cond_stmt);
667 gimple_cond_make_true (cond_stmt);
1468 gcond *cond_stmt = as_a <gcond *> (stmt); local
1469 label = gimple_cond_true_label (cond_stmt);
1474 gimple_cond_set_true_label (cond_stmt, new_label);
1477 label = gimple_cond_false_label (cond_stmt);
6173 gimple cond_stmt; local
[all...]
H A Dcfgloopmanip.c707 gcond *cond_stmt; local
718 cond_stmt = gimple_build_cond_from_tree (simple_cond, NULL_TREE, NULL_TREE);
720 gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STMT);
H A Dtree-complex.c1437 gcond *cond_stmt = as_a <gcond *> (stmt); local
1438 gimple_cond_set_code (cond_stmt, EQ_EXPR);
1439 gimple_cond_set_lhs (cond_stmt, cc);
1440 gimple_cond_set_rhs (cond_stmt, boolean_true_node);
H A Dtree-ssa-reassoc.c3406 gcond *cond_stmt = as_a <gcond *> (last_stmt (bb)); local
3412 gimple_cond_make_false (cond_stmt);
3414 gimple_cond_make_true (cond_stmt);
3417 gimple_cond_set_code (cond_stmt, NE_EXPR);
3418 gimple_cond_set_lhs (cond_stmt,
3420 gimple_cond_set_rhs (cond_stmt, boolean_false_node);
3422 update_stmt (cond_stmt);
H A Dtree-vrp.c10022 else if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
10023 val = vrp_evaluate_conditional (gimple_cond_code (cond_stmt),
10024 gimple_cond_lhs (cond_stmt),
10025 gimple_cond_rhs (cond_stmt),
10049 gcond *cond_stmt = as_a <gcond *> (stmt); local
10051 gimple_cond_make_false (cond_stmt);
10053 gimple_cond_make_true (cond_stmt);
10090 if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
10091 return vrp_evaluate_conditional (gimple_cond_code (cond_stmt),
10092 gimple_cond_lhs (cond_stmt),
[all...]
H A Dtree-ssa-loop-ivopts.c1450 gcond *cond_stmt = as_a <gcond *> (stmt); local
1451 op0 = gimple_cond_lhs_ptr (cond_stmt);
1452 op1 = gimple_cond_rhs_ptr (cond_stmt);
6660 gcond *cond_stmt = as_a <gcond *> (use->stmt); local
6661 gimple_cond_set_lhs (cond_stmt, var);
6662 gimple_cond_set_code (cond_stmt, compare);
6663 gimple_cond_set_rhs (cond_stmt, op);
H A Dtree-eh.c705 gcond *cond_stmt = as_a <gcond *> (stmt); local
706 new_stmt.tp = gimple_op_ptr (cond_stmt, 2);
708 gimple_cond_true_label (cond_stmt),
710 new_stmt.tp = gimple_op_ptr (cond_stmt, 3);
712 gimple_cond_false_label (cond_stmt),
H A Dgraphite-sese-to-poly.c1210 gcond *cond_stmt = as_a <gcond *> (stmt); local
1211 enum tree_code code = gimple_cond_code (cond_stmt);
1217 add_condition_to_pbb (pbb, cond_stmt, code);
H A Dgimple-fold.c3375 if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
3385 gimple_cond_set_condition (cond_stmt, rcode, ops[0], ops[1]);
3387 gimple_cond_set_condition (cond_stmt, NE_EXPR, ops[0],
3392 gimple_cond_make_false (cond_stmt);
3394 gimple_cond_make_true (cond_stmt);
3402 gimple_cond_set_condition (cond_stmt, NE_EXPR, res,
H A Dtree-loop-distribution.c702 if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
704 gimple_cond_make_false (cond_stmt);
H A Dtree-scalar-evolution.c908 if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
909 res = cond_stmt;

Completed in 398 milliseconds

12