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 "tree-pretty-print.h"
93 #include "gimple-pretty-print.h"
94 #include "tree-flow.h"
95 #include "tree-dump.h"
97 #include "tree-chrec.h"
98 #include "tree-data-ref.h"
99 #include "tree-scalar-evolution.h"
100 #include "tree-pass.h"
103 /* List of basic blocks in if-conversion-suitable order. */
104 static basic_block
*ifc_bbs
;
106 /* Structure used to predicate basic blocks. This is attached to the
107 ->aux field of the BBs in the loop to be if-converted. */
108 typedef struct bb_predicate_s
{
110 /* The condition under which this basic block is executed. */
113 /* PREDICATE is gimplified, and the sequence of statements is
114 recorded here, in order to avoid the duplication of computations
115 that occur in previous conditions. See PR44483. */
116 gimple_seq predicate_gimplified_stmts
;
119 /* Returns true when the basic block BB has a predicate. */
122 bb_has_predicate (basic_block bb
)
124 return bb
->aux
!= NULL
;
127 /* Returns the gimplified predicate for basic block BB. */
130 bb_predicate (basic_block bb
)
132 return ((bb_predicate_p
) bb
->aux
)->predicate
;
135 /* Sets the gimplified predicate COND for basic block BB. */
138 set_bb_predicate (basic_block bb
, tree cond
)
140 ((bb_predicate_p
) bb
->aux
)->predicate
= cond
;
143 /* Returns the sequence of statements of the gimplification of the
144 predicate for basic block BB. */
146 static inline gimple_seq
147 bb_predicate_gimplified_stmts (basic_block bb
)
149 return ((bb_predicate_p
) bb
->aux
)->predicate_gimplified_stmts
;
152 /* Sets the sequence of statements STMTS of the gimplification of the
153 predicate for basic block BB. */
156 set_bb_predicate_gimplified_stmts (basic_block bb
, gimple_seq stmts
)
158 ((bb_predicate_p
) bb
->aux
)->predicate_gimplified_stmts
= stmts
;
161 /* Adds the sequence of statements STMTS to the sequence of statements
162 of the predicate for basic block BB. */
165 add_bb_predicate_gimplified_stmts (basic_block bb
, gimple_seq stmts
)
168 (&(((bb_predicate_p
) bb
->aux
)->predicate_gimplified_stmts
), stmts
);
171 /* Initializes to TRUE the predicate of basic block BB. */
174 init_bb_predicate (basic_block bb
)
176 bb
->aux
= XNEW (struct bb_predicate_s
);
177 set_bb_predicate_gimplified_stmts (bb
, NULL
);
178 set_bb_predicate (bb
, boolean_true_node
);
181 /* Free the predicate of basic block BB. */
184 free_bb_predicate (basic_block bb
)
188 if (!bb_has_predicate (bb
))
191 /* Release the SSA_NAMEs created for the gimplification of the
193 stmts
= bb_predicate_gimplified_stmts (bb
);
196 gimple_stmt_iterator i
;
198 for (i
= gsi_start (stmts
); !gsi_end_p (i
); gsi_next (&i
))
199 free_stmt_operands (gsi_stmt (i
));
206 /* Free the predicate of BB and reinitialize it with the true
210 reset_bb_predicate (basic_block bb
)
212 free_bb_predicate (bb
);
213 init_bb_predicate (bb
);
216 /* Returns a new SSA_NAME of type TYPE that is assigned the value of
217 the expression EXPR. Inserts the statement created for this
218 computation before GSI and leaves the iterator GSI at the same
222 ifc_temp_var (tree type
, tree expr
, gimple_stmt_iterator
*gsi
)
224 const char *name
= "_ifc_";
228 /* Create new temporary variable. */
229 var
= create_tmp_var (type
, name
);
230 add_referenced_var (var
);
232 /* Build new statement to assign EXPR to new variable. */
233 stmt
= gimple_build_assign (var
, expr
);
235 /* Get SSA name for the new variable and set make new statement
236 its definition statement. */
237 new_name
= make_ssa_name (var
, stmt
);
238 gimple_assign_set_lhs (stmt
, new_name
);
239 SSA_NAME_DEF_STMT (new_name
) = stmt
;
242 gsi_insert_before (gsi
, stmt
, GSI_SAME_STMT
);
243 return gimple_assign_lhs (stmt
);
246 /* Return true when COND is a true predicate. */
249 is_true_predicate (tree cond
)
251 return (cond
== NULL_TREE
252 || cond
== boolean_true_node
253 || integer_onep (cond
));
256 /* Returns true when BB has a predicate that is not trivial: true or
260 is_predicated (basic_block bb
)
262 return !is_true_predicate (bb_predicate (bb
));
265 /* Parses the predicate COND and returns its comparison code and
266 operands OP0 and OP1. */
268 static enum tree_code
269 parse_predicate (tree cond
, tree
*op0
, tree
*op1
)
273 if (TREE_CODE (cond
) == SSA_NAME
274 && is_gimple_assign (s
= SSA_NAME_DEF_STMT (cond
)))
276 if (TREE_CODE_CLASS (gimple_assign_rhs_code (s
)) == tcc_comparison
)
278 *op0
= gimple_assign_rhs1 (s
);
279 *op1
= gimple_assign_rhs2 (s
);
280 return gimple_assign_rhs_code (s
);
283 else if (gimple_assign_rhs_code (s
) == TRUTH_NOT_EXPR
)
285 tree op
= gimple_assign_rhs1 (s
);
286 tree type
= TREE_TYPE (op
);
287 enum tree_code code
= parse_predicate (op
, op0
, op1
);
289 return code
== ERROR_MARK
? ERROR_MARK
290 : invert_tree_comparison (code
, HONOR_NANS (TYPE_MODE (type
)));
296 if (TREE_CODE_CLASS (TREE_CODE (cond
)) == tcc_comparison
)
298 *op0
= TREE_OPERAND (cond
, 0);
299 *op1
= TREE_OPERAND (cond
, 1);
300 return TREE_CODE (cond
);
306 /* Returns the fold of predicate C1 OR C2 at location LOC. */
309 fold_or_predicates (location_t loc
, tree c1
, tree c2
)
311 tree op1a
, op1b
, op2a
, op2b
;
312 enum tree_code code1
= parse_predicate (c1
, &op1a
, &op1b
);
313 enum tree_code code2
= parse_predicate (c2
, &op2a
, &op2b
);
315 if (code1
!= ERROR_MARK
&& code2
!= ERROR_MARK
)
317 tree t
= maybe_fold_or_comparisons (code1
, op1a
, op1b
,
323 return fold_build2_loc (loc
, TRUTH_OR_EXPR
, boolean_type_node
, c1
, c2
);
326 /* Add condition NC to the predicate list of basic block BB. */
329 add_to_predicate_list (basic_block bb
, tree nc
)
333 if (is_true_predicate (nc
))
336 if (!is_predicated (bb
))
340 bc
= bb_predicate (bb
);
341 bc
= fold_or_predicates (EXPR_LOCATION (bc
), nc
, bc
);
344 if (!is_gimple_condexpr (bc
))
347 bc
= force_gimple_operand (bc
, &stmts
, true, NULL_TREE
);
348 add_bb_predicate_gimplified_stmts (bb
, stmts
);
351 if (is_true_predicate (bc
))
352 reset_bb_predicate (bb
);
354 set_bb_predicate (bb
, bc
);
357 /* Add the condition COND to the previous condition PREV_COND, and add
358 this to the predicate list of the destination of edge E. LOOP is
359 the loop to be if-converted. */
362 add_to_dst_predicate_list (struct loop
*loop
, edge e
,
363 tree prev_cond
, tree cond
)
365 if (!flow_bb_inside_loop_p (loop
, e
->dest
))
368 if (!is_true_predicate (prev_cond
))
369 cond
= fold_build2 (TRUTH_AND_EXPR
, boolean_type_node
,
372 add_to_predicate_list (e
->dest
, cond
);
375 /* Return true if one of the successor edges of BB exits LOOP. */
378 bb_with_exit_edge_p (struct loop
*loop
, basic_block bb
)
383 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
384 if (loop_exit_edge_p (loop
, e
))
390 /* Return true when PHI is if-convertible. PHI is part of loop LOOP
391 and it belongs to basic block BB.
393 PHI is not if-convertible if:
394 - it has more than 2 arguments.
396 When the flag_tree_loop_if_convert_stores is not set, PHI is not
398 - a virtual PHI is immediately used in another PHI node,
399 - there is a virtual PHI in a BB other than the loop->header. */
402 if_convertible_phi_p (struct loop
*loop
, basic_block bb
, gimple phi
)
404 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
406 fprintf (dump_file
, "-------------------------\n");
407 print_gimple_stmt (dump_file
, phi
, 0, TDF_SLIM
);
410 if (bb
!= loop
->header
&& gimple_phi_num_args (phi
) != 2)
412 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
413 fprintf (dump_file
, "More than two phi node args.\n");
417 if (flag_tree_loop_if_convert_stores
)
420 /* When the flag_tree_loop_if_convert_stores is not set, check
421 that there are no memory writes in the branches of the loop to be
423 if (!is_gimple_reg (SSA_NAME_VAR (gimple_phi_result (phi
))))
425 imm_use_iterator imm_iter
;
428 if (bb
!= loop
->header
)
430 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
431 fprintf (dump_file
, "Virtual phi not on loop->header.\n");
435 FOR_EACH_IMM_USE_FAST (use_p
, imm_iter
, gimple_phi_result (phi
))
437 if (gimple_code (USE_STMT (use_p
)) == GIMPLE_PHI
)
439 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
440 fprintf (dump_file
, "Difficult to handle this virtual phi.\n");
449 /* Records the status of a data reference. This struct is attached to
450 each DR->aux field. */
453 /* -1 when not initialized, 0 when false, 1 when true. */
454 int written_at_least_once
;
456 /* -1 when not initialized, 0 when false, 1 when true. */
457 int rw_unconditionally
;
460 #define IFC_DR(DR) ((struct ifc_dr *) (DR)->aux)
461 #define DR_WRITTEN_AT_LEAST_ONCE(DR) (IFC_DR (DR)->written_at_least_once)
462 #define DR_RW_UNCONDITIONALLY(DR) (IFC_DR (DR)->rw_unconditionally)
464 /* Returns true when the memory references of STMT are read or written
465 unconditionally. In other words, this function returns true when
466 for every data reference A in STMT there exist other accesses to
467 the same data reference with predicates that add up (OR-up) to the
468 true predicate: this ensures that the data reference A is touched
469 (read or written) on every iteration of the if-converted loop. */
472 memrefs_read_or_written_unconditionally (gimple stmt
,
473 VEC (data_reference_p
, heap
) *drs
)
476 data_reference_p a
, b
;
477 tree ca
= bb_predicate (gimple_bb (stmt
));
479 for (i
= 0; VEC_iterate (data_reference_p
, drs
, i
, a
); i
++)
480 if (DR_STMT (a
) == stmt
)
483 int x
= DR_RW_UNCONDITIONALLY (a
);
491 for (j
= 0; VEC_iterate (data_reference_p
, drs
, j
, b
); j
++)
492 if (DR_STMT (b
) != stmt
493 && same_data_refs (a
, b
))
495 tree cb
= bb_predicate (gimple_bb (DR_STMT (b
)));
497 if (DR_RW_UNCONDITIONALLY (b
) == 1
498 || is_true_predicate (cb
)
499 || is_true_predicate (ca
= fold_or_predicates (EXPR_LOCATION (cb
),
502 DR_RW_UNCONDITIONALLY (a
) = 1;
503 DR_RW_UNCONDITIONALLY (b
) = 1;
511 DR_RW_UNCONDITIONALLY (a
) = 0;
519 /* Returns true when the memory references of STMT are unconditionally
520 written. In other words, this function returns true when for every
521 data reference A written in STMT, there exist other writes to the
522 same data reference with predicates that add up (OR-up) to the true
523 predicate: this ensures that the data reference A is written on
524 every iteration of the if-converted loop. */
527 write_memrefs_written_at_least_once (gimple stmt
,
528 VEC (data_reference_p
, heap
) *drs
)
531 data_reference_p a
, b
;
532 tree ca
= bb_predicate (gimple_bb (stmt
));
534 for (i
= 0; VEC_iterate (data_reference_p
, drs
, i
, a
); i
++)
535 if (DR_STMT (a
) == stmt
539 int x
= DR_WRITTEN_AT_LEAST_ONCE (a
);
547 for (j
= 0; VEC_iterate (data_reference_p
, drs
, j
, b
); j
++)
548 if (DR_STMT (b
) != stmt
550 && same_data_refs_base_objects (a
, b
))
552 tree cb
= bb_predicate (gimple_bb (DR_STMT (b
)));
554 if (DR_WRITTEN_AT_LEAST_ONCE (b
) == 1
555 || is_true_predicate (cb
)
556 || is_true_predicate (ca
= fold_or_predicates (EXPR_LOCATION (cb
),
559 DR_WRITTEN_AT_LEAST_ONCE (a
) = 1;
560 DR_WRITTEN_AT_LEAST_ONCE (b
) = 1;
568 DR_WRITTEN_AT_LEAST_ONCE (a
) = 0;
576 /* Return true when the memory references of STMT won't trap in the
577 if-converted code. There are two things that we have to check for:
579 - writes to memory occur to writable memory: if-conversion of
580 memory writes transforms the conditional memory writes into
581 unconditional writes, i.e. "if (cond) A[i] = foo" is transformed
582 into "A[i] = cond ? foo : A[i]", and as the write to memory may not
583 be executed at all in the original code, it may be a readonly
584 memory. To check that A is not const-qualified, we check that
585 there exists at least an unconditional write to A in the current
588 - reads or writes to memory are valid memory accesses for every
589 iteration. To check that the memory accesses are correctly formed
590 and that we are allowed to read and write in these locations, we
591 check that the memory accesses to be if-converted occur at every
592 iteration unconditionally. */
595 ifcvt_memrefs_wont_trap (gimple stmt
, VEC (data_reference_p
, heap
) *refs
)
597 return write_memrefs_written_at_least_once (stmt
, refs
)
598 && memrefs_read_or_written_unconditionally (stmt
, refs
);
601 /* Wrapper around gimple_could_trap_p refined for the needs of the
602 if-conversion. Try to prove that the memory accesses of STMT could
603 not trap in the innermost loop containing STMT. */
606 ifcvt_could_trap_p (gimple stmt
, VEC (data_reference_p
, heap
) *refs
)
608 if (gimple_vuse (stmt
)
609 && !gimple_could_trap_p_1 (stmt
, false, false)
610 && ifcvt_memrefs_wont_trap (stmt
, refs
))
613 return gimple_could_trap_p (stmt
);
616 /* Return true when STMT is if-convertible.
618 GIMPLE_ASSIGN statement is not if-convertible if,
621 - LHS is not var decl. */
624 if_convertible_gimple_assign_stmt_p (gimple stmt
,
625 VEC (data_reference_p
, heap
) *refs
)
627 tree lhs
= gimple_assign_lhs (stmt
);
630 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
632 fprintf (dump_file
, "-------------------------\n");
633 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
636 if (!is_gimple_reg_type (TREE_TYPE (lhs
)))
639 /* Some of these constrains might be too conservative. */
640 if (stmt_ends_bb_p (stmt
)
641 || gimple_has_volatile_ops (stmt
)
642 || (TREE_CODE (lhs
) == SSA_NAME
643 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
644 || gimple_has_side_effects (stmt
))
646 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
647 fprintf (dump_file
, "stmt not suitable for ifcvt\n");
651 if (flag_tree_loop_if_convert_stores
)
653 if (ifcvt_could_trap_p (stmt
, refs
))
655 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
656 fprintf (dump_file
, "tree could trap...\n");
662 if (gimple_assign_rhs_could_trap_p (stmt
))
664 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
665 fprintf (dump_file
, "tree could trap...\n");
669 bb
= gimple_bb (stmt
);
671 if (TREE_CODE (lhs
) != SSA_NAME
672 && bb
!= bb
->loop_father
->header
673 && !bb_with_exit_edge_p (bb
->loop_father
, bb
))
675 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
677 fprintf (dump_file
, "LHS is not var\n");
678 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
686 /* Return true when STMT is if-convertible.
688 A statement is if-convertible if:
689 - it is an if-convertible GIMPLE_ASSGIN,
690 - it is a GIMPLE_LABEL or a GIMPLE_COND. */
693 if_convertible_stmt_p (gimple stmt
, VEC (data_reference_p
, heap
) *refs
)
695 switch (gimple_code (stmt
))
703 return if_convertible_gimple_assign_stmt_p (stmt
, refs
);
706 /* Don't know what to do with 'em so don't do anything. */
707 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
709 fprintf (dump_file
, "don't know what to do\n");
710 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
719 /* Return true when BB is if-convertible. This routine does not check
720 basic block's statements and phis.
722 A basic block is not if-convertible if:
723 - it is non-empty and it is after the exit block (in BFS order),
724 - it is after the exit block but before the latch,
725 - its edges are not normal.
727 EXIT_BB is the basic block containing the exit of the LOOP. BB is
731 if_convertible_bb_p (struct loop
*loop
, basic_block bb
, basic_block exit_bb
)
736 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
737 fprintf (dump_file
, "----------[%d]-------------\n", bb
->index
);
739 if (EDGE_COUNT (bb
->preds
) > 2
740 || EDGE_COUNT (bb
->succs
) > 2)
745 if (bb
!= loop
->latch
)
747 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
748 fprintf (dump_file
, "basic block after exit bb but before latch\n");
751 else if (!empty_block_p (bb
))
753 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
754 fprintf (dump_file
, "non empty basic block after exit bb\n");
757 else if (bb
== loop
->latch
759 && !dominated_by_p (CDI_DOMINATORS
, bb
, exit_bb
))
761 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
762 fprintf (dump_file
, "latch is not dominated by exit_block\n");
767 /* Be less adventurous and handle only normal edges. */
768 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
770 (EDGE_ABNORMAL_CALL
| EDGE_EH
| EDGE_ABNORMAL
| EDGE_IRREDUCIBLE_LOOP
))
772 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
773 fprintf (dump_file
, "Difficult to handle edges\n");
780 /* Return true when all predecessor blocks of BB are visited. The
781 VISITED bitmap keeps track of the visited blocks. */
784 pred_blocks_visited_p (basic_block bb
, bitmap
*visited
)
788 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
789 if (!bitmap_bit_p (*visited
, e
->src
->index
))
795 /* Get body of a LOOP in suitable order for if-conversion. It is
796 caller's responsibility to deallocate basic block list.
797 If-conversion suitable order is, breadth first sort (BFS) order
798 with an additional constraint: select a block only if all its
799 predecessors are already selected. */
802 get_loop_body_in_if_conv_order (const struct loop
*loop
)
804 basic_block
*blocks
, *blocks_in_bfs_order
;
807 unsigned int index
= 0;
808 unsigned int visited_count
= 0;
810 gcc_assert (loop
->num_nodes
);
811 gcc_assert (loop
->latch
!= EXIT_BLOCK_PTR
);
813 blocks
= XCNEWVEC (basic_block
, loop
->num_nodes
);
814 visited
= BITMAP_ALLOC (NULL
);
816 blocks_in_bfs_order
= get_loop_body_in_bfs_order (loop
);
819 while (index
< loop
->num_nodes
)
821 bb
= blocks_in_bfs_order
[index
];
823 if (bb
->flags
& BB_IRREDUCIBLE_LOOP
)
825 free (blocks_in_bfs_order
);
826 BITMAP_FREE (visited
);
831 if (!bitmap_bit_p (visited
, bb
->index
))
833 if (pred_blocks_visited_p (bb
, &visited
)
834 || bb
== loop
->header
)
836 /* This block is now visited. */
837 bitmap_set_bit (visited
, bb
->index
);
838 blocks
[visited_count
++] = bb
;
844 if (index
== loop
->num_nodes
845 && visited_count
!= loop
->num_nodes
)
849 free (blocks_in_bfs_order
);
850 BITMAP_FREE (visited
);
854 /* Returns true when the analysis of the predicates for all the basic
855 blocks in LOOP succeeded.
857 predicate_bbs first allocates the predicates of the basic blocks.
858 These fields are then initialized with the tree expressions
859 representing the predicates under which a basic block is executed
860 in the LOOP. As the loop->header is executed at each iteration, it
861 has the "true" predicate. Other statements executed under a
862 condition are predicated with that condition, for example
869 S1 will be predicated with "x", and
870 S2 will be predicated with "!x". */
873 predicate_bbs (loop_p loop
)
877 for (i
= 0; i
< loop
->num_nodes
; i
++)
878 init_bb_predicate (ifc_bbs
[i
]);
880 for (i
= 0; i
< loop
->num_nodes
; i
++)
882 basic_block bb
= ifc_bbs
[i
];
884 gimple_stmt_iterator itr
;
886 /* The loop latch is always executed and has no extra conditions
887 to be processed: skip it. */
888 if (bb
== loop
->latch
)
890 reset_bb_predicate (loop
->latch
);
894 cond
= bb_predicate (bb
);
896 && bb
!= loop
->header
)
900 cond
= force_gimple_operand (cond
, &stmts
, true, NULL_TREE
);
901 add_bb_predicate_gimplified_stmts (bb
, stmts
);
904 for (itr
= gsi_start_bb (bb
); !gsi_end_p (itr
); gsi_next (&itr
))
906 gimple stmt
= gsi_stmt (itr
);
908 switch (gimple_code (stmt
))
919 edge true_edge
, false_edge
;
920 location_t loc
= gimple_location (stmt
);
921 tree c
= fold_build2_loc (loc
, gimple_cond_code (stmt
),
923 gimple_cond_lhs (stmt
),
924 gimple_cond_rhs (stmt
));
926 /* Add new condition into destination's predicate list. */
927 extract_true_false_edges_from_block (gimple_bb (stmt
),
928 &true_edge
, &false_edge
);
930 /* If C is true, then TRUE_EDGE is taken. */
931 add_to_dst_predicate_list (loop
, true_edge
, cond
, c
);
933 /* If C is false, then FALSE_EDGE is taken. */
934 c2
= invert_truthvalue_loc (loc
, unshare_expr (c
));
935 add_to_dst_predicate_list (loop
, false_edge
, cond
, c2
);
942 /* Not handled yet in if-conversion. */
947 /* If current bb has only one successor, then consider it as an
948 unconditional goto. */
949 if (single_succ_p (bb
))
951 basic_block bb_n
= single_succ (bb
);
953 /* The successor bb inherits the predicate of its
954 predecessor. If there is no predicate in the predecessor
955 bb, then consider the successor bb as always executed. */
956 if (cond
== NULL_TREE
)
957 cond
= boolean_true_node
;
959 add_to_predicate_list (bb_n
, cond
);
963 /* The loop header is always executed. */
964 reset_bb_predicate (loop
->header
);
965 gcc_assert (bb_predicate_gimplified_stmts (loop
->header
) == NULL
966 && bb_predicate_gimplified_stmts (loop
->latch
) == NULL
);
971 /* Return true when LOOP is if-convertible. This is a helper function
972 for if_convertible_loop_p. REFS and DDRS are initialized and freed
973 in if_convertible_loop_p. */
976 if_convertible_loop_p_1 (struct loop
*loop
,
977 VEC (data_reference_p
, heap
) **refs
,
978 VEC (ddr_p
, heap
) **ddrs
)
982 basic_block exit_bb
= NULL
;
984 /* Don't if-convert the loop when the data dependences cannot be
985 computed: the loop won't be vectorized in that case. */
986 res
= compute_data_dependences_for_loop (loop
, true, refs
, ddrs
);
990 calculate_dominance_info (CDI_DOMINATORS
);
992 /* Allow statements that can be handled during if-conversion. */
993 ifc_bbs
= get_loop_body_in_if_conv_order (loop
);
996 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
997 fprintf (dump_file
, "Irreducible loop\n");
1001 for (i
= 0; i
< loop
->num_nodes
; i
++)
1003 basic_block bb
= ifc_bbs
[i
];
1005 if (!if_convertible_bb_p (loop
, bb
, exit_bb
))
1008 if (bb_with_exit_edge_p (loop
, bb
))
1012 res
= predicate_bbs (loop
);
1016 if (flag_tree_loop_if_convert_stores
)
1018 data_reference_p dr
;
1020 for (i
= 0; VEC_iterate (data_reference_p
, *refs
, i
, dr
); i
++)
1022 dr
->aux
= XNEW (struct ifc_dr
);
1023 DR_WRITTEN_AT_LEAST_ONCE (dr
) = -1;
1024 DR_RW_UNCONDITIONALLY (dr
) = -1;
1028 for (i
= 0; i
< loop
->num_nodes
; i
++)
1030 basic_block bb
= ifc_bbs
[i
];
1031 gimple_stmt_iterator itr
;
1033 for (itr
= gsi_start_phis (bb
); !gsi_end_p (itr
); gsi_next (&itr
))
1034 if (!if_convertible_phi_p (loop
, bb
, gsi_stmt (itr
)))
1037 /* Check the if-convertibility of statements in predicated BBs. */
1038 if (is_predicated (bb
))
1039 for (itr
= gsi_start_bb (bb
); !gsi_end_p (itr
); gsi_next (&itr
))
1040 if (!if_convertible_stmt_p (gsi_stmt (itr
), *refs
))
1045 fprintf (dump_file
, "Applying if-conversion\n");
1050 /* Return true when LOOP is if-convertible.
1051 LOOP is if-convertible if:
1053 - it has two or more basic blocks,
1054 - it has only one exit,
1055 - loop header is not the exit edge,
1056 - if its basic blocks and phi nodes are if convertible. */
1059 if_convertible_loop_p (struct loop
*loop
)
1064 VEC (data_reference_p
, heap
) *refs
;
1065 VEC (ddr_p
, heap
) *ddrs
;
1067 /* Handle only innermost loop. */
1068 if (!loop
|| loop
->inner
)
1070 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1071 fprintf (dump_file
, "not innermost loop\n");
1075 /* If only one block, no need for if-conversion. */
1076 if (loop
->num_nodes
<= 2)
1078 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1079 fprintf (dump_file
, "less than 2 basic blocks\n");
1083 /* More than one loop exit is too much to handle. */
1084 if (!single_exit (loop
))
1086 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1087 fprintf (dump_file
, "multiple exits\n");
1091 /* If one of the loop header's edge is an exit edge then do not
1092 apply if-conversion. */
1093 FOR_EACH_EDGE (e
, ei
, loop
->header
->succs
)
1094 if (loop_exit_edge_p (loop
, e
))
1097 refs
= VEC_alloc (data_reference_p
, heap
, 5);
1098 ddrs
= VEC_alloc (ddr_p
, heap
, 25);
1099 res
= if_convertible_loop_p_1 (loop
, &refs
, &ddrs
);
1101 if (flag_tree_loop_if_convert_stores
)
1103 data_reference_p dr
;
1106 for (i
= 0; VEC_iterate (data_reference_p
, refs
, i
, dr
); i
++)
1110 free_data_refs (refs
);
1111 free_dependence_relations (ddrs
);
1115 /* Basic block BB has two predecessors. Using predecessor's bb
1116 predicate, set an appropriate condition COND for the PHI node
1117 replacement. Return the true block whose phi arguments are
1118 selected when cond is true. LOOP is the loop containing the
1119 if-converted region, GSI is the place to insert the code for the
1123 find_phi_replacement_condition (struct loop
*loop
,
1124 basic_block bb
, tree
*cond
,
1125 gimple_stmt_iterator
*gsi
)
1127 edge first_edge
, second_edge
;
1130 gcc_assert (EDGE_COUNT (bb
->preds
) == 2);
1131 first_edge
= EDGE_PRED (bb
, 0);
1132 second_edge
= EDGE_PRED (bb
, 1);
1134 /* Use condition based on following criteria:
1140 S2 is preferred over S1. Make 'b' first_bb and use its condition.
1142 2) Do not make loop header first_bb.
1145 S1: x = !(c == d)? a : b;
1148 S22: x = t1 ? b : a;
1150 S3: x = (c == d) ? b : a;
1152 S3 is preferred over S1 and S2*, Make 'b' first_bb and use
1155 4) If pred B is dominated by pred A then use pred B's condition.
1158 /* Select condition that is not TRUTH_NOT_EXPR. */
1159 tmp_cond
= bb_predicate (first_edge
->src
);
1160 gcc_assert (tmp_cond
);
1162 if (TREE_CODE (tmp_cond
) == TRUTH_NOT_EXPR
)
1166 tmp_edge
= first_edge
;
1167 first_edge
= second_edge
;
1168 second_edge
= tmp_edge
;
1171 /* Check if FIRST_BB is loop header or not and make sure that
1172 FIRST_BB does not dominate SECOND_BB. */
1173 if (first_edge
->src
== loop
->header
1174 || dominated_by_p (CDI_DOMINATORS
,
1175 second_edge
->src
, first_edge
->src
))
1177 *cond
= bb_predicate (second_edge
->src
);
1179 if (TREE_CODE (*cond
) == TRUTH_NOT_EXPR
)
1180 *cond
= invert_truthvalue (*cond
);
1182 /* Select non loop header bb. */
1183 first_edge
= second_edge
;
1186 *cond
= bb_predicate (first_edge
->src
);
1188 /* Gimplify the condition: the vectorizer prefers to have gimple
1189 values as conditions. Various targets use different means to
1190 communicate conditions in vector compare operations. Using a
1191 gimple value allows the compiler to emit vector compare and
1192 select RTL without exposing compare's result. */
1193 *cond
= force_gimple_operand_gsi (gsi
, unshare_expr (*cond
),
1195 true, GSI_SAME_STMT
);
1196 if (!is_gimple_reg (*cond
) && !is_gimple_condexpr (*cond
))
1197 *cond
= ifc_temp_var (TREE_TYPE (*cond
), unshare_expr (*cond
), gsi
);
1201 return first_edge
->src
;
1204 /* Replace a scalar PHI node with a COND_EXPR using COND as condition.
1205 This routine does not handle PHI nodes with more than two
1209 S1: A = PHI <x1(1), x2(5)
1211 S2: A = cond ? x1 : x2;
1213 The generated code is inserted at GSI that points to the top of
1214 basic block's statement list. When COND is true, phi arg from
1215 TRUE_BB is selected. */
1218 predicate_scalar_phi (gimple phi
, tree cond
,
1219 basic_block true_bb
,
1220 gimple_stmt_iterator
*gsi
)
1226 gcc_assert (gimple_code (phi
) == GIMPLE_PHI
1227 && gimple_phi_num_args (phi
) == 2);
1229 res
= gimple_phi_result (phi
);
1230 /* Do not handle virtual phi nodes. */
1231 if (!is_gimple_reg (SSA_NAME_VAR (res
)))
1234 bb
= gimple_bb (phi
);
1236 arg
= degenerate_phi_result (phi
);
1242 /* Use condition that is not TRUTH_NOT_EXPR in conditional modify expr. */
1243 if (EDGE_PRED (bb
, 1)->src
== true_bb
)
1245 arg_0
= gimple_phi_arg_def (phi
, 1);
1246 arg_1
= gimple_phi_arg_def (phi
, 0);
1250 arg_0
= gimple_phi_arg_def (phi
, 0);
1251 arg_1
= gimple_phi_arg_def (phi
, 1);
1254 /* Build new RHS using selected condition and arguments. */
1255 rhs
= build3 (COND_EXPR
, TREE_TYPE (res
),
1256 unshare_expr (cond
), arg_0
, arg_1
);
1259 new_stmt
= gimple_build_assign (res
, rhs
);
1260 SSA_NAME_DEF_STMT (gimple_phi_result (phi
)) = new_stmt
;
1261 gsi_insert_before (gsi
, new_stmt
, GSI_SAME_STMT
);
1262 update_stmt (new_stmt
);
1264 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1266 fprintf (dump_file
, "new phi replacement stmt\n");
1267 print_gimple_stmt (dump_file
, new_stmt
, 0, TDF_SLIM
);
1271 /* Replaces in LOOP all the scalar phi nodes other than those in the
1272 LOOP->header block with conditional modify expressions. */
1275 predicate_all_scalar_phis (struct loop
*loop
)
1278 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
1281 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
1284 tree cond
= NULL_TREE
;
1285 gimple_stmt_iterator gsi
, phi_gsi
;
1286 basic_block true_bb
= NULL
;
1289 if (bb
== loop
->header
)
1292 phi_gsi
= gsi_start_phis (bb
);
1293 if (gsi_end_p (phi_gsi
))
1296 /* BB has two predecessors. Using predecessor's aux field, set
1297 appropriate condition for the PHI node replacement. */
1298 gsi
= gsi_after_labels (bb
);
1299 true_bb
= find_phi_replacement_condition (loop
, bb
, &cond
, &gsi
);
1301 while (!gsi_end_p (phi_gsi
))
1303 phi
= gsi_stmt (phi_gsi
);
1304 predicate_scalar_phi (phi
, cond
, true_bb
, &gsi
);
1305 release_phi_node (phi
);
1306 gsi_next (&phi_gsi
);
1309 set_phi_nodes (bb
, NULL
);
1313 /* Insert in each basic block of LOOP the statements produced by the
1314 gimplification of the predicates. */
1317 insert_gimplified_predicates (loop_p loop
)
1321 for (i
= 0; i
< loop
->num_nodes
; i
++)
1323 basic_block bb
= ifc_bbs
[i
];
1326 if (!is_predicated (bb
))
1328 /* Do not insert statements for a basic block that is not
1329 predicated. Also make sure that the predicate of the
1330 basic block is set to true. */
1331 reset_bb_predicate (bb
);
1335 stmts
= bb_predicate_gimplified_stmts (bb
);
1338 if (flag_tree_loop_if_convert_stores
)
1340 /* Insert the predicate of the BB just after the label,
1341 as the if-conversion of memory writes will use this
1343 gimple_stmt_iterator gsi
= gsi_after_labels (bb
);
1344 gsi_insert_seq_before (&gsi
, stmts
, GSI_SAME_STMT
);
1348 /* Insert the predicate of the BB at the end of the BB
1349 as this would reduce the register pressure: the only
1350 use of this predicate will be in successor BBs. */
1351 gimple_stmt_iterator gsi
= gsi_last_bb (bb
);
1354 || stmt_ends_bb_p (gsi_stmt (gsi
)))
1355 gsi_insert_seq_before (&gsi
, stmts
, GSI_SAME_STMT
);
1357 gsi_insert_seq_after (&gsi
, stmts
, GSI_SAME_STMT
);
1360 /* Once the sequence is code generated, set it to NULL. */
1361 set_bb_predicate_gimplified_stmts (bb
, NULL
);
1366 /* Predicate each write to memory in LOOP.
1368 This function transforms control flow constructs containing memory
1371 | for (i = 0; i < N; i++)
1375 into the following form that does not contain control flow:
1377 | for (i = 0; i < N; i++)
1378 | A[i] = cond ? expr : A[i];
1380 The original CFG looks like this:
1387 | if (i < N) goto bb_5 else goto bb_2
1391 | cond = some_computation;
1392 | if (cond) goto bb_3 else goto bb_4
1404 insert_gimplified_predicates inserts the computation of the COND
1405 expression at the beginning of the destination basic block:
1412 | if (i < N) goto bb_5 else goto bb_2
1416 | cond = some_computation;
1417 | if (cond) goto bb_3 else goto bb_4
1421 | cond = some_computation;
1430 predicate_mem_writes is then predicating the memory write as follows:
1437 | if (i < N) goto bb_5 else goto bb_2
1441 | if (cond) goto bb_3 else goto bb_4
1445 | cond = some_computation;
1446 | A[i] = cond ? expr : A[i];
1454 and finally combine_blocks removes the basic block boundaries making
1455 the loop vectorizable:
1459 | if (i < N) goto bb_5 else goto bb_1
1463 | cond = some_computation;
1464 | A[i] = cond ? expr : A[i];
1465 | if (i < N) goto bb_5 else goto bb_4
1474 predicate_mem_writes (loop_p loop
)
1476 unsigned int i
, orig_loop_num_nodes
= loop
->num_nodes
;
1478 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
1480 gimple_stmt_iterator gsi
;
1481 basic_block bb
= ifc_bbs
[i
];
1482 tree cond
= bb_predicate (bb
);
1485 if (is_true_predicate (cond
))
1488 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1489 if ((stmt
= gsi_stmt (gsi
))
1490 && gimple_assign_single_p (stmt
)
1491 && gimple_vdef (stmt
))
1493 tree lhs
= gimple_assign_lhs (stmt
);
1494 tree rhs
= gimple_assign_rhs1 (stmt
);
1495 tree type
= TREE_TYPE (lhs
);
1497 lhs
= ifc_temp_var (type
, unshare_expr (lhs
), &gsi
);
1498 rhs
= ifc_temp_var (type
, unshare_expr (rhs
), &gsi
);
1499 rhs
= build3 (COND_EXPR
, type
, unshare_expr (cond
), rhs
, lhs
);
1500 gimple_assign_set_rhs1 (stmt
, ifc_temp_var (type
, rhs
, &gsi
));
1506 /* Remove all GIMPLE_CONDs and GIMPLE_LABELs of all the basic blocks
1507 other than the exit and latch of the LOOP. Also resets the
1508 GIMPLE_DEBUG information. */
1511 remove_conditions_and_labels (loop_p loop
)
1513 gimple_stmt_iterator gsi
;
1516 for (i
= 0; i
< loop
->num_nodes
; i
++)
1518 basic_block bb
= ifc_bbs
[i
];
1520 if (bb_with_exit_edge_p (loop
, bb
)
1521 || bb
== loop
->latch
)
1524 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); )
1525 switch (gimple_code (gsi_stmt (gsi
)))
1529 gsi_remove (&gsi
, true);
1533 /* ??? Should there be conditional GIMPLE_DEBUG_BINDs? */
1534 if (gimple_debug_bind_p (gsi_stmt (gsi
)))
1536 gimple_debug_bind_reset_value (gsi_stmt (gsi
));
1537 update_stmt (gsi_stmt (gsi
));
1548 /* Combine all the basic blocks from LOOP into one or two super basic
1549 blocks. Replace PHI nodes with conditional modify expressions. */
1552 combine_blocks (struct loop
*loop
)
1554 basic_block bb
, exit_bb
, merge_target_bb
;
1555 unsigned int orig_loop_num_nodes
= loop
->num_nodes
;
1560 remove_conditions_and_labels (loop
);
1561 insert_gimplified_predicates (loop
);
1562 predicate_all_scalar_phis (loop
);
1564 if (flag_tree_loop_if_convert_stores
)
1565 predicate_mem_writes (loop
);
1567 /* Merge basic blocks: first remove all the edges in the loop,
1568 except for those from the exit block. */
1570 for (i
= 0; i
< orig_loop_num_nodes
; i
++)
1573 if (bb_with_exit_edge_p (loop
, bb
))
1579 gcc_assert (exit_bb
!= loop
->latch
);
1581 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
1585 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
));)
1587 if (e
->src
== exit_bb
)
1594 if (exit_bb
!= NULL
)
1596 if (exit_bb
!= loop
->header
)
1598 /* Connect this node to loop header. */
1599 make_edge (loop
->header
, exit_bb
, EDGE_FALLTHRU
);
1600 set_immediate_dominator (CDI_DOMINATORS
, exit_bb
, loop
->header
);
1603 /* Redirect non-exit edges to loop->latch. */
1604 FOR_EACH_EDGE (e
, ei
, exit_bb
->succs
)
1606 if (!loop_exit_edge_p (loop
, e
))
1607 redirect_edge_and_branch (e
, loop
->latch
);
1609 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, exit_bb
);
1613 /* If the loop does not have an exit, reconnect header and latch. */
1614 make_edge (loop
->header
, loop
->latch
, EDGE_FALLTHRU
);
1615 set_immediate_dominator (CDI_DOMINATORS
, loop
->latch
, loop
->header
);
1618 merge_target_bb
= loop
->header
;
1619 for (i
= 1; i
< orig_loop_num_nodes
; i
++)
1621 gimple_stmt_iterator gsi
;
1622 gimple_stmt_iterator last
;
1626 if (bb
== exit_bb
|| bb
== loop
->latch
)
1629 /* Make stmts member of loop->header. */
1630 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1631 gimple_set_bb (gsi_stmt (gsi
), merge_target_bb
);
1633 /* Update stmt list. */
1634 last
= gsi_last_bb (merge_target_bb
);
1635 gsi_insert_seq_after (&last
, bb_seq (bb
), GSI_NEW_STMT
);
1636 set_bb_seq (bb
, NULL
);
1638 delete_basic_block (bb
);
1641 /* If possible, merge loop header to the block with the exit edge.
1642 This reduces the number of basic blocks to two, to please the
1643 vectorizer that handles only loops with two nodes. */
1645 && exit_bb
!= loop
->header
1646 && can_merge_blocks_p (loop
->header
, exit_bb
))
1647 merge_blocks (loop
->header
, exit_bb
);
1650 /* If-convert LOOP when it is legal. For the moment this pass has no
1651 profitability analysis. Returns true when something changed. */
1654 tree_if_conversion (struct loop
*loop
)
1656 bool changed
= false;
1659 if (!if_convertible_loop_p (loop
)
1660 || !dbg_cnt (if_conversion_tree
))
1663 /* Now all statements are if-convertible. Combine all the basic
1664 blocks into one huge basic block doing the if-conversion
1666 combine_blocks (loop
);
1668 if (flag_tree_loop_if_convert_stores
)
1669 mark_sym_for_renaming (gimple_vop (cfun
));
1678 for (i
= 0; i
< loop
->num_nodes
; i
++)
1679 free_bb_predicate (ifc_bbs
[i
]);
1688 /* Tree if-conversion pass management. */
1691 main_tree_if_conversion (void)
1695 bool changed
= false;
1698 if (number_of_loops () <= 1)
1701 FOR_EACH_LOOP (li
, loop
, 0)
1702 changed
|= tree_if_conversion (loop
);
1705 todo
|= TODO_cleanup_cfg
;
1707 if (changed
&& flag_tree_loop_if_convert_stores
)
1708 todo
|= TODO_update_ssa_only_virtuals
;
1713 /* Returns true when the if-conversion pass is enabled. */
1716 gate_tree_if_conversion (void)
1718 return ((flag_tree_vectorize
&& flag_tree_loop_if_convert
!= 0)
1719 || flag_tree_loop_if_convert
== 1
1720 || flag_tree_loop_if_convert_stores
== 1);
1723 struct gimple_opt_pass pass_if_conversion
=
1728 gate_tree_if_conversion
, /* gate */
1729 main_tree_if_conversion
, /* execute */
1732 0, /* static_pass_number */
1733 TV_NONE
, /* tv_id */
1734 PROP_cfg
| PROP_ssa
, /* properties_required */
1735 0, /* properties_provided */
1736 0, /* properties_destroyed */
1737 0, /* todo_flags_start */
1738 TODO_dump_func
| TODO_verify_stmts
| TODO_verify_flow
1739 /* todo_flags_finish */