xref: /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Utils/UnifyLoopExits.cpp (revision 06c3fb2749bda94cb5201f81ffdb8fa6c3161b2e)
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 
19e8d8bef9SDimitry Andric #include "llvm/Transforms/Utils/UnifyLoopExits.h"
20e8d8bef9SDimitry Andric #include "llvm/ADT/MapVector.h"
2181ad6265SDimitry Andric #include "llvm/Analysis/DomTreeUpdater.h"
225ffd83dbSDimitry Andric #include "llvm/Analysis/LoopInfo.h"
2381ad6265SDimitry Andric #include "llvm/IR/Constants.h"
245ffd83dbSDimitry Andric #include "llvm/IR/Dominators.h"
255ffd83dbSDimitry Andric #include "llvm/InitializePasses.h"
26bdd1243dSDimitry Andric #include "llvm/Support/CommandLine.h"
275ffd83dbSDimitry Andric #include "llvm/Transforms/Utils.h"
285ffd83dbSDimitry Andric #include "llvm/Transforms/Utils/BasicBlockUtils.h"
295ffd83dbSDimitry Andric 
305ffd83dbSDimitry Andric #define DEBUG_TYPE "unify-loop-exits"
315ffd83dbSDimitry Andric 
325ffd83dbSDimitry Andric using namespace llvm;
335ffd83dbSDimitry Andric 
34bdd1243dSDimitry Andric static cl::opt<unsigned> MaxBooleansInControlFlowHub(
35bdd1243dSDimitry Andric     "max-booleans-in-control-flow-hub", cl::init(32), cl::Hidden,
36bdd1243dSDimitry Andric     cl::desc("Set the maximum number of outgoing blocks for using a boolean "
37bdd1243dSDimitry Andric              "value to record the exiting block in CreateControlFlowHub."));
38bdd1243dSDimitry Andric 
395ffd83dbSDimitry Andric namespace {
40e8d8bef9SDimitry Andric struct UnifyLoopExitsLegacyPass : public FunctionPass {
415ffd83dbSDimitry Andric   static char ID;
42e8d8bef9SDimitry Andric   UnifyLoopExitsLegacyPass() : FunctionPass(ID) {
43e8d8bef9SDimitry Andric     initializeUnifyLoopExitsLegacyPassPass(*PassRegistry::getPassRegistry());
445ffd83dbSDimitry Andric   }
455ffd83dbSDimitry Andric 
465ffd83dbSDimitry Andric   void getAnalysisUsage(AnalysisUsage &AU) const override {
475ffd83dbSDimitry Andric     AU.addRequiredID(LowerSwitchID);
485ffd83dbSDimitry Andric     AU.addRequired<LoopInfoWrapperPass>();
495ffd83dbSDimitry Andric     AU.addRequired<DominatorTreeWrapperPass>();
505ffd83dbSDimitry Andric     AU.addPreservedID(LowerSwitchID);
515ffd83dbSDimitry Andric     AU.addPreserved<LoopInfoWrapperPass>();
525ffd83dbSDimitry Andric     AU.addPreserved<DominatorTreeWrapperPass>();
535ffd83dbSDimitry Andric   }
545ffd83dbSDimitry Andric 
555ffd83dbSDimitry Andric   bool runOnFunction(Function &F) override;
565ffd83dbSDimitry Andric };
575ffd83dbSDimitry Andric } // namespace
585ffd83dbSDimitry Andric 
59e8d8bef9SDimitry Andric char UnifyLoopExitsLegacyPass::ID = 0;
605ffd83dbSDimitry Andric 
61e8d8bef9SDimitry Andric FunctionPass *llvm::createUnifyLoopExitsPass() {
62e8d8bef9SDimitry Andric   return new UnifyLoopExitsLegacyPass();
63e8d8bef9SDimitry Andric }
645ffd83dbSDimitry Andric 
65e8d8bef9SDimitry Andric INITIALIZE_PASS_BEGIN(UnifyLoopExitsLegacyPass, "unify-loop-exits",
665ffd83dbSDimitry Andric                       "Fixup each natural loop to have a single exit block",
675ffd83dbSDimitry Andric                       false /* Only looks at CFG */, false /* Analysis Pass */)
68e8d8bef9SDimitry Andric INITIALIZE_PASS_DEPENDENCY(LowerSwitchLegacyPass)
695ffd83dbSDimitry Andric INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
705ffd83dbSDimitry Andric INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
71e8d8bef9SDimitry Andric INITIALIZE_PASS_END(UnifyLoopExitsLegacyPass, "unify-loop-exits",
725ffd83dbSDimitry Andric                     "Fixup each natural loop to have a single exit block",
735ffd83dbSDimitry Andric                     false /* Only looks at CFG */, false /* Analysis Pass */)
745ffd83dbSDimitry Andric 
755ffd83dbSDimitry Andric // The current transform introduces new control flow paths which may break the
765ffd83dbSDimitry Andric // SSA requirement that every def must dominate all its uses. For example,
775ffd83dbSDimitry Andric // consider a value D defined inside the loop that is used by some instruction
785ffd83dbSDimitry Andric // U outside the loop. It follows that D dominates U, since the original
795ffd83dbSDimitry Andric // program has valid SSA form. After merging the exits, all paths from D to U
805ffd83dbSDimitry Andric // now flow through the unified exit block. In addition, there may be other
815ffd83dbSDimitry Andric // paths that do not pass through D, but now reach the unified exit
825ffd83dbSDimitry Andric // block. Thus, D no longer dominates U.
835ffd83dbSDimitry Andric //
845ffd83dbSDimitry Andric // Restore the dominance by creating a phi for each such D at the new unified
855ffd83dbSDimitry Andric // loop exit. But when doing this, ignore any uses U that are in the new unified
865ffd83dbSDimitry Andric // loop exit, since those were introduced specially when the block was created.
875ffd83dbSDimitry Andric //
885ffd83dbSDimitry Andric // The use of SSAUpdater seems like overkill for this operation. The location
895ffd83dbSDimitry Andric // for creating the new PHI is well-known, and also the set of incoming blocks
905ffd83dbSDimitry Andric // to the new PHI.
915ffd83dbSDimitry Andric static void restoreSSA(const DominatorTree &DT, const Loop *L,
925ffd83dbSDimitry Andric                        const SetVector<BasicBlock *> &Incoming,
935ffd83dbSDimitry Andric                        BasicBlock *LoopExitBlock) {
945ffd83dbSDimitry Andric   using InstVector = SmallVector<Instruction *, 8>;
95e8d8bef9SDimitry Andric   using IIMap = MapVector<Instruction *, InstVector>;
965ffd83dbSDimitry Andric   IIMap ExternalUsers;
97bdd1243dSDimitry Andric   for (auto *BB : L->blocks()) {
985ffd83dbSDimitry Andric     for (auto &I : *BB) {
995ffd83dbSDimitry Andric       for (auto &U : I.uses()) {
1005ffd83dbSDimitry Andric         auto UserInst = cast<Instruction>(U.getUser());
1015ffd83dbSDimitry Andric         auto UserBlock = UserInst->getParent();
1025ffd83dbSDimitry Andric         if (UserBlock == LoopExitBlock)
1035ffd83dbSDimitry Andric           continue;
1045ffd83dbSDimitry Andric         if (L->contains(UserBlock))
1055ffd83dbSDimitry Andric           continue;
1065ffd83dbSDimitry Andric         LLVM_DEBUG(dbgs() << "added ext use for " << I.getName() << "("
1075ffd83dbSDimitry Andric                           << BB->getName() << ")"
1085ffd83dbSDimitry Andric                           << ": " << UserInst->getName() << "("
1095ffd83dbSDimitry Andric                           << UserBlock->getName() << ")"
1105ffd83dbSDimitry Andric                           << "\n");
1115ffd83dbSDimitry Andric         ExternalUsers[&I].push_back(UserInst);
1125ffd83dbSDimitry Andric       }
1135ffd83dbSDimitry Andric     }
1145ffd83dbSDimitry Andric   }
1155ffd83dbSDimitry Andric 
116*06c3fb27SDimitry Andric   for (const auto &II : ExternalUsers) {
1175ffd83dbSDimitry Andric     // For each Def used outside the loop, create NewPhi in
1185ffd83dbSDimitry Andric     // LoopExitBlock. NewPhi receives Def only along exiting blocks that
1195ffd83dbSDimitry Andric     // dominate it, while the remaining values are undefined since those paths
1205ffd83dbSDimitry Andric     // didn't exist in the original CFG.
1215ffd83dbSDimitry Andric     auto Def = II.first;
1225ffd83dbSDimitry Andric     LLVM_DEBUG(dbgs() << "externally used: " << Def->getName() << "\n");
123bdd1243dSDimitry Andric     auto NewPhi =
124bdd1243dSDimitry Andric         PHINode::Create(Def->getType(), Incoming.size(),
125bdd1243dSDimitry Andric                         Def->getName() + ".moved", &LoopExitBlock->front());
126bdd1243dSDimitry Andric     for (auto *In : Incoming) {
1275ffd83dbSDimitry Andric       LLVM_DEBUG(dbgs() << "predecessor " << In->getName() << ": ");
1285ffd83dbSDimitry Andric       if (Def->getParent() == In || DT.dominates(Def, In)) {
1295ffd83dbSDimitry Andric         LLVM_DEBUG(dbgs() << "dominated\n");
1305ffd83dbSDimitry Andric         NewPhi->addIncoming(Def, In);
1315ffd83dbSDimitry Andric       } else {
1325ffd83dbSDimitry Andric         LLVM_DEBUG(dbgs() << "not dominated\n");
133*06c3fb27SDimitry Andric         NewPhi->addIncoming(PoisonValue::get(Def->getType()), In);
1345ffd83dbSDimitry Andric       }
1355ffd83dbSDimitry Andric     }
1365ffd83dbSDimitry Andric 
1375ffd83dbSDimitry Andric     LLVM_DEBUG(dbgs() << "external users:");
138bdd1243dSDimitry Andric     for (auto *U : II.second) {
1395ffd83dbSDimitry Andric       LLVM_DEBUG(dbgs() << " " << U->getName());
1405ffd83dbSDimitry Andric       U->replaceUsesOfWith(Def, NewPhi);
1415ffd83dbSDimitry Andric     }
1425ffd83dbSDimitry Andric     LLVM_DEBUG(dbgs() << "\n");
1435ffd83dbSDimitry Andric   }
1445ffd83dbSDimitry Andric }
1455ffd83dbSDimitry Andric 
1465ffd83dbSDimitry Andric static bool unifyLoopExits(DominatorTree &DT, LoopInfo &LI, Loop *L) {
1475ffd83dbSDimitry Andric   // To unify the loop exits, we need a list of the exiting blocks as
1485ffd83dbSDimitry Andric   // well as exit blocks. The functions for locating these lists both
1495ffd83dbSDimitry Andric   // traverse the entire loop body. It is more efficient to first
1505ffd83dbSDimitry Andric   // locate the exiting blocks and then examine their successors to
1515ffd83dbSDimitry Andric   // locate the exit blocks.
1525ffd83dbSDimitry Andric   SetVector<BasicBlock *> ExitingBlocks;
1535ffd83dbSDimitry Andric   SetVector<BasicBlock *> Exits;
1545ffd83dbSDimitry Andric 
1555ffd83dbSDimitry Andric   // We need SetVectors, but the Loop API takes a vector, so we use a temporary.
1565ffd83dbSDimitry Andric   SmallVector<BasicBlock *, 8> Temp;
1575ffd83dbSDimitry Andric   L->getExitingBlocks(Temp);
158bdd1243dSDimitry Andric   for (auto *BB : Temp) {
1595ffd83dbSDimitry Andric     ExitingBlocks.insert(BB);
160bdd1243dSDimitry Andric     for (auto *S : successors(BB)) {
1615ffd83dbSDimitry Andric       auto SL = LI.getLoopFor(S);
1625ffd83dbSDimitry Andric       // A successor is not an exit if it is directly or indirectly in the
1635ffd83dbSDimitry Andric       // current loop.
1645ffd83dbSDimitry Andric       if (SL == L || L->contains(SL))
1655ffd83dbSDimitry Andric         continue;
1665ffd83dbSDimitry Andric       Exits.insert(S);
1675ffd83dbSDimitry Andric     }
1685ffd83dbSDimitry Andric   }
1695ffd83dbSDimitry Andric 
1705ffd83dbSDimitry Andric   LLVM_DEBUG(
1715ffd83dbSDimitry Andric       dbgs() << "Found exit blocks:";
1725ffd83dbSDimitry Andric       for (auto Exit : Exits) {
1735ffd83dbSDimitry Andric         dbgs() << " " << Exit->getName();
1745ffd83dbSDimitry Andric       }
1755ffd83dbSDimitry Andric       dbgs() << "\n";
1765ffd83dbSDimitry Andric 
1775ffd83dbSDimitry Andric       dbgs() << "Found exiting blocks:";
1785ffd83dbSDimitry Andric       for (auto EB : ExitingBlocks) {
1795ffd83dbSDimitry Andric         dbgs() << " " << EB->getName();
1805ffd83dbSDimitry Andric       }
181fcaf7f86SDimitry Andric       dbgs() << "\n";);
1825ffd83dbSDimitry Andric 
1835ffd83dbSDimitry Andric   if (Exits.size() <= 1) {
1845ffd83dbSDimitry Andric     LLVM_DEBUG(dbgs() << "loop does not have multiple exits; nothing to do\n");
1855ffd83dbSDimitry Andric     return false;
1865ffd83dbSDimitry Andric   }
1875ffd83dbSDimitry Andric 
1885ffd83dbSDimitry Andric   SmallVector<BasicBlock *, 8> GuardBlocks;
1895ffd83dbSDimitry Andric   DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager);
190bdd1243dSDimitry Andric   auto LoopExitBlock =
191bdd1243dSDimitry Andric       CreateControlFlowHub(&DTU, GuardBlocks, ExitingBlocks, Exits, "loop.exit",
192bdd1243dSDimitry Andric                            MaxBooleansInControlFlowHub.getValue());
1935ffd83dbSDimitry Andric 
1945ffd83dbSDimitry Andric   restoreSSA(DT, L, ExitingBlocks, LoopExitBlock);
1955ffd83dbSDimitry Andric 
1965ffd83dbSDimitry Andric #if defined(EXPENSIVE_CHECKS)
1975ffd83dbSDimitry Andric   assert(DT.verify(DominatorTree::VerificationLevel::Full));
1985ffd83dbSDimitry Andric #else
1995ffd83dbSDimitry Andric   assert(DT.verify(DominatorTree::VerificationLevel::Fast));
2005ffd83dbSDimitry Andric #endif // EXPENSIVE_CHECKS
2015ffd83dbSDimitry Andric   L->verifyLoop();
2025ffd83dbSDimitry Andric 
2035ffd83dbSDimitry Andric   // The guard blocks were created outside the loop, so they need to become
2045ffd83dbSDimitry Andric   // members of the parent loop.
2055ffd83dbSDimitry Andric   if (auto ParentLoop = L->getParentLoop()) {
206bdd1243dSDimitry Andric     for (auto *G : GuardBlocks) {
2075ffd83dbSDimitry Andric       ParentLoop->addBasicBlockToLoop(G, LI);
2085ffd83dbSDimitry Andric     }
2095ffd83dbSDimitry Andric     ParentLoop->verifyLoop();
2105ffd83dbSDimitry Andric   }
2115ffd83dbSDimitry Andric 
2125ffd83dbSDimitry Andric #if defined(EXPENSIVE_CHECKS)
2135ffd83dbSDimitry Andric   LI.verify(DT);
2145ffd83dbSDimitry Andric #endif // EXPENSIVE_CHECKS
2155ffd83dbSDimitry Andric 
2165ffd83dbSDimitry Andric   return true;
2175ffd83dbSDimitry Andric }
2185ffd83dbSDimitry Andric 
219e8d8bef9SDimitry Andric static bool runImpl(LoopInfo &LI, DominatorTree &DT) {
2205ffd83dbSDimitry Andric 
2215ffd83dbSDimitry Andric   bool Changed = false;
2225ffd83dbSDimitry Andric   auto Loops = LI.getLoopsInPreorder();
223bdd1243dSDimitry Andric   for (auto *L : Loops) {
2245ffd83dbSDimitry Andric     LLVM_DEBUG(dbgs() << "Loop: " << L->getHeader()->getName() << " (depth: "
2255ffd83dbSDimitry Andric                       << LI.getLoopDepth(L->getHeader()) << ")\n");
2265ffd83dbSDimitry Andric     Changed |= unifyLoopExits(DT, LI, L);
2275ffd83dbSDimitry Andric   }
2285ffd83dbSDimitry Andric   return Changed;
2295ffd83dbSDimitry Andric }
230e8d8bef9SDimitry Andric 
231e8d8bef9SDimitry Andric bool UnifyLoopExitsLegacyPass::runOnFunction(Function &F) {
232e8d8bef9SDimitry Andric   LLVM_DEBUG(dbgs() << "===== Unifying loop exits in function " << F.getName()
233e8d8bef9SDimitry Andric                     << "\n");
234e8d8bef9SDimitry Andric   auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
235e8d8bef9SDimitry Andric   auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
236e8d8bef9SDimitry Andric 
237e8d8bef9SDimitry Andric   return runImpl(LI, DT);
238e8d8bef9SDimitry Andric }
239e8d8bef9SDimitry Andric 
240e8d8bef9SDimitry Andric namespace llvm {
241e8d8bef9SDimitry Andric 
242e8d8bef9SDimitry Andric PreservedAnalyses UnifyLoopExitsPass::run(Function &F,
243e8d8bef9SDimitry Andric                                           FunctionAnalysisManager &AM) {
244e8d8bef9SDimitry Andric   auto &LI = AM.getResult<LoopAnalysis>(F);
245e8d8bef9SDimitry Andric   auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
246e8d8bef9SDimitry Andric 
247e8d8bef9SDimitry Andric   if (!runImpl(LI, DT))
248e8d8bef9SDimitry Andric     return PreservedAnalyses::all();
249e8d8bef9SDimitry Andric   PreservedAnalyses PA;
250e8d8bef9SDimitry Andric   PA.preserve<LoopAnalysis>();
251e8d8bef9SDimitry Andric   PA.preserve<DominatorTreeAnalysis>();
252e8d8bef9SDimitry Andric   return PA;
253e8d8bef9SDimitry Andric }
254e8d8bef9SDimitry Andric } // namespace llvm
255