1 /* If-conversion for vectorizer.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc.
4 Contributed by Devang Patel <dpatel@apple.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* This pass implements a tree level if-conversion of loops. Its
23 initial goal is to help the vectorizer to vectorize loops with
26 A short description of if-conversion:
28 o Decide if a loop is if-convertible or not.
29 o Walk all loop basic blocks in breadth first order (BFS order).
30 o Remove conditional statements (at the end of basic block)
31 and propagate condition into destination basic blocks'
33 o Replace modify expression with conditional modify expression
34 using current basic block's condition.
35 o Merge all basic blocks
36 o Replace phi nodes with conditional modify expr
37 o Merge all basic blocks into header
39 Sample transformation:
44 # i_23 = PHI <0(0), i_18(10)>;
47 if (j_15 > 41) goto <L1>; else goto <L17>;
54 # iftmp.2_4 = PHI <0(8), 42(2)>;
58 if (i_18 <= 15) goto <L19>; else goto <L18>;
68 # i_23 = PHI <0(0), i_18(10)>;
73 iftmp.2_4 = j_15 > 41 ? 42 : 0;
76 if (i_18 <= 15) goto <L19>; else goto <L18>;
86 #include "coretypes.h"
91 #include "basic-block.h"
92 #include "tree-pretty-print.h"
93 #include "gimple-pretty-print.h"
94 #include "tree-flow.h"
95 #include "tree-dump.h"
97 #include "tree-chrec.h"
98 #include "tree-data-ref.h"
99 #include "tree-scalar-evolution.h"
100 #include "tree-pass.h"
103 /* List of basic blocks in if-conversion-suitable order. */
104 static basic_block
*ifc_bbs
;
106 /* Structure used to predicate basic blocks. This is attached to the
107 ->aux field of the BBs in the loop to be if-converted. */
108 typedef struct bb_predicate_s
{
110 /* The condition under which this basic block is executed. */
113 /* PREDICATE is gimplified, and the sequence of statements is
114 recorded here, in order to avoid the duplication of computations
115 that occur in previous conditions. See PR44483. */
116 gimple_seq predicate_gimplified_stmts
;
119 /* Returns true when the basic block BB has a predicate. */
122 bb_has_predicate (basic_block bb
)
124 return bb
->aux
!= NULL
;
127 /* Returns the gimplified predicate for basic block BB. */
130 bb_predicate (basic_block bb
)
132 return ((bb_predicate_p
) bb
->aux
)->predicate
;
135 /* Sets the gimplified predicate COND for basic block BB. */
138 set_bb_predicate (basic_block bb
, tree cond
)
140 gcc_assert ((TREE_CODE (cond
) == TRUTH_NOT_EXPR
141 && is_gimple_condexpr (TREE_OPERAND (cond
, 0)))
142 || is_gimple_condexpr (cond
));
143 ((bb_predicate_p
) bb
->aux
)->predicate
= cond
;
146 /* Returns the sequence of statements of the gimplification of the
147 predicate for basic block BB. */
149 static inline gimple_seq
150 bb_predicate_gimplified_stmts (basic_block bb
)
152 return ((bb_predicate_p
) bb
->aux
)->predicate_gimplified_stmts
;
155 /* Sets the sequence of statements STMTS of the gimplification of the
156 predicate for basic block BB. */
159 set_bb_predicate_gimplified_stmts (basic_block bb
, gimple_seq stmts
)
161 ((bb_predicate_p
) bb
->aux
)->predicate_gimplified_stmts
= stmts
;
164 /* Adds the sequence of statements STMTS to the sequence of statements
165 of the predicate for basic block BB. */
168 add_bb_predicate_gimplified_stmts (basic_block bb
, gimple_seq stmts
)
171 (&(((bb_predicate_p
) bb
->aux
)->predicate_gimplified_stmts
), stmts
);
174 /* Initializes to TRUE the predicate of basic block BB. */
177 init_bb_predicate (basic_block bb
)
179 bb
->aux
= XNEW (struct bb_predicate_s
);
180 set_bb_predicate_gimplified_stmts (bb
, NULL
);
181 set_bb_predicate (bb
, boolean_true_node
);
184 /* Free the predicate of basic block BB. */
187 free_bb_predicate (basic_block bb
)
191 if (!bb_has_predicate (bb
))
194 /* Release the SSA_NAMEs created for the gimplification of the
196 stmts
= bb_predicate_gimplified_stmts (bb
);
199 gimple_stmt_iterator i
;
201 for (i
= gsi_start (stmts
); !gsi_end_p (i
); gsi_next (&i
))
202 free_stmt_operands (gsi_stmt (i
));
209 /* Free the predicate of BB and reinitialize it with the true
213 reset_bb_predicate (basic_block bb
)
215 free_bb_predicate (bb
);
216 init_bb_predicate (bb
);
219 /* Returns a new SSA_NAME of type TYPE that is assigned the value of
220 the expression EXPR. Inserts the statement created for this
221 computation before GSI and leaves the iterator GSI at the same
225 ifc_temp_var (tree type
, tree expr
, gimple_stmt_iterator
*gsi
)
227 const char *name
= "_ifc_";
231 /* Create new temporary variable. */
232 var
= create_tmp_var (type
, name
);
233 add_referenced_var (var
);
235 /* Build new statement to assign EXPR to new variable. */
236 stmt
= gimple_build_assign (var
, expr
);
238 /* Get SSA name for the new variable and set make new statement
239 its definition statement. */
240 new_name
= make_ssa_name (var
, stmt
);
241 gimple_assign_set_lhs (stmt
, new_name
);
242 SSA_NAME_DEF_STMT (new_name
) = stmt
;
245 gsi_insert_before (gsi
, stmt
, GSI_SAME_STMT
);
246 return gimple_assign_lhs (stmt
);
249 /* Return true when COND is a true predicate. */
252 is_true_predicate (tree cond
)
254 return (cond
== NULL_TREE
255 || cond
== boolean_true_node
256 || integer_onep (cond
));
259 /* Returns true when BB has a predicate that is not trivial: true or
263 is_predicated (basic_block bb
)
265 return !is_true_predicate (bb_predicate (bb
));
268 /* Parses the predicate COND and returns its comparison code and
269 operands OP0 and OP1. */
271 static enum tree_code
272 parse_predicate (tree cond
, tree
*op0
, tree
*op1
)
276 if (TREE_CODE (cond
) == SSA_NAME
277 && is_gimple_assign (s
= SSA_NAME_DEF_STMT (cond
)))
279 if (TREE_CODE_CLASS (gimple_assign_rhs_code (s
)) == tcc_comparison
)
281 *op0
= gimple_assign_rhs1 (s
);
282 *op1
= gimple_assign_rhs2 (s
);
283 return gimple_assign_rhs_code (s
);
286 else if (gimple_assign_rhs_code (s
) == TRUTH_NOT_EXPR
)
288 tree op
= gimple_assign_rhs1 (s
);
289 tree type
= TREE_TYPE (op
);
290 enum tree_code code
= parse_predicate (op
, op0
, op1
);
292 return code
== ERROR_MARK
? ERROR_MARK
293 : invert_tree_comparison (code
, HONOR_NANS (TYPE_MODE (type
)));
299 if (TREE_CODE_CLASS (TREE_CODE (cond
)) == tcc_comparison
)
301 *op0
= TREE_OPERAND (cond
, 0);
302 *op1
= TREE_OPERAND (cond
, 1);
303 return TREE_CODE (cond
);
309 /* Returns the fold of predicate C1 OR C2 at location LOC. */
312 fold_or_predicates (location_t loc
, tree c1
, tree c2
)
314 tree op1a
, op1b
, op2a
, op2b
;
315 enum tree_code code1
= parse_predicate (c1
, &op1a
, &op1b
);
316 enum tree_code code2
= parse_predicate (c2
, &op2a
, &op2b
);
318 if (code1
!= ERROR_MARK
&& code2
!= ERROR_MARK
)
320 tree t
= maybe_fold_or_comparisons (code1
, op1a
, op1b
,
326 return fold_build2_loc (loc
, TRUTH_OR_EXPR
, boolean_type_node
, c1
, c2
);
329 /* Add condition NC to the predicate list of basic block BB. */
332 add_to_predicate_list (basic_block bb
, tree nc
)
336 if (is_true_predicate (nc
))
339 if (!is_predicated (bb
))
343 bc
= bb_predicate (bb
);
344 bc
= fold_or_predicates (EXPR_LOCATION (bc
), nc
, bc
);
345 if (is_true_predicate (bc
))
347 reset_bb_predicate (bb
);
352 /* Allow a TRUTH_NOT_EXPR around the main predicate. */
353 if (TREE_CODE (bc
) == TRUTH_NOT_EXPR
)
354 tp
= &TREE_OPERAND (bc
, 0);
357 if (!is_gimple_condexpr (*tp
))
360 *tp
= force_gimple_operand_1 (*tp
, &stmts
, is_gimple_condexpr
, NULL_TREE
);
361 add_bb_predicate_gimplified_stmts (bb
, stmts
);
363 set_bb_predicate (bb
, bc
);
366 /* Add the condition COND to the previous condition PREV_COND, and add
367 this to the predicate list of the destination of edge E. LOOP is
368 the loop to be if-converted. */
371 add_to_dst_predicate_list (struct loop
*loop
, edge e
,
372 tree prev_cond
, tree cond
)
374 if (!flow_bb_inside_loop_p (loop
, e
->dest
))
377 if (!is_true_predicate (prev_cond
))
378 cond
= fold_build2 (TRUTH_AND_EXPR
, boolean_type_node
,
381 add_to_predicate_list (e
->dest
, cond
);
384 /* Return true if one of the successor edges of BB exits LOOP. */
387 bb_with_exit_edge_p (struct loop
*loop
, basic_block bb
)
392 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
393 if (loop_exit_edge_p (loop
, e
))
399 /* Return true when PHI is if-convertible. PHI is part of loop LOOP
400 and it belongs to basic block BB.
402 PHI is not if-convertible if:
403 - it has more than 2 arguments.
405 When the flag_tree_loop_if_convert_stores is not set, PHI is not
407 - a virtual PHI is immediately used in another PHI node,
408 - there is a virtual PHI in a BB other than the loop->header. */
411 if_convertible_phi_p (struct loop
*loop
, basic_block bb
, gimple phi
)
413 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
415 fprintf (dump_file
, "-------------------------\n");
416 print_gimple_stmt (dump_file
, phi
, 0, TDF_SLIM
);
419 if (bb
!= loop
->header
&& gimple_phi_num_args (phi
) != 2)
421 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
422 fprintf (dump_file
, "More than two phi node args.\n");
426 if (flag_tree_loop_if_convert_stores
)
429 /* When the flag_tree_loop_if_convert_stores is not set, check
430 that there are no memory writes in the branches of the loop to be
432 if (!is_gimple_reg (SSA_NAME_VAR (gimple_phi_result (phi
))))
434 imm_use_iterator imm_iter
;
437 if (bb
!= loop
->header
)
439 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
440 fprintf (dump_file
, "Virtual phi not on loop->header.\n");
444 FOR_EACH_IMM_USE_FAST (use_p
, imm_iter
, gimple_phi_result (phi
))
446 if (gimple_code (USE_STMT (use_p
)) == GIMPLE_PHI
)
448 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
449 fprintf (dump_file
, "Difficult to handle this virtual phi.\n");
458 /* Records the status of a data reference. This struct is attached to
459 each DR->aux field. */
462 /* -1 when not initialized, 0 when false, 1 when true. */
463 int written_at_least_once
;
465 /* -1 when not initialized, 0 when false, 1 when true. */
466 int rw_unconditionally
;
469 #define IFC_DR(DR) ((struct ifc_dr *) (DR)->aux)
470 #define DR_WRITTEN_AT_LEAST_ONCE(DR) (IFC_DR (DR)->written_at_least_once)
471 #define DR_RW_UNCONDITIONALLY(DR) (IFC_DR (DR)->rw_unconditionally)
473 /* Returns true when the memory references of STMT are read or written
474 unconditionally. In other words, this function returns true when
475 for every data reference A in STMT there exist other accesses to
476 a data reference with the same base with predicates that add up (OR-up) to
477 the true predicate: this ensures that the data reference A is touched
478 (read or written) on every iteration of the if-converted loop. */
481 memrefs_read_or_written_unconditionally (gimple stmt
,
482 VEC (data_reference_p
, heap
) *drs
)
485 data_reference_p a
, b
;
486 tree ca
= bb_predicate (gimple_bb (stmt
));
488 for (i
= 0; VEC_iterate (data_reference_p
, drs
, i
, a
); i
++)
489 if (DR_STMT (a
) == stmt
)
492 int x
= DR_RW_UNCONDITIONALLY (a
);
500 for (j
= 0; VEC_iterate (data_reference_p
, drs
, j
, b
); j
++)
502 tree ref_base_a
= DR_REF (a
);
503 tree ref_base_b
= DR_REF (b
);
505 if (DR_STMT (b
) == stmt
)
508 while (TREE_CODE (ref_base_a
) == COMPONENT_REF
509 || TREE_CODE (ref_base_a
) == IMAGPART_EXPR
510 || TREE_CODE (ref_base_a
) == REALPART_EXPR
)
511 ref_base_a
= TREE_OPERAND (ref_base_a
, 0);
513 while (TREE_CODE (ref_base_b
) == COMPONENT_REF
514 || TREE_CODE (ref_base_b
) == IMAGPART_EXPR
515 || TREE_CODE (ref_base_b
) == REALPART_EXPR
)
516 ref_base_b
= TREE_OPERAND (ref_base_b
, 0);
518 if (!operand_equal_p (ref_base_a
, ref_base_b
, 0))
520 tree cb
= bb_predicate (gimple_bb (DR_STMT (b
)));
522 if (DR_RW_UNCONDITIONALLY (b
) == 1
523 || is_true_predicate (cb
)
524 || is_true_predicate (ca
525 = fold_or_predicates (EXPR_LOCATION (cb
), ca
, cb
)))
527 DR_RW_UNCONDITIONALLY (a
) = 1;
528 DR_RW_UNCONDITIONALLY (b
) = 1;
537 DR_RW_UNCONDITIONALLY (a
) = 0;
545 /* Returns true when the memory references of STMT are unconditionally
546 written. In other words, this function returns true when for every
547 data reference A written in STMT, there exist other writes to the
548 same data reference with predicates that add up (OR-up) to the true
549 predicate: this ensures that the data reference A is written on
550 every iteration of the if-converted loop. */
553 write_memrefs_written_at_least_once (gimple stmt
,
554 VEC (data_reference_p
, heap
) *drs
)
557 data_reference_p a
, b
;
558 tree ca
= bb_predicate (gimple_bb (stmt
));
560 for (i
= 0; VEC_iterate (data_reference_p
, drs
, i
, a
); i
++)
561 if (DR_STMT (a
) == stmt
565 int x
= DR_WRITTEN_AT_LEAST_ONCE (a
);
573 for (j
= 0; VEC_iterate (data_reference_p
, drs
, j
, b
); j
++)
574 if (DR_STMT (b
) != stmt
576 && same_data_refs_base_objects (a
, b
))
578 tree cb
= bb_predicate (gimple_bb (DR_STMT (b
)));
580 if (DR_WRITTEN_AT_LEAST_ONCE (b
) == 1
581 || is_true_predicate (cb
)
582 || is_true_predicate (ca
= fold_or_predicates (EXPR_LOCATION (cb
),
585 DR_WRITTEN_AT_LEAST_ONCE (a
) = 1;
586 DR_WRITTEN_AT_LEAST_ONCE (b
) = 1;
594 DR_WRITTEN_AT_LEAST_ONCE (a
) = 0;
602 /* Return true when the memory references of STMT won't trap in the
603 if-converted code. There are two things that we have to check for:
605 - writes to memory occur to writable memory: if-conversion of
606 memory writes transforms the conditional memory writes into
607 unconditional writes, i.e. "if (cond) A[i] = foo" is transformed
608 into "A[i] = cond ? foo : A[i]", and as the write to memory may not
609 be executed at all in the original code, it may be a readonly
610 memory. To check that A is not const-qualified, we check that
611 there exists at least an unconditional write to A in the current
614 - reads or writes to memory are valid memory accesses for every
615 iteration. To check that the memory accesses are correctly formed
616 and that we are allowed to read and write in these locations, we
617 check that the memory accesses to be if-converted occur at every
618 iteration unconditionally. */
621 ifcvt_memrefs_wont_trap (gimple stmt
, VEC (data_reference_p
, heap
) *refs
)
623 return write_memrefs_written_at_least_once (stmt
, refs
)
624 && memrefs_read_or_written_unconditionally (stmt
, refs
);
627 /* Wrapper around gimple_could_trap_p refined for the needs of the
628 if-conversion. Try to prove that the memory accesses of STMT could
629 not trap in the innermost loop containing STMT. */
632 ifcvt_could_trap_p (gimple stmt
, VEC (data_reference_p
, heap
) *refs
)
634 if (gimple_vuse (stmt
)
635 && !gimple_could_trap_p_1 (stmt
, false, false)
636 && ifcvt_memrefs_wont_trap (stmt
, refs
))
639 return gimple_could_trap_p (stmt
);
642 /* Return true when STMT is if-convertible.
644 GIMPLE_ASSIGN statement is not if-convertible if,
647 - LHS is not var decl. */
650 if_convertible_gimple_assign_stmt_p (gimple stmt
,
651 VEC (data_reference_p
, heap
) *refs
)
653 tree lhs
= gimple_assign_lhs (stmt
);
656 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
658 fprintf (dump_file
, "-------------------------\n");
659 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
662 if (!is_gimple_reg_type (TREE_TYPE (lhs
)))
665 /* Some of these constrains might be too conservative. */
666 if (stmt_ends_bb_p (stmt
)
667 || gimple_has_volatile_ops (stmt
)
668 || (TREE_CODE (lhs
) == SSA_NAME
669 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
670 || gimple_has_side_effects (stmt
))
672 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
673 fprintf (dump_file
, "stmt not suitable for ifcvt\n");
677 if (flag_tree_loop_if_convert_stores
)
679 if (ifcvt_could_trap_p (stmt
, refs
))
681 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
682 fprintf (dump_file
, "tree could trap...\n");
688 if (gimple_assign_rhs_could_trap_p (stmt
))
690 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
691 fprintf (dump_file
, "tree could trap...\n");
695 bb
= gimple_bb (stmt
);
697 if (TREE_CODE (lhs
) != SSA_NAME
698 && bb
!= bb
->loop_father
->header
699 && !bb_with_exit_edge_p (bb
->loop_father
, bb
))
701 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
703 fprintf (dump_file
, "LHS is not var\n");
704 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
712 /* Return true when STMT is if-convertible.
714 A statement is if-convertible if:
715 - it is an if-convertible GIMPLE_ASSGIN,
716 - it is a GIMPLE_LABEL or a GIMPLE_COND. */
719 if_convertible_stmt_p (gimple stmt
, VEC (data_reference_p
, heap
) *refs
)
721 switch (gimple_code (stmt
))
729 return if_convertible_gimple_assign_stmt_p (stmt
, refs
);
733 tree fndecl
= gimple_call_fndecl (stmt
);
736 int flags
= gimple_call_flags (stmt
);
737 if ((flags
& ECF_CONST
)
738 && !(flags
& ECF_LOOPING_CONST_OR_PURE
)
739 /* We can only vectorize some builtins at the moment,
740 so restrict if-conversion to those. */
741 && DECL_BUILT_IN (fndecl
))
748 /* Don't know what to do with 'em so don't do anything. */
749 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
751 fprintf (dump_file
, "don't know what to do\n");
752 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
761 /* Return true when BB post-dominates all its predecessors. */
764 bb_postdominates_preds (basic_block bb
)
768 for (i
= 0; i
< EDGE_COUNT (bb
->preds
); i
++)
769 if (!dominated_by_p (CDI_POST_DOMINATORS
, EDGE_PRED (bb
, i
)->src
, bb
))
775 /* Return true when BB is if-convertible. This routine does not check
776 basic block's statements and phis.
778 A basic block is not if-convertible if:
779 - it is non-empty and it is after the exit block (in BFS order),
780 - it is after the exit block but before the latch,
781 - its edges are not normal.
783 EXIT_BB is the basic block containing the exit of the LOOP. BB is
787 if_convertible_bb_p (struct loop
*loop
, basic_block bb
, basic_block exit_bb
)
792 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
793 fprintf (dump_file
, "----------[%d]-------------\n", bb
->index
);
795 if (EDGE_COUNT (bb
->preds
) > 2
796 || EDGE_COUNT (bb
->succs
) > 2)
801 if (bb
!= loop
->latch
)
803 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
804 fprintf (dump_file
, "basic block after exit bb but before latch\n");
807 else if (!empty_block_p (bb
))
809 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
810 fprintf (dump_file
, "non empty basic block after exit bb\n");
813 else if (bb
== loop
->latch
815 && !dominated_by_p (CDI_DOMINATORS
, bb
, exit_bb
))
817 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
818 fprintf (dump_file
, "latch is not dominated by exit_block\n");
823 /* Be less adventurous and handle only normal edges. */
824 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
826 (EDGE_ABNORMAL_CALL
| EDGE_EH
| EDGE_ABNORMAL
| EDGE_IRREDUCIBLE_LOOP
))
828 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
829 fprintf (dump_file
, "Difficult to handle edges\n");
833 if (EDGE_COUNT (bb
->preds
) == 2
834 && bb
!= loop
->header
835 && !bb_postdominates_preds (bb
))
841 /* Return true when all predecessor blocks of BB are visited. The
842 VISITED bitmap keeps track of the visited blocks. */
845 pred_blocks_visited_p (basic_block bb
, bitmap
*visited
)
849 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
850 if (!bitmap_bit_p (*visited
, e
->src
->index
))
856 /* Get body of a LOOP in suitable order for if-conversion. It is
857 caller's responsibility to deallocate basic block list.
858 If-conversion suitable order is, breadth first sort (BFS) order
859 with an additional constraint: select a block only if all its
860 predecessors are already selected. */
863 get_loop_body_in_if_conv_order (const struct loop
*loop
)
865 basic_block
*blocks
, *blocks_in_bfs_order
;
868 unsigned int index
= 0;
869 unsigned int visited_count
= 0;
871 gcc_assert (loop
->num_nodes
);
872 gcc_assert (loop
->latch
!= EXIT_BLOCK_PTR
);
874 blocks
= XCNEWVEC (basic_block
, loop
->num_nodes
);
875 visited
= BITMAP_ALLOC (NULL
);
877 blocks_in_bfs_order
= get_loop_body_in_bfs_order (loop
);
880 while (index
< loop
->num_nodes
)
882 bb
= blocks_in_bfs_order
[index
];
884 if (bb
->flags
& BB_IRREDUCIBLE_LOOP
)
886 free (blocks_in_bfs_order
);
887 BITMAP_FREE (visited
);
892 if (!bitmap_bit_p (visited
, bb
->index
))
894 if (pred_blocks_visited_p (bb
, &visited
)
895 || bb
== loop
->header
)
897 /* This block is now visited. */
898 bitmap_set_bit (visited
, bb
->index
);
899 blocks
[visited_count
++] = bb
;
905 if (index
== loop
->num_nodes
906 && visited_count
!= loop
->num_nodes
)
910 free (blocks_in_bfs_order
);
911 BITMAP_FREE (visited
);
915 /* Returns true when the analysis of the predicates for all the basic
916 blocks in LOOP succeeded.
918 predicate_bbs first allocates the predicates of the basic blocks.
919 These fields are then initialized with the tree expressions
920 representing the predicates under which a basic block is executed
921 in the LOOP. As the loop->header is executed at each iteration, it
922 has the "true" predicate. Other statements executed under a
923 condition are predicated with that condition, for example
930 S1 will be predicated with "x", and
931 S2 will be predicated with "!x". */
934 predicate_bbs (loop_p loop
)
938 for (i
= 0; i
< loop
->num_nodes
; i
++)
939 init_bb_predicate (ifc_bbs
[i
]);
941 for (i
= 0; i
< loop
->num_nodes
; i
++)
943 basic_block bb
= ifc_bbs
[i
];
945 gimple_stmt_iterator itr
;
947 /* The loop latch is always executed and has no extra conditions
948 to be processed: skip it. */
949 if (bb
== loop
->latch
)
951 reset_bb_predicate (loop
->latch
);
955 cond
= bb_predicate (bb
);
957 for (itr
= gsi_start_bb (bb
); !gsi_end_p (itr
); gsi_next (&itr
))
959 gimple stmt
= gsi_stmt (itr
);
961 switch (gimple_code (stmt
))
972 edge true_edge
, false_edge
;
973 location_t loc
= gimple_location (stmt
);
974 tree c
= fold_build2_loc (loc
, gimple_cond_code (stmt
),
976 gimple_cond_lhs (stmt
),
977 gimple_cond_rhs (stmt
));
979 /* Add new condition into destination's predicate list. */
980 extract_true_false_edges_from_block (gimple_bb (stmt
),
981 &true_edge
, &false_edge
);
983 /* If C is true, then TRUE_EDGE is taken. */
984 add_to_dst_predicate_list (loop
, true_edge
,
988 /* If C is false, then FALSE_EDGE is taken. */
989 c2
= invert_truthvalue_loc (loc
, unshare_expr (c
));
990 tem
= canonicalize_cond_expr_cond (c2
);
993 add_to_dst_predicate_list (loop
, false_edge
,
994 unshare_expr (cond
), c2
);
1001 /* Not handled yet in if-conversion. */
1006 /* If current bb has only one successor, then consider it as an
1007 unconditional goto. */
1008 if (single_succ_p (bb
))
1010 basic_block bb_n
= single_succ (bb
);
1012 /* The successor bb inherits the predicate of its
1013 predecessor. If there is no predicate in the predecessor
1014 bb, then consider the successor bb as always executed. */
1015 if (cond
== NULL_TREE
)
1016 cond
= boolean_true_node
;
1018 add_to_predicate_list (bb_n
, cond
);
1022 /* The loop header is always executed. */
1023 reset_bb_predicate (loop
->header
);
1024 gcc_assert (bb_predicate_gimplified_stmts (loop
->header
) == NULL
1025 && bb_predicate_gimplified_stmts (loop
->latch
) == NULL
);
1030 /* Return true when LOOP is if-convertible. This is a helper function
1031 for if_convertible_loop_p. REFS and DDRS are initialized and freed
1032 in if_convertible_loop_p. */
1035 if_convertible_loop_p_1 (struct loop
*loop
,
1036 VEC (loop_p
, heap
) **loop_nest
,
1037 VEC (data_reference_p
, heap
) **refs
,
1038 VEC (ddr_p
, heap
) **ddrs
)
1042 basic_block exit_bb
= NULL
;
1044 /* Don't if-convert the loop when the data dependences cannot be
1045 computed: the loop won't be vectorized in that case. */
1046 res
= compute_data_dependences_for_loop (loop
, true, loop_nest
, refs
, ddrs
);
1050 calculate_dominance_info (CDI_DOMINATORS
);
1051 calculate_dominance_info (CDI_POST_DOMINATORS
);
1053 /* Allow statements that can be handled during if-conversion. */
1054 ifc_bbs
= get_loop_body_in_if_conv_order (loop
);
1057 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1058 fprintf (dump_file
, "Irreducible loop\n");
1062 for (i
= 0; i
< loop
->num_nodes
; i
++)
1064 basic_block bb
= ifc_bbs
[i
];
1066 if (!if_convertible_bb_p (loop
, bb
, exit_bb
))
1069 if (bb_with_exit_edge_p (loop
, bb
))
1073 res
= predicate_bbs (loop
);
1077 if (flag_tree_loop_if_convert_stores
)
1079 data_reference_p dr
;
1081 for (i
= 0; VEC_iterate (data_reference_p
, *refs
, i
, dr
); i
++)
1083 dr
->aux
= XNEW (struct ifc_dr
);
1084 DR_WRITTEN_AT_LEAST_ONCE (dr
) = -1;
1085 DR_RW_UNCONDITIONALLY (dr
) = -1;
1089 for (i
= 0; i
< loop
->num_nodes
; i
++)
1091 basic_block bb
= ifc_bbs
[i
];
1092 gimple_stmt_iterator itr
;
1094 for (itr
= gsi_start_phis (bb
); !gsi_end_p (itr
); gsi_next (&itr
))
1095 if (!if_convertible_phi_p (loop
, bb
, gsi_stmt (itr
)))
1098 /* Check the if-convertibility of statements in predicated BBs. */
1099 if (is_predicated (bb
))
1100 for (itr
= gsi_start_bb (bb
); !gsi_end_p (itr
); gsi_next (&itr
))
1101 if (!if_convertible_stmt_p (gsi_stmt (itr
), *refs
))
1106 fprintf (dump_file
, "Applying if-conversion\n");
1111 /* Return true when LOOP is if-convertible.
1112 LOOP is if-convertible if:
1114 - it has two or more basic blocks,
1115 - it has only one exit,
1116 - loop header is not the exit edge,
1117 - if its basic blocks and phi nodes are if convertible. */
1120 if_convertible_loop_p (struct loop
*loop
)
1125 VEC (data_reference_p
, heap
) *refs
;
1126 VEC (ddr_p
, heap
) *ddrs
;
1127 VEC (loop_p
, heap
) *loop_nest
;
1129 /* Handle only innermost loop. */
1130 if (!loop
|| loop
->inner
)
1132 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1133 fprintf (dump_file
, "not innermost loop\n");
1137 /* If only one block, no need for if-conversion. */
1138 if (loop
->num_nodes
<= 2)
1140 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1141 fprintf (dump_file
, "less than 2 basic blocks\n");
1145 /* More than one loop exit is too much to handle. */
1146 if (!single_exit (loop
))
1148 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1149 fprintf (dump_file
, "multiple exits\n");
1153 /* If one of the loop header's edge is an exit edge then do not
1154 apply if-conversion. */
1155 FOR_EACH_EDGE (e
, ei
, loop
->header
->succs
)
1156 if (loop_exit_edge_p (loop
, e
))
1159 refs
= VEC_alloc (data_reference_p
, heap
, 5);
1160 ddrs
= VEC_alloc (ddr_p
, heap
, 25);
1161 loop_nest
= VEC_alloc (loop_p
, heap
, 3);
1162 res
= if_convertible_loop_p_1 (loop
, &loop_nest
, &refs
, &ddrs
);
1164 if (flag_tree_loop_if_convert_stores
)
1166 data_reference_p dr
;
1169 for (i
= 0; VEC_iterate (data_reference_p
, refs
, i
, dr
); i
++)
1173 VEC_free (loop_p
, heap
, loop_nest
);
1174 free_data_refs (refs
);
1175 free_dependence_relations (ddrs
);
1179 /* Basic block BB has two predecessors. Using predecessor's bb
1180 predicate, set an appropriate condition COND for the PHI node
1181 replacement. Return the true block whose phi arguments are
1182 selected when cond is true. LOOP is the loop containing the
1183 if-converted region, GSI is the place to insert the code for the
1187 find_phi_replacement_condition (struct loop
*loop
,
1188 basic_block bb
, tree
*cond
,
1189 gimple_stmt_iterator
*gsi
)
1191 edge first_edge
, second_edge
;
1194 gcc_assert (EDGE_COUNT (bb
->preds
) == 2);
1195 first_edge
= EDGE_PRED (bb
, 0);
1196 second_edge
= EDGE_PRED (bb
, 1);
1198 /* Use condition based on following criteria:
1204 S2 is preferred over S1. Make 'b' first_bb and use its condition.
1206 2) Do not make loop header first_bb.
1209 S1: x = !(c == d)? a : b;
1212 S22: x = t1 ? b : a;
1214 S3: x = (c == d) ? b : a;
1216 S3 is preferred over S1 and S2*, Make 'b' first_bb and use
1219 4) If pred B is dominated by pred A then use pred B's condition.
1222 /* Select condition that is not TRUTH_NOT_EXPR. */
1223 tmp_cond
= bb_predicate (first_edge
->src
);
1224 gcc_assert (tmp_cond
);
1226 if (TREE_CODE (tmp_cond
) == TRUTH_NOT_EXPR
)
1230 tmp_edge
= first_edge
;
1231 first_edge
= second_edge
;
1232 second_edge
= tmp_edge
;
1235 /* Check if FIRST_BB is loop header or not and make sure that
1236 FIRST_BB does not dominate SECOND_BB. */
1237 if (first_edge
->src
== loop
->header
1238 || dominated_by_p (CDI_DOMINATORS
,
1239 second_edge
->src
, first_edge
->src
))
1241 *cond
= bb_predicate (second_edge
->src
);
1243 if (TREE_CODE (*cond
) == TRUTH_NOT_EXPR
)
1244 *cond
= TREE_OPERAND (*cond
, 0);
1246 /* Select non loop header bb. */
1247 first_edge
= second_edge
;
1250 *cond
= bb_predicate (first_edge
->src
);
1252 /* Gimplify the condition to a valid cond-expr conditonal operand. */
1253 *cond
= force_gimple_operand_gsi_1 (gsi
, unshare_expr (*cond
),
1254 is_gimple_condexpr
, NULL_TREE
,
1255 true, GSI_SAME_STMT
);
1257 return first_edge
->src
;
1260 /* Replace a scalar PHI node with a COND_EXPR using COND as condition.
1261 This routine does not handle PHI nodes with more than two
1265 S1: A = PHI <x1(1), x2(5)
1267 S2: A = cond ? x1 : x2;
1269 The generated code is inserted at GSI that points to the top of
1270 basic block's statement list. When COND is true, phi arg from
1271 TRUE_BB is selected. */
1274 predicate_scalar_phi (gimple phi
, tree cond
,
1275 basic_block true_bb
,
1276 gimple_stmt_iterator
*gsi
)
1280 tree rhs
, res
, arg
, scev
;
1282 gcc_assert (gimple_code (phi
) == GIMPLE_PHI
1283 && gimple_phi_num_args (phi
) == 2);
1285 res
= gimple_phi_result (phi
);
1286 /* Do not handle virtual phi nodes. */
1287 if (!is_gimple_reg (SSA_NAME_VAR (res
)))
1290 bb
= gimple_bb (phi
);
1292 if ((arg
= degenerate_phi_result (phi
))
1293 || ((scev
= analyze_scalar_evolution (gimple_bb (phi
)->loop_father
,
1295 && !chrec_contains_undetermined (scev
)
1297 && (arg
= gimple_phi_arg_def (phi
, 0))))
1302 /* Use condition that is not TRUTH_NOT_EXPR in conditional modify expr. */
1303 if (EDGE_PRED (bb
, 1)->src
== true_bb
)
1305 arg_0
= gimple_phi_arg_def (phi
, 1);
1306 arg_1
= gimple_phi_arg_def (phi
, 0);
1310 arg_0
= gimple_phi_arg_def (phi
, 0);
1311 arg_1
= gimple_phi_arg_def (phi
, 1);
1314 gcc_checking_assert (bb
== bb
->loop_father
->header
1315 || bb_postdominates_preds (bb
));
1317 /* Build new RHS using selected condition and arguments. */
1318 rhs
= build3 (COND_EXPR
, TREE_TYPE (res
),
1319 unshare_expr (cond
), arg_0
, arg_1
);
1322 new_stmt
= gimple_build_assign (res
, rhs
);
1323 SSA_NAME_DEF_STMT (gimple_phi_result (phi
)) = new_stmt
;
1324 gsi_insert_before (gsi
, new_stmt
, GSI_SAME_STMT
);
1325 update_stmt (new_stmt
);
1327 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1329 fprintf (dump_file
, "new phi replacement stmt\n");
1330 print_gimple_stmt (dump_file
, new_stmt
, 0, TDF_SLIM
);
1334 /* Replaces in LOOP all the scalar phi nodes other than those in the
1335 LOOP->header block with conditional modify expressions. */
1338 predicate_all_scalar_phis (struct loop
*loop
)
1341 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
1344 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
1347 tree cond
= NULL_TREE
;
1348 gimple_stmt_iterator gsi
, phi_gsi
;
1349 basic_block true_bb
= NULL
;
1352 if (bb
== loop
->header
)
1355 phi_gsi
= gsi_start_phis (bb
);
1356 if (gsi_end_p (phi_gsi
))
1359 /* BB has two predecessors. Using predecessor's aux field, set
1360 appropriate condition for the PHI node replacement. */
1361 gsi
= gsi_after_labels (bb
);
1362 true_bb
= find_phi_replacement_condition (loop
, bb
, &cond
, &gsi
);
1364 while (!gsi_end_p (phi_gsi
))
1366 phi
= gsi_stmt (phi_gsi
);
1367 predicate_scalar_phi (phi
, cond
, true_bb
, &gsi
);
1368 release_phi_node (phi
);
1369 gsi_next (&phi_gsi
);
1372 set_phi_nodes (bb
, NULL
);
1376 /* Insert in each basic block of LOOP the statements produced by the
1377 gimplification of the predicates. */
1380 insert_gimplified_predicates (loop_p loop
)
1384 for (i
= 0; i
< loop
->num_nodes
; i
++)
1386 basic_block bb
= ifc_bbs
[i
];
1389 if (!is_predicated (bb
))
1391 /* Do not insert statements for a basic block that is not
1392 predicated. Also make sure that the predicate of the
1393 basic block is set to true. */
1394 reset_bb_predicate (bb
);
1398 stmts
= bb_predicate_gimplified_stmts (bb
);
1401 if (flag_tree_loop_if_convert_stores
)
1403 /* Insert the predicate of the BB just after the label,
1404 as the if-conversion of memory writes will use this
1406 gimple_stmt_iterator gsi
= gsi_after_labels (bb
);
1407 gsi_insert_seq_before (&gsi
, stmts
, GSI_SAME_STMT
);
1411 /* Insert the predicate of the BB at the end of the BB
1412 as this would reduce the register pressure: the only
1413 use of this predicate will be in successor BBs. */
1414 gimple_stmt_iterator gsi
= gsi_last_bb (bb
);
1417 || stmt_ends_bb_p (gsi_stmt (gsi
)))
1418 gsi_insert_seq_before (&gsi
, stmts
, GSI_SAME_STMT
);
1420 gsi_insert_seq_after (&gsi
, stmts
, GSI_SAME_STMT
);
1423 /* Once the sequence is code generated, set it to NULL. */
1424 set_bb_predicate_gimplified_stmts (bb
, NULL
);
1429 /* Predicate each write to memory in LOOP.
1431 This function transforms control flow constructs containing memory
1434 | for (i = 0; i < N; i++)
1438 into the following form that does not contain control flow:
1440 | for (i = 0; i < N; i++)
1441 | A[i] = cond ? expr : A[i];
1443 The original CFG looks like this:
1450 | if (i < N) goto bb_5 else goto bb_2
1454 | cond = some_computation;
1455 | if (cond) goto bb_3 else goto bb_4
1467 insert_gimplified_predicates inserts the computation of the COND
1468 expression at the beginning of the destination basic block:
1475 | if (i < N) goto bb_5 else goto bb_2
1479 | cond = some_computation;
1480 | if (cond) goto bb_3 else goto bb_4
1484 | cond = some_computation;
1493 predicate_mem_writes is then predicating the memory write as follows:
1500 | if (i < N) goto bb_5 else goto bb_2
1504 | if (cond) goto bb_3 else goto bb_4
1508 | cond = some_computation;
1509 | A[i] = cond ? expr : A[i];
1517 and finally combine_blocks removes the basic block boundaries making
1518 the loop vectorizable:
1522 | if (i < N) goto bb_5 else goto bb_1
1526 | cond = some_computation;
1527 | A[i] = cond ? expr : A[i];
1528 | if (i < N) goto bb_5 else goto bb_4
1537 predicate_mem_writes (loop_p loop
)
1539 unsigned int i
, orig_loop_num_nodes
= loop
->num_nodes
;
1541 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
1543 gimple_stmt_iterator gsi
;
1544 basic_block bb
= ifc_bbs
[i
];
1545 tree cond
= bb_predicate (bb
);
1548 if (is_true_predicate (cond
))
1551 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1552 if ((stmt
= gsi_stmt (gsi
))
1553 && gimple_assign_single_p (stmt
)
1554 && gimple_vdef (stmt
))
1556 tree lhs
= gimple_assign_lhs (stmt
);
1557 tree rhs
= gimple_assign_rhs1 (stmt
);
1558 tree type
= TREE_TYPE (lhs
);
1560 lhs
= ifc_temp_var (type
, unshare_expr (lhs
), &gsi
);
1561 rhs
= ifc_temp_var (type
, unshare_expr (rhs
), &gsi
);
1562 rhs
= build3 (COND_EXPR
, type
, unshare_expr (cond
), rhs
, lhs
);
1563 gimple_assign_set_rhs1 (stmt
, ifc_temp_var (type
, rhs
, &gsi
));
1569 /* Remove all GIMPLE_CONDs and GIMPLE_LABELs of all the basic blocks
1570 other than the exit and latch of the LOOP. Also resets the
1571 GIMPLE_DEBUG information. */
1574 remove_conditions_and_labels (loop_p loop
)
1576 gimple_stmt_iterator gsi
;
1579 for (i
= 0; i
< loop
->num_nodes
; i
++)
1581 basic_block bb
= ifc_bbs
[i
];
1583 if (bb_with_exit_edge_p (loop
, bb
)
1584 || bb
== loop
->latch
)
1587 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); )
1588 switch (gimple_code (gsi_stmt (gsi
)))
1592 gsi_remove (&gsi
, true);
1596 /* ??? Should there be conditional GIMPLE_DEBUG_BINDs? */
1597 if (gimple_debug_bind_p (gsi_stmt (gsi
)))
1599 gimple_debug_bind_reset_value (gsi_stmt (gsi
));
1600 update_stmt (gsi_stmt (gsi
));
1611 /* Combine all the basic blocks from LOOP into one or two super basic
1612 blocks. Replace PHI nodes with conditional modify expressions. */
1615 combine_blocks (struct loop
*loop
)
1617 basic_block bb
, exit_bb
, merge_target_bb
;
1618 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
1623 remove_conditions_and_labels (loop
);
1624 insert_gimplified_predicates (loop
);
1625 predicate_all_scalar_phis (loop
);
1627 if (flag_tree_loop_if_convert_stores
)
1628 predicate_mem_writes (loop
);
1630 /* Merge basic blocks: first remove all the edges in the loop,
1631 except for those from the exit block. */
1633 for (i
= 0; i
< orig_loop_num_nodes
; i
++)
1636 free_bb_predicate (bb
);
1637 if (bb_with_exit_edge_p (loop
, bb
))
1643 gcc_assert (exit_bb
!= loop
->latch
);
1645 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
1649 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
));)
1651 if (e
->src
== exit_bb
)
1658 if (exit_bb
!= NULL
)
1660 if (exit_bb
!= loop
->header
)
1662 /* Connect this node to loop header. */
1663 make_edge (loop
->header
, exit_bb
, EDGE_FALLTHRU
);
1664 set_immediate_dominator (CDI_DOMINATORS
, exit_bb
, loop
->header
);
1667 /* Redirect non-exit edges to loop->latch. */
1668 FOR_EACH_EDGE (e
, ei
, exit_bb
->succs
)
1670 if (!loop_exit_edge_p (loop
, e
))
1671 redirect_edge_and_branch (e
, loop
->latch
);
1673 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, exit_bb
);
1677 /* If the loop does not have an exit, reconnect header and latch. */
1678 make_edge (loop
->header
, loop
->latch
, EDGE_FALLTHRU
);
1679 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, loop
->header
);
1682 merge_target_bb
= loop
->header
;
1683 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
1685 gimple_stmt_iterator gsi
;
1686 gimple_stmt_iterator last
;
1690 if (bb
== exit_bb
|| bb
== loop
->latch
)
1693 /* Make stmts member of loop->header. */
1694 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1695 gimple_set_bb (gsi_stmt (gsi
), merge_target_bb
);
1697 /* Update stmt list. */
1698 last
= gsi_last_bb (merge_target_bb
);
1699 gsi_insert_seq_after (&last
, bb_seq (bb
), GSI_NEW_STMT
);
1700 set_bb_seq (bb
, NULL
);
1702 delete_basic_block (bb
);
1705 /* If possible, merge loop header to the block with the exit edge.
1706 This reduces the number of basic blocks to two, to please the
1707 vectorizer that handles only loops with two nodes. */
1709 && exit_bb
!= loop
->header
1710 && can_merge_blocks_p (loop
->header
, exit_bb
))
1711 merge_blocks (loop
->header
, exit_bb
);
1717 /* If-convert LOOP when it is legal. For the moment this pass has no
1718 profitability analysis. Returns true when something changed. */
1721 tree_if_conversion (struct loop
*loop
)
1723 bool changed
= false;
1726 if (!if_convertible_loop_p (loop
)
1727 || !dbg_cnt (if_conversion_tree
))
1730 /* Now all statements are if-convertible. Combine all the basic
1731 blocks into one huge basic block doing the if-conversion
1733 combine_blocks (loop
);
1735 if (flag_tree_loop_if_convert_stores
)
1736 mark_sym_for_renaming (gimple_vop (cfun
));
1745 for (i
= 0; i
< loop
->num_nodes
; i
++)
1746 free_bb_predicate (ifc_bbs
[i
]);
1755 /* Tree if-conversion pass management. */
1758 main_tree_if_conversion (void)
1762 bool changed
= false;
1765 if (number_of_loops () <= 1)
1768 FOR_EACH_LOOP (li
, loop
, 0)
1769 changed
|= tree_if_conversion (loop
);
1772 todo
|= TODO_cleanup_cfg
;
1774 if (changed
&& flag_tree_loop_if_convert_stores
)
1775 todo
|= TODO_update_ssa_only_virtuals
;
1777 free_dominance_info (CDI_POST_DOMINATORS
);
1782 /* Returns true when the if-conversion pass is enabled. */
1785 gate_tree_if_conversion (void)
1787 return ((flag_tree_vectorize
&& flag_tree_loop_if_convert
!= 0)
1788 || flag_tree_loop_if_convert
== 1
1789 || flag_tree_loop_if_convert_stores
== 1);
1792 struct gimple_opt_pass pass_if_conversion
=
1797 gate_tree_if_conversion
, /* gate */
1798 main_tree_if_conversion
, /* execute */
1801 0, /* static_pass_number */
1802 TV_NONE
, /* tv_id */
1803 PROP_cfg
| PROP_ssa
, /* properties_required */
1804 0, /* properties_provided */
1805 0, /* properties_destroyed */
1806 0, /* todo_flags_start */
1807 TODO_verify_stmts
| TODO_verify_flow
1808 /* todo_flags_finish */