* cfghooks.c (verify_flow_info): Disable check that all probabilities
[official-gcc.git] / gcc / graphite-scop-detection.c
blobc7e1dba9423a177b5e1806391112c7a0ada9d79a
1 /* Detection of Static Control Parts (SCoP) for Graphite.
2 Copyright (C) 2009-2017 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)
11 any later version.
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/>. */
22 #define USES_ISL
24 #include "config.h"
26 #ifdef HAVE_isl
28 #include "system.h"
29 #include "coretypes.h"
30 #include "backend.h"
31 #include "cfghooks.h"
32 #include "domwalk.h"
33 #include "params.h"
34 #include "tree.h"
35 #include "gimple.h"
36 #include "ssa.h"
37 #include "fold-const.h"
38 #include "gimple-iterator.h"
39 #include "tree-cfg.h"
40 #include "tree-ssa-loop-manip.h"
41 #include "tree-ssa-loop-niter.h"
42 #include "tree-ssa-loop.h"
43 #include "tree-into-ssa.h"
44 #include "tree-ssa.h"
45 #include "cfgloop.h"
46 #include "tree-data-ref.h"
47 #include "tree-scalar-evolution.h"
48 #include "tree-pass.h"
49 #include "tree-ssa-propagate.h"
50 #include "gimple-pretty-print.h"
51 #include "cfganal.h"
52 #include "graphite.h"
54 class debug_printer
56 private:
57 FILE *dump_file;
59 public:
60 void
61 set_dump_file (FILE *f)
63 gcc_assert (f);
64 dump_file = f;
67 friend debug_printer &
68 operator<< (debug_printer &output, int i)
70 fprintf (output.dump_file, "%d", i);
71 return output;
73 friend debug_printer &
74 operator<< (debug_printer &output, const char *s)
76 fprintf (output.dump_file, "%s", s);
77 return output;
79 } dp;
81 #define DEBUG_PRINT(args) do \
82 { \
83 if (dump_file && (dump_flags & TDF_DETAILS)) { args; } \
84 } while (0);
86 /* Pretty print to FILE all the SCoPs in DOT format and mark them with
87 different colors. If there are not enough colors, paint the
88 remaining SCoPs in gray.
90 Special nodes:
91 - "*" after the node number denotes the entry of a SCoP,
92 - "#" after the node number denotes the exit of a SCoP,
93 - "()" around the node number denotes the entry or the
94 exit nodes of the SCOP. These are not part of SCoP. */
96 DEBUG_FUNCTION void
97 dot_all_sese (FILE *file, vec<sese_l>& scops)
99 /* Disable debugging while printing graph. */
100 dump_flags_t tmp_dump_flags = dump_flags;
101 dump_flags = TDF_NONE;
103 fprintf (file, "digraph all {\n");
105 basic_block bb;
106 FOR_ALL_BB_FN (bb, cfun)
108 int part_of_scop = false;
110 /* Use HTML for every bb label. So we are able to print bbs
111 which are part of two different SCoPs, with two different
112 background colors. */
113 fprintf (file, "%d [label=<\n <TABLE BORDER=\"0\" CELLBORDER=\"1\" ",
114 bb->index);
115 fprintf (file, "CELLSPACING=\"0\">\n");
117 /* Select color for SCoP. */
118 sese_l *region;
119 int i;
120 FOR_EACH_VEC_ELT (scops, i, region)
122 bool sese_in_region = bb_in_sese_p (bb, *region);
123 if (sese_in_region || (region->exit->dest == bb)
124 || (region->entry->dest == bb))
126 const char *color;
127 switch (i % 17)
129 case 0: /* red */
130 color = "#e41a1c";
131 break;
132 case 1: /* blue */
133 color = "#377eb8";
134 break;
135 case 2: /* green */
136 color = "#4daf4a";
137 break;
138 case 3: /* purple */
139 color = "#984ea3";
140 break;
141 case 4: /* orange */
142 color = "#ff7f00";
143 break;
144 case 5: /* yellow */
145 color = "#ffff33";
146 break;
147 case 6: /* brown */
148 color = "#a65628";
149 break;
150 case 7: /* rose */
151 color = "#f781bf";
152 break;
153 case 8:
154 color = "#8dd3c7";
155 break;
156 case 9:
157 color = "#ffffb3";
158 break;
159 case 10:
160 color = "#bebada";
161 break;
162 case 11:
163 color = "#fb8072";
164 break;
165 case 12:
166 color = "#80b1d3";
167 break;
168 case 13:
169 color = "#fdb462";
170 break;
171 case 14:
172 color = "#b3de69";
173 break;
174 case 15:
175 color = "#fccde5";
176 break;
177 case 16:
178 color = "#bc80bd";
179 break;
180 default: /* gray */
181 color = "#999999";
184 fprintf (file, " <TR><TD WIDTH=\"50\" BGCOLOR=\"%s\">",
185 color);
187 if (!sese_in_region)
188 fprintf (file, " (");
190 if (bb == region->entry->dest && bb == region->exit->dest)
191 fprintf (file, " %d*# ", bb->index);
192 else if (bb == region->entry->dest)
193 fprintf (file, " %d* ", bb->index);
194 else if (bb == region->exit->dest)
195 fprintf (file, " %d# ", bb->index);
196 else
197 fprintf (file, " %d ", bb->index);
199 fprintf (file, "{lp_%d}", bb->loop_father->num);
201 if (!sese_in_region)
202 fprintf (file, ")");
204 fprintf (file, "</TD></TR>\n");
205 part_of_scop = true;
209 if (!part_of_scop)
211 fprintf (file, " <TR><TD WIDTH=\"50\" BGCOLOR=\"#ffffff\">");
212 fprintf (file, " %d {lp_%d} </TD></TR>\n", bb->index,
213 bb->loop_father->num);
215 fprintf (file, " </TABLE>>, shape=box, style=\"setlinewidth(0)\"]\n");
218 FOR_ALL_BB_FN (bb, cfun)
220 edge e;
221 edge_iterator ei;
222 FOR_EACH_EDGE (e, ei, bb->succs)
223 fprintf (file, "%d -> %d;\n", bb->index, e->dest->index);
226 fputs ("}\n\n", file);
228 /* Enable debugging again. */
229 dump_flags = tmp_dump_flags;
232 /* Display SCoP on stderr. */
234 DEBUG_FUNCTION void
235 dot_sese (sese_l& scop)
237 vec<sese_l> scops;
238 scops.create (1);
240 if (scop)
241 scops.safe_push (scop);
243 dot_all_sese (stderr, scops);
245 scops.release ();
248 DEBUG_FUNCTION void
249 dot_cfg ()
251 vec<sese_l> scops;
252 scops.create (1);
253 dot_all_sese (stderr, scops);
254 scops.release ();
257 /* Returns a COND_EXPR statement when BB has a single predecessor, the
258 edge between BB and its predecessor is not a loop exit edge, and
259 the last statement of the single predecessor is a COND_EXPR. */
261 static gcond *
262 single_pred_cond_non_loop_exit (basic_block bb)
264 if (single_pred_p (bb))
266 edge e = single_pred_edge (bb);
267 basic_block pred = e->src;
268 gimple *stmt;
270 if (loop_depth (pred->loop_father) > loop_depth (bb->loop_father))
271 return NULL;
273 stmt = last_stmt (pred);
275 if (stmt && gimple_code (stmt) == GIMPLE_COND)
276 return as_a<gcond *> (stmt);
279 return NULL;
282 namespace
285 /* Build the maximal scop containing LOOPs and add it to SCOPS. */
287 class scop_detection
289 public:
290 scop_detection () : scops (vNULL) {}
292 ~scop_detection ()
294 scops.release ();
297 /* A marker for invalid sese_l. */
298 static sese_l invalid_sese;
300 /* Return the SCOPS in this SCOP_DETECTION. */
302 vec<sese_l>
303 get_scops ()
305 return scops;
308 /* Return an sese_l around the LOOP. */
310 sese_l get_sese (loop_p loop);
312 /* Return the closest dominator with a single entry edge. In case of a
313 back-loop the back-edge is not counted. */
315 static edge get_nearest_dom_with_single_entry (basic_block dom);
317 /* Return the closest post-dominator with a single exit edge. In case of a
318 back-loop the back-edge is not counted. */
320 static edge get_nearest_pdom_with_single_exit (basic_block dom);
322 /* Merge scops at same loop depth and returns the new sese.
323 Returns a new SESE when merge was successful, INVALID_SESE otherwise. */
325 sese_l merge_sese (sese_l first, sese_l second) const;
327 /* Build scop outer->inner if possible. */
329 void build_scop_depth (loop_p loop);
331 /* Return true when BEGIN is the preheader edge of a loop with a single exit
332 END. */
334 static bool region_has_one_loop (sese_l s);
336 /* Add to SCOPS a scop starting at SCOP_BEGIN and ending at SCOP_END. */
338 void add_scop (sese_l s);
340 /* Returns true if S1 subsumes/surrounds S2. */
341 static bool subsumes (sese_l s1, sese_l s2);
343 /* Remove a SCoP which is subsumed by S1. */
344 void remove_subscops (sese_l s1);
346 /* Returns true if S1 intersects with S2. Since we already know that S1 does
347 not subsume S2 or vice-versa, we only check for entry bbs. */
349 static bool intersects (sese_l s1, sese_l s2);
351 /* Remove one of the scops when it intersects with any other. */
353 void remove_intersecting_scops (sese_l s1);
355 /* Return true when a statement in SCOP cannot be represented by Graphite. */
357 bool harmful_loop_in_region (sese_l scop) const;
359 /* Return true only when STMT is simple enough for being handled by Graphite.
360 This depends on SCOP, as the parameters are initialized relatively to
361 this basic block, the linear functions are initialized based on the
362 outermost loop containing STMT inside the SCOP. BB is the place where we
363 try to evaluate the STMT. */
365 bool stmt_simple_for_scop_p (sese_l scop, gimple *stmt,
366 basic_block bb) const;
368 /* Something like "n * m" is not allowed. */
370 static bool graphite_can_represent_init (tree e);
372 /* Return true when SCEV can be represented in the polyhedral model.
374 An expression can be represented, if it can be expressed as an
375 affine expression. For loops (i, j) and parameters (m, n) all
376 affine expressions are of the form:
378 x1 * i + x2 * j + x3 * m + x4 * n + x5 * 1 where x1..x5 element of Z
380 1 i + 20 j + (-2) m + 25
382 Something like "i * n" or "n * m" is not allowed. */
384 static bool graphite_can_represent_scev (sese_l scop, tree scev);
386 /* Return true when EXPR can be represented in the polyhedral model.
388 This means an expression can be represented, if it is linear with respect
389 to the loops and the strides are non parametric. LOOP is the place where
390 the expr will be evaluated. SCOP defines the region we analyse. */
392 static bool graphite_can_represent_expr (sese_l scop, loop_p loop,
393 tree expr);
395 /* Return true if the data references of STMT can be represented by Graphite.
396 We try to analyze the data references in a loop contained in the SCOP. */
398 static bool stmt_has_simple_data_refs_p (sese_l scop, gimple *stmt);
400 /* Remove the close phi node at GSI and replace its rhs with the rhs
401 of PHI. */
403 static void remove_duplicate_close_phi (gphi *phi, gphi_iterator *gsi);
405 /* Returns true when Graphite can represent LOOP in SCOP.
406 FIXME: For the moment, graphite cannot be used on loops that iterate using
407 induction variables that wrap. */
409 static bool can_represent_loop (loop_p loop, sese_l scop);
411 /* Returns the number of pbbs that are in loops contained in SCOP. */
413 static int nb_pbbs_in_loops (scop_p scop);
415 private:
416 vec<sese_l> scops;
419 sese_l scop_detection::invalid_sese (NULL, NULL);
421 /* Return an sese_l around the LOOP. */
423 sese_l
424 scop_detection::get_sese (loop_p loop)
426 if (!loop)
427 return invalid_sese;
429 edge scop_begin = loop_preheader_edge (loop);
430 edge scop_end = single_exit (loop);
431 if (!scop_end || (scop_end->flags & EDGE_COMPLEX))
432 return invalid_sese;
433 /* Include the BB with the loop-closed SSA PHI nodes.
434 canonicalize_loop_closed_ssa makes sure that is in proper shape. */
435 if (! single_pred_p (scop_end->dest)
436 || ! single_succ_p (scop_end->dest)
437 || ! sese_trivially_empty_bb_p (scop_end->dest))
438 gcc_unreachable ();
439 scop_end = single_succ_edge (scop_end->dest);
441 return sese_l (scop_begin, scop_end);
444 /* Return the closest dominator with a single entry edge. */
446 edge
447 scop_detection::get_nearest_dom_with_single_entry (basic_block dom)
449 if (!dom->preds)
450 return NULL;
452 /* If any of the dominators has two predecessors but one of them is a back
453 edge, then that basic block also qualifies as a dominator with single
454 entry. */
455 if (dom->preds->length () == 2)
457 /* If e1->src dominates e2->src then e1->src will also dominate dom. */
458 edge e1 = (*dom->preds)[0];
459 edge e2 = (*dom->preds)[1];
460 loop_p l = dom->loop_father;
461 loop_p l1 = e1->src->loop_father;
462 loop_p l2 = e2->src->loop_father;
463 if (l != l1 && l == l2
464 && dominated_by_p (CDI_DOMINATORS, e2->src, e1->src))
465 return e1;
466 if (l != l2 && l == l1
467 && dominated_by_p (CDI_DOMINATORS, e1->src, e2->src))
468 return e2;
471 while (dom->preds->length () != 1)
473 if (dom->preds->length () < 1)
474 return NULL;
475 dom = get_immediate_dominator (CDI_DOMINATORS, dom);
476 if (!dom->preds)
477 return NULL;
479 return (*dom->preds)[0];
482 /* Return the closest post-dominator with a single exit edge. In case of a
483 back-loop the back-edge is not counted. */
485 edge
486 scop_detection::get_nearest_pdom_with_single_exit (basic_block pdom)
488 if (!pdom->succs)
489 return NULL;
491 /* If any of the post-dominators has two successors but one of them is a back
492 edge, then that basic block also qualifies as a post-dominator with single
493 exit. */
494 if (pdom->succs->length () == 2)
496 /* If e1->dest post-dominates e2->dest then e1->dest will also
497 post-dominate pdom. */
498 edge e1 = (*pdom->succs)[0];
499 edge e2 = (*pdom->succs)[1];
500 loop_p l = pdom->loop_father;
501 loop_p l1 = e1->dest->loop_father;
502 loop_p l2 = e2->dest->loop_father;
503 if (l != l1 && l == l2
504 && dominated_by_p (CDI_POST_DOMINATORS, e2->dest, e1->dest))
505 return e1;
506 if (l != l2 && l == l1
507 && dominated_by_p (CDI_POST_DOMINATORS, e1->dest, e2->dest))
508 return e2;
511 while (pdom->succs->length () != 1)
513 if (pdom->succs->length () < 1)
514 return NULL;
515 pdom = get_immediate_dominator (CDI_POST_DOMINATORS, pdom);
516 if (!pdom->succs)
517 return NULL;
520 return (*pdom->succs)[0];
523 /* Merge scops at same loop depth and returns the new sese.
524 Returns a new SESE when merge was successful, INVALID_SESE otherwise. */
526 sese_l
527 scop_detection::merge_sese (sese_l first, sese_l second) const
529 /* In the trivial case first/second may be NULL. */
530 if (!first)
531 return second;
532 if (!second)
533 return first;
535 DEBUG_PRINT (dp << "[scop-detection] try merging sese s1: ";
536 print_sese (dump_file, first);
537 dp << "[scop-detection] try merging sese s2: ";
538 print_sese (dump_file, second));
540 /* Assumption: Both the sese's should be at the same loop depth or one scop
541 should subsume the other like in case of nested loops. */
543 /* Find the common dominators for entry,
544 and common post-dominators for the exit. */
545 basic_block dom = nearest_common_dominator (CDI_DOMINATORS,
546 get_entry_bb (first),
547 get_entry_bb (second));
549 edge entry = get_nearest_dom_with_single_entry (dom);
551 if (!entry || (entry->flags & EDGE_IRREDUCIBLE_LOOP))
552 return invalid_sese;
554 basic_block pdom = nearest_common_dominator (CDI_POST_DOMINATORS,
555 get_exit_bb (first),
556 get_exit_bb (second));
557 pdom = nearest_common_dominator (CDI_POST_DOMINATORS, dom, pdom);
559 edge exit = get_nearest_pdom_with_single_exit (pdom);
561 if (!exit || (exit->flags & EDGE_IRREDUCIBLE_LOOP))
562 return invalid_sese;
564 sese_l combined (entry, exit);
566 DEBUG_PRINT (dp << "[scop-detection] checking combined sese: ";
567 print_sese (dump_file, combined));
569 /* FIXME: We could iterate to find the dom which dominates pdom, and pdom
570 which post-dominates dom, until it stabilizes. Also, ENTRY->SRC and
571 EXIT->DEST should be in the same loop nest. */
572 if (!dominated_by_p (CDI_DOMINATORS, pdom, dom)
573 || loop_depth (entry->src->loop_father)
574 != loop_depth (exit->dest->loop_father))
575 return invalid_sese;
577 /* For now we just bail out when there is a loop exit in the region
578 that is not also the exit of the region. We could enlarge the
579 region to cover the loop that region exits to. See PR79977. */
580 if (loop_outer (entry->src->loop_father))
582 vec<edge> exits = get_loop_exit_edges (entry->src->loop_father);
583 for (unsigned i = 0; i < exits.length (); ++i)
585 if (exits[i] != exit
586 && bb_in_region (exits[i]->src, entry->dest, exit->src))
588 DEBUG_PRINT (dp << "[scop-detection-fail] cannot merge seses.\n");
589 exits.release ();
590 return invalid_sese;
593 exits.release ();
596 /* For now we just want to bail out when exit does not post-dominate entry.
597 TODO: We might just add a basic_block at the exit to make exit
598 post-dominate entry (the entire region). */
599 if (!dominated_by_p (CDI_POST_DOMINATORS, get_entry_bb (combined),
600 get_exit_bb (combined))
601 || !dominated_by_p (CDI_DOMINATORS, get_exit_bb (combined),
602 get_entry_bb (combined)))
604 DEBUG_PRINT (dp << "[scop-detection-fail] cannot merge seses.\n");
605 return invalid_sese;
608 DEBUG_PRINT (dp << "[merged-sese] s1: "; print_sese (dump_file, combined));
610 return combined;
613 /* Build scop outer->inner if possible. */
615 void
616 scop_detection::build_scop_depth (loop_p loop)
618 sese_l s = invalid_sese;
619 loop = loop->inner;
620 while (loop)
622 sese_l next = get_sese (loop);
623 if (! next
624 || harmful_loop_in_region (next))
626 if (s)
627 add_scop (s);
628 build_scop_depth (loop);
629 s = invalid_sese;
631 else if (! s)
632 s = next;
633 else
635 sese_l combined = merge_sese (s, next);
636 if (! combined
637 || harmful_loop_in_region (combined))
639 add_scop (s);
640 s = next;
642 else
643 s = combined;
645 loop = loop->next;
647 if (s)
648 add_scop (s);
651 /* Returns true when Graphite can represent LOOP in SCOP.
652 FIXME: For the moment, graphite cannot be used on loops that iterate using
653 induction variables that wrap. */
655 bool
656 scop_detection::can_represent_loop (loop_p loop, sese_l scop)
658 tree niter;
659 struct tree_niter_desc niter_desc;
661 return single_exit (loop)
662 && !(loop_preheader_edge (loop)->flags & EDGE_IRREDUCIBLE_LOOP)
663 && number_of_iterations_exit (loop, single_exit (loop), &niter_desc, false)
664 && niter_desc.control.no_overflow
665 && (niter = number_of_latch_executions (loop))
666 && !chrec_contains_undetermined (niter)
667 && !chrec_contains_undetermined (scalar_evolution_in_region (scop,
668 loop, niter))
669 && graphite_can_represent_expr (scop, loop, niter);
672 /* Return true when BEGIN is the preheader edge of a loop with a single exit
673 END. */
675 bool
676 scop_detection::region_has_one_loop (sese_l s)
678 edge begin = s.entry;
679 edge end = s.exit;
680 /* Check for a single perfectly nested loop. */
681 if (begin->dest->loop_father->inner)
682 return false;
684 /* Otherwise, check whether we have adjacent loops. */
685 return (single_pred_p (end->src)
686 && begin->dest->loop_father == single_pred (end->src)->loop_father);
689 /* Add to SCOPS a scop starting at SCOP_BEGIN and ending at SCOP_END. */
691 void
692 scop_detection::add_scop (sese_l s)
694 gcc_assert (s);
696 /* Do not add scops with only one loop. */
697 if (region_has_one_loop (s))
699 DEBUG_PRINT (dp << "[scop-detection-fail] Discarding one loop SCoP: ";
700 print_sese (dump_file, s));
701 return;
704 if (get_exit_bb (s) == EXIT_BLOCK_PTR_FOR_FN (cfun))
706 DEBUG_PRINT (dp << "[scop-detection-fail] "
707 << "Discarding SCoP exiting to return: ";
708 print_sese (dump_file, s));
709 return;
712 /* Remove all the scops which are subsumed by s. */
713 remove_subscops (s);
715 /* Remove intersecting scops. FIXME: It will be a good idea to keep
716 the non-intersecting part of the scop already in the list. */
717 remove_intersecting_scops (s);
719 scops.safe_push (s);
720 DEBUG_PRINT (dp << "[scop-detection] Adding SCoP: "; print_sese (dump_file, s));
723 /* Return true when a statement in SCOP cannot be represented by Graphite. */
725 bool
726 scop_detection::harmful_loop_in_region (sese_l scop) const
728 basic_block exit_bb = get_exit_bb (scop);
729 basic_block entry_bb = get_entry_bb (scop);
731 DEBUG_PRINT (dp << "[checking-harmful-bbs] ";
732 print_sese (dump_file, scop));
733 gcc_assert (dominated_by_p (CDI_DOMINATORS, exit_bb, entry_bb));
735 auto_vec<basic_block> worklist;
736 auto_bitmap loops;
738 worklist.safe_push (entry_bb);
739 while (! worklist.is_empty ())
741 basic_block bb = worklist.pop ();
742 DEBUG_PRINT (dp << "Visiting bb_" << bb->index << "\n");
744 /* The basic block should not be part of an irreducible loop. */
745 if (bb->flags & BB_IRREDUCIBLE_LOOP)
746 return true;
748 /* Check for unstructured control flow: CFG not generated by structured
749 if-then-else. */
750 if (bb->succs->length () > 1)
752 edge e;
753 edge_iterator ei;
754 FOR_EACH_EDGE (e, ei, bb->succs)
755 if (!dominated_by_p (CDI_POST_DOMINATORS, bb, e->dest)
756 && !dominated_by_p (CDI_DOMINATORS, e->dest, bb))
757 return true;
760 /* Collect all loops in the current region. */
761 loop_p loop = bb->loop_father;
762 if (loop_in_sese_p (loop, scop))
763 bitmap_set_bit (loops, loop->num);
765 /* Check for harmful statements in basic blocks part of the region. */
766 for (gimple_stmt_iterator gsi = gsi_start_bb (bb);
767 !gsi_end_p (gsi); gsi_next (&gsi))
768 if (!stmt_simple_for_scop_p (scop, gsi_stmt (gsi), bb))
769 return true;
771 if (bb != exit_bb)
772 for (basic_block dom = first_dom_son (CDI_DOMINATORS, bb);
773 dom;
774 dom = next_dom_son (CDI_DOMINATORS, dom))
775 worklist.safe_push (dom);
778 /* Go through all loops and check that they are still valid in the combined
779 scop. */
780 unsigned j;
781 bitmap_iterator bi;
782 EXECUTE_IF_SET_IN_BITMAP (loops, 0, j, bi)
784 loop_p loop = (*current_loops->larray)[j];
785 gcc_assert (loop->num == (int) j);
787 /* Check if the loop nests are to be optimized for speed. */
788 if (! loop->inner
789 && ! optimize_loop_for_speed_p (loop))
791 DEBUG_PRINT (dp << "[scop-detection-fail] loop_"
792 << loop->num << " is not on a hot path.\n");
793 return true;
796 if (! can_represent_loop (loop, scop))
798 DEBUG_PRINT (dp << "[scop-detection-fail] cannot represent loop_"
799 << loop->num << "\n");
800 return true;
803 /* Check if all loop nests have at least one data reference.
804 ??? This check is expensive and loops premature at this point.
805 If important to retain we can pre-compute this for all innermost
806 loops and reject those when we build a SESE region for a loop
807 during SESE discovery. */
808 if (! loop->inner
809 && ! loop_nest_has_data_refs (loop))
811 DEBUG_PRINT (dp << "[scop-detection-fail] loop_" << loop->num
812 << "does not have any data reference.\n");
813 return true;
817 return false;
820 /* Returns true if S1 subsumes/surrounds S2. */
821 bool
822 scop_detection::subsumes (sese_l s1, sese_l s2)
824 if (dominated_by_p (CDI_DOMINATORS, get_entry_bb (s2),
825 get_entry_bb (s1))
826 && dominated_by_p (CDI_POST_DOMINATORS, s2.exit->dest,
827 s1.exit->dest))
828 return true;
829 return false;
832 /* Remove a SCoP which is subsumed by S1. */
833 void
834 scop_detection::remove_subscops (sese_l s1)
836 int j;
837 sese_l *s2;
838 FOR_EACH_VEC_ELT_REVERSE (scops, j, s2)
840 if (subsumes (s1, *s2))
842 DEBUG_PRINT (dp << "Removing sub-SCoP";
843 print_sese (dump_file, *s2));
844 scops.unordered_remove (j);
849 /* Returns true if S1 intersects with S2. Since we already know that S1 does
850 not subsume S2 or vice-versa, we only check for entry bbs. */
852 bool
853 scop_detection::intersects (sese_l s1, sese_l s2)
855 if (dominated_by_p (CDI_DOMINATORS, get_entry_bb (s2),
856 get_entry_bb (s1))
857 && !dominated_by_p (CDI_DOMINATORS, get_entry_bb (s2),
858 get_exit_bb (s1)))
859 return true;
860 if ((s1.exit == s2.entry) || (s2.exit == s1.entry))
861 return true;
863 return false;
866 /* Remove one of the scops when it intersects with any other. */
868 void
869 scop_detection::remove_intersecting_scops (sese_l s1)
871 int j;
872 sese_l *s2;
873 FOR_EACH_VEC_ELT_REVERSE (scops, j, s2)
875 if (intersects (s1, *s2))
877 DEBUG_PRINT (dp << "Removing intersecting SCoP";
878 print_sese (dump_file, *s2);
879 dp << "Intersects with:";
880 print_sese (dump_file, s1));
881 scops.unordered_remove (j);
886 /* Something like "n * m" is not allowed. */
888 bool
889 scop_detection::graphite_can_represent_init (tree e)
891 switch (TREE_CODE (e))
893 case POLYNOMIAL_CHREC:
894 return graphite_can_represent_init (CHREC_LEFT (e))
895 && graphite_can_represent_init (CHREC_RIGHT (e));
897 case MULT_EXPR:
898 if (chrec_contains_symbols (TREE_OPERAND (e, 0)))
899 return graphite_can_represent_init (TREE_OPERAND (e, 0))
900 && tree_fits_shwi_p (TREE_OPERAND (e, 1));
901 else
902 return graphite_can_represent_init (TREE_OPERAND (e, 1))
903 && tree_fits_shwi_p (TREE_OPERAND (e, 0));
905 case PLUS_EXPR:
906 case POINTER_PLUS_EXPR:
907 case MINUS_EXPR:
908 return graphite_can_represent_init (TREE_OPERAND (e, 0))
909 && graphite_can_represent_init (TREE_OPERAND (e, 1));
911 case NEGATE_EXPR:
912 case BIT_NOT_EXPR:
913 CASE_CONVERT:
914 case NON_LVALUE_EXPR:
915 return graphite_can_represent_init (TREE_OPERAND (e, 0));
917 default:
918 break;
921 return true;
924 /* Return true when SCEV can be represented in the polyhedral model.
926 An expression can be represented, if it can be expressed as an
927 affine expression. For loops (i, j) and parameters (m, n) all
928 affine expressions are of the form:
930 x1 * i + x2 * j + x3 * m + x4 * n + x5 * 1 where x1..x5 element of Z
932 1 i + 20 j + (-2) m + 25
934 Something like "i * n" or "n * m" is not allowed. */
936 bool
937 scop_detection::graphite_can_represent_scev (sese_l scop, tree scev)
939 if (chrec_contains_undetermined (scev))
940 return false;
942 switch (TREE_CODE (scev))
944 case NEGATE_EXPR:
945 case BIT_NOT_EXPR:
946 CASE_CONVERT:
947 case NON_LVALUE_EXPR:
948 return graphite_can_represent_scev (scop, TREE_OPERAND (scev, 0));
950 case PLUS_EXPR:
951 case POINTER_PLUS_EXPR:
952 case MINUS_EXPR:
953 return graphite_can_represent_scev (scop, TREE_OPERAND (scev, 0))
954 && graphite_can_represent_scev (scop, TREE_OPERAND (scev, 1));
956 case MULT_EXPR:
957 return !CONVERT_EXPR_CODE_P (TREE_CODE (TREE_OPERAND (scev, 0)))
958 && !CONVERT_EXPR_CODE_P (TREE_CODE (TREE_OPERAND (scev, 1)))
959 && !(chrec_contains_symbols (TREE_OPERAND (scev, 0))
960 && chrec_contains_symbols (TREE_OPERAND (scev, 1)))
961 && graphite_can_represent_init (scev)
962 && graphite_can_represent_scev (scop, TREE_OPERAND (scev, 0))
963 && graphite_can_represent_scev (scop, TREE_OPERAND (scev, 1));
965 case POLYNOMIAL_CHREC:
966 /* Check for constant strides. With a non constant stride of
967 'n' we would have a value of 'iv * n'. Also check that the
968 initial value can represented: for example 'n * m' cannot be
969 represented. */
970 gcc_assert (loop_in_sese_p (get_loop (cfun,
971 CHREC_VARIABLE (scev)), scop));
972 if (!evolution_function_right_is_integer_cst (scev)
973 || !graphite_can_represent_init (scev))
974 return false;
975 return graphite_can_represent_scev (scop, CHREC_LEFT (scev));
977 default:
978 break;
981 /* Only affine functions can be represented. */
982 if (tree_contains_chrecs (scev, NULL) || !scev_is_linear_expression (scev))
983 return false;
985 return true;
988 /* Return true when EXPR can be represented in the polyhedral model.
990 This means an expression can be represented, if it is linear with respect to
991 the loops and the strides are non parametric. LOOP is the place where the
992 expr will be evaluated. SCOP defines the region we analyse. */
994 bool
995 scop_detection::graphite_can_represent_expr (sese_l scop, loop_p loop,
996 tree expr)
998 tree scev = scalar_evolution_in_region (scop, loop, expr);
999 return graphite_can_represent_scev (scop, scev);
1002 /* Return true if the data references of STMT can be represented by Graphite.
1003 We try to analyze the data references in a loop contained in the SCOP. */
1005 bool
1006 scop_detection::stmt_has_simple_data_refs_p (sese_l scop, gimple *stmt)
1008 edge nest;
1009 loop_p loop = loop_containing_stmt (stmt);
1010 if (!loop_in_sese_p (loop, scop))
1012 nest = scop.entry;
1013 loop = NULL;
1015 else
1016 nest = loop_preheader_edge (outermost_loop_in_sese (scop, gimple_bb (stmt)));
1018 auto_vec<data_reference_p> drs;
1019 if (! graphite_find_data_references_in_stmt (nest, loop, stmt, &drs))
1020 return false;
1022 int j;
1023 data_reference_p dr;
1024 FOR_EACH_VEC_ELT (drs, j, dr)
1026 for (unsigned i = 0; i < DR_NUM_DIMENSIONS (dr); ++i)
1027 if (! graphite_can_represent_scev (scop, DR_ACCESS_FN (dr, i)))
1028 return false;
1031 return true;
1034 /* GIMPLE_ASM and GIMPLE_CALL may embed arbitrary side effects.
1035 Calls have side-effects, except those to const or pure
1036 functions. */
1038 static bool
1039 stmt_has_side_effects (gimple *stmt)
1041 if (gimple_has_volatile_ops (stmt)
1042 || (gimple_code (stmt) == GIMPLE_CALL
1043 && !(gimple_call_flags (stmt) & (ECF_CONST | ECF_PURE)))
1044 || (gimple_code (stmt) == GIMPLE_ASM))
1046 DEBUG_PRINT (dp << "[scop-detection-fail] "
1047 << "Statement has side-effects:\n";
1048 print_gimple_stmt (dump_file, stmt, 0, TDF_VOPS | TDF_MEMSYMS));
1049 return true;
1051 return false;
1054 /* Return true only when STMT is simple enough for being handled by Graphite.
1055 This depends on SCOP, as the parameters are initialized relatively to
1056 this basic block, the linear functions are initialized based on the outermost
1057 loop containing STMT inside the SCOP. BB is the place where we try to
1058 evaluate the STMT. */
1060 bool
1061 scop_detection::stmt_simple_for_scop_p (sese_l scop, gimple *stmt,
1062 basic_block bb) const
1064 gcc_assert (scop);
1066 if (is_gimple_debug (stmt))
1067 return true;
1069 if (stmt_has_side_effects (stmt))
1070 return false;
1072 if (!stmt_has_simple_data_refs_p (scop, stmt))
1074 DEBUG_PRINT (dp << "[scop-detection-fail] "
1075 << "Graphite cannot handle data-refs in stmt:\n";
1076 print_gimple_stmt (dump_file, stmt, 0, TDF_VOPS|TDF_MEMSYMS););
1077 return false;
1080 switch (gimple_code (stmt))
1082 case GIMPLE_LABEL:
1083 return true;
1085 case GIMPLE_COND:
1087 /* We can handle all binary comparisons. Inequalities are
1088 also supported as they can be represented with union of
1089 polyhedra. */
1090 enum tree_code code = gimple_cond_code (stmt);
1091 if (!(code == LT_EXPR
1092 || code == GT_EXPR
1093 || code == LE_EXPR
1094 || code == GE_EXPR
1095 || code == EQ_EXPR
1096 || code == NE_EXPR))
1098 DEBUG_PRINT (dp << "[scop-detection-fail] "
1099 << "Graphite cannot handle cond stmt:\n";
1100 print_gimple_stmt (dump_file, stmt, 0,
1101 TDF_VOPS | TDF_MEMSYMS));
1102 return false;
1105 loop_p loop = bb->loop_father;
1106 for (unsigned i = 0; i < 2; ++i)
1108 tree op = gimple_op (stmt, i);
1109 if (!graphite_can_represent_expr (scop, loop, op)
1110 /* We can only constrain on integer type. */
1111 || (TREE_CODE (TREE_TYPE (op)) != INTEGER_TYPE))
1113 DEBUG_PRINT (dp << "[scop-detection-fail] "
1114 << "Graphite cannot represent stmt:\n";
1115 print_gimple_stmt (dump_file, stmt, 0,
1116 TDF_VOPS | TDF_MEMSYMS));
1117 return false;
1121 return true;
1124 case GIMPLE_ASSIGN:
1125 case GIMPLE_CALL:
1126 return true;
1128 default:
1129 /* These nodes cut a new scope. */
1130 DEBUG_PRINT (
1131 dp << "[scop-detection-fail] "
1132 << "Gimple stmt not handled in Graphite:\n";
1133 print_gimple_stmt (dump_file, stmt, 0, TDF_VOPS | TDF_MEMSYMS));
1134 return false;
1138 /* Returns the number of pbbs that are in loops contained in SCOP. */
1141 scop_detection::nb_pbbs_in_loops (scop_p scop)
1143 int i;
1144 poly_bb_p pbb;
1145 int res = 0;
1147 FOR_EACH_VEC_ELT (scop->pbbs, i, pbb)
1148 if (loop_in_sese_p (gbb_loop (PBB_BLACK_BOX (pbb)), scop->scop_info->region))
1149 res++;
1151 return res;
1154 /* When parameter NAME is in REGION, returns its index in SESE_PARAMS.
1155 Otherwise returns -1. */
1157 static inline int
1158 parameter_index_in_region_1 (tree name, sese_info_p region)
1160 int i;
1161 tree p;
1163 gcc_assert (TREE_CODE (name) == SSA_NAME);
1165 FOR_EACH_VEC_ELT (region->params, i, p)
1166 if (p == name)
1167 return i;
1169 return -1;
1172 /* When the parameter NAME is in REGION, returns its index in
1173 SESE_PARAMS. Otherwise this function inserts NAME in SESE_PARAMS
1174 and returns the index of NAME. */
1176 static int
1177 parameter_index_in_region (tree name, sese_info_p region)
1179 int i;
1181 gcc_assert (TREE_CODE (name) == SSA_NAME);
1183 /* Cannot constrain on anything else than INTEGER_TYPE parameters. */
1184 if (TREE_CODE (TREE_TYPE (name)) != INTEGER_TYPE)
1185 return -1;
1187 if (!invariant_in_sese_p_rec (name, region->region, NULL))
1188 return -1;
1190 i = parameter_index_in_region_1 (name, region);
1191 if (i != -1)
1192 return i;
1194 i = region->params.length ();
1195 region->params.safe_push (name);
1196 return i;
1199 /* In the context of sese S, scan the expression E and translate it to
1200 a linear expression C. When parsing a symbolic multiplication, K
1201 represents the constant multiplier of an expression containing
1202 parameters. */
1204 static void
1205 scan_tree_for_params (sese_info_p s, tree e)
1207 if (e == chrec_dont_know)
1208 return;
1210 switch (TREE_CODE (e))
1212 case POLYNOMIAL_CHREC:
1213 scan_tree_for_params (s, CHREC_LEFT (e));
1214 break;
1216 case MULT_EXPR:
1217 if (chrec_contains_symbols (TREE_OPERAND (e, 0)))
1218 scan_tree_for_params (s, TREE_OPERAND (e, 0));
1219 else
1220 scan_tree_for_params (s, TREE_OPERAND (e, 1));
1221 break;
1223 case PLUS_EXPR:
1224 case POINTER_PLUS_EXPR:
1225 case MINUS_EXPR:
1226 scan_tree_for_params (s, TREE_OPERAND (e, 0));
1227 scan_tree_for_params (s, TREE_OPERAND (e, 1));
1228 break;
1230 case NEGATE_EXPR:
1231 case BIT_NOT_EXPR:
1232 CASE_CONVERT:
1233 case NON_LVALUE_EXPR:
1234 scan_tree_for_params (s, TREE_OPERAND (e, 0));
1235 break;
1237 case SSA_NAME:
1238 parameter_index_in_region (e, s);
1239 break;
1241 case INTEGER_CST:
1242 case ADDR_EXPR:
1243 case REAL_CST:
1244 case COMPLEX_CST:
1245 case VECTOR_CST:
1246 break;
1248 default:
1249 gcc_unreachable ();
1250 break;
1254 /* Find parameters with respect to REGION in BB. We are looking in memory
1255 access functions, conditions and loop bounds. */
1257 static void
1258 find_params_in_bb (sese_info_p region, gimple_poly_bb_p gbb)
1260 /* Find parameters in the access functions of data references. */
1261 int i;
1262 data_reference_p dr;
1263 FOR_EACH_VEC_ELT (GBB_DATA_REFS (gbb), i, dr)
1264 for (unsigned j = 0; j < DR_NUM_DIMENSIONS (dr); j++)
1265 scan_tree_for_params (region, DR_ACCESS_FN (dr, j));
1267 /* Find parameters in conditional statements. */
1268 gimple *stmt;
1269 loop_p loop = GBB_BB (gbb)->loop_father;
1270 FOR_EACH_VEC_ELT (GBB_CONDITIONS (gbb), i, stmt)
1272 tree lhs = scalar_evolution_in_region (region->region, loop,
1273 gimple_cond_lhs (stmt));
1274 tree rhs = scalar_evolution_in_region (region->region, loop,
1275 gimple_cond_rhs (stmt));
1277 scan_tree_for_params (region, lhs);
1278 scan_tree_for_params (region, rhs);
1282 /* Record the parameters used in the SCOP BBs. A variable is a parameter
1283 in a scop if it does not vary during the execution of that scop. */
1285 static void
1286 find_scop_parameters (scop_p scop)
1288 unsigned i;
1289 sese_info_p region = scop->scop_info;
1291 /* Parameters used in loop bounds are processed during gather_bbs. */
1293 /* Find the parameters used in data accesses. */
1294 poly_bb_p pbb;
1295 FOR_EACH_VEC_ELT (scop->pbbs, i, pbb)
1296 find_params_in_bb (region, PBB_BLACK_BOX (pbb));
1298 int nbp = sese_nb_params (region);
1299 scop_set_nb_params (scop, nbp);
1302 static void
1303 add_write (vec<tree> *writes, tree def)
1305 writes->safe_push (def);
1306 DEBUG_PRINT (dp << "Adding scalar write: ";
1307 print_generic_expr (dump_file, def);
1308 dp << "\nFrom stmt: ";
1309 print_gimple_stmt (dump_file,
1310 SSA_NAME_DEF_STMT (def), 0));
1313 static void
1314 add_read (vec<scalar_use> *reads, tree use, gimple *use_stmt)
1316 DEBUG_PRINT (dp << "Adding scalar read: ";
1317 print_generic_expr (dump_file, use);
1318 dp << "\nFrom stmt: ";
1319 print_gimple_stmt (dump_file, use_stmt, 0));
1320 reads->safe_push (std::make_pair (use_stmt, use));
1324 /* Record DEF if it is used in other bbs different than DEF_BB in the SCOP. */
1326 static void
1327 build_cross_bb_scalars_def (scop_p scop, tree def, basic_block def_bb,
1328 vec<tree> *writes)
1330 if (!is_gimple_reg (def))
1331 return;
1333 bool scev_analyzable = scev_analyzable_p (def, scop->scop_info->region);
1335 gimple *use_stmt;
1336 imm_use_iterator imm_iter;
1337 FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, def)
1338 /* Do not gather scalar variables that can be analyzed by SCEV as they can
1339 be generated out of the induction variables. */
1340 if ((! scev_analyzable
1341 /* But gather SESE liveouts as we otherwise fail to rewrite their
1342 exit PHIs. */
1343 || ! bb_in_sese_p (gimple_bb (use_stmt), scop->scop_info->region))
1344 && (def_bb != gimple_bb (use_stmt) && !is_gimple_debug (use_stmt)))
1346 add_write (writes, def);
1347 /* This is required by the FOR_EACH_IMM_USE_STMT when we want to break
1348 before all the uses have been visited. */
1349 BREAK_FROM_IMM_USE_STMT (imm_iter);
1353 /* Record USE if it is defined in other bbs different than USE_STMT
1354 in the SCOP. */
1356 static void
1357 build_cross_bb_scalars_use (scop_p scop, tree use, gimple *use_stmt,
1358 vec<scalar_use> *reads)
1360 if (!is_gimple_reg (use))
1361 return;
1363 /* Do not gather scalar variables that can be analyzed by SCEV as they can be
1364 generated out of the induction variables. */
1365 if (scev_analyzable_p (use, scop->scop_info->region))
1366 return;
1368 gimple *def_stmt = SSA_NAME_DEF_STMT (use);
1369 if (gimple_bb (def_stmt) != gimple_bb (use_stmt))
1370 add_read (reads, use, use_stmt);
1373 /* Generates a polyhedral black box only if the bb contains interesting
1374 information. */
1376 static gimple_poly_bb_p
1377 try_generate_gimple_bb (scop_p scop, basic_block bb)
1379 vec<data_reference_p> drs = vNULL;
1380 vec<tree> writes = vNULL;
1381 vec<scalar_use> reads = vNULL;
1383 sese_l region = scop->scop_info->region;
1384 edge nest;
1385 loop_p loop = bb->loop_father;
1386 if (!loop_in_sese_p (loop, region))
1388 nest = region.entry;
1389 loop = NULL;
1391 else
1392 nest = loop_preheader_edge (outermost_loop_in_sese (region, bb));
1394 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
1395 gsi_next (&gsi))
1397 gimple *stmt = gsi_stmt (gsi);
1398 if (is_gimple_debug (stmt))
1399 continue;
1401 graphite_find_data_references_in_stmt (nest, loop, stmt, &drs);
1403 tree def = gimple_get_lhs (stmt);
1404 if (def)
1405 build_cross_bb_scalars_def (scop, def, gimple_bb (stmt), &writes);
1407 ssa_op_iter iter;
1408 tree use;
1409 FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE)
1410 build_cross_bb_scalars_use (scop, use, stmt, &reads);
1413 /* Handle defs and uses in PHIs. Those need special treatment given
1414 that we have to present ISL with sth that looks like we've rewritten
1415 the IL out-of-SSA. */
1416 for (gphi_iterator psi = gsi_start_phis (bb); !gsi_end_p (psi);
1417 gsi_next (&psi))
1419 gphi *phi = psi.phi ();
1420 tree res = gimple_phi_result (phi);
1421 if (virtual_operand_p (res)
1422 || scev_analyzable_p (res, scop->scop_info->region))
1423 continue;
1424 /* To simulate out-of-SSA the block containing the PHI node has
1425 reads of the PHI destination. And to preserve SSA dependences
1426 we also write to it (the out-of-SSA decl and the SSA result
1427 are coalesced for dependence purposes which is good enough). */
1428 add_read (&reads, res, phi);
1429 add_write (&writes, res);
1431 basic_block bb_for_succs = bb;
1432 if (bb_for_succs == bb_for_succs->loop_father->latch
1433 && bb_in_sese_p (bb_for_succs, scop->scop_info->region)
1434 && sese_trivially_empty_bb_p (bb_for_succs))
1435 bb_for_succs = NULL;
1436 while (bb_for_succs)
1438 basic_block latch = NULL;
1439 edge_iterator ei;
1440 edge e;
1441 FOR_EACH_EDGE (e, ei, bb_for_succs->succs)
1443 for (gphi_iterator psi = gsi_start_phis (e->dest); !gsi_end_p (psi);
1444 gsi_next (&psi))
1446 gphi *phi = psi.phi ();
1447 tree res = gimple_phi_result (phi);
1448 if (virtual_operand_p (res))
1449 continue;
1450 /* To simulate out-of-SSA the predecessor of edges into PHI nodes
1451 has a copy from the PHI argument to the PHI destination. */
1452 if (! scev_analyzable_p (res, scop->scop_info->region))
1453 add_write (&writes, res);
1454 tree use = PHI_ARG_DEF_FROM_EDGE (phi, e);
1455 if (TREE_CODE (use) == SSA_NAME
1456 && ! SSA_NAME_IS_DEFAULT_DEF (use)
1457 && gimple_bb (SSA_NAME_DEF_STMT (use)) != bb_for_succs
1458 && ! scev_analyzable_p (use, scop->scop_info->region))
1459 add_read (&reads, use, phi);
1461 if (e->dest == bb_for_succs->loop_father->latch
1462 && bb_in_sese_p (e->dest, scop->scop_info->region)
1463 && sese_trivially_empty_bb_p (e->dest))
1464 latch = e->dest;
1466 /* Handle empty latch block PHIs here, otherwise we confuse ISL
1467 with extra conditional code where it then peels off the last
1468 iteration just because of that. It would be simplest if we
1469 just didn't force simple latches (thus remove the forwarder). */
1470 bb_for_succs = latch;
1473 /* For the region exit block add reads for all live-out vars. */
1474 if (bb == scop->scop_info->region.exit->src)
1476 sese_build_liveouts (scop->scop_info);
1477 unsigned i;
1478 bitmap_iterator bi;
1479 EXECUTE_IF_SET_IN_BITMAP (scop->scop_info->liveout, 0, i, bi)
1481 tree use = ssa_name (i);
1482 add_read (&reads, use, NULL);
1486 if (drs.is_empty () && writes.is_empty () && reads.is_empty ())
1487 return NULL;
1489 return new_gimple_poly_bb (bb, drs, reads, writes);
1492 /* Compute alias-sets for all data references in DRS. */
1494 static bool
1495 build_alias_set (scop_p scop)
1497 int num_vertices = scop->drs.length ();
1498 struct graph *g = new_graph (num_vertices);
1499 dr_info *dr1, *dr2;
1500 int i, j;
1501 int *all_vertices;
1503 FOR_EACH_VEC_ELT (scop->drs, i, dr1)
1504 for (j = i+1; scop->drs.iterate (j, &dr2); j++)
1505 if (dr_may_alias_p (dr1->dr, dr2->dr, true))
1507 /* Dependences in the same alias set need to be handled
1508 by just looking at DR_ACCESS_FNs. */
1509 if (DR_NUM_DIMENSIONS (dr1->dr) == 0
1510 || DR_NUM_DIMENSIONS (dr1->dr) != DR_NUM_DIMENSIONS (dr2->dr)
1511 || ! operand_equal_p (DR_BASE_OBJECT (dr1->dr),
1512 DR_BASE_OBJECT (dr2->dr),
1513 OEP_ADDRESS_OF)
1514 || ! types_compatible_p (TREE_TYPE (DR_BASE_OBJECT (dr1->dr)),
1515 TREE_TYPE (DR_BASE_OBJECT (dr2->dr))))
1517 free_graph (g);
1518 return false;
1520 add_edge (g, i, j);
1521 add_edge (g, j, i);
1524 all_vertices = XNEWVEC (int, num_vertices);
1525 for (i = 0; i < num_vertices; i++)
1526 all_vertices[i] = i;
1528 scop->max_alias_set
1529 = graphds_dfs (g, all_vertices, num_vertices, NULL, true, NULL) + 1;
1530 free (all_vertices);
1532 for (i = 0; i < g->n_vertices; i++)
1533 scop->drs[i].alias_set = g->vertices[i].component + 1;
1535 free_graph (g);
1536 return true;
1539 /* Gather BBs and conditions for a SCOP. */
1540 class gather_bbs : public dom_walker
1542 public:
1543 gather_bbs (cdi_direction, scop_p, int *);
1545 virtual edge before_dom_children (basic_block);
1546 virtual void after_dom_children (basic_block);
1548 private:
1549 auto_vec<gimple *, 3> conditions, cases;
1550 scop_p scop;
1553 gather_bbs::gather_bbs (cdi_direction direction, scop_p scop, int *bb_to_rpo)
1554 : dom_walker (direction, false, bb_to_rpo), scop (scop)
1558 /* Call-back for dom_walk executed before visiting the dominated
1559 blocks. */
1561 edge
1562 gather_bbs::before_dom_children (basic_block bb)
1564 sese_info_p region = scop->scop_info;
1565 if (!bb_in_sese_p (bb, region->region))
1566 return dom_walker::STOP;
1568 /* For loops fully contained in the region record parameters in the
1569 loop bounds. */
1570 loop_p loop = bb->loop_father;
1571 if (loop->header == bb
1572 && loop_in_sese_p (loop, region->region))
1574 tree nb_iters = number_of_latch_executions (loop);
1575 if (chrec_contains_symbols (nb_iters))
1577 nb_iters = scalar_evolution_in_region (region->region,
1578 loop, nb_iters);
1579 scan_tree_for_params (region, nb_iters);
1583 gcond *stmt = single_pred_cond_non_loop_exit (bb);
1585 if (stmt)
1587 edge e = single_pred_edge (bb);
1589 conditions.safe_push (stmt);
1591 if (e->flags & EDGE_TRUE_VALUE)
1592 cases.safe_push (stmt);
1593 else
1594 cases.safe_push (NULL);
1597 scop->scop_info->bbs.safe_push (bb);
1599 gimple_poly_bb_p gbb = try_generate_gimple_bb (scop, bb);
1600 if (!gbb)
1601 return NULL;
1603 GBB_CONDITIONS (gbb) = conditions.copy ();
1604 GBB_CONDITION_CASES (gbb) = cases.copy ();
1606 poly_bb_p pbb = new_poly_bb (scop, gbb);
1607 scop->pbbs.safe_push (pbb);
1609 int i;
1610 data_reference_p dr;
1611 FOR_EACH_VEC_ELT (gbb->data_refs, i, dr)
1613 DEBUG_PRINT (dp << "Adding memory ";
1614 if (dr->is_read)
1615 dp << "read: ";
1616 else
1617 dp << "write: ";
1618 print_generic_expr (dump_file, dr->ref);
1619 dp << "\nFrom stmt: ";
1620 print_gimple_stmt (dump_file, dr->stmt, 0));
1622 scop->drs.safe_push (dr_info (dr, pbb));
1625 return NULL;
1628 /* Call-back for dom_walk executed after visiting the dominated
1629 blocks. */
1631 void
1632 gather_bbs::after_dom_children (basic_block bb)
1634 if (!bb_in_sese_p (bb, scop->scop_info->region))
1635 return;
1637 if (single_pred_cond_non_loop_exit (bb))
1639 conditions.pop ();
1640 cases.pop ();
1645 /* Compute sth like an execution order, dominator order with first executing
1646 edges that stay inside the current loop, delaying processing exit edges. */
1648 static vec<unsigned> order;
1650 static void
1651 get_order (scop_p scop, basic_block bb, vec<unsigned> *order, unsigned *dfs_num)
1653 if (! bb_in_sese_p (bb, scop->scop_info->region))
1654 return;
1656 (*order)[bb->index] = (*dfs_num)++;
1657 for (basic_block son = first_dom_son (CDI_DOMINATORS, bb);
1658 son;
1659 son = next_dom_son (CDI_DOMINATORS, son))
1660 if (flow_bb_inside_loop_p (bb->loop_father, son))
1661 get_order (scop, son, order, dfs_num);
1662 for (basic_block son = first_dom_son (CDI_DOMINATORS, bb);
1663 son;
1664 son = next_dom_son (CDI_DOMINATORS, son))
1665 if (! flow_bb_inside_loop_p (bb->loop_father, son))
1666 get_order (scop, son, order, dfs_num);
1669 /* Helper for qsort, sorting after order above. */
1671 static int
1672 cmp_pbbs (const void *pa, const void *pb)
1674 poly_bb_p bb1 = *((const poly_bb_p *)pa);
1675 poly_bb_p bb2 = *((const poly_bb_p *)pb);
1676 if (order[bb1->black_box->bb->index] < order[bb2->black_box->bb->index])
1677 return -1;
1678 else if (order[bb1->black_box->bb->index] > order[bb2->black_box->bb->index])
1679 return 1;
1680 else
1681 return 0;
1684 /* Find Static Control Parts (SCoP) in the current function and pushes
1685 them to SCOPS. */
1687 void
1688 build_scops (vec<scop_p> *scops)
1690 if (dump_file)
1691 dp.set_dump_file (dump_file);
1693 scop_detection sb;
1694 sb.build_scop_depth (current_loops->tree_root);
1696 /* Now create scops from the lightweight SESEs. */
1697 vec<sese_l> scops_l = sb.get_scops ();
1699 /* Domwalk needs a bb to RPO mapping. Compute it once here. */
1700 int *postorder = XNEWVEC (int, n_basic_blocks_for_fn (cfun));
1701 int postorder_num = pre_and_rev_post_order_compute (NULL, postorder, true);
1702 int *bb_to_rpo = XNEWVEC (int, last_basic_block_for_fn (cfun));
1703 for (int i = 0; i < postorder_num; ++i)
1704 bb_to_rpo[postorder[i]] = i;
1705 free (postorder);
1707 int i;
1708 sese_l *s;
1709 FOR_EACH_VEC_ELT (scops_l, i, s)
1711 /* For our out-of-SSA we need a block on s->entry, similar to how
1712 we include the LCSSA block in the region. */
1713 s->entry = single_pred_edge (split_edge (s->entry));
1715 scop_p scop = new_scop (s->entry, s->exit);
1717 /* Record all basic blocks and their conditions in REGION. */
1718 gather_bbs (CDI_DOMINATORS, scop, bb_to_rpo).walk (s->entry->dest);
1720 /* domwalk does not fulfil our code-generations constraints on the
1721 order of pbb which is to produce sth like execution order, delaying
1722 exection of loop exit edges. So compute such order and sort after
1723 that. */
1724 order.create (last_basic_block_for_fn (cfun));
1725 order.quick_grow (last_basic_block_for_fn (cfun));
1726 unsigned dfs_num = 0;
1727 get_order (scop, s->entry->dest, &order, &dfs_num);
1728 scop->pbbs.qsort (cmp_pbbs);
1729 order.release ();
1731 if (! build_alias_set (scop))
1733 DEBUG_PRINT (dp << "[scop-detection-fail] cannot handle dependences\n");
1734 free_scop (scop);
1735 continue;
1738 /* Do not optimize a scop containing only PBBs that do not belong
1739 to any loops. */
1740 if (sb.nb_pbbs_in_loops (scop) == 0)
1742 DEBUG_PRINT (dp << "[scop-detection-fail] no data references.\n");
1743 free_scop (scop);
1744 continue;
1747 unsigned max_arrays = PARAM_VALUE (PARAM_GRAPHITE_MAX_ARRAYS_PER_SCOP);
1748 if (max_arrays > 0
1749 && scop->drs.length () >= max_arrays)
1751 DEBUG_PRINT (dp << "[scop-detection-fail] too many data references: "
1752 << scop->drs.length ()
1753 << " is larger than --param graphite-max-arrays-per-scop="
1754 << max_arrays << ".\n");
1755 free_scop (scop);
1756 continue;
1759 find_scop_parameters (scop);
1760 graphite_dim_t max_dim = PARAM_VALUE (PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS);
1761 if (max_dim > 0
1762 && scop_nb_params (scop) > max_dim)
1764 DEBUG_PRINT (dp << "[scop-detection-fail] too many parameters: "
1765 << scop_nb_params (scop)
1766 << " larger than --param graphite-max-nb-scop-params="
1767 << max_dim << ".\n");
1768 free_scop (scop);
1769 continue;
1772 scops->safe_push (scop);
1775 free (bb_to_rpo);
1776 DEBUG_PRINT (dp << "number of SCoPs: " << (scops ? scops->length () : 0););
1779 #endif /* HAVE_isl */