1 /* If-conversion for vectorizer.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
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 "diagnostic.h"
93 #include "tree-pretty-print.h"
94 #include "gimple-pretty-print.h"
95 #include "tree-flow.h"
96 #include "tree-dump.h"
98 #include "tree-chrec.h"
99 #include "tree-data-ref.h"
100 #include "tree-scalar-evolution.h"
101 #include "tree-pass.h"
103 /* List of basic blocks in if-conversion-suitable order. */
104 static basic_block
*ifc_bbs
;
106 /* Create a new temp variable of type TYPE. Add GIMPLE_ASSIGN to assign EXP
107 to the new variable. */
110 ifc_temp_var (tree type
, tree exp
)
112 const char *name
= "_ifc_";
116 /* Create new temporary variable. */
117 var
= create_tmp_var (type
, name
);
118 add_referenced_var (var
);
120 /* Build new statement to assign EXP to new variable. */
121 stmt
= gimple_build_assign (var
, exp
);
123 /* Get SSA name for the new variable and set make new statement
124 its definition statement. */
125 new_name
= make_ssa_name (var
, stmt
);
126 gimple_assign_set_lhs (stmt
, new_name
);
127 SSA_NAME_DEF_STMT (new_name
) = stmt
;
133 /* Add condition NEW_COND to the predicate list of basic block BB. */
136 add_to_predicate_list (basic_block bb
, tree new_cond
)
138 tree cond
= (tree
) bb
->aux
;
141 cond
= fold_build2_loc (EXPR_LOCATION (cond
),
142 TRUTH_OR_EXPR
, boolean_type_node
,
143 unshare_expr (cond
), new_cond
);
150 /* Add the condition COND to the previous condition PREV_COND, and add
151 this to the predicate list of the destination of edge E. LOOP is
152 the loop to be if-converted. */
155 add_to_dst_predicate_list (struct loop
*loop
, edge e
,
156 tree prev_cond
, tree cond
)
158 tree new_cond
= NULL_TREE
;
160 if (!flow_bb_inside_loop_p (loop
, e
->dest
))
163 if (prev_cond
== boolean_true_node
|| !prev_cond
)
164 new_cond
= unshare_expr (cond
);
167 /* Add the condition COND to the e->aux field. In case the edge
168 destination is a PHI node, this condition will be added to
169 the block predicate to construct a complete condition. */
172 new_cond
= fold_build2 (TRUTH_AND_EXPR
, boolean_type_node
,
173 unshare_expr (prev_cond
), cond
);
176 add_to_predicate_list (e
->dest
, new_cond
);
180 /* Return true if one of the successor edges of BB exits LOOP. */
183 bb_with_exit_edge_p (struct loop
*loop
, basic_block bb
)
188 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
189 if (loop_exit_edge_p (loop
, e
))
195 /* Return true when PHI is if-convertible. PHI is part of loop LOOP
196 and it belongs to basic block BB.
198 PHI is not if-convertible if:
199 - it has more than 2 arguments,
200 - virtual PHI is immediately used in another PHI node,
201 - virtual PHI on BB other than header. */
204 if_convertible_phi_p (struct loop
*loop
, basic_block bb
, gimple phi
)
206 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
208 fprintf (dump_file
, "-------------------------\n");
209 print_gimple_stmt (dump_file
, phi
, 0, TDF_SLIM
);
212 if (bb
!= loop
->header
&& gimple_phi_num_args (phi
) != 2)
214 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
215 fprintf (dump_file
, "More than two phi node args.\n");
219 if (!is_gimple_reg (SSA_NAME_VAR (gimple_phi_result (phi
))))
221 imm_use_iterator imm_iter
;
224 if (bb
!= loop
->header
)
226 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
227 fprintf (dump_file
, "Virtual phi not on loop header.\n");
230 FOR_EACH_IMM_USE_FAST (use_p
, imm_iter
, gimple_phi_result (phi
))
232 if (gimple_code (USE_STMT (use_p
)) == GIMPLE_PHI
)
234 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
235 fprintf (dump_file
, "Difficult to handle this virtual phi.\n");
244 /* Return true when STMT is if-convertible.
246 GIMPLE_ASSIGN statement is not if-convertible if,
249 - LHS is not var decl.
251 GIMPLE_ASSIGN is part of block BB, which is inside loop LOOP. */
254 if_convertible_gimple_assign_stmt_p (struct loop
*loop
, basic_block bb
,
257 tree lhs
= gimple_assign_lhs (stmt
);
259 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
261 fprintf (dump_file
, "-------------------------\n");
262 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
265 /* Some of these constrains might be too conservative. */
266 if (stmt_ends_bb_p (stmt
)
267 || gimple_has_volatile_ops (stmt
)
268 || (TREE_CODE (lhs
) == SSA_NAME
269 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
270 || gimple_has_side_effects (stmt
))
272 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
273 fprintf (dump_file
, "stmt not suitable for ifcvt\n");
277 if (gimple_assign_rhs_could_trap_p (stmt
))
279 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
280 fprintf (dump_file
, "tree could trap...\n");
284 if (TREE_CODE (lhs
) != SSA_NAME
285 && bb
!= loop
->header
286 && !bb_with_exit_edge_p (loop
, bb
))
288 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
290 fprintf (dump_file
, "LHS is not var\n");
291 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
299 /* Return true when STMT is if-convertible.
301 A statement is if-convertible if:
302 - it is an if-convertible GIMPLE_ASSGIN,
303 - it is a GIMPLE_LABEL or a GIMPLE_COND.
305 STMT is inside BB, which is inside loop LOOP. */
308 if_convertible_stmt_p (struct loop
*loop
, basic_block bb
, gimple stmt
)
310 switch (gimple_code (stmt
))
318 return if_convertible_gimple_assign_stmt_p (loop
, bb
, stmt
);
321 /* Don't know what to do with 'em so don't do anything. */
322 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
324 fprintf (dump_file
, "don't know what to do\n");
325 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
334 /* Return true when BB is if-convertible. This routine does not check
335 basic block's statements and phis.
337 A basic block is not if-convertible if:
338 - it is non-empty and it is after the exit block (in BFS order),
339 - it is after the exit block but before the latch,
340 - its edges are not normal.
342 EXIT_BB is the basic block containing the exit of the LOOP. BB is
346 if_convertible_bb_p (struct loop
*loop
, basic_block bb
, basic_block exit_bb
)
351 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
352 fprintf (dump_file
, "----------[%d]-------------\n", bb
->index
);
354 if (EDGE_COUNT (bb
->preds
) > 2
355 || EDGE_COUNT (bb
->succs
) > 2)
360 if (bb
!= loop
->latch
)
362 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
363 fprintf (dump_file
, "basic block after exit bb but before latch\n");
366 else if (!empty_block_p (bb
))
368 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
369 fprintf (dump_file
, "non empty basic block after exit bb\n");
372 else if (bb
== loop
->latch
374 && !dominated_by_p (CDI_DOMINATORS
, bb
, exit_bb
))
376 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
377 fprintf (dump_file
, "latch is not dominated by exit_block\n");
382 /* Be less adventurous and handle only normal edges. */
383 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
385 (EDGE_ABNORMAL_CALL
| EDGE_EH
| EDGE_ABNORMAL
| EDGE_IRREDUCIBLE_LOOP
))
387 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
388 fprintf (dump_file
, "Difficult to handle edges\n");
395 /* Return true when all predecessor blocks of BB are visited. The
396 VISITED bitmap keeps track of the visited blocks. */
399 pred_blocks_visited_p (basic_block bb
, bitmap
*visited
)
403 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
404 if (!bitmap_bit_p (*visited
, e
->src
->index
))
410 /* Get body of a LOOP in suitable order for if-conversion. It is
411 caller's responsibility to deallocate basic block list.
412 If-conversion suitable order is, breadth first sort (BFS) order
413 with an additional constraint: select a block only if all its
414 predecessors are already selected. */
417 get_loop_body_in_if_conv_order (const struct loop
*loop
)
419 basic_block
*blocks
, *blocks_in_bfs_order
;
422 unsigned int index
= 0;
423 unsigned int visited_count
= 0;
425 gcc_assert (loop
->num_nodes
);
426 gcc_assert (loop
->latch
!= EXIT_BLOCK_PTR
);
428 blocks
= XCNEWVEC (basic_block
, loop
->num_nodes
);
429 visited
= BITMAP_ALLOC (NULL
);
431 blocks_in_bfs_order
= get_loop_body_in_bfs_order (loop
);
434 while (index
< loop
->num_nodes
)
436 bb
= blocks_in_bfs_order
[index
];
438 if (bb
->flags
& BB_IRREDUCIBLE_LOOP
)
440 free (blocks_in_bfs_order
);
441 BITMAP_FREE (visited
);
446 if (!bitmap_bit_p (visited
, bb
->index
))
448 if (pred_blocks_visited_p (bb
, &visited
)
449 || bb
== loop
->header
)
451 /* This block is now visited. */
452 bitmap_set_bit (visited
, bb
->index
);
453 blocks
[visited_count
++] = bb
;
459 if (index
== loop
->num_nodes
460 && visited_count
!= loop
->num_nodes
)
464 free (blocks_in_bfs_order
);
465 BITMAP_FREE (visited
);
469 /* Returns true when the analysis of the predicates for all the basic
470 blocks in LOOP succeeded.
472 predicate_bbs first clears the ->aux fields of the edges and basic
473 blocks. These fields are then initialized with the tree
474 expressions representing the predicates under which a basic block
475 is executed in the LOOP. As the loop->header is executed at each
476 iteration, it has the "true" predicate. Other statements executed
477 under a condition are predicated with that condition, for example
484 S1 will be predicated with "x", and S2 will be predicated with
488 predicate_bbs (loop_p loop
)
492 for (i
= 0; i
< loop
->num_nodes
; i
++)
496 basic_block bb
= ifc_bbs
[i
];
497 gimple_stmt_iterator itr
= gsi_start_phis (bb
);
499 if (!gsi_end_p (itr
))
500 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
506 for (i
= 0; i
< loop
->num_nodes
; i
++)
508 basic_block bb
= ifc_bbs
[i
];
509 tree cond
= (tree
) bb
->aux
;
510 gimple_stmt_iterator itr
;
512 for (itr
= gsi_start_bb (bb
); !gsi_end_p (itr
); gsi_next (&itr
))
514 gimple stmt
= gsi_stmt (itr
);
516 switch (gimple_code (stmt
))
524 /* ??? Should there be conditional GIMPLE_DEBUG_BINDs? */
525 if (gimple_debug_bind_p (gsi_stmt (itr
)))
527 gimple_debug_bind_reset_value (gsi_stmt (itr
));
528 update_stmt (gsi_stmt (itr
));
535 edge true_edge
, false_edge
;
536 location_t loc
= gimple_location (stmt
);
537 tree c
= fold_build2_loc (loc
, gimple_cond_code (stmt
),
539 gimple_cond_lhs (stmt
),
540 gimple_cond_rhs (stmt
));
542 extract_true_false_edges_from_block (gimple_bb (stmt
),
543 &true_edge
, &false_edge
);
545 /* Add new condition into destination's predicate list. */
547 /* If C is true, then TRUE_EDGE is taken. */
548 add_to_dst_predicate_list (loop
, true_edge
, cond
, c
);
550 /* If C is false, then FALSE_EDGE is taken. */
551 c2
= invert_truthvalue_loc (loc
, unshare_expr (c
));
552 add_to_dst_predicate_list (loop
, false_edge
, cond
, c2
);
559 /* Not handled yet in if-conversion. */
567 /* If current bb has only one successor, then consider it as an
568 unconditional goto. */
569 if (single_succ_p (bb
))
571 basic_block bb_n
= single_succ (bb
);
573 /* The successor bb inherits the predicate of its
574 predecessor. If there is no predicate in the predecessor
575 bb, then consider the successor bb as always executed. */
576 if (cond
== NULL_TREE
)
577 cond
= boolean_true_node
;
579 add_to_predicate_list (bb_n
, cond
);
583 /* The loop header is always executed. */
584 loop
->header
->aux
= boolean_true_node
;
589 /* Returns true when BB has a predicate that is not trivial: true or
593 is_predicated (basic_block bb
)
595 tree cond
= (tree
) bb
->aux
;
597 return (cond
!= NULL_TREE
598 && cond
!= boolean_true_node
599 && !integer_onep (cond
));
602 /* Return true when LOOP is if-convertible.
603 LOOP is if-convertible if:
605 - it has two or more basic blocks,
606 - it has only one exit,
607 - loop header is not the exit edge,
608 - if its basic blocks and phi nodes are if convertible. */
611 if_convertible_loop_p (struct loop
*loop
)
616 basic_block exit_bb
= NULL
;
618 /* Handle only innermost loop. */
619 if (!loop
|| loop
->inner
)
621 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
622 fprintf (dump_file
, "not innermost loop\n");
626 /* If only one block, no need for if-conversion. */
627 if (loop
->num_nodes
<= 2)
629 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
630 fprintf (dump_file
, "less than 2 basic blocks\n");
634 /* More than one loop exit is too much to handle. */
635 if (!single_exit (loop
))
637 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
638 fprintf (dump_file
, "multiple exits\n");
642 /* ??? Check target's vector conditional operation support for vectorizer. */
644 /* If one of the loop header's edge is exit edge then do not apply
646 FOR_EACH_EDGE (e
, ei
, loop
->header
->succs
)
648 if (loop_exit_edge_p (loop
, e
))
652 /* Don't if-convert the loop when the data dependences cannot be
653 computed: the loop won't be vectorized in that case. */
655 VEC (data_reference_p
, heap
) *refs
= VEC_alloc (data_reference_p
, heap
, 5);
656 VEC (ddr_p
, heap
) *ddrs
= VEC_alloc (ddr_p
, heap
, 25);
657 bool res
= compute_data_dependences_for_loop (loop
, true, &refs
, &ddrs
);
659 free_data_refs (refs
);
660 free_dependence_relations (ddrs
);
666 calculate_dominance_info (CDI_DOMINATORS
);
668 /* Allow statements that can be handled during if-conversion. */
669 ifc_bbs
= get_loop_body_in_if_conv_order (loop
);
672 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
673 fprintf (dump_file
, "Irreducible loop\n");
677 for (i
= 0; i
< loop
->num_nodes
; i
++)
679 basic_block bb
= ifc_bbs
[i
];
681 if (!if_convertible_bb_p (loop
, bb
, exit_bb
))
684 if (bb_with_exit_edge_p (loop
, bb
))
688 if (!predicate_bbs (loop
))
691 for (i
= 0; i
< loop
->num_nodes
; i
++)
693 basic_block bb
= ifc_bbs
[i
];
694 gimple_stmt_iterator itr
;
696 for (itr
= gsi_start_phis (bb
); !gsi_end_p (itr
); gsi_next (&itr
))
697 if (!if_convertible_phi_p (loop
, bb
, gsi_stmt (itr
)))
700 /* For non predicated BBs, don't check their statements. */
701 if (!is_predicated (bb
))
704 for (itr
= gsi_start_bb (bb
); !gsi_end_p (itr
); gsi_next (&itr
))
705 if (!if_convertible_stmt_p (loop
, bb
, gsi_stmt (itr
)))
710 fprintf (dump_file
, "Applying if-conversion\n");
715 /* During if-conversion, the bb->aux field is used to hold a predicate
716 list. This function cleans for all the basic blocks in the given
717 LOOP their predicate list. It also cleans up the e->aux field of
718 all the successor edges: e->aux is used to hold the true and false
719 conditions for conditional expressions. */
722 clean_predicate_lists (struct loop
*loop
)
729 bb
= get_loop_body (loop
);
730 for (i
= 0; i
< loop
->num_nodes
; i
++)
733 FOR_EACH_EDGE (e
, ei
, bb
[i
]->succs
)
739 /* Basic block BB has two predecessors. Using predecessor's bb->aux
740 field, set appropriate condition COND for the PHI node replacement.
741 Return true block whose phi arguments are selected when cond is
742 true. LOOP is the loop containing the if-converted region, GSI is
743 the place to insert the code for the if-conversion. */
746 find_phi_replacement_condition (struct loop
*loop
,
747 basic_block bb
, tree
*cond
,
748 gimple_stmt_iterator
*gsi
)
750 edge first_edge
, second_edge
;
753 gcc_assert (EDGE_COUNT (bb
->preds
) == 2);
754 first_edge
= EDGE_PRED (bb
, 0);
755 second_edge
= EDGE_PRED (bb
, 1);
757 /* Use condition based on following criteria:
763 S2 is preferred over S1. Make 'b' first_bb and use its condition.
765 2) Do not make loop header first_bb.
768 S1: x = !(c == d)? a : b;
773 S3: x = (c == d) ? b : a;
775 S3 is preferred over S1 and S2*, Make 'b' first_bb and use
778 4) If pred B is dominated by pred A then use pred B's condition.
781 /* Select condition that is not TRUTH_NOT_EXPR. */
782 tmp_cond
= (tree
) (first_edge
->src
)->aux
;
783 gcc_assert (tmp_cond
);
785 if (TREE_CODE (tmp_cond
) == TRUTH_NOT_EXPR
)
789 tmp_edge
= first_edge
;
790 first_edge
= second_edge
;
791 second_edge
= tmp_edge
;
794 /* Check if FIRST_BB is loop header or not and make sure that
795 FIRST_BB does not dominate SECOND_BB. */
796 if (first_edge
->src
== loop
->header
797 || dominated_by_p (CDI_DOMINATORS
,
798 second_edge
->src
, first_edge
->src
))
800 *cond
= (tree
) (second_edge
->src
)->aux
;
802 /* If there is a condition on an incoming edge, add it to the
803 incoming bb predicate. */
804 if (second_edge
->aux
)
805 *cond
= build2 (TRUTH_AND_EXPR
, boolean_type_node
,
806 *cond
, (tree
) second_edge
->aux
);
808 if (TREE_CODE (*cond
) == TRUTH_NOT_EXPR
)
809 *cond
= invert_truthvalue (*cond
);
811 /* Select non loop header bb. */
812 first_edge
= second_edge
;
816 *cond
= (tree
) (first_edge
->src
)->aux
;
818 /* If there is a condition on an incoming edge, add it to the
819 incoming bb predicate. */
821 *cond
= build2 (TRUTH_AND_EXPR
, boolean_type_node
,
822 *cond
, (tree
) first_edge
->aux
);
825 /* Gimplify the condition: the vectorizer prefers to have gimple
826 values as conditions. Various targets use different means to
827 communicate conditions in vector compare operations. Using a
828 gimple value allows the compiler to emit vector compare and
829 select RTL without exposing compare's result. */
830 *cond
= force_gimple_operand_gsi (gsi
, unshare_expr (*cond
),
832 true, GSI_SAME_STMT
);
833 if (!is_gimple_reg (*cond
) && !is_gimple_condexpr (*cond
))
837 new_stmt
= ifc_temp_var (TREE_TYPE (*cond
), unshare_expr (*cond
));
838 gsi_insert_before (gsi
, new_stmt
, GSI_SAME_STMT
);
839 *cond
= gimple_assign_lhs (new_stmt
);
844 return first_edge
->src
;
847 /* Replace PHI node with conditional modify expr using COND. This
848 routine does not handle PHI nodes with more than two arguments.
851 S1: A = PHI <x1(1), x2(5)
853 S2: A = cond ? x1 : x2;
855 The generated code is inserted at GSI that points to the top of
856 basic block's statement list. When COND is true, phi arg from
857 TRUE_BB is selected. */
860 replace_phi_with_cond_gimple_assign_stmt (gimple phi
, tree cond
,
862 gimple_stmt_iterator
*gsi
)
869 gcc_assert (gimple_code (phi
) == GIMPLE_PHI
870 && gimple_phi_num_args (phi
) == 2);
872 bb
= gimple_bb (phi
);
874 arg
= degenerate_phi_result (phi
);
880 /* Use condition that is not TRUTH_NOT_EXPR in conditional modify expr. */
881 if (EDGE_PRED (bb
, 1)->src
== true_bb
)
883 arg_0
= gimple_phi_arg_def (phi
, 1);
884 arg_1
= gimple_phi_arg_def (phi
, 0);
888 arg_0
= gimple_phi_arg_def (phi
, 0);
889 arg_1
= gimple_phi_arg_def (phi
, 1);
892 /* Build new RHS using selected condition and arguments. */
893 rhs
= build3 (COND_EXPR
, TREE_TYPE (PHI_RESULT (phi
)),
894 unshare_expr (cond
), arg_0
, arg_1
);
897 new_stmt
= gimple_build_assign (PHI_RESULT (phi
), rhs
);
898 SSA_NAME_DEF_STMT (gimple_phi_result (phi
)) = new_stmt
;
899 gsi_insert_before (gsi
, new_stmt
, GSI_SAME_STMT
);
900 update_stmt (new_stmt
);
902 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
904 fprintf (dump_file
, "new phi replacement stmt\n");
905 print_gimple_stmt (dump_file
, new_stmt
, 0, TDF_SLIM
);
909 /* Process phi nodes for the given LOOP. Replace phi nodes with
910 conditional modify expressions. */
913 process_phi_nodes (struct loop
*loop
)
916 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
919 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
922 tree cond
= NULL_TREE
;
923 gimple_stmt_iterator gsi
, phi_gsi
;
924 basic_block true_bb
= NULL
;
927 if (bb
== loop
->header
)
930 phi_gsi
= gsi_start_phis (bb
);
931 gsi
= gsi_after_labels (bb
);
933 /* BB has two predecessors. Using predecessor's aux field, set
934 appropriate condition for the PHI node replacement. */
935 if (!gsi_end_p (phi_gsi
))
936 true_bb
= find_phi_replacement_condition (loop
, bb
, &cond
, &gsi
);
938 while (!gsi_end_p (phi_gsi
))
940 phi
= gsi_stmt (phi_gsi
);
941 replace_phi_with_cond_gimple_assign_stmt (phi
, cond
, true_bb
, &gsi
);
942 release_phi_node (phi
);
945 set_phi_nodes (bb
, NULL
);
949 /* Remove all GIMPLE_CONDs and GIMPLE_LABELs of all the basic blocks
950 other than the exit and latch of the LOOP. */
953 remove_conditions_and_labels (loop_p loop
)
955 gimple_stmt_iterator gsi
;
958 for (i
= 0; i
< loop
->num_nodes
; i
++)
960 basic_block bb
= ifc_bbs
[i
];
962 if (bb_with_exit_edge_p (loop
, bb
)
963 || bb
== loop
->latch
)
966 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); )
967 if (gimple_code (gsi_stmt (gsi
)) == GIMPLE_COND
968 || gimple_code (gsi_stmt (gsi
)) == GIMPLE_LABEL
)
969 gsi_remove (&gsi
, true);
975 /* Combine all the basic blocks from LOOP into one or two super basic
976 blocks. Replace PHI nodes with conditional modify expressions. */
979 combine_blocks (struct loop
*loop
)
981 basic_block bb
, exit_bb
, merge_target_bb
;
982 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
987 remove_conditions_and_labels (loop
);
989 /* Process phi nodes to prepare blocks for merge. */
990 process_phi_nodes (loop
);
992 /* Merge basic blocks: first remove all the edges in the loop,
993 except for those from the exit block. */
995 for (i
= 0; i
< orig_loop_num_nodes
; i
++)
998 if (bb_with_exit_edge_p (loop
, bb
))
1004 gcc_assert (exit_bb
!= loop
->latch
);
1006 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
1010 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
));)
1012 if (e
->src
== exit_bb
)
1019 if (exit_bb
!= NULL
)
1021 if (exit_bb
!= loop
->header
)
1023 /* Connect this node to loop header. */
1024 make_edge (loop
->header
, exit_bb
, EDGE_FALLTHRU
);
1025 set_immediate_dominator (CDI_DOMINATORS
, exit_bb
, loop
->header
);
1028 /* Redirect non-exit edges to loop->latch. */
1029 FOR_EACH_EDGE (e
, ei
, exit_bb
->succs
)
1031 if (!loop_exit_edge_p (loop
, e
))
1032 redirect_edge_and_branch (e
, loop
->latch
);
1034 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, exit_bb
);
1038 /* If the loop does not have an exit, reconnect header and latch. */
1039 make_edge (loop
->header
, loop
->latch
, EDGE_FALLTHRU
);
1040 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, loop
->header
);
1043 merge_target_bb
= loop
->header
;
1044 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
1046 gimple_stmt_iterator gsi
;
1047 gimple_stmt_iterator last
;
1051 if (bb
== exit_bb
|| bb
== loop
->latch
)
1054 /* Make stmts member of loop->header. */
1055 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1056 gimple_set_bb (gsi_stmt (gsi
), merge_target_bb
);
1058 /* Update stmt list. */
1059 last
= gsi_last_bb (merge_target_bb
);
1060 gsi_insert_seq_after (&last
, bb_seq (bb
), GSI_NEW_STMT
);
1061 set_bb_seq (bb
, NULL
);
1063 delete_basic_block (bb
);
1066 /* If possible, merge loop header to the block with the exit edge.
1067 This reduces the number of basic blocks to two, to please the
1068 vectorizer that handles only loops with two nodes.
1070 FIXME: Call cleanup_tree_cfg. */
1072 && exit_bb
!= loop
->header
1073 && can_merge_blocks_p (loop
->header
, exit_bb
))
1074 merge_blocks (loop
->header
, exit_bb
);
1077 /* If-convert LOOP when it is legal. For the moment this pass has no
1078 profitability analysis. */
1081 tree_if_conversion (struct loop
*loop
)
1085 if (!if_convertible_loop_p (loop
))
1088 /* Now all statements are if-convertible. Combine all the basic
1089 blocks into one huge basic block doing the if-conversion
1091 combine_blocks (loop
);
1094 clean_predicate_lists (loop
);
1102 /* Tree if-conversion pass management. */
1105 main_tree_if_conversion (void)
1110 if (number_of_loops () <= 1)
1113 FOR_EACH_LOOP (li
, loop
, 0)
1114 tree_if_conversion (loop
);
1120 gate_tree_if_conversion (void)
1122 return flag_tree_vectorize
!= 0;
1125 struct gimple_opt_pass pass_if_conversion
=
1130 gate_tree_if_conversion
, /* gate */
1131 main_tree_if_conversion
, /* execute */
1134 0, /* static_pass_number */
1135 TV_NONE
, /* tv_id */
1136 PROP_cfg
| PROP_ssa
, /* properties_required */
1137 0, /* properties_provided */
1138 0, /* properties_destroyed */
1139 0, /* todo_flags_start */
1140 TODO_dump_func
| TODO_verify_stmts
| TODO_verify_flow
1141 /* todo_flags_finish */