1 /* If-conversion for vectorizer.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009
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"
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 /* List of basic blocks in if-conversion-suitable order. */
105 static basic_block
*ifc_bbs
;
107 /* Create a new temp variable of type TYPE. Add GIMPLE_ASSIGN to assign EXP
108 to the new variable. */
111 ifc_temp_var (tree type
, tree exp
)
113 const char *name
= "_ifc_";
117 /* Create new temporary variable. */
118 var
= create_tmp_var (type
, name
);
119 add_referenced_var (var
);
121 /* Build new statement to assign EXP to new variable. */
122 stmt
= gimple_build_assign (var
, exp
);
124 /* Get SSA name for the new variable and set make new statement
125 its definition statement. */
126 new_name
= make_ssa_name (var
, stmt
);
127 gimple_assign_set_lhs (stmt
, new_name
);
128 SSA_NAME_DEF_STMT (new_name
) = stmt
;
134 /* Add condition NEW_COND to the predicate list of basic block BB. */
137 add_to_predicate_list (basic_block bb
, tree new_cond
)
139 tree cond
= (tree
) bb
->aux
;
142 cond
= fold_build2_loc (EXPR_LOCATION (cond
),
143 TRUTH_OR_EXPR
, boolean_type_node
,
144 unshare_expr (cond
), new_cond
);
151 /* Add the condition COND to the previous condition PREV_COND, and add this
152 to the predicate list of the destination of edge E. GSI is the
153 place where the gimplification of the resulting condition should
154 output code. LOOP is the loop to be if-converted. */
157 add_to_dst_predicate_list (struct loop
*loop
, edge e
,
158 tree prev_cond
, tree cond
,
159 gimple_stmt_iterator
*gsi
)
161 tree new_cond
= NULL_TREE
;
163 if (!flow_bb_inside_loop_p (loop
, e
->dest
))
166 if (prev_cond
== boolean_true_node
|| !prev_cond
)
167 new_cond
= unshare_expr (cond
);
171 gimple tmp_stmt
= NULL
;
173 prev_cond
= force_gimple_operand_gsi (gsi
, unshare_expr (prev_cond
),
174 true, NULL
, true, GSI_SAME_STMT
);
176 cond
= force_gimple_operand_gsi (gsi
, unshare_expr (cond
),
177 true, NULL
, true, GSI_SAME_STMT
);
179 /* Add the condition COND to the e->aux field. In case the edge
180 destination is a PHI node, this condition will be added to
181 the block predicate to construct a complete condition. */
184 tmp
= build2 (TRUTH_AND_EXPR
, boolean_type_node
,
185 unshare_expr (prev_cond
), cond
);
186 tmp_stmt
= ifc_temp_var (boolean_type_node
, tmp
);
187 gsi_insert_before (gsi
, tmp_stmt
, GSI_SAME_STMT
);
188 new_cond
= gimple_assign_lhs (tmp_stmt
);
191 add_to_predicate_list (e
->dest
, new_cond
);
195 /* Return true if one of the successor edges of BB exits LOOP. */
198 bb_with_exit_edge_p (struct loop
*loop
, basic_block bb
)
203 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
204 if (loop_exit_edge_p (loop
, e
))
210 /* STMT is a GIMPLE_COND. Update two destination's predicate list.
211 Remove COND_EXPR, if it is not the exit condition of LOOP.
212 Otherwise update the exit condition of LOOP appropriately. GSI
213 points to the statement STMT. */
216 tree_if_convert_cond_stmt (struct loop
*loop
, gimple stmt
, tree cond
,
217 gimple_stmt_iterator
*gsi
)
220 edge true_edge
, false_edge
;
221 location_t loc
= gimple_location (stmt
);
222 tree c
= fold_build2_loc (loc
, gimple_cond_code (stmt
), boolean_type_node
,
223 gimple_cond_lhs (stmt
), gimple_cond_rhs (stmt
));
225 extract_true_false_edges_from_block (gimple_bb (stmt
),
226 &true_edge
, &false_edge
);
228 /* Add new condition into destination's predicate list. */
230 /* If C is true, then TRUE_EDGE is taken. */
231 add_to_dst_predicate_list (loop
, true_edge
, cond
, c
, gsi
);
233 /* If C is false, then FALSE_EDGE is taken. */
234 c2
= invert_truthvalue_loc (loc
, unshare_expr (c
));
235 add_to_dst_predicate_list (loop
, false_edge
, cond
, c2
, gsi
);
237 /* Now this conditional statement is redundant. Remove it. But, do
238 not remove the exit condition! Update the exit condition using
239 the new condition. */
240 if (!bb_with_exit_edge_p (loop
, gimple_bb (stmt
)))
242 gsi_remove (gsi
, true);
247 /* If-convert stmt T which is part of LOOP.
249 If T is a GIMPLE_ASSIGN then it is converted into a conditional
250 modify expression using COND. For conditional expressions, add
251 a condition in the destination basic block's predicate list and
252 remove the conditional expression itself. GSI points to the
256 tree_if_convert_stmt (struct loop
*loop
, gimple t
, tree cond
,
257 gimple_stmt_iterator
*gsi
)
259 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
261 fprintf (dump_file
, "------if-convert stmt\n");
262 print_gimple_stmt (dump_file
, t
, 0, TDF_SLIM
);
263 print_generic_stmt (dump_file
, cond
, TDF_SLIM
);
266 switch (gimple_code (t
))
268 /* Labels are harmless here. */
273 /* ??? Should there be conditional GIMPLE_DEBUG_BINDs? */
274 if (gimple_debug_bind_p (gsi_stmt (*gsi
)))
276 gimple_debug_bind_reset_value (gsi_stmt (*gsi
));
277 update_stmt (gsi_stmt (*gsi
));
282 /* This GIMPLE_ASSIGN is killing previous value of LHS. Appropriate
283 value will be selected by PHI node based on condition. It is possible
284 that before this transformation, PHI nodes was selecting default
285 value and now it will use this new value. This is OK because it does
286 not change the validity of the program. */
290 /* Update destination blocks' predicate list and remove this
291 condition expression. */
292 tree_if_convert_cond_stmt (loop
, t
, cond
, gsi
);
303 /* Return true when PHI is if-convertible. PHI is part of loop LOOP
304 and it belongs to basic block BB.
306 PHI is not if-convertible if:
307 - it has more than 2 arguments,
308 - virtual PHI is immediately used in another PHI node,
309 - virtual PHI on BB other than header. */
312 if_convertible_phi_p (struct loop
*loop
, basic_block bb
, gimple phi
)
314 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
316 fprintf (dump_file
, "-------------------------\n");
317 print_gimple_stmt (dump_file
, phi
, 0, TDF_SLIM
);
320 if (bb
!= loop
->header
&& gimple_phi_num_args (phi
) != 2)
322 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
323 fprintf (dump_file
, "More than two phi node args.\n");
327 if (!is_gimple_reg (SSA_NAME_VAR (gimple_phi_result (phi
))))
329 imm_use_iterator imm_iter
;
332 if (bb
!= loop
->header
)
334 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
335 fprintf (dump_file
, "Virtual phi not on loop header.\n");
338 FOR_EACH_IMM_USE_FAST (use_p
, imm_iter
, gimple_phi_result (phi
))
340 if (gimple_code (USE_STMT (use_p
)) == GIMPLE_PHI
)
342 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
343 fprintf (dump_file
, "Difficult to handle this virtual phi.\n");
352 /* Return true when STMT is if-convertible.
354 GIMPLE_ASSIGN statement is not if-convertible if,
357 - LHS is not var decl.
359 GIMPLE_ASSIGN is part of block BB, which is inside loop LOOP. */
362 if_convertible_gimple_assign_stmt_p (struct loop
*loop
, basic_block bb
,
365 tree lhs
= gimple_assign_lhs (stmt
);
367 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
369 fprintf (dump_file
, "-------------------------\n");
370 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
373 /* Some of these constrains might be too conservative. */
374 if (stmt_ends_bb_p (stmt
)
375 || gimple_has_volatile_ops (stmt
)
376 || (TREE_CODE (lhs
) == SSA_NAME
377 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
378 || gimple_has_side_effects (stmt
))
380 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
381 fprintf (dump_file
, "stmt not suitable for ifcvt\n");
385 /* See if it needs speculative loading or not. */
386 if (bb
!= loop
->header
387 && gimple_assign_rhs_could_trap_p (stmt
))
389 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
390 fprintf (dump_file
, "tree could trap...\n");
394 if (TREE_CODE (lhs
) != SSA_NAME
395 && bb
!= loop
->header
396 && !bb_with_exit_edge_p (loop
, bb
))
398 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
400 fprintf (dump_file
, "LHS is not var\n");
401 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
409 /* Return true when STMT is if-convertible.
411 A statement is if-convertible if:
412 - it is an if-convertible GIMPLE_ASSGIN,
413 - it is a GIMPLE_LABEL or a GIMPLE_COND.
415 STMT is inside BB, which is inside loop LOOP. */
418 if_convertible_stmt_p (struct loop
*loop
, basic_block bb
, gimple stmt
)
420 switch (gimple_code (stmt
))
428 return if_convertible_gimple_assign_stmt_p (loop
, bb
, stmt
);
431 /* Don't know what to do with 'em so don't do anything. */
432 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
434 fprintf (dump_file
, "don't know what to do\n");
435 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
444 /* Return true when BB is if-convertible. This routine does not check
445 basic block's statements and phis.
447 A basic block is not if-convertible if:
448 - it is non-empty and it is after the exit block (in BFS order),
449 - it is after the exit block but before the latch,
450 - its edges are not normal.
452 EXIT_BB is the basic block containing the exit of the LOOP. BB is
456 if_convertible_bb_p (struct loop
*loop
, basic_block bb
, basic_block exit_bb
)
461 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
462 fprintf (dump_file
, "----------[%d]-------------\n", bb
->index
);
466 if (bb
!= loop
->latch
)
468 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
469 fprintf (dump_file
, "basic block after exit bb but before latch\n");
472 else if (!empty_block_p (bb
))
474 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
475 fprintf (dump_file
, "non empty basic block after exit bb\n");
478 else if (bb
== loop
->latch
480 && !dominated_by_p (CDI_DOMINATORS
, bb
, exit_bb
))
482 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
483 fprintf (dump_file
, "latch is not dominated by exit_block\n");
488 /* Be less adventurous and handle only normal edges. */
489 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
491 (EDGE_ABNORMAL_CALL
| EDGE_EH
| EDGE_ABNORMAL
| EDGE_IRREDUCIBLE_LOOP
))
493 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
494 fprintf (dump_file
, "Difficult to handle edges\n");
501 /* Return true when all predecessor blocks of BB are visited. The
502 VISITED bitmap keeps track of the visited blocks. */
505 pred_blocks_visited_p (basic_block bb
, bitmap
*visited
)
509 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
510 if (!bitmap_bit_p (*visited
, e
->src
->index
))
516 /* Get body of a LOOP in suitable order for if-conversion. It is
517 caller's responsibility to deallocate basic block list.
518 If-conversion suitable order is, breadth first sort (BFS) order
519 with an additional constraint: select a block only if all its
520 predecessors are already selected. */
523 get_loop_body_in_if_conv_order (const struct loop
*loop
)
525 basic_block
*blocks
, *blocks_in_bfs_order
;
528 unsigned int index
= 0;
529 unsigned int visited_count
= 0;
531 gcc_assert (loop
->num_nodes
);
532 gcc_assert (loop
->latch
!= EXIT_BLOCK_PTR
);
534 blocks
= XCNEWVEC (basic_block
, loop
->num_nodes
);
535 visited
= BITMAP_ALLOC (NULL
);
537 blocks_in_bfs_order
= get_loop_body_in_bfs_order (loop
);
540 while (index
< loop
->num_nodes
)
542 bb
= blocks_in_bfs_order
[index
];
544 if (bb
->flags
& BB_IRREDUCIBLE_LOOP
)
546 free (blocks_in_bfs_order
);
547 BITMAP_FREE (visited
);
552 if (!bitmap_bit_p (visited
, bb
->index
))
554 if (pred_blocks_visited_p (bb
, &visited
)
555 || bb
== loop
->header
)
557 /* This block is now visited. */
558 bitmap_set_bit (visited
, bb
->index
);
559 blocks
[visited_count
++] = bb
;
565 if (index
== loop
->num_nodes
566 && visited_count
!= loop
->num_nodes
)
570 free (blocks_in_bfs_order
);
571 BITMAP_FREE (visited
);
575 /* Return true when LOOP is if-convertible.
576 LOOP is if-convertible if:
578 - it has two or more basic blocks,
579 - it has only one exit,
580 - loop header is not the exit edge,
581 - if its basic blocks and phi nodes are if convertible. */
584 if_convertible_loop_p (struct loop
*loop
)
587 gimple_stmt_iterator itr
;
591 basic_block exit_bb
= NULL
;
593 /* Handle only inner most loop. */
594 if (!loop
|| loop
->inner
)
596 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
597 fprintf (dump_file
, "not inner most loop\n");
601 /* If only one block, no need for if-conversion. */
602 if (loop
->num_nodes
<= 2)
604 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
605 fprintf (dump_file
, "less than 2 basic blocks\n");
609 /* More than one loop exit is too much to handle. */
610 if (!single_exit (loop
))
612 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
613 fprintf (dump_file
, "multiple exits\n");
617 /* ??? Check target's vector conditional operation support for vectorizer. */
619 /* If one of the loop header's edge is exit edge then do not apply
621 FOR_EACH_EDGE (e
, ei
, loop
->header
->succs
)
623 if (loop_exit_edge_p (loop
, e
))
627 calculate_dominance_info (CDI_DOMINATORS
);
628 calculate_dominance_info (CDI_POST_DOMINATORS
);
630 /* Allow statements that can be handled during if-conversion. */
631 ifc_bbs
= get_loop_body_in_if_conv_order (loop
);
634 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
635 fprintf (dump_file
,"Irreducible loop\n");
636 free_dominance_info (CDI_POST_DOMINATORS
);
640 for (i
= 0; i
< loop
->num_nodes
; i
++)
644 if (!if_convertible_bb_p (loop
, bb
, exit_bb
))
647 for (itr
= gsi_start_bb (bb
); !gsi_end_p (itr
); gsi_next (&itr
))
648 if (!if_convertible_stmt_p (loop
, bb
, gsi_stmt (itr
)))
651 itr
= gsi_start_phis (bb
);
653 if (!gsi_end_p (itr
))
654 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
657 for (; !gsi_end_p (itr
); gsi_next (&itr
))
658 if (!if_convertible_phi_p (loop
, bb
, gsi_stmt (itr
)))
661 if (bb_with_exit_edge_p (loop
, bb
))
666 fprintf (dump_file
,"Applying if-conversion\n");
668 free_dominance_info (CDI_POST_DOMINATORS
);
672 /* During if-conversion, the bb->aux field is used to hold a predicate
673 list. This function cleans for all the basic blocks in the given
674 LOOP their predicate list. It also cleans up the e->aux field of
675 all the successor edges: e->aux is used to hold the true and false
676 conditions for conditional expressions. */
679 clean_predicate_lists (struct loop
*loop
)
686 bb
= get_loop_body (loop
);
687 for (i
= 0; i
< loop
->num_nodes
; i
++)
690 FOR_EACH_EDGE (e
, ei
, bb
[i
]->succs
)
696 /* Basic block BB has two predecessors. Using predecessor's bb->aux
697 field, set appropriate condition COND for the PHI node replacement.
698 Return true block whose phi arguments are selected when cond is
699 true. LOOP is the loop containing the if-converted region, GSI is
700 the place to insert the code for the if-conversion. */
703 find_phi_replacement_condition (struct loop
*loop
,
704 basic_block bb
, tree
*cond
,
705 gimple_stmt_iterator
*gsi
)
707 edge first_edge
, second_edge
;
710 gcc_assert (EDGE_COUNT (bb
->preds
) == 2);
711 first_edge
= EDGE_PRED (bb
, 0);
712 second_edge
= EDGE_PRED (bb
, 1);
714 /* Use condition based on following criteria:
720 S2 is preferred over S1. Make 'b' first_bb and use its condition.
722 2) Do not make loop header first_bb.
725 S1: x = !(c == d)? a : b;
730 S3: x = (c == d) ? b : a;
732 S3 is preferred over S1 and S2*, Make 'b' first_bb and use
735 4) If pred B is dominated by pred A then use pred B's condition.
738 /* Select condition that is not TRUTH_NOT_EXPR. */
739 tmp_cond
= (tree
) (first_edge
->src
)->aux
;
740 gcc_assert (tmp_cond
);
742 if (TREE_CODE (tmp_cond
) == TRUTH_NOT_EXPR
)
746 tmp_edge
= first_edge
;
747 first_edge
= second_edge
;
748 second_edge
= tmp_edge
;
751 /* Check if FIRST_BB is loop header or not and make sure that
752 FIRST_BB does not dominate SECOND_BB. */
753 if (first_edge
->src
== loop
->header
754 || dominated_by_p (CDI_DOMINATORS
,
755 second_edge
->src
, first_edge
->src
))
757 *cond
= (tree
) (second_edge
->src
)->aux
;
759 /* If there is a condition on an incoming edge, add it to the
760 incoming bb predicate. */
761 if (second_edge
->aux
)
762 *cond
= build2 (TRUTH_AND_EXPR
, boolean_type_node
,
763 *cond
, (tree
) second_edge
->aux
);
765 if (TREE_CODE (*cond
) == TRUTH_NOT_EXPR
)
766 *cond
= invert_truthvalue (*cond
);
768 /* Select non loop header bb. */
769 first_edge
= second_edge
;
773 *cond
= (tree
) (first_edge
->src
)->aux
;
775 /* If there is a condition on an incoming edge, add it to the
776 incoming bb predicate. */
778 *cond
= build2 (TRUTH_AND_EXPR
, boolean_type_node
,
779 *cond
, (tree
) first_edge
->aux
);
782 /* Gimplify the condition: the vectorizer prefers to have gimple
783 values as conditions. Various targets use different means to
784 communicate conditions in vector compare operations. Using a
785 gimple value allows the compiler to emit vector compare and
786 select RTL without exposing compare's result. */
787 *cond
= force_gimple_operand_gsi (gsi
, unshare_expr (*cond
),
789 true, GSI_SAME_STMT
);
790 if (!is_gimple_reg (*cond
) && !is_gimple_condexpr (*cond
))
794 new_stmt
= ifc_temp_var (TREE_TYPE (*cond
), unshare_expr (*cond
));
795 gsi_insert_before (gsi
, new_stmt
, GSI_SAME_STMT
);
796 *cond
= gimple_assign_lhs (new_stmt
);
801 return first_edge
->src
;
804 /* Replace PHI node with conditional modify expr using COND. This
805 routine does not handle PHI nodes with more than two arguments.
808 S1: A = PHI <x1(1), x2(5)
810 S2: A = cond ? x1 : x2;
812 The generated code is inserted at GSI that points to the top of
813 basic block's statement list. When COND is true, phi arg from
814 TRUE_BB is selected. */
817 replace_phi_with_cond_gimple_assign_stmt (gimple phi
, tree cond
,
819 gimple_stmt_iterator
*gsi
)
826 gcc_assert (gimple_code (phi
) == GIMPLE_PHI
827 && gimple_phi_num_args (phi
) == 2);
829 bb
= gimple_bb (phi
);
831 /* Use condition that is not TRUTH_NOT_EXPR in conditional modify expr. */
832 if (EDGE_PRED (bb
, 1)->src
== true_bb
)
834 arg_0
= gimple_phi_arg_def (phi
, 1);
835 arg_1
= gimple_phi_arg_def (phi
, 0);
839 arg_0
= gimple_phi_arg_def (phi
, 0);
840 arg_1
= gimple_phi_arg_def (phi
, 1);
843 /* Build new RHS using selected condition and arguments. */
844 rhs
= build3 (COND_EXPR
, TREE_TYPE (PHI_RESULT (phi
)),
845 unshare_expr (cond
), unshare_expr (arg_0
),
846 unshare_expr (arg_1
));
848 new_stmt
= gimple_build_assign (unshare_expr (PHI_RESULT (phi
)), rhs
);
849 SSA_NAME_DEF_STMT (gimple_phi_result (phi
)) = new_stmt
;
850 gsi_insert_before (gsi
, new_stmt
, GSI_SAME_STMT
);
851 update_stmt (new_stmt
);
853 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
855 fprintf (dump_file
, "new phi replacement stmt\n");
856 print_gimple_stmt (dump_file
, new_stmt
, 0, TDF_SLIM
);
860 /* Process phi nodes for the given LOOP. Replace phi nodes with
861 conditional modify expressions. */
864 process_phi_nodes (struct loop
*loop
)
867 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
870 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
873 tree cond
= NULL_TREE
;
874 gimple_stmt_iterator gsi
, phi_gsi
;
875 basic_block true_bb
= NULL
;
878 if (bb
== loop
->header
)
881 phi_gsi
= gsi_start_phis (bb
);
882 gsi
= gsi_after_labels (bb
);
884 /* BB has two predecessors. Using predecessor's aux field, set
885 appropriate condition for the PHI node replacement. */
886 if (!gsi_end_p (phi_gsi
))
887 true_bb
= find_phi_replacement_condition (loop
, bb
, &cond
, &gsi
);
889 while (!gsi_end_p (phi_gsi
))
891 phi
= gsi_stmt (phi_gsi
);
892 replace_phi_with_cond_gimple_assign_stmt (phi
, cond
, true_bb
, &gsi
);
893 release_phi_node (phi
);
896 set_phi_nodes (bb
, NULL
);
900 /* Combine all the basic blocks from LOOP into one or two super basic
901 blocks. Replace PHI nodes with conditional modify expressions. */
904 combine_blocks (struct loop
*loop
)
906 basic_block bb
, exit_bb
, merge_target_bb
;
907 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
912 /* Process phi nodes to prepare blocks for merge. */
913 process_phi_nodes (loop
);
915 /* Merge basic blocks: first remove all the edges in the loop,
916 except for those from the exit block. */
918 for (i
= 0; i
< orig_loop_num_nodes
; i
++)
921 if (bb_with_exit_edge_p (loop
, bb
))
927 gcc_assert (exit_bb
!= loop
->latch
);
929 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
933 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
));)
935 if (e
->src
== exit_bb
)
944 if (exit_bb
!= loop
->header
)
946 /* Connect this node to loop header. */
947 make_edge (loop
->header
, exit_bb
, EDGE_FALLTHRU
);
948 set_immediate_dominator (CDI_DOMINATORS
, exit_bb
, loop
->header
);
951 /* Redirect non-exit edges to loop->latch. */
952 FOR_EACH_EDGE (e
, ei
, exit_bb
->succs
)
954 if (!loop_exit_edge_p (loop
, e
))
955 redirect_edge_and_branch (e
, loop
->latch
);
957 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, exit_bb
);
961 /* If the loop does not have an exit, reconnect header and latch. */
962 make_edge (loop
->header
, loop
->latch
, EDGE_FALLTHRU
);
963 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, loop
->header
);
966 merge_target_bb
= loop
->header
;
967 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
969 gimple_stmt_iterator gsi
;
970 gimple_stmt_iterator last
;
974 if (bb
== exit_bb
|| bb
== loop
->latch
)
977 /* Remove labels and make stmts member of loop->header. */
978 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); )
980 if (gimple_code (gsi_stmt (gsi
)) == GIMPLE_LABEL
)
981 gsi_remove (&gsi
, true);
984 gimple_set_bb (gsi_stmt (gsi
), merge_target_bb
);
989 /* Update stmt list. */
990 last
= gsi_last_bb (merge_target_bb
);
991 gsi_insert_seq_after (&last
, bb_seq (bb
), GSI_NEW_STMT
);
992 set_bb_seq (bb
, NULL
);
994 delete_basic_block (bb
);
997 /* If possible, merge loop header to the block with the exit edge.
998 This reduces the number of basic blocks to two, to please the
999 vectorizer that handles only loops with two nodes.
1001 FIXME: Call cleanup_tree_cfg. */
1003 && exit_bb
!= loop
->header
1004 && can_merge_blocks_p (loop
->header
, exit_bb
))
1005 merge_blocks (loop
->header
, exit_bb
);
1008 /* Main entry point: return true when LOOP is if-converted, otherwise
1009 the loop remains unchanged. */
1012 tree_if_conversion (struct loop
*loop
)
1014 gimple_stmt_iterator itr
;
1019 /* If-conversion is not appropriate for all loops. First, check if
1020 the loop is if-convertible. */
1021 if (!if_convertible_loop_p (loop
))
1023 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1024 fprintf (dump_file
,"-------------------------\n");
1030 free_dominance_info (CDI_POST_DOMINATORS
);
1034 for (i
= 0; i
< loop
->num_nodes
; i
++)
1036 basic_block bb
= ifc_bbs
[i
];
1037 tree cond
= (tree
) bb
->aux
;
1039 /* Process all the statements in this basic block.
1040 Remove conditional expression, if any, and annotate
1041 destination basic block(s) appropriately. */
1042 for (itr
= gsi_start_bb (bb
); !gsi_end_p (itr
); /* empty */)
1044 gimple t
= gsi_stmt (itr
);
1045 cond
= tree_if_convert_stmt (loop
, t
, cond
, &itr
);
1046 if (!gsi_end_p (itr
))
1050 /* If current bb has only one successor, then consider it as an
1051 unconditional goto. */
1052 if (single_succ_p (bb
))
1054 basic_block bb_n
= single_succ (bb
);
1056 /* The successor bb inherits the predicate of its
1057 predecessor. If there is no predicate in the predecessor
1058 bb, then consider the successor bb as always executed. */
1059 if (cond
== NULL_TREE
)
1060 cond
= boolean_true_node
;
1062 add_to_predicate_list (bb_n
, cond
);
1066 /* Now, all statements are if-converted and basic blocks are
1067 annotated appropriately. Combine all the basic blocks into one
1068 huge basic block. */
1069 combine_blocks (loop
);
1072 clean_predicate_lists (loop
);
1079 /* Tree if-conversion pass management. */
1082 main_tree_if_conversion (void)
1087 if (number_of_loops () <= 1)
1090 FOR_EACH_LOOP (li
, loop
, 0)
1091 tree_if_conversion (loop
);
1097 gate_tree_if_conversion (void)
1099 return flag_tree_vectorize
!= 0;
1102 struct gimple_opt_pass pass_if_conversion
=
1107 gate_tree_if_conversion
, /* gate */
1108 main_tree_if_conversion
, /* execute */
1111 0, /* static_pass_number */
1112 TV_NONE
, /* tv_id */
1113 PROP_cfg
| PROP_ssa
, /* properties_required */
1114 0, /* properties_provided */
1115 0, /* properties_destroyed */
1116 0, /* todo_flags_start */
1117 TODO_dump_func
| TODO_verify_stmts
| TODO_verify_flow
1118 /* todo_flags_finish */