1 //===- IslAst.cpp - isl code generator interface --------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // The isl code generator interface takes a Scop and generates an isl_ast. This
11 // ist_ast can either be returned directly or it can be pretty printed to
12 // stdout.
13 //
14 // A typical isl_ast output looks like this:
15 //
16 // for (c2 = max(0, ceild(n + m, 2); c2 <= min(511, floord(5 * n, 3)); c2++) {
17 //   bb2(c2);
18 // }
19 //
20 // An in-depth discussion of our AST generation approach can be found in:
21 //
22 // Polyhedral AST generation is more than scanning polyhedra
23 // Tobias Grosser, Sven Verdoolaege, Albert Cohen
24 // ACM Transactions on Programming Languages and Systems (TOPLAS),
25 // 37(4), July 2015
26 // http://www.grosser.es/#pub-polyhedral-AST-generation
27 //
28 //===----------------------------------------------------------------------===//
29 
30 #include "polly/CodeGen/IslAst.h"
31 #include "polly/CodeGen/CodeGeneration.h"
32 #include "polly/DependenceInfo.h"
33 #include "polly/LinkAllPasses.h"
34 #include "polly/Options.h"
35 #include "polly/ScopDetection.h"
36 #include "polly/ScopInfo.h"
37 #include "polly/ScopPass.h"
38 #include "polly/Support/GICHelper.h"
39 #include "llvm/ADT/Statistic.h"
40 #include "llvm/IR/Function.h"
41 #include "llvm/Pass.h"
42 #include "llvm/Support/CommandLine.h"
43 #include "llvm/Support/Debug.h"
44 #include "llvm/Support/raw_ostream.h"
45 #include "isl/aff.h"
46 #include "isl/ast.h"
47 #include "isl/ast_build.h"
48 #include "isl/id.h"
49 #include "isl/isl-noexceptions.h"
50 #include "isl/map.h"
51 #include "isl/printer.h"
52 #include "isl/schedule.h"
53 #include "isl/set.h"
54 #include "isl/union_map.h"
55 #include "isl/val.h"
56 #include <cassert>
57 #include <cstdlib>
58 #include <cstring>
59 #include <map>
60 #include <string>
61 #include <utility>
62 
63 #define DEBUG_TYPE "polly-ast"
64 
65 using namespace llvm;
66 using namespace polly;
67 
68 using IslAstUserPayload = IslAstInfo::IslAstUserPayload;
69 
70 static cl::opt<bool>
71     PollyParallel("polly-parallel",
72                   cl::desc("Generate thread parallel code (isl codegen only)"),
73                   cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
74 
75 static cl::opt<bool> PrintAccesses("polly-ast-print-accesses",
76                                    cl::desc("Print memory access functions"),
77                                    cl::init(false), cl::ZeroOrMore,
78                                    cl::cat(PollyCategory));
79 
80 static cl::opt<bool> PollyParallelForce(
81     "polly-parallel-force",
82     cl::desc(
83         "Force generation of thread parallel code ignoring any cost model"),
84     cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
85 
86 static cl::opt<bool> UseContext("polly-ast-use-context",
87                                 cl::desc("Use context"), cl::Hidden,
88                                 cl::init(true), cl::ZeroOrMore,
89                                 cl::cat(PollyCategory));
90 
91 static cl::opt<bool> DetectParallel("polly-ast-detect-parallel",
92                                     cl::desc("Detect parallelism"), cl::Hidden,
93                                     cl::init(false), cl::ZeroOrMore,
94                                     cl::cat(PollyCategory));
95 
96 STATISTIC(ScopsProcessed, "Number of SCoPs processed");
97 STATISTIC(ScopsBeneficial, "Number of beneficial SCoPs");
98 STATISTIC(BeneficialAffineLoops, "Number of beneficial affine loops");
99 STATISTIC(BeneficialBoxedLoops, "Number of beneficial boxed loops");
100 
101 STATISTIC(NumForLoops, "Number of for-loops");
102 STATISTIC(NumParallel, "Number of parallel for-loops");
103 STATISTIC(NumInnermostParallel, "Number of innermost parallel for-loops");
104 STATISTIC(NumOutermostParallel, "Number of outermost parallel for-loops");
105 STATISTIC(NumReductionParallel, "Number of reduction-parallel for-loops");
106 STATISTIC(NumExecutedInParallel, "Number of for-loops executed in parallel");
107 STATISTIC(NumIfConditions, "Number of if-conditions");
108 
109 namespace polly {
110 
111 /// Temporary information used when building the ast.
112 struct AstBuildUserInfo {
113   /// Construct and initialize the helper struct for AST creation.
114   AstBuildUserInfo() = default;
115 
116   /// The dependence information used for the parallelism check.
117   const Dependences *Deps = nullptr;
118 
119   /// Flag to indicate that we are inside a parallel for node.
120   bool InParallelFor = false;
121 
122   /// The last iterator id created for the current SCoP.
123   isl_id *LastForNodeId = nullptr;
124 };
125 
126 } // namespace polly
127 
128 /// Free an IslAstUserPayload object pointed to by @p Ptr.
129 static void freeIslAstUserPayload(void *Ptr) {
130   delete ((IslAstInfo::IslAstUserPayload *)Ptr);
131 }
132 
133 IslAstInfo::IslAstUserPayload::~IslAstUserPayload() {
134   isl_ast_build_free(Build);
135   isl_pw_aff_free(MinimalDependenceDistance);
136 }
137 
138 /// Print a string @p str in a single line using @p Printer.
139 static isl_printer *printLine(__isl_take isl_printer *Printer,
140                               const std::string &str,
141                               __isl_keep isl_pw_aff *PWA = nullptr) {
142   Printer = isl_printer_start_line(Printer);
143   Printer = isl_printer_print_str(Printer, str.c_str());
144   if (PWA)
145     Printer = isl_printer_print_pw_aff(Printer, PWA);
146   return isl_printer_end_line(Printer);
147 }
148 
149 /// Return all broken reductions as a string of clauses (OpenMP style).
150 static const std::string getBrokenReductionsStr(__isl_keep isl_ast_node *Node) {
151   IslAstInfo::MemoryAccessSet *BrokenReductions;
152   std::string str;
153 
154   BrokenReductions = IslAstInfo::getBrokenReductions(Node);
155   if (!BrokenReductions || BrokenReductions->empty())
156     return "";
157 
158   // Map each type of reduction to a comma separated list of the base addresses.
159   std::map<MemoryAccess::ReductionType, std::string> Clauses;
160   for (MemoryAccess *MA : *BrokenReductions)
161     if (MA->isWrite())
162       Clauses[MA->getReductionType()] +=
163           ", " + MA->getScopArrayInfo()->getName();
164 
165   // Now print the reductions sorted by type. Each type will cause a clause
166   // like:  reduction (+ : sum0, sum1, sum2)
167   for (const auto &ReductionClause : Clauses) {
168     str += " reduction (";
169     str += MemoryAccess::getReductionOperatorStr(ReductionClause.first);
170     // Remove the first two symbols (", ") to make the output look pretty.
171     str += " : " + ReductionClause.second.substr(2) + ")";
172   }
173 
174   return str;
175 }
176 
177 /// Callback executed for each for node in the ast in order to print it.
178 static isl_printer *cbPrintFor(__isl_take isl_printer *Printer,
179                                __isl_take isl_ast_print_options *Options,
180                                __isl_keep isl_ast_node *Node, void *) {
181   isl_pw_aff *DD = IslAstInfo::getMinimalDependenceDistance(Node);
182   const std::string BrokenReductionsStr = getBrokenReductionsStr(Node);
183   const std::string KnownParallelStr = "#pragma known-parallel";
184   const std::string DepDisPragmaStr = "#pragma minimal dependence distance: ";
185   const std::string SimdPragmaStr = "#pragma simd";
186   const std::string OmpPragmaStr = "#pragma omp parallel for";
187 
188   if (DD)
189     Printer = printLine(Printer, DepDisPragmaStr, DD);
190 
191   if (IslAstInfo::isInnermostParallel(Node))
192     Printer = printLine(Printer, SimdPragmaStr + BrokenReductionsStr);
193 
194   if (IslAstInfo::isExecutedInParallel(Node))
195     Printer = printLine(Printer, OmpPragmaStr);
196   else if (IslAstInfo::isOutermostParallel(Node))
197     Printer = printLine(Printer, KnownParallelStr + BrokenReductionsStr);
198 
199   isl_pw_aff_free(DD);
200   return isl_ast_node_for_print(Node, Printer, Options);
201 }
202 
203 /// Check if the current scheduling dimension is parallel.
204 ///
205 /// In case the dimension is parallel we also check if any reduction
206 /// dependences is broken when we exploit this parallelism. If so,
207 /// @p IsReductionParallel will be set to true. The reduction dependences we use
208 /// to check are actually the union of the transitive closure of the initial
209 /// reduction dependences together with their reversal. Even though these
210 /// dependences connect all iterations with each other (thus they are cyclic)
211 /// we can perform the parallelism check as we are only interested in a zero
212 /// (or non-zero) dependence distance on the dimension in question.
213 static bool astScheduleDimIsParallel(__isl_keep isl_ast_build *Build,
214                                      const Dependences *D,
215                                      IslAstUserPayload *NodeInfo) {
216   if (!D->hasValidDependences())
217     return false;
218 
219   isl_union_map *Schedule = isl_ast_build_get_schedule(Build);
220   isl_union_map *Deps = D->getDependences(
221       Dependences::TYPE_RAW | Dependences::TYPE_WAW | Dependences::TYPE_WAR);
222 
223   if (!D->isParallel(Schedule, Deps, &NodeInfo->MinimalDependenceDistance) &&
224       !isl_union_map_free(Schedule))
225     return false;
226 
227   isl_union_map *RedDeps = D->getDependences(Dependences::TYPE_TC_RED);
228   if (!D->isParallel(Schedule, RedDeps))
229     NodeInfo->IsReductionParallel = true;
230 
231   if (!NodeInfo->IsReductionParallel && !isl_union_map_free(Schedule))
232     return true;
233 
234   // Annotate reduction parallel nodes with the memory accesses which caused the
235   // reduction dependences parallel execution of the node conflicts with.
236   for (const auto &MaRedPair : D->getReductionDependences()) {
237     if (!MaRedPair.second)
238       continue;
239     RedDeps = isl_union_map_from_map(isl_map_copy(MaRedPair.second));
240     if (!D->isParallel(Schedule, RedDeps))
241       NodeInfo->BrokenReductions.insert(MaRedPair.first);
242   }
243 
244   isl_union_map_free(Schedule);
245   return true;
246 }
247 
248 // This method is executed before the construction of a for node. It creates
249 // an isl_id that is used to annotate the subsequently generated ast for nodes.
250 //
251 // In this function we also run the following analyses:
252 //
253 // - Detection of openmp parallel loops
254 //
255 static __isl_give isl_id *astBuildBeforeFor(__isl_keep isl_ast_build *Build,
256                                             void *User) {
257   AstBuildUserInfo *BuildInfo = (AstBuildUserInfo *)User;
258   IslAstUserPayload *Payload = new IslAstUserPayload();
259   isl_id *Id = isl_id_alloc(isl_ast_build_get_ctx(Build), "", Payload);
260   Id = isl_id_set_free_user(Id, freeIslAstUserPayload);
261   BuildInfo->LastForNodeId = Id;
262 
263   // Test for parallelism only if we are not already inside a parallel loop
264   if (!BuildInfo->InParallelFor)
265     BuildInfo->InParallelFor = Payload->IsOutermostParallel =
266         astScheduleDimIsParallel(Build, BuildInfo->Deps, Payload);
267 
268   return Id;
269 }
270 
271 // This method is executed after the construction of a for node.
272 //
273 // It performs the following actions:
274 //
275 // - Reset the 'InParallelFor' flag, as soon as we leave a for node,
276 //   that is marked as openmp parallel.
277 //
278 static __isl_give isl_ast_node *
279 astBuildAfterFor(__isl_take isl_ast_node *Node, __isl_keep isl_ast_build *Build,
280                  void *User) {
281   isl_id *Id = isl_ast_node_get_annotation(Node);
282   assert(Id && "Post order visit assumes annotated for nodes");
283   IslAstUserPayload *Payload = (IslAstUserPayload *)isl_id_get_user(Id);
284   assert(Payload && "Post order visit assumes annotated for nodes");
285 
286   AstBuildUserInfo *BuildInfo = (AstBuildUserInfo *)User;
287   assert(!Payload->Build && "Build environment already set");
288   Payload->Build = isl_ast_build_copy(Build);
289   Payload->IsInnermost = (Id == BuildInfo->LastForNodeId);
290 
291   // Innermost loops that are surrounded by parallel loops have not yet been
292   // tested for parallelism. Test them here to ensure we check all innermost
293   // loops for parallelism.
294   if (Payload->IsInnermost && BuildInfo->InParallelFor) {
295     if (Payload->IsOutermostParallel) {
296       Payload->IsInnermostParallel = true;
297     } else {
298       if (PollyVectorizerChoice == VECTORIZER_NONE)
299         Payload->IsInnermostParallel =
300             astScheduleDimIsParallel(Build, BuildInfo->Deps, Payload);
301     }
302   }
303   if (Payload->IsOutermostParallel)
304     BuildInfo->InParallelFor = false;
305 
306   isl_id_free(Id);
307   return Node;
308 }
309 
310 static isl_stat astBuildBeforeMark(__isl_keep isl_id *MarkId,
311                                    __isl_keep isl_ast_build *Build,
312                                    void *User) {
313   if (!MarkId)
314     return isl_stat_error;
315 
316   AstBuildUserInfo *BuildInfo = (AstBuildUserInfo *)User;
317   if (strcmp(isl_id_get_name(MarkId), "SIMD") == 0)
318     BuildInfo->InParallelFor = true;
319 
320   return isl_stat_ok;
321 }
322 
323 static __isl_give isl_ast_node *
324 astBuildAfterMark(__isl_take isl_ast_node *Node,
325                   __isl_keep isl_ast_build *Build, void *User) {
326   assert(isl_ast_node_get_type(Node) == isl_ast_node_mark);
327   AstBuildUserInfo *BuildInfo = (AstBuildUserInfo *)User;
328   auto *Id = isl_ast_node_mark_get_id(Node);
329   if (strcmp(isl_id_get_name(Id), "SIMD") == 0)
330     BuildInfo->InParallelFor = false;
331   isl_id_free(Id);
332   return Node;
333 }
334 
335 static __isl_give isl_ast_node *AtEachDomain(__isl_take isl_ast_node *Node,
336                                              __isl_keep isl_ast_build *Build,
337                                              void *User) {
338   assert(!isl_ast_node_get_annotation(Node) && "Node already annotated");
339 
340   IslAstUserPayload *Payload = new IslAstUserPayload();
341   isl_id *Id = isl_id_alloc(isl_ast_build_get_ctx(Build), "", Payload);
342   Id = isl_id_set_free_user(Id, freeIslAstUserPayload);
343 
344   Payload->Build = isl_ast_build_copy(Build);
345 
346   return isl_ast_node_set_annotation(Node, Id);
347 }
348 
349 // Build alias check condition given a pair of minimal/maximal access.
350 static isl::ast_expr buildCondition(Scop &S, isl::ast_build Build,
351                                     const Scop::MinMaxAccessTy *It0,
352                                     const Scop::MinMaxAccessTy *It1) {
353 
354   isl::pw_multi_aff AFirst = It0->first;
355   isl::pw_multi_aff ASecond = It0->second;
356   isl::pw_multi_aff BFirst = It1->first;
357   isl::pw_multi_aff BSecond = It1->second;
358 
359   isl::id Left = AFirst.get_tuple_id(isl::dim::set);
360   isl::id Right = BFirst.get_tuple_id(isl::dim::set);
361 
362   isl::ast_expr True =
363       isl::ast_expr::from_val(isl::val::int_from_ui(Build.get_ctx(), 1));
364   isl::ast_expr False =
365       isl::ast_expr::from_val(isl::val::int_from_ui(Build.get_ctx(), 0));
366 
367   const ScopArrayInfo *BaseLeft =
368       ScopArrayInfo::getFromId(Left)->getBasePtrOriginSAI();
369   const ScopArrayInfo *BaseRight =
370       ScopArrayInfo::getFromId(Right)->getBasePtrOriginSAI();
371   if (BaseLeft && BaseLeft == BaseRight)
372     return True;
373 
374   isl::set Params = S.getContext();
375 
376   isl::ast_expr NonAliasGroup, MinExpr, MaxExpr;
377 
378   // In the following, we first check if any accesses will be empty under
379   // the execution context of the scop and do not code generate them if this
380   // is the case as isl will fail to derive valid AST expressions for such
381   // accesses.
382 
383   if (!AFirst.intersect_params(Params).domain().is_empty() &&
384       !BSecond.intersect_params(Params).domain().is_empty()) {
385     MinExpr = Build.access_from(AFirst).address_of();
386     MaxExpr = Build.access_from(BSecond).address_of();
387     NonAliasGroup = MaxExpr.le(MinExpr);
388   }
389 
390   if (!BFirst.intersect_params(Params).domain().is_empty() &&
391       !ASecond.intersect_params(Params).domain().is_empty()) {
392     MinExpr = Build.access_from(BFirst).address_of();
393     MaxExpr = Build.access_from(ASecond).address_of();
394 
395     isl::ast_expr Result = MaxExpr.le(MinExpr);
396     if (!NonAliasGroup.is_null())
397       NonAliasGroup = isl::manage(
398           isl_ast_expr_or(NonAliasGroup.release(), Result.release()));
399     else
400       NonAliasGroup = Result;
401   }
402 
403   if (NonAliasGroup.is_null())
404     NonAliasGroup = True;
405 
406   return NonAliasGroup;
407 }
408 
409 __isl_give isl_ast_expr *
410 IslAst::buildRunCondition(Scop &S, __isl_keep isl_ast_build *Build) {
411   isl_ast_expr *RunCondition;
412 
413   // The conditions that need to be checked at run-time for this scop are
414   // available as an isl_set in the runtime check context from which we can
415   // directly derive a run-time condition.
416   auto *PosCond =
417       isl_ast_build_expr_from_set(Build, S.getAssumedContext().release());
418   if (S.hasTrivialInvalidContext()) {
419     RunCondition = PosCond;
420   } else {
421     auto *ZeroV = isl_val_zero(isl_ast_build_get_ctx(Build));
422     auto *NegCond =
423         isl_ast_build_expr_from_set(Build, S.getInvalidContext().release());
424     auto *NotNegCond = isl_ast_expr_eq(isl_ast_expr_from_val(ZeroV), NegCond);
425     RunCondition = isl_ast_expr_and(PosCond, NotNegCond);
426   }
427 
428   // Create the alias checks from the minimal/maximal accesses in each alias
429   // group which consists of read only and non read only (read write) accesses.
430   // This operation is by construction quadratic in the read-write pointers and
431   // linear in the read only pointers in each alias group.
432   for (const Scop::MinMaxVectorPairTy &MinMaxAccessPair : S.getAliasGroups()) {
433     auto &MinMaxReadWrite = MinMaxAccessPair.first;
434     auto &MinMaxReadOnly = MinMaxAccessPair.second;
435     auto RWAccEnd = MinMaxReadWrite.end();
436 
437     for (auto RWAccIt0 = MinMaxReadWrite.begin(); RWAccIt0 != RWAccEnd;
438          ++RWAccIt0) {
439       for (auto RWAccIt1 = RWAccIt0 + 1; RWAccIt1 != RWAccEnd; ++RWAccIt1)
440         RunCondition = isl_ast_expr_and(
441             RunCondition,
442             buildCondition(S, isl::manage(isl_ast_build_copy(Build)), RWAccIt0,
443                            RWAccIt1)
444                 .release());
445       for (const Scop::MinMaxAccessTy &ROAccIt : MinMaxReadOnly)
446         RunCondition = isl_ast_expr_and(
447             RunCondition,
448             buildCondition(S, isl::manage(isl_ast_build_copy(Build)), RWAccIt0,
449                            &ROAccIt)
450                 .release());
451     }
452   }
453 
454   return RunCondition;
455 }
456 
457 /// Simple cost analysis for a given SCoP.
458 ///
459 /// TODO: Improve this analysis and extract it to make it usable in other
460 ///       places too.
461 ///       In order to improve the cost model we could either keep track of
462 ///       performed optimizations (e.g., tiling) or compute properties on the
463 ///       original as well as optimized SCoP (e.g., #stride-one-accesses).
464 static bool benefitsFromPolly(Scop &Scop, bool PerformParallelTest) {
465   if (PollyProcessUnprofitable)
466     return true;
467 
468   // Check if nothing interesting happened.
469   if (!PerformParallelTest && !Scop.isOptimized() &&
470       Scop.getAliasGroups().empty())
471     return false;
472 
473   // The default assumption is that Polly improves the code.
474   return true;
475 }
476 
477 /// Collect statistics for the syntax tree rooted at @p Ast.
478 static void walkAstForStatistics(__isl_keep isl_ast_node *Ast) {
479   assert(Ast);
480   isl_ast_node_foreach_descendant_top_down(
481       Ast,
482       [](__isl_keep isl_ast_node *Node, void *User) -> isl_bool {
483         switch (isl_ast_node_get_type(Node)) {
484         case isl_ast_node_for:
485           NumForLoops++;
486           if (IslAstInfo::isParallel(Node))
487             NumParallel++;
488           if (IslAstInfo::isInnermostParallel(Node))
489             NumInnermostParallel++;
490           if (IslAstInfo::isOutermostParallel(Node))
491             NumOutermostParallel++;
492           if (IslAstInfo::isReductionParallel(Node))
493             NumReductionParallel++;
494           if (IslAstInfo::isExecutedInParallel(Node))
495             NumExecutedInParallel++;
496           break;
497 
498         case isl_ast_node_if:
499           NumIfConditions++;
500           break;
501 
502         default:
503           break;
504         }
505 
506         // Continue traversing subtrees.
507         return isl_bool_true;
508       },
509       nullptr);
510 }
511 
512 IslAst::IslAst(Scop &Scop) : S(Scop), Ctx(Scop.getSharedIslCtx()) {}
513 
514 IslAst::IslAst(IslAst &&O)
515     : S(O.S), Root(O.Root), RunCondition(O.RunCondition), Ctx(O.Ctx) {
516   O.Root = nullptr;
517   O.RunCondition = nullptr;
518 }
519 
520 IslAst::~IslAst() {
521   isl_ast_node_free(Root);
522   isl_ast_expr_free(RunCondition);
523 }
524 
525 void IslAst::init(const Dependences &D) {
526   bool PerformParallelTest = PollyParallel || DetectParallel ||
527                              PollyVectorizerChoice != VECTORIZER_NONE;
528 
529   // We can not perform the dependence analysis and, consequently,
530   // the parallel code generation in case the schedule tree contains
531   // extension nodes.
532   auto ScheduleTree = S.getScheduleTree();
533   PerformParallelTest =
534       PerformParallelTest && !S.containsExtensionNode(ScheduleTree);
535 
536   // Skip AST and code generation if there was no benefit achieved.
537   if (!benefitsFromPolly(S, PerformParallelTest))
538     return;
539 
540   auto ScopStats = S.getStatistics();
541   ScopsBeneficial++;
542   BeneficialAffineLoops += ScopStats.NumAffineLoops;
543   BeneficialBoxedLoops += ScopStats.NumBoxedLoops;
544 
545   auto Ctx = S.getIslCtx();
546   isl_options_set_ast_build_atomic_upper_bound(Ctx.get(), true);
547   isl_options_set_ast_build_detect_min_max(Ctx.get(), true);
548   isl_ast_build *Build;
549   AstBuildUserInfo BuildInfo;
550 
551   if (UseContext)
552     Build = isl_ast_build_from_context(S.getContext().release());
553   else
554     Build = isl_ast_build_from_context(
555         isl_set_universe(S.getParamSpace().release()));
556 
557   Build = isl_ast_build_set_at_each_domain(Build, AtEachDomain, nullptr);
558 
559   if (PerformParallelTest) {
560     BuildInfo.Deps = &D;
561     BuildInfo.InParallelFor = false;
562 
563     Build = isl_ast_build_set_before_each_for(Build, &astBuildBeforeFor,
564                                               &BuildInfo);
565     Build =
566         isl_ast_build_set_after_each_for(Build, &astBuildAfterFor, &BuildInfo);
567 
568     Build = isl_ast_build_set_before_each_mark(Build, &astBuildBeforeMark,
569                                                &BuildInfo);
570 
571     Build = isl_ast_build_set_after_each_mark(Build, &astBuildAfterMark,
572                                               &BuildInfo);
573   }
574 
575   RunCondition = buildRunCondition(S, Build);
576 
577   Root = isl_ast_build_node_from_schedule(Build, S.getScheduleTree().release());
578   walkAstForStatistics(Root);
579 
580   isl_ast_build_free(Build);
581 }
582 
583 IslAst IslAst::create(Scop &Scop, const Dependences &D) {
584   IslAst Ast{Scop};
585   Ast.init(D);
586   return Ast;
587 }
588 
589 __isl_give isl_ast_node *IslAst::getAst() { return isl_ast_node_copy(Root); }
590 __isl_give isl_ast_expr *IslAst::getRunCondition() {
591   return isl_ast_expr_copy(RunCondition);
592 }
593 
594 __isl_give isl_ast_node *IslAstInfo::getAst() { return Ast.getAst(); }
595 __isl_give isl_ast_expr *IslAstInfo::getRunCondition() {
596   return Ast.getRunCondition();
597 }
598 
599 IslAstUserPayload *IslAstInfo::getNodePayload(__isl_keep isl_ast_node *Node) {
600   isl_id *Id = isl_ast_node_get_annotation(Node);
601   if (!Id)
602     return nullptr;
603   IslAstUserPayload *Payload = (IslAstUserPayload *)isl_id_get_user(Id);
604   isl_id_free(Id);
605   return Payload;
606 }
607 
608 bool IslAstInfo::isInnermost(__isl_keep isl_ast_node *Node) {
609   IslAstUserPayload *Payload = getNodePayload(Node);
610   return Payload && Payload->IsInnermost;
611 }
612 
613 bool IslAstInfo::isParallel(__isl_keep isl_ast_node *Node) {
614   return IslAstInfo::isInnermostParallel(Node) ||
615          IslAstInfo::isOutermostParallel(Node);
616 }
617 
618 bool IslAstInfo::isInnermostParallel(__isl_keep isl_ast_node *Node) {
619   IslAstUserPayload *Payload = getNodePayload(Node);
620   return Payload && Payload->IsInnermostParallel;
621 }
622 
623 bool IslAstInfo::isOutermostParallel(__isl_keep isl_ast_node *Node) {
624   IslAstUserPayload *Payload = getNodePayload(Node);
625   return Payload && Payload->IsOutermostParallel;
626 }
627 
628 bool IslAstInfo::isReductionParallel(__isl_keep isl_ast_node *Node) {
629   IslAstUserPayload *Payload = getNodePayload(Node);
630   return Payload && Payload->IsReductionParallel;
631 }
632 
633 bool IslAstInfo::isExecutedInParallel(__isl_keep isl_ast_node *Node) {
634   if (!PollyParallel)
635     return false;
636 
637   // Do not parallelize innermost loops.
638   //
639   // Parallelizing innermost loops is often not profitable, especially if
640   // they have a low number of iterations.
641   //
642   // TODO: Decide this based on the number of loop iterations that will be
643   //       executed. This can possibly require run-time checks, which again
644   //       raises the question of both run-time check overhead and code size
645   //       costs.
646   if (!PollyParallelForce && isInnermost(Node))
647     return false;
648 
649   return isOutermostParallel(Node) && !isReductionParallel(Node);
650 }
651 
652 __isl_give isl_union_map *
653 IslAstInfo::getSchedule(__isl_keep isl_ast_node *Node) {
654   IslAstUserPayload *Payload = getNodePayload(Node);
655   return Payload ? isl_ast_build_get_schedule(Payload->Build) : nullptr;
656 }
657 
658 __isl_give isl_pw_aff *
659 IslAstInfo::getMinimalDependenceDistance(__isl_keep isl_ast_node *Node) {
660   IslAstUserPayload *Payload = getNodePayload(Node);
661   return Payload ? isl_pw_aff_copy(Payload->MinimalDependenceDistance)
662                  : nullptr;
663 }
664 
665 IslAstInfo::MemoryAccessSet *
666 IslAstInfo::getBrokenReductions(__isl_keep isl_ast_node *Node) {
667   IslAstUserPayload *Payload = getNodePayload(Node);
668   return Payload ? &Payload->BrokenReductions : nullptr;
669 }
670 
671 isl_ast_build *IslAstInfo::getBuild(__isl_keep isl_ast_node *Node) {
672   IslAstUserPayload *Payload = getNodePayload(Node);
673   return Payload ? Payload->Build : nullptr;
674 }
675 
676 IslAstInfo IslAstAnalysis::run(Scop &S, ScopAnalysisManager &SAM,
677                                ScopStandardAnalysisResults &SAR) {
678   return {S, SAM.getResult<DependenceAnalysis>(S, SAR).getDependences(
679                  Dependences::AL_Statement)};
680 }
681 
682 static __isl_give isl_printer *cbPrintUser(__isl_take isl_printer *P,
683                                            __isl_take isl_ast_print_options *O,
684                                            __isl_keep isl_ast_node *Node,
685                                            void *User) {
686   isl::ast_node AstNode = isl::manage(isl_ast_node_copy(Node));
687   isl::ast_expr NodeExpr = AstNode.user_get_expr();
688   isl::ast_expr CallExpr = NodeExpr.get_op_arg(0);
689   isl::id CallExprId = CallExpr.get_id();
690   ScopStmt *AccessStmt = (ScopStmt *)CallExprId.get_user();
691 
692   P = isl_printer_start_line(P);
693   P = isl_printer_print_str(P, AccessStmt->getBaseName());
694   P = isl_printer_print_str(P, "(");
695   P = isl_printer_end_line(P);
696   P = isl_printer_indent(P, 2);
697 
698   for (MemoryAccess *MemAcc : *AccessStmt) {
699     P = isl_printer_start_line(P);
700 
701     if (MemAcc->isRead())
702       P = isl_printer_print_str(P, "/* read  */ &");
703     else
704       P = isl_printer_print_str(P, "/* write */  ");
705 
706     isl::ast_build Build =
707         isl::manage(isl_ast_build_copy(IslAstInfo::getBuild(Node)));
708     if (MemAcc->isAffine()) {
709       isl_pw_multi_aff *PwmaPtr =
710           MemAcc->applyScheduleToAccessRelation(Build.get_schedule()).release();
711       isl::pw_multi_aff Pwma = isl::manage(PwmaPtr);
712       isl::ast_expr AccessExpr = Build.access_from(Pwma);
713       P = isl_printer_print_ast_expr(P, AccessExpr.get());
714     } else {
715       P = isl_printer_print_str(
716           P, MemAcc->getLatestScopArrayInfo()->getName().c_str());
717       P = isl_printer_print_str(P, "[*]");
718     }
719     P = isl_printer_end_line(P);
720   }
721 
722   P = isl_printer_indent(P, -2);
723   P = isl_printer_start_line(P);
724   P = isl_printer_print_str(P, ");");
725   P = isl_printer_end_line(P);
726 
727   isl_ast_print_options_free(O);
728   return P;
729 }
730 
731 void IslAstInfo::print(raw_ostream &OS) {
732   isl_ast_print_options *Options;
733   isl_ast_node *RootNode = Ast.getAst();
734   Function &F = S.getFunction();
735 
736   OS << ":: isl ast :: " << F.getName() << " :: " << S.getNameStr() << "\n";
737 
738   if (!RootNode) {
739     OS << ":: isl ast generation and code generation was skipped!\n\n";
740     OS << ":: This is either because no useful optimizations could be applied "
741           "(use -polly-process-unprofitable to enforce code generation) or "
742           "because earlier passes such as dependence analysis timed out (use "
743           "-polly-dependences-computeout=0 to set dependence analysis timeout "
744           "to infinity)\n\n";
745     return;
746   }
747 
748   isl_ast_expr *RunCondition = Ast.getRunCondition();
749   char *RtCStr, *AstStr;
750 
751   Options = isl_ast_print_options_alloc(S.getIslCtx().get());
752 
753   if (PrintAccesses)
754     Options =
755         isl_ast_print_options_set_print_user(Options, cbPrintUser, nullptr);
756   Options = isl_ast_print_options_set_print_for(Options, cbPrintFor, nullptr);
757 
758   isl_printer *P = isl_printer_to_str(S.getIslCtx().get());
759   P = isl_printer_set_output_format(P, ISL_FORMAT_C);
760   P = isl_printer_print_ast_expr(P, RunCondition);
761   RtCStr = isl_printer_get_str(P);
762   P = isl_printer_flush(P);
763   P = isl_printer_indent(P, 4);
764   P = isl_ast_node_print(RootNode, P, Options);
765   AstStr = isl_printer_get_str(P);
766 
767   auto *Schedule = S.getScheduleTree().release();
768 
769   DEBUG({
770     dbgs() << S.getContextStr() << "\n";
771     dbgs() << stringFromIslObj(Schedule);
772   });
773   OS << "\nif (" << RtCStr << ")\n\n";
774   OS << AstStr << "\n";
775   OS << "else\n";
776   OS << "    {  /* original code */ }\n\n";
777 
778   free(RtCStr);
779   free(AstStr);
780 
781   isl_ast_expr_free(RunCondition);
782   isl_schedule_free(Schedule);
783   isl_ast_node_free(RootNode);
784   isl_printer_free(P);
785 }
786 
787 AnalysisKey IslAstAnalysis::Key;
788 PreservedAnalyses IslAstPrinterPass::run(Scop &S, ScopAnalysisManager &SAM,
789                                          ScopStandardAnalysisResults &SAR,
790                                          SPMUpdater &U) {
791   auto &Ast = SAM.getResult<IslAstAnalysis>(S, SAR);
792   Ast.print(OS);
793   return PreservedAnalyses::all();
794 }
795 
796 void IslAstInfoWrapperPass::releaseMemory() { Ast.reset(); }
797 
798 bool IslAstInfoWrapperPass::runOnScop(Scop &Scop) {
799   // Skip SCoPs in case they're already handled by PPCGCodeGeneration.
800   if (Scop.isToBeSkipped())
801     return false;
802 
803   ScopsProcessed++;
804 
805   const Dependences &D =
806       getAnalysis<DependenceInfo>().getDependences(Dependences::AL_Statement);
807 
808   if (D.getSharedIslCtx() != Scop.getSharedIslCtx()) {
809     DEBUG(dbgs() << "Got dependence analysis for different SCoP/isl_ctx\n");
810     Ast.reset();
811     return false;
812   }
813 
814   Ast.reset(new IslAstInfo(Scop, D));
815 
816   DEBUG(printScop(dbgs(), Scop));
817   return false;
818 }
819 
820 void IslAstInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
821   // Get the Common analysis usage of ScopPasses.
822   ScopPass::getAnalysisUsage(AU);
823   AU.addRequiredTransitive<ScopInfoRegionPass>();
824   AU.addRequired<DependenceInfo>();
825 
826   AU.addPreserved<DependenceInfo>();
827 }
828 
829 void IslAstInfoWrapperPass::printScop(raw_ostream &OS, Scop &S) const {
830   if (Ast)
831     Ast->print(OS);
832 }
833 
834 char IslAstInfoWrapperPass::ID = 0;
835 
836 Pass *polly::createIslAstInfoWrapperPassPass() {
837   return new IslAstInfoWrapperPass();
838 }
839 
840 INITIALIZE_PASS_BEGIN(IslAstInfoWrapperPass, "polly-ast",
841                       "Polly - Generate an AST of the SCoP (isl)", false,
842                       false);
843 INITIALIZE_PASS_DEPENDENCY(ScopInfoRegionPass);
844 INITIALIZE_PASS_DEPENDENCY(DependenceInfo);
845 INITIALIZE_PASS_END(IslAstInfoWrapperPass, "polly-ast",
846                     "Polly - Generate an AST from the SCoP (isl)", false, false)
847