xref: /llvm-project/polly/lib/CodeGen/CodeGeneration.cpp (revision 8ea1fc19b30a3669dad22bb6af7001771fc568b0)
1 //===------ CodeGeneration.cpp - Code generate the Scops using ISL. ----======//
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 CodeGeneration pass takes a Scop created by ScopInfo and translates it
11 // back to LLVM-IR using the ISL code generator.
12 //
13 // The Scop describes the high level memory behavior of a control flow region.
14 // Transformation passes can update the schedule (execution order) of statements
15 // in the Scop. ISL is used to generate an abstract syntax tree that reflects
16 // the updated execution order. This clast is used to create new LLVM-IR that is
17 // computationally equivalent to the original control flow region, but executes
18 // its code in the new execution order defined by the changed schedule.
19 //
20 //===----------------------------------------------------------------------===//
21 
22 #include "polly/CodeGen/CodeGeneration.h"
23 #include "polly/CodeGen/IslAst.h"
24 #include "polly/CodeGen/IslNodeBuilder.h"
25 #include "polly/CodeGen/PerfMonitor.h"
26 #include "polly/CodeGen/Utils.h"
27 #include "polly/DependenceInfo.h"
28 #include "polly/LinkAllPasses.h"
29 #include "polly/Options.h"
30 #include "polly/ScopInfo.h"
31 #include "polly/Support/ScopHelper.h"
32 #include "llvm/Analysis/AliasAnalysis.h"
33 #include "llvm/Analysis/BasicAliasAnalysis.h"
34 #include "llvm/Analysis/GlobalsModRef.h"
35 #include "llvm/Analysis/LoopInfo.h"
36 #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
37 #include "llvm/IR/Module.h"
38 #include "llvm/IR/PassManager.h"
39 #include "llvm/IR/Verifier.h"
40 #include "llvm/Support/Debug.h"
41 
42 using namespace polly;
43 using namespace llvm;
44 
45 #define DEBUG_TYPE "polly-codegen"
46 
47 static cl::opt<bool> Verify("polly-codegen-verify",
48                             cl::desc("Verify the function generated by Polly"),
49                             cl::Hidden, cl::init(false), cl::ZeroOrMore,
50                             cl::cat(PollyCategory));
51 
52 static cl::opt<bool>
53     PerfMonitoring("polly-codegen-perf-monitoring",
54                    cl::desc("Add run-time performance monitoring"), cl::Hidden,
55                    cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
56 
57 namespace {
58 
59 static void verifyGeneratedFunction(Scop &S, Function &F, IslAstInfo &AI) {
60   if (!Verify || !verifyFunction(F, &errs()))
61     return;
62 
63   DEBUG({
64     errs() << "== ISL Codegen created an invalid function ==\n\n== The "
65               "SCoP ==\n";
66     errs() << S;
67     errs() << "\n== The isl AST ==\n";
68     AI.print(errs());
69     errs() << "\n== The invalid function ==\n";
70     F.print(errs());
71   });
72 
73   llvm_unreachable("Polly generated function could not be verified. Add "
74                    "-polly-codegen-verify=false to disable this assertion.");
75 }
76 
77 // CodeGeneration adds a lot of BBs without updating the RegionInfo
78 // We make all created BBs belong to the scop's parent region without any
79 // nested structure to keep the RegionInfo verifier happy.
80 static void fixRegionInfo(Function &F, Region &ParentRegion, RegionInfo &RI) {
81   for (BasicBlock &BB : F) {
82     if (RI.getRegionFor(&BB))
83       continue;
84 
85     RI.setRegionFor(&BB, &ParentRegion);
86   }
87 }
88 
89 /// Mark a basic block unreachable.
90 ///
91 /// Marks the basic block @p Block unreachable by equipping it with an
92 /// UnreachableInst.
93 static void markBlockUnreachable(BasicBlock &Block, PollyIRBuilder &Builder) {
94   auto *OrigTerminator = Block.getTerminator();
95   Builder.SetInsertPoint(OrigTerminator);
96   Builder.CreateUnreachable();
97   OrigTerminator->eraseFromParent();
98 }
99 
100 /// Remove all lifetime markers (llvm.lifetime.start, llvm.lifetime.end) from
101 /// @R.
102 ///
103 /// CodeGeneration does not copy lifetime markers into the optimized SCoP,
104 /// which would leave the them only in the original path. This can transform
105 /// code such as
106 ///
107 ///     llvm.lifetime.start(%p)
108 ///     llvm.lifetime.end(%p)
109 ///
110 /// into
111 ///
112 ///     if (RTC) {
113 ///       // generated code
114 ///     } else {
115 ///       // original code
116 ///       llvm.lifetime.start(%p)
117 ///     }
118 ///     llvm.lifetime.end(%p)
119 ///
120 /// The current StackColoring algorithm cannot handle if some, but not all,
121 /// paths from the end marker to the entry block cross the start marker. Same
122 /// for start markers that do not always cross the end markers. We avoid any
123 /// issues by removing all lifetime markers, even from the original code.
124 ///
125 /// A better solution could be to hoist all llvm.lifetime.start to the split
126 /// node and all llvm.lifetime.end to the merge node, which should be
127 /// conservatively correct.
128 static void removeLifetimeMarkers(Region *R) {
129   for (auto *BB : R->blocks()) {
130     auto InstIt = BB->begin();
131     auto InstEnd = BB->end();
132 
133     while (InstIt != InstEnd) {
134       auto NextIt = InstIt;
135       ++NextIt;
136 
137       if (auto *IT = dyn_cast<IntrinsicInst>(&*InstIt)) {
138         switch (IT->getIntrinsicID()) {
139         case llvm::Intrinsic::lifetime_start:
140         case llvm::Intrinsic::lifetime_end:
141           BB->getInstList().erase(InstIt);
142           break;
143         default:
144           break;
145         }
146       }
147 
148       InstIt = NextIt;
149     }
150   }
151 }
152 
153 static bool CodeGen(Scop &S, IslAstInfo &AI, LoopInfo &LI, DominatorTree &DT,
154                     ScalarEvolution &SE, RegionInfo &RI) {
155   // Check if we created an isl_ast root node, otherwise exit.
156   isl_ast_node *AstRoot = AI.getAst();
157   if (!AstRoot)
158     return false;
159 
160   auto &DL = S.getFunction().getParent()->getDataLayout();
161   Region *R = &S.getRegion();
162   assert(!R->isTopLevelRegion() && "Top level regions are not supported");
163 
164   ScopAnnotator Annotator;
165 
166   simplifyRegion(R, &DT, &LI, &RI);
167   assert(R->isSimple());
168   BasicBlock *EnteringBB = S.getEnteringBlock();
169   assert(EnteringBB);
170   PollyIRBuilder Builder = createPollyIRBuilder(EnteringBB, Annotator);
171 
172   // Only build the run-time condition and parameters _after_ having
173   // introduced the conditional branch. This is important as the conditional
174   // branch will guard the original scop from new induction variables that
175   // the SCEVExpander may introduce while code generating the parameters and
176   // which may introduce scalar dependences that prevent us from correctly
177   // code generating this scop.
178   BBPair StartExitBlocks =
179       std::get<0>(executeScopConditionally(S, Builder.getTrue(), DT, RI, LI));
180   BasicBlock *StartBlock = std::get<0>(StartExitBlocks);
181   BasicBlock *ExitBlock = std::get<1>(StartExitBlocks);
182 
183   removeLifetimeMarkers(R);
184   auto *SplitBlock = StartBlock->getSinglePredecessor();
185 
186   IslNodeBuilder NodeBuilder(Builder, Annotator, DL, LI, SE, DT, S, StartBlock);
187 
188   // All arrays must have their base pointers known before
189   // ScopAnnotator::buildAliasScopes.
190   NodeBuilder.allocateNewArrays(StartExitBlocks);
191   Annotator.buildAliasScopes(S);
192 
193   if (PerfMonitoring) {
194     PerfMonitor P(S, EnteringBB->getParent()->getParent());
195     P.initialize();
196     P.insertRegionStart(SplitBlock->getTerminator());
197 
198     BasicBlock *MergeBlock = ExitBlock->getUniqueSuccessor();
199     P.insertRegionEnd(MergeBlock->getTerminator());
200   }
201 
202   // First generate code for the hoisted invariant loads and transitively the
203   // parameters they reference. Afterwards, for the remaining parameters that
204   // might reference the hoisted loads. Finally, build the runtime check
205   // that might reference both hoisted loads as well as parameters.
206   // If the hoisting fails we have to bail and execute the original code.
207   Builder.SetInsertPoint(SplitBlock->getTerminator());
208   if (!NodeBuilder.preloadInvariantLoads()) {
209 
210     // Patch the introduced branch condition to ensure that we always execute
211     // the original SCoP.
212     auto *FalseI1 = Builder.getFalse();
213     auto *SplitBBTerm = Builder.GetInsertBlock()->getTerminator();
214     SplitBBTerm->setOperand(0, FalseI1);
215 
216     // Since the other branch is hence ignored we mark it as unreachable and
217     // adjust the dominator tree accordingly.
218     auto *ExitingBlock = StartBlock->getUniqueSuccessor();
219     assert(ExitingBlock);
220     auto *MergeBlock = ExitingBlock->getUniqueSuccessor();
221     assert(MergeBlock);
222     markBlockUnreachable(*StartBlock, Builder);
223     markBlockUnreachable(*ExitingBlock, Builder);
224     auto *ExitingBB = S.getExitingBlock();
225     assert(ExitingBB);
226     DT.changeImmediateDominator(MergeBlock, ExitingBB);
227     DT.eraseNode(ExitingBlock);
228 
229     isl_ast_node_free(AstRoot);
230   } else {
231     NodeBuilder.addParameters(S.getContext().release());
232     Value *RTC = NodeBuilder.createRTC(AI.getRunCondition());
233 
234     Builder.GetInsertBlock()->getTerminator()->setOperand(0, RTC);
235 
236     // Explicitly set the insert point to the end of the block to avoid that a
237     // split at the builder's current
238     // insert position would move the malloc calls to the wrong BasicBlock.
239     // Ideally we would just split the block during allocation of the new
240     // arrays, but this would break the assumption that there are no blocks
241     // between polly.start and polly.exiting (at this point).
242     Builder.SetInsertPoint(StartBlock->getTerminator());
243 
244     NodeBuilder.create(AstRoot);
245     NodeBuilder.finalize();
246     fixRegionInfo(*EnteringBB->getParent(), *R->getParent(), RI);
247   }
248 
249   Function *F = EnteringBB->getParent();
250   verifyGeneratedFunction(S, *F, AI);
251   for (auto *SubF : NodeBuilder.getParallelSubfunctions())
252     verifyGeneratedFunction(S, *SubF, AI);
253 
254   // Mark the function such that we run additional cleanup passes on this
255   // function (e.g. mem2reg to rediscover phi nodes).
256   F->addFnAttr("polly-optimized");
257   return true;
258 }
259 
260 class CodeGeneration : public ScopPass {
261 public:
262   static char ID;
263 
264   CodeGeneration() : ScopPass(ID) {}
265 
266   /// The data layout used.
267   const DataLayout *DL;
268 
269   /// @name The analysis passes we need to generate code.
270   ///
271   ///{
272   LoopInfo *LI;
273   IslAstInfo *AI;
274   DominatorTree *DT;
275   ScalarEvolution *SE;
276   RegionInfo *RI;
277   ///}
278 
279   /// Generate LLVM-IR for the SCoP @p S.
280   bool runOnScop(Scop &S) override {
281     // Skip SCoPs in case they're already code-generated by PPCGCodeGeneration.
282     if (S.isToBeSkipped())
283       return false;
284 
285     AI = &getAnalysis<IslAstInfoWrapperPass>().getAI();
286     LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
287     DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
288     SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
289     DL = &S.getFunction().getParent()->getDataLayout();
290     RI = &getAnalysis<RegionInfoPass>().getRegionInfo();
291     return CodeGen(S, *AI, *LI, *DT, *SE, *RI);
292   }
293 
294   /// Register all analyses and transformation required.
295   void getAnalysisUsage(AnalysisUsage &AU) const override {
296     AU.addRequired<DominatorTreeWrapperPass>();
297     AU.addRequired<IslAstInfoWrapperPass>();
298     AU.addRequired<RegionInfoPass>();
299     AU.addRequired<ScalarEvolutionWrapperPass>();
300     AU.addRequired<ScopDetectionWrapperPass>();
301     AU.addRequired<ScopInfoRegionPass>();
302     AU.addRequired<LoopInfoWrapperPass>();
303 
304     AU.addPreserved<DependenceInfo>();
305 
306     AU.addPreserved<AAResultsWrapperPass>();
307     AU.addPreserved<BasicAAWrapperPass>();
308     AU.addPreserved<LoopInfoWrapperPass>();
309     AU.addPreserved<DominatorTreeWrapperPass>();
310     AU.addPreserved<GlobalsAAWrapperPass>();
311     AU.addPreserved<IslAstInfoWrapperPass>();
312     AU.addPreserved<ScopDetectionWrapperPass>();
313     AU.addPreserved<ScalarEvolutionWrapperPass>();
314     AU.addPreserved<SCEVAAWrapperPass>();
315 
316     // FIXME: We do not yet add regions for the newly generated code to the
317     //        region tree.
318     AU.addPreserved<RegionInfoPass>();
319     AU.addPreserved<ScopInfoRegionPass>();
320   }
321 };
322 } // namespace
323 
324 PreservedAnalyses
325 polly::CodeGenerationPass::run(Scop &S, ScopAnalysisManager &SAM,
326                                ScopStandardAnalysisResults &AR, SPMUpdater &U) {
327   auto &AI = SAM.getResult<IslAstAnalysis>(S, AR);
328   if (CodeGen(S, AI, AR.LI, AR.DT, AR.SE, AR.RI))
329     return PreservedAnalyses::none();
330 
331   return PreservedAnalyses::all();
332 }
333 
334 char CodeGeneration::ID = 1;
335 
336 Pass *polly::createCodeGenerationPass() { return new CodeGeneration(); }
337 
338 INITIALIZE_PASS_BEGIN(CodeGeneration, "polly-codegen",
339                       "Polly - Create LLVM-IR from SCoPs", false, false);
340 INITIALIZE_PASS_DEPENDENCY(DependenceInfo);
341 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass);
342 INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass);
343 INITIALIZE_PASS_DEPENDENCY(RegionInfoPass);
344 INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass);
345 INITIALIZE_PASS_DEPENDENCY(ScopDetectionWrapperPass);
346 INITIALIZE_PASS_END(CodeGeneration, "polly-codegen",
347                     "Polly - Create LLVM-IR from SCoPs", false, false)
348