1 /* Single entry single exit control flow regions.
2 Copyright (C) 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Jan Sjodin <jan.sjodin@amd.com> and
5 Sebastian Pop <sebastian.pop@amd.com>.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
25 #include "coretypes.h"
30 #include "basic-block.h"
31 #include "diagnostic.h"
32 #include "tree-flow.h"
34 #include "tree-dump.h"
37 #include "tree-chrec.h"
38 #include "tree-data-ref.h"
39 #include "tree-scalar-evolution.h"
40 #include "tree-pass.h"
42 #include "value-prof.h"
43 #include "pointer-set.h"
47 /* Print to stderr the element ELT. */
50 debug_rename_elt (rename_map_elt elt
)
52 fprintf (stderr
, "(");
53 print_generic_expr (stderr
, elt
->old_name
, 0);
54 fprintf (stderr
, ", ");
55 print_generic_expr (stderr
, elt
->expr
, 0);
56 fprintf (stderr
, ")\n");
59 /* Helper function for debug_rename_map. */
62 debug_rename_map_1 (void **slot
, void *s ATTRIBUTE_UNUSED
)
64 struct rename_map_elt_s
*entry
= (struct rename_map_elt_s
*) *slot
;
65 debug_rename_elt (entry
);
69 /* Print to stderr all the elements of MAP. */
72 debug_rename_map (htab_t map
)
74 htab_traverse (map
, debug_rename_map_1
, NULL
);
77 /* Computes a hash function for database element ELT. */
80 rename_map_elt_info (const void *elt
)
82 return SSA_NAME_VERSION (((const struct rename_map_elt_s
*) elt
)->old_name
);
85 /* Compares database elements E1 and E2. */
88 eq_rename_map_elts (const void *e1
, const void *e2
)
90 const struct rename_map_elt_s
*elt1
= (const struct rename_map_elt_s
*) e1
;
91 const struct rename_map_elt_s
*elt2
= (const struct rename_map_elt_s
*) e2
;
93 return (elt1
->old_name
== elt2
->old_name
);
98 /* Print to stderr the element ELT. */
101 debug_ivtype_elt (ivtype_map_elt elt
)
103 fprintf (stderr
, "(%s, ", elt
->cloog_iv
);
104 print_generic_expr (stderr
, elt
->type
, 0);
105 fprintf (stderr
, ")\n");
108 /* Helper function for debug_ivtype_map. */
111 debug_ivtype_map_1 (void **slot
, void *s ATTRIBUTE_UNUSED
)
113 struct ivtype_map_elt_s
*entry
= (struct ivtype_map_elt_s
*) *slot
;
114 debug_ivtype_elt (entry
);
118 /* Print to stderr all the elements of MAP. */
121 debug_ivtype_map (htab_t map
)
123 htab_traverse (map
, debug_ivtype_map_1
, NULL
);
126 /* Computes a hash function for database element ELT. */
129 ivtype_map_elt_info (const void *elt
)
131 return htab_hash_pointer (((const struct ivtype_map_elt_s
*) elt
)->cloog_iv
);
134 /* Compares database elements E1 and E2. */
137 eq_ivtype_map_elts (const void *e1
, const void *e2
)
139 const struct ivtype_map_elt_s
*elt1
= (const struct ivtype_map_elt_s
*) e1
;
140 const struct ivtype_map_elt_s
*elt2
= (const struct ivtype_map_elt_s
*) e2
;
142 return (elt1
->cloog_iv
== elt2
->cloog_iv
);
147 /* Record LOOP as occuring in REGION. */
150 sese_record_loop (sese region
, loop_p loop
)
152 if (sese_contains_loop (region
, loop
))
155 bitmap_set_bit (SESE_LOOPS (region
), loop
->num
);
156 VEC_safe_push (loop_p
, heap
, SESE_LOOP_NEST (region
), loop
);
159 /* Build the loop nests contained in REGION. Returns true when the
160 operation was successful. */
163 build_sese_loop_nests (sese region
)
167 struct loop
*loop0
, *loop1
;
170 if (bb_in_sese_p (bb
, region
))
172 struct loop
*loop
= bb
->loop_father
;
174 /* Only add loops if they are completely contained in the SCoP. */
175 if (loop
->header
== bb
176 && bb_in_sese_p (loop
->latch
, region
))
177 sese_record_loop (region
, loop
);
180 /* Make sure that the loops in the SESE_LOOP_NEST are ordered. It
181 can be the case that an inner loop is inserted before an outer
182 loop. To avoid this, semi-sort once. */
183 for (i
= 0; VEC_iterate (loop_p
, SESE_LOOP_NEST (region
), i
, loop0
); i
++)
185 if (VEC_length (loop_p
, SESE_LOOP_NEST (region
)) == i
+ 1)
188 loop1
= VEC_index (loop_p
, SESE_LOOP_NEST (region
), i
+ 1);
189 if (loop0
->num
> loop1
->num
)
191 VEC_replace (loop_p
, SESE_LOOP_NEST (region
), i
, loop1
);
192 VEC_replace (loop_p
, SESE_LOOP_NEST (region
), i
+ 1, loop0
);
197 /* For a USE in BB, if BB is outside REGION, mark the USE in the
201 sese_build_liveouts_use (sese region
, bitmap liveouts
, basic_block bb
,
207 if (TREE_CODE (use
) != SSA_NAME
)
210 ver
= SSA_NAME_VERSION (use
);
211 def_bb
= gimple_bb (SSA_NAME_DEF_STMT (use
));
214 || !bb_in_sese_p (def_bb
, region
)
215 || bb_in_sese_p (bb
, region
))
218 bitmap_set_bit (liveouts
, ver
);
221 /* Marks for rewrite all the SSA_NAMES defined in REGION and that are
222 used in BB that is outside of the REGION. */
225 sese_build_liveouts_bb (sese region
, bitmap liveouts
, basic_block bb
)
227 gimple_stmt_iterator bsi
;
233 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
234 for (bsi
= gsi_start_phis (e
->dest
); !gsi_end_p (bsi
); gsi_next (&bsi
))
235 sese_build_liveouts_use (region
, liveouts
, bb
,
236 PHI_ARG_DEF_FROM_EDGE (gsi_stmt (bsi
), e
));
238 for (bsi
= gsi_start_bb (bb
); !gsi_end_p (bsi
); gsi_next (&bsi
))
240 gimple stmt
= gsi_stmt (bsi
);
242 if (is_gimple_debug (stmt
))
245 FOR_EACH_SSA_USE_OPERAND (use_p
, stmt
, iter
, SSA_OP_ALL_USES
)
246 sese_build_liveouts_use (region
, liveouts
, bb
, USE_FROM_PTR (use_p
));
250 /* For a USE in BB, return true if BB is outside REGION and it's not
251 in the LIVEOUTS set. */
254 sese_bad_liveouts_use (sese region
, bitmap liveouts
, basic_block bb
,
260 if (TREE_CODE (use
) != SSA_NAME
)
263 ver
= SSA_NAME_VERSION (use
);
265 /* If it's in liveouts, the variable will get a new PHI node, and
266 the debug use will be properly adjusted. */
267 if (bitmap_bit_p (liveouts
, ver
))
270 def_bb
= gimple_bb (SSA_NAME_DEF_STMT (use
));
273 || !bb_in_sese_p (def_bb
, region
)
274 || bb_in_sese_p (bb
, region
))
280 /* Reset debug stmts that reference SSA_NAMES defined in REGION that
281 are not marked as liveouts. */
284 sese_reset_debug_liveouts_bb (sese region
, bitmap liveouts
, basic_block bb
)
286 gimple_stmt_iterator bsi
;
290 for (bsi
= gsi_start_bb (bb
); !gsi_end_p (bsi
); gsi_next (&bsi
))
292 gimple stmt
= gsi_stmt (bsi
);
294 if (!is_gimple_debug (stmt
))
297 FOR_EACH_SSA_USE_OPERAND (use_p
, stmt
, iter
, SSA_OP_ALL_USES
)
298 if (sese_bad_liveouts_use (region
, liveouts
, bb
,
299 USE_FROM_PTR (use_p
)))
301 gimple_debug_bind_reset_value (stmt
);
308 /* Build the LIVEOUTS of REGION: the set of variables defined inside
309 and used outside the REGION. */
312 sese_build_liveouts (sese region
, bitmap liveouts
)
317 sese_build_liveouts_bb (region
, liveouts
, bb
);
318 if (MAY_HAVE_DEBUG_INSNS
)
320 sese_reset_debug_liveouts_bb (region
, liveouts
, bb
);
323 /* Builds a new SESE region from edges ENTRY and EXIT. */
326 new_sese (edge entry
, edge exit
)
328 sese region
= XNEW (struct sese_s
);
330 SESE_ENTRY (region
) = entry
;
331 SESE_EXIT (region
) = exit
;
332 SESE_LOOPS (region
) = BITMAP_ALLOC (NULL
);
333 SESE_LOOP_NEST (region
) = VEC_alloc (loop_p
, heap
, 3);
334 SESE_ADD_PARAMS (region
) = true;
335 SESE_PARAMS (region
) = VEC_alloc (tree
, heap
, 3);
340 /* Deletes REGION. */
343 free_sese (sese region
)
345 if (SESE_LOOPS (region
))
346 SESE_LOOPS (region
) = BITMAP_ALLOC (NULL
);
348 VEC_free (tree
, heap
, SESE_PARAMS (region
));
349 VEC_free (loop_p
, heap
, SESE_LOOP_NEST (region
));
354 /* Add exit phis for USE on EXIT. */
357 sese_add_exit_phis_edge (basic_block exit
, tree use
, edge false_e
, edge true_e
)
359 gimple phi
= create_phi_node (use
, exit
);
361 create_new_def_for (gimple_phi_result (phi
), phi
,
362 gimple_phi_result_ptr (phi
));
363 add_phi_arg (phi
, use
, false_e
, UNKNOWN_LOCATION
);
364 add_phi_arg (phi
, use
, true_e
, UNKNOWN_LOCATION
);
367 /* Insert in the block BB phi nodes for variables defined in REGION
368 and used outside the REGION. The code generation moves REGION in
369 the else clause of an "if (1)" and generates code in the then
370 clause that is at this point empty:
379 sese_insert_phis_for_liveouts (sese region
, basic_block bb
,
380 edge false_e
, edge true_e
)
384 bitmap liveouts
= BITMAP_ALLOC (NULL
);
386 update_ssa (TODO_update_ssa
);
388 sese_build_liveouts (region
, liveouts
);
389 EXECUTE_IF_SET_IN_BITMAP (liveouts
, 0, i
, bi
)
390 sese_add_exit_phis_edge (bb
, ssa_name (i
), false_e
, true_e
);
391 BITMAP_FREE (liveouts
);
393 update_ssa (TODO_update_ssa
);
396 /* Get the definition of NAME before the SESE. Keep track of the
397 basic blocks that have been VISITED in a bitmap. */
400 get_vdef_before_sese (sese region
, tree name
, sbitmap visited
)
403 gimple stmt
= SSA_NAME_DEF_STMT (name
);
404 basic_block def_bb
= gimple_bb (stmt
);
406 if (!def_bb
|| !bb_in_sese_p (def_bb
, region
))
409 if (TEST_BIT (visited
, def_bb
->index
))
412 SET_BIT (visited
, def_bb
->index
);
414 switch (gimple_code (stmt
))
417 for (i
= 0; i
< gimple_phi_num_args (stmt
); i
++)
419 tree arg
= gimple_phi_arg_def (stmt
, i
);
422 if (gimple_bb (SSA_NAME_DEF_STMT (arg
))
423 && def_bb
->index
== gimple_bb (SSA_NAME_DEF_STMT (arg
))->index
)
426 res
= get_vdef_before_sese (region
, arg
, visited
);
435 use_operand_p use_p
= gimple_vuse_op (stmt
);
436 tree use
= USE_FROM_PTR (use_p
);
438 if (def_bb
->index
== gimple_bb (SSA_NAME_DEF_STMT (use
))->index
)
439 RESET_BIT (visited
, def_bb
->index
);
441 return get_vdef_before_sese (region
, use
, visited
);
449 /* Adjust a virtual phi node PHI that is placed at the end of the
450 generated code for SCOP:
453 | generated code from REGION;
457 The FALSE_E edge comes from the original code, TRUE_E edge comes
458 from the code generated for the SCOP. */
461 sese_adjust_vphi (sese region
, gimple phi
, edge true_e
)
465 gcc_assert (gimple_phi_num_args (phi
) == 2);
467 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
468 if (gimple_phi_arg_edge (phi
, i
) == true_e
)
470 tree true_arg
, false_arg
, before_scop_arg
;
473 true_arg
= gimple_phi_arg_def (phi
, i
);
474 if (!SSA_NAME_IS_DEFAULT_DEF (true_arg
))
477 false_arg
= gimple_phi_arg_def (phi
, i
== 0 ? 1 : 0);
478 if (SSA_NAME_IS_DEFAULT_DEF (false_arg
))
481 visited
= sbitmap_alloc (last_basic_block
);
482 sbitmap_zero (visited
);
483 before_scop_arg
= get_vdef_before_sese (region
, false_arg
, visited
);
484 gcc_assert (before_scop_arg
!= NULL_TREE
);
485 SET_PHI_ARG_DEF (phi
, i
, before_scop_arg
);
486 sbitmap_free (visited
);
490 /* Returns the expression associated to OLD_NAME in MAP. */
493 get_rename (htab_t map
, tree old_name
)
495 struct rename_map_elt_s tmp
;
498 gcc_assert (TREE_CODE (old_name
) == SSA_NAME
);
499 tmp
.old_name
= old_name
;
500 slot
= htab_find_slot (map
, &tmp
, NO_INSERT
);
503 return ((rename_map_elt
) *slot
)->expr
;
508 /* Register in MAP the rename tuple (OLD_NAME, EXPR). */
511 set_rename (htab_t map
, tree old_name
, tree expr
)
513 struct rename_map_elt_s tmp
;
516 if (old_name
== expr
)
519 tmp
.old_name
= old_name
;
520 slot
= htab_find_slot (map
, &tmp
, INSERT
);
528 *slot
= new_rename_map_elt (old_name
, expr
);
531 /* Renames the expression T following the tuples (OLD_NAME, EXPR) in
532 the rename map M. Returns the expression T after renaming. */
535 rename_variables_in_expr (htab_t m
, tree t
)
540 if (TREE_CODE (t
) == SSA_NAME
)
541 return get_rename (m
, t
);
543 switch (TREE_CODE_LENGTH (TREE_CODE (t
)))
546 TREE_OPERAND (t
, 2) = rename_variables_in_expr (m
, TREE_OPERAND (t
, 2));
549 TREE_OPERAND (t
, 1) = rename_variables_in_expr (m
, TREE_OPERAND (t
, 1));
552 TREE_OPERAND (t
, 0) = rename_variables_in_expr (m
, TREE_OPERAND (t
, 0));
559 /* Renames all the loop->nb_iterations expressions following the
560 tuples (OLD_NAME, EXPR) in RENAME_MAP. */
563 rename_nb_iterations (htab_t rename_map
)
568 FOR_EACH_LOOP (li
, loop
, 0)
569 loop
->nb_iterations
= rename_variables_in_expr (rename_map
,
570 loop
->nb_iterations
);
573 /* Renames all the parameters of SESE following the tuples (OLD_NAME,
574 EXPR) in RENAME_MAP. */
577 rename_sese_parameters (htab_t rename_map
, sese region
)
582 for (i
= 0; VEC_iterate (tree
, SESE_PARAMS (region
), i
, p
); i
++)
583 VEC_replace (tree
, SESE_PARAMS (region
), i
,
584 rename_variables_in_expr (rename_map
, p
));
587 /* Adjusts the phi nodes in the block BB for variables defined in
588 SCOP_REGION and used outside the SCOP_REGION. The code generation
589 moves SCOP_REGION in the else clause of an "if (1)" and generates
590 code in the then clause:
593 | generated code from REGION;
597 To adjust the phi nodes after the condition, the RENAME_MAP is
601 sese_adjust_liveout_phis (sese region
, htab_t rename_map
, basic_block bb
,
602 edge false_e
, edge true_e
)
604 gimple_stmt_iterator si
;
606 for (si
= gsi_start_phis (bb
); !gsi_end_p (si
); gsi_next (&si
))
609 unsigned false_i
= 0;
610 gimple phi
= gsi_stmt (si
);
611 tree res
= gimple_phi_result (phi
);
613 if (!is_gimple_reg (res
))
615 sese_adjust_vphi (region
, phi
, true_e
);
619 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
620 if (gimple_phi_arg_edge (phi
, i
) == false_e
)
626 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
627 if (gimple_phi_arg_edge (phi
, i
) == true_e
)
629 tree old_name
= gimple_phi_arg_def (phi
, false_i
);
630 tree expr
= get_rename (rename_map
, old_name
);
633 gcc_assert (old_name
!= expr
);
635 if (TREE_CODE (expr
) != SSA_NAME
636 && is_gimple_reg (old_name
))
638 tree type
= TREE_TYPE (old_name
);
639 tree var
= create_tmp_var (type
, "var");
641 expr
= build2 (MODIFY_EXPR
, type
, var
, expr
);
642 expr
= force_gimple_operand (expr
, &stmts
, true, NULL
);
643 gsi_insert_seq_on_edge_immediate (true_e
, stmts
);
646 SET_PHI_ARG_DEF (phi
, i
, expr
);
647 set_rename (rename_map
, old_name
, res
);
652 /* Rename the SSA_NAMEs used in STMT and that appear in MAP. */
655 rename_variables_in_stmt (gimple stmt
, htab_t map
, gimple_stmt_iterator
*insert_gsi
)
660 FOR_EACH_SSA_USE_OPERAND (use_p
, stmt
, iter
, SSA_OP_ALL_USES
)
662 tree use
= USE_FROM_PTR (use_p
);
663 tree expr
, type_use
, type_expr
;
666 if (TREE_CODE (use
) != SSA_NAME
)
669 expr
= get_rename (map
, use
);
673 type_use
= TREE_TYPE (use
);
674 type_expr
= TREE_TYPE (expr
);
676 if (type_use
!= type_expr
677 || (TREE_CODE (expr
) != SSA_NAME
678 && is_gimple_reg (use
)))
682 if (is_gimple_debug (stmt
))
684 if (gimple_debug_bind_p (stmt
))
685 gimple_debug_bind_reset_value (stmt
);
692 var
= create_tmp_var (type_use
, "var");
694 if (type_use
!= type_expr
)
695 expr
= fold_convert (type_use
, expr
);
697 expr
= build2 (MODIFY_EXPR
, type_use
, var
, expr
);
698 expr
= force_gimple_operand (expr
, &stmts
, true, NULL
);
699 gsi_insert_seq_before (insert_gsi
, stmts
, GSI_SAME_STMT
);
702 replace_exp (use_p
, expr
);
708 /* Returns true if NAME is a parameter of SESE. */
711 is_parameter (sese region
, tree name
)
716 for (i
= 0; VEC_iterate (tree
, SESE_PARAMS (region
), i
, p
); i
++)
723 /* Returns true if NAME is an induction variable. */
728 return gimple_code (SSA_NAME_DEF_STMT (name
)) == GIMPLE_PHI
;
731 static void expand_scalar_variables_stmt (gimple
, basic_block
, sese
,
732 htab_t
, gimple_stmt_iterator
*);
734 expand_scalar_variables_expr (tree
, tree
, enum tree_code
, tree
, basic_block
,
735 sese
, htab_t
, gimple_stmt_iterator
*);
738 expand_scalar_variables_call (gimple stmt
, basic_block bb
, sese region
,
739 htab_t map
, gimple_stmt_iterator
*gsi
)
741 int i
, nargs
= gimple_call_num_args (stmt
);
742 VEC (tree
, gc
) *args
= VEC_alloc (tree
, gc
, nargs
);
743 tree fn_type
= TREE_TYPE (gimple_call_fn (stmt
));
744 tree fn
= gimple_call_fndecl (stmt
);
745 tree call_expr
, var
, lhs
;
748 for (i
= 0; i
< nargs
; i
++)
750 tree arg
= gimple_call_arg (stmt
, i
);
751 tree t
= TREE_TYPE (arg
);
753 var
= create_tmp_var (t
, "var");
754 arg
= expand_scalar_variables_expr (t
, arg
, TREE_CODE (arg
), NULL
,
755 bb
, region
, map
, gsi
);
756 arg
= build2 (MODIFY_EXPR
, t
, var
, arg
);
757 arg
= force_gimple_operand_gsi (gsi
, arg
, true, NULL
,
758 true, GSI_SAME_STMT
);
759 VEC_quick_push (tree
, args
, arg
);
762 lhs
= gimple_call_lhs (stmt
);
763 var
= create_tmp_var (TREE_TYPE (lhs
), "var");
764 call_expr
= build_call_vec (fn_type
, fn
, args
);
765 call
= gimple_build_call_from_tree (call_expr
);
766 var
= make_ssa_name (var
, call
);
767 gimple_call_set_lhs (call
, var
);
768 gsi_insert_before (gsi
, call
, GSI_SAME_STMT
);
773 /* Copies at GSI all the scalar computations on which the ssa_name OP0
774 depends on in the SESE: these are all the scalar variables used in
775 the definition of OP0, that are defined outside BB and still in the
776 SESE, i.e. not a parameter of the SESE. The expression that is
777 returned contains only induction variables from the generated code:
778 MAP contains the induction variables renaming mapping, and is used
779 to translate the names of induction variables. */
782 expand_scalar_variables_ssa_name (tree type
, tree op0
, basic_block bb
,
783 sese region
, htab_t map
,
784 gimple_stmt_iterator
*gsi
)
789 if (is_parameter (region
, op0
)
791 return fold_convert (type
, get_rename (map
, op0
));
793 def_stmt
= SSA_NAME_DEF_STMT (op0
);
795 /* Check whether we already have a rename for OP0. */
796 new_op
= get_rename (map
, op0
);
799 && gimple_bb (SSA_NAME_DEF_STMT (new_op
)) == bb
)
800 return fold_convert (type
, new_op
);
802 if (gimple_bb (def_stmt
) == bb
)
804 /* If the defining statement is in the basic block already
805 we do not need to create a new expression for it, we
806 only need to ensure its operands are expanded. */
807 expand_scalar_variables_stmt (def_stmt
, bb
, region
, map
, gsi
);
808 return fold_convert (type
, new_op
);
812 if (!gimple_bb (def_stmt
)
813 || !bb_in_sese_p (gimple_bb (def_stmt
), region
))
814 return fold_convert (type
, new_op
);
816 switch (gimple_code (def_stmt
))
820 tree var0
= gimple_assign_rhs1 (def_stmt
);
821 enum tree_code subcode
= gimple_assign_rhs_code (def_stmt
);
822 tree var1
= gimple_assign_rhs2 (def_stmt
);
823 tree type
= gimple_expr_type (def_stmt
);
825 return expand_scalar_variables_expr (type
, var0
, subcode
, var1
, bb
,
830 return expand_scalar_variables_call (def_stmt
, bb
, region
, map
, gsi
);
839 /* Copies at GSI all the scalar computations on which the expression
840 OP0 CODE OP1 depends on in the SESE: these are all the scalar
841 variables used in OP0 and OP1, defined outside BB and still defined
842 in the SESE, i.e. not a parameter of the SESE. The expression that
843 is returned contains only induction variables from the generated
844 code: MAP contains the induction variables renaming mapping, and is
845 used to translate the names of induction variables. */
848 expand_scalar_variables_expr (tree type
, tree op0
, enum tree_code code
,
849 tree op1
, basic_block bb
, sese region
,
850 htab_t map
, gimple_stmt_iterator
*gsi
)
852 if (TREE_CODE_CLASS (code
) == tcc_constant
853 || TREE_CODE_CLASS (code
) == tcc_declaration
)
856 /* For data references we have to duplicate also its memory
858 if (TREE_CODE_CLASS (code
) == tcc_reference
)
865 tree op
= TREE_OPERAND (op0
, 0);
866 tree res
= expand_scalar_variables_expr
867 (type
, op
, TREE_CODE (op
), NULL
, bb
, region
, map
, gsi
);
868 return build1 (code
, type
, res
);
873 tree old_name
= TREE_OPERAND (op0
, 0);
874 tree expr
= expand_scalar_variables_ssa_name
875 (type
, old_name
, bb
, region
, map
, gsi
);
877 if (TREE_CODE (expr
) != SSA_NAME
878 && is_gimple_reg (old_name
))
880 tree type
= TREE_TYPE (old_name
);
881 tree var
= create_tmp_var (type
, "var");
883 expr
= build2 (MODIFY_EXPR
, type
, var
, expr
);
884 expr
= force_gimple_operand_gsi (gsi
, expr
, true, NULL
,
885 true, GSI_SAME_STMT
);
888 return fold_build1 (code
, type
, expr
);
893 tree op00
= TREE_OPERAND (op0
, 0);
894 tree op01
= TREE_OPERAND (op0
, 1);
895 tree op02
= TREE_OPERAND (op0
, 2);
896 tree op03
= TREE_OPERAND (op0
, 3);
897 tree base
= expand_scalar_variables_expr
898 (TREE_TYPE (op00
), op00
, TREE_CODE (op00
), NULL
, bb
, region
,
900 tree subscript
= expand_scalar_variables_expr
901 (TREE_TYPE (op01
), op01
, TREE_CODE (op01
), NULL
, bb
, region
,
904 return build4 (ARRAY_REF
, type
, base
, subscript
, op02
, op03
);
911 /* The above cases should catch everything. */
916 if (TREE_CODE_CLASS (code
) == tcc_unary
)
918 tree op0_type
= TREE_TYPE (op0
);
919 enum tree_code op0_code
= TREE_CODE (op0
);
920 tree op0_expr
= expand_scalar_variables_expr (op0_type
, op0
, op0_code
,
921 NULL
, bb
, region
, map
, gsi
);
923 return fold_build1 (code
, type
, op0_expr
);
926 if (TREE_CODE_CLASS (code
) == tcc_binary
927 || TREE_CODE_CLASS (code
) == tcc_comparison
)
929 tree op0_type
= TREE_TYPE (op0
);
930 enum tree_code op0_code
= TREE_CODE (op0
);
931 tree op0_expr
= expand_scalar_variables_expr (op0_type
, op0
, op0_code
,
932 NULL
, bb
, region
, map
, gsi
);
933 tree op1_type
= TREE_TYPE (op1
);
934 enum tree_code op1_code
= TREE_CODE (op1
);
935 tree op1_expr
= expand_scalar_variables_expr (op1_type
, op1
, op1_code
,
936 NULL
, bb
, region
, map
, gsi
);
938 return fold_build2 (code
, type
, op0_expr
, op1_expr
);
941 if (code
== SSA_NAME
)
942 return expand_scalar_variables_ssa_name (type
, op0
, bb
, region
, map
, gsi
);
944 if (code
== ADDR_EXPR
)
946 tree op00
= TREE_OPERAND (op0
, 0);
948 if (handled_component_p (op00
)
949 && TREE_CODE (op00
) == ARRAY_REF
)
951 tree e
= expand_scalar_variables_expr (TREE_TYPE (op00
), op00
,
953 NULL
, bb
, region
, map
, gsi
);
954 return fold_build1 (code
, TREE_TYPE (op0
), e
);
964 /* Copies at the beginning of BB all the scalar computations on which
965 STMT depends on in the SESE: these are all the scalar variables used
966 in STMT, defined outside BB and still defined in the SESE, i.e. not a
967 parameter of the SESE. The expression that is returned contains
968 only induction variables from the generated code: MAP contains the
969 induction variables renaming mapping, and is used to translate the
970 names of induction variables. */
973 expand_scalar_variables_stmt (gimple stmt
, basic_block bb
, sese region
,
974 htab_t map
, gimple_stmt_iterator
*gsi
)
979 FOR_EACH_SSA_USE_OPERAND (use_p
, stmt
, iter
, SSA_OP_ALL_USES
)
981 tree use
= USE_FROM_PTR (use_p
);
982 tree type
= TREE_TYPE (use
);
983 enum tree_code code
= TREE_CODE (use
);
986 if (!is_gimple_reg (use
))
989 /* Don't expand USE if we already have a rename for it. */
990 use_expr
= get_rename (map
, use
);
994 use_expr
= expand_scalar_variables_expr (type
, use
, code
, NULL
, bb
,
996 use_expr
= fold_convert (type
, use_expr
);
1001 if (is_gimple_debug (stmt
))
1003 if (gimple_debug_bind_p (stmt
))
1004 gimple_debug_bind_reset_value (stmt
);
1011 if (TREE_CODE (use_expr
) != SSA_NAME
)
1013 tree var
= create_tmp_var (type
, "var");
1015 use_expr
= build2 (MODIFY_EXPR
, type
, var
, use_expr
);
1016 use_expr
= force_gimple_operand_gsi (gsi
, use_expr
, true, NULL
,
1017 true, GSI_SAME_STMT
);
1020 replace_exp (use_p
, use_expr
);
1026 /* Copies at the beginning of BB all the scalar computations on which
1027 BB depends on in the SESE: these are all the scalar variables used
1028 in BB, defined outside BB and still defined in the SESE, i.e. not a
1029 parameter of the SESE. The expression that is returned contains
1030 only induction variables from the generated code: MAP contains the
1031 induction variables renaming mapping, and is used to translate the
1032 names of induction variables. */
1035 expand_scalar_variables (basic_block bb
, sese region
, htab_t map
)
1037 gimple_stmt_iterator gsi
;
1039 for (gsi
= gsi_after_labels (bb
); !gsi_end_p (gsi
);)
1041 gimple stmt
= gsi_stmt (gsi
);
1042 expand_scalar_variables_stmt (stmt
, bb
, region
, map
, &gsi
);
1047 /* Rename all the SSA_NAMEs from block BB according to the MAP. */
1050 rename_variables (basic_block bb
, htab_t map
)
1052 gimple_stmt_iterator gsi
;
1053 gimple_stmt_iterator insert_gsi
= gsi_start_bb (bb
);
1055 for (gsi
= gsi_after_labels (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1056 rename_variables_in_stmt (gsi_stmt (gsi
), map
, &insert_gsi
);
1059 /* Remove condition from BB. */
1062 remove_condition (basic_block bb
)
1064 gimple last
= last_stmt (bb
);
1066 if (last
&& gimple_code (last
) == GIMPLE_COND
)
1068 gimple_stmt_iterator gsi
= gsi_last_bb (bb
);
1069 gsi_remove (&gsi
, true);
1073 /* Returns the first successor edge of BB with EDGE_TRUE_VALUE flag set. */
1076 get_true_edge_from_guard_bb (basic_block bb
)
1081 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1082 if (e
->flags
& EDGE_TRUE_VALUE
)
1089 /* Returns the first successor edge of BB with EDGE_TRUE_VALUE flag cleared. */
1092 get_false_edge_from_guard_bb (basic_block bb
)
1097 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1098 if (!(e
->flags
& EDGE_TRUE_VALUE
))
1105 /* Returns true when NAME is defined in LOOP. */
1108 name_defined_in_loop_p (tree name
, loop_p loop
)
1110 return !SSA_NAME_IS_DEFAULT_DEF (name
)
1111 && gimple_bb (SSA_NAME_DEF_STMT (name
))->loop_father
== loop
;
1114 /* Returns true when EXPR contains SSA_NAMEs defined in LOOP. */
1117 expr_defined_in_loop_p (tree expr
, loop_p loop
)
1119 switch (TREE_CODE_LENGTH (TREE_CODE (expr
)))
1122 return expr_defined_in_loop_p (TREE_OPERAND (expr
, 0), loop
)
1123 || expr_defined_in_loop_p (TREE_OPERAND (expr
, 1), loop
)
1124 || expr_defined_in_loop_p (TREE_OPERAND (expr
, 2), loop
);
1127 return expr_defined_in_loop_p (TREE_OPERAND (expr
, 0), loop
)
1128 || expr_defined_in_loop_p (TREE_OPERAND (expr
, 1), loop
);
1131 return expr_defined_in_loop_p (TREE_OPERAND (expr
, 0), loop
);
1134 return TREE_CODE (expr
) == SSA_NAME
1135 && name_defined_in_loop_p (expr
, loop
);
1142 /* Returns the gimple statement that uses NAME outside the loop it is
1143 defined in, returns NULL if there is no such loop close phi node.
1144 An invariant of the loop closed SSA form is that the only use of a
1145 variable, outside the loop it is defined in, is in the loop close
1146 phi node that just follows the loop. */
1149 alive_after_loop (tree name
)
1151 use_operand_p use_p
;
1152 imm_use_iterator imm_iter
;
1153 loop_p loop
= gimple_bb (SSA_NAME_DEF_STMT (name
))->loop_father
;
1155 FOR_EACH_IMM_USE_FAST (use_p
, imm_iter
, name
)
1157 gimple stmt
= USE_STMT (use_p
);
1159 if (gimple_code (stmt
) == GIMPLE_PHI
1160 && gimple_bb (stmt
)->loop_father
!= loop
)
1167 /* Return true if a close phi has not yet been inserted for the use of
1168 variable NAME on the single exit of LOOP. */
1171 close_phi_not_yet_inserted_p (loop_p loop
, tree name
)
1173 gimple_stmt_iterator psi
;
1174 basic_block bb
= single_exit (loop
)->dest
;
1176 for (psi
= gsi_start_phis (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
1177 if (gimple_phi_arg_def (gsi_stmt (psi
), 0) == name
)
1183 /* A structure for passing parameters to add_loop_exit_phis. */
1185 typedef struct alep
{
1187 VEC (rename_map_elt
, heap
) *new_renames
;
1190 /* Helper function for htab_traverse in insert_loop_close_phis. */
1193 add_loop_exit_phis (void **slot
, void *data
)
1195 struct rename_map_elt_s
*entry
;
1198 tree expr
, new_name
, old_name
;
1199 bool def_in_loop_p
, used_outside_p
, need_close_phi_p
;
1200 gimple old_close_phi
;
1202 if (!slot
|| !*slot
|| !data
)
1205 entry
= (struct rename_map_elt_s
*) *slot
;
1208 new_name
= expr
= entry
->expr
;
1209 old_name
= entry
->old_name
;
1211 def_in_loop_p
= expr_defined_in_loop_p (expr
, loop
);
1215 /* Remove the old rename from the map when the expression is defined
1216 in the loop that we're closing. */
1220 if (TREE_CODE (expr
) != SSA_NAME
)
1223 old_close_phi
= alive_after_loop (old_name
);
1224 used_outside_p
= (old_close_phi
!= NULL
);
1225 need_close_phi_p
= (used_outside_p
1226 && close_phi_not_yet_inserted_p (loop
, new_name
));
1228 /* Insert a loop close phi node. */
1229 if (need_close_phi_p
)
1231 basic_block bb
= single_exit (loop
)->dest
;
1232 gimple phi
= create_phi_node (new_name
, bb
);
1233 tree new_res
= create_new_def_for (gimple_phi_result (phi
), phi
,
1234 gimple_phi_result_ptr (phi
));
1236 add_phi_arg (phi
, new_name
, single_pred_edge (bb
), UNKNOWN_LOCATION
);
1237 VEC_safe_push (rename_map_elt
, heap
, a
->new_renames
,
1238 new_rename_map_elt (gimple_phi_result (old_close_phi
),
1245 /* Traverses MAP and removes from it all the tuples (OLD, NEW) where
1246 NEW is defined in LOOP. Inserts on the exit of LOOP the close phi
1247 node "RES = phi (NEW)" corresponding to "OLD_RES = phi (OLD)" in
1248 the original code. Inserts in MAP the tuple (OLD_RES, RES). */
1251 insert_loop_close_phis (htab_t map
, loop_p loop
)
1258 a
.new_renames
= VEC_alloc (rename_map_elt
, heap
, 3);
1259 update_ssa (TODO_update_ssa
);
1260 htab_traverse (map
, add_loop_exit_phis
, &a
);
1261 update_ssa (TODO_update_ssa
);
1263 for (i
= 0; VEC_iterate (rename_map_elt
, a
.new_renames
, i
, elt
); i
++)
1265 set_rename (map
, elt
->old_name
, elt
->expr
);
1269 VEC_free (rename_map_elt
, heap
, a
.new_renames
);
1272 /* Helper structure for htab_traverse in insert_guard_phis. */
1276 edge true_edge
, false_edge
;
1277 htab_t before_guard
;
1280 /* Return the default name that is before the guard. */
1283 default_before_guard (htab_t before_guard
, tree old_name
)
1285 tree res
= get_rename (before_guard
, old_name
);
1287 if (res
== old_name
)
1289 if (is_gimple_reg (res
))
1290 return fold_convert (TREE_TYPE (res
), integer_zero_node
);
1291 return gimple_default_def (cfun
, SSA_NAME_VAR (res
));
1297 /* Prepares EXPR to be a good phi argument when the phi result is
1298 RES. Insert needed statements on edge E. */
1301 convert_for_phi_arg (tree expr
, tree res
, edge e
)
1303 tree type
= TREE_TYPE (res
);
1305 if (TREE_TYPE (expr
) != type
)
1306 expr
= fold_convert (type
, expr
);
1308 if (TREE_CODE (expr
) != SSA_NAME
1309 && !is_gimple_min_invariant (expr
))
1311 tree var
= create_tmp_var (type
, "var");
1314 expr
= build2 (MODIFY_EXPR
, type
, var
, expr
);
1315 expr
= force_gimple_operand (expr
, &stmts
, true, NULL
);
1316 gsi_insert_seq_on_edge_immediate (e
, stmts
);
1322 /* Helper function for htab_traverse in insert_guard_phis. */
1325 add_guard_exit_phis (void **slot
, void *s
)
1327 struct rename_map_elt_s
*entry
= (struct rename_map_elt_s
*) *slot
;
1328 struct igp
*i
= (struct igp
*) s
;
1329 basic_block bb
= i
->bb
;
1330 edge true_edge
= i
->true_edge
;
1331 edge false_edge
= i
->false_edge
;
1332 tree res
= entry
->old_name
;
1333 tree name1
= entry
->expr
;
1334 tree name2
= default_before_guard (i
->before_guard
, res
);
1337 /* Nothing to be merged if the name before the guard is the same as
1342 name1
= convert_for_phi_arg (name1
, res
, true_edge
);
1343 name2
= convert_for_phi_arg (name2
, res
, false_edge
);
1345 phi
= create_phi_node (res
, bb
);
1346 res
= create_new_def_for (gimple_phi_result (phi
), phi
,
1347 gimple_phi_result_ptr (phi
));
1349 add_phi_arg (phi
, name1
, true_edge
, UNKNOWN_LOCATION
);
1350 add_phi_arg (phi
, name2
, false_edge
, UNKNOWN_LOCATION
);
1357 /* Iterate over RENAME_MAP and get tuples of the form (OLD, NAME1).
1358 If there is a correspondent tuple (OLD, NAME2) in BEFORE_GUARD,
1359 with NAME1 different than NAME2, then insert in BB the phi node:
1361 | RES = phi (NAME1 (on TRUE_EDGE), NAME2 (on FALSE_EDGE))"
1363 if there is no tuple for OLD in BEFORE_GUARD, insert
1365 | RES = phi (NAME1 (on TRUE_EDGE),
1366 | DEFAULT_DEFINITION of NAME1 (on FALSE_EDGE))".
1368 Finally register in RENAME_MAP the tuple (OLD, RES). */
1371 insert_guard_phis (basic_block bb
, edge true_edge
, edge false_edge
,
1372 htab_t before_guard
, htab_t rename_map
)
1376 i
.true_edge
= true_edge
;
1377 i
.false_edge
= false_edge
;
1378 i
.before_guard
= before_guard
;
1380 update_ssa (TODO_update_ssa
);
1381 htab_traverse (rename_map
, add_guard_exit_phis
, &i
);
1382 update_ssa (TODO_update_ssa
);
1385 /* Create a duplicate of the basic block BB. NOTE: This does not
1386 preserve SSA form. */
1389 graphite_copy_stmts_from_block (basic_block bb
, basic_block new_bb
, htab_t map
)
1391 gimple_stmt_iterator gsi
, gsi_tgt
;
1393 gsi_tgt
= gsi_start_bb (new_bb
);
1394 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1396 def_operand_p def_p
;
1397 ssa_op_iter op_iter
;
1398 gimple stmt
= gsi_stmt (gsi
);
1401 if (gimple_code (stmt
) == GIMPLE_LABEL
)
1404 /* Create a new copy of STMT and duplicate STMT's virtual
1406 copy
= gimple_copy (stmt
);
1407 gsi_insert_after (&gsi_tgt
, copy
, GSI_NEW_STMT
);
1408 mark_sym_for_renaming (gimple_vop (cfun
));
1410 maybe_duplicate_eh_stmt (copy
, stmt
);
1411 gimple_duplicate_stmt_histograms (cfun
, copy
, cfun
, stmt
);
1413 /* Create new names for all the definitions created by COPY and
1414 add replacement mappings for each new name. */
1415 FOR_EACH_SSA_DEF_OPERAND (def_p
, copy
, op_iter
, SSA_OP_ALL_DEFS
)
1417 tree old_name
= DEF_FROM_PTR (def_p
);
1418 tree new_name
= create_new_def_for (old_name
, copy
, def_p
);
1419 set_rename (map
, old_name
, new_name
);
1424 /* Copies BB and includes in the copied BB all the statements that can
1425 be reached following the use-def chains from the memory accesses,
1426 and returns the next edge following this new block. */
1429 copy_bb_and_scalar_dependences (basic_block bb
, sese region
,
1430 edge next_e
, htab_t map
)
1432 basic_block new_bb
= split_edge (next_e
);
1434 next_e
= single_succ_edge (new_bb
);
1435 graphite_copy_stmts_from_block (bb
, new_bb
, map
);
1436 remove_condition (new_bb
);
1437 remove_phi_nodes (new_bb
);
1438 expand_scalar_variables (new_bb
, region
, map
);
1439 rename_variables (new_bb
, map
);
1444 /* Returns the outermost loop in SCOP that contains BB. */
1447 outermost_loop_in_sese (sese region
, basic_block bb
)
1451 nest
= bb
->loop_father
;
1452 while (loop_outer (nest
)
1453 && loop_in_sese_p (loop_outer (nest
), region
))
1454 nest
= loop_outer (nest
);
1459 /* Sets the false region of an IF_REGION to REGION. */
1462 if_region_set_false_region (ifsese if_region
, sese region
)
1464 basic_block condition
= if_region_get_condition_block (if_region
);
1465 edge false_edge
= get_false_edge_from_guard_bb (condition
);
1466 basic_block dummy
= false_edge
->dest
;
1467 edge entry_region
= SESE_ENTRY (region
);
1468 edge exit_region
= SESE_EXIT (region
);
1469 basic_block before_region
= entry_region
->src
;
1470 basic_block last_in_region
= exit_region
->src
;
1471 void **slot
= htab_find_slot_with_hash (current_loops
->exits
, exit_region
,
1472 htab_hash_pointer (exit_region
),
1475 entry_region
->flags
= false_edge
->flags
;
1476 false_edge
->flags
= exit_region
->flags
;
1478 redirect_edge_pred (entry_region
, condition
);
1479 redirect_edge_pred (exit_region
, before_region
);
1480 redirect_edge_pred (false_edge
, last_in_region
);
1481 redirect_edge_succ (false_edge
, single_succ (dummy
));
1482 delete_basic_block (dummy
);
1484 exit_region
->flags
= EDGE_FALLTHRU
;
1485 recompute_all_dominators ();
1487 SESE_EXIT (region
) = false_edge
;
1489 if (if_region
->false_region
)
1490 free (if_region
->false_region
);
1491 if_region
->false_region
= region
;
1495 struct loop_exit
*loop_exit
= GGC_CNEW (struct loop_exit
);
1497 memcpy (loop_exit
, *((struct loop_exit
**) slot
), sizeof (struct loop_exit
));
1498 htab_clear_slot (current_loops
->exits
, slot
);
1500 slot
= htab_find_slot_with_hash (current_loops
->exits
, false_edge
,
1501 htab_hash_pointer (false_edge
),
1503 loop_exit
->e
= false_edge
;
1505 false_edge
->src
->loop_father
->exits
->next
= loop_exit
;
1509 /* Creates an IFSESE with CONDITION on edge ENTRY. */
1512 create_if_region_on_edge (edge entry
, tree condition
)
1516 sese sese_region
= XNEW (struct sese_s
);
1517 sese true_region
= XNEW (struct sese_s
);
1518 sese false_region
= XNEW (struct sese_s
);
1519 ifsese if_region
= XNEW (struct ifsese_s
);
1520 edge exit
= create_empty_if_region_on_edge (entry
, condition
);
1522 if_region
->region
= sese_region
;
1523 if_region
->region
->entry
= entry
;
1524 if_region
->region
->exit
= exit
;
1526 FOR_EACH_EDGE (e
, ei
, entry
->dest
->succs
)
1528 if (e
->flags
& EDGE_TRUE_VALUE
)
1530 true_region
->entry
= e
;
1531 true_region
->exit
= single_succ_edge (e
->dest
);
1532 if_region
->true_region
= true_region
;
1534 else if (e
->flags
& EDGE_FALSE_VALUE
)
1536 false_region
->entry
= e
;
1537 false_region
->exit
= single_succ_edge (e
->dest
);
1538 if_region
->false_region
= false_region
;
1545 /* Moves REGION in a condition expression:
1553 move_sese_in_condition (sese region
)
1555 basic_block pred_block
= split_edge (SESE_ENTRY (region
));
1558 SESE_ENTRY (region
) = single_succ_edge (pred_block
);
1559 if_region
= create_if_region_on_edge (single_pred_edge (pred_block
), integer_one_node
);
1560 if_region_set_false_region (if_region
, region
);
1565 /* Replaces the condition of the IF_REGION with CONDITION:
1573 set_ifsese_condition (ifsese if_region
, tree condition
)
1575 sese region
= if_region
->region
;
1576 edge entry
= region
->entry
;
1577 basic_block bb
= entry
->dest
;
1578 gimple last
= last_stmt (bb
);
1579 gimple_stmt_iterator gsi
= gsi_last_bb (bb
);
1582 gcc_assert (gimple_code (last
) == GIMPLE_COND
);
1584 gsi_remove (&gsi
, true);
1585 gsi
= gsi_last_bb (bb
);
1586 condition
= force_gimple_operand_gsi (&gsi
, condition
, true, NULL
,
1587 false, GSI_NEW_STMT
);
1588 cond_stmt
= gimple_build_cond_from_tree (condition
, NULL_TREE
, NULL_TREE
);
1589 gsi
= gsi_last_bb (bb
);
1590 gsi_insert_after (&gsi
, cond_stmt
, GSI_NEW_STMT
);
1593 /* Returns the scalar evolution of T in REGION. Every variable that
1594 is not defined in the REGION is considered a parameter. */
1597 scalar_evolution_in_region (sese region
, loop_p loop
, tree t
)
1600 struct loop
*def_loop
;
1601 basic_block before
= block_before_sese (region
);
1603 if (TREE_CODE (t
) != SSA_NAME
1604 || loop_in_sese_p (loop
, region
))
1605 return instantiate_scev (before
, loop
,
1606 analyze_scalar_evolution (loop
, t
));
1608 if (!defined_in_sese_p (t
, region
))
1611 def
= SSA_NAME_DEF_STMT (t
);
1612 def_loop
= loop_containing_stmt (def
);
1614 if (loop_in_sese_p (def_loop
, region
))
1616 t
= analyze_scalar_evolution (def_loop
, t
);
1617 def_loop
= superloop_at_depth (def_loop
, loop_depth (loop
) + 1);
1618 t
= compute_overall_effect_of_inner_loop (def_loop
, t
);
1622 return instantiate_scev (before
, loop
, t
);