1 /* Single entry single exit control flow regions.
2 Copyright (C) 2008-2013 Free Software Foundation, Inc.
3 Contributed by Jan Sjodin <jan.sjodin@amd.com> and
4 Sebastian Pop <sebastian.pop@amd.com>.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
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/>. */
24 #include "coretypes.h"
25 #include "tree-pretty-print.h"
26 #include "tree-flow.h"
28 #include "tree-chrec.h"
29 #include "tree-data-ref.h"
30 #include "tree-scalar-evolution.h"
31 #include "tree-pass.h"
32 #include "value-prof.h"
35 /* Print to stderr the element ELT. */
38 debug_rename_elt (rename_map_elt elt
)
40 fprintf (stderr
, "(");
41 print_generic_expr (stderr
, elt
->old_name
, 0);
42 fprintf (stderr
, ", ");
43 print_generic_expr (stderr
, elt
->expr
, 0);
44 fprintf (stderr
, ")\n");
47 /* Helper function for debug_rename_map. */
50 debug_rename_map_1 (void **slot
, void *s ATTRIBUTE_UNUSED
)
52 struct rename_map_elt_s
*entry
= (struct rename_map_elt_s
*) *slot
;
53 debug_rename_elt (entry
);
57 /* Print to stderr all the elements of RENAME_MAP. */
60 debug_rename_map (htab_t rename_map
)
62 htab_traverse (rename_map
, debug_rename_map_1
, NULL
);
65 /* Computes a hash function for database element ELT. */
68 rename_map_elt_info (const void *elt
)
70 return SSA_NAME_VERSION (((const struct rename_map_elt_s
*) elt
)->old_name
);
73 /* Compares database elements E1 and E2. */
76 eq_rename_map_elts (const void *e1
, const void *e2
)
78 const struct rename_map_elt_s
*elt1
= (const struct rename_map_elt_s
*) e1
;
79 const struct rename_map_elt_s
*elt2
= (const struct rename_map_elt_s
*) e2
;
81 return (elt1
->old_name
== elt2
->old_name
);
86 /* Record LOOP as occurring in REGION. */
89 sese_record_loop (sese region
, loop_p loop
)
91 if (sese_contains_loop (region
, loop
))
94 bitmap_set_bit (SESE_LOOPS (region
), loop
->num
);
95 SESE_LOOP_NEST (region
).safe_push (loop
);
98 /* Build the loop nests contained in REGION. Returns true when the
99 operation was successful. */
102 build_sese_loop_nests (sese region
)
106 struct loop
*loop0
, *loop1
;
109 if (bb_in_sese_p (bb
, region
))
111 struct loop
*loop
= bb
->loop_father
;
113 /* Only add loops if they are completely contained in the SCoP. */
114 if (loop
->header
== bb
115 && bb_in_sese_p (loop
->latch
, region
))
116 sese_record_loop (region
, loop
);
119 /* Make sure that the loops in the SESE_LOOP_NEST are ordered. It
120 can be the case that an inner loop is inserted before an outer
121 loop. To avoid this, semi-sort once. */
122 FOR_EACH_VEC_ELT (SESE_LOOP_NEST (region
), i
, loop0
)
124 if (SESE_LOOP_NEST (region
).length () == i
+ 1)
127 loop1
= SESE_LOOP_NEST (region
)[i
+ 1];
128 if (loop0
->num
> loop1
->num
)
130 SESE_LOOP_NEST (region
)[i
] = loop1
;
131 SESE_LOOP_NEST (region
)[i
+ 1] = loop0
;
136 /* For a USE in BB, if BB is outside REGION, mark the USE in the
140 sese_build_liveouts_use (sese region
, bitmap liveouts
, basic_block bb
,
146 if (TREE_CODE (use
) != SSA_NAME
)
149 ver
= SSA_NAME_VERSION (use
);
150 def_bb
= gimple_bb (SSA_NAME_DEF_STMT (use
));
153 || !bb_in_sese_p (def_bb
, region
)
154 || bb_in_sese_p (bb
, region
))
157 bitmap_set_bit (liveouts
, ver
);
160 /* Marks for rewrite all the SSA_NAMES defined in REGION and that are
161 used in BB that is outside of the REGION. */
164 sese_build_liveouts_bb (sese region
, bitmap liveouts
, basic_block bb
)
166 gimple_stmt_iterator bsi
;
172 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
173 for (bsi
= gsi_start_phis (e
->dest
); !gsi_end_p (bsi
); gsi_next (&bsi
))
174 sese_build_liveouts_use (region
, liveouts
, bb
,
175 PHI_ARG_DEF_FROM_EDGE (gsi_stmt (bsi
), e
));
177 for (bsi
= gsi_start_bb (bb
); !gsi_end_p (bsi
); gsi_next (&bsi
))
179 gimple stmt
= gsi_stmt (bsi
);
181 if (is_gimple_debug (stmt
))
184 FOR_EACH_SSA_USE_OPERAND (use_p
, stmt
, iter
, SSA_OP_ALL_USES
)
185 sese_build_liveouts_use (region
, liveouts
, bb
, USE_FROM_PTR (use_p
));
189 /* For a USE in BB, return true if BB is outside REGION and it's not
190 in the LIVEOUTS set. */
193 sese_bad_liveouts_use (sese region
, bitmap liveouts
, basic_block bb
,
199 if (TREE_CODE (use
) != SSA_NAME
)
202 ver
= SSA_NAME_VERSION (use
);
204 /* If it's in liveouts, the variable will get a new PHI node, and
205 the debug use will be properly adjusted. */
206 if (bitmap_bit_p (liveouts
, ver
))
209 def_bb
= gimple_bb (SSA_NAME_DEF_STMT (use
));
212 || !bb_in_sese_p (def_bb
, region
)
213 || bb_in_sese_p (bb
, region
))
219 /* Reset debug stmts that reference SSA_NAMES defined in REGION that
220 are not marked as liveouts. */
223 sese_reset_debug_liveouts_bb (sese region
, bitmap liveouts
, basic_block bb
)
225 gimple_stmt_iterator bsi
;
229 for (bsi
= gsi_start_bb (bb
); !gsi_end_p (bsi
); gsi_next (&bsi
))
231 gimple stmt
= gsi_stmt (bsi
);
233 if (!is_gimple_debug (stmt
))
236 FOR_EACH_SSA_USE_OPERAND (use_p
, stmt
, iter
, SSA_OP_ALL_USES
)
237 if (sese_bad_liveouts_use (region
, liveouts
, bb
,
238 USE_FROM_PTR (use_p
)))
240 gimple_debug_bind_reset_value (stmt
);
247 /* Build the LIVEOUTS of REGION: the set of variables defined inside
248 and used outside the REGION. */
251 sese_build_liveouts (sese region
, bitmap liveouts
)
256 sese_build_liveouts_bb (region
, liveouts
, bb
);
257 if (MAY_HAVE_DEBUG_STMTS
)
259 sese_reset_debug_liveouts_bb (region
, liveouts
, bb
);
262 /* Builds a new SESE region from edges ENTRY and EXIT. */
265 new_sese (edge entry
, edge exit
)
267 sese region
= XNEW (struct sese_s
);
269 SESE_ENTRY (region
) = entry
;
270 SESE_EXIT (region
) = exit
;
271 SESE_LOOPS (region
) = BITMAP_ALLOC (NULL
);
272 SESE_LOOP_NEST (region
).create (3);
273 SESE_ADD_PARAMS (region
) = true;
274 SESE_PARAMS (region
).create (3);
279 /* Deletes REGION. */
282 free_sese (sese region
)
284 if (SESE_LOOPS (region
))
285 SESE_LOOPS (region
) = BITMAP_ALLOC (NULL
);
287 SESE_PARAMS (region
).release ();
288 SESE_LOOP_NEST (region
).release ();
293 /* Add exit phis for USE on EXIT. */
296 sese_add_exit_phis_edge (basic_block exit
, tree use
, edge false_e
, edge true_e
)
298 gimple phi
= create_phi_node (NULL_TREE
, exit
);
299 create_new_def_for (use
, phi
, gimple_phi_result_ptr (phi
));
300 add_phi_arg (phi
, use
, false_e
, UNKNOWN_LOCATION
);
301 add_phi_arg (phi
, use
, true_e
, UNKNOWN_LOCATION
);
304 /* Insert in the block BB phi nodes for variables defined in REGION
305 and used outside the REGION. The code generation moves REGION in
306 the else clause of an "if (1)" and generates code in the then
307 clause that is at this point empty:
316 sese_insert_phis_for_liveouts (sese region
, basic_block bb
,
317 edge false_e
, edge true_e
)
321 bitmap liveouts
= BITMAP_ALLOC (NULL
);
323 update_ssa (TODO_update_ssa
);
325 sese_build_liveouts (region
, liveouts
);
326 EXECUTE_IF_SET_IN_BITMAP (liveouts
, 0, i
, bi
)
327 sese_add_exit_phis_edge (bb
, ssa_name (i
), false_e
, true_e
);
328 BITMAP_FREE (liveouts
);
330 update_ssa (TODO_update_ssa
);
333 /* Returns the first successor edge of BB with EDGE_TRUE_VALUE flag set. */
336 get_true_edge_from_guard_bb (basic_block bb
)
341 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
342 if (e
->flags
& EDGE_TRUE_VALUE
)
349 /* Returns the first successor edge of BB with EDGE_TRUE_VALUE flag cleared. */
352 get_false_edge_from_guard_bb (basic_block bb
)
357 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
358 if (!(e
->flags
& EDGE_TRUE_VALUE
))
365 /* Returns the expression associated to OLD_NAME in RENAME_MAP. */
368 get_rename (htab_t rename_map
, tree old_name
)
370 struct rename_map_elt_s tmp
;
373 gcc_assert (TREE_CODE (old_name
) == SSA_NAME
);
374 tmp
.old_name
= old_name
;
375 slot
= htab_find_slot (rename_map
, &tmp
, NO_INSERT
);
378 return ((rename_map_elt
) *slot
)->expr
;
383 /* Register in RENAME_MAP the rename tuple (OLD_NAME, EXPR). */
386 set_rename (htab_t rename_map
, tree old_name
, tree expr
)
388 struct rename_map_elt_s tmp
;
391 if (old_name
== expr
)
394 tmp
.old_name
= old_name
;
395 slot
= htab_find_slot (rename_map
, &tmp
, INSERT
);
402 *slot
= new_rename_map_elt (old_name
, expr
);
405 /* Renames the scalar uses of the statement COPY, using the
406 substitution map RENAME_MAP, inserting the gimplification code at
407 GSI_TGT, for the translation REGION, with the original copied
408 statement in LOOP, and using the induction variable renaming map
409 IV_MAP. Returns true when something has been renamed. GLOOG_ERROR
410 is set when the code generation cannot continue. */
413 rename_uses (gimple copy
, htab_t rename_map
, gimple_stmt_iterator
*gsi_tgt
,
414 sese region
, loop_p loop
, vec
<tree
> iv_map
,
419 bool changed
= false;
421 if (is_gimple_debug (copy
))
423 if (gimple_debug_bind_p (copy
))
424 gimple_debug_bind_reset_value (copy
);
425 else if (gimple_debug_source_bind_p (copy
))
433 FOR_EACH_SSA_USE_OPERAND (use_p
, copy
, op_iter
, SSA_OP_USE
)
435 tree old_name
= USE_FROM_PTR (use_p
);
439 if (TREE_CODE (old_name
) != SSA_NAME
440 || SSA_NAME_IS_DEFAULT_DEF (old_name
))
444 new_expr
= get_rename (rename_map
, old_name
);
447 tree type_old_name
= TREE_TYPE (old_name
);
448 tree type_new_expr
= TREE_TYPE (new_expr
);
450 if (type_old_name
!= type_new_expr
451 || TREE_CODE (new_expr
) != SSA_NAME
)
453 tree var
= create_tmp_var (type_old_name
, "var");
455 if (!useless_type_conversion_p (type_old_name
, type_new_expr
))
456 new_expr
= fold_convert (type_old_name
, new_expr
);
458 new_expr
= force_gimple_operand (new_expr
, &stmts
, true, var
);
459 gsi_insert_seq_before (gsi_tgt
, stmts
, GSI_SAME_STMT
);
462 replace_exp (use_p
, new_expr
);
466 scev
= scalar_evolution_in_region (region
, loop
, old_name
);
468 /* At this point we should know the exact scev for each
469 scalar SSA_NAME used in the scop: all the other scalar
470 SSA_NAMEs should have been translated out of SSA using
471 arrays with one element. */
472 if (chrec_contains_undetermined (scev
))
475 new_expr
= build_zero_cst (TREE_TYPE (old_name
));
478 new_expr
= chrec_apply_map (scev
, iv_map
);
480 /* The apply should produce an expression tree containing
481 the uses of the new induction variables. We should be
482 able to use new_expr instead of the old_name in the newly
483 generated loop nest. */
484 if (chrec_contains_undetermined (new_expr
)
485 || tree_contains_chrecs (new_expr
, NULL
))
488 new_expr
= build_zero_cst (TREE_TYPE (old_name
));
491 /* Replace the old_name with the new_expr. */
492 new_expr
= force_gimple_operand (unshare_expr (new_expr
), &stmts
,
495 gsi_insert_seq_before (gsi_tgt
, stmts
, GSI_SAME_STMT
);
496 replace_exp (use_p
, new_expr
);
498 if (TREE_CODE (new_expr
) == INTEGER_CST
499 && is_gimple_assign (copy
))
501 tree rhs
= gimple_assign_rhs1 (copy
);
503 if (TREE_CODE (rhs
) == ADDR_EXPR
)
504 recompute_tree_invariant_for_addr_expr (rhs
);
507 set_rename (rename_map
, old_name
, new_expr
);
513 /* Duplicates the statements of basic block BB into basic block NEW_BB
514 and compute the new induction variables according to the IV_MAP.
515 GLOOG_ERROR is set when the code generation cannot continue. */
518 graphite_copy_stmts_from_block (basic_block bb
, basic_block new_bb
,
520 vec
<tree
> iv_map
, sese region
,
523 gimple_stmt_iterator gsi
, gsi_tgt
;
524 loop_p loop
= bb
->loop_father
;
526 gsi_tgt
= gsi_start_bb (new_bb
);
527 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
531 gimple stmt
= gsi_stmt (gsi
);
535 /* Do not copy labels or conditions. */
536 if (gimple_code (stmt
) == GIMPLE_LABEL
537 || gimple_code (stmt
) == GIMPLE_COND
)
540 /* Do not copy induction variables. */
541 if (is_gimple_assign (stmt
)
542 && (lhs
= gimple_assign_lhs (stmt
))
543 && TREE_CODE (lhs
) == SSA_NAME
544 && is_gimple_reg (lhs
)
545 && scev_analyzable_p (lhs
, region
))
548 /* Create a new copy of STMT and duplicate STMT's virtual
550 copy
= gimple_copy (stmt
);
551 gsi_insert_after (&gsi_tgt
, copy
, GSI_NEW_STMT
);
553 maybe_duplicate_eh_stmt (copy
, stmt
);
554 gimple_duplicate_stmt_histograms (cfun
, copy
, cfun
, stmt
);
556 /* Create new names for all the definitions created by COPY and
557 add replacement mappings for each new name. */
558 FOR_EACH_SSA_DEF_OPERAND (def_p
, copy
, op_iter
, SSA_OP_ALL_DEFS
)
560 tree old_name
= DEF_FROM_PTR (def_p
);
561 tree new_name
= create_new_def_for (old_name
, copy
, def_p
);
562 set_rename (rename_map
, old_name
, new_name
);
565 if (rename_uses (copy
, rename_map
, &gsi_tgt
, region
, loop
, iv_map
,
568 gcc_assert (gsi_stmt (gsi_tgt
) == copy
);
569 fold_stmt_inplace (&gsi_tgt
);
576 /* Copies BB and includes in the copied BB all the statements that can
577 be reached following the use-def chains from the memory accesses,
578 and returns the next edge following this new block. GLOOG_ERROR is
579 set when the code generation cannot continue. */
582 copy_bb_and_scalar_dependences (basic_block bb
, sese region
,
583 edge next_e
, vec
<tree
> iv_map
,
586 basic_block new_bb
= split_edge (next_e
);
587 htab_t rename_map
= htab_create (10, rename_map_elt_info
,
588 eq_rename_map_elts
, free
);
590 next_e
= single_succ_edge (new_bb
);
591 graphite_copy_stmts_from_block (bb
, new_bb
, rename_map
, iv_map
, region
,
593 remove_phi_nodes (new_bb
);
594 htab_delete (rename_map
);
599 /* Returns the outermost loop in SCOP that contains BB. */
602 outermost_loop_in_sese (sese region
, basic_block bb
)
606 nest
= bb
->loop_father
;
607 while (loop_outer (nest
)
608 && loop_in_sese_p (loop_outer (nest
), region
))
609 nest
= loop_outer (nest
);
614 /* Sets the false region of an IF_REGION to REGION. */
617 if_region_set_false_region (ifsese if_region
, sese region
)
619 basic_block condition
= if_region_get_condition_block (if_region
);
620 edge false_edge
= get_false_edge_from_guard_bb (condition
);
621 basic_block dummy
= false_edge
->dest
;
622 edge entry_region
= SESE_ENTRY (region
);
623 edge exit_region
= SESE_EXIT (region
);
624 basic_block before_region
= entry_region
->src
;
625 basic_block last_in_region
= exit_region
->src
;
626 void **slot
= htab_find_slot_with_hash (current_loops
->exits
, exit_region
,
627 htab_hash_pointer (exit_region
),
630 entry_region
->flags
= false_edge
->flags
;
631 false_edge
->flags
= exit_region
->flags
;
633 redirect_edge_pred (entry_region
, condition
);
634 redirect_edge_pred (exit_region
, before_region
);
635 redirect_edge_pred (false_edge
, last_in_region
);
636 redirect_edge_succ (false_edge
, single_succ (dummy
));
637 delete_basic_block (dummy
);
639 exit_region
->flags
= EDGE_FALLTHRU
;
640 recompute_all_dominators ();
642 SESE_EXIT (region
) = false_edge
;
644 free (if_region
->false_region
);
645 if_region
->false_region
= region
;
649 struct loop_exit
*loop_exit
= ggc_alloc_cleared_loop_exit ();
651 memcpy (loop_exit
, *((struct loop_exit
**) slot
), sizeof (struct loop_exit
));
652 htab_clear_slot (current_loops
->exits
, slot
);
654 slot
= htab_find_slot_with_hash (current_loops
->exits
, false_edge
,
655 htab_hash_pointer (false_edge
),
657 loop_exit
->e
= false_edge
;
659 false_edge
->src
->loop_father
->exits
->next
= loop_exit
;
663 /* Creates an IFSESE with CONDITION on edge ENTRY. */
666 create_if_region_on_edge (edge entry
, tree condition
)
670 sese sese_region
= XNEW (struct sese_s
);
671 sese true_region
= XNEW (struct sese_s
);
672 sese false_region
= XNEW (struct sese_s
);
673 ifsese if_region
= XNEW (struct ifsese_s
);
674 edge exit
= create_empty_if_region_on_edge (entry
, condition
);
676 if_region
->region
= sese_region
;
677 if_region
->region
->entry
= entry
;
678 if_region
->region
->exit
= exit
;
680 FOR_EACH_EDGE (e
, ei
, entry
->dest
->succs
)
682 if (e
->flags
& EDGE_TRUE_VALUE
)
684 true_region
->entry
= e
;
685 true_region
->exit
= single_succ_edge (e
->dest
);
686 if_region
->true_region
= true_region
;
688 else if (e
->flags
& EDGE_FALSE_VALUE
)
690 false_region
->entry
= e
;
691 false_region
->exit
= single_succ_edge (e
->dest
);
692 if_region
->false_region
= false_region
;
699 /* Moves REGION in a condition expression:
707 move_sese_in_condition (sese region
)
709 basic_block pred_block
= split_edge (SESE_ENTRY (region
));
712 SESE_ENTRY (region
) = single_succ_edge (pred_block
);
713 if_region
= create_if_region_on_edge (single_pred_edge (pred_block
), integer_one_node
);
714 if_region_set_false_region (if_region
, region
);
719 /* Replaces the condition of the IF_REGION with CONDITION:
727 set_ifsese_condition (ifsese if_region
, tree condition
)
729 sese region
= if_region
->region
;
730 edge entry
= region
->entry
;
731 basic_block bb
= entry
->dest
;
732 gimple last
= last_stmt (bb
);
733 gimple_stmt_iterator gsi
= gsi_last_bb (bb
);
736 gcc_assert (gimple_code (last
) == GIMPLE_COND
);
738 gsi_remove (&gsi
, true);
739 gsi
= gsi_last_bb (bb
);
740 condition
= force_gimple_operand_gsi (&gsi
, condition
, true, NULL
,
741 false, GSI_NEW_STMT
);
742 cond_stmt
= gimple_build_cond_from_tree (condition
, NULL_TREE
, NULL_TREE
);
743 gsi
= gsi_last_bb (bb
);
744 gsi_insert_after (&gsi
, cond_stmt
, GSI_NEW_STMT
);
747 /* Returns the scalar evolution of T in REGION. Every variable that
748 is not defined in the REGION is considered a parameter. */
751 scalar_evolution_in_region (sese region
, loop_p loop
, tree t
)
754 struct loop
*def_loop
;
755 basic_block before
= block_before_sese (region
);
757 /* SCOP parameters. */
758 if (TREE_CODE (t
) == SSA_NAME
759 && !defined_in_sese_p (t
, region
))
762 if (TREE_CODE (t
) != SSA_NAME
763 || loop_in_sese_p (loop
, region
))
764 return instantiate_scev (before
, loop
,
765 analyze_scalar_evolution (loop
, t
));
767 def
= SSA_NAME_DEF_STMT (t
);
768 def_loop
= loop_containing_stmt (def
);
770 if (loop_in_sese_p (def_loop
, region
))
772 t
= analyze_scalar_evolution (def_loop
, t
);
773 def_loop
= superloop_at_depth (def_loop
, loop_depth (loop
) + 1);
774 t
= compute_overall_effect_of_inner_loop (def_loop
, t
);
778 return instantiate_scev (before
, loop
, t
);