1 /* Combining of if-expressions on trees.
2 Copyright (C) 2007-2014 Free Software Foundation, Inc.
3 Contributed by Richard Guenther <rguenther@suse.de>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
25 /* rtl is needed only because arm back-end requires it for
30 #include "stor-layout.h"
36 #include "hard-reg-set.h"
39 #include "dominance.h"
42 #include "basic-block.h"
43 #include "tree-pretty-print.h"
44 #include "tree-ssa-alias.h"
45 #include "internal-fn.h"
46 #include "gimple-fold.h"
47 #include "gimple-expr.h"
50 #include "gimple-iterator.h"
51 #include "gimplify-me.h"
52 #include "gimple-ssa.h"
54 #include "tree-phinodes.h"
55 #include "ssa-iterators.h"
56 #include "tree-pass.h"
58 #ifndef LOGICAL_OP_NON_SHORT_CIRCUIT
59 #define LOGICAL_OP_NON_SHORT_CIRCUIT \
60 (BRANCH_COST (optimize_function_for_speed_p (cfun), \
64 /* This pass combines COND_EXPRs to simplify control flow. It
65 currently recognizes bit tests and comparisons in chains that
66 represent logical and or logical or of two COND_EXPRs.
68 It does so by walking basic blocks in a approximate reverse
69 post-dominator order and trying to match CFG patterns that
70 represent logical and or logical or of two COND_EXPRs.
71 Transformations are done if the COND_EXPR conditions match
74 1. two single bit tests X & (1 << Yn) (for logical and)
76 2. two bit tests X & Yn (for logical or)
78 3. two comparisons X OPn Y (for logical or)
80 To simplify this pass, removing basic blocks and dead code
81 is left to CFG cleanup and DCE. */
84 /* Recognize a if-then-else CFG pattern starting to match with the
85 COND_BB basic-block containing the COND_EXPR. The recognized
86 then end else blocks are stored to *THEN_BB and *ELSE_BB. If
87 *THEN_BB and/or *ELSE_BB are already set, they are required to
88 match the then and else basic-blocks to make the pattern match.
89 Returns true if the pattern matched, false otherwise. */
92 recognize_if_then_else (basic_block cond_bb
,
93 basic_block
*then_bb
, basic_block
*else_bb
)
97 if (EDGE_COUNT (cond_bb
->succs
) != 2)
100 /* Find the then/else edges. */
101 t
= EDGE_SUCC (cond_bb
, 0);
102 e
= EDGE_SUCC (cond_bb
, 1);
103 if (!(t
->flags
& EDGE_TRUE_VALUE
))
109 if (!(t
->flags
& EDGE_TRUE_VALUE
)
110 || !(e
->flags
& EDGE_FALSE_VALUE
))
113 /* Check if the edge destinations point to the required block. */
115 && t
->dest
!= *then_bb
)
118 && e
->dest
!= *else_bb
)
129 /* Verify if the basic block BB does not have side-effects. Return
130 true in this case, else false. */
133 bb_no_side_effects_p (basic_block bb
)
135 gimple_stmt_iterator gsi
;
137 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
139 gimple stmt
= gsi_stmt (gsi
);
141 if (is_gimple_debug (stmt
))
144 if (gimple_has_side_effects (stmt
)
145 || gimple_could_trap_p (stmt
)
146 || gimple_vuse (stmt
))
153 /* Return true if BB is an empty forwarder block to TO_BB. */
156 forwarder_block_to (basic_block bb
, basic_block to_bb
)
158 return empty_block_p (bb
)
159 && single_succ_p (bb
)
160 && single_succ (bb
) == to_bb
;
163 /* Verify if all PHI node arguments in DEST for edges from BB1 or
164 BB2 to DEST are the same. This makes the CFG merge point
165 free from side-effects. Return true in this case, else false. */
168 same_phi_args_p (basic_block bb1
, basic_block bb2
, basic_block dest
)
170 edge e1
= find_edge (bb1
, dest
);
171 edge e2
= find_edge (bb2
, dest
);
172 gimple_stmt_iterator gsi
;
175 for (gsi
= gsi_start_phis (dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
177 phi
= gsi_stmt (gsi
);
178 if (!operand_equal_p (PHI_ARG_DEF_FROM_EDGE (phi
, e1
),
179 PHI_ARG_DEF_FROM_EDGE (phi
, e2
), 0))
186 /* Return the best representative SSA name for CANDIDATE which is used
190 get_name_for_bit_test (tree candidate
)
192 /* Skip single-use names in favor of using the name from a
193 non-widening conversion definition. */
194 if (TREE_CODE (candidate
) == SSA_NAME
195 && has_single_use (candidate
))
197 gimple def_stmt
= SSA_NAME_DEF_STMT (candidate
);
198 if (is_gimple_assign (def_stmt
)
199 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def_stmt
)))
201 if (TYPE_PRECISION (TREE_TYPE (candidate
))
202 <= TYPE_PRECISION (TREE_TYPE (gimple_assign_rhs1 (def_stmt
))))
203 return gimple_assign_rhs1 (def_stmt
);
210 /* Recognize a single bit test pattern in GIMPLE_COND and its defining
211 statements. Store the name being tested in *NAME and the bit
212 in *BIT. The GIMPLE_COND computes *NAME & (1 << *BIT).
213 Returns true if the pattern matched, false otherwise. */
216 recognize_single_bit_test (gimple cond
, tree
*name
, tree
*bit
, bool inv
)
220 /* Get at the definition of the result of the bit test. */
221 if (gimple_cond_code (cond
) != (inv
? EQ_EXPR
: NE_EXPR
)
222 || TREE_CODE (gimple_cond_lhs (cond
)) != SSA_NAME
223 || !integer_zerop (gimple_cond_rhs (cond
)))
225 stmt
= SSA_NAME_DEF_STMT (gimple_cond_lhs (cond
));
226 if (!is_gimple_assign (stmt
))
229 /* Look at which bit is tested. One form to recognize is
230 D.1985_5 = state_3(D) >> control1_4(D);
231 D.1986_6 = (int) D.1985_5;
233 if (D.1987_7 != 0) */
234 if (gimple_assign_rhs_code (stmt
) == BIT_AND_EXPR
235 && integer_onep (gimple_assign_rhs2 (stmt
))
236 && TREE_CODE (gimple_assign_rhs1 (stmt
)) == SSA_NAME
)
238 tree orig_name
= gimple_assign_rhs1 (stmt
);
240 /* Look through copies and conversions to eventually
241 find the stmt that computes the shift. */
242 stmt
= SSA_NAME_DEF_STMT (orig_name
);
244 while (is_gimple_assign (stmt
)
245 && ((CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt
))
246 && (TYPE_PRECISION (TREE_TYPE (gimple_assign_lhs (stmt
)))
247 <= TYPE_PRECISION (TREE_TYPE (gimple_assign_rhs1 (stmt
))))
248 && TREE_CODE (gimple_assign_rhs1 (stmt
)) == SSA_NAME
)
249 || gimple_assign_ssa_name_copy_p (stmt
)))
250 stmt
= SSA_NAME_DEF_STMT (gimple_assign_rhs1 (stmt
));
252 /* If we found such, decompose it. */
253 if (is_gimple_assign (stmt
)
254 && gimple_assign_rhs_code (stmt
) == RSHIFT_EXPR
)
256 /* op0 & (1 << op1) */
257 *bit
= gimple_assign_rhs2 (stmt
);
258 *name
= gimple_assign_rhs1 (stmt
);
263 *bit
= integer_zero_node
;
264 *name
= get_name_for_bit_test (orig_name
);
271 D.1987_7 = op0 & (1 << CST)
272 if (D.1987_7 != 0) */
273 if (gimple_assign_rhs_code (stmt
) == BIT_AND_EXPR
274 && TREE_CODE (gimple_assign_rhs1 (stmt
)) == SSA_NAME
275 && integer_pow2p (gimple_assign_rhs2 (stmt
)))
277 *name
= gimple_assign_rhs1 (stmt
);
278 *bit
= build_int_cst (integer_type_node
,
279 tree_log2 (gimple_assign_rhs2 (stmt
)));
284 D.1986_6 = 1 << control1_4(D)
285 D.1987_7 = op0 & D.1986_6
286 if (D.1987_7 != 0) */
287 if (gimple_assign_rhs_code (stmt
) == BIT_AND_EXPR
288 && TREE_CODE (gimple_assign_rhs1 (stmt
)) == SSA_NAME
289 && TREE_CODE (gimple_assign_rhs2 (stmt
)) == SSA_NAME
)
293 /* Both arguments of the BIT_AND_EXPR can be the single-bit
294 specifying expression. */
295 tmp
= SSA_NAME_DEF_STMT (gimple_assign_rhs1 (stmt
));
296 if (is_gimple_assign (tmp
)
297 && gimple_assign_rhs_code (tmp
) == LSHIFT_EXPR
298 && integer_onep (gimple_assign_rhs1 (tmp
)))
300 *name
= gimple_assign_rhs2 (stmt
);
301 *bit
= gimple_assign_rhs2 (tmp
);
305 tmp
= SSA_NAME_DEF_STMT (gimple_assign_rhs2 (stmt
));
306 if (is_gimple_assign (tmp
)
307 && gimple_assign_rhs_code (tmp
) == LSHIFT_EXPR
308 && integer_onep (gimple_assign_rhs1 (tmp
)))
310 *name
= gimple_assign_rhs1 (stmt
);
311 *bit
= gimple_assign_rhs2 (tmp
);
319 /* Recognize a bit test pattern in a GIMPLE_COND and its defining
320 statements. Store the name being tested in *NAME and the bits
321 in *BITS. The COND_EXPR computes *NAME & *BITS.
322 Returns true if the pattern matched, false otherwise. */
325 recognize_bits_test (gimple cond
, tree
*name
, tree
*bits
, bool inv
)
329 /* Get at the definition of the result of the bit test. */
330 if (gimple_cond_code (cond
) != (inv
? EQ_EXPR
: NE_EXPR
)
331 || TREE_CODE (gimple_cond_lhs (cond
)) != SSA_NAME
332 || !integer_zerop (gimple_cond_rhs (cond
)))
334 stmt
= SSA_NAME_DEF_STMT (gimple_cond_lhs (cond
));
335 if (!is_gimple_assign (stmt
)
336 || gimple_assign_rhs_code (stmt
) != BIT_AND_EXPR
)
339 *name
= get_name_for_bit_test (gimple_assign_rhs1 (stmt
));
340 *bits
= gimple_assign_rhs2 (stmt
);
345 /* If-convert on a and pattern with a common else block. The inner
346 if is specified by its INNER_COND_BB, the outer by OUTER_COND_BB.
347 inner_inv, outer_inv and result_inv indicate whether the conditions
349 Returns true if the edges to the common else basic-block were merged. */
352 ifcombine_ifandif (basic_block inner_cond_bb
, bool inner_inv
,
353 basic_block outer_cond_bb
, bool outer_inv
, bool result_inv
)
355 gimple_stmt_iterator gsi
;
356 gimple inner_cond
, outer_cond
;
357 tree name1
, name2
, bit1
, bit2
, bits1
, bits2
;
359 inner_cond
= last_stmt (inner_cond_bb
);
361 || gimple_code (inner_cond
) != GIMPLE_COND
)
364 outer_cond
= last_stmt (outer_cond_bb
);
366 || gimple_code (outer_cond
) != GIMPLE_COND
)
369 /* See if we test a single bit of the same name in both tests. In
370 that case remove the outer test, merging both else edges,
371 and change the inner one to test for
372 name & (bit1 | bit2) == (bit1 | bit2). */
373 if (recognize_single_bit_test (inner_cond
, &name1
, &bit1
, inner_inv
)
374 && recognize_single_bit_test (outer_cond
, &name2
, &bit2
, outer_inv
)
380 gsi
= gsi_for_stmt (inner_cond
);
381 t
= fold_build2 (LSHIFT_EXPR
, TREE_TYPE (name1
),
382 build_int_cst (TREE_TYPE (name1
), 1), bit1
);
383 t2
= fold_build2 (LSHIFT_EXPR
, TREE_TYPE (name1
),
384 build_int_cst (TREE_TYPE (name1
), 1), bit2
);
385 t
= fold_build2 (BIT_IOR_EXPR
, TREE_TYPE (name1
), t
, t2
);
386 t
= force_gimple_operand_gsi (&gsi
, t
, true, NULL_TREE
,
387 true, GSI_SAME_STMT
);
388 t2
= fold_build2 (BIT_AND_EXPR
, TREE_TYPE (name1
), name1
, t
);
389 t2
= force_gimple_operand_gsi (&gsi
, t2
, true, NULL_TREE
,
390 true, GSI_SAME_STMT
);
391 t
= fold_build2 (result_inv
? NE_EXPR
: EQ_EXPR
,
392 boolean_type_node
, t2
, t
);
393 t
= canonicalize_cond_expr_cond (t
);
396 gimple_cond_set_condition_from_tree (inner_cond
, t
);
397 update_stmt (inner_cond
);
399 /* Leave CFG optimization to cfg_cleanup. */
400 gimple_cond_set_condition_from_tree (outer_cond
,
401 outer_inv
? boolean_false_node
: boolean_true_node
);
402 update_stmt (outer_cond
);
406 fprintf (dump_file
, "optimizing double bit test to ");
407 print_generic_expr (dump_file
, name1
, 0);
408 fprintf (dump_file
, " & T == T\nwith temporary T = (1 << ");
409 print_generic_expr (dump_file
, bit1
, 0);
410 fprintf (dump_file
, ") | (1 << ");
411 print_generic_expr (dump_file
, bit2
, 0);
412 fprintf (dump_file
, ")\n");
418 /* See if we have two bit tests of the same name in both tests.
419 In that case remove the outer test and change the inner one to
420 test for name & (bits1 | bits2) != 0. */
421 else if (recognize_bits_test (inner_cond
, &name1
, &bits1
, !inner_inv
)
422 && recognize_bits_test (outer_cond
, &name2
, &bits2
, !outer_inv
))
424 gimple_stmt_iterator gsi
;
427 /* Find the common name which is bit-tested. */
430 else if (bits1
== bits2
)
439 else if (name1
== bits2
)
445 else if (bits1
== name2
)
454 /* As we strip non-widening conversions in finding a common
455 name that is tested make sure to end up with an integral
456 type for building the bit operations. */
457 if (TYPE_PRECISION (TREE_TYPE (bits1
))
458 >= TYPE_PRECISION (TREE_TYPE (bits2
)))
460 bits1
= fold_convert (unsigned_type_for (TREE_TYPE (bits1
)), bits1
);
461 name1
= fold_convert (TREE_TYPE (bits1
), name1
);
462 bits2
= fold_convert (unsigned_type_for (TREE_TYPE (bits2
)), bits2
);
463 bits2
= fold_convert (TREE_TYPE (bits1
), bits2
);
467 bits2
= fold_convert (unsigned_type_for (TREE_TYPE (bits2
)), bits2
);
468 name1
= fold_convert (TREE_TYPE (bits2
), name1
);
469 bits1
= fold_convert (unsigned_type_for (TREE_TYPE (bits1
)), bits1
);
470 bits1
= fold_convert (TREE_TYPE (bits2
), bits1
);
474 gsi
= gsi_for_stmt (inner_cond
);
475 t
= fold_build2 (BIT_IOR_EXPR
, TREE_TYPE (name1
), bits1
, bits2
);
476 t
= force_gimple_operand_gsi (&gsi
, t
, true, NULL_TREE
,
477 true, GSI_SAME_STMT
);
478 t
= fold_build2 (BIT_AND_EXPR
, TREE_TYPE (name1
), name1
, t
);
479 t
= force_gimple_operand_gsi (&gsi
, t
, true, NULL_TREE
,
480 true, GSI_SAME_STMT
);
481 t
= fold_build2 (result_inv
? NE_EXPR
: EQ_EXPR
, boolean_type_node
, t
,
482 build_int_cst (TREE_TYPE (t
), 0));
483 t
= canonicalize_cond_expr_cond (t
);
486 gimple_cond_set_condition_from_tree (inner_cond
, t
);
487 update_stmt (inner_cond
);
489 /* Leave CFG optimization to cfg_cleanup. */
490 gimple_cond_set_condition_from_tree (outer_cond
,
491 outer_inv
? boolean_false_node
: boolean_true_node
);
492 update_stmt (outer_cond
);
496 fprintf (dump_file
, "optimizing bits or bits test to ");
497 print_generic_expr (dump_file
, name1
, 0);
498 fprintf (dump_file
, " & T != 0\nwith temporary T = ");
499 print_generic_expr (dump_file
, bits1
, 0);
500 fprintf (dump_file
, " | ");
501 print_generic_expr (dump_file
, bits2
, 0);
502 fprintf (dump_file
, "\n");
508 /* See if we have two comparisons that we can merge into one. */
509 else if (TREE_CODE_CLASS (gimple_cond_code (inner_cond
)) == tcc_comparison
510 && TREE_CODE_CLASS (gimple_cond_code (outer_cond
)) == tcc_comparison
)
513 enum tree_code inner_cond_code
= gimple_cond_code (inner_cond
);
514 enum tree_code outer_cond_code
= gimple_cond_code (outer_cond
);
516 /* Invert comparisons if necessary (and possible). */
518 inner_cond_code
= invert_tree_comparison (inner_cond_code
,
519 HONOR_NANS (TYPE_MODE (TREE_TYPE (gimple_cond_lhs (inner_cond
)))));
520 if (inner_cond_code
== ERROR_MARK
)
523 outer_cond_code
= invert_tree_comparison (outer_cond_code
,
524 HONOR_NANS (TYPE_MODE (TREE_TYPE (gimple_cond_lhs (outer_cond
)))));
525 if (outer_cond_code
== ERROR_MARK
)
527 /* Don't return false so fast, try maybe_fold_or_comparisons? */
529 if (!(t
= maybe_fold_and_comparisons (inner_cond_code
,
530 gimple_cond_lhs (inner_cond
),
531 gimple_cond_rhs (inner_cond
),
533 gimple_cond_lhs (outer_cond
),
534 gimple_cond_rhs (outer_cond
))))
537 gimple_stmt_iterator gsi
;
538 if (!LOGICAL_OP_NON_SHORT_CIRCUIT
)
540 /* Only do this optimization if the inner bb contains only the conditional. */
541 if (!gsi_one_before_end_p (gsi_start_nondebug_after_labels_bb (inner_cond_bb
)))
543 t1
= fold_build2_loc (gimple_location (inner_cond
),
546 gimple_cond_lhs (inner_cond
),
547 gimple_cond_rhs (inner_cond
));
548 t2
= fold_build2_loc (gimple_location (outer_cond
),
551 gimple_cond_lhs (outer_cond
),
552 gimple_cond_rhs (outer_cond
));
553 t
= fold_build2_loc (gimple_location (inner_cond
),
554 TRUTH_AND_EXPR
, boolean_type_node
, t1
, t2
);
557 t
= fold_build1 (TRUTH_NOT_EXPR
, TREE_TYPE (t
), t
);
560 gsi
= gsi_for_stmt (inner_cond
);
561 t
= force_gimple_operand_gsi_1 (&gsi
, t
, is_gimple_condexpr
, NULL
, true,
565 t
= fold_build1 (TRUTH_NOT_EXPR
, TREE_TYPE (t
), t
);
566 t
= canonicalize_cond_expr_cond (t
);
569 gimple_cond_set_condition_from_tree (inner_cond
, t
);
570 update_stmt (inner_cond
);
572 /* Leave CFG optimization to cfg_cleanup. */
573 gimple_cond_set_condition_from_tree (outer_cond
,
574 outer_inv
? boolean_false_node
: boolean_true_node
);
575 update_stmt (outer_cond
);
579 fprintf (dump_file
, "optimizing two comparisons to ");
580 print_generic_expr (dump_file
, t
, 0);
581 fprintf (dump_file
, "\n");
590 /* Helper function for tree_ssa_ifcombine_bb. Recognize a CFG pattern and
591 dispatch to the appropriate if-conversion helper for a particular
592 set of INNER_COND_BB, OUTER_COND_BB, THEN_BB and ELSE_BB.
593 PHI_PRED_BB should be one of INNER_COND_BB, THEN_BB or ELSE_BB. */
596 tree_ssa_ifcombine_bb_1 (basic_block inner_cond_bb
, basic_block outer_cond_bb
,
597 basic_block then_bb
, basic_block else_bb
,
598 basic_block phi_pred_bb
)
600 /* The && form is characterized by a common else_bb with
601 the two edges leading to it mergable. The latter is
602 guaranteed by matching PHI arguments in the else_bb and
603 the inner cond_bb having no side-effects. */
604 if (phi_pred_bb
!= else_bb
605 && recognize_if_then_else (outer_cond_bb
, &inner_cond_bb
, &else_bb
)
606 && same_phi_args_p (outer_cond_bb
, phi_pred_bb
, else_bb
)
607 && bb_no_side_effects_p (inner_cond_bb
))
611 if (q) goto inner_cond_bb; else goto else_bb;
613 if (p) goto ...; else goto else_bb;
618 return ifcombine_ifandif (inner_cond_bb
, false, outer_cond_bb
, false,
622 /* And a version where the outer condition is negated. */
623 if (phi_pred_bb
!= else_bb
624 && recognize_if_then_else (outer_cond_bb
, &else_bb
, &inner_cond_bb
)
625 && same_phi_args_p (outer_cond_bb
, phi_pred_bb
, else_bb
)
626 && bb_no_side_effects_p (inner_cond_bb
))
630 if (q) goto else_bb; else goto inner_cond_bb;
632 if (p) goto ...; else goto else_bb;
637 return ifcombine_ifandif (inner_cond_bb
, false, outer_cond_bb
, true,
641 /* The || form is characterized by a common then_bb with the
642 two edges leading to it mergable. The latter is guaranteed
643 by matching PHI arguments in the then_bb and the inner cond_bb
644 having no side-effects. */
645 if (phi_pred_bb
!= then_bb
646 && recognize_if_then_else (outer_cond_bb
, &then_bb
, &inner_cond_bb
)
647 && same_phi_args_p (outer_cond_bb
, phi_pred_bb
, then_bb
)
648 && bb_no_side_effects_p (inner_cond_bb
))
652 if (q) goto then_bb; else goto inner_cond_bb;
654 if (q) goto then_bb; else goto ...;
658 return ifcombine_ifandif (inner_cond_bb
, true, outer_cond_bb
, true,
662 /* And a version where the outer condition is negated. */
663 if (phi_pred_bb
!= then_bb
664 && recognize_if_then_else (outer_cond_bb
, &inner_cond_bb
, &then_bb
)
665 && same_phi_args_p (outer_cond_bb
, phi_pred_bb
, then_bb
)
666 && bb_no_side_effects_p (inner_cond_bb
))
670 if (q) goto inner_cond_bb; else goto then_bb;
672 if (q) goto then_bb; else goto ...;
676 return ifcombine_ifandif (inner_cond_bb
, true, outer_cond_bb
, false,
683 /* Recognize a CFG pattern and dispatch to the appropriate
684 if-conversion helper. We start with BB as the innermost
685 worker basic-block. Returns true if a transformation was done. */
688 tree_ssa_ifcombine_bb (basic_block inner_cond_bb
)
690 basic_block then_bb
= NULL
, else_bb
= NULL
;
692 if (!recognize_if_then_else (inner_cond_bb
, &then_bb
, &else_bb
))
695 /* Recognize && and || of two conditions with a common
696 then/else block which entry edges we can merge. That is:
702 This requires a single predecessor of the inner cond_bb. */
703 if (single_pred_p (inner_cond_bb
))
705 basic_block outer_cond_bb
= single_pred (inner_cond_bb
);
707 if (tree_ssa_ifcombine_bb_1 (inner_cond_bb
, outer_cond_bb
,
708 then_bb
, else_bb
, inner_cond_bb
))
711 if (forwarder_block_to (else_bb
, then_bb
))
713 /* Other possibilities for the && form, if else_bb is
714 empty forwarder block to then_bb. Compared to the above simpler
715 forms this can be treated as if then_bb and else_bb were swapped,
716 and the corresponding inner_cond_bb not inverted because of that.
717 For same_phi_args_p we look at equality of arguments between
718 edge from outer_cond_bb and the forwarder block. */
719 if (tree_ssa_ifcombine_bb_1 (inner_cond_bb
, outer_cond_bb
, else_bb
,
723 else if (forwarder_block_to (then_bb
, else_bb
))
725 /* Other possibilities for the || form, if then_bb is
726 empty forwarder block to else_bb. Compared to the above simpler
727 forms this can be treated as if then_bb and else_bb were swapped,
728 and the corresponding inner_cond_bb not inverted because of that.
729 For same_phi_args_p we look at equality of arguments between
730 edge from outer_cond_bb and the forwarder block. */
731 if (tree_ssa_ifcombine_bb_1 (inner_cond_bb
, outer_cond_bb
, else_bb
,
740 /* Main entry for the tree if-conversion pass. */
744 const pass_data pass_data_tree_ifcombine
=
746 GIMPLE_PASS
, /* type */
747 "ifcombine", /* name */
748 OPTGROUP_NONE
, /* optinfo_flags */
749 TV_TREE_IFCOMBINE
, /* tv_id */
750 ( PROP_cfg
| PROP_ssa
), /* properties_required */
751 0, /* properties_provided */
752 0, /* properties_destroyed */
753 0, /* todo_flags_start */
754 TODO_update_ssa
, /* todo_flags_finish */
757 class pass_tree_ifcombine
: public gimple_opt_pass
760 pass_tree_ifcombine (gcc::context
*ctxt
)
761 : gimple_opt_pass (pass_data_tree_ifcombine
, ctxt
)
764 /* opt_pass methods: */
765 virtual unsigned int execute (function
*);
767 }; // class pass_tree_ifcombine
770 pass_tree_ifcombine::execute (function
*fun
)
773 bool cfg_changed
= false;
776 bbs
= single_pred_before_succ_order ();
777 calculate_dominance_info (CDI_DOMINATORS
);
779 /* Search every basic block for COND_EXPR we may be able to optimize.
781 We walk the blocks in order that guarantees that a block with
782 a single predecessor is processed after the predecessor.
783 This ensures that we collapse outter ifs before visiting the
784 inner ones, and also that we do not try to visit a removed
785 block. This is opposite of PHI-OPT, because we cascade the
786 combining rather than cascading PHIs. */
787 for (i
= n_basic_blocks_for_fn (fun
) - NUM_FIXED_BLOCKS
- 1; i
>= 0; i
--)
789 basic_block bb
= bbs
[i
];
790 gimple stmt
= last_stmt (bb
);
793 && gimple_code (stmt
) == GIMPLE_COND
)
794 cfg_changed
|= tree_ssa_ifcombine_bb (bb
);
799 return cfg_changed
? TODO_cleanup_cfg
: 0;
805 make_pass_tree_ifcombine (gcc::context
*ctxt
)
807 return new pass_tree_ifcombine (ctxt
);