1 /* If-conversion for vectorizer.
2 Copyright (C) 2004 Free Software Foundation, Inc.
3 Contributed by Devang Patel <dpatel@apple.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 /* This pass implements tree level if-conversion transformation of loops.
23 Initial goal is to help vectorizer vectorize loops with conditions.
25 A short description of if-conversion:
27 o Decide if a loop is if-convertable or not.
28 o Walk all loop basic blocks in breadth first order (BFS order).
29 o Remove conditional statements (at the end of basic block)
30 and propagate condition into destination basic blocks'
32 o Replace modify expression with conditional modify expression
33 using current basic block's condition.
34 o Merge all basic blocks
35 o Replace phi nodes with conditional modify expr
36 o Merge all basic blocks into header
38 Sample transformation:
43 # i_23 = PHI <0(0), i_18(10)>;
46 if (j_15 > 41) goto <L1>; else goto <L17>;
53 # iftmp.2_4 = PHI <0(8), 42(2)>;
57 if (i_18 <= 15) goto <L19>; else goto <L18>;
67 # i_23 = PHI <0(0), i_18(10)>;
72 iftmp.2_4 = j_15 > 41 ? 42 : 0;
75 if (i_18 <= 15) goto <L19>; else goto <L18>;
85 #include "coretypes.h"
94 #include "basic-block.h"
95 #include "diagnostic.h"
96 #include "tree-flow.h"
97 #include "tree-dump.h"
99 #include "tree-chrec.h"
100 #include "tree-data-ref.h"
101 #include "tree-scalar-evolution.h"
102 #include "tree-pass.h"
105 /* local function prototypes */
106 static void main_tree_if_conversion (void);
107 static tree
tree_if_convert_stmt (struct loop
*loop
, tree
, tree
,
108 block_stmt_iterator
*);
109 static void tree_if_convert_cond_expr (struct loop
*, tree
, tree
,
110 block_stmt_iterator
*);
111 static bool if_convertable_phi_p (struct loop
*, basic_block
, tree
);
112 static bool if_convertable_modify_expr_p (struct loop
*, basic_block
, tree
);
113 static bool if_convertable_stmt_p (struct loop
*, basic_block
, tree
);
114 static bool if_convertable_bb_p (struct loop
*, basic_block
, bool);
115 static bool if_convertable_loop_p (struct loop
*, bool);
116 static void add_to_predicate_list (basic_block
, tree
);
117 static tree
add_to_dst_predicate_list (struct loop
* loop
, tree
, tree
, tree
,
118 block_stmt_iterator
*);
119 static void clean_predicate_lists (struct loop
*loop
);
120 static basic_block
find_phi_replacement_condition (basic_block
, tree
*,
121 block_stmt_iterator
*);
122 static void replace_phi_with_cond_modify_expr (tree
, tree
, basic_block
,
123 block_stmt_iterator
*);
124 static void process_phi_nodes (struct loop
*);
125 static void combine_blocks (struct loop
*);
126 static tree
ifc_temp_var (tree
, tree
);
127 static bool pred_blocks_visited_p (basic_block
, bitmap
*);
128 static basic_block
* get_loop_body_in_if_conv_order (const struct loop
*loop
);
129 static bool bb_with_exit_edge_p (basic_block
);
131 /* List of basic blocks in if-conversion-suitable order. */
132 static basic_block
*ifc_bbs
;
135 Apply if-conversion to the LOOP. Return true if successful otherwise return
136 false. If false is returned then loop remains unchanged.
137 FOR_VECTORIZER is a boolean flag. It indicates whether if-conversion is used
138 for vectorizer or not. If it is used for vectorizer, additional checks are
139 used. (Vectorization checks are not yet implemented). */
142 tree_if_conversion (struct loop
*loop
, bool for_vectorizer
)
145 block_stmt_iterator itr
;
151 /* if-conversion is not appropriate for all loops. First, check if loop is
152 if-convertable or not. */
153 if (!if_convertable_loop_p (loop
, for_vectorizer
))
155 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
156 fprintf (dump_file
,"-------------------------\n");
162 free_dominance_info (CDI_POST_DOMINATORS
);
169 /* Do actual work now. */
170 for (i
= 0; i
< loop
->num_nodes
; i
++)
174 /* Update condition using predicate list. */
177 /* Process all statements in this basic block.
178 Remove conditional expression, if any, and annotate
179 destination basic block(s) appropriately. */
180 for (itr
= bsi_start (bb
); !bsi_end_p (itr
); /* empty */)
182 tree t
= bsi_stmt (itr
);
183 cond
= tree_if_convert_stmt (loop
, t
, cond
, &itr
);
184 if (!bsi_end_p (itr
))
188 /* If current bb has only one successor, then consider it as an
189 unconditional goto. */
190 if (EDGE_COUNT (bb
->succs
) == 1)
192 basic_block bb_n
= EDGE_SUCC (bb
, 0)->dest
;
193 if (cond
!= NULL_TREE
)
194 add_to_predicate_list (bb_n
, cond
);
199 /* Now, all statements are if-converted and basic blocks are
200 annotated appropriately. Combine all basic block into one huge
202 combine_blocks (loop
);
205 clean_predicate_lists (loop
);
213 /* if-convert stmt T which is part of LOOP.
214 If T is a MODIFY_EXPR than it is converted into conditional modify
215 expression using COND. For conditional expressions, add condition in the
216 destination basic block's predicate list and remove conditional
217 expression itself. BSI is the iterator used to traverse statements of
218 loop. It is used here when it is required to delete current statement. */
221 tree_if_convert_stmt (struct loop
* loop
, tree t
, tree cond
,
222 block_stmt_iterator
*bsi
)
224 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
226 fprintf (dump_file
, "------if-convert stmt\n");
227 print_generic_stmt (dump_file
, t
, TDF_SLIM
);
228 print_generic_stmt (dump_file
, cond
, TDF_SLIM
);
231 switch (TREE_CODE (t
))
233 /* Labels are harmless here. */
238 /* This modify_expr is killing previous value of LHS. Appropriate value will
239 be selected by PHI node based on condition. It is possible that before
240 this transformation, PHI nodes was selecting default value and now it will
241 use this new value. This is OK because it does not change validity the
246 /* Unconditional goto */
247 add_to_predicate_list (bb_for_stmt (TREE_OPERAND (t
, 1)), cond
);
253 /* Update destination blocks' predicate list and remove this
254 condition expression. */
255 tree_if_convert_cond_expr (loop
, t
, cond
, bsi
);
265 /* STMT is COND_EXPR. Update two destination's predicate list.
266 Remove COND_EXPR, if it is not the loop exit condition. Otherwise
267 update loop exit condition appropriately. BSI is the iterator
268 used to traverse statement list. STMT is part of loop LOOP. */
271 tree_if_convert_cond_expr (struct loop
*loop
, tree stmt
, tree cond
,
272 block_stmt_iterator
*bsi
)
274 tree then_clause
, else_clause
, c
, new_cond
;
275 new_cond
= NULL_TREE
;
277 gcc_assert (TREE_CODE (stmt
) == COND_EXPR
);
279 c
= TREE_OPERAND (stmt
, 0);
280 then_clause
= TREE_OPERAND (stmt
, 1);
281 else_clause
= TREE_OPERAND (stmt
, 2);
283 /* Create temp. for condition. */
284 if (!is_gimple_condexpr (c
))
287 new_stmt
= ifc_temp_var (TREE_TYPE (c
), unshare_expr (c
));
288 bsi_insert_before (bsi
, new_stmt
, BSI_SAME_STMT
);
289 c
= TREE_OPERAND (new_stmt
, 0);
292 /* Add new condition into destination's predicate list. */
294 /* if 'c' is true then then_clause is reached. */
295 new_cond
= add_to_dst_predicate_list (loop
, then_clause
, cond
,
296 unshare_expr (c
), bsi
);
301 if (!is_gimple_reg(c
) && is_gimple_condexpr (c
))
304 new_stmt
= ifc_temp_var (TREE_TYPE (c
), unshare_expr (c
));
305 bsi_insert_before (bsi
, new_stmt
, BSI_SAME_STMT
);
306 c
= TREE_OPERAND (new_stmt
, 0);
309 /* if 'c' is false then else_clause is reached. */
310 c2
= invert_truthvalue (unshare_expr (c
));
311 add_to_dst_predicate_list (loop
, else_clause
, cond
, c2
, bsi
);
314 /* Now this conditional statement is redundant. Remove it.
315 But, do not remove exit condition! Update exit condition
316 using new condition. */
317 if (!bb_with_exit_edge_p (bb_for_stmt (stmt
)))
325 /* Return true, iff PHI is if-convertable. PHI is part of loop LOOP
326 and it belongs to basic block BB.
327 PHI is not if-convertable
328 - if it has more than 2 arguments.
329 - Virtual PHI is immediately used in another PHI node. */
332 if_convertable_phi_p (struct loop
*loop
, basic_block bb
, tree phi
)
334 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
336 fprintf (dump_file
, "-------------------------\n");
337 print_generic_stmt (dump_file
, phi
, TDF_SLIM
);
340 if (bb
!= loop
->header
&& PHI_NUM_ARGS (phi
) != 2)
342 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
343 fprintf (dump_file
, "More than two phi node args.\n");
347 if (!is_gimple_reg (SSA_NAME_VAR (PHI_RESULT (phi
))))
350 dataflow_t df
= get_immediate_uses (phi
);
351 int num_uses
= num_immediate_uses (df
);
352 for (j
= 0; j
< num_uses
; j
++)
354 tree use
= immediate_use (df
, j
);
355 if (TREE_CODE (use
) == PHI_NODE
)
357 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
358 fprintf (dump_file
, "Difficult to handle this virtual phi.\n");
367 /* Return true, if M_EXPR is if-convertable.
368 MODIFY_EXPR is not if-convertable if,
371 - LHS is not var decl.
372 MODIFY_EXPR is part of block BB, which is inside loop LOOP.
376 if_convertable_modify_expr_p (struct loop
*loop
, basic_block bb
, tree m_expr
)
378 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
380 fprintf (dump_file
, "-------------------------\n");
381 print_generic_stmt (dump_file
, m_expr
, TDF_SLIM
);
384 /* Be conservative and do not handle immovable expressions. */
385 if (movement_possibility (m_expr
) == MOVE_IMPOSSIBLE
)
387 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
388 fprintf (dump_file
, "stmt is movable. Don't take risk\n");
392 /* See if it needs speculative loading or not. */
393 if (bb
!= loop
->header
394 && tree_could_trap_p (TREE_OPERAND (m_expr
, 1)))
396 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
397 fprintf (dump_file
, "tree could trap...\n");
401 if (TREE_CODE (TREE_OPERAND (m_expr
, 1)) == CALL_EXPR
)
403 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
404 fprintf (dump_file
, "CALL_EXPR \n");
408 if (TREE_CODE (TREE_OPERAND (m_expr
, 0)) != SSA_NAME
409 && bb
!= loop
->header
410 && !bb_with_exit_edge_p (bb
))
412 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
414 fprintf (dump_file
, "LHS is not var\n");
415 print_generic_stmt (dump_file
, m_expr
, TDF_SLIM
);
424 /* Return true, iff STMT is if-convertable.
425 Statement is if-convertable if,
426 - It is if-convertable MODIFY_EXPR
427 - IT is LABEL_EXPR, GOTO_EXPR or COND_EXPR.
428 STMT is inside block BB, which is inside loop LOOP. */
431 if_convertable_stmt_p (struct loop
*loop
, basic_block bb
, tree stmt
)
433 switch (TREE_CODE (stmt
))
440 if (!if_convertable_modify_expr_p (loop
, bb
, stmt
))
449 /* Don't know what to do with 'em so don't do anything. */
450 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
452 fprintf (dump_file
, "don't know what to do\n");
453 print_generic_stmt (dump_file
, stmt
, TDF_SLIM
);
462 /* Return true, iff BB is if-convertable.
463 Note: This routine does _not_ check basic block statements and phis.
464 Basic block is not if-convertable if,
465 - Basic block is non-empty and it is after exit block (in BFS order).
466 - Basic block is after exit block but before latch.
467 - Basic block edge(s) is not normal.
468 EXIT_BB_SEEN is true if basic block with exit edge is already seen.
469 BB is inside loop LOOP. */
472 if_convertable_bb_p (struct loop
*loop
, basic_block bb
, bool exit_bb_seen
)
477 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
478 fprintf (dump_file
, "----------[%d]-------------\n", bb
->index
);
482 if (bb
!= loop
->latch
)
484 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
485 fprintf (dump_file
, "basic block after exit bb but before latch\n");
488 else if (!empty_block_p (bb
))
490 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
491 fprintf (dump_file
, "non empty basic block after exit bb\n");
496 /* Be less adventurous and handle only normal edges. */
497 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
499 (EDGE_ABNORMAL_CALL
| EDGE_EH
| EDGE_ABNORMAL
| EDGE_IRREDUCIBLE_LOOP
))
501 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
502 fprintf (dump_file
,"Difficult to handle edges\n");
509 /* Return true, iff LOOP is if-convertable.
510 LOOP is if-convertable if,
512 - It has two or more basic blocks.
513 - It has only one exit.
514 - Loop header is not the exit edge.
515 - If its basic blocks and phi nodes are if convertable. See above for
517 FOR_VECTORIZER enables vectorizer specific checks. For example, support
518 for vector conditions, data dependency checks etc.. (Not implemented yet). */
521 if_convertable_loop_p (struct loop
*loop
, bool for_vectorizer ATTRIBUTE_UNUSED
)
525 block_stmt_iterator itr
;
529 bool exit_bb_seen
= false;
531 /* Handle only inner most loop. */
532 if (!loop
|| loop
->inner
)
534 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
535 fprintf (dump_file
, "not inner most loop\n");
539 flow_loop_scan (loop
, LOOP_ALL
);
541 /* If only one block, no need for if-conversion. */
542 if (loop
->num_nodes
<= 2)
544 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
545 fprintf (dump_file
, "less than 2 basic blocks\n");
549 /* More than one loop exit is too much to handle. */
550 if (loop
->num_exits
> 1)
552 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
553 fprintf (dump_file
, "multiple exits\n");
557 /* ??? Check target's vector conditional operation support for vectorizer. */
559 /* If one of the loop header's edge is exit edge then do not apply
561 FOR_EACH_EDGE (e
, ei
, loop
->header
->succs
)
562 if ( e
->flags
& EDGE_LOOP_EXIT
)
565 compute_immediate_uses (TDFA_USE_OPS
|TDFA_USE_VOPS
, NULL
);
567 calculate_dominance_info (CDI_DOMINATORS
);
568 calculate_dominance_info (CDI_POST_DOMINATORS
);
570 /* Allow statements that can be handled during if-conversion. */
571 ifc_bbs
= get_loop_body_in_if_conv_order (loop
);
574 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
575 fprintf (dump_file
,"Irreducible loop\n");
576 free_dominance_info (CDI_POST_DOMINATORS
);
580 for (i
= 0; i
< loop
->num_nodes
; i
++)
584 if (!if_convertable_bb_p (loop
, bb
, exit_bb_seen
))
587 /* Check statements. */
588 for (itr
= bsi_start (bb
); !bsi_end_p (itr
); bsi_next (&itr
))
589 if (!if_convertable_stmt_p (loop
, bb
, bsi_stmt (itr
)))
591 /* ??? Check data dependency for vectorizer. */
593 /* What about phi nodes ? */
594 for (phi
= phi_nodes (bb
); phi
; phi
= TREE_CHAIN (phi
))
595 if (!if_convertable_phi_p (loop
, bb
, phi
))
598 if (bb_with_exit_edge_p (bb
))
602 /* OK. Did not find any potential issues so go ahead in if-convert
603 this loop. Now there is no looking back. */
605 fprintf (dump_file
,"Applying if-conversion\n");
607 free_dominance_info (CDI_POST_DOMINATORS
);
611 /* Add condition COND into predicate list of basic block BB. */
614 add_to_predicate_list (basic_block bb
, tree new_cond
)
619 cond
= fold (build (TRUTH_OR_EXPR
, boolean_type_node
,
620 unshare_expr (cond
), new_cond
));
627 /* Add condition COND into DST's predicate list. PREV_COND is
628 existing condition. */
631 add_to_dst_predicate_list (struct loop
* loop
, tree dst
,
632 tree prev_cond
, tree cond
,
633 block_stmt_iterator
*bsi
)
636 tree new_cond
= NULL_TREE
;
638 gcc_assert (TREE_CODE (dst
) == GOTO_EXPR
);
639 bb
= label_to_block (TREE_OPERAND (dst
, 0));
640 if (!flow_bb_inside_loop_p (loop
, bb
))
643 if (prev_cond
== boolean_true_node
|| !prev_cond
)
644 new_cond
= unshare_expr (cond
);
648 /* new_cond == prev_cond AND cond */
649 tree tmp
= build (TRUTH_AND_EXPR
, boolean_type_node
,
650 unshare_expr (prev_cond
), cond
);
651 tmp_stmt
= ifc_temp_var (boolean_type_node
, tmp
);
652 bsi_insert_before (bsi
, tmp_stmt
, BSI_SAME_STMT
);
653 new_cond
= TREE_OPERAND (tmp_stmt
, 0);
655 add_to_predicate_list (bb
, new_cond
);
659 /* During if-conversion aux field from basic block is used to hold predicate
660 list. Clean each basic block's predicate list for the given LOOP. */
663 clean_predicate_lists (struct loop
*loop
)
667 for (i
= 0; i
< loop
->num_nodes
; i
++)
668 ifc_bbs
[i
]->aux
= NULL
;
671 /* Basic block BB has two predecessors. Using predecessor's aux field, set
672 appropriate condition COND for the PHI node replacement. Return true block
673 whose phi arguments are selected when cond is true. */
676 find_phi_replacement_condition (basic_block bb
, tree
*cond
,
677 block_stmt_iterator
*bsi
)
680 basic_block p1
= NULL
;
681 basic_block p2
= NULL
;
682 basic_block true_bb
= NULL
;
686 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
697 /* Use condition that is not TRUTH_NOT_EXPR in conditional modify expr. */
699 if (TREE_CODE (tmp_cond
) == TRUTH_NOT_EXPR
)
710 /* Create temp. for the condition. Vectorizer prefers to have gimple
711 value as condition. Various targets use different means to communicate
712 condition in vector compare operation. Using gimple value allows compiler
713 to emit vector compare and select RTL without exposing compare's result. */
714 if (!is_gimple_reg (*cond
) && !is_gimple_condexpr (*cond
))
718 new_stmt
= ifc_temp_var (TREE_TYPE (*cond
), unshare_expr (*cond
));
719 bsi_insert_after (bsi
, new_stmt
, BSI_SAME_STMT
);
721 *cond
= TREE_OPERAND (new_stmt
, 0);
730 /* Replace PHI node with conditional modify expr using COND.
731 This routine does not handle PHI nodes with more than two arguments.
733 S1: A = PHI <x1(1), x2(5)
735 S2: A = cond ? x1 : x2;
736 S2 is inserted at the top of basic block's statement list.
737 When COND is true, phi arg from TRUE_BB is selected.
741 replace_phi_with_cond_modify_expr (tree phi
, tree cond
, basic_block true_bb
,
742 block_stmt_iterator
*bsi
)
749 gcc_assert (TREE_CODE (phi
) == PHI_NODE
);
751 /* If this is not filtered earlier, then now it is too late. */
752 gcc_assert (PHI_NUM_ARGS (phi
) == 2);
754 /* Find basic block and initialize iterator. */
755 bb
= bb_for_stmt (phi
);
757 new_stmt
= NULL_TREE
;
761 /* Use condition that is not TRUTH_NOT_EXPR in conditional modify expr. */
762 if (PHI_ARG_EDGE(phi
, 1)->src
== true_bb
)
764 arg_0
= PHI_ARG_DEF (phi
, 1);
765 arg_1
= PHI_ARG_DEF (phi
, 0);
769 arg_0
= PHI_ARG_DEF (phi
, 0);
770 arg_1
= PHI_ARG_DEF (phi
, 1);
773 /* Build new RHS using selected condition and arguments. */
774 rhs
= build (COND_EXPR
, TREE_TYPE (PHI_RESULT (phi
)),
775 unshare_expr (cond
), unshare_expr (arg_0
),
776 unshare_expr (arg_1
));
778 /* Create new MODIFY expression using RHS. */
779 new_stmt
= build (MODIFY_EXPR
, TREE_TYPE (PHI_RESULT (phi
)),
780 unshare_expr (PHI_RESULT (phi
)), rhs
);
782 /* Make new statement definition of the original phi result. */
783 SSA_NAME_DEF_STMT (PHI_RESULT (phi
)) = new_stmt
;
785 /* Set basic block and insert using iterator. */
786 set_bb_for_stmt (new_stmt
, bb
);
788 bsi_insert_after (bsi
, new_stmt
, BSI_SAME_STMT
);
791 modify_stmt (new_stmt
);
793 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
795 fprintf (dump_file
, "new phi replacement stmt\n");
796 print_generic_stmt (dump_file
, new_stmt
, TDF_SLIM
);
800 /* Process phi nodes for the given LOOP. Replace phi nodes with cond
804 process_phi_nodes (struct loop
*loop
)
807 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
810 /* Replace phi nodes with cond. modify expr. */
811 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
814 block_stmt_iterator bsi
;
815 basic_block true_bb
= NULL
;
818 if (bb
== loop
->header
|| bb
== loop
->latch
)
821 phi
= phi_nodes (bb
);
822 bsi
= bsi_start (bb
);
824 /* BB has two predecessors. Using predecessor's aux field, set
825 appropriate condition for the PHI node replacement. */
827 true_bb
= find_phi_replacement_condition (bb
, &cond
, &bsi
);
831 tree next
= TREE_CHAIN (phi
);
832 replace_phi_with_cond_modify_expr (phi
, cond
, true_bb
, &bsi
);
833 release_phi_node (phi
);
836 bb_ann (bb
)->phi_nodes
= NULL
;
841 /* Combine all basic block from the given LOOP into one or two super
842 basic block. Replace PHI nodes with conditional modify expression. */
845 combine_blocks (struct loop
*loop
)
847 basic_block bb
, exit_bb
, merge_target_bb
;
848 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
851 /* Process phi nodes to prepare blocks for merge. */
852 process_phi_nodes (loop
);
856 /* Merge basic blocks */
857 merge_target_bb
= loop
->header
;
858 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
861 block_stmt_iterator bsi
;
862 tree_stmt_iterator last
;
866 if (bb
== loop
->latch
)
869 if (!exit_bb
&& bb_with_exit_edge_p (bb
))
877 /* Connect this node with loop header. */
878 new_e
= make_edge (ifc_bbs
[0], bb
, EDGE_FALLTHRU
);
879 set_immediate_dominator (CDI_DOMINATORS
, bb
, ifc_bbs
[0]);
881 if (exit_bb
!= loop
->latch
)
883 /* Redirect non-exit edge to loop->latch. */
884 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
885 if (!(e
->flags
& EDGE_LOOP_EXIT
))
887 redirect_edge_and_branch (e
, loop
->latch
);
888 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, bb
);
894 /* It is time to remove this basic block. First remove edges. */
895 while (EDGE_COUNT (bb
->succs
) > 0)
896 ssa_remove_edge (EDGE_SUCC (bb
, 0));
897 while (EDGE_COUNT (bb
->preds
) > 0)
898 ssa_remove_edge (EDGE_PRED (bb
, 0));
900 /* Remove labels and make stmts member of loop->header. */
901 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); )
903 if (TREE_CODE (bsi_stmt (bsi
)) == LABEL_EXPR
)
907 set_bb_for_stmt (bsi_stmt (bsi
), merge_target_bb
);
912 /* Update stmt list. */
913 last
= tsi_last (merge_target_bb
->stmt_list
);
914 tsi_link_after (&last
, bb
->stmt_list
, TSI_NEW_STMT
);
915 bb
->stmt_list
= NULL
;
917 /* Update dominator info. */
918 if (dom_computed
[CDI_DOMINATORS
])
919 delete_from_dominance_info (CDI_DOMINATORS
, bb
);
920 if (dom_computed
[CDI_POST_DOMINATORS
])
921 delete_from_dominance_info (CDI_POST_DOMINATORS
, bb
);
923 /* Remove basic block. */
924 remove_bb_from_loops (bb
);
928 /* Now if possible, merge loop header and block with exit edge.
929 This reduces number of basic blocks to 2. Auto vectorizer addresses
930 loops with two nodes only. FIXME: Use cleanup_tree_cfg(). */
931 if (exit_bb
!= loop
->latch
&& empty_block_p (loop
->latch
))
933 if (can_merge_blocks_p (loop
->header
, exit_bb
))
935 remove_bb_from_loops (exit_bb
);
936 merge_blocks (loop
->header
, exit_bb
);
941 /* Make new temp variable of type TYPE. Add MODIFY_EXPR to assign EXP
942 to the new variable. */
945 ifc_temp_var (tree type
, tree exp
)
947 const char *name
= "_ifc_";
948 tree var
, stmt
, new_name
;
950 if (is_gimple_reg (exp
))
953 /* Create new temporary variable. */
954 var
= create_tmp_var (type
, name
);
955 add_referenced_tmp_var (var
);
957 /* Build new statement to assign EXP to new variable. */
958 stmt
= build (MODIFY_EXPR
, type
, var
, exp
);
960 /* Get SSA name for the new variable and set make new statement
961 its definition statment. */
962 new_name
= make_ssa_name (var
, stmt
);
963 TREE_OPERAND (stmt
, 0) = new_name
;
964 SSA_NAME_DEF_STMT (new_name
) = stmt
;
970 /* Return TRUE iff, all pred blocks of BB are visited.
971 Bitmap VISITED keeps history of visited blocks. */
974 pred_blocks_visited_p (basic_block bb
, bitmap
*visited
)
978 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
979 if (!bitmap_bit_p (*visited
, e
->src
->index
))
985 /* Get body of a LOOP in suitable order for if-conversion.
986 It is caller's responsibility to deallocate basic block
987 list. If-conversion suitable order is, BFS order with one
988 additional constraint. Select block in BFS block, if all
989 pred are already selected. */
992 get_loop_body_in_if_conv_order (const struct loop
*loop
)
994 basic_block
*blocks
, *blocks_in_bfs_order
;
997 unsigned int index
= 0;
998 unsigned int visited_count
= 0;
1000 gcc_assert (loop
->num_nodes
);
1001 gcc_assert (loop
->latch
!= EXIT_BLOCK_PTR
);
1003 blocks
= xcalloc (loop
->num_nodes
, sizeof (basic_block
));
1004 visited
= BITMAP_XMALLOC ();
1006 blocks_in_bfs_order
= get_loop_body_in_bfs_order (loop
);
1009 while (index
< loop
->num_nodes
)
1011 bb
= blocks_in_bfs_order
[index
];
1013 if (bb
->flags
& BB_IRREDUCIBLE_LOOP
)
1015 free (blocks_in_bfs_order
);
1016 BITMAP_FREE (visited
);
1020 if (!bitmap_bit_p (visited
, bb
->index
))
1022 if (pred_blocks_visited_p (bb
, &visited
)
1023 || bb
== loop
->header
)
1025 /* This block is now visited. */
1026 bitmap_set_bit (visited
, bb
->index
);
1027 blocks
[visited_count
++] = bb
;
1031 if (index
== loop
->num_nodes
1032 && visited_count
!= loop
->num_nodes
)
1038 free (blocks_in_bfs_order
);
1039 BITMAP_XFREE (visited
);
1043 /* Return true if one of the basic block BB edge is loop exit. */
1046 bb_with_exit_edge_p (basic_block bb
)
1050 bool exit_edge_found
= false;
1052 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1053 if (e
->flags
& EDGE_LOOP_EXIT
)
1055 exit_edge_found
= true;
1059 return exit_edge_found
;
1062 /* Tree if-conversion pass management. */
1065 main_tree_if_conversion (void)
1067 unsigned i
, loop_num
;
1073 loop_num
= current_loops
->num
;
1074 for (i
= 0; i
< loop_num
; i
++)
1076 loop
= current_loops
->parray
[i
];
1080 tree_if_conversion (loop
, true);
1086 gate_tree_if_conversion (void)
1088 return flag_tree_vectorize
!= 0;
1091 struct tree_opt_pass pass_if_conversion
=
1094 gate_tree_if_conversion
, /* gate */
1095 main_tree_if_conversion
, /* execute */
1098 0, /* static_pass_number */
1100 PROP_cfg
| PROP_ssa
| PROP_alias
, /* properties_required */
1101 0, /* properties_provided */
1102 0, /* properties_destroyed */
1103 TODO_dump_func
, /* todo_flags_start */
1107 | TODO_verify_flow
, /* todo_flags_finish */