1 /* If-conversion for vectorizer.
2 Copyright (C) 2004, 2005 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, 51 Franklin Street, Fifth Floor, 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-convertible 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"
93 #include "basic-block.h"
94 #include "diagnostic.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"
104 /* local function prototypes */
105 static unsigned int main_tree_if_conversion (void);
106 static tree
tree_if_convert_stmt (struct loop
*loop
, tree
, tree
,
107 block_stmt_iterator
*);
108 static void tree_if_convert_cond_expr (struct loop
*, tree
, tree
,
109 block_stmt_iterator
*);
110 static bool if_convertible_phi_p (struct loop
*, basic_block
, tree
);
111 static bool if_convertible_gimple_modify_stmt_p (struct loop
*, basic_block
,
113 static bool if_convertible_stmt_p (struct loop
*, basic_block
, tree
);
114 static bool if_convertible_bb_p (struct loop
*, basic_block
, basic_block
);
115 static bool if_convertible_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
, basic_block
, tree
, tree
,
118 block_stmt_iterator
*);
119 static void clean_predicate_lists (struct loop
*loop
);
120 static basic_block
find_phi_replacement_condition (struct loop
*loop
,
122 block_stmt_iterator
*);
123 static void replace_phi_with_cond_gimple_modify_stmt (tree
, tree
, basic_block
,
124 block_stmt_iterator
*);
125 static void process_phi_nodes (struct loop
*);
126 static void combine_blocks (struct loop
*);
127 static tree
ifc_temp_var (tree
, tree
);
128 static bool pred_blocks_visited_p (basic_block
, bitmap
*);
129 static basic_block
* get_loop_body_in_if_conv_order (const struct loop
*loop
);
130 static bool bb_with_exit_edge_p (struct loop
*, basic_block
);
132 /* List of basic blocks in if-conversion-suitable order. */
133 static basic_block
*ifc_bbs
;
136 Apply if-conversion to the LOOP. Return true if successful otherwise return
137 false. If false is returned then loop remains unchanged.
138 FOR_VECTORIZER is a boolean flag. It indicates whether if-conversion is used
139 for vectorizer or not. If it is used for vectorizer, additional checks are
140 used. (Vectorization checks are not yet implemented). */
143 tree_if_conversion (struct loop
*loop
, bool for_vectorizer
)
146 block_stmt_iterator itr
;
152 /* if-conversion is not appropriate for all loops. First, check if loop is
153 if-convertible or not. */
154 if (!if_convertible_loop_p (loop
, for_vectorizer
))
156 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
157 fprintf (dump_file
,"-------------------------\n");
163 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 (single_succ_p (bb
))
192 basic_block bb_n
= single_succ (bb
);
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
);
212 /* if-convert stmt T which is part of LOOP.
213 If T is a GIMPLE_MODIFY_STMT than it is converted into conditional modify
214 expression using COND. For conditional expressions, add condition in the
215 destination basic block's predicate list and remove conditional
216 expression itself. BSI is the iterator used to traverse statements of
217 loop. It is used here when it is required to delete current statement. */
220 tree_if_convert_stmt (struct loop
* loop
, tree t
, tree cond
,
221 block_stmt_iterator
*bsi
)
223 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
225 fprintf (dump_file
, "------if-convert stmt\n");
226 print_generic_stmt (dump_file
, t
, TDF_SLIM
);
227 print_generic_stmt (dump_file
, cond
, TDF_SLIM
);
230 switch (TREE_CODE (t
))
232 /* Labels are harmless here. */
236 case GIMPLE_MODIFY_STMT
:
237 /* This GIMPLE_MODIFY_STMT is killing previous value of LHS. Appropriate
238 value will be selected by PHI node based on condition. It is possible
239 that before this transformation, PHI nodes was selecting default
240 value and now it will use this new value. This is OK because it does
241 not change validity the program. */
245 /* Update destination blocks' predicate list and remove this
246 condition expression. */
247 tree_if_convert_cond_expr (loop
, t
, cond
, bsi
);
257 /* STMT is COND_EXPR. Update two destination's predicate list.
258 Remove COND_EXPR, if it is not the loop exit condition. Otherwise
259 update loop exit condition appropriately. BSI is the iterator
260 used to traverse statement list. STMT is part of loop LOOP. */
263 tree_if_convert_cond_expr (struct loop
*loop
, tree stmt
, tree cond
,
264 block_stmt_iterator
*bsi
)
267 edge true_edge
, false_edge
;
269 gcc_assert (TREE_CODE (stmt
) == COND_EXPR
);
271 c
= COND_EXPR_COND (stmt
);
273 extract_true_false_edges_from_block (bb_for_stmt (stmt
),
274 &true_edge
, &false_edge
);
276 /* Add new condition into destination's predicate list. */
278 /* If 'c' is true then TRUE_EDGE is taken. */
279 add_to_dst_predicate_list (loop
, true_edge
->dest
, cond
,
280 unshare_expr (c
), bsi
);
282 /* If 'c' is false then FALSE_EDGE is taken. */
283 c2
= invert_truthvalue (unshare_expr (c
));
284 add_to_dst_predicate_list (loop
, false_edge
->dest
, cond
, c2
, bsi
);
286 /* Now this conditional statement is redundant. Remove it.
287 But, do not remove exit condition! Update exit condition
288 using new condition. */
289 if (!bb_with_exit_edge_p (loop
, bb_for_stmt (stmt
)))
291 bsi_remove (bsi
, true);
297 /* Return true, iff PHI is if-convertible. PHI is part of loop LOOP
298 and it belongs to basic block BB.
299 PHI is not if-convertible
300 - if it has more than 2 arguments.
301 - Virtual PHI is immediately used in another PHI node. */
304 if_convertible_phi_p (struct loop
*loop
, basic_block bb
, tree phi
)
306 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
308 fprintf (dump_file
, "-------------------------\n");
309 print_generic_stmt (dump_file
, phi
, TDF_SLIM
);
312 if (bb
!= loop
->header
&& PHI_NUM_ARGS (phi
) != 2)
314 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
315 fprintf (dump_file
, "More than two phi node args.\n");
319 if (!is_gimple_reg (SSA_NAME_VAR (PHI_RESULT (phi
))))
321 imm_use_iterator imm_iter
;
323 FOR_EACH_IMM_USE_FAST (use_p
, imm_iter
, PHI_RESULT (phi
))
325 if (TREE_CODE (USE_STMT (use_p
)) == PHI_NODE
)
327 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
328 fprintf (dump_file
, "Difficult to handle this virtual phi.\n");
337 /* Return true, if M_EXPR is if-convertible.
338 GIMPLE_MODIFY_STMT is not if-convertible if,
341 - LHS is not var decl.
342 GIMPLE_MODIFY_STMT is part of block BB, which is inside loop LOOP.
346 if_convertible_gimple_modify_stmt_p (struct loop
*loop
, basic_block bb
,
349 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
351 fprintf (dump_file
, "-------------------------\n");
352 print_generic_stmt (dump_file
, m_expr
, TDF_SLIM
);
355 /* Be conservative and do not handle immovable expressions. */
356 if (movement_possibility (m_expr
) == MOVE_IMPOSSIBLE
)
358 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
359 fprintf (dump_file
, "stmt is movable. Don't take risk\n");
363 /* See if it needs speculative loading or not. */
364 if (bb
!= loop
->header
365 && tree_could_trap_p (GIMPLE_STMT_OPERAND (m_expr
, 1)))
367 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
368 fprintf (dump_file
, "tree could trap...\n");
372 if (TREE_CODE (GIMPLE_STMT_OPERAND (m_expr
, 1)) == CALL_EXPR
)
374 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
375 fprintf (dump_file
, "CALL_EXPR \n");
379 if (TREE_CODE (GIMPLE_STMT_OPERAND (m_expr
, 0)) != SSA_NAME
380 && bb
!= loop
->header
381 && !bb_with_exit_edge_p (loop
, bb
))
383 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
385 fprintf (dump_file
, "LHS is not var\n");
386 print_generic_stmt (dump_file
, m_expr
, TDF_SLIM
);
395 /* Return true, iff STMT is if-convertible.
396 Statement is if-convertible if,
397 - It is if-convertible GIMPLE_MODIFY_STMT
398 - IT is LABEL_EXPR or COND_EXPR.
399 STMT is inside block BB, which is inside loop LOOP. */
402 if_convertible_stmt_p (struct loop
*loop
, basic_block bb
, tree stmt
)
404 switch (TREE_CODE (stmt
))
409 case GIMPLE_MODIFY_STMT
:
411 if (!if_convertible_gimple_modify_stmt_p (loop
, bb
, stmt
))
419 /* Don't know what to do with 'em so don't do anything. */
420 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
422 fprintf (dump_file
, "don't know what to do\n");
423 print_generic_stmt (dump_file
, stmt
, TDF_SLIM
);
432 /* Return true, iff BB is if-convertible.
433 Note: This routine does _not_ check basic block statements and phis.
434 Basic block is not if-convertible if,
435 - Basic block is non-empty and it is after exit block (in BFS order).
436 - Basic block is after exit block but before latch.
437 - Basic block edge(s) is not normal.
438 EXIT_BB_SEEN is true if basic block with exit edge is already seen.
439 BB is inside loop LOOP. */
442 if_convertible_bb_p (struct loop
*loop
, basic_block bb
, basic_block exit_bb
)
447 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
448 fprintf (dump_file
, "----------[%d]-------------\n", bb
->index
);
452 if (bb
!= loop
->latch
)
454 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
455 fprintf (dump_file
, "basic block after exit bb but before latch\n");
458 else if (!empty_block_p (bb
))
460 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
461 fprintf (dump_file
, "non empty basic block after exit bb\n");
464 else if (bb
== loop
->latch
466 && !dominated_by_p (CDI_DOMINATORS
, bb
, exit_bb
))
468 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
469 fprintf (dump_file
, "latch is not dominated by exit_block\n");
474 /* Be less adventurous and handle only normal edges. */
475 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
477 (EDGE_ABNORMAL_CALL
| EDGE_EH
| EDGE_ABNORMAL
| EDGE_IRREDUCIBLE_LOOP
))
479 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
480 fprintf (dump_file
,"Difficult to handle edges\n");
487 /* Return true, iff LOOP is if-convertible.
488 LOOP is if-convertible if,
490 - It has two or more basic blocks.
491 - It has only one exit.
492 - Loop header is not the exit edge.
493 - If its basic blocks and phi nodes are if convertible. See above for
495 FOR_VECTORIZER enables vectorizer specific checks. For example, support
496 for vector conditions, data dependency checks etc.. (Not implemented yet). */
499 if_convertible_loop_p (struct loop
*loop
, bool for_vectorizer ATTRIBUTE_UNUSED
)
503 block_stmt_iterator itr
;
507 basic_block exit_bb
= NULL
;
509 /* Handle only inner most loop. */
510 if (!loop
|| loop
->inner
)
512 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
513 fprintf (dump_file
, "not inner most loop\n");
517 /* If only one block, no need for if-conversion. */
518 if (loop
->num_nodes
<= 2)
520 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
521 fprintf (dump_file
, "less than 2 basic blocks\n");
525 /* More than one loop exit is too much to handle. */
526 if (!single_exit (loop
))
528 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
529 fprintf (dump_file
, "multiple exits\n");
533 /* ??? Check target's vector conditional operation support for vectorizer. */
535 /* If one of the loop header's edge is exit edge then do not apply
537 FOR_EACH_EDGE (e
, ei
, loop
->header
->succs
)
539 if (loop_exit_edge_p (loop
, e
))
543 calculate_dominance_info (CDI_DOMINATORS
);
544 calculate_dominance_info (CDI_POST_DOMINATORS
);
546 /* Allow statements that can be handled during if-conversion. */
547 ifc_bbs
= get_loop_body_in_if_conv_order (loop
);
550 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
551 fprintf (dump_file
,"Irreducible loop\n");
552 free_dominance_info (CDI_POST_DOMINATORS
);
556 for (i
= 0; i
< loop
->num_nodes
; i
++)
560 if (!if_convertible_bb_p (loop
, bb
, exit_bb
))
563 /* Check statements. */
564 for (itr
= bsi_start (bb
); !bsi_end_p (itr
); bsi_next (&itr
))
565 if (!if_convertible_stmt_p (loop
, bb
, bsi_stmt (itr
)))
567 /* ??? Check data dependency for vectorizer. */
569 /* What about phi nodes ? */
570 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
571 if (!if_convertible_phi_p (loop
, bb
, phi
))
574 if (bb_with_exit_edge_p (loop
, bb
))
578 /* OK. Did not find any potential issues so go ahead in if-convert
579 this loop. Now there is no looking back. */
581 fprintf (dump_file
,"Applying if-conversion\n");
583 free_dominance_info (CDI_POST_DOMINATORS
);
587 /* Add condition COND into predicate list of basic block BB. */
590 add_to_predicate_list (basic_block bb
, tree new_cond
)
595 cond
= fold_build2 (TRUTH_OR_EXPR
, boolean_type_node
,
596 unshare_expr (cond
), new_cond
);
603 /* Add condition COND into BB's predicate list. PREV_COND is
604 existing condition. */
607 add_to_dst_predicate_list (struct loop
* loop
, basic_block bb
,
608 tree prev_cond
, tree cond
,
609 block_stmt_iterator
*bsi
)
611 tree new_cond
= NULL_TREE
;
613 if (!flow_bb_inside_loop_p (loop
, bb
))
616 if (prev_cond
== boolean_true_node
|| !prev_cond
)
617 new_cond
= unshare_expr (cond
);
621 tree tmp_stmt
= NULL_TREE
;
622 tree tmp_stmts1
= NULL_TREE
;
623 tree tmp_stmts2
= NULL_TREE
;
624 prev_cond
= force_gimple_operand (unshare_expr (prev_cond
),
625 &tmp_stmts1
, true, NULL
);
627 bsi_insert_before (bsi
, tmp_stmts1
, BSI_SAME_STMT
);
629 cond
= force_gimple_operand (unshare_expr (cond
),
630 &tmp_stmts2
, true, NULL
);
632 bsi_insert_before (bsi
, tmp_stmts2
, BSI_SAME_STMT
);
634 /* new_cond == prev_cond AND cond */
635 tmp
= build2 (TRUTH_AND_EXPR
, boolean_type_node
,
636 unshare_expr (prev_cond
), cond
);
637 tmp_stmt
= ifc_temp_var (boolean_type_node
, tmp
);
638 bsi_insert_before (bsi
, tmp_stmt
, BSI_SAME_STMT
);
639 new_cond
= GIMPLE_STMT_OPERAND (tmp_stmt
, 0);
641 add_to_predicate_list (bb
, new_cond
);
645 /* During if-conversion aux field from basic block is used to hold predicate
646 list. Clean each basic block's predicate list for the given LOOP. */
649 clean_predicate_lists (struct loop
*loop
)
653 bb
= get_loop_body (loop
);
654 for (i
= 0; i
< loop
->num_nodes
; i
++)
660 /* Basic block BB has two predecessors. Using predecessor's aux field, set
661 appropriate condition COND for the PHI node replacement. Return true block
662 whose phi arguments are selected when cond is true. */
665 find_phi_replacement_condition (struct loop
*loop
,
666 basic_block bb
, tree
*cond
,
667 block_stmt_iterator
*bsi
)
669 basic_block first_bb
= NULL
;
670 basic_block second_bb
= NULL
;
671 tree tmp_cond
, new_stmts
;
673 gcc_assert (EDGE_COUNT (bb
->preds
) == 2);
674 first_bb
= (EDGE_PRED (bb
, 0))->src
;
675 second_bb
= (EDGE_PRED (bb
, 1))->src
;
677 /* Use condition based on following criteria:
683 S2 is preferred over S1. Make 'b' first_bb and use its condition.
685 2) Do not make loop header first_bb.
688 S1: x = !(c == d)? a : b;
693 S3: x = (c == d) ? b : a;
695 S3 is preferred over S1 and S2*, Make 'b' first_bb and use
698 4) If pred B is dominated by pred A then use pred B's condition.
701 /* Select condition that is not TRUTH_NOT_EXPR. */
702 tmp_cond
= first_bb
->aux
;
703 if (TREE_CODE (tmp_cond
) == TRUTH_NOT_EXPR
)
707 first_bb
= second_bb
;
711 /* Check if FIRST_BB is loop header or not and make sure that
712 FIRST_BB does not dominate SECOND_BB. */
713 if (first_bb
== loop
->header
714 || dominated_by_p (CDI_DOMINATORS
, second_bb
, first_bb
))
716 tmp_cond
= second_bb
->aux
;
717 if (TREE_CODE (tmp_cond
) == TRUTH_NOT_EXPR
)
719 /* Select non loop header condition but do not switch basic blocks. */
720 *cond
= invert_truthvalue (unshare_expr (tmp_cond
));
724 /* Select non loop header condition. */
725 first_bb
= second_bb
;
726 *cond
= first_bb
->aux
;
730 /* FIRST_BB is not loop header */
731 *cond
= first_bb
->aux
;
733 /* Create temp. for the condition. Vectorizer prefers to have gimple
734 value as condition. Various targets use different means to communicate
735 condition in vector compare operation. Using gimple value allows compiler
736 to emit vector compare and select RTL without exposing compare's result. */
737 *cond
= force_gimple_operand (*cond
, &new_stmts
, false, NULL_TREE
);
739 bsi_insert_before (bsi
, new_stmts
, BSI_SAME_STMT
);
740 if (!is_gimple_reg (*cond
) && !is_gimple_condexpr (*cond
))
744 new_stmt
= ifc_temp_var (TREE_TYPE (*cond
), unshare_expr (*cond
));
745 bsi_insert_before (bsi
, new_stmt
, BSI_SAME_STMT
);
746 *cond
= GIMPLE_STMT_OPERAND (new_stmt
, 0);
755 /* Replace PHI node with conditional modify expr using COND.
756 This routine does not handle PHI nodes with more than two arguments.
758 S1: A = PHI <x1(1), x2(5)
760 S2: A = cond ? x1 : x2;
761 S2 is inserted at the top of basic block's statement list.
762 When COND is true, phi arg from TRUE_BB is selected.
766 replace_phi_with_cond_gimple_modify_stmt (tree phi
, tree cond
,
768 block_stmt_iterator
*bsi
)
775 gcc_assert (TREE_CODE (phi
) == PHI_NODE
);
777 /* If this is not filtered earlier, then now it is too late. */
778 gcc_assert (PHI_NUM_ARGS (phi
) == 2);
780 /* Find basic block and initialize iterator. */
781 bb
= bb_for_stmt (phi
);
783 new_stmt
= NULL_TREE
;
787 /* Use condition that is not TRUTH_NOT_EXPR in conditional modify expr. */
788 if (EDGE_PRED (bb
, 1)->src
== true_bb
)
790 arg_0
= PHI_ARG_DEF (phi
, 1);
791 arg_1
= PHI_ARG_DEF (phi
, 0);
795 arg_0
= PHI_ARG_DEF (phi
, 0);
796 arg_1
= PHI_ARG_DEF (phi
, 1);
799 /* Build new RHS using selected condition and arguments. */
800 rhs
= build3 (COND_EXPR
, TREE_TYPE (PHI_RESULT (phi
)),
801 unshare_expr (cond
), unshare_expr (arg_0
),
802 unshare_expr (arg_1
));
804 /* Create new MODIFY expression using RHS. */
805 new_stmt
= build2 (GIMPLE_MODIFY_STMT
, TREE_TYPE (PHI_RESULT (phi
)),
806 unshare_expr (PHI_RESULT (phi
)), rhs
);
808 /* Make new statement definition of the original phi result. */
809 SSA_NAME_DEF_STMT (PHI_RESULT (phi
)) = new_stmt
;
811 /* Insert using iterator. */
812 bsi_insert_before (bsi
, new_stmt
, BSI_SAME_STMT
);
813 update_stmt (new_stmt
);
815 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
817 fprintf (dump_file
, "new phi replacement stmt\n");
818 print_generic_stmt (dump_file
, new_stmt
, TDF_SLIM
);
822 /* Process phi nodes for the given LOOP. Replace phi nodes with cond
826 process_phi_nodes (struct loop
*loop
)
829 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
832 /* Replace phi nodes with cond. modify expr. */
833 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
836 block_stmt_iterator bsi
;
837 basic_block true_bb
= NULL
;
840 if (bb
== loop
->header
)
843 phi
= phi_nodes (bb
);
844 bsi
= bsi_after_labels (bb
);
846 /* BB has two predecessors. Using predecessor's aux field, set
847 appropriate condition for the PHI node replacement. */
849 true_bb
= find_phi_replacement_condition (loop
, bb
, &cond
, &bsi
);
853 tree next
= PHI_CHAIN (phi
);
854 replace_phi_with_cond_gimple_modify_stmt (phi
, cond
, true_bb
, &bsi
);
855 release_phi_node (phi
);
858 bb
->phi_nodes
= NULL
;
863 /* Combine all basic block from the given LOOP into one or two super
864 basic block. Replace PHI nodes with conditional modify expression. */
867 combine_blocks (struct loop
*loop
)
869 basic_block bb
, exit_bb
, merge_target_bb
;
870 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
875 /* Process phi nodes to prepare blocks for merge. */
876 process_phi_nodes (loop
);
878 /* Merge basic blocks. First remove all the edges in the loop, except
879 for those from the exit block. */
881 for (i
= 0; i
< orig_loop_num_nodes
; i
++)
884 if (bb_with_exit_edge_p (loop
, bb
))
890 gcc_assert (exit_bb
!= loop
->latch
);
892 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
896 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
));)
898 if (e
->src
== exit_bb
)
907 if (exit_bb
!= loop
->header
)
909 /* Connect this node with loop header. */
910 make_edge (loop
->header
, exit_bb
, EDGE_FALLTHRU
);
911 set_immediate_dominator (CDI_DOMINATORS
, exit_bb
, loop
->header
);
914 /* Redirect non-exit edges to loop->latch. */
915 FOR_EACH_EDGE (e
, ei
, exit_bb
->succs
)
917 if (!loop_exit_edge_p (loop
, e
))
918 redirect_edge_and_branch (e
, loop
->latch
);
920 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, exit_bb
);
924 /* If the loop does not have exit then reconnect header and latch. */
925 make_edge (loop
->header
, loop
->latch
, EDGE_FALLTHRU
);
926 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, loop
->header
);
929 merge_target_bb
= loop
->header
;
930 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
932 block_stmt_iterator bsi
;
933 tree_stmt_iterator last
;
937 if (bb
== exit_bb
|| bb
== loop
->latch
)
940 /* Remove labels and make stmts member of loop->header. */
941 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); )
943 if (TREE_CODE (bsi_stmt (bsi
)) == LABEL_EXPR
)
944 bsi_remove (&bsi
, true);
947 set_bb_for_stmt (bsi_stmt (bsi
), merge_target_bb
);
952 /* Update stmt list. */
953 last
= tsi_last (merge_target_bb
->stmt_list
);
954 tsi_link_after (&last
, bb
->stmt_list
, TSI_NEW_STMT
);
955 bb
->stmt_list
= alloc_stmt_list ();
957 delete_basic_block (bb
);
960 /* Now if possible, merge loop header and block with exit edge.
961 This reduces number of basic blocks to 2. Auto vectorizer addresses
962 loops with two nodes only. FIXME: Use cleanup_tree_cfg(). */
964 && exit_bb
!= loop
->header
965 && can_merge_blocks_p (loop
->header
, exit_bb
))
966 merge_blocks (loop
->header
, exit_bb
);
969 /* Make new temp variable of type TYPE. Add GIMPLE_MODIFY_STMT to assign EXP
970 to the new variable. */
973 ifc_temp_var (tree type
, tree exp
)
975 const char *name
= "_ifc_";
976 tree var
, stmt
, new_name
;
978 if (is_gimple_reg (exp
))
981 /* Create new temporary variable. */
982 var
= create_tmp_var (type
, name
);
983 add_referenced_var (var
);
985 /* Build new statement to assign EXP to new variable. */
986 stmt
= build2 (GIMPLE_MODIFY_STMT
, type
, var
, exp
);
988 /* Get SSA name for the new variable and set make new statement
989 its definition statement. */
990 new_name
= make_ssa_name (var
, stmt
);
991 GIMPLE_STMT_OPERAND (stmt
, 0) = new_name
;
992 SSA_NAME_DEF_STMT (new_name
) = stmt
;
998 /* Return TRUE iff, all pred blocks of BB are visited.
999 Bitmap VISITED keeps history of visited blocks. */
1002 pred_blocks_visited_p (basic_block bb
, bitmap
*visited
)
1006 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1007 if (!bitmap_bit_p (*visited
, e
->src
->index
))
1013 /* Get body of a LOOP in suitable order for if-conversion.
1014 It is caller's responsibility to deallocate basic block
1015 list. If-conversion suitable order is, BFS order with one
1016 additional constraint. Select block in BFS block, if all
1017 pred are already selected. */
1019 static basic_block
*
1020 get_loop_body_in_if_conv_order (const struct loop
*loop
)
1022 basic_block
*blocks
, *blocks_in_bfs_order
;
1025 unsigned int index
= 0;
1026 unsigned int visited_count
= 0;
1028 gcc_assert (loop
->num_nodes
);
1029 gcc_assert (loop
->latch
!= EXIT_BLOCK_PTR
);
1031 blocks
= XCNEWVEC (basic_block
, loop
->num_nodes
);
1032 visited
= BITMAP_ALLOC (NULL
);
1034 blocks_in_bfs_order
= get_loop_body_in_bfs_order (loop
);
1037 while (index
< loop
->num_nodes
)
1039 bb
= blocks_in_bfs_order
[index
];
1041 if (bb
->flags
& BB_IRREDUCIBLE_LOOP
)
1043 free (blocks_in_bfs_order
);
1044 BITMAP_FREE (visited
);
1048 if (!bitmap_bit_p (visited
, bb
->index
))
1050 if (pred_blocks_visited_p (bb
, &visited
)
1051 || bb
== loop
->header
)
1053 /* This block is now visited. */
1054 bitmap_set_bit (visited
, bb
->index
);
1055 blocks
[visited_count
++] = bb
;
1059 if (index
== loop
->num_nodes
1060 && visited_count
!= loop
->num_nodes
)
1066 free (blocks_in_bfs_order
);
1067 BITMAP_FREE (visited
);
1071 /* Return true if one of the basic block BB edge is exit of LOOP. */
1074 bb_with_exit_edge_p (struct loop
*loop
, basic_block bb
)
1078 bool exit_edge_found
= false;
1080 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1081 if (loop_exit_edge_p (loop
, e
))
1083 exit_edge_found
= true;
1087 return exit_edge_found
;
1090 /* Tree if-conversion pass management. */
1093 main_tree_if_conversion (void)
1101 FOR_EACH_LOOP (li
, loop
, 0)
1103 tree_if_conversion (loop
, true);
1109 gate_tree_if_conversion (void)
1111 return flag_tree_vectorize
!= 0;
1114 struct tree_opt_pass pass_if_conversion
=
1117 gate_tree_if_conversion
, /* gate */
1118 main_tree_if_conversion
, /* execute */
1121 0, /* static_pass_number */
1123 PROP_cfg
| PROP_ssa
| PROP_alias
, /* properties_required */
1124 0, /* properties_provided */
1125 0, /* properties_destroyed */
1126 0, /* todo_flags_start */
1127 TODO_dump_func
| TODO_verify_loops
| TODO_verify_stmts
| TODO_verify_flow
,
1128 /* todo_flags_finish */