xref: /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Utils/UnifyLoopExits.cpp (revision e8d8bef961a50d4dc22501cde4fb9fb0be1b2532)
15ffd83dbSDimitry Andric //===- UnifyLoopExits.cpp - Redirect exiting edges to one block -*- C++ -*-===//
25ffd83dbSDimitry Andric //
35ffd83dbSDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
45ffd83dbSDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
55ffd83dbSDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
65ffd83dbSDimitry Andric //
75ffd83dbSDimitry Andric //===----------------------------------------------------------------------===//
85ffd83dbSDimitry Andric //
95ffd83dbSDimitry Andric // For each natural loop with multiple exit blocks, this pass creates a new
105ffd83dbSDimitry Andric // block N such that all exiting blocks now branch to N, and then control flow
115ffd83dbSDimitry Andric // is redistributed to all the original exit blocks.
125ffd83dbSDimitry Andric //
135ffd83dbSDimitry Andric // Limitation: This assumes that all terminators in the CFG are direct branches
145ffd83dbSDimitry Andric //             (the "br" instruction). The presence of any other control flow
155ffd83dbSDimitry Andric //             such as indirectbr, switch or callbr will cause an assert.
165ffd83dbSDimitry Andric //
175ffd83dbSDimitry Andric //===----------------------------------------------------------------------===//
185ffd83dbSDimitry Andric 
19*e8d8bef9SDimitry Andric #include "llvm/Transforms/Utils/UnifyLoopExits.h"
20*e8d8bef9SDimitry Andric #include "llvm/ADT/MapVector.h"
215ffd83dbSDimitry Andric #include "llvm/Analysis/LoopInfo.h"
225ffd83dbSDimitry Andric #include "llvm/IR/Dominators.h"
235ffd83dbSDimitry Andric #include "llvm/InitializePasses.h"
245ffd83dbSDimitry Andric #include "llvm/Transforms/Utils.h"
255ffd83dbSDimitry Andric #include "llvm/Transforms/Utils/BasicBlockUtils.h"
265ffd83dbSDimitry Andric 
275ffd83dbSDimitry Andric #define DEBUG_TYPE "unify-loop-exits"
285ffd83dbSDimitry Andric 
295ffd83dbSDimitry Andric using namespace llvm;
305ffd83dbSDimitry Andric 
315ffd83dbSDimitry Andric namespace {
32*e8d8bef9SDimitry Andric struct UnifyLoopExitsLegacyPass : public FunctionPass {
335ffd83dbSDimitry Andric   static char ID;
34*e8d8bef9SDimitry Andric   UnifyLoopExitsLegacyPass() : FunctionPass(ID) {
35*e8d8bef9SDimitry Andric     initializeUnifyLoopExitsLegacyPassPass(*PassRegistry::getPassRegistry());
365ffd83dbSDimitry Andric   }
375ffd83dbSDimitry Andric 
385ffd83dbSDimitry Andric   void getAnalysisUsage(AnalysisUsage &AU) const override {
395ffd83dbSDimitry Andric     AU.addRequiredID(LowerSwitchID);
405ffd83dbSDimitry Andric     AU.addRequired<LoopInfoWrapperPass>();
415ffd83dbSDimitry Andric     AU.addRequired<DominatorTreeWrapperPass>();
425ffd83dbSDimitry Andric     AU.addPreservedID(LowerSwitchID);
435ffd83dbSDimitry Andric     AU.addPreserved<LoopInfoWrapperPass>();
445ffd83dbSDimitry Andric     AU.addPreserved<DominatorTreeWrapperPass>();
455ffd83dbSDimitry Andric   }
465ffd83dbSDimitry Andric 
475ffd83dbSDimitry Andric   bool runOnFunction(Function &F) override;
485ffd83dbSDimitry Andric };
495ffd83dbSDimitry Andric } // namespace
505ffd83dbSDimitry Andric 
51*e8d8bef9SDimitry Andric char UnifyLoopExitsLegacyPass::ID = 0;
525ffd83dbSDimitry Andric 
53*e8d8bef9SDimitry Andric FunctionPass *llvm::createUnifyLoopExitsPass() {
54*e8d8bef9SDimitry Andric   return new UnifyLoopExitsLegacyPass();
55*e8d8bef9SDimitry Andric }
565ffd83dbSDimitry Andric 
57*e8d8bef9SDimitry Andric INITIALIZE_PASS_BEGIN(UnifyLoopExitsLegacyPass, "unify-loop-exits",
585ffd83dbSDimitry Andric                       "Fixup each natural loop to have a single exit block",
595ffd83dbSDimitry Andric                       false /* Only looks at CFG */, false /* Analysis Pass */)
60*e8d8bef9SDimitry Andric INITIALIZE_PASS_DEPENDENCY(LowerSwitchLegacyPass)
615ffd83dbSDimitry Andric INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
625ffd83dbSDimitry Andric INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
63*e8d8bef9SDimitry Andric INITIALIZE_PASS_END(UnifyLoopExitsLegacyPass, "unify-loop-exits",
645ffd83dbSDimitry Andric                     "Fixup each natural loop to have a single exit block",
655ffd83dbSDimitry Andric                     false /* Only looks at CFG */, false /* Analysis Pass */)
665ffd83dbSDimitry Andric 
675ffd83dbSDimitry Andric // The current transform introduces new control flow paths which may break the
685ffd83dbSDimitry Andric // SSA requirement that every def must dominate all its uses. For example,
695ffd83dbSDimitry Andric // consider a value D defined inside the loop that is used by some instruction
705ffd83dbSDimitry Andric // U outside the loop. It follows that D dominates U, since the original
715ffd83dbSDimitry Andric // program has valid SSA form. After merging the exits, all paths from D to U
725ffd83dbSDimitry Andric // now flow through the unified exit block. In addition, there may be other
735ffd83dbSDimitry Andric // paths that do not pass through D, but now reach the unified exit
745ffd83dbSDimitry Andric // block. Thus, D no longer dominates U.
755ffd83dbSDimitry Andric //
765ffd83dbSDimitry Andric // Restore the dominance by creating a phi for each such D at the new unified
775ffd83dbSDimitry Andric // loop exit. But when doing this, ignore any uses U that are in the new unified
785ffd83dbSDimitry Andric // loop exit, since those were introduced specially when the block was created.
795ffd83dbSDimitry Andric //
805ffd83dbSDimitry Andric // The use of SSAUpdater seems like overkill for this operation. The location
815ffd83dbSDimitry Andric // for creating the new PHI is well-known, and also the set of incoming blocks
825ffd83dbSDimitry Andric // to the new PHI.
835ffd83dbSDimitry Andric static void restoreSSA(const DominatorTree &DT, const Loop *L,
845ffd83dbSDimitry Andric                        const SetVector<BasicBlock *> &Incoming,
855ffd83dbSDimitry Andric                        BasicBlock *LoopExitBlock) {
865ffd83dbSDimitry Andric   using InstVector = SmallVector<Instruction *, 8>;
87*e8d8bef9SDimitry Andric   using IIMap = MapVector<Instruction *, InstVector>;
885ffd83dbSDimitry Andric   IIMap ExternalUsers;
895ffd83dbSDimitry Andric   for (auto BB : L->blocks()) {
905ffd83dbSDimitry Andric     for (auto &I : *BB) {
915ffd83dbSDimitry Andric       for (auto &U : I.uses()) {
925ffd83dbSDimitry Andric         auto UserInst = cast<Instruction>(U.getUser());
935ffd83dbSDimitry Andric         auto UserBlock = UserInst->getParent();
945ffd83dbSDimitry Andric         if (UserBlock == LoopExitBlock)
955ffd83dbSDimitry Andric           continue;
965ffd83dbSDimitry Andric         if (L->contains(UserBlock))
975ffd83dbSDimitry Andric           continue;
985ffd83dbSDimitry Andric         LLVM_DEBUG(dbgs() << "added ext use for " << I.getName() << "("
995ffd83dbSDimitry Andric                           << BB->getName() << ")"
1005ffd83dbSDimitry Andric                           << ": " << UserInst->getName() << "("
1015ffd83dbSDimitry Andric                           << UserBlock->getName() << ")"
1025ffd83dbSDimitry Andric                           << "\n");
1035ffd83dbSDimitry Andric         ExternalUsers[&I].push_back(UserInst);
1045ffd83dbSDimitry Andric       }
1055ffd83dbSDimitry Andric     }
1065ffd83dbSDimitry Andric   }
1075ffd83dbSDimitry Andric 
1085ffd83dbSDimitry Andric   for (auto II : ExternalUsers) {
1095ffd83dbSDimitry Andric     // For each Def used outside the loop, create NewPhi in
1105ffd83dbSDimitry Andric     // LoopExitBlock. NewPhi receives Def only along exiting blocks that
1115ffd83dbSDimitry Andric     // dominate it, while the remaining values are undefined since those paths
1125ffd83dbSDimitry Andric     // didn't exist in the original CFG.
1135ffd83dbSDimitry Andric     auto Def = II.first;
1145ffd83dbSDimitry Andric     LLVM_DEBUG(dbgs() << "externally used: " << Def->getName() << "\n");
1155ffd83dbSDimitry Andric     auto NewPhi = PHINode::Create(Def->getType(), Incoming.size(),
1165ffd83dbSDimitry Andric                                   Def->getName() + ".moved",
1175ffd83dbSDimitry Andric                                   LoopExitBlock->getTerminator());
1185ffd83dbSDimitry Andric     for (auto In : Incoming) {
1195ffd83dbSDimitry Andric       LLVM_DEBUG(dbgs() << "predecessor " << In->getName() << ": ");
1205ffd83dbSDimitry Andric       if (Def->getParent() == In || DT.dominates(Def, In)) {
1215ffd83dbSDimitry Andric         LLVM_DEBUG(dbgs() << "dominated\n");
1225ffd83dbSDimitry Andric         NewPhi->addIncoming(Def, In);
1235ffd83dbSDimitry Andric       } else {
1245ffd83dbSDimitry Andric         LLVM_DEBUG(dbgs() << "not dominated\n");
1255ffd83dbSDimitry Andric         NewPhi->addIncoming(UndefValue::get(Def->getType()), In);
1265ffd83dbSDimitry Andric       }
1275ffd83dbSDimitry Andric     }
1285ffd83dbSDimitry Andric 
1295ffd83dbSDimitry Andric     LLVM_DEBUG(dbgs() << "external users:");
1305ffd83dbSDimitry Andric     for (auto U : II.second) {
1315ffd83dbSDimitry Andric       LLVM_DEBUG(dbgs() << " " << U->getName());
1325ffd83dbSDimitry Andric       U->replaceUsesOfWith(Def, NewPhi);
1335ffd83dbSDimitry Andric     }
1345ffd83dbSDimitry Andric     LLVM_DEBUG(dbgs() << "\n");
1355ffd83dbSDimitry Andric   }
1365ffd83dbSDimitry Andric }
1375ffd83dbSDimitry Andric 
1385ffd83dbSDimitry Andric static bool unifyLoopExits(DominatorTree &DT, LoopInfo &LI, Loop *L) {
1395ffd83dbSDimitry Andric   // To unify the loop exits, we need a list of the exiting blocks as
1405ffd83dbSDimitry Andric   // well as exit blocks. The functions for locating these lists both
1415ffd83dbSDimitry Andric   // traverse the entire loop body. It is more efficient to first
1425ffd83dbSDimitry Andric   // locate the exiting blocks and then examine their successors to
1435ffd83dbSDimitry Andric   // locate the exit blocks.
1445ffd83dbSDimitry Andric   SetVector<BasicBlock *> ExitingBlocks;
1455ffd83dbSDimitry Andric   SetVector<BasicBlock *> Exits;
1465ffd83dbSDimitry Andric 
1475ffd83dbSDimitry Andric   // We need SetVectors, but the Loop API takes a vector, so we use a temporary.
1485ffd83dbSDimitry Andric   SmallVector<BasicBlock *, 8> Temp;
1495ffd83dbSDimitry Andric   L->getExitingBlocks(Temp);
1505ffd83dbSDimitry Andric   for (auto BB : Temp) {
1515ffd83dbSDimitry Andric     ExitingBlocks.insert(BB);
1525ffd83dbSDimitry Andric     for (auto S : successors(BB)) {
1535ffd83dbSDimitry Andric       auto SL = LI.getLoopFor(S);
1545ffd83dbSDimitry Andric       // A successor is not an exit if it is directly or indirectly in the
1555ffd83dbSDimitry Andric       // current loop.
1565ffd83dbSDimitry Andric       if (SL == L || L->contains(SL))
1575ffd83dbSDimitry Andric         continue;
1585ffd83dbSDimitry Andric       Exits.insert(S);
1595ffd83dbSDimitry Andric     }
1605ffd83dbSDimitry Andric   }
1615ffd83dbSDimitry Andric 
1625ffd83dbSDimitry Andric   LLVM_DEBUG(
1635ffd83dbSDimitry Andric       dbgs() << "Found exit blocks:";
1645ffd83dbSDimitry Andric       for (auto Exit : Exits) {
1655ffd83dbSDimitry Andric         dbgs() << " " << Exit->getName();
1665ffd83dbSDimitry Andric       }
1675ffd83dbSDimitry Andric       dbgs() << "\n";
1685ffd83dbSDimitry Andric 
1695ffd83dbSDimitry Andric       dbgs() << "Found exiting blocks:";
1705ffd83dbSDimitry Andric       for (auto EB : ExitingBlocks) {
1715ffd83dbSDimitry Andric         dbgs() << " " << EB->getName();
1725ffd83dbSDimitry Andric       }
1735ffd83dbSDimitry Andric       dbgs() << "\n";);
1745ffd83dbSDimitry Andric 
1755ffd83dbSDimitry Andric   if (Exits.size() <= 1) {
1765ffd83dbSDimitry Andric     LLVM_DEBUG(dbgs() << "loop does not have multiple exits; nothing to do\n");
1775ffd83dbSDimitry Andric     return false;
1785ffd83dbSDimitry Andric   }
1795ffd83dbSDimitry Andric 
1805ffd83dbSDimitry Andric   SmallVector<BasicBlock *, 8> GuardBlocks;
1815ffd83dbSDimitry Andric   DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager);
1825ffd83dbSDimitry Andric   auto LoopExitBlock = CreateControlFlowHub(&DTU, GuardBlocks, ExitingBlocks,
1835ffd83dbSDimitry Andric                                             Exits, "loop.exit");
1845ffd83dbSDimitry Andric 
1855ffd83dbSDimitry Andric   restoreSSA(DT, L, ExitingBlocks, LoopExitBlock);
1865ffd83dbSDimitry Andric 
1875ffd83dbSDimitry Andric #if defined(EXPENSIVE_CHECKS)
1885ffd83dbSDimitry Andric   assert(DT.verify(DominatorTree::VerificationLevel::Full));
1895ffd83dbSDimitry Andric #else
1905ffd83dbSDimitry Andric   assert(DT.verify(DominatorTree::VerificationLevel::Fast));
1915ffd83dbSDimitry Andric #endif // EXPENSIVE_CHECKS
1925ffd83dbSDimitry Andric   L->verifyLoop();
1935ffd83dbSDimitry Andric 
1945ffd83dbSDimitry Andric   // The guard blocks were created outside the loop, so they need to become
1955ffd83dbSDimitry Andric   // members of the parent loop.
1965ffd83dbSDimitry Andric   if (auto ParentLoop = L->getParentLoop()) {
1975ffd83dbSDimitry Andric     for (auto G : GuardBlocks) {
1985ffd83dbSDimitry Andric       ParentLoop->addBasicBlockToLoop(G, LI);
1995ffd83dbSDimitry Andric     }
2005ffd83dbSDimitry Andric     ParentLoop->verifyLoop();
2015ffd83dbSDimitry Andric   }
2025ffd83dbSDimitry Andric 
2035ffd83dbSDimitry Andric #if defined(EXPENSIVE_CHECKS)
2045ffd83dbSDimitry Andric   LI.verify(DT);
2055ffd83dbSDimitry Andric #endif // EXPENSIVE_CHECKS
2065ffd83dbSDimitry Andric 
2075ffd83dbSDimitry Andric   return true;
2085ffd83dbSDimitry Andric }
2095ffd83dbSDimitry Andric 
210*e8d8bef9SDimitry Andric static bool runImpl(LoopInfo &LI, DominatorTree &DT) {
2115ffd83dbSDimitry Andric 
2125ffd83dbSDimitry Andric   bool Changed = false;
2135ffd83dbSDimitry Andric   auto Loops = LI.getLoopsInPreorder();
2145ffd83dbSDimitry Andric   for (auto L : Loops) {
2155ffd83dbSDimitry Andric     LLVM_DEBUG(dbgs() << "Loop: " << L->getHeader()->getName() << " (depth: "
2165ffd83dbSDimitry Andric                       << LI.getLoopDepth(L->getHeader()) << ")\n");
2175ffd83dbSDimitry Andric     Changed |= unifyLoopExits(DT, LI, L);
2185ffd83dbSDimitry Andric   }
2195ffd83dbSDimitry Andric   return Changed;
2205ffd83dbSDimitry Andric }
221*e8d8bef9SDimitry Andric 
222*e8d8bef9SDimitry Andric bool UnifyLoopExitsLegacyPass::runOnFunction(Function &F) {
223*e8d8bef9SDimitry Andric   LLVM_DEBUG(dbgs() << "===== Unifying loop exits in function " << F.getName()
224*e8d8bef9SDimitry Andric                     << "\n");
225*e8d8bef9SDimitry Andric   auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
226*e8d8bef9SDimitry Andric   auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
227*e8d8bef9SDimitry Andric 
228*e8d8bef9SDimitry Andric   return runImpl(LI, DT);
229*e8d8bef9SDimitry Andric }
230*e8d8bef9SDimitry Andric 
231*e8d8bef9SDimitry Andric namespace llvm {
232*e8d8bef9SDimitry Andric 
233*e8d8bef9SDimitry Andric PreservedAnalyses UnifyLoopExitsPass::run(Function &F,
234*e8d8bef9SDimitry Andric                                           FunctionAnalysisManager &AM) {
235*e8d8bef9SDimitry Andric   auto &LI = AM.getResult<LoopAnalysis>(F);
236*e8d8bef9SDimitry Andric   auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
237*e8d8bef9SDimitry Andric 
238*e8d8bef9SDimitry Andric   if (!runImpl(LI, DT))
239*e8d8bef9SDimitry Andric     return PreservedAnalyses::all();
240*e8d8bef9SDimitry Andric   PreservedAnalyses PA;
241*e8d8bef9SDimitry Andric   PA.preserve<LoopAnalysis>();
242*e8d8bef9SDimitry Andric   PA.preserve<DominatorTreeAnalysis>();
243*e8d8bef9SDimitry Andric   return PA;
244*e8d8bef9SDimitry Andric }
245*e8d8bef9SDimitry Andric } // namespace llvm
246