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.addRequired<LoopInfoWrapperPass>(); 485ffd83dbSDimitry Andric AU.addRequired<DominatorTreeWrapperPass>(); 495ffd83dbSDimitry Andric AU.addPreserved<LoopInfoWrapperPass>(); 505ffd83dbSDimitry Andric AU.addPreserved<DominatorTreeWrapperPass>(); 515ffd83dbSDimitry Andric } 525ffd83dbSDimitry Andric 535ffd83dbSDimitry Andric bool runOnFunction(Function &F) override; 545ffd83dbSDimitry Andric }; 555ffd83dbSDimitry Andric } // namespace 565ffd83dbSDimitry Andric 57e8d8bef9SDimitry Andric char UnifyLoopExitsLegacyPass::ID = 0; 585ffd83dbSDimitry Andric 59e8d8bef9SDimitry Andric FunctionPass *llvm::createUnifyLoopExitsPass() { 60e8d8bef9SDimitry Andric return new UnifyLoopExitsLegacyPass(); 61e8d8bef9SDimitry Andric } 625ffd83dbSDimitry Andric 63e8d8bef9SDimitry Andric INITIALIZE_PASS_BEGIN(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 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) 675ffd83dbSDimitry Andric INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) 68e8d8bef9SDimitry Andric INITIALIZE_PASS_END(UnifyLoopExitsLegacyPass, "unify-loop-exits", 695ffd83dbSDimitry Andric "Fixup each natural loop to have a single exit block", 705ffd83dbSDimitry Andric false /* Only looks at CFG */, false /* Analysis Pass */) 715ffd83dbSDimitry Andric 725ffd83dbSDimitry Andric // The current transform introduces new control flow paths which may break the 735ffd83dbSDimitry Andric // SSA requirement that every def must dominate all its uses. For example, 745ffd83dbSDimitry Andric // consider a value D defined inside the loop that is used by some instruction 755ffd83dbSDimitry Andric // U outside the loop. It follows that D dominates U, since the original 765ffd83dbSDimitry Andric // program has valid SSA form. After merging the exits, all paths from D to U 775ffd83dbSDimitry Andric // now flow through the unified exit block. In addition, there may be other 785ffd83dbSDimitry Andric // paths that do not pass through D, but now reach the unified exit 795ffd83dbSDimitry Andric // block. Thus, D no longer dominates U. 805ffd83dbSDimitry Andric // 815ffd83dbSDimitry Andric // Restore the dominance by creating a phi for each such D at the new unified 825ffd83dbSDimitry Andric // loop exit. But when doing this, ignore any uses U that are in the new unified 835ffd83dbSDimitry Andric // loop exit, since those were introduced specially when the block was created. 845ffd83dbSDimitry Andric // 855ffd83dbSDimitry Andric // The use of SSAUpdater seems like overkill for this operation. The location 865ffd83dbSDimitry Andric // for creating the new PHI is well-known, and also the set of incoming blocks 875ffd83dbSDimitry Andric // to the new PHI. 885ffd83dbSDimitry Andric static void restoreSSA(const DominatorTree &DT, const Loop *L, 895ffd83dbSDimitry Andric const SetVector<BasicBlock *> &Incoming, 905ffd83dbSDimitry Andric BasicBlock *LoopExitBlock) { 915ffd83dbSDimitry Andric using InstVector = SmallVector<Instruction *, 8>; 92e8d8bef9SDimitry Andric using IIMap = MapVector<Instruction *, InstVector>; 935ffd83dbSDimitry Andric IIMap ExternalUsers; 94bdd1243dSDimitry Andric for (auto *BB : L->blocks()) { 955ffd83dbSDimitry Andric for (auto &I : *BB) { 965ffd83dbSDimitry Andric for (auto &U : I.uses()) { 975ffd83dbSDimitry Andric auto UserInst = cast<Instruction>(U.getUser()); 985ffd83dbSDimitry Andric auto UserBlock = UserInst->getParent(); 995ffd83dbSDimitry Andric if (UserBlock == LoopExitBlock) 1005ffd83dbSDimitry Andric continue; 1015ffd83dbSDimitry Andric if (L->contains(UserBlock)) 1025ffd83dbSDimitry Andric continue; 1035ffd83dbSDimitry Andric LLVM_DEBUG(dbgs() << "added ext use for " << I.getName() << "(" 1045ffd83dbSDimitry Andric << BB->getName() << ")" 1055ffd83dbSDimitry Andric << ": " << UserInst->getName() << "(" 1065ffd83dbSDimitry Andric << UserBlock->getName() << ")" 1075ffd83dbSDimitry Andric << "\n"); 1085ffd83dbSDimitry Andric ExternalUsers[&I].push_back(UserInst); 1095ffd83dbSDimitry Andric } 1105ffd83dbSDimitry Andric } 1115ffd83dbSDimitry Andric } 1125ffd83dbSDimitry Andric 11306c3fb27SDimitry Andric for (const auto &II : ExternalUsers) { 1145ffd83dbSDimitry Andric // For each Def used outside the loop, create NewPhi in 1155ffd83dbSDimitry Andric // LoopExitBlock. NewPhi receives Def only along exiting blocks that 1165ffd83dbSDimitry Andric // dominate it, while the remaining values are undefined since those paths 1175ffd83dbSDimitry Andric // didn't exist in the original CFG. 1185ffd83dbSDimitry Andric auto Def = II.first; 1195ffd83dbSDimitry Andric LLVM_DEBUG(dbgs() << "externally used: " << Def->getName() << "\n"); 120bdd1243dSDimitry Andric auto NewPhi = 121bdd1243dSDimitry Andric PHINode::Create(Def->getType(), Incoming.size(), 122*0fca6ea1SDimitry Andric Def->getName() + ".moved", LoopExitBlock->begin()); 123bdd1243dSDimitry Andric for (auto *In : Incoming) { 1245ffd83dbSDimitry Andric LLVM_DEBUG(dbgs() << "predecessor " << In->getName() << ": "); 1255ffd83dbSDimitry Andric if (Def->getParent() == In || DT.dominates(Def, In)) { 1265ffd83dbSDimitry Andric LLVM_DEBUG(dbgs() << "dominated\n"); 1275ffd83dbSDimitry Andric NewPhi->addIncoming(Def, In); 1285ffd83dbSDimitry Andric } else { 1295ffd83dbSDimitry Andric LLVM_DEBUG(dbgs() << "not dominated\n"); 13006c3fb27SDimitry Andric NewPhi->addIncoming(PoisonValue::get(Def->getType()), In); 1315ffd83dbSDimitry Andric } 1325ffd83dbSDimitry Andric } 1335ffd83dbSDimitry Andric 1345ffd83dbSDimitry Andric LLVM_DEBUG(dbgs() << "external users:"); 135bdd1243dSDimitry Andric for (auto *U : II.second) { 1365ffd83dbSDimitry Andric LLVM_DEBUG(dbgs() << " " << U->getName()); 1375ffd83dbSDimitry Andric U->replaceUsesOfWith(Def, NewPhi); 1385ffd83dbSDimitry Andric } 1395ffd83dbSDimitry Andric LLVM_DEBUG(dbgs() << "\n"); 1405ffd83dbSDimitry Andric } 1415ffd83dbSDimitry Andric } 1425ffd83dbSDimitry Andric 1435ffd83dbSDimitry Andric static bool unifyLoopExits(DominatorTree &DT, LoopInfo &LI, Loop *L) { 1445ffd83dbSDimitry Andric // To unify the loop exits, we need a list of the exiting blocks as 1455ffd83dbSDimitry Andric // well as exit blocks. The functions for locating these lists both 1465ffd83dbSDimitry Andric // traverse the entire loop body. It is more efficient to first 1475ffd83dbSDimitry Andric // locate the exiting blocks and then examine their successors to 1485ffd83dbSDimitry Andric // locate the exit blocks. 1495ffd83dbSDimitry Andric SetVector<BasicBlock *> ExitingBlocks; 1505ffd83dbSDimitry Andric SetVector<BasicBlock *> Exits; 1515ffd83dbSDimitry Andric 1525ffd83dbSDimitry Andric // We need SetVectors, but the Loop API takes a vector, so we use a temporary. 1535ffd83dbSDimitry Andric SmallVector<BasicBlock *, 8> Temp; 1545ffd83dbSDimitry Andric L->getExitingBlocks(Temp); 155bdd1243dSDimitry Andric for (auto *BB : Temp) { 1565ffd83dbSDimitry Andric ExitingBlocks.insert(BB); 157bdd1243dSDimitry Andric for (auto *S : successors(BB)) { 1585ffd83dbSDimitry Andric auto SL = LI.getLoopFor(S); 1595ffd83dbSDimitry Andric // A successor is not an exit if it is directly or indirectly in the 1605ffd83dbSDimitry Andric // current loop. 1615ffd83dbSDimitry Andric if (SL == L || L->contains(SL)) 1625ffd83dbSDimitry Andric continue; 1635ffd83dbSDimitry Andric Exits.insert(S); 1645ffd83dbSDimitry Andric } 1655ffd83dbSDimitry Andric } 1665ffd83dbSDimitry Andric 1675ffd83dbSDimitry Andric LLVM_DEBUG( 1685ffd83dbSDimitry Andric dbgs() << "Found exit blocks:"; 1695ffd83dbSDimitry Andric for (auto Exit : Exits) { 1705ffd83dbSDimitry Andric dbgs() << " " << Exit->getName(); 1715ffd83dbSDimitry Andric } 1725ffd83dbSDimitry Andric dbgs() << "\n"; 1735ffd83dbSDimitry Andric 1745ffd83dbSDimitry Andric dbgs() << "Found exiting blocks:"; 1755ffd83dbSDimitry Andric for (auto EB : ExitingBlocks) { 1765ffd83dbSDimitry Andric dbgs() << " " << EB->getName(); 1775ffd83dbSDimitry Andric } 178fcaf7f86SDimitry Andric dbgs() << "\n";); 1795ffd83dbSDimitry Andric 1805ffd83dbSDimitry Andric if (Exits.size() <= 1) { 1815ffd83dbSDimitry Andric LLVM_DEBUG(dbgs() << "loop does not have multiple exits; nothing to do\n"); 1825ffd83dbSDimitry Andric return false; 1835ffd83dbSDimitry Andric } 1845ffd83dbSDimitry Andric 1855ffd83dbSDimitry Andric SmallVector<BasicBlock *, 8> GuardBlocks; 1865ffd83dbSDimitry Andric DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager); 187bdd1243dSDimitry Andric auto LoopExitBlock = 188bdd1243dSDimitry Andric CreateControlFlowHub(&DTU, GuardBlocks, ExitingBlocks, Exits, "loop.exit", 189bdd1243dSDimitry Andric MaxBooleansInControlFlowHub.getValue()); 1905ffd83dbSDimitry Andric 1915ffd83dbSDimitry Andric restoreSSA(DT, L, ExitingBlocks, LoopExitBlock); 1925ffd83dbSDimitry Andric 1935ffd83dbSDimitry Andric #if defined(EXPENSIVE_CHECKS) 1945ffd83dbSDimitry Andric assert(DT.verify(DominatorTree::VerificationLevel::Full)); 1955ffd83dbSDimitry Andric #else 1965ffd83dbSDimitry Andric assert(DT.verify(DominatorTree::VerificationLevel::Fast)); 1975ffd83dbSDimitry Andric #endif // EXPENSIVE_CHECKS 1985ffd83dbSDimitry Andric L->verifyLoop(); 1995ffd83dbSDimitry Andric 2005ffd83dbSDimitry Andric // The guard blocks were created outside the loop, so they need to become 2015ffd83dbSDimitry Andric // members of the parent loop. 2025ffd83dbSDimitry Andric if (auto ParentLoop = L->getParentLoop()) { 203bdd1243dSDimitry Andric for (auto *G : GuardBlocks) { 2045ffd83dbSDimitry Andric ParentLoop->addBasicBlockToLoop(G, LI); 2055ffd83dbSDimitry Andric } 2065ffd83dbSDimitry Andric ParentLoop->verifyLoop(); 2075ffd83dbSDimitry Andric } 2085ffd83dbSDimitry Andric 2095ffd83dbSDimitry Andric #if defined(EXPENSIVE_CHECKS) 2105ffd83dbSDimitry Andric LI.verify(DT); 2115ffd83dbSDimitry Andric #endif // EXPENSIVE_CHECKS 2125ffd83dbSDimitry Andric 2135ffd83dbSDimitry Andric return true; 2145ffd83dbSDimitry Andric } 2155ffd83dbSDimitry Andric 216e8d8bef9SDimitry Andric static bool runImpl(LoopInfo &LI, DominatorTree &DT) { 2175ffd83dbSDimitry Andric 2185ffd83dbSDimitry Andric bool Changed = false; 2195ffd83dbSDimitry Andric auto Loops = LI.getLoopsInPreorder(); 220bdd1243dSDimitry Andric for (auto *L : Loops) { 2215ffd83dbSDimitry Andric LLVM_DEBUG(dbgs() << "Loop: " << L->getHeader()->getName() << " (depth: " 2225ffd83dbSDimitry Andric << LI.getLoopDepth(L->getHeader()) << ")\n"); 2235ffd83dbSDimitry Andric Changed |= unifyLoopExits(DT, LI, L); 2245ffd83dbSDimitry Andric } 2255ffd83dbSDimitry Andric return Changed; 2265ffd83dbSDimitry Andric } 227e8d8bef9SDimitry Andric 228e8d8bef9SDimitry Andric bool UnifyLoopExitsLegacyPass::runOnFunction(Function &F) { 229e8d8bef9SDimitry Andric LLVM_DEBUG(dbgs() << "===== Unifying loop exits in function " << F.getName() 230e8d8bef9SDimitry Andric << "\n"); 231e8d8bef9SDimitry Andric auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); 232e8d8bef9SDimitry Andric auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); 233e8d8bef9SDimitry Andric 2345f757f3fSDimitry Andric assert(hasOnlySimpleTerminator(F) && "Unsupported block terminator."); 2355f757f3fSDimitry Andric 236e8d8bef9SDimitry Andric return runImpl(LI, DT); 237e8d8bef9SDimitry Andric } 238e8d8bef9SDimitry Andric 239e8d8bef9SDimitry Andric namespace llvm { 240e8d8bef9SDimitry Andric 241e8d8bef9SDimitry Andric PreservedAnalyses UnifyLoopExitsPass::run(Function &F, 242e8d8bef9SDimitry Andric FunctionAnalysisManager &AM) { 243e8d8bef9SDimitry Andric auto &LI = AM.getResult<LoopAnalysis>(F); 244e8d8bef9SDimitry Andric auto &DT = AM.getResult<DominatorTreeAnalysis>(F); 245e8d8bef9SDimitry Andric 246e8d8bef9SDimitry Andric if (!runImpl(LI, DT)) 247e8d8bef9SDimitry Andric return PreservedAnalyses::all(); 248e8d8bef9SDimitry Andric PreservedAnalyses PA; 249e8d8bef9SDimitry Andric PA.preserve<LoopAnalysis>(); 250e8d8bef9SDimitry Andric PA.preserve<DominatorTreeAnalysis>(); 251e8d8bef9SDimitry Andric return PA; 252e8d8bef9SDimitry Andric } 253e8d8bef9SDimitry Andric } // namespace llvm 254