1 /* Detection of Static Control Parts (SCoP) for Graphite.
2 Copyright (C) 2009-2014 Free Software Foundation, Inc.
3 Contributed by Sebastian Pop <sebastian.pop@amd.com> and
4 Tobias Grosser <grosser@fim.uni-passau.de>.
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/>. */
27 #include <isl/union_map.h>
28 #include <cloog/cloog.h>
29 #include <cloog/isl/domain.h>
33 #include "coretypes.h"
35 #include "basic-block.h"
36 #include "tree-ssa-alias.h"
37 #include "internal-fn.h"
38 #include "gimple-expr.h"
41 #include "gimple-iterator.h"
42 #include "gimple-ssa.h"
43 #include "tree-phinodes.h"
44 #include "ssa-iterators.h"
45 #include "tree-ssa-loop-manip.h"
46 #include "tree-ssa-loop-niter.h"
47 #include "tree-ssa-loop.h"
48 #include "tree-into-ssa.h"
51 #include "tree-chrec.h"
52 #include "tree-data-ref.h"
53 #include "tree-scalar-evolution.h"
54 #include "tree-pass.h"
56 #include "tree-ssa-propagate.h"
59 #include "graphite-poly.h"
60 #include "graphite-scop-detection.h"
62 /* Forward declarations. */
63 static void make_close_phi_nodes_unique (basic_block
);
65 /* The type of the analyzed basic block. */
67 typedef enum gbb_type
{
69 GBB_LOOP_SING_EXIT_HEADER
,
70 GBB_LOOP_MULT_EXIT_HEADER
,
77 /* Detect the type of BB. Loop headers are only marked, if they are
78 new. This means their loop_father is different to LAST_LOOP.
79 Otherwise they are treated like any other bb and their type can be
83 get_bb_type (basic_block bb
, struct loop
*last_loop
)
87 struct loop
*loop
= bb
->loop_father
;
89 /* Check, if we entry into a new loop. */
90 if (loop
!= last_loop
)
92 if (single_exit (loop
) != NULL
)
93 return GBB_LOOP_SING_EXIT_HEADER
;
94 else if (loop
->num
!= 0)
95 return GBB_LOOP_MULT_EXIT_HEADER
;
97 return GBB_COND_HEADER
;
100 dom
= get_dominated_by (CDI_DOMINATORS
, bb
);
101 nb_dom
= dom
.length ();
107 if (nb_dom
== 1 && single_succ_p (bb
))
110 return GBB_COND_HEADER
;
113 /* A SCoP detection region, defined using bbs as borders.
115 All control flow touching this region, comes in passing basic_block
116 ENTRY and leaves passing basic_block EXIT. By using bbs instead of
117 edges for the borders we are able to represent also regions that do
118 not have a single entry or exit edge.
120 But as they have a single entry basic_block and a single exit
121 basic_block, we are able to generate for every sd_region a single
129 / \ This region contains: {3, 4, 5, 6, 7, 8}
137 typedef struct sd_region_p
139 /* The entry bb dominates all bbs in the sd_region. It is part of
143 /* The exit bb postdominates all bbs in the sd_region, but is not
144 part of the region. */
150 /* Moves the scops from SOURCE to TARGET and clean up SOURCE. */
153 move_sd_regions (vec
<sd_region
> *source
, vec
<sd_region
> *target
)
158 FOR_EACH_VEC_ELT (*source
, i
, s
)
159 target
->safe_push (*s
);
164 /* Something like "n * m" is not allowed. */
167 graphite_can_represent_init (tree e
)
169 switch (TREE_CODE (e
))
171 case POLYNOMIAL_CHREC
:
172 return graphite_can_represent_init (CHREC_LEFT (e
))
173 && graphite_can_represent_init (CHREC_RIGHT (e
));
176 if (chrec_contains_symbols (TREE_OPERAND (e
, 0)))
177 return graphite_can_represent_init (TREE_OPERAND (e
, 0))
178 && tree_fits_shwi_p (TREE_OPERAND (e
, 1));
180 return graphite_can_represent_init (TREE_OPERAND (e
, 1))
181 && tree_fits_shwi_p (TREE_OPERAND (e
, 0));
184 case POINTER_PLUS_EXPR
:
186 return graphite_can_represent_init (TREE_OPERAND (e
, 0))
187 && graphite_can_represent_init (TREE_OPERAND (e
, 1));
192 case NON_LVALUE_EXPR
:
193 return graphite_can_represent_init (TREE_OPERAND (e
, 0));
202 /* Return true when SCEV can be represented in the polyhedral model.
204 An expression can be represented, if it can be expressed as an
205 affine expression. For loops (i, j) and parameters (m, n) all
206 affine expressions are of the form:
208 x1 * i + x2 * j + x3 * m + x4 * n + x5 * 1 where x1..x5 element of Z
210 1 i + 20 j + (-2) m + 25
212 Something like "i * n" or "n * m" is not allowed. */
215 graphite_can_represent_scev (tree scev
)
217 if (chrec_contains_undetermined (scev
))
220 switch (TREE_CODE (scev
))
225 case NON_LVALUE_EXPR
:
226 return graphite_can_represent_scev (TREE_OPERAND (scev
, 0));
229 case POINTER_PLUS_EXPR
:
231 return graphite_can_represent_scev (TREE_OPERAND (scev
, 0))
232 && graphite_can_represent_scev (TREE_OPERAND (scev
, 1));
235 return !CONVERT_EXPR_CODE_P (TREE_CODE (TREE_OPERAND (scev
, 0)))
236 && !CONVERT_EXPR_CODE_P (TREE_CODE (TREE_OPERAND (scev
, 1)))
237 && !(chrec_contains_symbols (TREE_OPERAND (scev
, 0))
238 && chrec_contains_symbols (TREE_OPERAND (scev
, 1)))
239 && graphite_can_represent_init (scev
)
240 && graphite_can_represent_scev (TREE_OPERAND (scev
, 0))
241 && graphite_can_represent_scev (TREE_OPERAND (scev
, 1));
243 case POLYNOMIAL_CHREC
:
244 /* Check for constant strides. With a non constant stride of
245 'n' we would have a value of 'iv * n'. Also check that the
246 initial value can represented: for example 'n * m' cannot be
248 if (!evolution_function_right_is_integer_cst (scev
)
249 || !graphite_can_represent_init (scev
))
251 return graphite_can_represent_scev (CHREC_LEFT (scev
));
257 /* Only affine functions can be represented. */
258 if (tree_contains_chrecs (scev
, NULL
)
259 || !scev_is_linear_expression (scev
))
266 /* Return true when EXPR can be represented in the polyhedral model.
268 This means an expression can be represented, if it is linear with
269 respect to the loops and the strides are non parametric.
270 LOOP is the place where the expr will be evaluated. SCOP_ENTRY defines the
271 entry of the region we analyse. */
274 graphite_can_represent_expr (basic_block scop_entry
, loop_p loop
,
277 tree scev
= analyze_scalar_evolution (loop
, expr
);
279 scev
= instantiate_scev (scop_entry
, loop
, scev
);
281 return graphite_can_represent_scev (scev
);
284 /* Return true if the data references of STMT can be represented by
288 stmt_has_simple_data_refs_p (loop_p outermost_loop ATTRIBUTE_UNUSED
,
295 vec
<data_reference_p
> drs
= vNULL
;
298 for (outer
= loop_containing_stmt (stmt
); outer
; outer
= loop_outer (outer
))
300 graphite_find_data_references_in_stmt (outer
,
301 loop_containing_stmt (stmt
),
304 FOR_EACH_VEC_ELT (drs
, j
, dr
)
305 for (i
= 0; i
< DR_NUM_DIMENSIONS (dr
); i
++)
306 if (!graphite_can_represent_scev (DR_ACCESS_FN (dr
, i
)))
312 free_data_refs (drs
);
317 free_data_refs (drs
);
321 /* Return true only when STMT is simple enough for being handled by
322 Graphite. This depends on SCOP_ENTRY, as the parameters are
323 initialized relatively to this basic block, the linear functions
324 are initialized to OUTERMOST_LOOP and BB is the place where we try
325 to evaluate the STMT. */
328 stmt_simple_for_scop_p (basic_block scop_entry
, loop_p outermost_loop
,
329 gimple stmt
, basic_block bb
)
331 loop_p loop
= bb
->loop_father
;
333 gcc_assert (scop_entry
);
335 /* GIMPLE_ASM and GIMPLE_CALL may embed arbitrary side effects.
336 Calls have side-effects, except those to const or pure
338 if (gimple_has_volatile_ops (stmt
)
339 || (gimple_code (stmt
) == GIMPLE_CALL
340 && !(gimple_call_flags (stmt
) & (ECF_CONST
| ECF_PURE
)))
341 || (gimple_code (stmt
) == GIMPLE_ASM
))
344 if (is_gimple_debug (stmt
))
347 if (!stmt_has_simple_data_refs_p (outermost_loop
, stmt
))
350 switch (gimple_code (stmt
))
358 /* We can handle all binary comparisons. Inequalities are
359 also supported as they can be represented with union of
361 enum tree_code code
= gimple_cond_code (stmt
);
362 if (!(code
== LT_EXPR
370 for (unsigned i
= 0; i
< 2; ++i
)
372 tree op
= gimple_op (stmt
, i
);
373 if (!graphite_can_represent_expr (scop_entry
, loop
, op
)
374 /* We can not handle REAL_TYPE. Failed for pr39260. */
375 || TREE_CODE (TREE_TYPE (op
)) == REAL_TYPE
)
387 /* These nodes cut a new scope. */
394 /* Returns the statement of BB that contains a harmful operation: that
395 can be a function call with side effects, the induction variables
396 are not linear with respect to SCOP_ENTRY, etc. The current open
397 scop should end before this statement. The evaluation is limited using
398 OUTERMOST_LOOP as outermost loop that may change. */
401 harmful_stmt_in_bb (basic_block scop_entry
, loop_p outer_loop
, basic_block bb
)
403 gimple_stmt_iterator gsi
;
405 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
406 if (!stmt_simple_for_scop_p (scop_entry
, outer_loop
, gsi_stmt (gsi
), bb
))
407 return gsi_stmt (gsi
);
412 /* Return true if LOOP can be represented in the polyhedral
413 representation. This is evaluated taking SCOP_ENTRY and
414 OUTERMOST_LOOP in mind. */
417 graphite_can_represent_loop (basic_block scop_entry
, loop_p loop
)
420 struct tree_niter_desc niter_desc
;
422 /* FIXME: For the moment, graphite cannot be used on loops that
423 iterate using induction variables that wrap. */
425 return number_of_iterations_exit (loop
, single_exit (loop
), &niter_desc
, false)
426 && niter_desc
.control
.no_overflow
427 && (niter
= number_of_latch_executions (loop
))
428 && !chrec_contains_undetermined (niter
)
429 && graphite_can_represent_expr (scop_entry
, loop
, niter
);
432 /* Store information needed by scopdet_* functions. */
436 /* Exit of the open scop would stop if the current BB is harmful. */
439 /* Where the next scop would start if the current BB is harmful. */
442 /* The bb or one of its children contains open loop exits. That means
443 loop exit nodes that are not surrounded by a loop dominated by bb. */
446 /* The bb or one of its children contains only structures we can handle. */
450 static struct scopdet_info
build_scops_1 (basic_block
, loop_p
,
451 vec
<sd_region
> *, loop_p
);
453 /* Calculates BB infos. If bb is difficult we add valid SCoPs dominated by BB
454 to SCOPS. TYPE is the gbb_type of BB. */
456 static struct scopdet_info
457 scopdet_basic_block_info (basic_block bb
, loop_p outermost_loop
,
458 vec
<sd_region
> *scops
, gbb_type type
)
460 loop_p loop
= bb
->loop_father
;
461 struct scopdet_info result
;
464 /* XXX: ENTRY_BLOCK_PTR could be optimized in later steps. */
465 basic_block entry_block
= ENTRY_BLOCK_PTR_FOR_FN (cfun
);
466 stmt
= harmful_stmt_in_bb (entry_block
, outermost_loop
, bb
);
467 result
.difficult
= (stmt
!= NULL
);
474 result
.exits
= false;
476 /* Mark bbs terminating a SESE region difficult, if they start
478 if (!single_succ_p (bb
))
479 result
.difficult
= true;
481 result
.exit
= single_succ (bb
);
486 result
.next
= single_succ (bb
);
487 result
.exits
= false;
488 result
.exit
= single_succ (bb
);
491 case GBB_LOOP_SING_EXIT_HEADER
:
493 auto_vec
<sd_region
, 3> regions
;
494 struct scopdet_info sinfo
;
495 edge exit_e
= single_exit (loop
);
497 sinfo
= build_scops_1 (bb
, outermost_loop
, ®ions
, loop
);
499 if (!graphite_can_represent_loop (entry_block
, loop
))
500 result
.difficult
= true;
502 result
.difficult
|= sinfo
.difficult
;
504 /* Try again with another loop level. */
506 && loop_depth (outermost_loop
) + 1 == loop_depth (loop
))
508 outermost_loop
= loop
;
513 sinfo
= scopdet_basic_block_info (bb
, outermost_loop
, scops
, type
);
516 result
.difficult
= true;
519 move_sd_regions (®ions
, scops
);
523 open_scop
.entry
= bb
;
524 open_scop
.exit
= exit_e
->dest
;
525 scops
->safe_push (open_scop
);
531 result
.exit
= exit_e
->dest
;
532 result
.next
= exit_e
->dest
;
534 /* If we do not dominate result.next, remove it. It's either
535 the exit block, or another bb dominates it and will
536 call the scop detection for this bb. */
537 if (!dominated_by_p (CDI_DOMINATORS
, result
.next
, bb
))
540 if (exit_e
->src
->loop_father
!= loop
)
543 result
.exits
= false;
545 if (result
.difficult
)
546 move_sd_regions (®ions
, scops
);
554 case GBB_LOOP_MULT_EXIT_HEADER
:
556 /* XXX: For now we just do not join loops with multiple exits. If the
557 exits lead to the same bb it may be possible to join the loop. */
558 auto_vec
<sd_region
, 3> regions
;
559 vec
<edge
> exits
= get_loop_exit_edges (loop
);
562 build_scops_1 (bb
, loop
, ®ions
, loop
);
564 /* Scan the code dominated by this loop. This means all bbs, that are
565 are dominated by a bb in this loop, but are not part of this loop.
568 - The loop exit destination is dominated by the exit sources.
570 TODO: We miss here the more complex cases:
571 - The exit destinations are dominated by another bb inside
573 - The loop dominates bbs, that are not exit destinations. */
574 FOR_EACH_VEC_ELT (exits
, i
, e
)
575 if (e
->src
->loop_father
== loop
576 && dominated_by_p (CDI_DOMINATORS
, e
->dest
, e
->src
))
578 if (loop_outer (outermost_loop
))
579 outermost_loop
= loop_outer (outermost_loop
);
581 /* Pass loop_outer to recognize e->dest as loop header in
583 if (e
->dest
->loop_father
->header
== e
->dest
)
584 build_scops_1 (e
->dest
, outermost_loop
, ®ions
,
585 loop_outer (e
->dest
->loop_father
));
587 build_scops_1 (e
->dest
, outermost_loop
, ®ions
,
588 e
->dest
->loop_father
);
593 result
.difficult
= true;
594 result
.exits
= false;
595 move_sd_regions (®ions
, scops
);
599 case GBB_COND_HEADER
:
601 auto_vec
<sd_region
, 3> regions
;
602 struct scopdet_info sinfo
;
603 vec
<basic_block
> dominated
;
606 basic_block last_exit
= NULL
;
608 result
.exits
= false;
610 /* First check the successors of BB, and check if it is
611 possible to join the different branches. */
612 FOR_EACH_VEC_SAFE_ELT (bb
->succs
, i
, e
)
614 /* Ignore loop exits. They will be handled after the loop
616 if (loop_exits_to_bb_p (loop
, e
->dest
))
622 /* Do not follow edges that lead to the end of the
623 conditions block. For example, in
633 the edge from 0 => 6. Only check if all paths lead to
636 if (!single_pred_p (e
->dest
))
638 /* Check, if edge leads directly to the end of this
643 if (e
->dest
!= last_exit
)
644 result
.difficult
= true;
649 if (!dominated_by_p (CDI_DOMINATORS
, e
->dest
, bb
))
651 result
.difficult
= true;
655 sinfo
= build_scops_1 (e
->dest
, outermost_loop
, ®ions
, loop
);
657 result
.exits
|= sinfo
.exits
;
658 result
.difficult
|= sinfo
.difficult
;
660 /* Checks, if all branches end at the same point.
661 If that is true, the condition stays joinable.
662 Have a look at the example above. */
666 last_exit
= sinfo
.exit
;
668 if (sinfo
.exit
!= last_exit
)
669 result
.difficult
= true;
672 result
.difficult
= true;
676 result
.difficult
= true;
678 /* Join the branches of the condition if possible. */
679 if (!result
.exits
&& !result
.difficult
)
681 /* Only return a next pointer if we dominate this pointer.
682 Otherwise it will be handled by the bb dominating it. */
683 if (dominated_by_p (CDI_DOMINATORS
, last_exit
, bb
)
685 result
.next
= last_exit
;
689 result
.exit
= last_exit
;
695 /* Scan remaining bbs dominated by BB. */
696 dominated
= get_dominated_by (CDI_DOMINATORS
, bb
);
698 FOR_EACH_VEC_ELT (dominated
, i
, dom_bb
)
700 /* Ignore loop exits: they will be handled after the loop body. */
701 if (loop_depth (find_common_loop (loop
, dom_bb
->loop_father
))
708 /* Ignore the bbs processed above. */
709 if (single_pred_p (dom_bb
) && single_pred (dom_bb
) == bb
)
712 if (loop_depth (loop
) > loop_depth (dom_bb
->loop_father
))
713 sinfo
= build_scops_1 (dom_bb
, outermost_loop
, ®ions
,
716 sinfo
= build_scops_1 (dom_bb
, outermost_loop
, ®ions
, loop
);
718 result
.exits
|= sinfo
.exits
;
719 result
.difficult
= true;
723 dominated
.release ();
726 move_sd_regions (®ions
, scops
);
738 /* Starting from CURRENT we walk the dominance tree and add new sd_regions to
739 SCOPS. The analyse if a sd_region can be handled is based on the value
740 of OUTERMOST_LOOP. Only loops inside OUTERMOST loops may change. LOOP
741 is the loop in which CURRENT is handled.
743 TODO: These functions got a little bit big. They definitely should be cleaned
746 static struct scopdet_info
747 build_scops_1 (basic_block current
, loop_p outermost_loop
,
748 vec
<sd_region
> *scops
, loop_p loop
)
750 bool in_scop
= false;
752 struct scopdet_info sinfo
;
754 /* Initialize result. */
755 struct scopdet_info result
;
756 result
.exits
= false;
757 result
.difficult
= false;
760 open_scop
.entry
= NULL
;
761 open_scop
.exit
= NULL
;
764 /* Loop over the dominance tree. If we meet a difficult bb, close
765 the current SCoP. Loop and condition header start a new layer,
766 and can only be added if all bbs in deeper layers are simple. */
767 while (current
!= NULL
)
769 sinfo
= scopdet_basic_block_info (current
, outermost_loop
, scops
,
770 get_bb_type (current
, loop
));
772 if (!in_scop
&& !(sinfo
.exits
|| sinfo
.difficult
))
774 open_scop
.entry
= current
;
775 open_scop
.exit
= NULL
;
778 else if (in_scop
&& (sinfo
.exits
|| sinfo
.difficult
))
780 open_scop
.exit
= current
;
781 scops
->safe_push (open_scop
);
785 result
.difficult
|= sinfo
.difficult
;
786 result
.exits
|= sinfo
.exits
;
788 current
= sinfo
.next
;
791 /* Try to close open_scop, if we are still in an open SCoP. */
794 open_scop
.exit
= sinfo
.exit
;
795 gcc_assert (open_scop
.exit
);
796 scops
->safe_push (open_scop
);
799 result
.exit
= sinfo
.exit
;
803 /* Checks if a bb is contained in REGION. */
806 bb_in_sd_region (basic_block bb
, sd_region
*region
)
808 return bb_in_region (bb
, region
->entry
, region
->exit
);
811 /* Returns the single entry edge of REGION, if it does not exits NULL. */
814 find_single_entry_edge (sd_region
*region
)
820 FOR_EACH_EDGE (e
, ei
, region
->entry
->preds
)
821 if (!bb_in_sd_region (e
->src
, region
))
836 /* Returns the single exit edge of REGION, if it does not exits NULL. */
839 find_single_exit_edge (sd_region
*region
)
845 FOR_EACH_EDGE (e
, ei
, region
->exit
->preds
)
846 if (bb_in_sd_region (e
->src
, region
))
861 /* Create a single entry edge for REGION. */
864 create_single_entry_edge (sd_region
*region
)
866 if (find_single_entry_edge (region
))
869 /* There are multiple predecessors for bb_3
882 There are two edges (1->3, 2->3), that point from outside into the region,
883 and another one (5->3), a loop latch, lead to bb_3.
891 | |\ (3.0 -> 3.1) = single entry edge
900 If the loop is part of the SCoP, we have to redirect the loop latches.
906 | | (3.0 -> 3.1) = entry edge
915 if (region
->entry
->loop_father
->header
!= region
->entry
916 || dominated_by_p (CDI_DOMINATORS
,
917 loop_latch_edge (region
->entry
->loop_father
)->src
,
920 edge forwarder
= split_block_after_labels (region
->entry
);
921 region
->entry
= forwarder
->dest
;
924 /* This case is never executed, as the loop headers seem always to have a
925 single edge pointing from outside into the loop. */
928 gcc_checking_assert (find_single_entry_edge (region
));
931 /* Check if the sd_region, mentioned in EDGE, has no exit bb. */
934 sd_region_without_exit (edge e
)
936 sd_region
*r
= (sd_region
*) e
->aux
;
939 return r
->exit
== NULL
;
944 /* Create a single exit edge for REGION. */
947 create_single_exit_edge (sd_region
*region
)
951 edge forwarder
= NULL
;
954 /* We create a forwarder bb (5) for all edges leaving this region
955 (3->5, 4->5). All other edges leading to the same bb, are moved
956 to a new bb (6). If these edges where part of another region (2->5)
957 we update the region->exit pointer, of this region.
959 To identify which edge belongs to which region we depend on the e->aux
960 pointer in every edge. It points to the region of the edge or to NULL,
961 if the edge is not part of any region.
963 1 2 3 4 1->5 no region, 2->5 region->exit = 5,
964 \| |/ 3->5 region->exit = NULL, 4->5 region->exit = NULL
969 1 2 3 4 1->6 no region, 2->6 region->exit = 6,
970 | | \/ 3->5 no region, 4->5 no region,
972 \| / 5->6 region->exit = 6
975 Now there is only a single exit edge (5->6). */
978 forwarder
= make_forwarder_block (exit
, &sd_region_without_exit
, NULL
);
980 /* Unmark the edges, that are no longer exit edges. */
981 FOR_EACH_EDGE (e
, ei
, forwarder
->src
->preds
)
985 /* Mark the new exit edge. */
986 single_succ_edge (forwarder
->src
)->aux
= region
;
988 /* Update the exit bb of all regions, where exit edges lead to
990 FOR_EACH_EDGE (e
, ei
, forwarder
->dest
->preds
)
992 ((sd_region
*) e
->aux
)->exit
= forwarder
->dest
;
994 gcc_checking_assert (find_single_exit_edge (region
));
997 /* Unmark the exit edges of all REGIONS.
998 See comment in "create_single_exit_edge". */
1001 unmark_exit_edges (vec
<sd_region
> regions
)
1008 FOR_EACH_VEC_ELT (regions
, i
, s
)
1009 FOR_EACH_EDGE (e
, ei
, s
->exit
->preds
)
1014 /* Mark the exit edges of all REGIONS.
1015 See comment in "create_single_exit_edge". */
1018 mark_exit_edges (vec
<sd_region
> regions
)
1025 FOR_EACH_VEC_ELT (regions
, i
, s
)
1026 FOR_EACH_EDGE (e
, ei
, s
->exit
->preds
)
1027 if (bb_in_sd_region (e
->src
, s
))
1031 /* Create for all scop regions a single entry and a single exit edge. */
1034 create_sese_edges (vec
<sd_region
> regions
)
1039 FOR_EACH_VEC_ELT (regions
, i
, s
)
1040 create_single_entry_edge (s
);
1042 mark_exit_edges (regions
);
1044 FOR_EACH_VEC_ELT (regions
, i
, s
)
1045 /* Don't handle multiple edges exiting the function. */
1046 if (!find_single_exit_edge (s
)
1047 && s
->exit
!= EXIT_BLOCK_PTR_FOR_FN (cfun
))
1048 create_single_exit_edge (s
);
1050 unmark_exit_edges (regions
);
1052 calculate_dominance_info (CDI_DOMINATORS
);
1053 fix_loop_structure (NULL
);
1055 #ifdef ENABLE_CHECKING
1056 verify_loop_structure ();
1061 /* Create graphite SCoPs from an array of scop detection REGIONS. */
1064 build_graphite_scops (vec
<sd_region
> regions
,
1070 FOR_EACH_VEC_ELT (regions
, i
, s
)
1072 edge entry
= find_single_entry_edge (s
);
1073 edge exit
= find_single_exit_edge (s
);
1079 scop
= new_scop (new_sese (entry
, exit
));
1080 scops
->safe_push (scop
);
1082 /* Are there overlapping SCoPs? */
1083 #ifdef ENABLE_CHECKING
1088 FOR_EACH_VEC_ELT (regions
, j
, s2
)
1090 gcc_assert (!bb_in_sd_region (s
->entry
, s2
));
1096 /* Returns true when BB contains only close phi nodes. */
1099 contains_only_close_phi_nodes (basic_block bb
)
1101 gimple_stmt_iterator gsi
;
1103 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1104 if (gimple_code (gsi_stmt (gsi
)) != GIMPLE_LABEL
)
1110 /* Print statistics for SCOP to FILE. */
1113 print_graphite_scop_statistics (FILE* file
, scop_p scop
)
1118 long n_conditions
= 0;
1122 long n_p_conditions
= 0;
1126 FOR_ALL_BB_FN (bb
, cfun
)
1128 gimple_stmt_iterator psi
;
1129 loop_p loop
= bb
->loop_father
;
1131 if (!bb_in_sese_p (bb
, SCOP_REGION (scop
)))
1135 n_p_bbs
+= bb
->count
;
1137 if (EDGE_COUNT (bb
->succs
) > 1)
1140 n_p_conditions
+= bb
->count
;
1143 for (psi
= gsi_start_bb (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
1146 n_p_stmts
+= bb
->count
;
1149 if (loop
->header
== bb
&& loop_in_sese_p (loop
, SCOP_REGION (scop
)))
1152 n_p_loops
+= bb
->count
;
1157 fprintf (file
, "\nBefore limit_scops SCoP statistics (");
1158 fprintf (file
, "BBS:%ld, ", n_bbs
);
1159 fprintf (file
, "LOOPS:%ld, ", n_loops
);
1160 fprintf (file
, "CONDITIONS:%ld, ", n_conditions
);
1161 fprintf (file
, "STMTS:%ld)\n", n_stmts
);
1162 fprintf (file
, "\nBefore limit_scops SCoP profiling statistics (");
1163 fprintf (file
, "BBS:%ld, ", n_p_bbs
);
1164 fprintf (file
, "LOOPS:%ld, ", n_p_loops
);
1165 fprintf (file
, "CONDITIONS:%ld, ", n_p_conditions
);
1166 fprintf (file
, "STMTS:%ld)\n", n_p_stmts
);
1169 /* Print statistics for SCOPS to FILE. */
1172 print_graphite_statistics (FILE* file
, vec
<scop_p
> scops
)
1177 FOR_EACH_VEC_ELT (scops
, i
, scop
)
1178 print_graphite_scop_statistics (file
, scop
);
1181 /* We limit all SCoPs to SCoPs, that are completely surrounded by a loop.
1191 * SCoP frontier, as this line is not surrounded by any loop. *
1195 This is necessary as scalar evolution and parameter detection need a
1196 outermost loop to initialize parameters correctly.
1198 TODO: FIX scalar evolution and parameter detection to allow more flexible
1202 limit_scops (vec
<scop_p
> *scops
)
1204 auto_vec
<sd_region
, 3> regions
;
1209 FOR_EACH_VEC_ELT (*scops
, i
, scop
)
1213 sese region
= SCOP_REGION (scop
);
1214 build_sese_loop_nests (region
);
1216 FOR_EACH_VEC_ELT (SESE_LOOP_NEST (region
), j
, loop
)
1217 if (!loop_in_sese_p (loop_outer (loop
), region
)
1218 && single_exit (loop
))
1220 sd_region open_scop
;
1221 open_scop
.entry
= loop
->header
;
1222 open_scop
.exit
= single_exit (loop
)->dest
;
1224 /* This is a hack on top of the limit_scops hack. The
1225 limit_scops hack should disappear all together. */
1226 if (single_succ_p (open_scop
.exit
)
1227 && contains_only_close_phi_nodes (open_scop
.exit
))
1228 open_scop
.exit
= single_succ_edge (open_scop
.exit
)->dest
;
1230 regions
.safe_push (open_scop
);
1234 free_scops (*scops
);
1237 create_sese_edges (regions
);
1238 build_graphite_scops (regions
, scops
);
1241 /* Returns true when P1 and P2 are close phis with the same
1245 same_close_phi_node (gimple p1
, gimple p2
)
1247 return operand_equal_p (gimple_phi_arg_def (p1
, 0),
1248 gimple_phi_arg_def (p2
, 0), 0);
1251 /* Remove the close phi node at GSI and replace its rhs with the rhs
1255 remove_duplicate_close_phi (gimple phi
, gimple_stmt_iterator
*gsi
)
1258 use_operand_p use_p
;
1259 imm_use_iterator imm_iter
;
1260 tree res
= gimple_phi_result (phi
);
1261 tree def
= gimple_phi_result (gsi_stmt (*gsi
));
1263 gcc_assert (same_close_phi_node (phi
, gsi_stmt (*gsi
)));
1265 FOR_EACH_IMM_USE_STMT (use_stmt
, imm_iter
, def
)
1267 FOR_EACH_IMM_USE_ON_STMT (use_p
, imm_iter
)
1268 SET_USE (use_p
, res
);
1270 update_stmt (use_stmt
);
1272 /* It is possible that we just created a duplicate close-phi
1273 for an already-processed containing loop. Check for this
1274 case and clean it up. */
1275 if (gimple_code (use_stmt
) == GIMPLE_PHI
1276 && gimple_phi_num_args (use_stmt
) == 1)
1277 make_close_phi_nodes_unique (gimple_bb (use_stmt
));
1280 remove_phi_node (gsi
, true);
1283 /* Removes all the close phi duplicates from BB. */
1286 make_close_phi_nodes_unique (basic_block bb
)
1288 gimple_stmt_iterator psi
;
1290 for (psi
= gsi_start_phis (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
1292 gimple_stmt_iterator gsi
= psi
;
1293 gimple phi
= gsi_stmt (psi
);
1295 /* At this point, PHI should be a close phi in normal form. */
1296 gcc_assert (gimple_phi_num_args (phi
) == 1);
1298 /* Iterate over the next phis and remove duplicates. */
1300 while (!gsi_end_p (gsi
))
1301 if (same_close_phi_node (phi
, gsi_stmt (gsi
)))
1302 remove_duplicate_close_phi (phi
, &gsi
);
1308 /* Transforms LOOP to the canonical loop closed SSA form. */
1311 canonicalize_loop_closed_ssa (loop_p loop
)
1313 edge e
= single_exit (loop
);
1316 if (!e
|| e
->flags
& EDGE_ABNORMAL
)
1321 if (single_pred_p (bb
))
1323 e
= split_block_after_labels (bb
);
1324 make_close_phi_nodes_unique (e
->src
);
1328 gimple_stmt_iterator psi
;
1329 basic_block close
= split_edge (e
);
1331 e
= single_succ_edge (close
);
1333 for (psi
= gsi_start_phis (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
1335 gimple phi
= gsi_stmt (psi
);
1338 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
1339 if (gimple_phi_arg_edge (phi
, i
) == e
)
1341 tree res
, arg
= gimple_phi_arg_def (phi
, i
);
1342 use_operand_p use_p
;
1345 if (TREE_CODE (arg
) != SSA_NAME
)
1348 close_phi
= create_phi_node (NULL_TREE
, close
);
1349 res
= create_new_def_for (arg
, close_phi
,
1350 gimple_phi_result_ptr (close_phi
));
1351 add_phi_arg (close_phi
, arg
,
1352 gimple_phi_arg_edge (close_phi
, 0),
1354 use_p
= gimple_phi_arg_imm_use_ptr (phi
, i
);
1355 replace_exp (use_p
, res
);
1360 make_close_phi_nodes_unique (close
);
1363 /* The code above does not properly handle changes in the post dominance
1364 information (yet). */
1365 free_dominance_info (CDI_POST_DOMINATORS
);
1368 /* Converts the current loop closed SSA form to a canonical form
1369 expected by the Graphite code generation.
1371 The loop closed SSA form has the following invariant: a variable
1372 defined in a loop that is used outside the loop appears only in the
1373 phi nodes in the destination of the loop exit. These phi nodes are
1374 called close phi nodes.
1376 The canonical loop closed SSA form contains the extra invariants:
1378 - when the loop contains only one exit, the close phi nodes contain
1379 only one argument. That implies that the basic block that contains
1380 the close phi nodes has only one predecessor, that is a basic block
1383 - the basic block containing the close phi nodes does not contain
1386 - there exist only one phi node per definition in the loop.
1390 canonicalize_loop_closed_ssa_form (void)
1394 #ifdef ENABLE_CHECKING
1395 verify_loop_closed_ssa (true);
1398 FOR_EACH_LOOP (loop
, 0)
1399 canonicalize_loop_closed_ssa (loop
);
1401 rewrite_into_loop_closed_ssa (NULL
, TODO_update_ssa
);
1402 update_ssa (TODO_update_ssa
);
1404 #ifdef ENABLE_CHECKING
1405 verify_loop_closed_ssa (true);
1409 /* Find Static Control Parts (SCoP) in the current function and pushes
1413 build_scops (vec
<scop_p
> *scops
)
1415 struct loop
*loop
= current_loops
->tree_root
;
1416 auto_vec
<sd_region
, 3> regions
;
1418 canonicalize_loop_closed_ssa_form ();
1419 build_scops_1 (single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
)),
1420 ENTRY_BLOCK_PTR_FOR_FN (cfun
)->loop_father
,
1422 create_sese_edges (regions
);
1423 build_graphite_scops (regions
, scops
);
1425 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1426 print_graphite_statistics (dump_file
, *scops
);
1428 limit_scops (scops
);
1431 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1432 fprintf (dump_file
, "\nnumber of SCoPs: %d\n",
1433 scops
? scops
->length () : 0);
1436 /* Pretty print to FILE all the SCoPs in DOT format and mark them with
1437 different colors. If there are not enough colors, paint the
1438 remaining SCoPs in gray.
1441 - "*" after the node number denotes the entry of a SCoP,
1442 - "#" after the node number denotes the exit of a SCoP,
1443 - "()" around the node number denotes the entry or the
1444 exit nodes of the SCOP. These are not part of SCoP. */
1447 dot_all_scops_1 (FILE *file
, vec
<scop_p
> scops
)
1456 /* Disable debugging while printing graph. */
1457 int tmp_dump_flags
= dump_flags
;
1460 fprintf (file
, "digraph all {\n");
1462 FOR_ALL_BB_FN (bb
, cfun
)
1464 int part_of_scop
= false;
1466 /* Use HTML for every bb label. So we are able to print bbs
1467 which are part of two different SCoPs, with two different
1468 background colors. */
1469 fprintf (file
, "%d [label=<\n <TABLE BORDER=\"0\" CELLBORDER=\"1\" ",
1471 fprintf (file
, "CELLSPACING=\"0\">\n");
1473 /* Select color for SCoP. */
1474 FOR_EACH_VEC_ELT (scops
, i
, scop
)
1476 sese region
= SCOP_REGION (scop
);
1477 if (bb_in_sese_p (bb
, region
)
1478 || (SESE_EXIT_BB (region
) == bb
)
1479 || (SESE_ENTRY_BB (region
) == bb
))
1492 case 3: /* purple */
1495 case 4: /* orange */
1498 case 5: /* yellow */
1538 fprintf (file
, " <TR><TD WIDTH=\"50\" BGCOLOR=\"%s\">", color
);
1540 if (!bb_in_sese_p (bb
, region
))
1541 fprintf (file
, " (");
1543 if (bb
== SESE_ENTRY_BB (region
)
1544 && bb
== SESE_EXIT_BB (region
))
1545 fprintf (file
, " %d*# ", bb
->index
);
1546 else if (bb
== SESE_ENTRY_BB (region
))
1547 fprintf (file
, " %d* ", bb
->index
);
1548 else if (bb
== SESE_EXIT_BB (region
))
1549 fprintf (file
, " %d# ", bb
->index
);
1551 fprintf (file
, " %d ", bb
->index
);
1553 if (!bb_in_sese_p (bb
,region
))
1554 fprintf (file
, ")");
1556 fprintf (file
, "</TD></TR>\n");
1557 part_of_scop
= true;
1563 fprintf (file
, " <TR><TD WIDTH=\"50\" BGCOLOR=\"#ffffff\">");
1564 fprintf (file
, " %d </TD></TR>\n", bb
->index
);
1566 fprintf (file
, " </TABLE>>, shape=box, style=\"setlinewidth(0)\"]\n");
1569 FOR_ALL_BB_FN (bb
, cfun
)
1571 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1572 fprintf (file
, "%d -> %d;\n", bb
->index
, e
->dest
->index
);
1575 fputs ("}\n\n", file
);
1577 /* Enable debugging again. */
1578 dump_flags
= tmp_dump_flags
;
1581 /* Display all SCoPs using dotty. */
1584 dot_all_scops (vec
<scop_p
> scops
)
1586 /* When debugging, enable the following code. This cannot be used
1587 in production compilers because it calls "system". */
1590 FILE *stream
= fopen ("/tmp/allscops.dot", "w");
1591 gcc_assert (stream
);
1593 dot_all_scops_1 (stream
, scops
);
1596 x
= system ("dotty /tmp/allscops.dot &");
1598 dot_all_scops_1 (stderr
, scops
);
1602 /* Display all SCoPs using dotty. */
1605 dot_scop (scop_p scop
)
1607 auto_vec
<scop_p
, 1> scops
;
1610 scops
.safe_push (scop
);
1612 /* When debugging, enable the following code. This cannot be used
1613 in production compilers because it calls "system". */
1617 FILE *stream
= fopen ("/tmp/allscops.dot", "w");
1618 gcc_assert (stream
);
1620 dot_all_scops_1 (stream
, scops
);
1622 x
= system ("dotty /tmp/allscops.dot &");
1625 dot_all_scops_1 (stderr
, scops
);