1d8b0c8ceSChandler Carruth ///===- SimpleLoopUnswitch.cpp - Hoist loop-invariant control flow ---------===// 21353f9a4SChandler Carruth // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 61353f9a4SChandler Carruth // 71353f9a4SChandler Carruth //===----------------------------------------------------------------------===// 81353f9a4SChandler Carruth 96bda14b3SChandler Carruth #include "llvm/Transforms/Scalar/SimpleLoopUnswitch.h" 10a369a457SEugene Zelenko #include "llvm/ADT/DenseMap.h" 116bda14b3SChandler Carruth #include "llvm/ADT/STLExtras.h" 12a369a457SEugene Zelenko #include "llvm/ADT/Sequence.h" 13a369a457SEugene Zelenko #include "llvm/ADT/SetVector.h" 141353f9a4SChandler Carruth #include "llvm/ADT/SmallPtrSet.h" 15a369a457SEugene Zelenko #include "llvm/ADT/SmallVector.h" 161353f9a4SChandler Carruth #include "llvm/ADT/Statistic.h" 17a369a457SEugene Zelenko #include "llvm/ADT/Twine.h" 181353f9a4SChandler Carruth #include "llvm/Analysis/AssumptionCache.h" 1932e62f9cSChandler Carruth #include "llvm/Analysis/CFG.h" 20693eedb1SChandler Carruth #include "llvm/Analysis/CodeMetrics.h" 21619a8346SMax Kazantsev #include "llvm/Analysis/GuardUtils.h" 224da3331dSChandler Carruth #include "llvm/Analysis/InstructionSimplify.h" 23a369a457SEugene Zelenko #include "llvm/Analysis/LoopAnalysisManager.h" 241353f9a4SChandler Carruth #include "llvm/Analysis/LoopInfo.h" 2532e62f9cSChandler Carruth #include "llvm/Analysis/LoopIterator.h" 261353f9a4SChandler Carruth #include "llvm/Analysis/LoopPass.h" 27a2eebb82SAlina Sbirlea #include "llvm/Analysis/MemorySSA.h" 28a2eebb82SAlina Sbirlea #include "llvm/Analysis/MemorySSAUpdater.h" 29a369a457SEugene Zelenko #include "llvm/IR/BasicBlock.h" 30a369a457SEugene Zelenko #include "llvm/IR/Constant.h" 311353f9a4SChandler Carruth #include "llvm/IR/Constants.h" 321353f9a4SChandler Carruth #include "llvm/IR/Dominators.h" 331353f9a4SChandler Carruth #include "llvm/IR/Function.h" 34a369a457SEugene Zelenko #include "llvm/IR/InstrTypes.h" 35a369a457SEugene Zelenko #include "llvm/IR/Instruction.h" 361353f9a4SChandler Carruth #include "llvm/IR/Instructions.h" 37693eedb1SChandler Carruth #include "llvm/IR/IntrinsicInst.h" 381055e9e3SNikita Popov #include "llvm/IR/IRBuilder.h" 39a369a457SEugene Zelenko #include "llvm/IR/Use.h" 40a369a457SEugene Zelenko #include "llvm/IR/Value.h" 4105da2fe5SReid Kleckner #include "llvm/InitializePasses.h" 42a369a457SEugene Zelenko #include "llvm/Pass.h" 43a369a457SEugene Zelenko #include "llvm/Support/Casting.h" 444c1a1d3cSReid Kleckner #include "llvm/Support/CommandLine.h" 451353f9a4SChandler Carruth #include "llvm/Support/Debug.h" 46a369a457SEugene Zelenko #include "llvm/Support/ErrorHandling.h" 47a369a457SEugene Zelenko #include "llvm/Support/GenericDomTree.h" 481353f9a4SChandler Carruth #include "llvm/Support/raw_ostream.h" 49693eedb1SChandler Carruth #include "llvm/Transforms/Scalar/SimpleLoopUnswitch.h" 501353f9a4SChandler Carruth #include "llvm/Transforms/Utils/BasicBlockUtils.h" 51693eedb1SChandler Carruth #include "llvm/Transforms/Utils/Cloning.h" 521353f9a4SChandler Carruth #include "llvm/Transforms/Utils/LoopUtils.h" 53693eedb1SChandler Carruth #include "llvm/Transforms/Utils/ValueMapper.h" 54a369a457SEugene Zelenko #include <algorithm> 55a369a457SEugene Zelenko #include <cassert> 56a369a457SEugene Zelenko #include <iterator> 57693eedb1SChandler Carruth #include <numeric> 58a369a457SEugene Zelenko #include <utility> 591353f9a4SChandler Carruth 601353f9a4SChandler Carruth #define DEBUG_TYPE "simple-loop-unswitch" 611353f9a4SChandler Carruth 621353f9a4SChandler Carruth using namespace llvm; 631353f9a4SChandler Carruth 641353f9a4SChandler Carruth STATISTIC(NumBranches, "Number of branches unswitched"); 651353f9a4SChandler Carruth STATISTIC(NumSwitches, "Number of switches unswitched"); 66619a8346SMax Kazantsev STATISTIC(NumGuards, "Number of guards turned into branches for unswitching"); 671353f9a4SChandler Carruth STATISTIC(NumTrivial, "Number of unswitches that are trivial"); 682e3e224eSFedor Sergeev STATISTIC( 692e3e224eSFedor Sergeev NumCostMultiplierSkipped, 702e3e224eSFedor Sergeev "Number of unswitch candidates that had their cost multiplier skipped"); 711353f9a4SChandler Carruth 72693eedb1SChandler Carruth static cl::opt<bool> EnableNonTrivialUnswitch( 73693eedb1SChandler Carruth "enable-nontrivial-unswitch", cl::init(false), cl::Hidden, 74693eedb1SChandler Carruth cl::desc("Forcibly enables non-trivial loop unswitching rather than " 75693eedb1SChandler Carruth "following the configuration passed into the pass.")); 76693eedb1SChandler Carruth 77693eedb1SChandler Carruth static cl::opt<int> 78693eedb1SChandler Carruth UnswitchThreshold("unswitch-threshold", cl::init(50), cl::Hidden, 79693eedb1SChandler Carruth cl::desc("The cost threshold for unswitching a loop.")); 80693eedb1SChandler Carruth 812e3e224eSFedor Sergeev static cl::opt<bool> EnableUnswitchCostMultiplier( 822e3e224eSFedor Sergeev "enable-unswitch-cost-multiplier", cl::init(true), cl::Hidden, 832e3e224eSFedor Sergeev cl::desc("Enable unswitch cost multiplier that prohibits exponential " 842e3e224eSFedor Sergeev "explosion in nontrivial unswitch.")); 852e3e224eSFedor Sergeev static cl::opt<int> UnswitchSiblingsToplevelDiv( 862e3e224eSFedor Sergeev "unswitch-siblings-toplevel-div", cl::init(2), cl::Hidden, 872e3e224eSFedor Sergeev cl::desc("Toplevel siblings divisor for cost multiplier.")); 882e3e224eSFedor Sergeev static cl::opt<int> UnswitchNumInitialUnscaledCandidates( 892e3e224eSFedor Sergeev "unswitch-num-initial-unscaled-candidates", cl::init(8), cl::Hidden, 902e3e224eSFedor Sergeev cl::desc("Number of unswitch candidates that are ignored when calculating " 912e3e224eSFedor Sergeev "cost multiplier.")); 92619a8346SMax Kazantsev static cl::opt<bool> UnswitchGuards( 93619a8346SMax Kazantsev "simple-loop-unswitch-guards", cl::init(true), cl::Hidden, 94619a8346SMax Kazantsev cl::desc("If enabled, simple loop unswitching will also consider " 95619a8346SMax Kazantsev "llvm.experimental.guard intrinsics as unswitch candidates.")); 96619a8346SMax Kazantsev 974da3331dSChandler Carruth /// Collect all of the loop invariant input values transitively used by the 984da3331dSChandler Carruth /// homogeneous instruction graph from a given root. 994da3331dSChandler Carruth /// 1004da3331dSChandler Carruth /// This essentially walks from a root recursively through loop variant operands 1014da3331dSChandler Carruth /// which have the exact same opcode and finds all inputs which are loop 1024da3331dSChandler Carruth /// invariant. For some operations these can be re-associated and unswitched out 1034da3331dSChandler Carruth /// of the loop entirely. 104d1dab0c3SChandler Carruth static TinyPtrVector<Value *> 1054da3331dSChandler Carruth collectHomogenousInstGraphLoopInvariants(Loop &L, Instruction &Root, 1064da3331dSChandler Carruth LoopInfo &LI) { 1074da3331dSChandler Carruth assert(!L.isLoopInvariant(&Root) && 1084da3331dSChandler Carruth "Only need to walk the graph if root itself is not invariant."); 109d1dab0c3SChandler Carruth TinyPtrVector<Value *> Invariants; 1104da3331dSChandler Carruth 1114da3331dSChandler Carruth // Build a worklist and recurse through operators collecting invariants. 1124da3331dSChandler Carruth SmallVector<Instruction *, 4> Worklist; 1134da3331dSChandler Carruth SmallPtrSet<Instruction *, 8> Visited; 1144da3331dSChandler Carruth Worklist.push_back(&Root); 1154da3331dSChandler Carruth Visited.insert(&Root); 1164da3331dSChandler Carruth do { 1174da3331dSChandler Carruth Instruction &I = *Worklist.pop_back_val(); 1184da3331dSChandler Carruth for (Value *OpV : I.operand_values()) { 1194da3331dSChandler Carruth // Skip constants as unswitching isn't interesting for them. 1204da3331dSChandler Carruth if (isa<Constant>(OpV)) 1214da3331dSChandler Carruth continue; 1224da3331dSChandler Carruth 1234da3331dSChandler Carruth // Add it to our result if loop invariant. 1244da3331dSChandler Carruth if (L.isLoopInvariant(OpV)) { 1254da3331dSChandler Carruth Invariants.push_back(OpV); 1264da3331dSChandler Carruth continue; 1274da3331dSChandler Carruth } 1284da3331dSChandler Carruth 1294da3331dSChandler Carruth // If not an instruction with the same opcode, nothing we can do. 1304da3331dSChandler Carruth Instruction *OpI = dyn_cast<Instruction>(OpV); 1314da3331dSChandler Carruth if (!OpI || OpI->getOpcode() != Root.getOpcode()) 1324da3331dSChandler Carruth continue; 1334da3331dSChandler Carruth 1344da3331dSChandler Carruth // Visit this operand. 1354da3331dSChandler Carruth if (Visited.insert(OpI).second) 1364da3331dSChandler Carruth Worklist.push_back(OpI); 1374da3331dSChandler Carruth } 1384da3331dSChandler Carruth } while (!Worklist.empty()); 1394da3331dSChandler Carruth 1404da3331dSChandler Carruth return Invariants; 1414da3331dSChandler Carruth } 1424da3331dSChandler Carruth 1434da3331dSChandler Carruth static void replaceLoopInvariantUses(Loop &L, Value *Invariant, 1441353f9a4SChandler Carruth Constant &Replacement) { 1454da3331dSChandler Carruth assert(!isa<Constant>(Invariant) && "Why are we unswitching on a constant?"); 1461353f9a4SChandler Carruth 1471353f9a4SChandler Carruth // Replace uses of LIC in the loop with the given constant. 1484da3331dSChandler Carruth for (auto UI = Invariant->use_begin(), UE = Invariant->use_end(); UI != UE;) { 1491353f9a4SChandler Carruth // Grab the use and walk past it so we can clobber it in the use list. 1501353f9a4SChandler Carruth Use *U = &*UI++; 1511353f9a4SChandler Carruth Instruction *UserI = dyn_cast<Instruction>(U->getUser()); 1521353f9a4SChandler Carruth 1531353f9a4SChandler Carruth // Replace this use within the loop body. 1544da3331dSChandler Carruth if (UserI && L.contains(UserI)) 1554da3331dSChandler Carruth U->set(&Replacement); 1561353f9a4SChandler Carruth } 1571353f9a4SChandler Carruth } 1581353f9a4SChandler Carruth 159d869b188SChandler Carruth /// Check that all the LCSSA PHI nodes in the loop exit block have trivial 160d869b188SChandler Carruth /// incoming values along this edge. 161d869b188SChandler Carruth static bool areLoopExitPHIsLoopInvariant(Loop &L, BasicBlock &ExitingBB, 162d869b188SChandler Carruth BasicBlock &ExitBB) { 163d869b188SChandler Carruth for (Instruction &I : ExitBB) { 164d869b188SChandler Carruth auto *PN = dyn_cast<PHINode>(&I); 165d869b188SChandler Carruth if (!PN) 166d869b188SChandler Carruth // No more PHIs to check. 167d869b188SChandler Carruth return true; 168d869b188SChandler Carruth 169d869b188SChandler Carruth // If the incoming value for this edge isn't loop invariant the unswitch 170d869b188SChandler Carruth // won't be trivial. 171d869b188SChandler Carruth if (!L.isLoopInvariant(PN->getIncomingValueForBlock(&ExitingBB))) 172d869b188SChandler Carruth return false; 173d869b188SChandler Carruth } 174d869b188SChandler Carruth llvm_unreachable("Basic blocks should never be empty!"); 175d869b188SChandler Carruth } 176d869b188SChandler Carruth 177d1dab0c3SChandler Carruth /// Insert code to test a set of loop invariant values, and conditionally branch 178d1dab0c3SChandler Carruth /// on them. 179d1dab0c3SChandler Carruth static void buildPartialUnswitchConditionalBranch(BasicBlock &BB, 180d1dab0c3SChandler Carruth ArrayRef<Value *> Invariants, 181d1dab0c3SChandler Carruth bool Direction, 182d1dab0c3SChandler Carruth BasicBlock &UnswitchedSucc, 1832b5a8976SJuneyoung Lee BasicBlock &NormalSucc) { 184d1dab0c3SChandler Carruth IRBuilder<> IRB(&BB); 185d1dab0c3SChandler Carruth 1869e62c864SPhilip Reames Value *Cond = Direction ? IRB.CreateOr(Invariants) : 1879e62c864SPhilip Reames IRB.CreateAnd(Invariants); 188d1dab0c3SChandler Carruth IRB.CreateCondBr(Cond, Direction ? &UnswitchedSucc : &NormalSucc, 189d1dab0c3SChandler Carruth Direction ? &NormalSucc : &UnswitchedSucc); 190d1dab0c3SChandler Carruth } 191d1dab0c3SChandler Carruth 192d869b188SChandler Carruth /// Rewrite the PHI nodes in an unswitched loop exit basic block. 193d869b188SChandler Carruth /// 194d869b188SChandler Carruth /// Requires that the loop exit and unswitched basic block are the same, and 195d869b188SChandler Carruth /// that the exiting block was a unique predecessor of that block. Rewrites the 196d869b188SChandler Carruth /// PHI nodes in that block such that what were LCSSA PHI nodes become trivial 197d869b188SChandler Carruth /// PHI nodes from the old preheader that now contains the unswitched 198d869b188SChandler Carruth /// terminator. 199d869b188SChandler Carruth static void rewritePHINodesForUnswitchedExitBlock(BasicBlock &UnswitchedBB, 200d869b188SChandler Carruth BasicBlock &OldExitingBB, 201d869b188SChandler Carruth BasicBlock &OldPH) { 202c7fc81e6SBenjamin Kramer for (PHINode &PN : UnswitchedBB.phis()) { 203d869b188SChandler Carruth // When the loop exit is directly unswitched we just need to update the 204d869b188SChandler Carruth // incoming basic block. We loop to handle weird cases with repeated 205d869b188SChandler Carruth // incoming blocks, but expect to typically only have one operand here. 206c7fc81e6SBenjamin Kramer for (auto i : seq<int>(0, PN.getNumOperands())) { 207c7fc81e6SBenjamin Kramer assert(PN.getIncomingBlock(i) == &OldExitingBB && 208d869b188SChandler Carruth "Found incoming block different from unique predecessor!"); 209c7fc81e6SBenjamin Kramer PN.setIncomingBlock(i, &OldPH); 210d869b188SChandler Carruth } 211d869b188SChandler Carruth } 212d869b188SChandler Carruth } 213d869b188SChandler Carruth 214d869b188SChandler Carruth /// Rewrite the PHI nodes in the loop exit basic block and the split off 215d869b188SChandler Carruth /// unswitched block. 216d869b188SChandler Carruth /// 217d869b188SChandler Carruth /// Because the exit block remains an exit from the loop, this rewrites the 218d869b188SChandler Carruth /// LCSSA PHI nodes in it to remove the unswitched edge and introduces PHI 219d869b188SChandler Carruth /// nodes into the unswitched basic block to select between the value in the 220d869b188SChandler Carruth /// old preheader and the loop exit. 221d869b188SChandler Carruth static void rewritePHINodesForExitAndUnswitchedBlocks(BasicBlock &ExitBB, 222d869b188SChandler Carruth BasicBlock &UnswitchedBB, 223d869b188SChandler Carruth BasicBlock &OldExitingBB, 2244da3331dSChandler Carruth BasicBlock &OldPH, 2254da3331dSChandler Carruth bool FullUnswitch) { 226d869b188SChandler Carruth assert(&ExitBB != &UnswitchedBB && 227d869b188SChandler Carruth "Must have different loop exit and unswitched blocks!"); 228d869b188SChandler Carruth Instruction *InsertPt = &*UnswitchedBB.begin(); 229c7fc81e6SBenjamin Kramer for (PHINode &PN : ExitBB.phis()) { 230c7fc81e6SBenjamin Kramer auto *NewPN = PHINode::Create(PN.getType(), /*NumReservedValues*/ 2, 231c7fc81e6SBenjamin Kramer PN.getName() + ".split", InsertPt); 232d869b188SChandler Carruth 233d869b188SChandler Carruth // Walk backwards over the old PHI node's inputs to minimize the cost of 234d869b188SChandler Carruth // removing each one. We have to do this weird loop manually so that we 235d869b188SChandler Carruth // create the same number of new incoming edges in the new PHI as we expect 236d869b188SChandler Carruth // each case-based edge to be included in the unswitched switch in some 237d869b188SChandler Carruth // cases. 238d869b188SChandler Carruth // FIXME: This is really, really gross. It would be much cleaner if LLVM 239d869b188SChandler Carruth // allowed us to create a single entry for a predecessor block without 240d869b188SChandler Carruth // having separate entries for each "edge" even though these edges are 241d869b188SChandler Carruth // required to produce identical results. 242c7fc81e6SBenjamin Kramer for (int i = PN.getNumIncomingValues() - 1; i >= 0; --i) { 243c7fc81e6SBenjamin Kramer if (PN.getIncomingBlock(i) != &OldExitingBB) 244d869b188SChandler Carruth continue; 245d869b188SChandler Carruth 2464da3331dSChandler Carruth Value *Incoming = PN.getIncomingValue(i); 2474da3331dSChandler Carruth if (FullUnswitch) 2484da3331dSChandler Carruth // No more edge from the old exiting block to the exit block. 2494da3331dSChandler Carruth PN.removeIncomingValue(i); 2504da3331dSChandler Carruth 251d869b188SChandler Carruth NewPN->addIncoming(Incoming, &OldPH); 252d869b188SChandler Carruth } 253d869b188SChandler Carruth 254d869b188SChandler Carruth // Now replace the old PHI with the new one and wire the old one in as an 255d869b188SChandler Carruth // input to the new one. 256c7fc81e6SBenjamin Kramer PN.replaceAllUsesWith(NewPN); 257c7fc81e6SBenjamin Kramer NewPN->addIncoming(&PN, &ExitBB); 258d869b188SChandler Carruth } 259d869b188SChandler Carruth } 260d869b188SChandler Carruth 261d8b0c8ceSChandler Carruth /// Hoist the current loop up to the innermost loop containing a remaining exit. 262d8b0c8ceSChandler Carruth /// 263d8b0c8ceSChandler Carruth /// Because we've removed an exit from the loop, we may have changed the set of 264d8b0c8ceSChandler Carruth /// loops reachable and need to move the current loop up the loop nest or even 265d8b0c8ceSChandler Carruth /// to an entirely separate nest. 266d8b0c8ceSChandler Carruth static void hoistLoopToNewParent(Loop &L, BasicBlock &Preheader, 26797468e92SAlina Sbirlea DominatorTree &DT, LoopInfo &LI, 268c4d8c631SDaniil Suchkov MemorySSAUpdater *MSSAU, ScalarEvolution *SE) { 269d8b0c8ceSChandler Carruth // If the loop is already at the top level, we can't hoist it anywhere. 270d8b0c8ceSChandler Carruth Loop *OldParentL = L.getParentLoop(); 271d8b0c8ceSChandler Carruth if (!OldParentL) 272d8b0c8ceSChandler Carruth return; 273d8b0c8ceSChandler Carruth 274d8b0c8ceSChandler Carruth SmallVector<BasicBlock *, 4> Exits; 275d8b0c8ceSChandler Carruth L.getExitBlocks(Exits); 276d8b0c8ceSChandler Carruth Loop *NewParentL = nullptr; 277d8b0c8ceSChandler Carruth for (auto *ExitBB : Exits) 278d8b0c8ceSChandler Carruth if (Loop *ExitL = LI.getLoopFor(ExitBB)) 279d8b0c8ceSChandler Carruth if (!NewParentL || NewParentL->contains(ExitL)) 280d8b0c8ceSChandler Carruth NewParentL = ExitL; 281d8b0c8ceSChandler Carruth 282d8b0c8ceSChandler Carruth if (NewParentL == OldParentL) 283d8b0c8ceSChandler Carruth return; 284d8b0c8ceSChandler Carruth 285d8b0c8ceSChandler Carruth // The new parent loop (if different) should always contain the old one. 286d8b0c8ceSChandler Carruth if (NewParentL) 287d8b0c8ceSChandler Carruth assert(NewParentL->contains(OldParentL) && 288d8b0c8ceSChandler Carruth "Can only hoist this loop up the nest!"); 289d8b0c8ceSChandler Carruth 290d8b0c8ceSChandler Carruth // The preheader will need to move with the body of this loop. However, 291d8b0c8ceSChandler Carruth // because it isn't in this loop we also need to update the primary loop map. 292d8b0c8ceSChandler Carruth assert(OldParentL == LI.getLoopFor(&Preheader) && 293d8b0c8ceSChandler Carruth "Parent loop of this loop should contain this loop's preheader!"); 294d8b0c8ceSChandler Carruth LI.changeLoopFor(&Preheader, NewParentL); 295d8b0c8ceSChandler Carruth 296d8b0c8ceSChandler Carruth // Remove this loop from its old parent. 297d8b0c8ceSChandler Carruth OldParentL->removeChildLoop(&L); 298d8b0c8ceSChandler Carruth 299d8b0c8ceSChandler Carruth // Add the loop either to the new parent or as a top-level loop. 300d8b0c8ceSChandler Carruth if (NewParentL) 301d8b0c8ceSChandler Carruth NewParentL->addChildLoop(&L); 302d8b0c8ceSChandler Carruth else 303d8b0c8ceSChandler Carruth LI.addTopLevelLoop(&L); 304d8b0c8ceSChandler Carruth 305d8b0c8ceSChandler Carruth // Remove this loops blocks from the old parent and every other loop up the 306d8b0c8ceSChandler Carruth // nest until reaching the new parent. Also update all of these 307d8b0c8ceSChandler Carruth // no-longer-containing loops to reflect the nesting change. 308d8b0c8ceSChandler Carruth for (Loop *OldContainingL = OldParentL; OldContainingL != NewParentL; 309d8b0c8ceSChandler Carruth OldContainingL = OldContainingL->getParentLoop()) { 310d8b0c8ceSChandler Carruth llvm::erase_if(OldContainingL->getBlocksVector(), 311d8b0c8ceSChandler Carruth [&](const BasicBlock *BB) { 312d8b0c8ceSChandler Carruth return BB == &Preheader || L.contains(BB); 313d8b0c8ceSChandler Carruth }); 314d8b0c8ceSChandler Carruth 315d8b0c8ceSChandler Carruth OldContainingL->getBlocksSet().erase(&Preheader); 316d8b0c8ceSChandler Carruth for (BasicBlock *BB : L.blocks()) 317d8b0c8ceSChandler Carruth OldContainingL->getBlocksSet().erase(BB); 318d8b0c8ceSChandler Carruth 319d8b0c8ceSChandler Carruth // Because we just hoisted a loop out of this one, we have essentially 320d8b0c8ceSChandler Carruth // created new exit paths from it. That means we need to form LCSSA PHI 321d8b0c8ceSChandler Carruth // nodes for values used in the no-longer-nested loop. 322c4d8c631SDaniil Suchkov formLCSSA(*OldContainingL, DT, &LI, SE); 323d8b0c8ceSChandler Carruth 324d8b0c8ceSChandler Carruth // We shouldn't need to form dedicated exits because the exit introduced 32552e97a28SAlina Sbirlea // here is the (just split by unswitching) preheader. However, after trivial 32652e97a28SAlina Sbirlea // unswitching it is possible to get new non-dedicated exits out of parent 32752e97a28SAlina Sbirlea // loop so let's conservatively form dedicated exit blocks and figure out 32852e97a28SAlina Sbirlea // if we can optimize later. 32997468e92SAlina Sbirlea formDedicatedExitBlocks(OldContainingL, &DT, &LI, MSSAU, 33097468e92SAlina Sbirlea /*PreserveLCSSA*/ true); 331d8b0c8ceSChandler Carruth } 332d8b0c8ceSChandler Carruth } 333d8b0c8ceSChandler Carruth 3344a9cde5aSFlorian Hahn // Return the top-most loop containing ExitBB and having ExitBB as exiting block 3354a9cde5aSFlorian Hahn // or the loop containing ExitBB, if there is no parent loop containing ExitBB 3364a9cde5aSFlorian Hahn // as exiting block. 3374a9cde5aSFlorian Hahn static Loop *getTopMostExitingLoop(BasicBlock *ExitBB, LoopInfo &LI) { 3384a9cde5aSFlorian Hahn Loop *TopMost = LI.getLoopFor(ExitBB); 3394a9cde5aSFlorian Hahn Loop *Current = TopMost; 3404a9cde5aSFlorian Hahn while (Current) { 3414a9cde5aSFlorian Hahn if (Current->isLoopExiting(ExitBB)) 3424a9cde5aSFlorian Hahn TopMost = Current; 3434a9cde5aSFlorian Hahn Current = Current->getParentLoop(); 3444a9cde5aSFlorian Hahn } 3454a9cde5aSFlorian Hahn return TopMost; 3464a9cde5aSFlorian Hahn } 3474a9cde5aSFlorian Hahn 3481353f9a4SChandler Carruth /// Unswitch a trivial branch if the condition is loop invariant. 3491353f9a4SChandler Carruth /// 3501353f9a4SChandler Carruth /// This routine should only be called when loop code leading to the branch has 3511353f9a4SChandler Carruth /// been validated as trivial (no side effects). This routine checks if the 3521353f9a4SChandler Carruth /// condition is invariant and one of the successors is a loop exit. This 3531353f9a4SChandler Carruth /// allows us to unswitch without duplicating the loop, making it trivial. 3541353f9a4SChandler Carruth /// 3551353f9a4SChandler Carruth /// If this routine fails to unswitch the branch it returns false. 3561353f9a4SChandler Carruth /// 3571353f9a4SChandler Carruth /// If the branch can be unswitched, this routine splits the preheader and 3581353f9a4SChandler Carruth /// hoists the branch above that split. Preserves loop simplified form 3591353f9a4SChandler Carruth /// (splitting the exit block as necessary). It simplifies the branch within 3601353f9a4SChandler Carruth /// the loop to an unconditional branch but doesn't remove it entirely. Further 3611353f9a4SChandler Carruth /// cleanup can be done with some simplify-cfg like pass. 3623897ded6SChandler Carruth /// 3633897ded6SChandler Carruth /// If `SE` is not null, it will be updated based on the potential loop SCEVs 3643897ded6SChandler Carruth /// invalidated by this. 3651353f9a4SChandler Carruth static bool unswitchTrivialBranch(Loop &L, BranchInst &BI, DominatorTree &DT, 366a2eebb82SAlina Sbirlea LoopInfo &LI, ScalarEvolution *SE, 367a2eebb82SAlina Sbirlea MemorySSAUpdater *MSSAU) { 3681353f9a4SChandler Carruth assert(BI.isConditional() && "Can only unswitch a conditional branch!"); 369d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << " Trying to unswitch branch: " << BI << "\n"); 3701353f9a4SChandler Carruth 3714da3331dSChandler Carruth // The loop invariant values that we want to unswitch. 372d1dab0c3SChandler Carruth TinyPtrVector<Value *> Invariants; 3731353f9a4SChandler Carruth 3744da3331dSChandler Carruth // When true, we're fully unswitching the branch rather than just unswitching 3754da3331dSChandler Carruth // some input conditions to the branch. 3764da3331dSChandler Carruth bool FullUnswitch = false; 3774da3331dSChandler Carruth 3784da3331dSChandler Carruth if (L.isLoopInvariant(BI.getCondition())) { 3794da3331dSChandler Carruth Invariants.push_back(BI.getCondition()); 3804da3331dSChandler Carruth FullUnswitch = true; 3814da3331dSChandler Carruth } else { 3824da3331dSChandler Carruth if (auto *CondInst = dyn_cast<Instruction>(BI.getCondition())) 3834da3331dSChandler Carruth Invariants = collectHomogenousInstGraphLoopInvariants(L, *CondInst, LI); 3844da3331dSChandler Carruth if (Invariants.empty()) 3854da3331dSChandler Carruth // Couldn't find invariant inputs! 3861353f9a4SChandler Carruth return false; 3874da3331dSChandler Carruth } 3881353f9a4SChandler Carruth 3894da3331dSChandler Carruth // Check that one of the branch's successors exits, and which one. 3904da3331dSChandler Carruth bool ExitDirection = true; 3911353f9a4SChandler Carruth int LoopExitSuccIdx = 0; 3921353f9a4SChandler Carruth auto *LoopExitBB = BI.getSuccessor(0); 393baf045fbSChandler Carruth if (L.contains(LoopExitBB)) { 3944da3331dSChandler Carruth ExitDirection = false; 3951353f9a4SChandler Carruth LoopExitSuccIdx = 1; 3961353f9a4SChandler Carruth LoopExitBB = BI.getSuccessor(1); 397baf045fbSChandler Carruth if (L.contains(LoopExitBB)) 3981353f9a4SChandler Carruth return false; 3991353f9a4SChandler Carruth } 4001353f9a4SChandler Carruth auto *ContinueBB = BI.getSuccessor(1 - LoopExitSuccIdx); 401d869b188SChandler Carruth auto *ParentBB = BI.getParent(); 402d869b188SChandler Carruth if (!areLoopExitPHIsLoopInvariant(L, *ParentBB, *LoopExitBB)) 4031353f9a4SChandler Carruth return false; 4041353f9a4SChandler Carruth 4054da3331dSChandler Carruth // When unswitching only part of the branch's condition, we need the exit 4064da3331dSChandler Carruth // block to be reached directly from the partially unswitched input. This can 4074da3331dSChandler Carruth // be done when the exit block is along the true edge and the branch condition 4084da3331dSChandler Carruth // is a graph of `or` operations, or the exit block is along the false edge 4094da3331dSChandler Carruth // and the condition is a graph of `and` operations. 4104da3331dSChandler Carruth if (!FullUnswitch) { 4114da3331dSChandler Carruth if (ExitDirection) { 4124da3331dSChandler Carruth if (cast<Instruction>(BI.getCondition())->getOpcode() != Instruction::Or) 4134da3331dSChandler Carruth return false; 4144da3331dSChandler Carruth } else { 4154da3331dSChandler Carruth if (cast<Instruction>(BI.getCondition())->getOpcode() != Instruction::And) 4164da3331dSChandler Carruth return false; 4174da3331dSChandler Carruth } 4184da3331dSChandler Carruth } 4194da3331dSChandler Carruth 4204da3331dSChandler Carruth LLVM_DEBUG({ 4214da3331dSChandler Carruth dbgs() << " unswitching trivial invariant conditions for: " << BI 4224da3331dSChandler Carruth << "\n"; 4234da3331dSChandler Carruth for (Value *Invariant : Invariants) { 4244da3331dSChandler Carruth dbgs() << " " << *Invariant << " == true"; 4254da3331dSChandler Carruth if (Invariant != Invariants.back()) 4264da3331dSChandler Carruth dbgs() << " ||"; 4274da3331dSChandler Carruth dbgs() << "\n"; 4284da3331dSChandler Carruth } 4294da3331dSChandler Carruth }); 4301353f9a4SChandler Carruth 4313897ded6SChandler Carruth // If we have scalar evolutions, we need to invalidate them including this 4324a9cde5aSFlorian Hahn // loop, the loop containing the exit block and the topmost parent loop 4334a9cde5aSFlorian Hahn // exiting via LoopExitBB. 4343897ded6SChandler Carruth if (SE) { 4354a9cde5aSFlorian Hahn if (Loop *ExitL = getTopMostExitingLoop(LoopExitBB, LI)) 4363897ded6SChandler Carruth SE->forgetLoop(ExitL); 4373897ded6SChandler Carruth else 4383897ded6SChandler Carruth // Forget the entire nest as this exits the entire nest. 4393897ded6SChandler Carruth SE->forgetTopmostLoop(&L); 4403897ded6SChandler Carruth } 4413897ded6SChandler Carruth 442a2eebb82SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 443a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 444a2eebb82SAlina Sbirlea 4451353f9a4SChandler Carruth // Split the preheader, so that we know that there is a safe place to insert 4461353f9a4SChandler Carruth // the conditional branch. We will change the preheader to have a conditional 4471353f9a4SChandler Carruth // branch on LoopCond. 4481353f9a4SChandler Carruth BasicBlock *OldPH = L.getLoopPreheader(); 449a2eebb82SAlina Sbirlea BasicBlock *NewPH = SplitEdge(OldPH, L.getHeader(), &DT, &LI, MSSAU); 4501353f9a4SChandler Carruth 4511353f9a4SChandler Carruth // Now that we have a place to insert the conditional branch, create a place 4521353f9a4SChandler Carruth // to branch to: this is the exit block out of the loop that we are 4531353f9a4SChandler Carruth // unswitching. We need to split this if there are other loop predecessors. 4541353f9a4SChandler Carruth // Because the loop is in simplified form, *any* other predecessor is enough. 4551353f9a4SChandler Carruth BasicBlock *UnswitchedBB; 4564da3331dSChandler Carruth if (FullUnswitch && LoopExitBB->getUniquePredecessor()) { 4574da3331dSChandler Carruth assert(LoopExitBB->getUniquePredecessor() == BI.getParent() && 458d869b188SChandler Carruth "A branch's parent isn't a predecessor!"); 4591353f9a4SChandler Carruth UnswitchedBB = LoopExitBB; 4601353f9a4SChandler Carruth } else { 461a2eebb82SAlina Sbirlea UnswitchedBB = 462a2eebb82SAlina Sbirlea SplitBlock(LoopExitBB, &LoopExitBB->front(), &DT, &LI, MSSAU); 4631353f9a4SChandler Carruth } 4641353f9a4SChandler Carruth 465a2eebb82SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 466a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 467a2eebb82SAlina Sbirlea 4684da3331dSChandler Carruth // Actually move the invariant uses into the unswitched position. If possible, 4694da3331dSChandler Carruth // we do this by moving the instructions, but when doing partial unswitching 4704da3331dSChandler Carruth // we do it by building a new merge of the values in the unswitched position. 4711353f9a4SChandler Carruth OldPH->getTerminator()->eraseFromParent(); 4724da3331dSChandler Carruth if (FullUnswitch) { 4734da3331dSChandler Carruth // If fully unswitching, we can use the existing branch instruction. 4744da3331dSChandler Carruth // Splice it into the old PH to gate reaching the new preheader and re-point 4754da3331dSChandler Carruth // its successors. 4764da3331dSChandler Carruth OldPH->getInstList().splice(OldPH->end(), BI.getParent()->getInstList(), 4774da3331dSChandler Carruth BI); 478a2eebb82SAlina Sbirlea if (MSSAU) { 479a2eebb82SAlina Sbirlea // Temporarily clone the terminator, to make MSSA update cheaper by 480a2eebb82SAlina Sbirlea // separating "insert edge" updates from "remove edge" ones. 481a2eebb82SAlina Sbirlea ParentBB->getInstList().push_back(BI.clone()); 482a2eebb82SAlina Sbirlea } else { 4831353f9a4SChandler Carruth // Create a new unconditional branch that will continue the loop as a new 4841353f9a4SChandler Carruth // terminator. 4851353f9a4SChandler Carruth BranchInst::Create(ContinueBB, ParentBB); 486a2eebb82SAlina Sbirlea } 487a2eebb82SAlina Sbirlea BI.setSuccessor(LoopExitSuccIdx, UnswitchedBB); 488a2eebb82SAlina Sbirlea BI.setSuccessor(1 - LoopExitSuccIdx, NewPH); 4894da3331dSChandler Carruth } else { 4904da3331dSChandler Carruth // Only unswitching a subset of inputs to the condition, so we will need to 4914da3331dSChandler Carruth // build a new branch that merges the invariant inputs. 4924da3331dSChandler Carruth if (ExitDirection) 4934da3331dSChandler Carruth assert(cast<Instruction>(BI.getCondition())->getOpcode() == 4944da3331dSChandler Carruth Instruction::Or && 4954da3331dSChandler Carruth "Must have an `or` of `i1`s for the condition!"); 4964da3331dSChandler Carruth else 4974da3331dSChandler Carruth assert(cast<Instruction>(BI.getCondition())->getOpcode() == 4984da3331dSChandler Carruth Instruction::And && 4994da3331dSChandler Carruth "Must have an `and` of `i1`s for the condition!"); 500d1dab0c3SChandler Carruth buildPartialUnswitchConditionalBranch(*OldPH, Invariants, ExitDirection, 5012b5a8976SJuneyoung Lee *UnswitchedBB, *NewPH); 5024da3331dSChandler Carruth } 5031353f9a4SChandler Carruth 504a2eebb82SAlina Sbirlea // Update the dominator tree with the added edge. 505a2eebb82SAlina Sbirlea DT.insertEdge(OldPH, UnswitchedBB); 506a2eebb82SAlina Sbirlea 507a2eebb82SAlina Sbirlea // After the dominator tree was updated with the added edge, update MemorySSA 508a2eebb82SAlina Sbirlea // if available. 509a2eebb82SAlina Sbirlea if (MSSAU) { 510a2eebb82SAlina Sbirlea SmallVector<CFGUpdate, 1> Updates; 511a2eebb82SAlina Sbirlea Updates.push_back({cfg::UpdateKind::Insert, OldPH, UnswitchedBB}); 512a2eebb82SAlina Sbirlea MSSAU->applyInsertUpdates(Updates, DT); 513a2eebb82SAlina Sbirlea } 514a2eebb82SAlina Sbirlea 515a2eebb82SAlina Sbirlea // Finish updating dominator tree and memory ssa for full unswitch. 516a2eebb82SAlina Sbirlea if (FullUnswitch) { 517a2eebb82SAlina Sbirlea if (MSSAU) { 518a2eebb82SAlina Sbirlea // Remove the cloned branch instruction. 519a2eebb82SAlina Sbirlea ParentBB->getTerminator()->eraseFromParent(); 520a2eebb82SAlina Sbirlea // Create unconditional branch now. 521a2eebb82SAlina Sbirlea BranchInst::Create(ContinueBB, ParentBB); 522a2eebb82SAlina Sbirlea MSSAU->removeEdge(ParentBB, LoopExitBB); 523a2eebb82SAlina Sbirlea } 524a2eebb82SAlina Sbirlea DT.deleteEdge(ParentBB, LoopExitBB); 525a2eebb82SAlina Sbirlea } 526a2eebb82SAlina Sbirlea 527a2eebb82SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 528a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 529a2eebb82SAlina Sbirlea 530d869b188SChandler Carruth // Rewrite the relevant PHI nodes. 531d869b188SChandler Carruth if (UnswitchedBB == LoopExitBB) 532d869b188SChandler Carruth rewritePHINodesForUnswitchedExitBlock(*UnswitchedBB, *ParentBB, *OldPH); 533d869b188SChandler Carruth else 534d869b188SChandler Carruth rewritePHINodesForExitAndUnswitchedBlocks(*LoopExitBB, *UnswitchedBB, 5354da3331dSChandler Carruth *ParentBB, *OldPH, FullUnswitch); 536d869b188SChandler Carruth 5374da3331dSChandler Carruth // The constant we can replace all of our invariants with inside the loop 5384da3331dSChandler Carruth // body. If any of the invariants have a value other than this the loop won't 5394da3331dSChandler Carruth // be entered. 5404da3331dSChandler Carruth ConstantInt *Replacement = ExitDirection 5414da3331dSChandler Carruth ? ConstantInt::getFalse(BI.getContext()) 5424da3331dSChandler Carruth : ConstantInt::getTrue(BI.getContext()); 5431353f9a4SChandler Carruth 5441353f9a4SChandler Carruth // Since this is an i1 condition we can also trivially replace uses of it 5451353f9a4SChandler Carruth // within the loop with a constant. 5464da3331dSChandler Carruth for (Value *Invariant : Invariants) 5474da3331dSChandler Carruth replaceLoopInvariantUses(L, Invariant, *Replacement); 5481353f9a4SChandler Carruth 549d8b0c8ceSChandler Carruth // If this was full unswitching, we may have changed the nesting relationship 550d8b0c8ceSChandler Carruth // for this loop so hoist it to its correct parent if needed. 551d8b0c8ceSChandler Carruth if (FullUnswitch) 552c4d8c631SDaniil Suchkov hoistLoopToNewParent(L, *NewPH, DT, LI, MSSAU, SE); 55397468e92SAlina Sbirlea 55497468e92SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 55597468e92SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 556d8b0c8ceSChandler Carruth 55752e97a28SAlina Sbirlea LLVM_DEBUG(dbgs() << " done: unswitching trivial branch...\n"); 5581353f9a4SChandler Carruth ++NumTrivial; 5591353f9a4SChandler Carruth ++NumBranches; 5601353f9a4SChandler Carruth return true; 5611353f9a4SChandler Carruth } 5621353f9a4SChandler Carruth 5631353f9a4SChandler Carruth /// Unswitch a trivial switch if the condition is loop invariant. 5641353f9a4SChandler Carruth /// 5651353f9a4SChandler Carruth /// This routine should only be called when loop code leading to the switch has 5661353f9a4SChandler Carruth /// been validated as trivial (no side effects). This routine checks if the 5671353f9a4SChandler Carruth /// condition is invariant and that at least one of the successors is a loop 5681353f9a4SChandler Carruth /// exit. This allows us to unswitch without duplicating the loop, making it 5691353f9a4SChandler Carruth /// trivial. 5701353f9a4SChandler Carruth /// 5711353f9a4SChandler Carruth /// If this routine fails to unswitch the switch it returns false. 5721353f9a4SChandler Carruth /// 5731353f9a4SChandler Carruth /// If the switch can be unswitched, this routine splits the preheader and 5741353f9a4SChandler Carruth /// copies the switch above that split. If the default case is one of the 5751353f9a4SChandler Carruth /// exiting cases, it copies the non-exiting cases and points them at the new 5761353f9a4SChandler Carruth /// preheader. If the default case is not exiting, it copies the exiting cases 5771353f9a4SChandler Carruth /// and points the default at the preheader. It preserves loop simplified form 5781353f9a4SChandler Carruth /// (splitting the exit blocks as necessary). It simplifies the switch within 5791353f9a4SChandler Carruth /// the loop by removing now-dead cases. If the default case is one of those 5801353f9a4SChandler Carruth /// unswitched, it replaces its destination with a new basic block containing 5811353f9a4SChandler Carruth /// only unreachable. Such basic blocks, while technically loop exits, are not 5821353f9a4SChandler Carruth /// considered for unswitching so this is a stable transform and the same 5831353f9a4SChandler Carruth /// switch will not be revisited. If after unswitching there is only a single 5841353f9a4SChandler Carruth /// in-loop successor, the switch is further simplified to an unconditional 5851353f9a4SChandler Carruth /// branch. Still more cleanup can be done with some simplify-cfg like pass. 5863897ded6SChandler Carruth /// 5873897ded6SChandler Carruth /// If `SE` is not null, it will be updated based on the potential loop SCEVs 5883897ded6SChandler Carruth /// invalidated by this. 5891353f9a4SChandler Carruth static bool unswitchTrivialSwitch(Loop &L, SwitchInst &SI, DominatorTree &DT, 590a2eebb82SAlina Sbirlea LoopInfo &LI, ScalarEvolution *SE, 591a2eebb82SAlina Sbirlea MemorySSAUpdater *MSSAU) { 592d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << " Trying to unswitch switch: " << SI << "\n"); 5931353f9a4SChandler Carruth Value *LoopCond = SI.getCondition(); 5941353f9a4SChandler Carruth 5951353f9a4SChandler Carruth // If this isn't switching on an invariant condition, we can't unswitch it. 5961353f9a4SChandler Carruth if (!L.isLoopInvariant(LoopCond)) 5971353f9a4SChandler Carruth return false; 5981353f9a4SChandler Carruth 599d869b188SChandler Carruth auto *ParentBB = SI.getParent(); 600d869b188SChandler Carruth 6011353f9a4SChandler Carruth SmallVector<int, 4> ExitCaseIndices; 6021353f9a4SChandler Carruth for (auto Case : SI.cases()) { 6031353f9a4SChandler Carruth auto *SuccBB = Case.getCaseSuccessor(); 604baf045fbSChandler Carruth if (!L.contains(SuccBB) && 605d869b188SChandler Carruth areLoopExitPHIsLoopInvariant(L, *ParentBB, *SuccBB)) 6061353f9a4SChandler Carruth ExitCaseIndices.push_back(Case.getCaseIndex()); 6071353f9a4SChandler Carruth } 6081353f9a4SChandler Carruth BasicBlock *DefaultExitBB = nullptr; 609d4097b4aSYevgeny Rouban SwitchInstProfUpdateWrapper::CaseWeightOpt DefaultCaseWeight = 610d4097b4aSYevgeny Rouban SwitchInstProfUpdateWrapper::getSuccessorWeight(SI, 0); 611baf045fbSChandler Carruth if (!L.contains(SI.getDefaultDest()) && 612d869b188SChandler Carruth areLoopExitPHIsLoopInvariant(L, *ParentBB, *SI.getDefaultDest()) && 613d4097b4aSYevgeny Rouban !isa<UnreachableInst>(SI.getDefaultDest()->getTerminator())) { 6141353f9a4SChandler Carruth DefaultExitBB = SI.getDefaultDest(); 615d4097b4aSYevgeny Rouban } else if (ExitCaseIndices.empty()) 6161353f9a4SChandler Carruth return false; 6171353f9a4SChandler Carruth 61852e97a28SAlina Sbirlea LLVM_DEBUG(dbgs() << " unswitching trivial switch...\n"); 6191353f9a4SChandler Carruth 620a2eebb82SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 621a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 622a2eebb82SAlina Sbirlea 6233897ded6SChandler Carruth // We may need to invalidate SCEVs for the outermost loop reached by any of 6243897ded6SChandler Carruth // the exits. 6253897ded6SChandler Carruth Loop *OuterL = &L; 6263897ded6SChandler Carruth 62747dc3a34SChandler Carruth if (DefaultExitBB) { 62847dc3a34SChandler Carruth // Clear out the default destination temporarily to allow accurate 62947dc3a34SChandler Carruth // predecessor lists to be examined below. 63047dc3a34SChandler Carruth SI.setDefaultDest(nullptr); 63147dc3a34SChandler Carruth // Check the loop containing this exit. 63247dc3a34SChandler Carruth Loop *ExitL = LI.getLoopFor(DefaultExitBB); 63347dc3a34SChandler Carruth if (!ExitL || ExitL->contains(OuterL)) 63447dc3a34SChandler Carruth OuterL = ExitL; 63547dc3a34SChandler Carruth } 63647dc3a34SChandler Carruth 63747dc3a34SChandler Carruth // Store the exit cases into a separate data structure and remove them from 63847dc3a34SChandler Carruth // the switch. 639d4097b4aSYevgeny Rouban SmallVector<std::tuple<ConstantInt *, BasicBlock *, 640d4097b4aSYevgeny Rouban SwitchInstProfUpdateWrapper::CaseWeightOpt>, 641d4097b4aSYevgeny Rouban 4> ExitCases; 6421353f9a4SChandler Carruth ExitCases.reserve(ExitCaseIndices.size()); 643d4097b4aSYevgeny Rouban SwitchInstProfUpdateWrapper SIW(SI); 6441353f9a4SChandler Carruth // We walk the case indices backwards so that we remove the last case first 6451353f9a4SChandler Carruth // and don't disrupt the earlier indices. 6461353f9a4SChandler Carruth for (unsigned Index : reverse(ExitCaseIndices)) { 6471353f9a4SChandler Carruth auto CaseI = SI.case_begin() + Index; 6483897ded6SChandler Carruth // Compute the outer loop from this exit. 6493897ded6SChandler Carruth Loop *ExitL = LI.getLoopFor(CaseI->getCaseSuccessor()); 6503897ded6SChandler Carruth if (!ExitL || ExitL->contains(OuterL)) 6513897ded6SChandler Carruth OuterL = ExitL; 6521353f9a4SChandler Carruth // Save the value of this case. 653d4097b4aSYevgeny Rouban auto W = SIW.getSuccessorWeight(CaseI->getSuccessorIndex()); 654d4097b4aSYevgeny Rouban ExitCases.emplace_back(CaseI->getCaseValue(), CaseI->getCaseSuccessor(), W); 6551353f9a4SChandler Carruth // Delete the unswitched cases. 656d4097b4aSYevgeny Rouban SIW.removeCase(CaseI); 6571353f9a4SChandler Carruth } 6581353f9a4SChandler Carruth 6593897ded6SChandler Carruth if (SE) { 6603897ded6SChandler Carruth if (OuterL) 6613897ded6SChandler Carruth SE->forgetLoop(OuterL); 6623897ded6SChandler Carruth else 6633897ded6SChandler Carruth SE->forgetTopmostLoop(&L); 6643897ded6SChandler Carruth } 6653897ded6SChandler Carruth 6661353f9a4SChandler Carruth // Check if after this all of the remaining cases point at the same 6671353f9a4SChandler Carruth // successor. 6681353f9a4SChandler Carruth BasicBlock *CommonSuccBB = nullptr; 6691353f9a4SChandler Carruth if (SI.getNumCases() > 0 && 6701353f9a4SChandler Carruth std::all_of(std::next(SI.case_begin()), SI.case_end(), 6711353f9a4SChandler Carruth [&SI](const SwitchInst::CaseHandle &Case) { 6721353f9a4SChandler Carruth return Case.getCaseSuccessor() == 6731353f9a4SChandler Carruth SI.case_begin()->getCaseSuccessor(); 6741353f9a4SChandler Carruth })) 6751353f9a4SChandler Carruth CommonSuccBB = SI.case_begin()->getCaseSuccessor(); 67647dc3a34SChandler Carruth if (!DefaultExitBB) { 6771353f9a4SChandler Carruth // If we're not unswitching the default, we need it to match any cases to 6781353f9a4SChandler Carruth // have a common successor or if we have no cases it is the common 6791353f9a4SChandler Carruth // successor. 6801353f9a4SChandler Carruth if (SI.getNumCases() == 0) 6811353f9a4SChandler Carruth CommonSuccBB = SI.getDefaultDest(); 6821353f9a4SChandler Carruth else if (SI.getDefaultDest() != CommonSuccBB) 6831353f9a4SChandler Carruth CommonSuccBB = nullptr; 6841353f9a4SChandler Carruth } 6851353f9a4SChandler Carruth 6861353f9a4SChandler Carruth // Split the preheader, so that we know that there is a safe place to insert 6871353f9a4SChandler Carruth // the switch. 6881353f9a4SChandler Carruth BasicBlock *OldPH = L.getLoopPreheader(); 689a2eebb82SAlina Sbirlea BasicBlock *NewPH = SplitEdge(OldPH, L.getHeader(), &DT, &LI, MSSAU); 6901353f9a4SChandler Carruth OldPH->getTerminator()->eraseFromParent(); 6911353f9a4SChandler Carruth 6921353f9a4SChandler Carruth // Now add the unswitched switch. 6931353f9a4SChandler Carruth auto *NewSI = SwitchInst::Create(LoopCond, NewPH, ExitCases.size(), OldPH); 694d4097b4aSYevgeny Rouban SwitchInstProfUpdateWrapper NewSIW(*NewSI); 6951353f9a4SChandler Carruth 696d869b188SChandler Carruth // Rewrite the IR for the unswitched basic blocks. This requires two steps. 697d869b188SChandler Carruth // First, we split any exit blocks with remaining in-loop predecessors. Then 698d869b188SChandler Carruth // we update the PHIs in one of two ways depending on if there was a split. 699d869b188SChandler Carruth // We walk in reverse so that we split in the same order as the cases 700d869b188SChandler Carruth // appeared. This is purely for convenience of reading the resulting IR, but 701d869b188SChandler Carruth // it doesn't cost anything really. 702d869b188SChandler Carruth SmallPtrSet<BasicBlock *, 2> UnswitchedExitBBs; 7031353f9a4SChandler Carruth SmallDenseMap<BasicBlock *, BasicBlock *, 2> SplitExitBBMap; 7041353f9a4SChandler Carruth // Handle the default exit if necessary. 7051353f9a4SChandler Carruth // FIXME: It'd be great if we could merge this with the loop below but LLVM's 7061353f9a4SChandler Carruth // ranges aren't quite powerful enough yet. 707d869b188SChandler Carruth if (DefaultExitBB) { 708d869b188SChandler Carruth if (pred_empty(DefaultExitBB)) { 709d869b188SChandler Carruth UnswitchedExitBBs.insert(DefaultExitBB); 710d869b188SChandler Carruth rewritePHINodesForUnswitchedExitBlock(*DefaultExitBB, *ParentBB, *OldPH); 711d869b188SChandler Carruth } else { 7121353f9a4SChandler Carruth auto *SplitBB = 713a2eebb82SAlina Sbirlea SplitBlock(DefaultExitBB, &DefaultExitBB->front(), &DT, &LI, MSSAU); 714a2eebb82SAlina Sbirlea rewritePHINodesForExitAndUnswitchedBlocks(*DefaultExitBB, *SplitBB, 715a2eebb82SAlina Sbirlea *ParentBB, *OldPH, 716a2eebb82SAlina Sbirlea /*FullUnswitch*/ true); 7171353f9a4SChandler Carruth DefaultExitBB = SplitExitBBMap[DefaultExitBB] = SplitBB; 7181353f9a4SChandler Carruth } 719d869b188SChandler Carruth } 7201353f9a4SChandler Carruth // Note that we must use a reference in the for loop so that we update the 7211353f9a4SChandler Carruth // container. 722d4097b4aSYevgeny Rouban for (auto &ExitCase : reverse(ExitCases)) { 7231353f9a4SChandler Carruth // Grab a reference to the exit block in the pair so that we can update it. 724d4097b4aSYevgeny Rouban BasicBlock *ExitBB = std::get<1>(ExitCase); 7251353f9a4SChandler Carruth 7261353f9a4SChandler Carruth // If this case is the last edge into the exit block, we can simply reuse it 7271353f9a4SChandler Carruth // as it will no longer be a loop exit. No mapping necessary. 728d869b188SChandler Carruth if (pred_empty(ExitBB)) { 729d869b188SChandler Carruth // Only rewrite once. 730d869b188SChandler Carruth if (UnswitchedExitBBs.insert(ExitBB).second) 731d869b188SChandler Carruth rewritePHINodesForUnswitchedExitBlock(*ExitBB, *ParentBB, *OldPH); 7321353f9a4SChandler Carruth continue; 733d869b188SChandler Carruth } 7341353f9a4SChandler Carruth 7351353f9a4SChandler Carruth // Otherwise we need to split the exit block so that we retain an exit 7361353f9a4SChandler Carruth // block from the loop and a target for the unswitched condition. 7371353f9a4SChandler Carruth BasicBlock *&SplitExitBB = SplitExitBBMap[ExitBB]; 7381353f9a4SChandler Carruth if (!SplitExitBB) { 7391353f9a4SChandler Carruth // If this is the first time we see this, do the split and remember it. 740a2eebb82SAlina Sbirlea SplitExitBB = SplitBlock(ExitBB, &ExitBB->front(), &DT, &LI, MSSAU); 741a2eebb82SAlina Sbirlea rewritePHINodesForExitAndUnswitchedBlocks(*ExitBB, *SplitExitBB, 742a2eebb82SAlina Sbirlea *ParentBB, *OldPH, 743a2eebb82SAlina Sbirlea /*FullUnswitch*/ true); 7441353f9a4SChandler Carruth } 745d869b188SChandler Carruth // Update the case pair to point to the split block. 746d4097b4aSYevgeny Rouban std::get<1>(ExitCase) = SplitExitBB; 7471353f9a4SChandler Carruth } 7481353f9a4SChandler Carruth 7491353f9a4SChandler Carruth // Now add the unswitched cases. We do this in reverse order as we built them 7501353f9a4SChandler Carruth // in reverse order. 751d4097b4aSYevgeny Rouban for (auto &ExitCase : reverse(ExitCases)) { 752d4097b4aSYevgeny Rouban ConstantInt *CaseVal = std::get<0>(ExitCase); 753d4097b4aSYevgeny Rouban BasicBlock *UnswitchedBB = std::get<1>(ExitCase); 7541353f9a4SChandler Carruth 755d4097b4aSYevgeny Rouban NewSIW.addCase(CaseVal, UnswitchedBB, std::get<2>(ExitCase)); 7561353f9a4SChandler Carruth } 7571353f9a4SChandler Carruth 7581353f9a4SChandler Carruth // If the default was unswitched, re-point it and add explicit cases for 7591353f9a4SChandler Carruth // entering the loop. 7601353f9a4SChandler Carruth if (DefaultExitBB) { 761d4097b4aSYevgeny Rouban NewSIW->setDefaultDest(DefaultExitBB); 762d4097b4aSYevgeny Rouban NewSIW.setSuccessorWeight(0, DefaultCaseWeight); 7631353f9a4SChandler Carruth 7641353f9a4SChandler Carruth // We removed all the exit cases, so we just copy the cases to the 7651353f9a4SChandler Carruth // unswitched switch. 766d4097b4aSYevgeny Rouban for (const auto &Case : SI.cases()) 767d4097b4aSYevgeny Rouban NewSIW.addCase(Case.getCaseValue(), NewPH, 768d4097b4aSYevgeny Rouban SIW.getSuccessorWeight(Case.getSuccessorIndex())); 769d4097b4aSYevgeny Rouban } else if (DefaultCaseWeight) { 770d4097b4aSYevgeny Rouban // We have to set branch weight of the default case. 771d4097b4aSYevgeny Rouban uint64_t SW = *DefaultCaseWeight; 772d4097b4aSYevgeny Rouban for (const auto &Case : SI.cases()) { 773d4097b4aSYevgeny Rouban auto W = SIW.getSuccessorWeight(Case.getSuccessorIndex()); 774d4097b4aSYevgeny Rouban assert(W && 775d4097b4aSYevgeny Rouban "case weight must be defined as default case weight is defined"); 776d4097b4aSYevgeny Rouban SW += *W; 777d4097b4aSYevgeny Rouban } 778d4097b4aSYevgeny Rouban NewSIW.setSuccessorWeight(0, SW); 7791353f9a4SChandler Carruth } 7801353f9a4SChandler Carruth 7811353f9a4SChandler Carruth // If we ended up with a common successor for every path through the switch 7821353f9a4SChandler Carruth // after unswitching, rewrite it to an unconditional branch to make it easy 7831353f9a4SChandler Carruth // to recognize. Otherwise we potentially have to recognize the default case 7841353f9a4SChandler Carruth // pointing at unreachable and other complexity. 7851353f9a4SChandler Carruth if (CommonSuccBB) { 7861353f9a4SChandler Carruth BasicBlock *BB = SI.getParent(); 78747dc3a34SChandler Carruth // We may have had multiple edges to this common successor block, so remove 78847dc3a34SChandler Carruth // them as predecessors. We skip the first one, either the default or the 78947dc3a34SChandler Carruth // actual first case. 79047dc3a34SChandler Carruth bool SkippedFirst = DefaultExitBB == nullptr; 79147dc3a34SChandler Carruth for (auto Case : SI.cases()) { 79247dc3a34SChandler Carruth assert(Case.getCaseSuccessor() == CommonSuccBB && 79347dc3a34SChandler Carruth "Non-common successor!"); 794148861f5SChandler Carruth (void)Case; 79547dc3a34SChandler Carruth if (!SkippedFirst) { 79647dc3a34SChandler Carruth SkippedFirst = true; 79747dc3a34SChandler Carruth continue; 79847dc3a34SChandler Carruth } 79947dc3a34SChandler Carruth CommonSuccBB->removePredecessor(BB, 80020b91899SMax Kazantsev /*KeepOneInputPHIs*/ true); 80147dc3a34SChandler Carruth } 80247dc3a34SChandler Carruth // Now nuke the switch and replace it with a direct branch. 803d4097b4aSYevgeny Rouban SIW.eraseFromParent(); 8041353f9a4SChandler Carruth BranchInst::Create(CommonSuccBB, BB); 80547dc3a34SChandler Carruth } else if (DefaultExitBB) { 80647dc3a34SChandler Carruth assert(SI.getNumCases() > 0 && 80747dc3a34SChandler Carruth "If we had no cases we'd have a common successor!"); 80847dc3a34SChandler Carruth // Move the last case to the default successor. This is valid as if the 80947dc3a34SChandler Carruth // default got unswitched it cannot be reached. This has the advantage of 81047dc3a34SChandler Carruth // being simple and keeping the number of edges from this switch to 81147dc3a34SChandler Carruth // successors the same, and avoiding any PHI update complexity. 81247dc3a34SChandler Carruth auto LastCaseI = std::prev(SI.case_end()); 813d4097b4aSYevgeny Rouban 81447dc3a34SChandler Carruth SI.setDefaultDest(LastCaseI->getCaseSuccessor()); 815d4097b4aSYevgeny Rouban SIW.setSuccessorWeight( 816d4097b4aSYevgeny Rouban 0, SIW.getSuccessorWeight(LastCaseI->getSuccessorIndex())); 817d4097b4aSYevgeny Rouban SIW.removeCase(LastCaseI); 8181353f9a4SChandler Carruth } 8191353f9a4SChandler Carruth 8202c85a231SChandler Carruth // Walk the unswitched exit blocks and the unswitched split blocks and update 8212c85a231SChandler Carruth // the dominator tree based on the CFG edits. While we are walking unordered 8222c85a231SChandler Carruth // containers here, the API for applyUpdates takes an unordered list of 8232c85a231SChandler Carruth // updates and requires them to not contain duplicates. 8242c85a231SChandler Carruth SmallVector<DominatorTree::UpdateType, 4> DTUpdates; 8252c85a231SChandler Carruth for (auto *UnswitchedExitBB : UnswitchedExitBBs) { 8262c85a231SChandler Carruth DTUpdates.push_back({DT.Delete, ParentBB, UnswitchedExitBB}); 8272c85a231SChandler Carruth DTUpdates.push_back({DT.Insert, OldPH, UnswitchedExitBB}); 8282c85a231SChandler Carruth } 8292c85a231SChandler Carruth for (auto SplitUnswitchedPair : SplitExitBBMap) { 83090d2e3a1SAlina Sbirlea DTUpdates.push_back({DT.Delete, ParentBB, SplitUnswitchedPair.first}); 83190d2e3a1SAlina Sbirlea DTUpdates.push_back({DT.Insert, OldPH, SplitUnswitchedPair.second}); 8322c85a231SChandler Carruth } 8332c85a231SChandler Carruth DT.applyUpdates(DTUpdates); 834a2eebb82SAlina Sbirlea 835a2eebb82SAlina Sbirlea if (MSSAU) { 836a2eebb82SAlina Sbirlea MSSAU->applyUpdates(DTUpdates, DT); 837a2eebb82SAlina Sbirlea if (VerifyMemorySSA) 838a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 839a2eebb82SAlina Sbirlea } 840a2eebb82SAlina Sbirlea 8417c35de12SDavid Green assert(DT.verify(DominatorTree::VerificationLevel::Fast)); 842d8b0c8ceSChandler Carruth 843d8b0c8ceSChandler Carruth // We may have changed the nesting relationship for this loop so hoist it to 844d8b0c8ceSChandler Carruth // its correct parent if needed. 845c4d8c631SDaniil Suchkov hoistLoopToNewParent(L, *NewPH, DT, LI, MSSAU, SE); 84697468e92SAlina Sbirlea 84797468e92SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 84897468e92SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 849d8b0c8ceSChandler Carruth 8501353f9a4SChandler Carruth ++NumTrivial; 8511353f9a4SChandler Carruth ++NumSwitches; 85252e97a28SAlina Sbirlea LLVM_DEBUG(dbgs() << " done: unswitching trivial switch...\n"); 8531353f9a4SChandler Carruth return true; 8541353f9a4SChandler Carruth } 8551353f9a4SChandler Carruth 8561353f9a4SChandler Carruth /// This routine scans the loop to find a branch or switch which occurs before 8571353f9a4SChandler Carruth /// any side effects occur. These can potentially be unswitched without 8581353f9a4SChandler Carruth /// duplicating the loop. If a branch or switch is successfully unswitched the 8591353f9a4SChandler Carruth /// scanning continues to see if subsequent branches or switches have become 8601353f9a4SChandler Carruth /// trivial. Once all trivial candidates have been unswitched, this routine 8611353f9a4SChandler Carruth /// returns. 8621353f9a4SChandler Carruth /// 8631353f9a4SChandler Carruth /// The return value indicates whether anything was unswitched (and therefore 8641353f9a4SChandler Carruth /// changed). 8653897ded6SChandler Carruth /// 8663897ded6SChandler Carruth /// If `SE` is not null, it will be updated based on the potential loop SCEVs 8673897ded6SChandler Carruth /// invalidated by this. 8681353f9a4SChandler Carruth static bool unswitchAllTrivialConditions(Loop &L, DominatorTree &DT, 869a2eebb82SAlina Sbirlea LoopInfo &LI, ScalarEvolution *SE, 870a2eebb82SAlina Sbirlea MemorySSAUpdater *MSSAU) { 8711353f9a4SChandler Carruth bool Changed = false; 8721353f9a4SChandler Carruth 8731353f9a4SChandler Carruth // If loop header has only one reachable successor we should keep looking for 8741353f9a4SChandler Carruth // trivial condition candidates in the successor as well. An alternative is 8751353f9a4SChandler Carruth // to constant fold conditions and merge successors into loop header (then we 8761353f9a4SChandler Carruth // only need to check header's terminator). The reason for not doing this in 8771353f9a4SChandler Carruth // LoopUnswitch pass is that it could potentially break LoopPassManager's 8781353f9a4SChandler Carruth // invariants. Folding dead branches could either eliminate the current loop 8791353f9a4SChandler Carruth // or make other loops unreachable. LCSSA form might also not be preserved 8801353f9a4SChandler Carruth // after deleting branches. The following code keeps traversing loop header's 8811353f9a4SChandler Carruth // successors until it finds the trivial condition candidate (condition that 8821353f9a4SChandler Carruth // is not a constant). Since unswitching generates branches with constant 8831353f9a4SChandler Carruth // conditions, this scenario could be very common in practice. 8841353f9a4SChandler Carruth BasicBlock *CurrentBB = L.getHeader(); 8851353f9a4SChandler Carruth SmallPtrSet<BasicBlock *, 8> Visited; 8861353f9a4SChandler Carruth Visited.insert(CurrentBB); 8871353f9a4SChandler Carruth do { 8881353f9a4SChandler Carruth // Check if there are any side-effecting instructions (e.g. stores, calls, 8891353f9a4SChandler Carruth // volatile loads) in the part of the loop that the code *would* execute 8901353f9a4SChandler Carruth // without unswitching. 89193210870SAlina Sbirlea if (MSSAU) // Possible early exit with MSSA 89293210870SAlina Sbirlea if (auto *Defs = MSSAU->getMemorySSA()->getBlockDefs(CurrentBB)) 89393210870SAlina Sbirlea if (!isa<MemoryPhi>(*Defs->begin()) || (++Defs->begin() != Defs->end())) 89493210870SAlina Sbirlea return Changed; 8951353f9a4SChandler Carruth if (llvm::any_of(*CurrentBB, 8961353f9a4SChandler Carruth [](Instruction &I) { return I.mayHaveSideEffects(); })) 8971353f9a4SChandler Carruth return Changed; 8981353f9a4SChandler Carruth 899edb12a83SChandler Carruth Instruction *CurrentTerm = CurrentBB->getTerminator(); 9001353f9a4SChandler Carruth 9011353f9a4SChandler Carruth if (auto *SI = dyn_cast<SwitchInst>(CurrentTerm)) { 9021353f9a4SChandler Carruth // Don't bother trying to unswitch past a switch with a constant 9031353f9a4SChandler Carruth // condition. This should be removed prior to running this pass by 9041353f9a4SChandler Carruth // simplify-cfg. 9051353f9a4SChandler Carruth if (isa<Constant>(SI->getCondition())) 9061353f9a4SChandler Carruth return Changed; 9071353f9a4SChandler Carruth 908a2eebb82SAlina Sbirlea if (!unswitchTrivialSwitch(L, *SI, DT, LI, SE, MSSAU)) 909f209649dSHiroshi Inoue // Couldn't unswitch this one so we're done. 9101353f9a4SChandler Carruth return Changed; 9111353f9a4SChandler Carruth 9121353f9a4SChandler Carruth // Mark that we managed to unswitch something. 9131353f9a4SChandler Carruth Changed = true; 9141353f9a4SChandler Carruth 9151353f9a4SChandler Carruth // If unswitching turned the terminator into an unconditional branch then 9161353f9a4SChandler Carruth // we can continue. The unswitching logic specifically works to fold any 9171353f9a4SChandler Carruth // cases it can into an unconditional branch to make it easier to 9181353f9a4SChandler Carruth // recognize here. 9191353f9a4SChandler Carruth auto *BI = dyn_cast<BranchInst>(CurrentBB->getTerminator()); 9201353f9a4SChandler Carruth if (!BI || BI->isConditional()) 9211353f9a4SChandler Carruth return Changed; 9221353f9a4SChandler Carruth 9231353f9a4SChandler Carruth CurrentBB = BI->getSuccessor(0); 9241353f9a4SChandler Carruth continue; 9251353f9a4SChandler Carruth } 9261353f9a4SChandler Carruth 9271353f9a4SChandler Carruth auto *BI = dyn_cast<BranchInst>(CurrentTerm); 9281353f9a4SChandler Carruth if (!BI) 9291353f9a4SChandler Carruth // We do not understand other terminator instructions. 9301353f9a4SChandler Carruth return Changed; 9311353f9a4SChandler Carruth 9321353f9a4SChandler Carruth // Don't bother trying to unswitch past an unconditional branch or a branch 9331353f9a4SChandler Carruth // with a constant value. These should be removed by simplify-cfg prior to 9341353f9a4SChandler Carruth // running this pass. 9351353f9a4SChandler Carruth if (!BI->isConditional() || isa<Constant>(BI->getCondition())) 9361353f9a4SChandler Carruth return Changed; 9371353f9a4SChandler Carruth 9381353f9a4SChandler Carruth // Found a trivial condition candidate: non-foldable conditional branch. If 9391353f9a4SChandler Carruth // we fail to unswitch this, we can't do anything else that is trivial. 940a2eebb82SAlina Sbirlea if (!unswitchTrivialBranch(L, *BI, DT, LI, SE, MSSAU)) 9411353f9a4SChandler Carruth return Changed; 9421353f9a4SChandler Carruth 9431353f9a4SChandler Carruth // Mark that we managed to unswitch something. 9441353f9a4SChandler Carruth Changed = true; 9451353f9a4SChandler Carruth 9464da3331dSChandler Carruth // If we only unswitched some of the conditions feeding the branch, we won't 9474da3331dSChandler Carruth // have collapsed it to a single successor. 9481353f9a4SChandler Carruth BI = cast<BranchInst>(CurrentBB->getTerminator()); 9494da3331dSChandler Carruth if (BI->isConditional()) 9504da3331dSChandler Carruth return Changed; 9514da3331dSChandler Carruth 9524da3331dSChandler Carruth // Follow the newly unconditional branch into its successor. 9531353f9a4SChandler Carruth CurrentBB = BI->getSuccessor(0); 9541353f9a4SChandler Carruth 9551353f9a4SChandler Carruth // When continuing, if we exit the loop or reach a previous visited block, 9561353f9a4SChandler Carruth // then we can not reach any trivial condition candidates (unfoldable 9571353f9a4SChandler Carruth // branch instructions or switch instructions) and no unswitch can happen. 9581353f9a4SChandler Carruth } while (L.contains(CurrentBB) && Visited.insert(CurrentBB).second); 9591353f9a4SChandler Carruth 9601353f9a4SChandler Carruth return Changed; 9611353f9a4SChandler Carruth } 9621353f9a4SChandler Carruth 963693eedb1SChandler Carruth /// Build the cloned blocks for an unswitched copy of the given loop. 964693eedb1SChandler Carruth /// 965693eedb1SChandler Carruth /// The cloned blocks are inserted before the loop preheader (`LoopPH`) and 966693eedb1SChandler Carruth /// after the split block (`SplitBB`) that will be used to select between the 967693eedb1SChandler Carruth /// cloned and original loop. 968693eedb1SChandler Carruth /// 969693eedb1SChandler Carruth /// This routine handles cloning all of the necessary loop blocks and exit 970693eedb1SChandler Carruth /// blocks including rewriting their instructions and the relevant PHI nodes. 9711652996fSChandler Carruth /// Any loop blocks or exit blocks which are dominated by a different successor 9721652996fSChandler Carruth /// than the one for this clone of the loop blocks can be trivially skipped. We 9731652996fSChandler Carruth /// use the `DominatingSucc` map to determine whether a block satisfies that 9741652996fSChandler Carruth /// property with a simple map lookup. 9751652996fSChandler Carruth /// 9761652996fSChandler Carruth /// It also correctly creates the unconditional branch in the cloned 977693eedb1SChandler Carruth /// unswitched parent block to only point at the unswitched successor. 978693eedb1SChandler Carruth /// 979693eedb1SChandler Carruth /// This does not handle most of the necessary updates to `LoopInfo`. Only exit 980693eedb1SChandler Carruth /// block splitting is correctly reflected in `LoopInfo`, essentially all of 981693eedb1SChandler Carruth /// the cloned blocks (and their loops) are left without full `LoopInfo` 982693eedb1SChandler Carruth /// updates. This also doesn't fully update `DominatorTree`. It adds the cloned 983693eedb1SChandler Carruth /// blocks to them but doesn't create the cloned `DominatorTree` structure and 984693eedb1SChandler Carruth /// instead the caller must recompute an accurate DT. It *does* correctly 985693eedb1SChandler Carruth /// update the `AssumptionCache` provided in `AC`. 986693eedb1SChandler Carruth static BasicBlock *buildClonedLoopBlocks( 987693eedb1SChandler Carruth Loop &L, BasicBlock *LoopPH, BasicBlock *SplitBB, 988693eedb1SChandler Carruth ArrayRef<BasicBlock *> ExitBlocks, BasicBlock *ParentBB, 989693eedb1SChandler Carruth BasicBlock *UnswitchedSuccBB, BasicBlock *ContinueSuccBB, 9901652996fSChandler Carruth const SmallDenseMap<BasicBlock *, BasicBlock *, 16> &DominatingSucc, 99169e68f84SChandler Carruth ValueToValueMapTy &VMap, 99269e68f84SChandler Carruth SmallVectorImpl<DominatorTree::UpdateType> &DTUpdates, AssumptionCache &AC, 993a2eebb82SAlina Sbirlea DominatorTree &DT, LoopInfo &LI, MemorySSAUpdater *MSSAU) { 994693eedb1SChandler Carruth SmallVector<BasicBlock *, 4> NewBlocks; 995693eedb1SChandler Carruth NewBlocks.reserve(L.getNumBlocks() + ExitBlocks.size()); 996693eedb1SChandler Carruth 997693eedb1SChandler Carruth // We will need to clone a bunch of blocks, wrap up the clone operation in 998693eedb1SChandler Carruth // a helper. 999693eedb1SChandler Carruth auto CloneBlock = [&](BasicBlock *OldBB) { 1000693eedb1SChandler Carruth // Clone the basic block and insert it before the new preheader. 1001693eedb1SChandler Carruth BasicBlock *NewBB = CloneBasicBlock(OldBB, VMap, ".us", OldBB->getParent()); 1002693eedb1SChandler Carruth NewBB->moveBefore(LoopPH); 1003693eedb1SChandler Carruth 1004693eedb1SChandler Carruth // Record this block and the mapping. 1005693eedb1SChandler Carruth NewBlocks.push_back(NewBB); 1006693eedb1SChandler Carruth VMap[OldBB] = NewBB; 1007693eedb1SChandler Carruth 1008693eedb1SChandler Carruth return NewBB; 1009693eedb1SChandler Carruth }; 1010693eedb1SChandler Carruth 10111652996fSChandler Carruth // We skip cloning blocks when they have a dominating succ that is not the 10121652996fSChandler Carruth // succ we are cloning for. 10131652996fSChandler Carruth auto SkipBlock = [&](BasicBlock *BB) { 10141652996fSChandler Carruth auto It = DominatingSucc.find(BB); 10151652996fSChandler Carruth return It != DominatingSucc.end() && It->second != UnswitchedSuccBB; 10161652996fSChandler Carruth }; 10171652996fSChandler Carruth 1018693eedb1SChandler Carruth // First, clone the preheader. 1019693eedb1SChandler Carruth auto *ClonedPH = CloneBlock(LoopPH); 1020693eedb1SChandler Carruth 1021693eedb1SChandler Carruth // Then clone all the loop blocks, skipping the ones that aren't necessary. 1022693eedb1SChandler Carruth for (auto *LoopBB : L.blocks()) 10231652996fSChandler Carruth if (!SkipBlock(LoopBB)) 1024693eedb1SChandler Carruth CloneBlock(LoopBB); 1025693eedb1SChandler Carruth 1026693eedb1SChandler Carruth // Split all the loop exit edges so that when we clone the exit blocks, if 1027693eedb1SChandler Carruth // any of the exit blocks are *also* a preheader for some other loop, we 1028693eedb1SChandler Carruth // don't create multiple predecessors entering the loop header. 1029693eedb1SChandler Carruth for (auto *ExitBB : ExitBlocks) { 10301652996fSChandler Carruth if (SkipBlock(ExitBB)) 1031693eedb1SChandler Carruth continue; 1032693eedb1SChandler Carruth 1033693eedb1SChandler Carruth // When we are going to clone an exit, we don't need to clone all the 1034693eedb1SChandler Carruth // instructions in the exit block and we want to ensure we have an easy 1035693eedb1SChandler Carruth // place to merge the CFG, so split the exit first. This is always safe to 1036693eedb1SChandler Carruth // do because there cannot be any non-loop predecessors of a loop exit in 1037693eedb1SChandler Carruth // loop simplified form. 1038a2eebb82SAlina Sbirlea auto *MergeBB = SplitBlock(ExitBB, &ExitBB->front(), &DT, &LI, MSSAU); 1039693eedb1SChandler Carruth 1040693eedb1SChandler Carruth // Rearrange the names to make it easier to write test cases by having the 1041693eedb1SChandler Carruth // exit block carry the suffix rather than the merge block carrying the 1042693eedb1SChandler Carruth // suffix. 1043693eedb1SChandler Carruth MergeBB->takeName(ExitBB); 1044693eedb1SChandler Carruth ExitBB->setName(Twine(MergeBB->getName()) + ".split"); 1045693eedb1SChandler Carruth 1046693eedb1SChandler Carruth // Now clone the original exit block. 1047693eedb1SChandler Carruth auto *ClonedExitBB = CloneBlock(ExitBB); 1048693eedb1SChandler Carruth assert(ClonedExitBB->getTerminator()->getNumSuccessors() == 1 && 1049693eedb1SChandler Carruth "Exit block should have been split to have one successor!"); 1050693eedb1SChandler Carruth assert(ClonedExitBB->getTerminator()->getSuccessor(0) == MergeBB && 1051693eedb1SChandler Carruth "Cloned exit block has the wrong successor!"); 1052693eedb1SChandler Carruth 1053693eedb1SChandler Carruth // Remap any cloned instructions and create a merge phi node for them. 1054693eedb1SChandler Carruth for (auto ZippedInsts : llvm::zip_first( 1055693eedb1SChandler Carruth llvm::make_range(ExitBB->begin(), std::prev(ExitBB->end())), 1056693eedb1SChandler Carruth llvm::make_range(ClonedExitBB->begin(), 1057693eedb1SChandler Carruth std::prev(ClonedExitBB->end())))) { 1058693eedb1SChandler Carruth Instruction &I = std::get<0>(ZippedInsts); 1059693eedb1SChandler Carruth Instruction &ClonedI = std::get<1>(ZippedInsts); 1060693eedb1SChandler Carruth 1061693eedb1SChandler Carruth // The only instructions in the exit block should be PHI nodes and 1062693eedb1SChandler Carruth // potentially a landing pad. 1063693eedb1SChandler Carruth assert( 1064693eedb1SChandler Carruth (isa<PHINode>(I) || isa<LandingPadInst>(I) || isa<CatchPadInst>(I)) && 1065693eedb1SChandler Carruth "Bad instruction in exit block!"); 1066693eedb1SChandler Carruth // We should have a value map between the instruction and its clone. 1067693eedb1SChandler Carruth assert(VMap.lookup(&I) == &ClonedI && "Mismatch in the value map!"); 1068693eedb1SChandler Carruth 1069693eedb1SChandler Carruth auto *MergePN = 1070693eedb1SChandler Carruth PHINode::Create(I.getType(), /*NumReservedValues*/ 2, ".us-phi", 1071693eedb1SChandler Carruth &*MergeBB->getFirstInsertionPt()); 1072693eedb1SChandler Carruth I.replaceAllUsesWith(MergePN); 1073693eedb1SChandler Carruth MergePN->addIncoming(&I, ExitBB); 1074693eedb1SChandler Carruth MergePN->addIncoming(&ClonedI, ClonedExitBB); 1075693eedb1SChandler Carruth } 1076693eedb1SChandler Carruth } 1077693eedb1SChandler Carruth 1078693eedb1SChandler Carruth // Rewrite the instructions in the cloned blocks to refer to the instructions 1079693eedb1SChandler Carruth // in the cloned blocks. We have to do this as a second pass so that we have 1080693eedb1SChandler Carruth // everything available. Also, we have inserted new instructions which may 1081693eedb1SChandler Carruth // include assume intrinsics, so we update the assumption cache while 1082693eedb1SChandler Carruth // processing this. 1083693eedb1SChandler Carruth for (auto *ClonedBB : NewBlocks) 1084693eedb1SChandler Carruth for (Instruction &I : *ClonedBB) { 1085693eedb1SChandler Carruth RemapInstruction(&I, VMap, 1086693eedb1SChandler Carruth RF_NoModuleLevelChanges | RF_IgnoreMissingLocals); 1087693eedb1SChandler Carruth if (auto *II = dyn_cast<IntrinsicInst>(&I)) 1088693eedb1SChandler Carruth if (II->getIntrinsicID() == Intrinsic::assume) 1089693eedb1SChandler Carruth AC.registerAssumption(II); 1090693eedb1SChandler Carruth } 1091693eedb1SChandler Carruth 1092693eedb1SChandler Carruth // Update any PHI nodes in the cloned successors of the skipped blocks to not 1093693eedb1SChandler Carruth // have spurious incoming values. 1094693eedb1SChandler Carruth for (auto *LoopBB : L.blocks()) 10951652996fSChandler Carruth if (SkipBlock(LoopBB)) 1096693eedb1SChandler Carruth for (auto *SuccBB : successors(LoopBB)) 1097693eedb1SChandler Carruth if (auto *ClonedSuccBB = cast_or_null<BasicBlock>(VMap.lookup(SuccBB))) 1098693eedb1SChandler Carruth for (PHINode &PN : ClonedSuccBB->phis()) 1099693eedb1SChandler Carruth PN.removeIncomingValue(LoopBB, /*DeletePHIIfEmpty*/ false); 1100693eedb1SChandler Carruth 1101ed296543SChandler Carruth // Remove the cloned parent as a predecessor of any successor we ended up 1102ed296543SChandler Carruth // cloning other than the unswitched one. 1103ed296543SChandler Carruth auto *ClonedParentBB = cast<BasicBlock>(VMap.lookup(ParentBB)); 1104ed296543SChandler Carruth for (auto *SuccBB : successors(ParentBB)) { 1105ed296543SChandler Carruth if (SuccBB == UnswitchedSuccBB) 1106ed296543SChandler Carruth continue; 1107ed296543SChandler Carruth 1108ed296543SChandler Carruth auto *ClonedSuccBB = cast_or_null<BasicBlock>(VMap.lookup(SuccBB)); 1109ed296543SChandler Carruth if (!ClonedSuccBB) 1110ed296543SChandler Carruth continue; 1111ed296543SChandler Carruth 1112ed296543SChandler Carruth ClonedSuccBB->removePredecessor(ClonedParentBB, 111320b91899SMax Kazantsev /*KeepOneInputPHIs*/ true); 1114ed296543SChandler Carruth } 1115ed296543SChandler Carruth 1116ed296543SChandler Carruth // Replace the cloned branch with an unconditional branch to the cloned 1117ed296543SChandler Carruth // unswitched successor. 1118ed296543SChandler Carruth auto *ClonedSuccBB = cast<BasicBlock>(VMap.lookup(UnswitchedSuccBB)); 1119ed296543SChandler Carruth ClonedParentBB->getTerminator()->eraseFromParent(); 1120ed296543SChandler Carruth BranchInst::Create(ClonedSuccBB, ClonedParentBB); 1121ed296543SChandler Carruth 1122ed296543SChandler Carruth // If there are duplicate entries in the PHI nodes because of multiple edges 1123ed296543SChandler Carruth // to the unswitched successor, we need to nuke all but one as we replaced it 1124ed296543SChandler Carruth // with a direct branch. 1125ed296543SChandler Carruth for (PHINode &PN : ClonedSuccBB->phis()) { 1126ed296543SChandler Carruth bool Found = false; 1127ed296543SChandler Carruth // Loop over the incoming operands backwards so we can easily delete as we 1128ed296543SChandler Carruth // go without invalidating the index. 1129ed296543SChandler Carruth for (int i = PN.getNumOperands() - 1; i >= 0; --i) { 1130ed296543SChandler Carruth if (PN.getIncomingBlock(i) != ClonedParentBB) 1131ed296543SChandler Carruth continue; 1132ed296543SChandler Carruth if (!Found) { 1133ed296543SChandler Carruth Found = true; 1134ed296543SChandler Carruth continue; 1135ed296543SChandler Carruth } 1136ed296543SChandler Carruth PN.removeIncomingValue(i, /*DeletePHIIfEmpty*/ false); 1137ed296543SChandler Carruth } 1138ed296543SChandler Carruth } 1139ed296543SChandler Carruth 114069e68f84SChandler Carruth // Record the domtree updates for the new blocks. 114144aab925SChandler Carruth SmallPtrSet<BasicBlock *, 4> SuccSet; 114244aab925SChandler Carruth for (auto *ClonedBB : NewBlocks) { 114369e68f84SChandler Carruth for (auto *SuccBB : successors(ClonedBB)) 114444aab925SChandler Carruth if (SuccSet.insert(SuccBB).second) 114569e68f84SChandler Carruth DTUpdates.push_back({DominatorTree::Insert, ClonedBB, SuccBB}); 114644aab925SChandler Carruth SuccSet.clear(); 114744aab925SChandler Carruth } 114869e68f84SChandler Carruth 1149693eedb1SChandler Carruth return ClonedPH; 1150693eedb1SChandler Carruth } 1151693eedb1SChandler Carruth 1152693eedb1SChandler Carruth /// Recursively clone the specified loop and all of its children. 1153693eedb1SChandler Carruth /// 1154693eedb1SChandler Carruth /// The target parent loop for the clone should be provided, or can be null if 1155693eedb1SChandler Carruth /// the clone is a top-level loop. While cloning, all the blocks are mapped 1156693eedb1SChandler Carruth /// with the provided value map. The entire original loop must be present in 1157693eedb1SChandler Carruth /// the value map. The cloned loop is returned. 1158693eedb1SChandler Carruth static Loop *cloneLoopNest(Loop &OrigRootL, Loop *RootParentL, 1159693eedb1SChandler Carruth const ValueToValueMapTy &VMap, LoopInfo &LI) { 1160693eedb1SChandler Carruth auto AddClonedBlocksToLoop = [&](Loop &OrigL, Loop &ClonedL) { 1161693eedb1SChandler Carruth assert(ClonedL.getBlocks().empty() && "Must start with an empty loop!"); 1162693eedb1SChandler Carruth ClonedL.reserveBlocks(OrigL.getNumBlocks()); 1163693eedb1SChandler Carruth for (auto *BB : OrigL.blocks()) { 1164693eedb1SChandler Carruth auto *ClonedBB = cast<BasicBlock>(VMap.lookup(BB)); 1165693eedb1SChandler Carruth ClonedL.addBlockEntry(ClonedBB); 11660ace148cSChandler Carruth if (LI.getLoopFor(BB) == &OrigL) 1167693eedb1SChandler Carruth LI.changeLoopFor(ClonedBB, &ClonedL); 1168693eedb1SChandler Carruth } 1169693eedb1SChandler Carruth }; 1170693eedb1SChandler Carruth 1171693eedb1SChandler Carruth // We specially handle the first loop because it may get cloned into 1172693eedb1SChandler Carruth // a different parent and because we most commonly are cloning leaf loops. 1173693eedb1SChandler Carruth Loop *ClonedRootL = LI.AllocateLoop(); 1174693eedb1SChandler Carruth if (RootParentL) 1175693eedb1SChandler Carruth RootParentL->addChildLoop(ClonedRootL); 1176693eedb1SChandler Carruth else 1177693eedb1SChandler Carruth LI.addTopLevelLoop(ClonedRootL); 1178693eedb1SChandler Carruth AddClonedBlocksToLoop(OrigRootL, *ClonedRootL); 1179693eedb1SChandler Carruth 1180693eedb1SChandler Carruth if (OrigRootL.empty()) 1181693eedb1SChandler Carruth return ClonedRootL; 1182693eedb1SChandler Carruth 1183693eedb1SChandler Carruth // If we have a nest, we can quickly clone the entire loop nest using an 1184693eedb1SChandler Carruth // iterative approach because it is a tree. We keep the cloned parent in the 1185693eedb1SChandler Carruth // data structure to avoid repeatedly querying through a map to find it. 1186693eedb1SChandler Carruth SmallVector<std::pair<Loop *, Loop *>, 16> LoopsToClone; 1187693eedb1SChandler Carruth // Build up the loops to clone in reverse order as we'll clone them from the 1188693eedb1SChandler Carruth // back. 1189693eedb1SChandler Carruth for (Loop *ChildL : llvm::reverse(OrigRootL)) 1190693eedb1SChandler Carruth LoopsToClone.push_back({ClonedRootL, ChildL}); 1191693eedb1SChandler Carruth do { 1192693eedb1SChandler Carruth Loop *ClonedParentL, *L; 1193693eedb1SChandler Carruth std::tie(ClonedParentL, L) = LoopsToClone.pop_back_val(); 1194693eedb1SChandler Carruth Loop *ClonedL = LI.AllocateLoop(); 1195693eedb1SChandler Carruth ClonedParentL->addChildLoop(ClonedL); 1196693eedb1SChandler Carruth AddClonedBlocksToLoop(*L, *ClonedL); 1197693eedb1SChandler Carruth for (Loop *ChildL : llvm::reverse(*L)) 1198693eedb1SChandler Carruth LoopsToClone.push_back({ClonedL, ChildL}); 1199693eedb1SChandler Carruth } while (!LoopsToClone.empty()); 1200693eedb1SChandler Carruth 1201693eedb1SChandler Carruth return ClonedRootL; 1202693eedb1SChandler Carruth } 1203693eedb1SChandler Carruth 1204693eedb1SChandler Carruth /// Build the cloned loops of an original loop from unswitching. 1205693eedb1SChandler Carruth /// 1206693eedb1SChandler Carruth /// Because unswitching simplifies the CFG of the loop, this isn't a trivial 1207693eedb1SChandler Carruth /// operation. We need to re-verify that there even is a loop (as the backedge 1208693eedb1SChandler Carruth /// may not have been cloned), and even if there are remaining backedges the 1209693eedb1SChandler Carruth /// backedge set may be different. However, we know that each child loop is 1210693eedb1SChandler Carruth /// undisturbed, we only need to find where to place each child loop within 1211693eedb1SChandler Carruth /// either any parent loop or within a cloned version of the original loop. 1212693eedb1SChandler Carruth /// 1213693eedb1SChandler Carruth /// Because child loops may end up cloned outside of any cloned version of the 1214693eedb1SChandler Carruth /// original loop, multiple cloned sibling loops may be created. All of them 1215693eedb1SChandler Carruth /// are returned so that the newly introduced loop nest roots can be 1216693eedb1SChandler Carruth /// identified. 12179281503eSChandler Carruth static void buildClonedLoops(Loop &OrigL, ArrayRef<BasicBlock *> ExitBlocks, 1218693eedb1SChandler Carruth const ValueToValueMapTy &VMap, LoopInfo &LI, 1219693eedb1SChandler Carruth SmallVectorImpl<Loop *> &NonChildClonedLoops) { 1220693eedb1SChandler Carruth Loop *ClonedL = nullptr; 1221693eedb1SChandler Carruth 1222693eedb1SChandler Carruth auto *OrigPH = OrigL.getLoopPreheader(); 1223693eedb1SChandler Carruth auto *OrigHeader = OrigL.getHeader(); 1224693eedb1SChandler Carruth 1225693eedb1SChandler Carruth auto *ClonedPH = cast<BasicBlock>(VMap.lookup(OrigPH)); 1226693eedb1SChandler Carruth auto *ClonedHeader = cast<BasicBlock>(VMap.lookup(OrigHeader)); 1227693eedb1SChandler Carruth 1228693eedb1SChandler Carruth // We need to know the loops of the cloned exit blocks to even compute the 1229693eedb1SChandler Carruth // accurate parent loop. If we only clone exits to some parent of the 1230693eedb1SChandler Carruth // original parent, we want to clone into that outer loop. We also keep track 1231693eedb1SChandler Carruth // of the loops that our cloned exit blocks participate in. 1232693eedb1SChandler Carruth Loop *ParentL = nullptr; 1233693eedb1SChandler Carruth SmallVector<BasicBlock *, 4> ClonedExitsInLoops; 1234693eedb1SChandler Carruth SmallDenseMap<BasicBlock *, Loop *, 16> ExitLoopMap; 1235693eedb1SChandler Carruth ClonedExitsInLoops.reserve(ExitBlocks.size()); 1236693eedb1SChandler Carruth for (auto *ExitBB : ExitBlocks) 1237693eedb1SChandler Carruth if (auto *ClonedExitBB = cast_or_null<BasicBlock>(VMap.lookup(ExitBB))) 1238693eedb1SChandler Carruth if (Loop *ExitL = LI.getLoopFor(ExitBB)) { 1239693eedb1SChandler Carruth ExitLoopMap[ClonedExitBB] = ExitL; 1240693eedb1SChandler Carruth ClonedExitsInLoops.push_back(ClonedExitBB); 1241693eedb1SChandler Carruth if (!ParentL || (ParentL != ExitL && ParentL->contains(ExitL))) 1242693eedb1SChandler Carruth ParentL = ExitL; 1243693eedb1SChandler Carruth } 1244693eedb1SChandler Carruth assert((!ParentL || ParentL == OrigL.getParentLoop() || 1245693eedb1SChandler Carruth ParentL->contains(OrigL.getParentLoop())) && 1246693eedb1SChandler Carruth "The computed parent loop should always contain (or be) the parent of " 1247693eedb1SChandler Carruth "the original loop."); 1248693eedb1SChandler Carruth 1249693eedb1SChandler Carruth // We build the set of blocks dominated by the cloned header from the set of 1250693eedb1SChandler Carruth // cloned blocks out of the original loop. While not all of these will 1251693eedb1SChandler Carruth // necessarily be in the cloned loop, it is enough to establish that they 1252693eedb1SChandler Carruth // aren't in unreachable cycles, etc. 1253693eedb1SChandler Carruth SmallSetVector<BasicBlock *, 16> ClonedLoopBlocks; 1254693eedb1SChandler Carruth for (auto *BB : OrigL.blocks()) 1255693eedb1SChandler Carruth if (auto *ClonedBB = cast_or_null<BasicBlock>(VMap.lookup(BB))) 1256693eedb1SChandler Carruth ClonedLoopBlocks.insert(ClonedBB); 1257693eedb1SChandler Carruth 1258693eedb1SChandler Carruth // Rebuild the set of blocks that will end up in the cloned loop. We may have 1259693eedb1SChandler Carruth // skipped cloning some region of this loop which can in turn skip some of 1260693eedb1SChandler Carruth // the backedges so we have to rebuild the blocks in the loop based on the 1261693eedb1SChandler Carruth // backedges that remain after cloning. 1262693eedb1SChandler Carruth SmallVector<BasicBlock *, 16> Worklist; 1263693eedb1SChandler Carruth SmallPtrSet<BasicBlock *, 16> BlocksInClonedLoop; 1264693eedb1SChandler Carruth for (auto *Pred : predecessors(ClonedHeader)) { 1265693eedb1SChandler Carruth // The only possible non-loop header predecessor is the preheader because 1266693eedb1SChandler Carruth // we know we cloned the loop in simplified form. 1267693eedb1SChandler Carruth if (Pred == ClonedPH) 1268693eedb1SChandler Carruth continue; 1269693eedb1SChandler Carruth 1270693eedb1SChandler Carruth // Because the loop was in simplified form, the only non-loop predecessor 1271693eedb1SChandler Carruth // should be the preheader. 1272693eedb1SChandler Carruth assert(ClonedLoopBlocks.count(Pred) && "Found a predecessor of the loop " 1273693eedb1SChandler Carruth "header other than the preheader " 1274693eedb1SChandler Carruth "that is not part of the loop!"); 1275693eedb1SChandler Carruth 1276693eedb1SChandler Carruth // Insert this block into the loop set and on the first visit (and if it 1277693eedb1SChandler Carruth // isn't the header we're currently walking) put it into the worklist to 1278693eedb1SChandler Carruth // recurse through. 1279693eedb1SChandler Carruth if (BlocksInClonedLoop.insert(Pred).second && Pred != ClonedHeader) 1280693eedb1SChandler Carruth Worklist.push_back(Pred); 1281693eedb1SChandler Carruth } 1282693eedb1SChandler Carruth 1283693eedb1SChandler Carruth // If we had any backedges then there *is* a cloned loop. Put the header into 1284693eedb1SChandler Carruth // the loop set and then walk the worklist backwards to find all the blocks 1285693eedb1SChandler Carruth // that remain within the loop after cloning. 1286693eedb1SChandler Carruth if (!BlocksInClonedLoop.empty()) { 1287693eedb1SChandler Carruth BlocksInClonedLoop.insert(ClonedHeader); 1288693eedb1SChandler Carruth 1289693eedb1SChandler Carruth while (!Worklist.empty()) { 1290693eedb1SChandler Carruth BasicBlock *BB = Worklist.pop_back_val(); 1291693eedb1SChandler Carruth assert(BlocksInClonedLoop.count(BB) && 1292693eedb1SChandler Carruth "Didn't put block into the loop set!"); 1293693eedb1SChandler Carruth 1294693eedb1SChandler Carruth // Insert any predecessors that are in the possible set into the cloned 1295693eedb1SChandler Carruth // set, and if the insert is successful, add them to the worklist. Note 1296693eedb1SChandler Carruth // that we filter on the blocks that are definitely reachable via the 1297693eedb1SChandler Carruth // backedge to the loop header so we may prune out dead code within the 1298693eedb1SChandler Carruth // cloned loop. 1299693eedb1SChandler Carruth for (auto *Pred : predecessors(BB)) 1300693eedb1SChandler Carruth if (ClonedLoopBlocks.count(Pred) && 1301693eedb1SChandler Carruth BlocksInClonedLoop.insert(Pred).second) 1302693eedb1SChandler Carruth Worklist.push_back(Pred); 1303693eedb1SChandler Carruth } 1304693eedb1SChandler Carruth 1305693eedb1SChandler Carruth ClonedL = LI.AllocateLoop(); 1306693eedb1SChandler Carruth if (ParentL) { 1307693eedb1SChandler Carruth ParentL->addBasicBlockToLoop(ClonedPH, LI); 1308693eedb1SChandler Carruth ParentL->addChildLoop(ClonedL); 1309693eedb1SChandler Carruth } else { 1310693eedb1SChandler Carruth LI.addTopLevelLoop(ClonedL); 1311693eedb1SChandler Carruth } 13129281503eSChandler Carruth NonChildClonedLoops.push_back(ClonedL); 1313693eedb1SChandler Carruth 1314693eedb1SChandler Carruth ClonedL->reserveBlocks(BlocksInClonedLoop.size()); 1315693eedb1SChandler Carruth // We don't want to just add the cloned loop blocks based on how we 1316693eedb1SChandler Carruth // discovered them. The original order of blocks was carefully built in 1317693eedb1SChandler Carruth // a way that doesn't rely on predecessor ordering. Rather than re-invent 1318693eedb1SChandler Carruth // that logic, we just re-walk the original blocks (and those of the child 1319693eedb1SChandler Carruth // loops) and filter them as we add them into the cloned loop. 1320693eedb1SChandler Carruth for (auto *BB : OrigL.blocks()) { 1321693eedb1SChandler Carruth auto *ClonedBB = cast_or_null<BasicBlock>(VMap.lookup(BB)); 1322693eedb1SChandler Carruth if (!ClonedBB || !BlocksInClonedLoop.count(ClonedBB)) 1323693eedb1SChandler Carruth continue; 1324693eedb1SChandler Carruth 1325693eedb1SChandler Carruth // Directly add the blocks that are only in this loop. 1326693eedb1SChandler Carruth if (LI.getLoopFor(BB) == &OrigL) { 1327693eedb1SChandler Carruth ClonedL->addBasicBlockToLoop(ClonedBB, LI); 1328693eedb1SChandler Carruth continue; 1329693eedb1SChandler Carruth } 1330693eedb1SChandler Carruth 1331693eedb1SChandler Carruth // We want to manually add it to this loop and parents. 1332693eedb1SChandler Carruth // Registering it with LoopInfo will happen when we clone the top 1333693eedb1SChandler Carruth // loop for this block. 1334693eedb1SChandler Carruth for (Loop *PL = ClonedL; PL; PL = PL->getParentLoop()) 1335693eedb1SChandler Carruth PL->addBlockEntry(ClonedBB); 1336693eedb1SChandler Carruth } 1337693eedb1SChandler Carruth 1338693eedb1SChandler Carruth // Now add each child loop whose header remains within the cloned loop. All 1339693eedb1SChandler Carruth // of the blocks within the loop must satisfy the same constraints as the 1340693eedb1SChandler Carruth // header so once we pass the header checks we can just clone the entire 1341693eedb1SChandler Carruth // child loop nest. 1342693eedb1SChandler Carruth for (Loop *ChildL : OrigL) { 1343693eedb1SChandler Carruth auto *ClonedChildHeader = 1344693eedb1SChandler Carruth cast_or_null<BasicBlock>(VMap.lookup(ChildL->getHeader())); 1345693eedb1SChandler Carruth if (!ClonedChildHeader || !BlocksInClonedLoop.count(ClonedChildHeader)) 1346693eedb1SChandler Carruth continue; 1347693eedb1SChandler Carruth 1348693eedb1SChandler Carruth #ifndef NDEBUG 1349693eedb1SChandler Carruth // We should never have a cloned child loop header but fail to have 1350693eedb1SChandler Carruth // all of the blocks for that child loop. 1351693eedb1SChandler Carruth for (auto *ChildLoopBB : ChildL->blocks()) 1352693eedb1SChandler Carruth assert(BlocksInClonedLoop.count( 1353693eedb1SChandler Carruth cast<BasicBlock>(VMap.lookup(ChildLoopBB))) && 1354693eedb1SChandler Carruth "Child cloned loop has a header within the cloned outer " 1355693eedb1SChandler Carruth "loop but not all of its blocks!"); 1356693eedb1SChandler Carruth #endif 1357693eedb1SChandler Carruth 1358693eedb1SChandler Carruth cloneLoopNest(*ChildL, ClonedL, VMap, LI); 1359693eedb1SChandler Carruth } 1360693eedb1SChandler Carruth } 1361693eedb1SChandler Carruth 1362693eedb1SChandler Carruth // Now that we've handled all the components of the original loop that were 1363693eedb1SChandler Carruth // cloned into a new loop, we still need to handle anything from the original 1364693eedb1SChandler Carruth // loop that wasn't in a cloned loop. 1365693eedb1SChandler Carruth 1366693eedb1SChandler Carruth // Figure out what blocks are left to place within any loop nest containing 1367693eedb1SChandler Carruth // the unswitched loop. If we never formed a loop, the cloned PH is one of 1368693eedb1SChandler Carruth // them. 1369693eedb1SChandler Carruth SmallPtrSet<BasicBlock *, 16> UnloopedBlockSet; 1370693eedb1SChandler Carruth if (BlocksInClonedLoop.empty()) 1371693eedb1SChandler Carruth UnloopedBlockSet.insert(ClonedPH); 1372693eedb1SChandler Carruth for (auto *ClonedBB : ClonedLoopBlocks) 1373693eedb1SChandler Carruth if (!BlocksInClonedLoop.count(ClonedBB)) 1374693eedb1SChandler Carruth UnloopedBlockSet.insert(ClonedBB); 1375693eedb1SChandler Carruth 1376693eedb1SChandler Carruth // Copy the cloned exits and sort them in ascending loop depth, we'll work 1377693eedb1SChandler Carruth // backwards across these to process them inside out. The order shouldn't 1378693eedb1SChandler Carruth // matter as we're just trying to build up the map from inside-out; we use 1379693eedb1SChandler Carruth // the map in a more stably ordered way below. 1380693eedb1SChandler Carruth auto OrderedClonedExitsInLoops = ClonedExitsInLoops; 13810cac726aSFangrui Song llvm::sort(OrderedClonedExitsInLoops, [&](BasicBlock *LHS, BasicBlock *RHS) { 1382693eedb1SChandler Carruth return ExitLoopMap.lookup(LHS)->getLoopDepth() < 1383693eedb1SChandler Carruth ExitLoopMap.lookup(RHS)->getLoopDepth(); 1384693eedb1SChandler Carruth }); 1385693eedb1SChandler Carruth 1386693eedb1SChandler Carruth // Populate the existing ExitLoopMap with everything reachable from each 1387693eedb1SChandler Carruth // exit, starting from the inner most exit. 1388693eedb1SChandler Carruth while (!UnloopedBlockSet.empty() && !OrderedClonedExitsInLoops.empty()) { 1389693eedb1SChandler Carruth assert(Worklist.empty() && "Didn't clear worklist!"); 1390693eedb1SChandler Carruth 1391693eedb1SChandler Carruth BasicBlock *ExitBB = OrderedClonedExitsInLoops.pop_back_val(); 1392693eedb1SChandler Carruth Loop *ExitL = ExitLoopMap.lookup(ExitBB); 1393693eedb1SChandler Carruth 1394693eedb1SChandler Carruth // Walk the CFG back until we hit the cloned PH adding everything reachable 1395693eedb1SChandler Carruth // and in the unlooped set to this exit block's loop. 1396693eedb1SChandler Carruth Worklist.push_back(ExitBB); 1397693eedb1SChandler Carruth do { 1398693eedb1SChandler Carruth BasicBlock *BB = Worklist.pop_back_val(); 1399693eedb1SChandler Carruth // We can stop recursing at the cloned preheader (if we get there). 1400693eedb1SChandler Carruth if (BB == ClonedPH) 1401693eedb1SChandler Carruth continue; 1402693eedb1SChandler Carruth 1403693eedb1SChandler Carruth for (BasicBlock *PredBB : predecessors(BB)) { 1404693eedb1SChandler Carruth // If this pred has already been moved to our set or is part of some 1405693eedb1SChandler Carruth // (inner) loop, no update needed. 1406693eedb1SChandler Carruth if (!UnloopedBlockSet.erase(PredBB)) { 1407693eedb1SChandler Carruth assert( 1408693eedb1SChandler Carruth (BlocksInClonedLoop.count(PredBB) || ExitLoopMap.count(PredBB)) && 1409693eedb1SChandler Carruth "Predecessor not mapped to a loop!"); 1410693eedb1SChandler Carruth continue; 1411693eedb1SChandler Carruth } 1412693eedb1SChandler Carruth 1413693eedb1SChandler Carruth // We just insert into the loop set here. We'll add these blocks to the 1414693eedb1SChandler Carruth // exit loop after we build up the set in an order that doesn't rely on 1415693eedb1SChandler Carruth // predecessor order (which in turn relies on use list order). 1416693eedb1SChandler Carruth bool Inserted = ExitLoopMap.insert({PredBB, ExitL}).second; 1417693eedb1SChandler Carruth (void)Inserted; 1418693eedb1SChandler Carruth assert(Inserted && "Should only visit an unlooped block once!"); 1419693eedb1SChandler Carruth 1420693eedb1SChandler Carruth // And recurse through to its predecessors. 1421693eedb1SChandler Carruth Worklist.push_back(PredBB); 1422693eedb1SChandler Carruth } 1423693eedb1SChandler Carruth } while (!Worklist.empty()); 1424693eedb1SChandler Carruth } 1425693eedb1SChandler Carruth 1426693eedb1SChandler Carruth // Now that the ExitLoopMap gives as mapping for all the non-looping cloned 1427693eedb1SChandler Carruth // blocks to their outer loops, walk the cloned blocks and the cloned exits 1428693eedb1SChandler Carruth // in their original order adding them to the correct loop. 1429693eedb1SChandler Carruth 1430693eedb1SChandler Carruth // We need a stable insertion order. We use the order of the original loop 1431693eedb1SChandler Carruth // order and map into the correct parent loop. 1432693eedb1SChandler Carruth for (auto *BB : llvm::concat<BasicBlock *const>( 1433693eedb1SChandler Carruth makeArrayRef(ClonedPH), ClonedLoopBlocks, ClonedExitsInLoops)) 1434693eedb1SChandler Carruth if (Loop *OuterL = ExitLoopMap.lookup(BB)) 1435693eedb1SChandler Carruth OuterL->addBasicBlockToLoop(BB, LI); 1436693eedb1SChandler Carruth 1437693eedb1SChandler Carruth #ifndef NDEBUG 1438693eedb1SChandler Carruth for (auto &BBAndL : ExitLoopMap) { 1439693eedb1SChandler Carruth auto *BB = BBAndL.first; 1440693eedb1SChandler Carruth auto *OuterL = BBAndL.second; 1441693eedb1SChandler Carruth assert(LI.getLoopFor(BB) == OuterL && 1442693eedb1SChandler Carruth "Failed to put all blocks into outer loops!"); 1443693eedb1SChandler Carruth } 1444693eedb1SChandler Carruth #endif 1445693eedb1SChandler Carruth 1446693eedb1SChandler Carruth // Now that all the blocks are placed into the correct containing loop in the 1447693eedb1SChandler Carruth // absence of child loops, find all the potentially cloned child loops and 1448693eedb1SChandler Carruth // clone them into whatever outer loop we placed their header into. 1449693eedb1SChandler Carruth for (Loop *ChildL : OrigL) { 1450693eedb1SChandler Carruth auto *ClonedChildHeader = 1451693eedb1SChandler Carruth cast_or_null<BasicBlock>(VMap.lookup(ChildL->getHeader())); 1452693eedb1SChandler Carruth if (!ClonedChildHeader || BlocksInClonedLoop.count(ClonedChildHeader)) 1453693eedb1SChandler Carruth continue; 1454693eedb1SChandler Carruth 1455693eedb1SChandler Carruth #ifndef NDEBUG 1456693eedb1SChandler Carruth for (auto *ChildLoopBB : ChildL->blocks()) 1457693eedb1SChandler Carruth assert(VMap.count(ChildLoopBB) && 1458693eedb1SChandler Carruth "Cloned a child loop header but not all of that loops blocks!"); 1459693eedb1SChandler Carruth #endif 1460693eedb1SChandler Carruth 1461693eedb1SChandler Carruth NonChildClonedLoops.push_back(cloneLoopNest( 1462693eedb1SChandler Carruth *ChildL, ExitLoopMap.lookup(ClonedChildHeader), VMap, LI)); 1463693eedb1SChandler Carruth } 1464693eedb1SChandler Carruth } 1465693eedb1SChandler Carruth 146669e68f84SChandler Carruth static void 14671652996fSChandler Carruth deleteDeadClonedBlocks(Loop &L, ArrayRef<BasicBlock *> ExitBlocks, 14681652996fSChandler Carruth ArrayRef<std::unique_ptr<ValueToValueMapTy>> VMaps, 1469a2eebb82SAlina Sbirlea DominatorTree &DT, MemorySSAUpdater *MSSAU) { 14701652996fSChandler Carruth // Find all the dead clones, and remove them from their successors. 14711652996fSChandler Carruth SmallVector<BasicBlock *, 16> DeadBlocks; 14721652996fSChandler Carruth for (BasicBlock *BB : llvm::concat<BasicBlock *const>(L.blocks(), ExitBlocks)) 14731652996fSChandler Carruth for (auto &VMap : VMaps) 14741652996fSChandler Carruth if (BasicBlock *ClonedBB = cast_or_null<BasicBlock>(VMap->lookup(BB))) 14751652996fSChandler Carruth if (!DT.isReachableFromEntry(ClonedBB)) { 14761652996fSChandler Carruth for (BasicBlock *SuccBB : successors(ClonedBB)) 14771652996fSChandler Carruth SuccBB->removePredecessor(ClonedBB); 14781652996fSChandler Carruth DeadBlocks.push_back(ClonedBB); 14791652996fSChandler Carruth } 14801652996fSChandler Carruth 1481a2eebb82SAlina Sbirlea // Remove all MemorySSA in the dead blocks 1482a2eebb82SAlina Sbirlea if (MSSAU) { 1483db101864SAlina Sbirlea SmallSetVector<BasicBlock *, 8> DeadBlockSet(DeadBlocks.begin(), 1484a2eebb82SAlina Sbirlea DeadBlocks.end()); 1485a2eebb82SAlina Sbirlea MSSAU->removeBlocks(DeadBlockSet); 1486a2eebb82SAlina Sbirlea } 1487a2eebb82SAlina Sbirlea 14881652996fSChandler Carruth // Drop any remaining references to break cycles. 14891652996fSChandler Carruth for (BasicBlock *BB : DeadBlocks) 14901652996fSChandler Carruth BB->dropAllReferences(); 14911652996fSChandler Carruth // Erase them from the IR. 14921652996fSChandler Carruth for (BasicBlock *BB : DeadBlocks) 14931652996fSChandler Carruth BB->eraseFromParent(); 14941652996fSChandler Carruth } 14951652996fSChandler Carruth 1496a2eebb82SAlina Sbirlea static void deleteDeadBlocksFromLoop(Loop &L, 1497693eedb1SChandler Carruth SmallVectorImpl<BasicBlock *> &ExitBlocks, 1498a2eebb82SAlina Sbirlea DominatorTree &DT, LoopInfo &LI, 1499a2eebb82SAlina Sbirlea MemorySSAUpdater *MSSAU) { 15008b6effd9SFedor Sergeev // Find all the dead blocks tied to this loop, and remove them from their 15018b6effd9SFedor Sergeev // successors. 1502db101864SAlina Sbirlea SmallSetVector<BasicBlock *, 8> DeadBlockSet; 15037b49aa03SFedor Sergeev 15048b6effd9SFedor Sergeev // Start with loop/exit blocks and get a transitive closure of reachable dead 15058b6effd9SFedor Sergeev // blocks. 15068b6effd9SFedor Sergeev SmallVector<BasicBlock *, 16> DeathCandidates(ExitBlocks.begin(), 15078b6effd9SFedor Sergeev ExitBlocks.end()); 15088b6effd9SFedor Sergeev DeathCandidates.append(L.blocks().begin(), L.blocks().end()); 15098b6effd9SFedor Sergeev while (!DeathCandidates.empty()) { 15108b6effd9SFedor Sergeev auto *BB = DeathCandidates.pop_back_val(); 15118b6effd9SFedor Sergeev if (!DeadBlockSet.count(BB) && !DT.isReachableFromEntry(BB)) { 15128b6effd9SFedor Sergeev for (BasicBlock *SuccBB : successors(BB)) { 15131652996fSChandler Carruth SuccBB->removePredecessor(BB); 15148b6effd9SFedor Sergeev DeathCandidates.push_back(SuccBB); 15151652996fSChandler Carruth } 15168b6effd9SFedor Sergeev DeadBlockSet.insert(BB); 15178b6effd9SFedor Sergeev } 15188b6effd9SFedor Sergeev } 1519693eedb1SChandler Carruth 1520a2eebb82SAlina Sbirlea // Remove all MemorySSA in the dead blocks 1521a2eebb82SAlina Sbirlea if (MSSAU) 1522a2eebb82SAlina Sbirlea MSSAU->removeBlocks(DeadBlockSet); 1523a2eebb82SAlina Sbirlea 1524693eedb1SChandler Carruth // Filter out the dead blocks from the exit blocks list so that it can be 1525693eedb1SChandler Carruth // used in the caller. 1526693eedb1SChandler Carruth llvm::erase_if(ExitBlocks, 152769e68f84SChandler Carruth [&](BasicBlock *BB) { return DeadBlockSet.count(BB); }); 1528693eedb1SChandler Carruth 1529693eedb1SChandler Carruth // Walk from this loop up through its parents removing all of the dead blocks. 1530693eedb1SChandler Carruth for (Loop *ParentL = &L; ParentL; ParentL = ParentL->getParentLoop()) { 15318b6effd9SFedor Sergeev for (auto *BB : DeadBlockSet) 1532693eedb1SChandler Carruth ParentL->getBlocksSet().erase(BB); 1533693eedb1SChandler Carruth llvm::erase_if(ParentL->getBlocksVector(), 153469e68f84SChandler Carruth [&](BasicBlock *BB) { return DeadBlockSet.count(BB); }); 1535693eedb1SChandler Carruth } 1536693eedb1SChandler Carruth 1537693eedb1SChandler Carruth // Now delete the dead child loops. This raw delete will clear them 1538693eedb1SChandler Carruth // recursively. 1539693eedb1SChandler Carruth llvm::erase_if(L.getSubLoopsVector(), [&](Loop *ChildL) { 154069e68f84SChandler Carruth if (!DeadBlockSet.count(ChildL->getHeader())) 1541693eedb1SChandler Carruth return false; 1542693eedb1SChandler Carruth 1543693eedb1SChandler Carruth assert(llvm::all_of(ChildL->blocks(), 1544693eedb1SChandler Carruth [&](BasicBlock *ChildBB) { 154569e68f84SChandler Carruth return DeadBlockSet.count(ChildBB); 1546693eedb1SChandler Carruth }) && 1547693eedb1SChandler Carruth "If the child loop header is dead all blocks in the child loop must " 1548693eedb1SChandler Carruth "be dead as well!"); 1549693eedb1SChandler Carruth LI.destroy(ChildL); 1550693eedb1SChandler Carruth return true; 1551693eedb1SChandler Carruth }); 1552693eedb1SChandler Carruth 155369e68f84SChandler Carruth // Remove the loop mappings for the dead blocks and drop all the references 155469e68f84SChandler Carruth // from these blocks to others to handle cyclic references as we start 155569e68f84SChandler Carruth // deleting the blocks themselves. 15568b6effd9SFedor Sergeev for (auto *BB : DeadBlockSet) { 155769e68f84SChandler Carruth // Check that the dominator tree has already been updated. 155869e68f84SChandler Carruth assert(!DT.getNode(BB) && "Should already have cleared domtree!"); 1559693eedb1SChandler Carruth LI.changeLoopFor(BB, nullptr); 1560693eedb1SChandler Carruth BB->dropAllReferences(); 1561693eedb1SChandler Carruth } 156269e68f84SChandler Carruth 156369e68f84SChandler Carruth // Actually delete the blocks now that they've been fully unhooked from the 156469e68f84SChandler Carruth // IR. 15657b49aa03SFedor Sergeev for (auto *BB : DeadBlockSet) 156669e68f84SChandler Carruth BB->eraseFromParent(); 1567693eedb1SChandler Carruth } 1568693eedb1SChandler Carruth 1569693eedb1SChandler Carruth /// Recompute the set of blocks in a loop after unswitching. 1570693eedb1SChandler Carruth /// 1571693eedb1SChandler Carruth /// This walks from the original headers predecessors to rebuild the loop. We 1572693eedb1SChandler Carruth /// take advantage of the fact that new blocks can't have been added, and so we 1573693eedb1SChandler Carruth /// filter by the original loop's blocks. This also handles potentially 1574693eedb1SChandler Carruth /// unreachable code that we don't want to explore but might be found examining 1575693eedb1SChandler Carruth /// the predecessors of the header. 1576693eedb1SChandler Carruth /// 1577693eedb1SChandler Carruth /// If the original loop is no longer a loop, this will return an empty set. If 1578693eedb1SChandler Carruth /// it remains a loop, all the blocks within it will be added to the set 1579693eedb1SChandler Carruth /// (including those blocks in inner loops). 1580693eedb1SChandler Carruth static SmallPtrSet<const BasicBlock *, 16> recomputeLoopBlockSet(Loop &L, 1581693eedb1SChandler Carruth LoopInfo &LI) { 1582693eedb1SChandler Carruth SmallPtrSet<const BasicBlock *, 16> LoopBlockSet; 1583693eedb1SChandler Carruth 1584693eedb1SChandler Carruth auto *PH = L.getLoopPreheader(); 1585693eedb1SChandler Carruth auto *Header = L.getHeader(); 1586693eedb1SChandler Carruth 1587693eedb1SChandler Carruth // A worklist to use while walking backwards from the header. 1588693eedb1SChandler Carruth SmallVector<BasicBlock *, 16> Worklist; 1589693eedb1SChandler Carruth 1590693eedb1SChandler Carruth // First walk the predecessors of the header to find the backedges. This will 1591693eedb1SChandler Carruth // form the basis of our walk. 1592693eedb1SChandler Carruth for (auto *Pred : predecessors(Header)) { 1593693eedb1SChandler Carruth // Skip the preheader. 1594693eedb1SChandler Carruth if (Pred == PH) 1595693eedb1SChandler Carruth continue; 1596693eedb1SChandler Carruth 1597693eedb1SChandler Carruth // Because the loop was in simplified form, the only non-loop predecessor 1598693eedb1SChandler Carruth // is the preheader. 1599693eedb1SChandler Carruth assert(L.contains(Pred) && "Found a predecessor of the loop header other " 1600693eedb1SChandler Carruth "than the preheader that is not part of the " 1601693eedb1SChandler Carruth "loop!"); 1602693eedb1SChandler Carruth 1603693eedb1SChandler Carruth // Insert this block into the loop set and on the first visit and, if it 1604693eedb1SChandler Carruth // isn't the header we're currently walking, put it into the worklist to 1605693eedb1SChandler Carruth // recurse through. 1606693eedb1SChandler Carruth if (LoopBlockSet.insert(Pred).second && Pred != Header) 1607693eedb1SChandler Carruth Worklist.push_back(Pred); 1608693eedb1SChandler Carruth } 1609693eedb1SChandler Carruth 1610693eedb1SChandler Carruth // If no backedges were found, we're done. 1611693eedb1SChandler Carruth if (LoopBlockSet.empty()) 1612693eedb1SChandler Carruth return LoopBlockSet; 1613693eedb1SChandler Carruth 1614693eedb1SChandler Carruth // We found backedges, recurse through them to identify the loop blocks. 1615693eedb1SChandler Carruth while (!Worklist.empty()) { 1616693eedb1SChandler Carruth BasicBlock *BB = Worklist.pop_back_val(); 1617693eedb1SChandler Carruth assert(LoopBlockSet.count(BB) && "Didn't put block into the loop set!"); 1618693eedb1SChandler Carruth 161943acdb35SChandler Carruth // No need to walk past the header. 162043acdb35SChandler Carruth if (BB == Header) 162143acdb35SChandler Carruth continue; 162243acdb35SChandler Carruth 1623693eedb1SChandler Carruth // Because we know the inner loop structure remains valid we can use the 1624693eedb1SChandler Carruth // loop structure to jump immediately across the entire nested loop. 1625693eedb1SChandler Carruth // Further, because it is in loop simplified form, we can directly jump 1626693eedb1SChandler Carruth // to its preheader afterward. 1627693eedb1SChandler Carruth if (Loop *InnerL = LI.getLoopFor(BB)) 1628693eedb1SChandler Carruth if (InnerL != &L) { 1629693eedb1SChandler Carruth assert(L.contains(InnerL) && 1630693eedb1SChandler Carruth "Should not reach a loop *outside* this loop!"); 1631693eedb1SChandler Carruth // The preheader is the only possible predecessor of the loop so 1632693eedb1SChandler Carruth // insert it into the set and check whether it was already handled. 1633693eedb1SChandler Carruth auto *InnerPH = InnerL->getLoopPreheader(); 1634693eedb1SChandler Carruth assert(L.contains(InnerPH) && "Cannot contain an inner loop block " 1635693eedb1SChandler Carruth "but not contain the inner loop " 1636693eedb1SChandler Carruth "preheader!"); 1637693eedb1SChandler Carruth if (!LoopBlockSet.insert(InnerPH).second) 1638693eedb1SChandler Carruth // The only way to reach the preheader is through the loop body 1639693eedb1SChandler Carruth // itself so if it has been visited the loop is already handled. 1640693eedb1SChandler Carruth continue; 1641693eedb1SChandler Carruth 1642693eedb1SChandler Carruth // Insert all of the blocks (other than those already present) into 1643bf7190a1SChandler Carruth // the loop set. We expect at least the block that led us to find the 1644bf7190a1SChandler Carruth // inner loop to be in the block set, but we may also have other loop 1645bf7190a1SChandler Carruth // blocks if they were already enqueued as predecessors of some other 1646bf7190a1SChandler Carruth // outer loop block. 1647693eedb1SChandler Carruth for (auto *InnerBB : InnerL->blocks()) { 1648693eedb1SChandler Carruth if (InnerBB == BB) { 1649693eedb1SChandler Carruth assert(LoopBlockSet.count(InnerBB) && 1650693eedb1SChandler Carruth "Block should already be in the set!"); 1651693eedb1SChandler Carruth continue; 1652693eedb1SChandler Carruth } 1653693eedb1SChandler Carruth 1654bf7190a1SChandler Carruth LoopBlockSet.insert(InnerBB); 1655693eedb1SChandler Carruth } 1656693eedb1SChandler Carruth 1657693eedb1SChandler Carruth // Add the preheader to the worklist so we will continue past the 1658693eedb1SChandler Carruth // loop body. 1659693eedb1SChandler Carruth Worklist.push_back(InnerPH); 1660693eedb1SChandler Carruth continue; 1661693eedb1SChandler Carruth } 1662693eedb1SChandler Carruth 1663693eedb1SChandler Carruth // Insert any predecessors that were in the original loop into the new 1664693eedb1SChandler Carruth // set, and if the insert is successful, add them to the worklist. 1665693eedb1SChandler Carruth for (auto *Pred : predecessors(BB)) 1666693eedb1SChandler Carruth if (L.contains(Pred) && LoopBlockSet.insert(Pred).second) 1667693eedb1SChandler Carruth Worklist.push_back(Pred); 1668693eedb1SChandler Carruth } 1669693eedb1SChandler Carruth 167043acdb35SChandler Carruth assert(LoopBlockSet.count(Header) && "Cannot fail to add the header!"); 167143acdb35SChandler Carruth 1672693eedb1SChandler Carruth // We've found all the blocks participating in the loop, return our completed 1673693eedb1SChandler Carruth // set. 1674693eedb1SChandler Carruth return LoopBlockSet; 1675693eedb1SChandler Carruth } 1676693eedb1SChandler Carruth 1677693eedb1SChandler Carruth /// Rebuild a loop after unswitching removes some subset of blocks and edges. 1678693eedb1SChandler Carruth /// 1679693eedb1SChandler Carruth /// The removal may have removed some child loops entirely but cannot have 1680693eedb1SChandler Carruth /// disturbed any remaining child loops. However, they may need to be hoisted 1681693eedb1SChandler Carruth /// to the parent loop (or to be top-level loops). The original loop may be 1682693eedb1SChandler Carruth /// completely removed. 1683693eedb1SChandler Carruth /// 1684693eedb1SChandler Carruth /// The sibling loops resulting from this update are returned. If the original 1685693eedb1SChandler Carruth /// loop remains a valid loop, it will be the first entry in this list with all 1686693eedb1SChandler Carruth /// of the newly sibling loops following it. 1687693eedb1SChandler Carruth /// 1688693eedb1SChandler Carruth /// Returns true if the loop remains a loop after unswitching, and false if it 1689693eedb1SChandler Carruth /// is no longer a loop after unswitching (and should not continue to be 1690693eedb1SChandler Carruth /// referenced). 1691693eedb1SChandler Carruth static bool rebuildLoopAfterUnswitch(Loop &L, ArrayRef<BasicBlock *> ExitBlocks, 1692693eedb1SChandler Carruth LoopInfo &LI, 1693693eedb1SChandler Carruth SmallVectorImpl<Loop *> &HoistedLoops) { 1694693eedb1SChandler Carruth auto *PH = L.getLoopPreheader(); 1695693eedb1SChandler Carruth 1696693eedb1SChandler Carruth // Compute the actual parent loop from the exit blocks. Because we may have 1697693eedb1SChandler Carruth // pruned some exits the loop may be different from the original parent. 1698693eedb1SChandler Carruth Loop *ParentL = nullptr; 1699693eedb1SChandler Carruth SmallVector<Loop *, 4> ExitLoops; 1700693eedb1SChandler Carruth SmallVector<BasicBlock *, 4> ExitsInLoops; 1701693eedb1SChandler Carruth ExitsInLoops.reserve(ExitBlocks.size()); 1702693eedb1SChandler Carruth for (auto *ExitBB : ExitBlocks) 1703693eedb1SChandler Carruth if (Loop *ExitL = LI.getLoopFor(ExitBB)) { 1704693eedb1SChandler Carruth ExitLoops.push_back(ExitL); 1705693eedb1SChandler Carruth ExitsInLoops.push_back(ExitBB); 1706693eedb1SChandler Carruth if (!ParentL || (ParentL != ExitL && ParentL->contains(ExitL))) 1707693eedb1SChandler Carruth ParentL = ExitL; 1708693eedb1SChandler Carruth } 1709693eedb1SChandler Carruth 1710693eedb1SChandler Carruth // Recompute the blocks participating in this loop. This may be empty if it 1711693eedb1SChandler Carruth // is no longer a loop. 1712693eedb1SChandler Carruth auto LoopBlockSet = recomputeLoopBlockSet(L, LI); 1713693eedb1SChandler Carruth 1714693eedb1SChandler Carruth // If we still have a loop, we need to re-set the loop's parent as the exit 1715693eedb1SChandler Carruth // block set changing may have moved it within the loop nest. Note that this 1716693eedb1SChandler Carruth // can only happen when this loop has a parent as it can only hoist the loop 1717693eedb1SChandler Carruth // *up* the nest. 1718693eedb1SChandler Carruth if (!LoopBlockSet.empty() && L.getParentLoop() != ParentL) { 1719693eedb1SChandler Carruth // Remove this loop's (original) blocks from all of the intervening loops. 1720693eedb1SChandler Carruth for (Loop *IL = L.getParentLoop(); IL != ParentL; 1721693eedb1SChandler Carruth IL = IL->getParentLoop()) { 1722693eedb1SChandler Carruth IL->getBlocksSet().erase(PH); 1723693eedb1SChandler Carruth for (auto *BB : L.blocks()) 1724693eedb1SChandler Carruth IL->getBlocksSet().erase(BB); 1725693eedb1SChandler Carruth llvm::erase_if(IL->getBlocksVector(), [&](BasicBlock *BB) { 1726693eedb1SChandler Carruth return BB == PH || L.contains(BB); 1727693eedb1SChandler Carruth }); 1728693eedb1SChandler Carruth } 1729693eedb1SChandler Carruth 1730693eedb1SChandler Carruth LI.changeLoopFor(PH, ParentL); 1731693eedb1SChandler Carruth L.getParentLoop()->removeChildLoop(&L); 1732693eedb1SChandler Carruth if (ParentL) 1733693eedb1SChandler Carruth ParentL->addChildLoop(&L); 1734693eedb1SChandler Carruth else 1735693eedb1SChandler Carruth LI.addTopLevelLoop(&L); 1736693eedb1SChandler Carruth } 1737693eedb1SChandler Carruth 1738693eedb1SChandler Carruth // Now we update all the blocks which are no longer within the loop. 1739693eedb1SChandler Carruth auto &Blocks = L.getBlocksVector(); 1740693eedb1SChandler Carruth auto BlocksSplitI = 1741693eedb1SChandler Carruth LoopBlockSet.empty() 1742693eedb1SChandler Carruth ? Blocks.begin() 1743693eedb1SChandler Carruth : std::stable_partition( 1744693eedb1SChandler Carruth Blocks.begin(), Blocks.end(), 1745693eedb1SChandler Carruth [&](BasicBlock *BB) { return LoopBlockSet.count(BB); }); 1746693eedb1SChandler Carruth 1747693eedb1SChandler Carruth // Before we erase the list of unlooped blocks, build a set of them. 1748693eedb1SChandler Carruth SmallPtrSet<BasicBlock *, 16> UnloopedBlocks(BlocksSplitI, Blocks.end()); 1749693eedb1SChandler Carruth if (LoopBlockSet.empty()) 1750693eedb1SChandler Carruth UnloopedBlocks.insert(PH); 1751693eedb1SChandler Carruth 1752693eedb1SChandler Carruth // Now erase these blocks from the loop. 1753693eedb1SChandler Carruth for (auto *BB : make_range(BlocksSplitI, Blocks.end())) 1754693eedb1SChandler Carruth L.getBlocksSet().erase(BB); 1755693eedb1SChandler Carruth Blocks.erase(BlocksSplitI, Blocks.end()); 1756693eedb1SChandler Carruth 1757693eedb1SChandler Carruth // Sort the exits in ascending loop depth, we'll work backwards across these 1758693eedb1SChandler Carruth // to process them inside out. 1759efd94c56SFangrui Song llvm::stable_sort(ExitsInLoops, [&](BasicBlock *LHS, BasicBlock *RHS) { 1760693eedb1SChandler Carruth return LI.getLoopDepth(LHS) < LI.getLoopDepth(RHS); 1761693eedb1SChandler Carruth }); 1762693eedb1SChandler Carruth 1763693eedb1SChandler Carruth // We'll build up a set for each exit loop. 1764693eedb1SChandler Carruth SmallPtrSet<BasicBlock *, 16> NewExitLoopBlocks; 1765693eedb1SChandler Carruth Loop *PrevExitL = L.getParentLoop(); // The deepest possible exit loop. 1766693eedb1SChandler Carruth 1767693eedb1SChandler Carruth auto RemoveUnloopedBlocksFromLoop = 1768693eedb1SChandler Carruth [](Loop &L, SmallPtrSetImpl<BasicBlock *> &UnloopedBlocks) { 1769693eedb1SChandler Carruth for (auto *BB : UnloopedBlocks) 1770693eedb1SChandler Carruth L.getBlocksSet().erase(BB); 1771693eedb1SChandler Carruth llvm::erase_if(L.getBlocksVector(), [&](BasicBlock *BB) { 1772693eedb1SChandler Carruth return UnloopedBlocks.count(BB); 1773693eedb1SChandler Carruth }); 1774693eedb1SChandler Carruth }; 1775693eedb1SChandler Carruth 1776693eedb1SChandler Carruth SmallVector<BasicBlock *, 16> Worklist; 1777693eedb1SChandler Carruth while (!UnloopedBlocks.empty() && !ExitsInLoops.empty()) { 1778693eedb1SChandler Carruth assert(Worklist.empty() && "Didn't clear worklist!"); 1779693eedb1SChandler Carruth assert(NewExitLoopBlocks.empty() && "Didn't clear loop set!"); 1780693eedb1SChandler Carruth 1781693eedb1SChandler Carruth // Grab the next exit block, in decreasing loop depth order. 1782693eedb1SChandler Carruth BasicBlock *ExitBB = ExitsInLoops.pop_back_val(); 1783693eedb1SChandler Carruth Loop &ExitL = *LI.getLoopFor(ExitBB); 1784693eedb1SChandler Carruth assert(ExitL.contains(&L) && "Exit loop must contain the inner loop!"); 1785693eedb1SChandler Carruth 1786693eedb1SChandler Carruth // Erase all of the unlooped blocks from the loops between the previous 1787693eedb1SChandler Carruth // exit loop and this exit loop. This works because the ExitInLoops list is 1788693eedb1SChandler Carruth // sorted in increasing order of loop depth and thus we visit loops in 1789693eedb1SChandler Carruth // decreasing order of loop depth. 1790693eedb1SChandler Carruth for (; PrevExitL != &ExitL; PrevExitL = PrevExitL->getParentLoop()) 1791693eedb1SChandler Carruth RemoveUnloopedBlocksFromLoop(*PrevExitL, UnloopedBlocks); 1792693eedb1SChandler Carruth 1793693eedb1SChandler Carruth // Walk the CFG back until we hit the cloned PH adding everything reachable 1794693eedb1SChandler Carruth // and in the unlooped set to this exit block's loop. 1795693eedb1SChandler Carruth Worklist.push_back(ExitBB); 1796693eedb1SChandler Carruth do { 1797693eedb1SChandler Carruth BasicBlock *BB = Worklist.pop_back_val(); 1798693eedb1SChandler Carruth // We can stop recursing at the cloned preheader (if we get there). 1799693eedb1SChandler Carruth if (BB == PH) 1800693eedb1SChandler Carruth continue; 1801693eedb1SChandler Carruth 1802693eedb1SChandler Carruth for (BasicBlock *PredBB : predecessors(BB)) { 1803693eedb1SChandler Carruth // If this pred has already been moved to our set or is part of some 1804693eedb1SChandler Carruth // (inner) loop, no update needed. 1805693eedb1SChandler Carruth if (!UnloopedBlocks.erase(PredBB)) { 1806693eedb1SChandler Carruth assert((NewExitLoopBlocks.count(PredBB) || 1807693eedb1SChandler Carruth ExitL.contains(LI.getLoopFor(PredBB))) && 1808693eedb1SChandler Carruth "Predecessor not in a nested loop (or already visited)!"); 1809693eedb1SChandler Carruth continue; 1810693eedb1SChandler Carruth } 1811693eedb1SChandler Carruth 1812693eedb1SChandler Carruth // We just insert into the loop set here. We'll add these blocks to the 1813693eedb1SChandler Carruth // exit loop after we build up the set in a deterministic order rather 1814693eedb1SChandler Carruth // than the predecessor-influenced visit order. 1815693eedb1SChandler Carruth bool Inserted = NewExitLoopBlocks.insert(PredBB).second; 1816693eedb1SChandler Carruth (void)Inserted; 1817693eedb1SChandler Carruth assert(Inserted && "Should only visit an unlooped block once!"); 1818693eedb1SChandler Carruth 1819693eedb1SChandler Carruth // And recurse through to its predecessors. 1820693eedb1SChandler Carruth Worklist.push_back(PredBB); 1821693eedb1SChandler Carruth } 1822693eedb1SChandler Carruth } while (!Worklist.empty()); 1823693eedb1SChandler Carruth 1824693eedb1SChandler Carruth // If blocks in this exit loop were directly part of the original loop (as 1825693eedb1SChandler Carruth // opposed to a child loop) update the map to point to this exit loop. This 1826693eedb1SChandler Carruth // just updates a map and so the fact that the order is unstable is fine. 1827693eedb1SChandler Carruth for (auto *BB : NewExitLoopBlocks) 1828693eedb1SChandler Carruth if (Loop *BBL = LI.getLoopFor(BB)) 1829693eedb1SChandler Carruth if (BBL == &L || !L.contains(BBL)) 1830693eedb1SChandler Carruth LI.changeLoopFor(BB, &ExitL); 1831693eedb1SChandler Carruth 1832693eedb1SChandler Carruth // We will remove the remaining unlooped blocks from this loop in the next 1833693eedb1SChandler Carruth // iteration or below. 1834693eedb1SChandler Carruth NewExitLoopBlocks.clear(); 1835693eedb1SChandler Carruth } 1836693eedb1SChandler Carruth 1837693eedb1SChandler Carruth // Any remaining unlooped blocks are no longer part of any loop unless they 1838693eedb1SChandler Carruth // are part of some child loop. 1839693eedb1SChandler Carruth for (; PrevExitL; PrevExitL = PrevExitL->getParentLoop()) 1840693eedb1SChandler Carruth RemoveUnloopedBlocksFromLoop(*PrevExitL, UnloopedBlocks); 1841693eedb1SChandler Carruth for (auto *BB : UnloopedBlocks) 1842693eedb1SChandler Carruth if (Loop *BBL = LI.getLoopFor(BB)) 1843693eedb1SChandler Carruth if (BBL == &L || !L.contains(BBL)) 1844693eedb1SChandler Carruth LI.changeLoopFor(BB, nullptr); 1845693eedb1SChandler Carruth 1846693eedb1SChandler Carruth // Sink all the child loops whose headers are no longer in the loop set to 1847693eedb1SChandler Carruth // the parent (or to be top level loops). We reach into the loop and directly 1848693eedb1SChandler Carruth // update its subloop vector to make this batch update efficient. 1849693eedb1SChandler Carruth auto &SubLoops = L.getSubLoopsVector(); 1850693eedb1SChandler Carruth auto SubLoopsSplitI = 1851693eedb1SChandler Carruth LoopBlockSet.empty() 1852693eedb1SChandler Carruth ? SubLoops.begin() 1853693eedb1SChandler Carruth : std::stable_partition( 1854693eedb1SChandler Carruth SubLoops.begin(), SubLoops.end(), [&](Loop *SubL) { 1855693eedb1SChandler Carruth return LoopBlockSet.count(SubL->getHeader()); 1856693eedb1SChandler Carruth }); 1857693eedb1SChandler Carruth for (auto *HoistedL : make_range(SubLoopsSplitI, SubLoops.end())) { 1858693eedb1SChandler Carruth HoistedLoops.push_back(HoistedL); 1859693eedb1SChandler Carruth HoistedL->setParentLoop(nullptr); 1860693eedb1SChandler Carruth 1861693eedb1SChandler Carruth // To compute the new parent of this hoisted loop we look at where we 1862693eedb1SChandler Carruth // placed the preheader above. We can't lookup the header itself because we 1863693eedb1SChandler Carruth // retained the mapping from the header to the hoisted loop. But the 1864693eedb1SChandler Carruth // preheader and header should have the exact same new parent computed 1865693eedb1SChandler Carruth // based on the set of exit blocks from the original loop as the preheader 1866693eedb1SChandler Carruth // is a predecessor of the header and so reached in the reverse walk. And 1867693eedb1SChandler Carruth // because the loops were all in simplified form the preheader of the 1868693eedb1SChandler Carruth // hoisted loop can't be part of some *other* loop. 1869693eedb1SChandler Carruth if (auto *NewParentL = LI.getLoopFor(HoistedL->getLoopPreheader())) 1870693eedb1SChandler Carruth NewParentL->addChildLoop(HoistedL); 1871693eedb1SChandler Carruth else 1872693eedb1SChandler Carruth LI.addTopLevelLoop(HoistedL); 1873693eedb1SChandler Carruth } 1874693eedb1SChandler Carruth SubLoops.erase(SubLoopsSplitI, SubLoops.end()); 1875693eedb1SChandler Carruth 1876693eedb1SChandler Carruth // Actually delete the loop if nothing remained within it. 1877693eedb1SChandler Carruth if (Blocks.empty()) { 1878693eedb1SChandler Carruth assert(SubLoops.empty() && 1879693eedb1SChandler Carruth "Failed to remove all subloops from the original loop!"); 1880693eedb1SChandler Carruth if (Loop *ParentL = L.getParentLoop()) 1881693eedb1SChandler Carruth ParentL->removeChildLoop(llvm::find(*ParentL, &L)); 1882693eedb1SChandler Carruth else 1883693eedb1SChandler Carruth LI.removeLoop(llvm::find(LI, &L)); 1884693eedb1SChandler Carruth LI.destroy(&L); 1885693eedb1SChandler Carruth return false; 1886693eedb1SChandler Carruth } 1887693eedb1SChandler Carruth 1888693eedb1SChandler Carruth return true; 1889693eedb1SChandler Carruth } 1890693eedb1SChandler Carruth 1891693eedb1SChandler Carruth /// Helper to visit a dominator subtree, invoking a callable on each node. 1892693eedb1SChandler Carruth /// 1893693eedb1SChandler Carruth /// Returning false at any point will stop walking past that node of the tree. 1894693eedb1SChandler Carruth template <typename CallableT> 1895693eedb1SChandler Carruth void visitDomSubTree(DominatorTree &DT, BasicBlock *BB, CallableT Callable) { 1896693eedb1SChandler Carruth SmallVector<DomTreeNode *, 4> DomWorklist; 1897693eedb1SChandler Carruth DomWorklist.push_back(DT[BB]); 1898693eedb1SChandler Carruth #ifndef NDEBUG 1899693eedb1SChandler Carruth SmallPtrSet<DomTreeNode *, 4> Visited; 1900693eedb1SChandler Carruth Visited.insert(DT[BB]); 1901693eedb1SChandler Carruth #endif 1902693eedb1SChandler Carruth do { 1903693eedb1SChandler Carruth DomTreeNode *N = DomWorklist.pop_back_val(); 1904693eedb1SChandler Carruth 1905693eedb1SChandler Carruth // Visit this node. 1906693eedb1SChandler Carruth if (!Callable(N->getBlock())) 1907693eedb1SChandler Carruth continue; 1908693eedb1SChandler Carruth 1909693eedb1SChandler Carruth // Accumulate the child nodes. 1910693eedb1SChandler Carruth for (DomTreeNode *ChildN : *N) { 1911693eedb1SChandler Carruth assert(Visited.insert(ChildN).second && 1912693eedb1SChandler Carruth "Cannot visit a node twice when walking a tree!"); 1913693eedb1SChandler Carruth DomWorklist.push_back(ChildN); 1914693eedb1SChandler Carruth } 1915693eedb1SChandler Carruth } while (!DomWorklist.empty()); 1916693eedb1SChandler Carruth } 1917693eedb1SChandler Carruth 1918bde31000SMax Kazantsev static void unswitchNontrivialInvariants( 191960b2e054SChandler Carruth Loop &L, Instruction &TI, ArrayRef<Value *> Invariants, 1920bde31000SMax Kazantsev SmallVectorImpl<BasicBlock *> &ExitBlocks, DominatorTree &DT, LoopInfo &LI, 1921bde31000SMax Kazantsev AssumptionCache &AC, function_ref<void(bool, ArrayRef<Loop *>)> UnswitchCB, 1922a2eebb82SAlina Sbirlea ScalarEvolution *SE, MemorySSAUpdater *MSSAU) { 19231652996fSChandler Carruth auto *ParentBB = TI.getParent(); 19241652996fSChandler Carruth BranchInst *BI = dyn_cast<BranchInst>(&TI); 19251652996fSChandler Carruth SwitchInst *SI = BI ? nullptr : cast<SwitchInst>(&TI); 1926d1dab0c3SChandler Carruth 19271652996fSChandler Carruth // We can only unswitch switches, conditional branches with an invariant 19281652996fSChandler Carruth // condition, or combining invariant conditions with an instruction. 1929c598ef7fSSimon Pilgrim assert((SI || (BI && BI->isConditional())) && 19301652996fSChandler Carruth "Can only unswitch switches and conditional branch!"); 19311652996fSChandler Carruth bool FullUnswitch = SI || BI->getCondition() == Invariants[0]; 1932d1dab0c3SChandler Carruth if (FullUnswitch) 1933d1dab0c3SChandler Carruth assert(Invariants.size() == 1 && 1934d1dab0c3SChandler Carruth "Cannot have other invariants with full unswitching!"); 1935d1dab0c3SChandler Carruth else 19361652996fSChandler Carruth assert(isa<Instruction>(BI->getCondition()) && 1937d1dab0c3SChandler Carruth "Partial unswitching requires an instruction as the condition!"); 1938d1dab0c3SChandler Carruth 1939a2eebb82SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 1940a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 1941a2eebb82SAlina Sbirlea 1942d1dab0c3SChandler Carruth // Constant and BBs tracking the cloned and continuing successor. When we are 1943d1dab0c3SChandler Carruth // unswitching the entire condition, this can just be trivially chosen to 1944d1dab0c3SChandler Carruth // unswitch towards `true`. However, when we are unswitching a set of 1945d1dab0c3SChandler Carruth // invariants combined with `and` or `or`, the combining operation determines 1946d1dab0c3SChandler Carruth // the best direction to unswitch: we want to unswitch the direction that will 1947d1dab0c3SChandler Carruth // collapse the branch. 1948d1dab0c3SChandler Carruth bool Direction = true; 1949d1dab0c3SChandler Carruth int ClonedSucc = 0; 1950d1dab0c3SChandler Carruth if (!FullUnswitch) { 19511652996fSChandler Carruth if (cast<Instruction>(BI->getCondition())->getOpcode() != Instruction::Or) { 19521652996fSChandler Carruth assert(cast<Instruction>(BI->getCondition())->getOpcode() == 19531652996fSChandler Carruth Instruction::And && 19541652996fSChandler Carruth "Only `or` and `and` instructions can combine invariants being " 19551652996fSChandler Carruth "unswitched."); 1956d1dab0c3SChandler Carruth Direction = false; 1957d1dab0c3SChandler Carruth ClonedSucc = 1; 1958d1dab0c3SChandler Carruth } 1959d1dab0c3SChandler Carruth } 1960693eedb1SChandler Carruth 19611652996fSChandler Carruth BasicBlock *RetainedSuccBB = 19621652996fSChandler Carruth BI ? BI->getSuccessor(1 - ClonedSucc) : SI->getDefaultDest(); 19631652996fSChandler Carruth SmallSetVector<BasicBlock *, 4> UnswitchedSuccBBs; 19641652996fSChandler Carruth if (BI) 19651652996fSChandler Carruth UnswitchedSuccBBs.insert(BI->getSuccessor(ClonedSucc)); 19661652996fSChandler Carruth else 19671652996fSChandler Carruth for (auto Case : SI->cases()) 1968ed296543SChandler Carruth if (Case.getCaseSuccessor() != RetainedSuccBB) 19691652996fSChandler Carruth UnswitchedSuccBBs.insert(Case.getCaseSuccessor()); 19701652996fSChandler Carruth 19711652996fSChandler Carruth assert(!UnswitchedSuccBBs.count(RetainedSuccBB) && 19721652996fSChandler Carruth "Should not unswitch the same successor we are retaining!"); 1973693eedb1SChandler Carruth 1974693eedb1SChandler Carruth // The branch should be in this exact loop. Any inner loop's invariant branch 1975693eedb1SChandler Carruth // should be handled by unswitching that inner loop. The caller of this 1976693eedb1SChandler Carruth // routine should filter out any candidates that remain (but were skipped for 1977693eedb1SChandler Carruth // whatever reason). 1978693eedb1SChandler Carruth assert(LI.getLoopFor(ParentBB) == &L && "Branch in an inner loop!"); 1979693eedb1SChandler Carruth 1980693eedb1SChandler Carruth // Compute the parent loop now before we start hacking on things. 1981693eedb1SChandler Carruth Loop *ParentL = L.getParentLoop(); 1982a2eebb82SAlina Sbirlea // Get blocks in RPO order for MSSA update, before changing the CFG. 1983a2eebb82SAlina Sbirlea LoopBlocksRPO LBRPO(&L); 1984a2eebb82SAlina Sbirlea if (MSSAU) 1985a2eebb82SAlina Sbirlea LBRPO.perform(&LI); 1986693eedb1SChandler Carruth 1987693eedb1SChandler Carruth // Compute the outer-most loop containing one of our exit blocks. This is the 1988693eedb1SChandler Carruth // furthest up our loopnest which can be mutated, which we will use below to 1989693eedb1SChandler Carruth // update things. 1990693eedb1SChandler Carruth Loop *OuterExitL = &L; 1991693eedb1SChandler Carruth for (auto *ExitBB : ExitBlocks) { 1992693eedb1SChandler Carruth Loop *NewOuterExitL = LI.getLoopFor(ExitBB); 1993693eedb1SChandler Carruth if (!NewOuterExitL) { 1994693eedb1SChandler Carruth // We exited the entire nest with this block, so we're done. 1995693eedb1SChandler Carruth OuterExitL = nullptr; 1996693eedb1SChandler Carruth break; 1997693eedb1SChandler Carruth } 1998693eedb1SChandler Carruth if (NewOuterExitL != OuterExitL && NewOuterExitL->contains(OuterExitL)) 1999693eedb1SChandler Carruth OuterExitL = NewOuterExitL; 2000693eedb1SChandler Carruth } 2001693eedb1SChandler Carruth 20023897ded6SChandler Carruth // At this point, we're definitely going to unswitch something so invalidate 20033897ded6SChandler Carruth // any cached information in ScalarEvolution for the outer most loop 20043897ded6SChandler Carruth // containing an exit block and all nested loops. 20053897ded6SChandler Carruth if (SE) { 20063897ded6SChandler Carruth if (OuterExitL) 20073897ded6SChandler Carruth SE->forgetLoop(OuterExitL); 20083897ded6SChandler Carruth else 20093897ded6SChandler Carruth SE->forgetTopmostLoop(&L); 20103897ded6SChandler Carruth } 20113897ded6SChandler Carruth 20121652996fSChandler Carruth // If the edge from this terminator to a successor dominates that successor, 20131652996fSChandler Carruth // store a map from each block in its dominator subtree to it. This lets us 20141652996fSChandler Carruth // tell when cloning for a particular successor if a block is dominated by 20151652996fSChandler Carruth // some *other* successor with a single data structure. We use this to 20161652996fSChandler Carruth // significantly reduce cloning. 20171652996fSChandler Carruth SmallDenseMap<BasicBlock *, BasicBlock *, 16> DominatingSucc; 20181652996fSChandler Carruth for (auto *SuccBB : llvm::concat<BasicBlock *const>( 20191652996fSChandler Carruth makeArrayRef(RetainedSuccBB), UnswitchedSuccBBs)) 20201652996fSChandler Carruth if (SuccBB->getUniquePredecessor() || 20211652996fSChandler Carruth llvm::all_of(predecessors(SuccBB), [&](BasicBlock *PredBB) { 20221652996fSChandler Carruth return PredBB == ParentBB || DT.dominates(SuccBB, PredBB); 20231652996fSChandler Carruth })) 20241652996fSChandler Carruth visitDomSubTree(DT, SuccBB, [&](BasicBlock *BB) { 20251652996fSChandler Carruth DominatingSucc[BB] = SuccBB; 2026693eedb1SChandler Carruth return true; 2027693eedb1SChandler Carruth }); 2028693eedb1SChandler Carruth 2029693eedb1SChandler Carruth // Split the preheader, so that we know that there is a safe place to insert 2030693eedb1SChandler Carruth // the conditional branch. We will change the preheader to have a conditional 2031693eedb1SChandler Carruth // branch on LoopCond. The original preheader will become the split point 2032693eedb1SChandler Carruth // between the unswitched versions, and we will have a new preheader for the 2033693eedb1SChandler Carruth // original loop. 2034693eedb1SChandler Carruth BasicBlock *SplitBB = L.getLoopPreheader(); 2035a2eebb82SAlina Sbirlea BasicBlock *LoopPH = SplitEdge(SplitBB, L.getHeader(), &DT, &LI, MSSAU); 2036693eedb1SChandler Carruth 203769e68f84SChandler Carruth // Keep track of the dominator tree updates needed. 203869e68f84SChandler Carruth SmallVector<DominatorTree::UpdateType, 4> DTUpdates; 203969e68f84SChandler Carruth 20401652996fSChandler Carruth // Clone the loop for each unswitched successor. 20411652996fSChandler Carruth SmallVector<std::unique_ptr<ValueToValueMapTy>, 4> VMaps; 20421652996fSChandler Carruth VMaps.reserve(UnswitchedSuccBBs.size()); 20431652996fSChandler Carruth SmallDenseMap<BasicBlock *, BasicBlock *, 4> ClonedPHs; 20441652996fSChandler Carruth for (auto *SuccBB : UnswitchedSuccBBs) { 20451652996fSChandler Carruth VMaps.emplace_back(new ValueToValueMapTy()); 20461652996fSChandler Carruth ClonedPHs[SuccBB] = buildClonedLoopBlocks( 20471652996fSChandler Carruth L, LoopPH, SplitBB, ExitBlocks, ParentBB, SuccBB, RetainedSuccBB, 2048a2eebb82SAlina Sbirlea DominatingSucc, *VMaps.back(), DTUpdates, AC, DT, LI, MSSAU); 20491652996fSChandler Carruth } 2050693eedb1SChandler Carruth 2051d1dab0c3SChandler Carruth // The stitching of the branched code back together depends on whether we're 2052d1dab0c3SChandler Carruth // doing full unswitching or not with the exception that we always want to 2053d1dab0c3SChandler Carruth // nuke the initial terminator placed in the split block. 2054d1dab0c3SChandler Carruth SplitBB->getTerminator()->eraseFromParent(); 2055d1dab0c3SChandler Carruth if (FullUnswitch) { 2056a2eebb82SAlina Sbirlea // Splice the terminator from the original loop and rewrite its 2057a2eebb82SAlina Sbirlea // successors. 2058a2eebb82SAlina Sbirlea SplitBB->getInstList().splice(SplitBB->end(), ParentBB->getInstList(), TI); 2059a2eebb82SAlina Sbirlea 2060a2eebb82SAlina Sbirlea // Keep a clone of the terminator for MSSA updates. 2061a2eebb82SAlina Sbirlea Instruction *NewTI = TI.clone(); 2062a2eebb82SAlina Sbirlea ParentBB->getInstList().push_back(NewTI); 2063a2eebb82SAlina Sbirlea 2064a2eebb82SAlina Sbirlea // First wire up the moved terminator to the preheaders. 2065a2eebb82SAlina Sbirlea if (BI) { 2066a2eebb82SAlina Sbirlea BasicBlock *ClonedPH = ClonedPHs.begin()->second; 2067a2eebb82SAlina Sbirlea BI->setSuccessor(ClonedSucc, ClonedPH); 2068a2eebb82SAlina Sbirlea BI->setSuccessor(1 - ClonedSucc, LoopPH); 2069a2eebb82SAlina Sbirlea DTUpdates.push_back({DominatorTree::Insert, SplitBB, ClonedPH}); 2070a2eebb82SAlina Sbirlea } else { 2071a2eebb82SAlina Sbirlea assert(SI && "Must either be a branch or switch!"); 2072a2eebb82SAlina Sbirlea 2073a2eebb82SAlina Sbirlea // Walk the cases and directly update their successors. 2074a2eebb82SAlina Sbirlea assert(SI->getDefaultDest() == RetainedSuccBB && 2075a2eebb82SAlina Sbirlea "Not retaining default successor!"); 2076a2eebb82SAlina Sbirlea SI->setDefaultDest(LoopPH); 2077a2eebb82SAlina Sbirlea for (auto &Case : SI->cases()) 2078a2eebb82SAlina Sbirlea if (Case.getCaseSuccessor() == RetainedSuccBB) 2079a2eebb82SAlina Sbirlea Case.setSuccessor(LoopPH); 2080a2eebb82SAlina Sbirlea else 2081a2eebb82SAlina Sbirlea Case.setSuccessor(ClonedPHs.find(Case.getCaseSuccessor())->second); 2082a2eebb82SAlina Sbirlea 2083a2eebb82SAlina Sbirlea // We need to use the set to populate domtree updates as even when there 2084a2eebb82SAlina Sbirlea // are multiple cases pointing at the same successor we only want to 2085a2eebb82SAlina Sbirlea // remove and insert one edge in the domtree. 2086a2eebb82SAlina Sbirlea for (BasicBlock *SuccBB : UnswitchedSuccBBs) 2087a2eebb82SAlina Sbirlea DTUpdates.push_back( 2088a2eebb82SAlina Sbirlea {DominatorTree::Insert, SplitBB, ClonedPHs.find(SuccBB)->second}); 2089a2eebb82SAlina Sbirlea } 2090a2eebb82SAlina Sbirlea 2091a2eebb82SAlina Sbirlea if (MSSAU) { 2092a2eebb82SAlina Sbirlea DT.applyUpdates(DTUpdates); 2093a2eebb82SAlina Sbirlea DTUpdates.clear(); 2094a2eebb82SAlina Sbirlea 2095a2eebb82SAlina Sbirlea // Remove all but one edge to the retained block and all unswitched 2096a2eebb82SAlina Sbirlea // blocks. This is to avoid having duplicate entries in the cloned Phis, 2097a2eebb82SAlina Sbirlea // when we know we only keep a single edge for each case. 2098a2eebb82SAlina Sbirlea MSSAU->removeDuplicatePhiEdgesBetween(ParentBB, RetainedSuccBB); 2099a2eebb82SAlina Sbirlea for (BasicBlock *SuccBB : UnswitchedSuccBBs) 2100a2eebb82SAlina Sbirlea MSSAU->removeDuplicatePhiEdgesBetween(ParentBB, SuccBB); 2101a2eebb82SAlina Sbirlea 2102a2eebb82SAlina Sbirlea for (auto &VMap : VMaps) 2103a2eebb82SAlina Sbirlea MSSAU->updateForClonedLoop(LBRPO, ExitBlocks, *VMap, 2104a2eebb82SAlina Sbirlea /*IgnoreIncomingWithNoClones=*/true); 2105a2eebb82SAlina Sbirlea MSSAU->updateExitBlocksForClonedLoop(ExitBlocks, VMaps, DT); 2106a2eebb82SAlina Sbirlea 2107a2eebb82SAlina Sbirlea // Remove all edges to unswitched blocks. 2108a2eebb82SAlina Sbirlea for (BasicBlock *SuccBB : UnswitchedSuccBBs) 2109a2eebb82SAlina Sbirlea MSSAU->removeEdge(ParentBB, SuccBB); 2110a2eebb82SAlina Sbirlea } 2111a2eebb82SAlina Sbirlea 2112a2eebb82SAlina Sbirlea // Now unhook the successor relationship as we'll be replacing 2113ed296543SChandler Carruth // the terminator with a direct branch. This is much simpler for branches 2114ed296543SChandler Carruth // than switches so we handle those first. 2115ed296543SChandler Carruth if (BI) { 21161652996fSChandler Carruth // Remove the parent as a predecessor of the unswitched successor. 2117ed296543SChandler Carruth assert(UnswitchedSuccBBs.size() == 1 && 2118ed296543SChandler Carruth "Only one possible unswitched block for a branch!"); 2119ed296543SChandler Carruth BasicBlock *UnswitchedSuccBB = *UnswitchedSuccBBs.begin(); 2120ed296543SChandler Carruth UnswitchedSuccBB->removePredecessor(ParentBB, 212120b91899SMax Kazantsev /*KeepOneInputPHIs*/ true); 2122ed296543SChandler Carruth DTUpdates.push_back({DominatorTree::Delete, ParentBB, UnswitchedSuccBB}); 2123ed296543SChandler Carruth } else { 2124ed296543SChandler Carruth // Note that we actually want to remove the parent block as a predecessor 2125ed296543SChandler Carruth // of *every* case successor. The case successor is either unswitched, 2126ed296543SChandler Carruth // completely eliminating an edge from the parent to that successor, or it 2127ed296543SChandler Carruth // is a duplicate edge to the retained successor as the retained successor 2128ed296543SChandler Carruth // is always the default successor and as we'll replace this with a direct 2129ed296543SChandler Carruth // branch we no longer need the duplicate entries in the PHI nodes. 2130a2eebb82SAlina Sbirlea SwitchInst *NewSI = cast<SwitchInst>(NewTI); 2131a2eebb82SAlina Sbirlea assert(NewSI->getDefaultDest() == RetainedSuccBB && 2132ed296543SChandler Carruth "Not retaining default successor!"); 2133a2eebb82SAlina Sbirlea for (auto &Case : NewSI->cases()) 2134ed296543SChandler Carruth Case.getCaseSuccessor()->removePredecessor( 2135ed296543SChandler Carruth ParentBB, 213620b91899SMax Kazantsev /*KeepOneInputPHIs*/ true); 2137ed296543SChandler Carruth 2138ed296543SChandler Carruth // We need to use the set to populate domtree updates as even when there 2139ed296543SChandler Carruth // are multiple cases pointing at the same successor we only want to 2140ed296543SChandler Carruth // remove and insert one edge in the domtree. 2141ed296543SChandler Carruth for (BasicBlock *SuccBB : UnswitchedSuccBBs) 21421652996fSChandler Carruth DTUpdates.push_back({DominatorTree::Delete, ParentBB, SuccBB}); 21431652996fSChandler Carruth } 2144693eedb1SChandler Carruth 2145a2eebb82SAlina Sbirlea // After MSSAU update, remove the cloned terminator instruction NewTI. 2146a2eebb82SAlina Sbirlea ParentBB->getTerminator()->eraseFromParent(); 2147693eedb1SChandler Carruth 2148693eedb1SChandler Carruth // Create a new unconditional branch to the continuing block (as opposed to 2149693eedb1SChandler Carruth // the one cloned). 21501652996fSChandler Carruth BranchInst::Create(RetainedSuccBB, ParentBB); 2151d1dab0c3SChandler Carruth } else { 21521652996fSChandler Carruth assert(BI && "Only branches have partial unswitching."); 21531652996fSChandler Carruth assert(UnswitchedSuccBBs.size() == 1 && 21541652996fSChandler Carruth "Only one possible unswitched block for a branch!"); 21551652996fSChandler Carruth BasicBlock *ClonedPH = ClonedPHs.begin()->second; 2156d1dab0c3SChandler Carruth // When doing a partial unswitch, we have to do a bit more work to build up 2157d1dab0c3SChandler Carruth // the branch in the split block. 2158d1dab0c3SChandler Carruth buildPartialUnswitchConditionalBranch(*SplitBB, Invariants, Direction, 21592b5a8976SJuneyoung Lee *ClonedPH, *LoopPH); 216035c8af18SAlina Sbirlea DTUpdates.push_back({DominatorTree::Insert, SplitBB, ClonedPH}); 216135c8af18SAlina Sbirlea 2162b7a33530SAlina Sbirlea if (MSSAU) { 216335c8af18SAlina Sbirlea DT.applyUpdates(DTUpdates); 216435c8af18SAlina Sbirlea DTUpdates.clear(); 216535c8af18SAlina Sbirlea 2166b7a33530SAlina Sbirlea // Perform MSSA cloning updates. 2167b7a33530SAlina Sbirlea for (auto &VMap : VMaps) 2168b7a33530SAlina Sbirlea MSSAU->updateForClonedLoop(LBRPO, ExitBlocks, *VMap, 2169b7a33530SAlina Sbirlea /*IgnoreIncomingWithNoClones=*/true); 2170b7a33530SAlina Sbirlea MSSAU->updateExitBlocksForClonedLoop(ExitBlocks, VMaps, DT); 2171b7a33530SAlina Sbirlea } 21721652996fSChandler Carruth } 21731652996fSChandler Carruth 21741652996fSChandler Carruth // Apply the updates accumulated above to get an up-to-date dominator tree. 217569e68f84SChandler Carruth DT.applyUpdates(DTUpdates); 217669e68f84SChandler Carruth 21771652996fSChandler Carruth // Now that we have an accurate dominator tree, first delete the dead cloned 21781652996fSChandler Carruth // blocks so that we can accurately build any cloned loops. It is important to 21791652996fSChandler Carruth // not delete the blocks from the original loop yet because we still want to 21801652996fSChandler Carruth // reference the original loop to understand the cloned loop's structure. 2181a2eebb82SAlina Sbirlea deleteDeadClonedBlocks(L, ExitBlocks, VMaps, DT, MSSAU); 21821652996fSChandler Carruth 218369e68f84SChandler Carruth // Build the cloned loop structure itself. This may be substantially 218469e68f84SChandler Carruth // different from the original structure due to the simplified CFG. This also 218569e68f84SChandler Carruth // handles inserting all the cloned blocks into the correct loops. 218669e68f84SChandler Carruth SmallVector<Loop *, 4> NonChildClonedLoops; 21871652996fSChandler Carruth for (std::unique_ptr<ValueToValueMapTy> &VMap : VMaps) 21881652996fSChandler Carruth buildClonedLoops(L, ExitBlocks, *VMap, LI, NonChildClonedLoops); 218969e68f84SChandler Carruth 21901652996fSChandler Carruth // Now that our cloned loops have been built, we can update the original loop. 21911652996fSChandler Carruth // First we delete the dead blocks from it and then we rebuild the loop 21921652996fSChandler Carruth // structure taking these deletions into account. 2193a2eebb82SAlina Sbirlea deleteDeadBlocksFromLoop(L, ExitBlocks, DT, LI, MSSAU); 2194a2eebb82SAlina Sbirlea 2195a2eebb82SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 2196a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 2197a2eebb82SAlina Sbirlea 2198693eedb1SChandler Carruth SmallVector<Loop *, 4> HoistedLoops; 2199693eedb1SChandler Carruth bool IsStillLoop = rebuildLoopAfterUnswitch(L, ExitBlocks, LI, HoistedLoops); 2200693eedb1SChandler Carruth 2201a2eebb82SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 2202a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 2203a2eebb82SAlina Sbirlea 220469e68f84SChandler Carruth // This transformation has a high risk of corrupting the dominator tree, and 220569e68f84SChandler Carruth // the below steps to rebuild loop structures will result in hard to debug 220669e68f84SChandler Carruth // errors in that case so verify that the dominator tree is sane first. 220769e68f84SChandler Carruth // FIXME: Remove this when the bugs stop showing up and rely on existing 220869e68f84SChandler Carruth // verification steps. 220969e68f84SChandler Carruth assert(DT.verify(DominatorTree::VerificationLevel::Fast)); 2210693eedb1SChandler Carruth 22111652996fSChandler Carruth if (BI) { 22121652996fSChandler Carruth // If we unswitched a branch which collapses the condition to a known 22131652996fSChandler Carruth // constant we want to replace all the uses of the invariants within both 22141652996fSChandler Carruth // the original and cloned blocks. We do this here so that we can use the 22151652996fSChandler Carruth // now updated dominator tree to identify which side the users are on. 22161652996fSChandler Carruth assert(UnswitchedSuccBBs.size() == 1 && 22171652996fSChandler Carruth "Only one possible unswitched block for a branch!"); 22181652996fSChandler Carruth BasicBlock *ClonedPH = ClonedPHs.begin()->second; 2219f9a02a70SFedor Sergeev 2220f9a02a70SFedor Sergeev // When considering multiple partially-unswitched invariants 2221f9a02a70SFedor Sergeev // we cant just go replace them with constants in both branches. 2222f9a02a70SFedor Sergeev // 2223f9a02a70SFedor Sergeev // For 'AND' we infer that true branch ("continue") means true 2224f9a02a70SFedor Sergeev // for each invariant operand. 2225f9a02a70SFedor Sergeev // For 'OR' we can infer that false branch ("continue") means false 2226f9a02a70SFedor Sergeev // for each invariant operand. 2227f9a02a70SFedor Sergeev // So it happens that for multiple-partial case we dont replace 2228f9a02a70SFedor Sergeev // in the unswitched branch. 2229f9a02a70SFedor Sergeev bool ReplaceUnswitched = FullUnswitch || (Invariants.size() == 1); 2230f9a02a70SFedor Sergeev 2231d1dab0c3SChandler Carruth ConstantInt *UnswitchedReplacement = 22321652996fSChandler Carruth Direction ? ConstantInt::getTrue(BI->getContext()) 22331652996fSChandler Carruth : ConstantInt::getFalse(BI->getContext()); 2234d1dab0c3SChandler Carruth ConstantInt *ContinueReplacement = 22351652996fSChandler Carruth Direction ? ConstantInt::getFalse(BI->getContext()) 22361652996fSChandler Carruth : ConstantInt::getTrue(BI->getContext()); 2237d1dab0c3SChandler Carruth for (Value *Invariant : Invariants) 2238d1dab0c3SChandler Carruth for (auto UI = Invariant->use_begin(), UE = Invariant->use_end(); 2239d1dab0c3SChandler Carruth UI != UE;) { 2240d1dab0c3SChandler Carruth // Grab the use and walk past it so we can clobber it in the use list. 2241d1dab0c3SChandler Carruth Use *U = &*UI++; 2242d1dab0c3SChandler Carruth Instruction *UserI = dyn_cast<Instruction>(U->getUser()); 2243d1dab0c3SChandler Carruth if (!UserI) 2244d1dab0c3SChandler Carruth continue; 2245d1dab0c3SChandler Carruth 2246d1dab0c3SChandler Carruth // Replace it with the 'continue' side if in the main loop body, and the 2247d1dab0c3SChandler Carruth // unswitched if in the cloned blocks. 2248d1dab0c3SChandler Carruth if (DT.dominates(LoopPH, UserI->getParent())) 2249d1dab0c3SChandler Carruth U->set(ContinueReplacement); 2250f9a02a70SFedor Sergeev else if (ReplaceUnswitched && 2251f9a02a70SFedor Sergeev DT.dominates(ClonedPH, UserI->getParent())) 2252d1dab0c3SChandler Carruth U->set(UnswitchedReplacement); 2253d1dab0c3SChandler Carruth } 22541652996fSChandler Carruth } 2255d1dab0c3SChandler Carruth 2256693eedb1SChandler Carruth // We can change which blocks are exit blocks of all the cloned sibling 2257693eedb1SChandler Carruth // loops, the current loop, and any parent loops which shared exit blocks 2258693eedb1SChandler Carruth // with the current loop. As a consequence, we need to re-form LCSSA for 2259693eedb1SChandler Carruth // them. But we shouldn't need to re-form LCSSA for any child loops. 2260693eedb1SChandler Carruth // FIXME: This could be made more efficient by tracking which exit blocks are 2261693eedb1SChandler Carruth // new, and focusing on them, but that isn't likely to be necessary. 2262693eedb1SChandler Carruth // 2263693eedb1SChandler Carruth // In order to reasonably rebuild LCSSA we need to walk inside-out across the 2264693eedb1SChandler Carruth // loop nest and update every loop that could have had its exits changed. We 2265693eedb1SChandler Carruth // also need to cover any intervening loops. We add all of these loops to 2266693eedb1SChandler Carruth // a list and sort them by loop depth to achieve this without updating 2267693eedb1SChandler Carruth // unnecessary loops. 22689281503eSChandler Carruth auto UpdateLoop = [&](Loop &UpdateL) { 2269693eedb1SChandler Carruth #ifndef NDEBUG 227043acdb35SChandler Carruth UpdateL.verifyLoop(); 227143acdb35SChandler Carruth for (Loop *ChildL : UpdateL) { 227243acdb35SChandler Carruth ChildL->verifyLoop(); 2273693eedb1SChandler Carruth assert(ChildL->isRecursivelyLCSSAForm(DT, LI) && 2274693eedb1SChandler Carruth "Perturbed a child loop's LCSSA form!"); 227543acdb35SChandler Carruth } 2276693eedb1SChandler Carruth #endif 2277693eedb1SChandler Carruth // First build LCSSA for this loop so that we can preserve it when 2278693eedb1SChandler Carruth // forming dedicated exits. We don't want to perturb some other loop's 2279693eedb1SChandler Carruth // LCSSA while doing that CFG edit. 2280c4d8c631SDaniil Suchkov formLCSSA(UpdateL, DT, &LI, SE); 2281693eedb1SChandler Carruth 2282693eedb1SChandler Carruth // For loops reached by this loop's original exit blocks we may 2283693eedb1SChandler Carruth // introduced new, non-dedicated exits. At least try to re-form dedicated 2284693eedb1SChandler Carruth // exits for these loops. This may fail if they couldn't have dedicated 2285693eedb1SChandler Carruth // exits to start with. 228697468e92SAlina Sbirlea formDedicatedExitBlocks(&UpdateL, &DT, &LI, MSSAU, /*PreserveLCSSA*/ true); 22879281503eSChandler Carruth }; 22889281503eSChandler Carruth 22899281503eSChandler Carruth // For non-child cloned loops and hoisted loops, we just need to update LCSSA 22909281503eSChandler Carruth // and we can do it in any order as they don't nest relative to each other. 22919281503eSChandler Carruth // 22929281503eSChandler Carruth // Also check if any of the loops we have updated have become top-level loops 22939281503eSChandler Carruth // as that will necessitate widening the outer loop scope. 22949281503eSChandler Carruth for (Loop *UpdatedL : 22959281503eSChandler Carruth llvm::concat<Loop *>(NonChildClonedLoops, HoistedLoops)) { 22969281503eSChandler Carruth UpdateLoop(*UpdatedL); 22979281503eSChandler Carruth if (!UpdatedL->getParentLoop()) 22989281503eSChandler Carruth OuterExitL = nullptr; 2299693eedb1SChandler Carruth } 23009281503eSChandler Carruth if (IsStillLoop) { 23019281503eSChandler Carruth UpdateLoop(L); 23029281503eSChandler Carruth if (!L.getParentLoop()) 23039281503eSChandler Carruth OuterExitL = nullptr; 2304693eedb1SChandler Carruth } 2305693eedb1SChandler Carruth 23069281503eSChandler Carruth // If the original loop had exit blocks, walk up through the outer most loop 23079281503eSChandler Carruth // of those exit blocks to update LCSSA and form updated dedicated exits. 23089281503eSChandler Carruth if (OuterExitL != &L) 23099281503eSChandler Carruth for (Loop *OuterL = ParentL; OuterL != OuterExitL; 23109281503eSChandler Carruth OuterL = OuterL->getParentLoop()) 23119281503eSChandler Carruth UpdateLoop(*OuterL); 23129281503eSChandler Carruth 2313693eedb1SChandler Carruth #ifndef NDEBUG 2314693eedb1SChandler Carruth // Verify the entire loop structure to catch any incorrect updates before we 2315693eedb1SChandler Carruth // progress in the pass pipeline. 2316693eedb1SChandler Carruth LI.verify(DT); 2317693eedb1SChandler Carruth #endif 2318693eedb1SChandler Carruth 2319693eedb1SChandler Carruth // Now that we've unswitched something, make callbacks to report the changes. 2320693eedb1SChandler Carruth // For that we need to merge together the updated loops and the cloned loops 2321693eedb1SChandler Carruth // and check whether the original loop survived. 2322693eedb1SChandler Carruth SmallVector<Loop *, 4> SibLoops; 2323693eedb1SChandler Carruth for (Loop *UpdatedL : llvm::concat<Loop *>(NonChildClonedLoops, HoistedLoops)) 2324693eedb1SChandler Carruth if (UpdatedL->getParentLoop() == ParentL) 2325693eedb1SChandler Carruth SibLoops.push_back(UpdatedL); 232671fd2704SChandler Carruth UnswitchCB(IsStillLoop, SibLoops); 2327693eedb1SChandler Carruth 2328a2eebb82SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 2329a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 2330a2eebb82SAlina Sbirlea 2331b7dff9c9SZaara Syeda if (BI) 2332693eedb1SChandler Carruth ++NumBranches; 2333b7dff9c9SZaara Syeda else 2334b7dff9c9SZaara Syeda ++NumSwitches; 2335693eedb1SChandler Carruth } 2336693eedb1SChandler Carruth 2337693eedb1SChandler Carruth /// Recursively compute the cost of a dominator subtree based on the per-block 2338693eedb1SChandler Carruth /// cost map provided. 2339693eedb1SChandler Carruth /// 2340693eedb1SChandler Carruth /// The recursive computation is memozied into the provided DT-indexed cost map 2341693eedb1SChandler Carruth /// to allow querying it for most nodes in the domtree without it becoming 2342693eedb1SChandler Carruth /// quadratic. 2343693eedb1SChandler Carruth static int 2344693eedb1SChandler Carruth computeDomSubtreeCost(DomTreeNode &N, 2345693eedb1SChandler Carruth const SmallDenseMap<BasicBlock *, int, 4> &BBCostMap, 2346693eedb1SChandler Carruth SmallDenseMap<DomTreeNode *, int, 4> &DTCostMap) { 2347693eedb1SChandler Carruth // Don't accumulate cost (or recurse through) blocks not in our block cost 2348693eedb1SChandler Carruth // map and thus not part of the duplication cost being considered. 2349693eedb1SChandler Carruth auto BBCostIt = BBCostMap.find(N.getBlock()); 2350693eedb1SChandler Carruth if (BBCostIt == BBCostMap.end()) 2351693eedb1SChandler Carruth return 0; 2352693eedb1SChandler Carruth 2353693eedb1SChandler Carruth // Lookup this node to see if we already computed its cost. 2354693eedb1SChandler Carruth auto DTCostIt = DTCostMap.find(&N); 2355693eedb1SChandler Carruth if (DTCostIt != DTCostMap.end()) 2356693eedb1SChandler Carruth return DTCostIt->second; 2357693eedb1SChandler Carruth 2358693eedb1SChandler Carruth // If not, we have to compute it. We can't use insert above and update 2359693eedb1SChandler Carruth // because computing the cost may insert more things into the map. 2360693eedb1SChandler Carruth int Cost = std::accumulate( 2361693eedb1SChandler Carruth N.begin(), N.end(), BBCostIt->second, [&](int Sum, DomTreeNode *ChildN) { 2362693eedb1SChandler Carruth return Sum + computeDomSubtreeCost(*ChildN, BBCostMap, DTCostMap); 2363693eedb1SChandler Carruth }); 2364693eedb1SChandler Carruth bool Inserted = DTCostMap.insert({&N, Cost}).second; 2365693eedb1SChandler Carruth (void)Inserted; 2366693eedb1SChandler Carruth assert(Inserted && "Should not insert a node while visiting children!"); 2367693eedb1SChandler Carruth return Cost; 2368693eedb1SChandler Carruth } 2369693eedb1SChandler Carruth 2370619a8346SMax Kazantsev /// Turns a llvm.experimental.guard intrinsic into implicit control flow branch, 2371619a8346SMax Kazantsev /// making the following replacement: 2372619a8346SMax Kazantsev /// 2373a132016dSSimon Pilgrim /// --code before guard-- 2374619a8346SMax Kazantsev /// call void (i1, ...) @llvm.experimental.guard(i1 %cond) [ "deopt"() ] 2375a132016dSSimon Pilgrim /// --code after guard-- 2376619a8346SMax Kazantsev /// 2377619a8346SMax Kazantsev /// into 2378619a8346SMax Kazantsev /// 2379a132016dSSimon Pilgrim /// --code before guard-- 2380619a8346SMax Kazantsev /// br i1 %cond, label %guarded, label %deopt 2381619a8346SMax Kazantsev /// 2382619a8346SMax Kazantsev /// guarded: 2383a132016dSSimon Pilgrim /// --code after guard-- 2384619a8346SMax Kazantsev /// 2385619a8346SMax Kazantsev /// deopt: 2386619a8346SMax Kazantsev /// call void (i1, ...) @llvm.experimental.guard(i1 false) [ "deopt"() ] 2387619a8346SMax Kazantsev /// unreachable 2388619a8346SMax Kazantsev /// 2389619a8346SMax Kazantsev /// It also makes all relevant DT and LI updates, so that all structures are in 2390619a8346SMax Kazantsev /// valid state after this transform. 2391619a8346SMax Kazantsev static BranchInst * 2392619a8346SMax Kazantsev turnGuardIntoBranch(IntrinsicInst *GI, Loop &L, 2393619a8346SMax Kazantsev SmallVectorImpl<BasicBlock *> &ExitBlocks, 2394a2eebb82SAlina Sbirlea DominatorTree &DT, LoopInfo &LI, MemorySSAUpdater *MSSAU) { 2395619a8346SMax Kazantsev SmallVector<DominatorTree::UpdateType, 4> DTUpdates; 2396619a8346SMax Kazantsev LLVM_DEBUG(dbgs() << "Turning " << *GI << " into a branch.\n"); 2397619a8346SMax Kazantsev BasicBlock *CheckBB = GI->getParent(); 2398619a8346SMax Kazantsev 2399797935f4SAlina Sbirlea if (MSSAU && VerifyMemorySSA) 2400a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 2401a2eebb82SAlina Sbirlea 2402619a8346SMax Kazantsev // Remove all CheckBB's successors from DomTree. A block can be seen among 2403619a8346SMax Kazantsev // successors more than once, but for DomTree it should be added only once. 2404619a8346SMax Kazantsev SmallPtrSet<BasicBlock *, 4> Successors; 2405619a8346SMax Kazantsev for (auto *Succ : successors(CheckBB)) 2406619a8346SMax Kazantsev if (Successors.insert(Succ).second) 2407619a8346SMax Kazantsev DTUpdates.push_back({DominatorTree::Delete, CheckBB, Succ}); 2408619a8346SMax Kazantsev 2409619a8346SMax Kazantsev Instruction *DeoptBlockTerm = 2410619a8346SMax Kazantsev SplitBlockAndInsertIfThen(GI->getArgOperand(0), GI, true); 2411619a8346SMax Kazantsev BranchInst *CheckBI = cast<BranchInst>(CheckBB->getTerminator()); 2412619a8346SMax Kazantsev // SplitBlockAndInsertIfThen inserts control flow that branches to 2413619a8346SMax Kazantsev // DeoptBlockTerm if the condition is true. We want the opposite. 2414619a8346SMax Kazantsev CheckBI->swapSuccessors(); 2415619a8346SMax Kazantsev 2416619a8346SMax Kazantsev BasicBlock *GuardedBlock = CheckBI->getSuccessor(0); 2417619a8346SMax Kazantsev GuardedBlock->setName("guarded"); 2418619a8346SMax Kazantsev CheckBI->getSuccessor(1)->setName("deopt"); 2419a2eebb82SAlina Sbirlea BasicBlock *DeoptBlock = CheckBI->getSuccessor(1); 2420619a8346SMax Kazantsev 2421619a8346SMax Kazantsev // We now have a new exit block. 2422619a8346SMax Kazantsev ExitBlocks.push_back(CheckBI->getSuccessor(1)); 2423619a8346SMax Kazantsev 2424a2eebb82SAlina Sbirlea if (MSSAU) 2425a2eebb82SAlina Sbirlea MSSAU->moveAllAfterSpliceBlocks(CheckBB, GuardedBlock, GI); 2426a2eebb82SAlina Sbirlea 2427619a8346SMax Kazantsev GI->moveBefore(DeoptBlockTerm); 2428619a8346SMax Kazantsev GI->setArgOperand(0, ConstantInt::getFalse(GI->getContext())); 2429619a8346SMax Kazantsev 2430619a8346SMax Kazantsev // Add new successors of CheckBB into DomTree. 2431619a8346SMax Kazantsev for (auto *Succ : successors(CheckBB)) 2432619a8346SMax Kazantsev DTUpdates.push_back({DominatorTree::Insert, CheckBB, Succ}); 2433619a8346SMax Kazantsev 2434619a8346SMax Kazantsev // Now the blocks that used to be CheckBB's successors are GuardedBlock's 2435619a8346SMax Kazantsev // successors. 2436619a8346SMax Kazantsev for (auto *Succ : Successors) 2437619a8346SMax Kazantsev DTUpdates.push_back({DominatorTree::Insert, GuardedBlock, Succ}); 2438619a8346SMax Kazantsev 2439619a8346SMax Kazantsev // Make proper changes to DT. 2440619a8346SMax Kazantsev DT.applyUpdates(DTUpdates); 2441619a8346SMax Kazantsev // Inform LI of a new loop block. 2442619a8346SMax Kazantsev L.addBasicBlockToLoop(GuardedBlock, LI); 2443619a8346SMax Kazantsev 2444a2eebb82SAlina Sbirlea if (MSSAU) { 2445a2eebb82SAlina Sbirlea MemoryDef *MD = cast<MemoryDef>(MSSAU->getMemorySSA()->getMemoryAccess(GI)); 24465c5cf899SAlina Sbirlea MSSAU->moveToPlace(MD, DeoptBlock, MemorySSA::BeforeTerminator); 2447a2eebb82SAlina Sbirlea if (VerifyMemorySSA) 2448a2eebb82SAlina Sbirlea MSSAU->getMemorySSA()->verifyMemorySSA(); 2449a2eebb82SAlina Sbirlea } 2450a2eebb82SAlina Sbirlea 2451619a8346SMax Kazantsev ++NumGuards; 2452619a8346SMax Kazantsev return CheckBI; 2453619a8346SMax Kazantsev } 2454619a8346SMax Kazantsev 24552e3e224eSFedor Sergeev /// Cost multiplier is a way to limit potentially exponential behavior 24562e3e224eSFedor Sergeev /// of loop-unswitch. Cost is multipied in proportion of 2^number of unswitch 24572e3e224eSFedor Sergeev /// candidates available. Also accounting for the number of "sibling" loops with 24582e3e224eSFedor Sergeev /// the idea to account for previous unswitches that already happened on this 24592e3e224eSFedor Sergeev /// cluster of loops. There was an attempt to keep this formula simple, 24602e3e224eSFedor Sergeev /// just enough to limit the worst case behavior. Even if it is not that simple 24612e3e224eSFedor Sergeev /// now it is still not an attempt to provide a detailed heuristic size 24622e3e224eSFedor Sergeev /// prediction. 24632e3e224eSFedor Sergeev /// 24642e3e224eSFedor Sergeev /// TODO: Make a proper accounting of "explosion" effect for all kinds of 24652e3e224eSFedor Sergeev /// unswitch candidates, making adequate predictions instead of wild guesses. 24662e3e224eSFedor Sergeev /// That requires knowing not just the number of "remaining" candidates but 24672e3e224eSFedor Sergeev /// also costs of unswitching for each of these candidates. 24681c03cc5aSAlina Sbirlea static int CalculateUnswitchCostMultiplier( 24692e3e224eSFedor Sergeev Instruction &TI, Loop &L, LoopInfo &LI, DominatorTree &DT, 24702e3e224eSFedor Sergeev ArrayRef<std::pair<Instruction *, TinyPtrVector<Value *>>> 24712e3e224eSFedor Sergeev UnswitchCandidates) { 24722e3e224eSFedor Sergeev 24732e3e224eSFedor Sergeev // Guards and other exiting conditions do not contribute to exponential 24742e3e224eSFedor Sergeev // explosion as soon as they dominate the latch (otherwise there might be 24752e3e224eSFedor Sergeev // another path to the latch remaining that does not allow to eliminate the 24762e3e224eSFedor Sergeev // loop copy on unswitch). 24772e3e224eSFedor Sergeev BasicBlock *Latch = L.getLoopLatch(); 24782e3e224eSFedor Sergeev BasicBlock *CondBlock = TI.getParent(); 24792e3e224eSFedor Sergeev if (DT.dominates(CondBlock, Latch) && 24802e3e224eSFedor Sergeev (isGuard(&TI) || 24812e3e224eSFedor Sergeev llvm::count_if(successors(&TI), [&L](BasicBlock *SuccBB) { 24822e3e224eSFedor Sergeev return L.contains(SuccBB); 24832e3e224eSFedor Sergeev }) <= 1)) { 24842e3e224eSFedor Sergeev NumCostMultiplierSkipped++; 24852e3e224eSFedor Sergeev return 1; 24862e3e224eSFedor Sergeev } 24872e3e224eSFedor Sergeev 24882e3e224eSFedor Sergeev auto *ParentL = L.getParentLoop(); 24892e3e224eSFedor Sergeev int SiblingsCount = (ParentL ? ParentL->getSubLoopsVector().size() 24902e3e224eSFedor Sergeev : std::distance(LI.begin(), LI.end())); 24912e3e224eSFedor Sergeev // Count amount of clones that all the candidates might cause during 24922e3e224eSFedor Sergeev // unswitching. Branch/guard counts as 1, switch counts as log2 of its cases. 24932e3e224eSFedor Sergeev int UnswitchedClones = 0; 24942e3e224eSFedor Sergeev for (auto Candidate : UnswitchCandidates) { 24952e3e224eSFedor Sergeev Instruction *CI = Candidate.first; 24962e3e224eSFedor Sergeev BasicBlock *CondBlock = CI->getParent(); 24972e3e224eSFedor Sergeev bool SkipExitingSuccessors = DT.dominates(CondBlock, Latch); 24982e3e224eSFedor Sergeev if (isGuard(CI)) { 24992e3e224eSFedor Sergeev if (!SkipExitingSuccessors) 25002e3e224eSFedor Sergeev UnswitchedClones++; 25012e3e224eSFedor Sergeev continue; 25022e3e224eSFedor Sergeev } 25032e3e224eSFedor Sergeev int NonExitingSuccessors = llvm::count_if( 25042e3e224eSFedor Sergeev successors(CondBlock), [SkipExitingSuccessors, &L](BasicBlock *SuccBB) { 25052e3e224eSFedor Sergeev return !SkipExitingSuccessors || L.contains(SuccBB); 25062e3e224eSFedor Sergeev }); 25072e3e224eSFedor Sergeev UnswitchedClones += Log2_32(NonExitingSuccessors); 25082e3e224eSFedor Sergeev } 25092e3e224eSFedor Sergeev 25102e3e224eSFedor Sergeev // Ignore up to the "unscaled candidates" number of unswitch candidates 25112e3e224eSFedor Sergeev // when calculating the power-of-two scaling of the cost. The main idea 25122e3e224eSFedor Sergeev // with this control is to allow a small number of unswitches to happen 25132e3e224eSFedor Sergeev // and rely more on siblings multiplier (see below) when the number 25142e3e224eSFedor Sergeev // of candidates is small. 25152e3e224eSFedor Sergeev unsigned ClonesPower = 25162e3e224eSFedor Sergeev std::max(UnswitchedClones - (int)UnswitchNumInitialUnscaledCandidates, 0); 25172e3e224eSFedor Sergeev 25182e3e224eSFedor Sergeev // Allowing top-level loops to spread a bit more than nested ones. 25192e3e224eSFedor Sergeev int SiblingsMultiplier = 25202e3e224eSFedor Sergeev std::max((ParentL ? SiblingsCount 25212e3e224eSFedor Sergeev : SiblingsCount / (int)UnswitchSiblingsToplevelDiv), 25222e3e224eSFedor Sergeev 1); 25232e3e224eSFedor Sergeev // Compute the cost multiplier in a way that won't overflow by saturating 25242e3e224eSFedor Sergeev // at an upper bound. 25252e3e224eSFedor Sergeev int CostMultiplier; 25262e3e224eSFedor Sergeev if (ClonesPower > Log2_32(UnswitchThreshold) || 25272e3e224eSFedor Sergeev SiblingsMultiplier > UnswitchThreshold) 25282e3e224eSFedor Sergeev CostMultiplier = UnswitchThreshold; 25292e3e224eSFedor Sergeev else 25302e3e224eSFedor Sergeev CostMultiplier = std::min(SiblingsMultiplier * (1 << ClonesPower), 25312e3e224eSFedor Sergeev (int)UnswitchThreshold); 25322e3e224eSFedor Sergeev 25332e3e224eSFedor Sergeev LLVM_DEBUG(dbgs() << " Computed multiplier " << CostMultiplier 25342e3e224eSFedor Sergeev << " (siblings " << SiblingsMultiplier << " * clones " 25352e3e224eSFedor Sergeev << (1 << ClonesPower) << ")" 25362e3e224eSFedor Sergeev << " for unswitch candidate: " << TI << "\n"); 25372e3e224eSFedor Sergeev return CostMultiplier; 25382e3e224eSFedor Sergeev } 25392e3e224eSFedor Sergeev 25403897ded6SChandler Carruth static bool 25413897ded6SChandler Carruth unswitchBestCondition(Loop &L, DominatorTree &DT, LoopInfo &LI, 25423897ded6SChandler Carruth AssumptionCache &AC, TargetTransformInfo &TTI, 25433897ded6SChandler Carruth function_ref<void(bool, ArrayRef<Loop *>)> UnswitchCB, 2544a2eebb82SAlina Sbirlea ScalarEvolution *SE, MemorySSAUpdater *MSSAU) { 2545d1dab0c3SChandler Carruth // Collect all invariant conditions within this loop (as opposed to an inner 2546d1dab0c3SChandler Carruth // loop which would be handled when visiting that inner loop). 254760b2e054SChandler Carruth SmallVector<std::pair<Instruction *, TinyPtrVector<Value *>>, 4> 2548d1dab0c3SChandler Carruth UnswitchCandidates; 2549619a8346SMax Kazantsev 2550619a8346SMax Kazantsev // Whether or not we should also collect guards in the loop. 2551619a8346SMax Kazantsev bool CollectGuards = false; 2552619a8346SMax Kazantsev if (UnswitchGuards) { 2553619a8346SMax Kazantsev auto *GuardDecl = L.getHeader()->getParent()->getParent()->getFunction( 2554619a8346SMax Kazantsev Intrinsic::getName(Intrinsic::experimental_guard)); 2555619a8346SMax Kazantsev if (GuardDecl && !GuardDecl->use_empty()) 2556619a8346SMax Kazantsev CollectGuards = true; 2557619a8346SMax Kazantsev } 2558619a8346SMax Kazantsev 2559d1dab0c3SChandler Carruth for (auto *BB : L.blocks()) { 2560d1dab0c3SChandler Carruth if (LI.getLoopFor(BB) != &L) 2561d1dab0c3SChandler Carruth continue; 25621353f9a4SChandler Carruth 2563619a8346SMax Kazantsev if (CollectGuards) 2564619a8346SMax Kazantsev for (auto &I : *BB) 2565619a8346SMax Kazantsev if (isGuard(&I)) { 2566619a8346SMax Kazantsev auto *Cond = cast<IntrinsicInst>(&I)->getArgOperand(0); 2567619a8346SMax Kazantsev // TODO: Support AND, OR conditions and partial unswitching. 2568619a8346SMax Kazantsev if (!isa<Constant>(Cond) && L.isLoopInvariant(Cond)) 2569619a8346SMax Kazantsev UnswitchCandidates.push_back({&I, {Cond}}); 2570619a8346SMax Kazantsev } 2571619a8346SMax Kazantsev 25721652996fSChandler Carruth if (auto *SI = dyn_cast<SwitchInst>(BB->getTerminator())) { 25731652996fSChandler Carruth // We can only consider fully loop-invariant switch conditions as we need 25741652996fSChandler Carruth // to completely eliminate the switch after unswitching. 25751652996fSChandler Carruth if (!isa<Constant>(SI->getCondition()) && 2576d000f8b6SSerguei Katkov L.isLoopInvariant(SI->getCondition()) && !BB->getUniqueSuccessor()) 25771652996fSChandler Carruth UnswitchCandidates.push_back({SI, {SI->getCondition()}}); 25781652996fSChandler Carruth continue; 25791652996fSChandler Carruth } 25801652996fSChandler Carruth 2581d1dab0c3SChandler Carruth auto *BI = dyn_cast<BranchInst>(BB->getTerminator()); 2582d1dab0c3SChandler Carruth if (!BI || !BI->isConditional() || isa<Constant>(BI->getCondition()) || 2583d1dab0c3SChandler Carruth BI->getSuccessor(0) == BI->getSuccessor(1)) 2584d1dab0c3SChandler Carruth continue; 25851353f9a4SChandler Carruth 2586d1dab0c3SChandler Carruth if (L.isLoopInvariant(BI->getCondition())) { 2587d1dab0c3SChandler Carruth UnswitchCandidates.push_back({BI, {BI->getCondition()}}); 2588d1dab0c3SChandler Carruth continue; 258971fd2704SChandler Carruth } 25901353f9a4SChandler Carruth 2591d1dab0c3SChandler Carruth Instruction &CondI = *cast<Instruction>(BI->getCondition()); 2592d1dab0c3SChandler Carruth if (CondI.getOpcode() != Instruction::And && 2593d1dab0c3SChandler Carruth CondI.getOpcode() != Instruction::Or) 2594d1dab0c3SChandler Carruth continue; 2595693eedb1SChandler Carruth 2596d1dab0c3SChandler Carruth TinyPtrVector<Value *> Invariants = 2597d1dab0c3SChandler Carruth collectHomogenousInstGraphLoopInvariants(L, CondI, LI); 2598d1dab0c3SChandler Carruth if (Invariants.empty()) 2599d1dab0c3SChandler Carruth continue; 2600d1dab0c3SChandler Carruth 2601d1dab0c3SChandler Carruth UnswitchCandidates.push_back({BI, std::move(Invariants)}); 2602d1dab0c3SChandler Carruth } 2603693eedb1SChandler Carruth 2604693eedb1SChandler Carruth // If we didn't find any candidates, we're done. 2605693eedb1SChandler Carruth if (UnswitchCandidates.empty()) 260671fd2704SChandler Carruth return false; 2607693eedb1SChandler Carruth 260832e62f9cSChandler Carruth // Check if there are irreducible CFG cycles in this loop. If so, we cannot 260932e62f9cSChandler Carruth // easily unswitch non-trivial edges out of the loop. Doing so might turn the 261032e62f9cSChandler Carruth // irreducible control flow into reducible control flow and introduce new 261132e62f9cSChandler Carruth // loops "out of thin air". If we ever discover important use cases for doing 261232e62f9cSChandler Carruth // this, we can add support to loop unswitch, but it is a lot of complexity 2613f209649dSHiroshi Inoue // for what seems little or no real world benefit. 261432e62f9cSChandler Carruth LoopBlocksRPO RPOT(&L); 261532e62f9cSChandler Carruth RPOT.perform(&LI); 261632e62f9cSChandler Carruth if (containsIrreducibleCFG<const BasicBlock *>(RPOT, LI)) 261771fd2704SChandler Carruth return false; 261832e62f9cSChandler Carruth 2619bde31000SMax Kazantsev SmallVector<BasicBlock *, 4> ExitBlocks; 2620bde31000SMax Kazantsev L.getUniqueExitBlocks(ExitBlocks); 2621bde31000SMax Kazantsev 2622bde31000SMax Kazantsev // We cannot unswitch if exit blocks contain a cleanuppad instruction as we 2623bde31000SMax Kazantsev // don't know how to split those exit blocks. 2624bde31000SMax Kazantsev // FIXME: We should teach SplitBlock to handle this and remove this 2625bde31000SMax Kazantsev // restriction. 2626bde31000SMax Kazantsev for (auto *ExitBB : ExitBlocks) 2627bde31000SMax Kazantsev if (isa<CleanupPadInst>(ExitBB->getFirstNonPHI())) { 2628bde31000SMax Kazantsev dbgs() << "Cannot unswitch because of cleanuppad in exit block\n"; 2629bde31000SMax Kazantsev return false; 2630bde31000SMax Kazantsev } 2631bde31000SMax Kazantsev 2632d34e60caSNicola Zaghen LLVM_DEBUG( 2633d34e60caSNicola Zaghen dbgs() << "Considering " << UnswitchCandidates.size() 2634693eedb1SChandler Carruth << " non-trivial loop invariant conditions for unswitching.\n"); 2635693eedb1SChandler Carruth 2636693eedb1SChandler Carruth // Given that unswitching these terminators will require duplicating parts of 2637693eedb1SChandler Carruth // the loop, so we need to be able to model that cost. Compute the ephemeral 2638693eedb1SChandler Carruth // values and set up a data structure to hold per-BB costs. We cache each 2639693eedb1SChandler Carruth // block's cost so that we don't recompute this when considering different 2640693eedb1SChandler Carruth // subsets of the loop for duplication during unswitching. 2641693eedb1SChandler Carruth SmallPtrSet<const Value *, 4> EphValues; 2642693eedb1SChandler Carruth CodeMetrics::collectEphemeralValues(&L, &AC, EphValues); 2643693eedb1SChandler Carruth SmallDenseMap<BasicBlock *, int, 4> BBCostMap; 2644693eedb1SChandler Carruth 2645693eedb1SChandler Carruth // Compute the cost of each block, as well as the total loop cost. Also, bail 2646693eedb1SChandler Carruth // out if we see instructions which are incompatible with loop unswitching 2647693eedb1SChandler Carruth // (convergent, noduplicate, or cross-basic-block tokens). 2648693eedb1SChandler Carruth // FIXME: We might be able to safely handle some of these in non-duplicated 2649693eedb1SChandler Carruth // regions. 2650693eedb1SChandler Carruth int LoopCost = 0; 2651693eedb1SChandler Carruth for (auto *BB : L.blocks()) { 2652693eedb1SChandler Carruth int Cost = 0; 2653693eedb1SChandler Carruth for (auto &I : *BB) { 2654693eedb1SChandler Carruth if (EphValues.count(&I)) 2655693eedb1SChandler Carruth continue; 2656693eedb1SChandler Carruth 2657693eedb1SChandler Carruth if (I.getType()->isTokenTy() && I.isUsedOutsideOfBlock(BB)) 265871fd2704SChandler Carruth return false; 2659592d8e7dSCraig Topper if (auto *CB = dyn_cast<CallBase>(&I)) 2660592d8e7dSCraig Topper if (CB->isConvergent() || CB->cannotDuplicate()) 266171fd2704SChandler Carruth return false; 2662693eedb1SChandler Carruth 2663*e9c9329aSSam Parker Cost += TTI.getUserCost(&I, TargetTransformInfo::TCK_CodeSize); 2664693eedb1SChandler Carruth } 2665693eedb1SChandler Carruth assert(Cost >= 0 && "Must not have negative costs!"); 2666693eedb1SChandler Carruth LoopCost += Cost; 2667693eedb1SChandler Carruth assert(LoopCost >= 0 && "Must not have negative loop costs!"); 2668693eedb1SChandler Carruth BBCostMap[BB] = Cost; 2669693eedb1SChandler Carruth } 2670d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << " Total loop cost: " << LoopCost << "\n"); 2671693eedb1SChandler Carruth 2672693eedb1SChandler Carruth // Now we find the best candidate by searching for the one with the following 2673693eedb1SChandler Carruth // properties in order: 2674693eedb1SChandler Carruth // 2675693eedb1SChandler Carruth // 1) An unswitching cost below the threshold 2676693eedb1SChandler Carruth // 2) The smallest number of duplicated unswitch candidates (to avoid 2677693eedb1SChandler Carruth // creating redundant subsequent unswitching) 2678693eedb1SChandler Carruth // 3) The smallest cost after unswitching. 2679693eedb1SChandler Carruth // 2680693eedb1SChandler Carruth // We prioritize reducing fanout of unswitch candidates provided the cost 2681693eedb1SChandler Carruth // remains below the threshold because this has a multiplicative effect. 2682693eedb1SChandler Carruth // 2683693eedb1SChandler Carruth // This requires memoizing each dominator subtree to avoid redundant work. 2684693eedb1SChandler Carruth // 2685693eedb1SChandler Carruth // FIXME: Need to actually do the number of candidates part above. 2686693eedb1SChandler Carruth SmallDenseMap<DomTreeNode *, int, 4> DTCostMap; 2687693eedb1SChandler Carruth // Given a terminator which might be unswitched, computes the non-duplicated 2688693eedb1SChandler Carruth // cost for that terminator. 268960b2e054SChandler Carruth auto ComputeUnswitchedCost = [&](Instruction &TI, bool FullUnswitch) { 2690d1dab0c3SChandler Carruth BasicBlock &BB = *TI.getParent(); 2691693eedb1SChandler Carruth SmallPtrSet<BasicBlock *, 4> Visited; 2692693eedb1SChandler Carruth 2693693eedb1SChandler Carruth int Cost = LoopCost; 2694693eedb1SChandler Carruth for (BasicBlock *SuccBB : successors(&BB)) { 2695693eedb1SChandler Carruth // Don't count successors more than once. 2696693eedb1SChandler Carruth if (!Visited.insert(SuccBB).second) 2697693eedb1SChandler Carruth continue; 2698693eedb1SChandler Carruth 2699d1dab0c3SChandler Carruth // If this is a partial unswitch candidate, then it must be a conditional 2700d1dab0c3SChandler Carruth // branch with a condition of either `or` or `and`. In that case, one of 2701d1dab0c3SChandler Carruth // the successors is necessarily duplicated, so don't even try to remove 2702d1dab0c3SChandler Carruth // its cost. 2703d1dab0c3SChandler Carruth if (!FullUnswitch) { 2704d1dab0c3SChandler Carruth auto &BI = cast<BranchInst>(TI); 2705d1dab0c3SChandler Carruth if (cast<Instruction>(BI.getCondition())->getOpcode() == 2706d1dab0c3SChandler Carruth Instruction::And) { 2707d1dab0c3SChandler Carruth if (SuccBB == BI.getSuccessor(1)) 2708d1dab0c3SChandler Carruth continue; 2709d1dab0c3SChandler Carruth } else { 2710d1dab0c3SChandler Carruth assert(cast<Instruction>(BI.getCondition())->getOpcode() == 2711d1dab0c3SChandler Carruth Instruction::Or && 2712d1dab0c3SChandler Carruth "Only `and` and `or` conditions can result in a partial " 2713d1dab0c3SChandler Carruth "unswitch!"); 2714d1dab0c3SChandler Carruth if (SuccBB == BI.getSuccessor(0)) 2715d1dab0c3SChandler Carruth continue; 2716d1dab0c3SChandler Carruth } 2717d1dab0c3SChandler Carruth } 2718d1dab0c3SChandler Carruth 2719693eedb1SChandler Carruth // This successor's domtree will not need to be duplicated after 2720693eedb1SChandler Carruth // unswitching if the edge to the successor dominates it (and thus the 2721693eedb1SChandler Carruth // entire tree). This essentially means there is no other path into this 2722693eedb1SChandler Carruth // subtree and so it will end up live in only one clone of the loop. 2723693eedb1SChandler Carruth if (SuccBB->getUniquePredecessor() || 2724693eedb1SChandler Carruth llvm::all_of(predecessors(SuccBB), [&](BasicBlock *PredBB) { 2725693eedb1SChandler Carruth return PredBB == &BB || DT.dominates(SuccBB, PredBB); 2726693eedb1SChandler Carruth })) { 2727693eedb1SChandler Carruth Cost -= computeDomSubtreeCost(*DT[SuccBB], BBCostMap, DTCostMap); 2728693eedb1SChandler Carruth assert(Cost >= 0 && 2729693eedb1SChandler Carruth "Non-duplicated cost should never exceed total loop cost!"); 2730693eedb1SChandler Carruth } 2731693eedb1SChandler Carruth } 2732693eedb1SChandler Carruth 2733693eedb1SChandler Carruth // Now scale the cost by the number of unique successors minus one. We 2734693eedb1SChandler Carruth // subtract one because there is already at least one copy of the entire 2735693eedb1SChandler Carruth // loop. This is computing the new cost of unswitching a condition. 2736619a8346SMax Kazantsev // Note that guards always have 2 unique successors that are implicit and 2737619a8346SMax Kazantsev // will be materialized if we decide to unswitch it. 2738619a8346SMax Kazantsev int SuccessorsCount = isGuard(&TI) ? 2 : Visited.size(); 2739619a8346SMax Kazantsev assert(SuccessorsCount > 1 && 2740693eedb1SChandler Carruth "Cannot unswitch a condition without multiple distinct successors!"); 2741619a8346SMax Kazantsev return Cost * (SuccessorsCount - 1); 2742693eedb1SChandler Carruth }; 274360b2e054SChandler Carruth Instruction *BestUnswitchTI = nullptr; 2744c598ef7fSSimon Pilgrim int BestUnswitchCost = 0; 2745d1dab0c3SChandler Carruth ArrayRef<Value *> BestUnswitchInvariants; 2746d1dab0c3SChandler Carruth for (auto &TerminatorAndInvariants : UnswitchCandidates) { 274760b2e054SChandler Carruth Instruction &TI = *TerminatorAndInvariants.first; 2748d1dab0c3SChandler Carruth ArrayRef<Value *> Invariants = TerminatorAndInvariants.second; 2749d1dab0c3SChandler Carruth BranchInst *BI = dyn_cast<BranchInst>(&TI); 27501652996fSChandler Carruth int CandidateCost = ComputeUnswitchedCost( 27511652996fSChandler Carruth TI, /*FullUnswitch*/ !BI || (Invariants.size() == 1 && 27521652996fSChandler Carruth Invariants[0] == BI->getCondition())); 27532e3e224eSFedor Sergeev // Calculate cost multiplier which is a tool to limit potentially 27542e3e224eSFedor Sergeev // exponential behavior of loop-unswitch. 27552e3e224eSFedor Sergeev if (EnableUnswitchCostMultiplier) { 27562e3e224eSFedor Sergeev int CostMultiplier = 27571c03cc5aSAlina Sbirlea CalculateUnswitchCostMultiplier(TI, L, LI, DT, UnswitchCandidates); 27582e3e224eSFedor Sergeev assert( 27592e3e224eSFedor Sergeev (CostMultiplier > 0 && CostMultiplier <= UnswitchThreshold) && 27602e3e224eSFedor Sergeev "cost multiplier needs to be in the range of 1..UnswitchThreshold"); 27612e3e224eSFedor Sergeev CandidateCost *= CostMultiplier; 27622e3e224eSFedor Sergeev LLVM_DEBUG(dbgs() << " Computed cost of " << CandidateCost 27632e3e224eSFedor Sergeev << " (multiplier: " << CostMultiplier << ")" 27642e3e224eSFedor Sergeev << " for unswitch candidate: " << TI << "\n"); 27652e3e224eSFedor Sergeev } else { 2766d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << " Computed cost of " << CandidateCost 2767d1dab0c3SChandler Carruth << " for unswitch candidate: " << TI << "\n"); 27682e3e224eSFedor Sergeev } 27692e3e224eSFedor Sergeev 2770693eedb1SChandler Carruth if (!BestUnswitchTI || CandidateCost < BestUnswitchCost) { 2771d1dab0c3SChandler Carruth BestUnswitchTI = &TI; 2772693eedb1SChandler Carruth BestUnswitchCost = CandidateCost; 2773d1dab0c3SChandler Carruth BestUnswitchInvariants = Invariants; 2774693eedb1SChandler Carruth } 2775693eedb1SChandler Carruth } 2776c598ef7fSSimon Pilgrim assert(BestUnswitchTI && "Failed to find loop unswitch candidate"); 2777693eedb1SChandler Carruth 277871fd2704SChandler Carruth if (BestUnswitchCost >= UnswitchThreshold) { 277971fd2704SChandler Carruth LLVM_DEBUG(dbgs() << "Cannot unswitch, lowest cost found: " 278071fd2704SChandler Carruth << BestUnswitchCost << "\n"); 278171fd2704SChandler Carruth return false; 278271fd2704SChandler Carruth } 278371fd2704SChandler Carruth 2784619a8346SMax Kazantsev // If the best candidate is a guard, turn it into a branch. 2785619a8346SMax Kazantsev if (isGuard(BestUnswitchTI)) 2786619a8346SMax Kazantsev BestUnswitchTI = turnGuardIntoBranch(cast<IntrinsicInst>(BestUnswitchTI), L, 2787a2eebb82SAlina Sbirlea ExitBlocks, DT, LI, MSSAU); 2788619a8346SMax Kazantsev 2789bde31000SMax Kazantsev LLVM_DEBUG(dbgs() << " Unswitching non-trivial (cost = " 27901652996fSChandler Carruth << BestUnswitchCost << ") terminator: " << *BestUnswitchTI 27911652996fSChandler Carruth << "\n"); 2792bde31000SMax Kazantsev unswitchNontrivialInvariants(L, *BestUnswitchTI, BestUnswitchInvariants, 2793a2eebb82SAlina Sbirlea ExitBlocks, DT, LI, AC, UnswitchCB, SE, MSSAU); 2794bde31000SMax Kazantsev return true; 27951353f9a4SChandler Carruth } 27961353f9a4SChandler Carruth 2797d1dab0c3SChandler Carruth /// Unswitch control flow predicated on loop invariant conditions. 2798d1dab0c3SChandler Carruth /// 2799d1dab0c3SChandler Carruth /// This first hoists all branches or switches which are trivial (IE, do not 2800d1dab0c3SChandler Carruth /// require duplicating any part of the loop) out of the loop body. It then 2801d1dab0c3SChandler Carruth /// looks at other loop invariant control flows and tries to unswitch those as 2802d1dab0c3SChandler Carruth /// well by cloning the loop if the result is small enough. 28033897ded6SChandler Carruth /// 28043897ded6SChandler Carruth /// The `DT`, `LI`, `AC`, `TTI` parameters are required analyses that are also 28053897ded6SChandler Carruth /// updated based on the unswitch. 2806a2eebb82SAlina Sbirlea /// The `MSSA` analysis is also updated if valid (i.e. its use is enabled). 28073897ded6SChandler Carruth /// 28083897ded6SChandler Carruth /// If either `NonTrivial` is true or the flag `EnableNonTrivialUnswitch` is 28093897ded6SChandler Carruth /// true, we will attempt to do non-trivial unswitching as well as trivial 28103897ded6SChandler Carruth /// unswitching. 28113897ded6SChandler Carruth /// 28123897ded6SChandler Carruth /// The `UnswitchCB` callback provided will be run after unswitching is 28133897ded6SChandler Carruth /// complete, with the first parameter set to `true` if the provided loop 28143897ded6SChandler Carruth /// remains a loop, and a list of new sibling loops created. 28153897ded6SChandler Carruth /// 28163897ded6SChandler Carruth /// If `SE` is non-null, we will update that analysis based on the unswitching 28173897ded6SChandler Carruth /// done. 28183897ded6SChandler Carruth static bool unswitchLoop(Loop &L, DominatorTree &DT, LoopInfo &LI, 28193897ded6SChandler Carruth AssumptionCache &AC, TargetTransformInfo &TTI, 28203897ded6SChandler Carruth bool NonTrivial, 28213897ded6SChandler Carruth function_ref<void(bool, ArrayRef<Loop *>)> UnswitchCB, 2822a2eebb82SAlina Sbirlea ScalarEvolution *SE, MemorySSAUpdater *MSSAU) { 2823d1dab0c3SChandler Carruth assert(L.isRecursivelyLCSSAForm(DT, LI) && 2824d1dab0c3SChandler Carruth "Loops must be in LCSSA form before unswitching."); 2825d1dab0c3SChandler Carruth bool Changed = false; 2826d1dab0c3SChandler Carruth 2827d1dab0c3SChandler Carruth // Must be in loop simplified form: we need a preheader and dedicated exits. 2828d1dab0c3SChandler Carruth if (!L.isLoopSimplifyForm()) 2829d1dab0c3SChandler Carruth return false; 2830d1dab0c3SChandler Carruth 2831d1dab0c3SChandler Carruth // Try trivial unswitch first before loop over other basic blocks in the loop. 2832a2eebb82SAlina Sbirlea if (unswitchAllTrivialConditions(L, DT, LI, SE, MSSAU)) { 2833d1dab0c3SChandler Carruth // If we unswitched successfully we will want to clean up the loop before 2834d1dab0c3SChandler Carruth // processing it further so just mark it as unswitched and return. 2835d1dab0c3SChandler Carruth UnswitchCB(/*CurrentLoopValid*/ true, {}); 2836d1dab0c3SChandler Carruth return true; 2837d1dab0c3SChandler Carruth } 2838d1dab0c3SChandler Carruth 2839d1dab0c3SChandler Carruth // If we're not doing non-trivial unswitching, we're done. We both accept 2840d1dab0c3SChandler Carruth // a parameter but also check a local flag that can be used for testing 2841d1dab0c3SChandler Carruth // a debugging. 2842d1dab0c3SChandler Carruth if (!NonTrivial && !EnableNonTrivialUnswitch) 2843d1dab0c3SChandler Carruth return false; 2844d1dab0c3SChandler Carruth 2845d1dab0c3SChandler Carruth // For non-trivial unswitching, because it often creates new loops, we rely on 2846d1dab0c3SChandler Carruth // the pass manager to iterate on the loops rather than trying to immediately 2847d1dab0c3SChandler Carruth // reach a fixed point. There is no substantial advantage to iterating 2848d1dab0c3SChandler Carruth // internally, and if any of the new loops are simplified enough to contain 2849d1dab0c3SChandler Carruth // trivial unswitching we want to prefer those. 2850d1dab0c3SChandler Carruth 2851d1dab0c3SChandler Carruth // Try to unswitch the best invariant condition. We prefer this full unswitch to 2852d1dab0c3SChandler Carruth // a partial unswitch when possible below the threshold. 2853a2eebb82SAlina Sbirlea if (unswitchBestCondition(L, DT, LI, AC, TTI, UnswitchCB, SE, MSSAU)) 2854d1dab0c3SChandler Carruth return true; 2855d1dab0c3SChandler Carruth 2856d1dab0c3SChandler Carruth // No other opportunities to unswitch. 2857d1dab0c3SChandler Carruth return Changed; 2858d1dab0c3SChandler Carruth } 2859d1dab0c3SChandler Carruth 28601353f9a4SChandler Carruth PreservedAnalyses SimpleLoopUnswitchPass::run(Loop &L, LoopAnalysisManager &AM, 28611353f9a4SChandler Carruth LoopStandardAnalysisResults &AR, 28621353f9a4SChandler Carruth LPMUpdater &U) { 28631353f9a4SChandler Carruth Function &F = *L.getHeader()->getParent(); 28641353f9a4SChandler Carruth (void)F; 28651353f9a4SChandler Carruth 2866d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << "Unswitching loop in " << F.getName() << ": " << L 2867d34e60caSNicola Zaghen << "\n"); 28681353f9a4SChandler Carruth 2869693eedb1SChandler Carruth // Save the current loop name in a variable so that we can report it even 2870693eedb1SChandler Carruth // after it has been deleted. 2871adcd0268SBenjamin Kramer std::string LoopName = std::string(L.getName()); 2872693eedb1SChandler Carruth 287371fd2704SChandler Carruth auto UnswitchCB = [&L, &U, &LoopName](bool CurrentLoopValid, 2874693eedb1SChandler Carruth ArrayRef<Loop *> NewLoops) { 2875693eedb1SChandler Carruth // If we did a non-trivial unswitch, we have added new (cloned) loops. 287671fd2704SChandler Carruth if (!NewLoops.empty()) 2877693eedb1SChandler Carruth U.addSiblingLoops(NewLoops); 2878693eedb1SChandler Carruth 2879693eedb1SChandler Carruth // If the current loop remains valid, we should revisit it to catch any 2880693eedb1SChandler Carruth // other unswitch opportunities. Otherwise, we need to mark it as deleted. 2881693eedb1SChandler Carruth if (CurrentLoopValid) 2882693eedb1SChandler Carruth U.revisitCurrentLoop(); 2883693eedb1SChandler Carruth else 2884693eedb1SChandler Carruth U.markLoopAsDeleted(L, LoopName); 2885693eedb1SChandler Carruth }; 2886693eedb1SChandler Carruth 2887a2eebb82SAlina Sbirlea Optional<MemorySSAUpdater> MSSAU; 2888a2eebb82SAlina Sbirlea if (AR.MSSA) { 2889a2eebb82SAlina Sbirlea MSSAU = MemorySSAUpdater(AR.MSSA); 2890a2eebb82SAlina Sbirlea if (VerifyMemorySSA) 2891a2eebb82SAlina Sbirlea AR.MSSA->verifyMemorySSA(); 2892a2eebb82SAlina Sbirlea } 28933897ded6SChandler Carruth if (!unswitchLoop(L, AR.DT, AR.LI, AR.AC, AR.TTI, NonTrivial, UnswitchCB, 2894a2eebb82SAlina Sbirlea &AR.SE, MSSAU.hasValue() ? MSSAU.getPointer() : nullptr)) 28951353f9a4SChandler Carruth return PreservedAnalyses::all(); 28961353f9a4SChandler Carruth 2897a2eebb82SAlina Sbirlea if (AR.MSSA && VerifyMemorySSA) 2898a2eebb82SAlina Sbirlea AR.MSSA->verifyMemorySSA(); 2899a2eebb82SAlina Sbirlea 29001353f9a4SChandler Carruth // Historically this pass has had issues with the dominator tree so verify it 29011353f9a4SChandler Carruth // in asserts builds. 29027c35de12SDavid Green assert(AR.DT.verify(DominatorTree::VerificationLevel::Fast)); 29033cef1f7dSAlina Sbirlea 29043cef1f7dSAlina Sbirlea auto PA = getLoopPassPreservedAnalyses(); 2905f92109dcSAlina Sbirlea if (AR.MSSA) 29063cef1f7dSAlina Sbirlea PA.preserve<MemorySSAAnalysis>(); 29073cef1f7dSAlina Sbirlea return PA; 29081353f9a4SChandler Carruth } 29091353f9a4SChandler Carruth 29101353f9a4SChandler Carruth namespace { 2911a369a457SEugene Zelenko 29121353f9a4SChandler Carruth class SimpleLoopUnswitchLegacyPass : public LoopPass { 2913693eedb1SChandler Carruth bool NonTrivial; 2914693eedb1SChandler Carruth 29151353f9a4SChandler Carruth public: 29161353f9a4SChandler Carruth static char ID; // Pass ID, replacement for typeid 2917a369a457SEugene Zelenko 2918693eedb1SChandler Carruth explicit SimpleLoopUnswitchLegacyPass(bool NonTrivial = false) 2919693eedb1SChandler Carruth : LoopPass(ID), NonTrivial(NonTrivial) { 29201353f9a4SChandler Carruth initializeSimpleLoopUnswitchLegacyPassPass( 29211353f9a4SChandler Carruth *PassRegistry::getPassRegistry()); 29221353f9a4SChandler Carruth } 29231353f9a4SChandler Carruth 29241353f9a4SChandler Carruth bool runOnLoop(Loop *L, LPPassManager &LPM) override; 29251353f9a4SChandler Carruth 29261353f9a4SChandler Carruth void getAnalysisUsage(AnalysisUsage &AU) const override { 29271353f9a4SChandler Carruth AU.addRequired<AssumptionCacheTracker>(); 2928693eedb1SChandler Carruth AU.addRequired<TargetTransformInfoWrapperPass>(); 2929a2eebb82SAlina Sbirlea if (EnableMSSALoopDependency) { 2930a2eebb82SAlina Sbirlea AU.addRequired<MemorySSAWrapperPass>(); 2931a2eebb82SAlina Sbirlea AU.addPreserved<MemorySSAWrapperPass>(); 2932a2eebb82SAlina Sbirlea } 29331353f9a4SChandler Carruth getLoopAnalysisUsage(AU); 29341353f9a4SChandler Carruth } 29351353f9a4SChandler Carruth }; 2936a369a457SEugene Zelenko 2937a369a457SEugene Zelenko } // end anonymous namespace 29381353f9a4SChandler Carruth 29391353f9a4SChandler Carruth bool SimpleLoopUnswitchLegacyPass::runOnLoop(Loop *L, LPPassManager &LPM) { 29401353f9a4SChandler Carruth if (skipLoop(L)) 29411353f9a4SChandler Carruth return false; 29421353f9a4SChandler Carruth 29431353f9a4SChandler Carruth Function &F = *L->getHeader()->getParent(); 29441353f9a4SChandler Carruth 2945d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << "Unswitching loop in " << F.getName() << ": " << *L 2946d34e60caSNicola Zaghen << "\n"); 29471353f9a4SChandler Carruth 29481353f9a4SChandler Carruth auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); 29491353f9a4SChandler Carruth auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); 29501353f9a4SChandler Carruth auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); 2951693eedb1SChandler Carruth auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F); 2952a2eebb82SAlina Sbirlea MemorySSA *MSSA = nullptr; 2953a2eebb82SAlina Sbirlea Optional<MemorySSAUpdater> MSSAU; 2954a2eebb82SAlina Sbirlea if (EnableMSSALoopDependency) { 2955a2eebb82SAlina Sbirlea MSSA = &getAnalysis<MemorySSAWrapperPass>().getMSSA(); 2956a2eebb82SAlina Sbirlea MSSAU = MemorySSAUpdater(MSSA); 2957a2eebb82SAlina Sbirlea } 29581353f9a4SChandler Carruth 29593897ded6SChandler Carruth auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>(); 29603897ded6SChandler Carruth auto *SE = SEWP ? &SEWP->getSE() : nullptr; 29613897ded6SChandler Carruth 296271fd2704SChandler Carruth auto UnswitchCB = [&L, &LPM](bool CurrentLoopValid, 2963693eedb1SChandler Carruth ArrayRef<Loop *> NewLoops) { 2964693eedb1SChandler Carruth // If we did a non-trivial unswitch, we have added new (cloned) loops. 2965693eedb1SChandler Carruth for (auto *NewL : NewLoops) 2966693eedb1SChandler Carruth LPM.addLoop(*NewL); 2967693eedb1SChandler Carruth 2968693eedb1SChandler Carruth // If the current loop remains valid, re-add it to the queue. This is 2969693eedb1SChandler Carruth // a little wasteful as we'll finish processing the current loop as well, 2970693eedb1SChandler Carruth // but it is the best we can do in the old PM. 2971693eedb1SChandler Carruth if (CurrentLoopValid) 2972693eedb1SChandler Carruth LPM.addLoop(*L); 2973693eedb1SChandler Carruth else 2974693eedb1SChandler Carruth LPM.markLoopAsDeleted(*L); 2975693eedb1SChandler Carruth }; 2976693eedb1SChandler Carruth 2977a2eebb82SAlina Sbirlea if (MSSA && VerifyMemorySSA) 2978a2eebb82SAlina Sbirlea MSSA->verifyMemorySSA(); 2979a2eebb82SAlina Sbirlea 2980a2eebb82SAlina Sbirlea bool Changed = unswitchLoop(*L, DT, LI, AC, TTI, NonTrivial, UnswitchCB, SE, 2981a2eebb82SAlina Sbirlea MSSAU.hasValue() ? MSSAU.getPointer() : nullptr); 2982a2eebb82SAlina Sbirlea 2983a2eebb82SAlina Sbirlea if (MSSA && VerifyMemorySSA) 2984a2eebb82SAlina Sbirlea MSSA->verifyMemorySSA(); 2985693eedb1SChandler Carruth 29861353f9a4SChandler Carruth // Historically this pass has had issues with the dominator tree so verify it 29871353f9a4SChandler Carruth // in asserts builds. 29887c35de12SDavid Green assert(DT.verify(DominatorTree::VerificationLevel::Fast)); 29897c35de12SDavid Green 29901353f9a4SChandler Carruth return Changed; 29911353f9a4SChandler Carruth } 29921353f9a4SChandler Carruth 29931353f9a4SChandler Carruth char SimpleLoopUnswitchLegacyPass::ID = 0; 29941353f9a4SChandler Carruth INITIALIZE_PASS_BEGIN(SimpleLoopUnswitchLegacyPass, "simple-loop-unswitch", 29951353f9a4SChandler Carruth "Simple unswitch loops", false, false) 29961353f9a4SChandler Carruth INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) 2997693eedb1SChandler Carruth INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) 2998693eedb1SChandler Carruth INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) 29991353f9a4SChandler Carruth INITIALIZE_PASS_DEPENDENCY(LoopPass) 3000a2eebb82SAlina Sbirlea INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass) 30011353f9a4SChandler Carruth INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) 30021353f9a4SChandler Carruth INITIALIZE_PASS_END(SimpleLoopUnswitchLegacyPass, "simple-loop-unswitch", 30031353f9a4SChandler Carruth "Simple unswitch loops", false, false) 30041353f9a4SChandler Carruth 3005693eedb1SChandler Carruth Pass *llvm::createSimpleLoopUnswitchLegacyPass(bool NonTrivial) { 3006693eedb1SChandler Carruth return new SimpleLoopUnswitchLegacyPass(NonTrivial); 30071353f9a4SChandler Carruth } 3008