xref: /llvm-project/llvm/lib/Transforms/Utils/LCSSA.cpp (revision 5362a0d859d8e96b3f7c0437b7866e17a818a4f7)
1 //===-- LCSSA.cpp - Convert loops into loop-closed SSA form ---------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This pass transforms loops by placing phi nodes at the end of the loops for
10 // all values that are live across the loop boundary.  For example, it turns
11 // the left into the right code:
12 //
13 // for (...)                for (...)
14 //   if (c)                   if (c)
15 //     X1 = ...                 X1 = ...
16 //   else                     else
17 //     X2 = ...                 X2 = ...
18 //   X3 = phi(X1, X2)         X3 = phi(X1, X2)
19 // ... = X3 + 4             X4 = phi(X3)
20 //                          ... = X4 + 4
21 //
22 // This is still valid LLVM; the extra phi nodes are purely redundant, and will
23 // be trivially eliminated by InstCombine.  The major benefit of this
24 // transformation is that it makes many other loop optimizations, such as
25 // LoopUnswitching, simpler.
26 //
27 //===----------------------------------------------------------------------===//
28 
29 #include "llvm/Transforms/Utils/LCSSA.h"
30 #include "llvm/ADT/STLExtras.h"
31 #include "llvm/ADT/Statistic.h"
32 #include "llvm/Analysis/AliasAnalysis.h"
33 #include "llvm/Analysis/BasicAliasAnalysis.h"
34 #include "llvm/Analysis/BranchProbabilityInfo.h"
35 #include "llvm/Analysis/GlobalsModRef.h"
36 #include "llvm/Analysis/LoopInfo.h"
37 #include "llvm/Analysis/LoopPass.h"
38 #include "llvm/Analysis/MemorySSA.h"
39 #include "llvm/Analysis/ScalarEvolution.h"
40 #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
41 #include "llvm/IR/DebugInfo.h"
42 #include "llvm/IR/Dominators.h"
43 #include "llvm/IR/IRBuilder.h"
44 #include "llvm/IR/Instructions.h"
45 #include "llvm/IR/IntrinsicInst.h"
46 #include "llvm/IR/PredIteratorCache.h"
47 #include "llvm/InitializePasses.h"
48 #include "llvm/Pass.h"
49 #include "llvm/Support/CommandLine.h"
50 #include "llvm/Transforms/Utils.h"
51 #include "llvm/Transforms/Utils/LoopUtils.h"
52 #include "llvm/Transforms/Utils/SSAUpdater.h"
53 using namespace llvm;
54 
55 #define DEBUG_TYPE "lcssa"
56 
57 STATISTIC(NumLCSSA, "Number of live out of a loop variables");
58 
59 #ifdef EXPENSIVE_CHECKS
60 static bool VerifyLoopLCSSA = true;
61 #else
62 static bool VerifyLoopLCSSA = false;
63 #endif
64 static cl::opt<bool, true>
65     VerifyLoopLCSSAFlag("verify-loop-lcssa", cl::location(VerifyLoopLCSSA),
66                         cl::Hidden,
67                         cl::desc("Verify loop lcssa form (time consuming)"));
68 
69 /// Return true if the specified block is in the list.
70 static bool isExitBlock(BasicBlock *BB,
71                         const SmallVectorImpl<BasicBlock *> &ExitBlocks) {
72   return is_contained(ExitBlocks, BB);
73 }
74 
75 /// For every instruction from the worklist, check to see if it has any uses
76 /// that are outside the current loop.  If so, insert LCSSA PHI nodes and
77 /// rewrite the uses.
78 bool llvm::formLCSSAForInstructions(SmallVectorImpl<Instruction *> &Worklist,
79                                     const DominatorTree &DT, const LoopInfo &LI,
80                                     IRBuilderBase &Builder,
81                                     SmallVectorImpl<PHINode *> *PHIsToRemove) {
82   SmallVector<Use *, 16> UsesToRewrite;
83   SmallSetVector<PHINode *, 16> LocalPHIsToRemove;
84   PredIteratorCache PredCache;
85   bool Changed = false;
86 
87   IRBuilderBase::InsertPointGuard InsertPtGuard(Builder);
88 
89   // Cache the Loop ExitBlocks across this loop.  We expect to get a lot of
90   // instructions within the same loops, computing the exit blocks is
91   // expensive, and we're not mutating the loop structure.
92   SmallDenseMap<Loop*, SmallVector<BasicBlock *,1>> LoopExitBlocks;
93 
94   while (!Worklist.empty()) {
95     UsesToRewrite.clear();
96 
97     Instruction *I = Worklist.pop_back_val();
98     assert(!I->getType()->isTokenTy() && "Tokens shouldn't be in the worklist");
99     BasicBlock *InstBB = I->getParent();
100     Loop *L = LI.getLoopFor(InstBB);
101     assert(L && "Instruction belongs to a BB that's not part of a loop");
102     if (!LoopExitBlocks.count(L))
103       L->getExitBlocks(LoopExitBlocks[L]);
104     assert(LoopExitBlocks.count(L));
105     const SmallVectorImpl<BasicBlock *> &ExitBlocks = LoopExitBlocks[L];
106 
107     if (ExitBlocks.empty())
108       continue;
109 
110     for (Use &U : make_early_inc_range(I->uses())) {
111       Instruction *User = cast<Instruction>(U.getUser());
112       BasicBlock *UserBB = User->getParent();
113 
114       // Skip uses in unreachable blocks.
115       if (!DT.isReachableFromEntry(UserBB)) {
116         U.set(PoisonValue::get(I->getType()));
117         continue;
118       }
119 
120       // For practical purposes, we consider that the use in a PHI
121       // occurs in the respective predecessor block. For more info,
122       // see the `phi` doc in LangRef and the LCSSA doc.
123       if (auto *PN = dyn_cast<PHINode>(User))
124         UserBB = PN->getIncomingBlock(U);
125 
126       if (InstBB != UserBB && !L->contains(UserBB))
127         UsesToRewrite.push_back(&U);
128     }
129 
130     // If there are no uses outside the loop, exit with no change.
131     if (UsesToRewrite.empty())
132       continue;
133 
134     ++NumLCSSA; // We are applying the transformation
135 
136     // Invoke instructions are special in that their result value is not
137     // available along their unwind edge. The code below tests to see whether
138     // DomBB dominates the value, so adjust DomBB to the normal destination
139     // block, which is effectively where the value is first usable.
140     BasicBlock *DomBB = InstBB;
141     if (auto *Inv = dyn_cast<InvokeInst>(I))
142       DomBB = Inv->getNormalDest();
143 
144     const DomTreeNode *DomNode = DT.getNode(DomBB);
145 
146     SmallVector<PHINode *, 16> AddedPHIs;
147     SmallVector<PHINode *, 8> PostProcessPHIs;
148 
149     SmallVector<PHINode *, 4> InsertedPHIs;
150     SSAUpdater SSAUpdate(&InsertedPHIs);
151     SSAUpdate.Initialize(I->getType(), I->getName());
152 
153     // Insert the LCSSA phi's into all of the exit blocks dominated by the
154     // value, and add them to the Phi's map.
155     for (BasicBlock *ExitBB : ExitBlocks) {
156       if (!DT.dominates(DomNode, DT.getNode(ExitBB)))
157         continue;
158 
159       // If we already inserted something for this BB, don't reprocess it.
160       if (SSAUpdate.HasValueForBlock(ExitBB))
161         continue;
162       Builder.SetInsertPoint(&ExitBB->front());
163       PHINode *PN = Builder.CreatePHI(I->getType(), PredCache.size(ExitBB),
164                                       I->getName() + ".lcssa");
165       // Get the debug location from the original instruction.
166       PN->setDebugLoc(I->getDebugLoc());
167 
168       // Add inputs from inside the loop for this PHI. This is valid
169       // because `I` dominates `ExitBB` (checked above).  This implies
170       // that every incoming block/edge is dominated by `I` as well,
171       // i.e. we can add uses of `I` to those incoming edges/append to the incoming
172       // blocks without violating the SSA dominance property.
173       for (BasicBlock *Pred : PredCache.get(ExitBB)) {
174         PN->addIncoming(I, Pred);
175 
176         // If the exit block has a predecessor not within the loop, arrange for
177         // the incoming value use corresponding to that predecessor to be
178         // rewritten in terms of a different LCSSA PHI.
179         if (!L->contains(Pred))
180           UsesToRewrite.push_back(
181               &PN->getOperandUse(PN->getOperandNumForIncomingValue(
182                   PN->getNumIncomingValues() - 1)));
183       }
184 
185       AddedPHIs.push_back(PN);
186 
187       // Remember that this phi makes the value alive in this block.
188       SSAUpdate.AddAvailableValue(ExitBB, PN);
189 
190       // LoopSimplify might fail to simplify some loops (e.g. when indirect
191       // branches are involved). In such situations, it might happen that an
192       // exit for Loop L1 is the header of a disjoint Loop L2. Thus, when we
193       // create PHIs in such an exit block, we are also inserting PHIs into L2's
194       // header. This could break LCSSA form for L2 because these inserted PHIs
195       // can also have uses outside of L2. Remember all PHIs in such situation
196       // as to revisit than later on. FIXME: Remove this if indirectbr support
197       // into LoopSimplify gets improved.
198       if (auto *OtherLoop = LI.getLoopFor(ExitBB))
199         if (!L->contains(OtherLoop))
200           PostProcessPHIs.push_back(PN);
201     }
202 
203     // Rewrite all uses outside the loop in terms of the new PHIs we just
204     // inserted.
205     for (Use *UseToRewrite : UsesToRewrite) {
206       Instruction *User = cast<Instruction>(UseToRewrite->getUser());
207       BasicBlock *UserBB = User->getParent();
208 
209       // For practical purposes, we consider that the use in a PHI
210       // occurs in the respective predecessor block. For more info,
211       // see the `phi` doc in LangRef and the LCSSA doc.
212       if (auto *PN = dyn_cast<PHINode>(User))
213         UserBB = PN->getIncomingBlock(*UseToRewrite);
214 
215       // If this use is in an exit block, rewrite to use the newly inserted PHI.
216       // This is required for correctness because SSAUpdate doesn't handle uses
217       // in the same block.  It assumes the PHI we inserted is at the end of the
218       // block.
219       if (isa<PHINode>(UserBB->begin()) && isExitBlock(UserBB, ExitBlocks)) {
220         UseToRewrite->set(&UserBB->front());
221         continue;
222       }
223 
224       // If we added a single PHI, it must dominate all uses and we can directly
225       // rename it.
226       if (AddedPHIs.size() == 1) {
227         UseToRewrite->set(AddedPHIs[0]);
228         continue;
229       }
230 
231       // Otherwise, do full PHI insertion.
232       SSAUpdate.RewriteUse(*UseToRewrite);
233     }
234 
235     SmallVector<DbgValueInst *, 4> DbgValues;
236     llvm::findDbgValues(DbgValues, I);
237 
238     // Update pre-existing debug value uses that reside outside the loop.
239     for (auto *DVI : DbgValues) {
240       BasicBlock *UserBB = DVI->getParent();
241       if (InstBB == UserBB || L->contains(UserBB))
242         continue;
243       // We currently only handle debug values residing in blocks that were
244       // traversed while rewriting the uses. If we inserted just a single PHI,
245       // we will handle all relevant debug values.
246       Value *V = AddedPHIs.size() == 1 ? AddedPHIs[0]
247                                        : SSAUpdate.FindValueForBlock(UserBB);
248       if (V)
249         DVI->replaceVariableLocationOp(I, V);
250     }
251 
252     // SSAUpdater might have inserted phi-nodes inside other loops. We'll need
253     // to post-process them to keep LCSSA form.
254     for (PHINode *InsertedPN : InsertedPHIs) {
255       if (auto *OtherLoop = LI.getLoopFor(InsertedPN->getParent()))
256         if (!L->contains(OtherLoop))
257           PostProcessPHIs.push_back(InsertedPN);
258     }
259 
260     // Post process PHI instructions that were inserted into another disjoint
261     // loop and update their exits properly.
262     for (auto *PostProcessPN : PostProcessPHIs)
263       if (!PostProcessPN->use_empty())
264         Worklist.push_back(PostProcessPN);
265 
266     // Keep track of PHI nodes that we want to remove because they did not have
267     // any uses rewritten.
268     for (PHINode *PN : AddedPHIs)
269       if (PN->use_empty())
270         LocalPHIsToRemove.insert(PN);
271 
272     Changed = true;
273   }
274 
275   // Remove PHI nodes that did not have any uses rewritten or add them to
276   // PHIsToRemove, so the caller can remove them after some additional cleanup.
277   // We need to redo the use_empty() check here, because even if the PHI node
278   // wasn't used when added to LocalPHIsToRemove, later added PHI nodes can be
279   // using it.  This cleanup is not guaranteed to handle trees/cycles of PHI
280   // nodes that only are used by each other. Such situations has only been
281   // noticed when the input IR contains unreachable code, and leaving some extra
282   // redundant PHI nodes in such situations is considered a minor problem.
283   if (PHIsToRemove) {
284     PHIsToRemove->append(LocalPHIsToRemove.begin(), LocalPHIsToRemove.end());
285   } else {
286     for (PHINode *PN : LocalPHIsToRemove)
287       if (PN->use_empty())
288         PN->eraseFromParent();
289   }
290   return Changed;
291 }
292 
293 // Compute the set of BasicBlocks in the loop `L` dominating at least one exit.
294 static void computeBlocksDominatingExits(
295     Loop &L, const DominatorTree &DT, SmallVector<BasicBlock *, 8> &ExitBlocks,
296     SmallSetVector<BasicBlock *, 8> &BlocksDominatingExits) {
297   // We start from the exit blocks, as every block trivially dominates itself
298   // (not strictly).
299   SmallVector<BasicBlock *, 8> BBWorklist(ExitBlocks);
300 
301   while (!BBWorklist.empty()) {
302     BasicBlock *BB = BBWorklist.pop_back_val();
303 
304     // Check if this is a loop header. If this is the case, we're done.
305     if (L.getHeader() == BB)
306       continue;
307 
308     // Otherwise, add its immediate predecessor in the dominator tree to the
309     // worklist, unless we visited it already.
310     BasicBlock *IDomBB = DT.getNode(BB)->getIDom()->getBlock();
311 
312     // Exit blocks can have an immediate dominator not belonging to the
313     // loop. For an exit block to be immediately dominated by another block
314     // outside the loop, it implies not all paths from that dominator, to the
315     // exit block, go through the loop.
316     // Example:
317     //
318     // |---- A
319     // |     |
320     // |     B<--
321     // |     |  |
322     // |---> C --
323     //       |
324     //       D
325     //
326     // C is the exit block of the loop and it's immediately dominated by A,
327     // which doesn't belong to the loop.
328     if (!L.contains(IDomBB))
329       continue;
330 
331     if (BlocksDominatingExits.insert(IDomBB))
332       BBWorklist.push_back(IDomBB);
333   }
334 }
335 
336 bool llvm::formLCSSA(Loop &L, const DominatorTree &DT, const LoopInfo *LI) {
337   bool Changed = false;
338 
339 #ifdef EXPENSIVE_CHECKS
340   // Verify all sub-loops are in LCSSA form already.
341   for (Loop *SubLoop: L) {
342     (void)SubLoop; // Silence unused variable warning.
343     assert(SubLoop->isRecursivelyLCSSAForm(DT, *LI) && "Subloop not in LCSSA!");
344   }
345 #endif
346 
347   SmallVector<BasicBlock *, 8> ExitBlocks;
348   L.getExitBlocks(ExitBlocks);
349   if (ExitBlocks.empty())
350     return false;
351 
352   SmallSetVector<BasicBlock *, 8> BlocksDominatingExits;
353 
354   // We want to avoid use-scanning leveraging dominance informations.
355   // If a block doesn't dominate any of the loop exits, the none of the values
356   // defined in the loop can be used outside.
357   // We compute the set of blocks fullfilling the conditions in advance
358   // walking the dominator tree upwards until we hit a loop header.
359   computeBlocksDominatingExits(L, DT, ExitBlocks, BlocksDominatingExits);
360 
361   SmallVector<Instruction *, 8> Worklist;
362 
363   // Look at all the instructions in the loop, checking to see if they have uses
364   // outside the loop.  If so, put them into the worklist to rewrite those uses.
365   for (BasicBlock *BB : BlocksDominatingExits) {
366     // Skip blocks that are part of any sub-loops, they must be in LCSSA
367     // already.
368     if (LI->getLoopFor(BB) != &L)
369       continue;
370     for (Instruction &I : *BB) {
371       // Reject two common cases fast: instructions with no uses (like stores)
372       // and instructions with one use that is in the same block as this.
373       if (I.use_empty() ||
374           (I.hasOneUse() && I.user_back()->getParent() == BB &&
375            !isa<PHINode>(I.user_back())))
376         continue;
377 
378       // Tokens cannot be used in PHI nodes, so we skip over them.
379       // We can run into tokens which are live out of a loop with catchswitch
380       // instructions in Windows EH if the catchswitch has one catchpad which
381       // is inside the loop and another which is not.
382       if (I.getType()->isTokenTy())
383         continue;
384 
385       Worklist.push_back(&I);
386     }
387   }
388 
389   IRBuilder<> Builder(L.getHeader()->getContext());
390   Changed = formLCSSAForInstructions(Worklist, DT, *LI, Builder);
391 
392   assert(L.isLCSSAForm(DT));
393 
394   return Changed;
395 }
396 
397 /// Process a loop nest depth first.
398 bool llvm::formLCSSARecursively(Loop &L, const DominatorTree &DT,
399                                 const LoopInfo *LI) {
400   bool Changed = false;
401 
402   // Recurse depth-first through inner loops.
403   for (Loop *SubLoop : L.getSubLoops())
404     Changed |= formLCSSARecursively(*SubLoop, DT, LI);
405 
406   Changed |= formLCSSA(L, DT, LI);
407   return Changed;
408 }
409 
410 /// Process all loops in the function, inner-most out.
411 static bool formLCSSAOnAllLoops(const LoopInfo *LI, const DominatorTree &DT) {
412   bool Changed = false;
413   for (const auto &L : *LI)
414     Changed |= formLCSSARecursively(*L, DT, LI);
415   return Changed;
416 }
417 
418 namespace {
419 struct LCSSAWrapperPass : public FunctionPass {
420   static char ID; // Pass identification, replacement for typeid
421   LCSSAWrapperPass() : FunctionPass(ID) {
422     initializeLCSSAWrapperPassPass(*PassRegistry::getPassRegistry());
423   }
424 
425   // Cached analysis information for the current function.
426   DominatorTree *DT;
427   LoopInfo *LI;
428 
429   bool runOnFunction(Function &F) override;
430   void verifyAnalysis() const override {
431     // This check is very expensive. On the loop intensive compiles it may cause
432     // up to 10x slowdown. Currently it's disabled by default. LPPassManager
433     // always does limited form of the LCSSA verification. Similar reasoning
434     // was used for the LoopInfo verifier.
435     if (VerifyLoopLCSSA) {
436       assert(all_of(*LI,
437                     [&](Loop *L) {
438                       return L->isRecursivelyLCSSAForm(*DT, *LI);
439                     }) &&
440              "LCSSA form is broken!");
441     }
442   };
443 
444   /// This transformation requires natural loop information & requires that
445   /// loop preheaders be inserted into the CFG.  It maintains both of these,
446   /// as well as the CFG.  It also requires dominator information.
447   void getAnalysisUsage(AnalysisUsage &AU) const override {
448     AU.setPreservesCFG();
449 
450     AU.addRequired<DominatorTreeWrapperPass>();
451     AU.addRequired<LoopInfoWrapperPass>();
452     AU.addPreservedID(LoopSimplifyID);
453     AU.addPreserved<AAResultsWrapperPass>();
454     AU.addPreserved<BasicAAWrapperPass>();
455     AU.addPreserved<GlobalsAAWrapperPass>();
456     AU.addPreserved<ScalarEvolutionWrapperPass>();
457     AU.addPreserved<SCEVAAWrapperPass>();
458     AU.addPreserved<BranchProbabilityInfoWrapperPass>();
459     AU.addPreserved<MemorySSAWrapperPass>();
460 
461     // This is needed to perform LCSSA verification inside LPPassManager
462     AU.addRequired<LCSSAVerificationPass>();
463     AU.addPreserved<LCSSAVerificationPass>();
464   }
465 };
466 }
467 
468 char LCSSAWrapperPass::ID = 0;
469 INITIALIZE_PASS_BEGIN(LCSSAWrapperPass, "lcssa", "Loop-Closed SSA Form Pass",
470                       false, false)
471 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
472 INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
473 INITIALIZE_PASS_DEPENDENCY(LCSSAVerificationPass)
474 INITIALIZE_PASS_END(LCSSAWrapperPass, "lcssa", "Loop-Closed SSA Form Pass",
475                     false, false)
476 
477 Pass *llvm::createLCSSAPass() { return new LCSSAWrapperPass(); }
478 char &llvm::LCSSAID = LCSSAWrapperPass::ID;
479 
480 /// Transform \p F into loop-closed SSA form.
481 bool LCSSAWrapperPass::runOnFunction(Function &F) {
482   LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
483   DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
484   return formLCSSAOnAllLoops(LI, *DT);
485 }
486 
487 PreservedAnalyses LCSSAPass::run(Function &F, FunctionAnalysisManager &AM) {
488   auto &LI = AM.getResult<LoopAnalysis>(F);
489   auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
490   if (!formLCSSAOnAllLoops(&LI, DT))
491     return PreservedAnalyses::all();
492 
493   PreservedAnalyses PA;
494   PA.preserveSet<CFGAnalyses>();
495   PA.preserve<ScalarEvolutionAnalysis>();
496   // BPI maps terminators to probabilities, since we don't modify the CFG, no
497   // updates are needed to preserve it.
498   PA.preserve<BranchProbabilityAnalysis>();
499   PA.preserve<MemorySSAAnalysis>();
500   return PA;
501 }
502