Index: lib/Transforms/Scalar/GVNHoist.cpp =================================================================== --- lib/Transforms/Scalar/GVNHoist.cpp +++ lib/Transforms/Scalar/GVNHoist.cpp @@ -13,45 +13,42 @@ // 1. To reduce the code size. // 2. In some cases reduce critical path (by exposing more ILP). // +// The algorithm factors out the reachability of values such that multiple +// queries to find reachability of values are fast. This is based on finding the +// ANTIC points in the CFG which do not change during hoisting. The ANTIC points +// are basically the dominance-frontiers in the inverse graph. So we introduce a +// data structure (CHI nodes) to keep track of values flowing out of a basic +// block. We only do this for values with multiple occurrences in the function +// as they are the potential hoistable candidates. This approach allows us to +// hoist instructions to a basic block with more than two successors, as well as +// deal with infinite loops in a trivial way. +// +// Limitations: This pass does not hoist fully redundant expressions because +// they are already handled by GVN-PRE. It is advisable to run gvn-hoist before +// and after gvn-pre because gvn-pre creates opportunities for more instructions +// to be hoisted. +// // Hoisting may affect the performance in some cases. To mitigate that, hoisting // is disabled in the following cases. // 1. Scalars across calls. // 2. geps when corresponding load/store cannot be hoisted. -// -// TODO: Hoist from >2 successors. Currently GVNHoist will not hoist stores -// in this case because it works on two instructions at a time. -// entry: -// switch i32 %c1, label %exit1 [ -// i32 0, label %sw0 -// i32 1, label %sw1 -// ] -// -// sw0: -// store i32 1, i32* @G -// br label %exit -// -// sw1: -// store i32 1, i32* @G -// br label %exit -// -// exit1: -// store i32 1, i32* @G -// ret void -// exit: -// ret void //===----------------------------------------------------------------------===// #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/Statistic.h" #include "llvm/Analysis/GlobalsModRef.h" +#include "llvm/Analysis/IteratedDominanceFrontier.h" #include "llvm/Analysis/MemorySSA.h" #include "llvm/Analysis/MemorySSAUpdater.h" +#include "llvm/Analysis/PostDominators.h" #include "llvm/Analysis/ValueTracking.h" #include "llvm/Transforms/Scalar.h" #include "llvm/Transforms/Scalar/GVN.h" #include "llvm/Transforms/Utils/Local.h" +#include + using namespace llvm; #define DEBUG_TYPE "gvn-hoist" @@ -86,34 +83,44 @@ namespace llvm { -// Provides a sorting function based on the execution order of two instructions. -struct SortByDFSIn { -private: - DenseMap &DFSNumber; - -public: - SortByDFSIn(DenseMap &D) : DFSNumber(D) {} - - // Returns true when A executes before B. - bool operator()(const Instruction *A, const Instruction *B) const { - const BasicBlock *BA = A->getParent(); - const BasicBlock *BB = B->getParent(); - unsigned ADFS, BDFS; - if (BA == BB) { - ADFS = DFSNumber.lookup(A); - BDFS = DFSNumber.lookup(B); - } else { - ADFS = DFSNumber.lookup(BA); - BDFS = DFSNumber.lookup(BB); - } - assert(ADFS && BDFS); - return ADFS < BDFS; - } +typedef DenseMap BBSideEffectsSet; +typedef std::pair PairBB; +typedef SmallVector SmallVecInsn; +typedef SmallVectorImpl SmallVecImplInsn; +typedef DenseMap PDomMapT; +// Each element of a hoisting list contains the basic block where to hoist and +// a list of instructions to be hoisted. +typedef std::pair HoistingPointInfo; +typedef SmallVector HoistingPointList; +// A map from a pair of VNs to all the instructions with those VNs. +typedef std::pair VNType; +typedef DenseMap> VNtoInsns; + +// CHI keeps information about values flowing out of a basic block. It is +// similar to PHI but in the inverse graph, and used for outgoing values on each +// edge. For conciseness, it is computed only for instructions with multiple +// occurrences in the CFG because they are the only hoistable candidates. +// A (CHI[{V, B, I1}, {V, C, I2}] +// / \ +// / \ +// B(I1) C (I2) +// The Value number for both I1 and I2 is V, the CHI node will save the +// instruction as well as the edge where the value is flowing to. +struct CHIArg { + VNType VN; + // Edge destination (shows the direction of flow), may not be where the I is. + BasicBlock *Dest; + // The instruction (VN) which uses the values flowing out of CHI. + Instruction *I; + bool operator==(const CHIArg &A) { return VN == A.VN; } + bool operator!=(const CHIArg &A) { return !(*this == A); } }; -// A map from a pair of VNs to all the instructions with those VNs. -typedef DenseMap, SmallVector> - VNtoInsns; +typedef SmallVectorImpl::iterator CHIIt; +typedef DenseMap> OutValuesT; +typedef DenseMap, 2>> + InValuesT; + // An invalid value number Used when inserting a single value number into // VNtoInsns. enum : unsigned { InvalidVN = ~2U }; @@ -198,10 +205,6 @@ const VNtoInsns &getStoreVNTable() const { return VNtoCallsStores; } }; -typedef DenseMap BBSideEffectsSet; -typedef SmallVector SmallVecInsn; -typedef SmallVectorImpl SmallVecImplInsn; - static void combineKnownMetadata(Instruction *ReplInst, Instruction *I) { static const unsigned KnownIDs[] = { LLVMContext::MD_tbaa, LLVMContext::MD_alias_scope, @@ -216,15 +219,14 @@ // cases reduce critical path (by exposing more ILP). class GVNHoist { public: - GVNHoist(DominatorTree *DT, AliasAnalysis *AA, MemoryDependenceResults *MD, - MemorySSA *MSSA) - : DT(DT), AA(AA), MD(MD), MSSA(MSSA), - MSSAUpdater(make_unique(MSSA)), - HoistingGeps(false), - HoistedCtr(0) - { } + GVNHoist(DominatorTree *DT, PostDominatorTree *PDT, AliasAnalysis *AA, + MemoryDependenceResults *MD, MemorySSA *MSSA) + : DT(DT), PDT(PDT), AA(AA), MD(MD), MSSA(MSSA), + MSSAUpdater(make_unique(MSSA)), HoistedCtr(0), + HoistingGeps(false) {} bool run(Function &F) { + NumFuncArgs = F.arg_size(); VN.setDomTree(DT); VN.setAliasAnalysis(AA); VN.setMemDep(MD); @@ -261,18 +263,51 @@ return Res; } + // Copied from NewGVN.cpp + // This function provides global ranking of operations so that we can place + // them in a canonical order. Note that rank alone is not necessarily enough + // for a complete ordering, as constants all have the same rank. However, + // generally, we will simplify an operation with all constants so that it + // doesn't matter what order they appear in. + unsigned int rank(const Value *V) const { + // Prefer constants to undef to anything else + // Undef is a constant, have to check it first. + // Prefer smaller constants to constantexprs + if (isa(V)) + return 2; + if (isa(V)) + return 1; + if (isa(V)) + return 0; + else if (auto *A = dyn_cast(V)) + return 3 + A->getArgNo(); + + // Need to shift the instruction DFS by number of arguments + 3 to account + // for the constant and argument ranking above. + auto Result = DFSNumber.lookup(V); + if (Result > 0) + return 4 + NumFuncArgs + Result; + // Unreachable or something else, just return a really large number. + return ~0; + } + private: GVN::ValueTable VN; DominatorTree *DT; + PostDominatorTree *PDT; AliasAnalysis *AA; MemoryDependenceResults *MD; MemorySSA *MSSA; std::unique_ptr MSSAUpdater; - const bool HoistingGeps; DenseMap DFSNumber; BBSideEffectsSet BBSideEffects; - DenseSet HoistBarrier; + DenseSet HoistBarrier; + // PDomMapT PDomMap; + + SmallVector IDFBlocks; int HoistedCtr; + unsigned NumFuncArgs; + const bool HoistingGeps; enum InsKind { Unknown, Scalar, Load, Store }; @@ -305,44 +340,6 @@ return false; } - // Return true when all paths from HoistBB to the end of the function pass - // through one of the blocks in WL. - bool hoistingFromAllPaths(const BasicBlock *HoistBB, - SmallPtrSetImpl &WL) { - - // Copy WL as the loop will remove elements from it. - SmallPtrSet WorkList(WL.begin(), WL.end()); - - for (auto It = df_begin(HoistBB), E = df_end(HoistBB); It != E;) { - // There exists a path from HoistBB to the exit of the function if we are - // still iterating in DF traversal and we removed all instructions from - // the work list. - if (WorkList.empty()) - return false; - - const BasicBlock *BB = *It; - if (WorkList.erase(BB)) { - // Stop DFS traversal when BB is in the work list. - It.skipChildren(); - continue; - } - - // We reached the leaf Basic Block => not all paths have this instruction. - if (!BB->getTerminator()->getNumSuccessors()) - return false; - - // When reaching the back-edge of a loop, there may be a path through the - // loop that does not pass through B or C before exiting the loop. - if (successorDominate(BB, HoistBB)) - return false; - - // Increment DFS traversal when not skipping children. - ++It; - } - - return true; - } - /* Return true when I1 appears before I2 in the instructions of BB. */ bool firstInBB(const Instruction *I1, const Instruction *I2) { assert(I1->getParent() == I2->getParent()); @@ -533,141 +530,261 @@ // Return true when it is safe to hoist scalar instructions from all blocks in // WL to HoistBB. - bool safeToHoistScalar(const BasicBlock *HoistBB, - SmallPtrSetImpl &WL, + bool safeToHoistScalar(const BasicBlock *HoistBB, const BasicBlock *BB, int &NBBsOnAllPaths) { - // Check that the hoisted expression is needed on all paths. - if (!hoistingFromAllPaths(HoistBB, WL)) - return false; + return !hasEHOnPath(HoistBB, BB, NBBsOnAllPaths); + } - for (const BasicBlock *BB : WL) - if (hasEHOnPath(HoistBB, BB, NBBsOnAllPaths)) + // In the inverse CFG, the dominance frontier of basic block (BB) is the + // point where ANTIC needs to be computed for instructions which are going + // to be hoisted. Since this point does not change during gvn-hoist, + // we compute it only once (on demand). + // The ides is inspired from: + // "Partial Redundancy Elimination in SSA Form" + // ROBERT KENNEDY, SUN CHAN, SHIN-MING LIU, RAYMOND LO, PENG TU and FRED CHOW + // They use similar idea in the forward graph to to find fully redundant and + // partially redundant expressions, here it is used in the inverse graph to + // find fully anticipable instructions at merge point (post-dominator in + // the inverse CFG). + // Returns the edge via which an instruction in BB will get the values from. + + // Returns true when the values are flowing out to each edge. + bool valueAnticipable(CHIIt Begin, CHIIt End, TerminatorInst *TI) const { + if (TI->getNumSuccessors() > std::distance(Begin, End)) + return false; // Not enough args in this CHI. + + for (CHIArg PHIArg : make_range(Begin, End)) { + BasicBlock *Dest = PHIArg.Dest; + bool Found = false; + // Find if all the edges have values flowing out of BB. + for (const auto &S : TI->successors()) { + if (S == Dest) + Found = true; + } + if (!Found) return false; - + } return true; } - // Each element of a hoisting list contains the basic block where to hoist and - // a list of instructions to be hoisted. - typedef std::pair HoistingPointInfo; - typedef SmallVector HoistingPointList; - - // Partition InstructionsToHoist into a set of candidates which can share a - // common hoisting point. The partitions are collected in HPL. IsScalar is - // true when the instructions in InstructionsToHoist are scalars. IsLoad is - // true when the InstructionsToHoist are loads, false when they are stores. - void partitionCandidates(SmallVecImplInsn &InstructionsToHoist, - HoistingPointList &HPL, InsKind K) { - // No need to sort for two instructions. - if (InstructionsToHoist.size() > 2) { - SortByDFSIn Pred(DFSNumber); - std::sort(InstructionsToHoist.begin(), InstructionsToHoist.end(), Pred); - } - + // Check if it is safe to hoist values tracked by CHI in the range + // [Begin, End) and accumulate them in Safe. + void checkSafety(CHIIt Begin, CHIIt End, BasicBlock *BB, InsKind K, + SmallVectorImpl &Safe) { int NumBBsOnAllPaths = MaxNumberOfBBSInPath; - - SmallVecImplInsn::iterator II = InstructionsToHoist.begin(); - SmallVecImplInsn::iterator Start = II; - Instruction *HoistPt = *II; - BasicBlock *HoistBB = HoistPt->getParent(); - MemoryUseOrDef *UD; - if (K != InsKind::Scalar) - UD = MSSA->getMemoryAccess(HoistPt); - - for (++II; II != InstructionsToHoist.end(); ++II) { - Instruction *Insn = *II; - BasicBlock *BB = Insn->getParent(); - BasicBlock *NewHoistBB; - Instruction *NewHoistPt; - - if (BB == HoistBB) { // Both are in the same Basic Block. - NewHoistBB = HoistBB; - NewHoistPt = firstInBB(Insn, HoistPt) ? Insn : HoistPt; + for (CHIIt B = Begin; B != End; ++B) { + Instruction *Insn = B->I; + if (!Insn) // No instruction was inserted in this CHI. + continue; + if (K == InsKind::Scalar) { + if (safeToHoistScalar(BB, Insn->getParent(), NumBBsOnAllPaths)) + Safe.push_back(*B); } else { - // If the hoisting point contains one of the instructions, - // then hoist there, otherwise hoist before the terminator. - NewHoistBB = DT->findNearestCommonDominator(HoistBB, BB); - if (NewHoistBB == BB) - NewHoistPt = Insn; - else if (NewHoistBB == HoistBB) - NewHoistPt = HoistPt; - else - NewHoistPt = NewHoistBB->getTerminator(); + MemoryUseOrDef *UD = MSSA->getMemoryAccess(Insn); + if (safeToHoistLdSt(BB->getTerminator(), Insn, UD, K, NumBBsOnAllPaths)) + Safe.push_back(*B); } + } + } - SmallPtrSet WL; - WL.insert(HoistBB); - WL.insert(BB); + typedef DenseMap> RenameStackT; + // Push all the VNs corresponding to BB into RenameStack. + void fillRenameStack(BasicBlock *BB, InValuesT &ValueBBs, + RenameStackT &RenameStack) { + auto it1 = ValueBBs.find(BB); + if (it1 != ValueBBs.end()) { + // Iterate in reverse order to keep lower ranked values on the top. + for (std::pair &VI : reverse(it1->second)) { + // Get the value of instruction I + DEBUG(dbgs() << "\nPushing on stack: " << *VI.second); + RenameStack[VI.first].push_back(VI.second); + } + } + } - if (K == InsKind::Scalar) { - if (safeToHoistScalar(NewHoistBB, WL, NumBBsOnAllPaths)) { - // Extend HoistPt to NewHoistPt. - HoistPt = NewHoistPt; - HoistBB = NewHoistBB; - continue; - } - } else { - // When NewBB already contains an instruction to be hoisted, the - // expression is needed on all paths. - // Check that the hoisted expression is needed on all paths: it is - // unsafe to hoist loads to a place where there may be a path not - // loading from the same address: for instance there may be a branch on - // which the address of the load may not be initialized. - if ((HoistBB == NewHoistBB || BB == NewHoistBB || - hoistingFromAllPaths(NewHoistBB, WL)) && - // Also check that it is safe to move the load or store from HoistPt - // to NewHoistPt, and from Insn to NewHoistPt. - safeToHoistLdSt(NewHoistPt, HoistPt, UD, K, NumBBsOnAllPaths) && - safeToHoistLdSt(NewHoistPt, Insn, MSSA->getMemoryAccess(Insn), - K, NumBBsOnAllPaths)) { - // Extend HoistPt to NewHoistPt. - HoistPt = NewHoistPt; - HoistBB = NewHoistBB; - continue; - } + void fillChiArgs(BasicBlock *BB, OutValuesT &CHIBBs, + RenameStackT &RenameStack) { + // For each *predecessor* (because Post-DOM) of BB check if it has a CHI + for (auto Pred : predecessors(BB)) { + auto P = CHIBBs.find(Pred); + if (P == CHIBBs.end()) { + continue; + } + DEBUG(dbgs() << "\nLooking at CHIs in: " << Pred->getName();); + // A CHI is found (BB -> Pred is an edge in the CFG) + // Pop the stack until Top(V) = Ve. + SmallVectorImpl &VCHI = P->second; + for (SmallVectorImpl::iterator It = VCHI.begin(), E = VCHI.end(); + It != E;) { + CHIArg &C = *It; + if (!C.Dest) { + auto si = RenameStack.find(C.VN); + // The Basic Block where CHI is must dominate the value we want to + // track in a CHI. In the PDom walk, there can be values in the + // stack which are not control dependent e.g., nested loop. + if (si != RenameStack.end() && si->second.size() && + DT->dominates(Pred, si->second.back()->getParent())) { + C.Dest = BB; // Assign the edge + C.I = si->second.pop_back_val(); // Assign the argument + DEBUG(dbgs() << "\nCHI Inserted in BB: " << C.Dest->getName() + << *C.I << ", VN: " << C.VN.first << ", " + << C.VN.second); + } + // Move to next CHI of a different value + It = std::find_if(It, VCHI.end(), + [It](CHIArg &A) { return A != *It; }); + } else + ++It; } + } + } + + // Walk the post-dominator tree top-down and use a stack for each value to + // store the last value you see. When you hit a CHI from a given edge, the + // value to use as the argument is at the top of the stack, add the value to + // CHI and pop. + void insertCHI(InValuesT &ValueBBs, OutValuesT &CHIBBs) { + auto Root = PDT->getNode(nullptr); + if (!Root) + return; + // Depth first walk on PDom tree to fill the CHIargs at each PDF. + RenameStackT RenameStack; + for (auto it = df_begin(Root), E = df_end(Root); it != E; ++it) { + BasicBlock *BB = (*it)->getBlock(); + if (!BB) + continue; - // At this point it is not safe to extend the current hoisting to - // NewHoistPt: save the hoisting list so far. - if (std::distance(Start, II) > 1) - HPL.push_back({HoistBB, SmallVecInsn(Start, II)}); - - // Start over from BB. - Start = II; - if (K != InsKind::Scalar) - UD = MSSA->getMemoryAccess(*Start); - HoistPt = Insn; - HoistBB = BB; - NumBBsOnAllPaths = MaxNumberOfBBSInPath; + // Collect all values in BB and push to stack. + fillRenameStack(BB, ValueBBs, RenameStack); + + // Fill outgoing values in each CHI corresponding to BB. + fillChiArgs(BB, CHIBBs, RenameStack); } + } - // Save the last partition. - if (std::distance(Start, II) > 1) - HPL.push_back({HoistBB, SmallVecInsn(Start, II)}); + // Walk all the CHI-nodes to find ones which have a empty-entry and remove + // them Then collect all the instructions which are safe to hoist and see if + // they form a list of anticipable values. OutValues contains CHIs + // corresponding to each basic block. + void findHoistableCandidates(OutValuesT &CHIBBs, InsKind K, + HoistingPointList &HPL) { + auto cmpVN = [](const CHIArg &A, const CHIArg &B) { return A.VN < B.VN; }; + + // CHIArgs now have the outgoing values, so check for anticipability and + // accumulate hoistable candidates in HPL. + for (std::pair> &A : CHIBBs) { + BasicBlock *BB = A.first; + SmallVectorImpl &CHIs = A.second; + // Vector of PHIs contains PHIs for different instructions. + // Sort the args according to their VNs, such that identical + // instructions are together. + std::sort(CHIs.begin(), CHIs.end(), cmpVN); + auto TI = BB->getTerminator(); + auto B = CHIs.begin(); + // [PreIt, PHIIt) form a range of CHIs which have identical VNs. + CHIIt PHIIt = std::find_if(CHIs.begin(), CHIs.end(), + [B](CHIArg &A) { return A != *B; }); + CHIIt PrevIt = CHIs.begin(); + while (PrevIt != PHIIt) { + // Collect values which satisfy safety checks. + SmallVector Safe; + // We check for safety first because there might be multiple values in + // the same path, some of which are not safe to be hoisted, but overall + // each edge has at least one value which can be hoisted, making the + // value anticipable along that path. + checkSafety(PrevIt, PHIIt, BB, K, Safe); + + // List of safe values should be anticipable at TI. + if (valueAnticipable(Safe.begin(), Safe.end(), TI)) { + HPL.push_back({BB, SmallVecInsn()}); + SmallVecInsn &V = HPL.back().second; + for (CHIIt B = Safe.begin(); B != Safe.end(); ++B) + V.push_back(B->I); + } + + // Check other VNs + PrevIt = PHIIt; + PHIIt = std::find_if(PrevIt, CHIs.end(), + [PrevIt](CHIArg &A) { return A != *PrevIt; }); + } + } } - // Initialize HPL from Map. + // Compute insertion points for each values which can be fully anticipated at + // a dominator. HPL contains all such values. void computeInsertionPoints(const VNtoInsns &Map, HoistingPointList &HPL, InsKind K) { + // Sort VNs based on their rankings + std::vector Ranks; for (const auto &Entry : Map) { - if (MaxHoistedThreshold != -1 && ++HoistedCtr > MaxHoistedThreshold) - return; + Ranks.push_back(Entry.first); + } - const SmallVecInsn &V = Entry.second; + // TODO: Remove fully-redundant expressions. + // Get instruction from the Map, assume that all the Instructions + // with same VNs have same rank (this is an approximation). + std::sort(Ranks.begin(), Ranks.end(), + [this, &Map](const VNType &r1, const VNType &r2) { + return (rank(*Map.lookup(r1).begin()) < + rank(*Map.lookup(r2).begin())); + }); + + // - Sort VNs according to their rank, and start with lowest ranked VN + // - Take a VN and for each instruction with same VN + // - Find the dominance frontier in the inverse graph (PDF) + // - Insert the chi-node at PDF + // - Remove the chi-nodes with missing entries + // - Remove values from CHI-nodes which do not truly flow out, e.g., + // modified along the path. + // - Collect the remaining values that are still anticipable + SmallVector IDFBlocks; + ReverseIDFCalculator IDFs(*PDT); + OutValuesT OutValue; + InValuesT InValue; + for (const auto &R : Ranks) { + const SmallVecInsn &V = Map.lookup(R); if (V.size() < 2) continue; - - // Compute the insertion point and the list of expressions to be hoisted. - SmallVecInsn InstructionsToHoist; - for (auto I : V) - // We don't need to check for hoist-barriers here because if - // I->getParent() is a barrier then I precedes the barrier. - if (!hasEH(I->getParent())) - InstructionsToHoist.push_back(I); - - if (!InstructionsToHoist.empty()) - partitionCandidates(InstructionsToHoist, HPL, K); + const VNType &VN = R; + SmallPtrSet VNBlocks; + for (auto &I : V) { + BasicBlock *BBI = I->getParent(); + if (!hasEH(BBI)) + VNBlocks.insert(BBI); + } + // Compute the Post Dominance Frontiers of each basic block + // The dominance frontier of a live block X in the reverse + // control graph is the set of blocks upon which X is control + // dependent. The following sequence computes the set of blocks + // which currently have dead terminators that are control + // dependence sources of a block which is in NewLiveBlocks. + IDFs.setDefiningBlocks(VNBlocks); + IDFs.calculate(IDFBlocks); + + // Make a map of BB vs instructions to be hoisted. + for (unsigned i = 0; i < V.size(); ++i) { + InValue[V[i]->getParent()].push_back(std::make_pair(VN, V[i])); + } + // Insert empty CHI node for this VN. This is used to factor out + // basic blocks where the ANTIC can potentially change. + for (auto IDFB : IDFBlocks) { // TODO: Prune out useless CHI insertions. + for (unsigned i = 0; i < V.size(); ++i) { + CHIArg C = {VN, nullptr, nullptr}; + if (DT->dominates(IDFB, V[i]->getParent())) { // Ignore spurious PDFs. + // InValue[V[i]->getParent()].push_back(std::make_pair(VN, V[i])); + OutValue[IDFB].push_back(C); + DEBUG(dbgs() << "\nInsertion a CHI for BB: " << IDFB->getName() + << ", for Insn: " << *V[i]); + } + } + } } + + // Insert CHI args at each PDF to iterate on factored graph of + // control dependence. + insertCHI(InValue, OutValue); + // Using the CHI args inserted at each PDF, find fully anticipable values. + findHoistableCandidates(OutValue, K, HPL); } // Return true when all operands of Instr are available at insertion point @@ -844,8 +961,8 @@ // The definition of this ld/st will not change: ld/st hoisting is // legal when the ld/st is not moved past its current definition. MemoryAccess *Def = OldMemAcc->getDefiningAccess(); - NewMemAcc = - MSSAUpdater->createMemoryAccessInBB(Repl, Def, HoistPt, MemorySSA::End); + NewMemAcc = MSSAUpdater->createMemoryAccessInBB(Repl, Def, HoistPt, + MemorySSA::End); OldMemAcc->replaceAllUsesWith(NewMemAcc); MSSAUpdater->removeMemoryAccess(OldMemAcc); } @@ -935,8 +1052,8 @@ // If I1 cannot guarantee progress, subsequent instructions // in BB cannot be hoisted anyways. if (!isGuaranteedToTransferExecutionToSuccessor(&I1)) { - HoistBarrier.insert(BB); - break; + HoistBarrier.insert(BB); + break; } // Only hoist the first instructions in BB up to MaxDepthInBB. Hoisting // deeper may increase the register pressure and compilation time. @@ -996,16 +1113,18 @@ if (skipFunction(F)) return false; auto &DT = getAnalysis().getDomTree(); + auto &PDT = getAnalysis().getPostDomTree(); auto &AA = getAnalysis().getAAResults(); auto &MD = getAnalysis().getMemDep(); auto &MSSA = getAnalysis().getMSSA(); - GVNHoist G(&DT, &AA, &MD, &MSSA); + GVNHoist G(&DT, &PDT, &AA, &MD, &MSSA); return G.run(F); } void getAnalysisUsage(AnalysisUsage &AU) const override { AU.addRequired(); + AU.addRequired(); AU.addRequired(); AU.addRequired(); AU.addRequired(); @@ -1014,14 +1133,15 @@ AU.addPreserved(); } }; -} // namespace +} // namespace llvm PreservedAnalyses GVNHoistPass::run(Function &F, FunctionAnalysisManager &AM) { DominatorTree &DT = AM.getResult(F); + PostDominatorTree &PDT = AM.getResult(F); AliasAnalysis &AA = AM.getResult(F); MemoryDependenceResults &MD = AM.getResult(F); MemorySSA &MSSA = AM.getResult(F).getMSSA(); - GVNHoist G(&DT, &AA, &MD, &MSSA); + GVNHoist G(&DT, &PDT, &AA, &MD, &MSSA); if (!G.run(F)) return PreservedAnalyses::all(); Index: test/Transforms/GVNHoist/hoist-more-than-two-branches.ll =================================================================== --- /dev/null +++ test/Transforms/GVNHoist/hoist-more-than-two-branches.ll @@ -0,0 +1,31 @@ +; RUN: opt -gvn-hoist -S < %s | FileCheck %s + +; CHECK: store +; CHECK-NOT: store + +; Check that an instruction can be hoisted to a basic block +; with more than two successors. + +@G = external global i32, align 4 + +define void @foo(i32 %c1) { +entry: + switch i32 %c1, label %exit1 [ + i32 0, label %sw0 + i32 1, label %sw1 + ] + +sw0: + store i32 1, i32* @G + br label %exit + +sw1: + store i32 1, i32* @G + br label %exit + +exit1: + store i32 1, i32* @G + ret void +exit: + ret void +} Index: test/Transforms/GVNHoist/hoist-mssa.ll =================================================================== --- test/Transforms/GVNHoist/hoist-mssa.ll +++ test/Transforms/GVNHoist/hoist-mssa.ll @@ -1,4 +1,4 @@ -; RUN: opt -S -gvn-hoist < %s | FileCheck %s +; RUN: opt -S -gvn-hoist -newgvn < %s | FileCheck %s ; Check that store hoisting works: there should be only one store left. ; CHECK-LABEL: @getopt Index: test/Transforms/GVNHoist/hoist-newgvn.ll =================================================================== --- /dev/null +++ test/Transforms/GVNHoist/hoist-newgvn.ll @@ -0,0 +1,105 @@ +; RUN: opt -gvn-hoist -newgvn -S < %s | FileCheck %s +target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-unknown-linux-gnu" + +@GlobalVar = internal global float 1.000000e+00 + +; Check that we hoist load and scalar expressions in dominator. +; CHECK-LABEL: @dominatorHoisting +; CHECK: load +; CHECK: load +; CHECK: fsub +; CHECK: fmul +; CHECK: load +; CHECK: fsub +; CHECK: fmul +; CHECK-NOT: load +; CHECK-NOT: fmul +; CHECK-NOT: fsub +define float @dominatorHoisting(float %d, float* %min, float* %max, float* %a) { +entry: + %div = fdiv float 1.000000e+00, %d + %0 = load float, float* %min, align 4 + %1 = load float, float* %a, align 4 + %sub = fsub float %0, %1 + %mul = fmul float %sub, %div + %2 = load float, float* %max, align 4 + %sub1 = fsub float %2, %1 + %mul2 = fmul float %sub1, %div + %cmp = fcmp oge float %div, 0.000000e+00 + br i1 %cmp, label %if.then, label %if.end + +if.then: ; preds = %entry + %3 = load float, float* %max, align 4 + %4 = load float, float* %a, align 4 + %sub3 = fsub float %3, %4 + %mul4 = fmul float %sub3, %div + %5 = load float, float* %min, align 4 + %sub5 = fsub float %5, %4 + %mul6 = fmul float %sub5, %div + br label %if.end + +if.end: ; preds = %entry + %p1 = phi float [ %mul4, %if.then ], [ 0.000000e+00, %entry ] + %p2 = phi float [ %mul6, %if.then ], [ 0.000000e+00, %entry ] + + %x = fadd float %p1, %mul2 + %y = fadd float %p2, %mul + %z = fadd float %x, %y + ret float %z +} + +; Check that we hoist load and scalar expressions in dominator. +; CHECK-LABEL: @domHoisting +; CHECK: load +; CHECK: load +; CHECK: fsub +; CHECK: fmul +; CHECK: load +; CHECK: fsub +; CHECK: fmul +; CHECK-NOT: load +; CHECK-NOT: fmul +; CHECK-NOT: fsub +define float @domHoisting(float %d, float* %min, float* %max, float* %a) { +entry: + %div = fdiv float 1.000000e+00, %d + %0 = load float, float* %min, align 4 + %1 = load float, float* %a, align 4 + %sub = fsub float %0, %1 + %mul = fmul float %sub, %div + %2 = load float, float* %max, align 4 + %sub1 = fsub float %2, %1 + %mul2 = fmul float %sub1, %div + %cmp = fcmp oge float %div, 0.000000e+00 + br i1 %cmp, label %if.then, label %if.else + +if.then: + %3 = load float, float* %max, align 4 + %4 = load float, float* %a, align 4 + %sub3 = fsub float %3, %4 + %mul4 = fmul float %sub3, %div + %5 = load float, float* %min, align 4 + %sub5 = fsub float %5, %4 + %mul6 = fmul float %sub5, %div + br label %if.end + +if.else: + %6 = load float, float* %max, align 4 + %7 = load float, float* %a, align 4 + %sub9 = fsub float %6, %7 + %mul10 = fmul float %sub9, %div + %8 = load float, float* %min, align 4 + %sub12 = fsub float %8, %7 + %mul13 = fmul float %sub12, %div + br label %if.end + +if.end: + %p1 = phi float [ %mul4, %if.then ], [ %mul10, %if.else ] + %p2 = phi float [ %mul6, %if.then ], [ %mul13, %if.else ] + + %x = fadd float %p1, %mul2 + %y = fadd float %p2, %mul + %z = fadd float %x, %y + ret float %z +} Index: test/Transforms/GVNHoist/hoist-pr20242.ll =================================================================== --- test/Transforms/GVNHoist/hoist-pr20242.ll +++ test/Transforms/GVNHoist/hoist-pr20242.ll @@ -1,4 +1,7 @@ -; RUN: opt -gvn-hoist -S < %s | FileCheck %s +; RUN: opt -gvn-hoist -newgvn -gvn-hoist -S < %s | FileCheck %s +; Test to demonstrate that newgvn creates opportunities for +; more gvn-hoist when sibling branches contain identical expressions. + target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-unknown-linux-gnu" Index: test/Transforms/GVNHoist/hoist-pr28933.ll =================================================================== --- test/Transforms/GVNHoist/hoist-pr28933.ll +++ test/Transforms/GVNHoist/hoist-pr28933.ll @@ -1,9 +1,8 @@ -; RUN: opt -S -gvn-hoist -verify-memoryssa < %s | FileCheck %s +; RUN: opt -S -gvn-hoist -verify-memoryssa -newgvn < %s | FileCheck %s ; Check that we end up with one load and one store, in the right order ; CHECK-LABEL: define void @test_it( ; CHECK: store -; CHECK-NEXT: load ; CHECK-NOT: store ; CHECK-NOT: load Index: test/Transforms/GVNHoist/hoist-recursive-geps.ll =================================================================== --- test/Transforms/GVNHoist/hoist-recursive-geps.ll +++ test/Transforms/GVNHoist/hoist-recursive-geps.ll @@ -1,15 +1,18 @@ -; RUN: opt -gvn-hoist -S < %s | FileCheck %s +; RUN: opt -gvn-hoist -newgvn -gvn-hoist -S < %s | FileCheck %s + +; Check that recursive GEPs are hoisted. Since hoisting creates +; fully redundant instructions, newgvn is run to remove them which then +; creates more opportunites for hoisting. -; Check that recursive GEPs are hoisted. ; CHECK-LABEL: @fun -; CHECK: fdiv ; CHECK: load +; CHECK: fdiv ; CHECK: load ; CHECK: load ; CHECK: load ; CHECK: fsub -; CHECK: fsub ; CHECK: fmul +; CHECK: fsub ; CHECK: fmul ; CHECK-NOT: fsub ; CHECK-NOT: fmul Index: test/Transforms/GVNHoist/hoist.ll =================================================================== --- test/Transforms/GVNHoist/hoist.ll +++ test/Transforms/GVNHoist/hoist.ll @@ -8,8 +8,8 @@ ; ; CHECK-LABEL: @scalarsHoisting ; CHECK: fsub -; CHECK: fsub ; CHECK: fmul +; CHECK: fsub ; CHECK: fmul ; CHECK-NOT: fmul ; CHECK-NOT: fsub @@ -48,8 +48,8 @@ ; CHECK: load ; CHECK: load ; CHECK: fsub -; CHECK: fsub ; CHECK: fmul +; CHECK: fsub ; CHECK: fmul ; CHECK-NOT: load ; CHECK-NOT: fmul @@ -148,8 +148,8 @@ ; CHECK: load ; CHECK: load ; CHECK: fsub -; CHECK: fsub ; CHECK: fmul +; CHECK: fsub ; CHECK: fmul ; CHECK-NOT: load ; CHECK-NOT: fmul @@ -265,8 +265,8 @@ ; CHECK: load ; CHECK: load ; CHECK: fsub -; CHECK: fsub ; CHECK: fmul +; CHECK: fsub ; CHECK: fmul ; CHECK-NOT: load ; CHECK-NOT: fmul @@ -304,106 +304,6 @@ ret float %z } -; Check that we hoist load and scalar expressions in dominator. -; CHECK-LABEL: @dominatorHoisting -; CHECK: load -; CHECK: load -; CHECK: fsub -; CHECK: fmul -; CHECK: load -; CHECK: fsub -; CHECK: fmul -; CHECK-NOT: load -; CHECK-NOT: fmul -; CHECK-NOT: fsub -define float @dominatorHoisting(float %d, float* %min, float* %max, float* %a) { -entry: - %div = fdiv float 1.000000e+00, %d - %0 = load float, float* %min, align 4 - %1 = load float, float* %a, align 4 - %sub = fsub float %0, %1 - %mul = fmul float %sub, %div - %2 = load float, float* %max, align 4 - %sub1 = fsub float %2, %1 - %mul2 = fmul float %sub1, %div - %cmp = fcmp oge float %div, 0.000000e+00 - br i1 %cmp, label %if.then, label %if.end - -if.then: ; preds = %entry - %3 = load float, float* %max, align 4 - %4 = load float, float* %a, align 4 - %sub3 = fsub float %3, %4 - %mul4 = fmul float %sub3, %div - %5 = load float, float* %min, align 4 - %sub5 = fsub float %5, %4 - %mul6 = fmul float %sub5, %div - br label %if.end - -if.end: ; preds = %entry - %p1 = phi float [ %mul4, %if.then ], [ 0.000000e+00, %entry ] - %p2 = phi float [ %mul6, %if.then ], [ 0.000000e+00, %entry ] - - %x = fadd float %p1, %mul2 - %y = fadd float %p2, %mul - %z = fadd float %x, %y - ret float %z -} - -; Check that we hoist load and scalar expressions in dominator. -; CHECK-LABEL: @domHoisting -; CHECK: load -; CHECK: load -; CHECK: fsub -; CHECK: fmul -; CHECK: load -; CHECK: fsub -; CHECK: fmul -; CHECK-NOT: load -; CHECK-NOT: fmul -; CHECK-NOT: fsub -define float @domHoisting(float %d, float* %min, float* %max, float* %a) { -entry: - %div = fdiv float 1.000000e+00, %d - %0 = load float, float* %min, align 4 - %1 = load float, float* %a, align 4 - %sub = fsub float %0, %1 - %mul = fmul float %sub, %div - %2 = load float, float* %max, align 4 - %sub1 = fsub float %2, %1 - %mul2 = fmul float %sub1, %div - %cmp = fcmp oge float %div, 0.000000e+00 - br i1 %cmp, label %if.then, label %if.else - -if.then: - %3 = load float, float* %max, align 4 - %4 = load float, float* %a, align 4 - %sub3 = fsub float %3, %4 - %mul4 = fmul float %sub3, %div - %5 = load float, float* %min, align 4 - %sub5 = fsub float %5, %4 - %mul6 = fmul float %sub5, %div - br label %if.end - -if.else: - %6 = load float, float* %max, align 4 - %7 = load float, float* %a, align 4 - %sub9 = fsub float %6, %7 - %mul10 = fmul float %sub9, %div - %8 = load float, float* %min, align 4 - %sub12 = fsub float %8, %7 - %mul13 = fmul float %sub12, %div - br label %if.end - -if.end: - %p1 = phi float [ %mul4, %if.then ], [ %mul10, %if.else ] - %p2 = phi float [ %mul6, %if.then ], [ %mul13, %if.else ] - - %x = fadd float %p1, %mul2 - %y = fadd float %p2, %mul - %z = fadd float %x, %y - ret float %z -} - ; Check that we do not hoist loads past stores within a same basic block. ; CHECK-LABEL: @noHoistInSingleBBWithStore ; CHECK: load Index: test/Transforms/GVNHoist/infinite-loop-direct.ll =================================================================== --- /dev/null +++ test/Transforms/GVNHoist/infinite-loop-direct.ll @@ -0,0 +1,96 @@ +; RUN: opt -S -gvn-hoist < %s | FileCheck %s + +; Checking gvn-hoist in case of infinite loops and irreducible control flow. + +; Check that bitcast is not hoisted beacuse down safety is not guaranteed. +; CHECK-LABEL: @bazv1 +; CHECK: if.then.i: +; CHECK: bitcast +; CHECK-NEXT: load +; CHECK: if.then4.i: +; CHECK: bitcast +; CHECK-NEXT: load + +%class.bar = type { i8*, %class.base* } +%class.base = type { i32 (...)** } + +; Function Attrs: noreturn nounwind uwtable +define void @bazv1() local_unnamed_addr { +entry: + %agg.tmp = alloca %class.bar, align 8 + %x.sroa.2.0..sroa_idx2 = getelementptr inbounds %class.bar, %class.bar* %agg.tmp, i64 0, i32 1 + store %class.base* null, %class.base** %x.sroa.2.0..sroa_idx2, align 8 + call void @_Z3foo3bar(%class.bar* nonnull %agg.tmp) + %0 = load %class.base*, %class.base** %x.sroa.2.0..sroa_idx2, align 8 + %1 = bitcast %class.bar* %agg.tmp to %class.base* + %cmp.i = icmp eq %class.base* %0, %1 + br i1 %cmp.i, label %if.then.i, label %if.else.i + +if.then.i: ; preds = %entry + %2 = bitcast %class.base* %0 to void (%class.base*)*** + %vtable.i = load void (%class.base*)**, void (%class.base*)*** %2, align 8 + %vfn.i = getelementptr inbounds void (%class.base*)*, void (%class.base*)** %vtable.i, i64 2 + %3 = load void (%class.base*)*, void (%class.base*)** %vfn.i, align 8 + call void %3(%class.base* %0) + br label %while.cond.preheader + +if.else.i: ; preds = %entry + %tobool.i = icmp eq %class.base* %0, null + br i1 %tobool.i, label %while.cond.preheader, label %if.then4.i + +if.then4.i: ; preds = %if.else.i + %4 = bitcast %class.base* %0 to void (%class.base*)*** + %vtable6.i = load void (%class.base*)**, void (%class.base*)*** %4, align 8 + %vfn7.i = getelementptr inbounds void (%class.base*)*, void (%class.base*)** %vtable6.i, i64 3 + %5 = load void (%class.base*)*, void (%class.base*)** %vfn7.i, align 8 + call void %5(%class.base* nonnull %0) + br label %while.cond.preheader + +while.cond.preheader: ; preds = %if.then.i, %if.else.i, %if.then4.i + br label %while.cond + +while.cond: ; preds = %while.cond.preheader, %while.cond + %call = call i32 @sleep(i32 10) + br label %while.cond +} + +declare void @_Z3foo3bar(%class.bar*) local_unnamed_addr + +declare i32 @sleep(i32) local_unnamed_addr + +; Check that the load is not hoisted when inside an irreducible control flow + +; CHECK-LABEL: @bazv +; CHECK: bb2: +; CHECK: load +; CHECK: load +; CHECK: bitcast + +define void @bazv() { +entry: + %agg.tmp = alloca %class.bar, align 8 + %x= getelementptr inbounds %class.bar, %class.bar* %agg.tmp, i64 0, i32 1 + %0 = load %class.base*, %class.base** %x, align 8 + %1 = bitcast %class.bar* %agg.tmp to %class.base* + %cmp.i = icmp eq %class.base* %0, %1 + br i1 %cmp.i, label %bb1, label %bb4 + +bb1: + %b1 = bitcast %class.base* %0 to void (%class.base*)*** + %i = load void (%class.base*)**, void (%class.base*)*** %b1, align 8 + %vfn.i = getelementptr inbounds void (%class.base*)*, void (%class.base*)** %i, i64 2 + %cmp.j = icmp eq %class.base* %0, %1 + br i1 %cmp.j, label %bb2, label %bb3 + +bb2: + %l1 = load void (%class.base*)*, void (%class.base*)** %vfn.i, align 8 + br label %bb3 + +bb3: + %l2 = load void (%class.base*)*, void (%class.base*)** %vfn.i, align 8 + br label %bb2 + +bb4: + %b2 = bitcast %class.base* %0 to void (%class.base*)*** + ret void +} Index: test/Transforms/GVNHoist/infinite-loop-indirect.ll =================================================================== --- /dev/null +++ test/Transforms/GVNHoist/infinite-loop-indirect.ll @@ -0,0 +1,285 @@ +; RUN: opt -S -gvn-hoist < %s | FileCheck %s + +; Checking gvn-hoist in case of indirect branches. + +; Check that the bitcast is is not hoisted because it is after an indirect call +; CHECK-LABEL: @foo +; CHECK-LABEL: l1.preheader: +; CHECK-NEXT: bitcast +; CHECK-LABEL: l1 +; CHECK: bitcast + +%class.bar = type { i8*, %class.base* } +%class.base = type { i32 (...)** } + +@bar = local_unnamed_addr global i32 ()* null, align 8 +@bar1 = local_unnamed_addr global i32 ()* null, align 8 + +define i32 @foo(i32* nocapture readonly %i) { +entry: + %agg.tmp = alloca %class.bar, align 8 + %x= getelementptr inbounds %class.bar, %class.bar* %agg.tmp, i64 0, i32 1 + %y = load %class.base*, %class.base** %x, align 8 + %0 = load i32, i32* %i, align 4 + %.off = add i32 %0, -1 + %switch = icmp ult i32 %.off, 2 + br i1 %switch, label %l1.preheader, label %sw.default + +l1.preheader: ; preds = %sw.default, %entry + %b1 = bitcast %class.base* %y to void (%class.base*)*** + br label %l1 + +l1: ; preds = %l1.preheader, %l1 + %1 = load i32 ()*, i32 ()** @bar, align 8 + %call = tail call i32 %1() + %b2 = bitcast %class.base* %y to void (%class.base*)*** + br label %l1 + +sw.default: ; preds = %entry + %2 = load i32 ()*, i32 ()** @bar1, align 8 + %call2 = tail call i32 %2() + br label %l1.preheader +} + + +; Any instruction inside an infinite loop will not be hoisted because +; there is no path to exit of the function. + +; CHECK-LABEL: @foo1 +; CHECK-LABEL: l1.preheader: +; CHECK-NEXT: bitcast +; CHECK-LABEL: l1: +; CHECK: bitcast + +define i32 @foo1(i32* nocapture readonly %i) { +entry: + %agg.tmp = alloca %class.bar, align 8 + %x= getelementptr inbounds %class.bar, %class.bar* %agg.tmp, i64 0, i32 1 + %y = load %class.base*, %class.base** %x, align 8 + %0 = load i32, i32* %i, align 4 + %.off = add i32 %0, -1 + %switch = icmp ult i32 %.off, 2 + br i1 %switch, label %l1.preheader, label %sw.default + +l1.preheader: ; preds = %sw.default, %entry + %b1 = bitcast %class.base* %y to void (%class.base*)*** + %y1 = load %class.base*, %class.base** %x, align 8 + br label %l1 + +l1: ; preds = %l1.preheader, %l1 + %b2 = bitcast %class.base* %y to void (%class.base*)*** + %1 = load i32 ()*, i32 ()** @bar, align 8 + %y2 = load %class.base*, %class.base** %x, align 8 + %call = tail call i32 %1() + br label %l1 + +sw.default: ; preds = %entry + %2 = load i32 ()*, i32 ()** @bar1, align 8 + %call2 = tail call i32 %2() + br label %l1.preheader +} + +; Check that bitcast is hoisted even when one of them is partially redundant. +; CHECK-LABEL: @test13 +; CHECK: bitcast +; CHECK-NOT: bitcast + +define i32 @test13(i32* %P, i8* %Ptr, i32* nocapture readonly %i) { +entry: + %agg.tmp = alloca %class.bar, align 8 + %x= getelementptr inbounds %class.bar, %class.bar* %agg.tmp, i64 0, i32 1 + %y = load %class.base*, %class.base** %x, align 8 + indirectbr i8* %Ptr, [label %BrBlock, label %B2] + +B2: + %b1 = bitcast %class.base* %y to void (%class.base*)*** + store i32 4, i32 *%P + br label %BrBlock + +BrBlock: + %b2 = bitcast %class.base* %y to void (%class.base*)*** + %L = load i32, i32* %P + %C = icmp eq i32 %L, 42 + br i1 %C, label %T, label %F + +T: + ret i32 123 +F: + ret i32 1422 +} + +; Check that the bitcast is not hoisted because anticipability +; cannot be guaranteed here as one of the indirect branch targets +; do not have the bitcast instruction. + +; CHECK-LABEL: @test14 +; CHECK-LABEL: B2: +; CHECK-NEXT: bitcast +; CHECK-LABEL: BrBlock: +; CHECK-NEXT: bitcast + +define i32 @test14(i32* %P, i8* %Ptr, i32* nocapture readonly %i) { +entry: + %agg.tmp = alloca %class.bar, align 8 + %x= getelementptr inbounds %class.bar, %class.bar* %agg.tmp, i64 0, i32 1 + %y = load %class.base*, %class.base** %x, align 8 + indirectbr i8* %Ptr, [label %BrBlock, label %B2, label %T] + +B2: + %b1 = bitcast %class.base* %y to void (%class.base*)*** + store i32 4, i32 *%P + br label %BrBlock + +BrBlock: + %b2 = bitcast %class.base* %y to void (%class.base*)*** + %L = load i32, i32* %P + %C = icmp eq i32 %L, 42 + br i1 %C, label %T, label %F + +T: + %pi = load i32, i32* %i, align 4 + ret i32 %pi +F: + %pl = load i32, i32* %P + ret i32 %pl +} + + +; Check that the bitcast is not hoisted because of a cycle +; due to indirect branches +; CHECK-LABEL: @test16 +; CHECK-LABEL: B2: +; CHECK-NEXT: bitcast +; CHECK-LABEL: BrBlock: +; CHECK-NEXT: bitcast + +define i32 @test16(i32* %P, i8* %Ptr, i32* nocapture readonly %i) { +entry: + %agg.tmp = alloca %class.bar, align 8 + %x= getelementptr inbounds %class.bar, %class.bar* %agg.tmp, i64 0, i32 1 + %y = load %class.base*, %class.base** %x, align 8 + indirectbr i8* %Ptr, [label %BrBlock, label %B2] + +B2: + %b1 = bitcast %class.base* %y to void (%class.base*)*** + %0 = load i32, i32* %i, align 4 + store i32 %0, i32 *%P + br label %BrBlock + +BrBlock: + %b2 = bitcast %class.base* %y to void (%class.base*)*** + %L = load i32, i32* %P + %C = icmp eq i32 %L, 42 + br i1 %C, label %T, label %F + +T: + indirectbr i32* %P, [label %BrBlock, label %B2] + +F: + indirectbr i8* %Ptr, [label %BrBlock, label %B2] +} + + +@_ZTIi = external constant i8* + +; Check that an instruction is not hoisted out of landing pad (%lpad4) +; Also within a landing pad no redundancies are removed by gvn-hoist, +; however an instruction may be hoisted into a landing pad if +; landing pad has direct branches (e.g., %lpad to %catch1, %catch) +; This CFG has a cycle (%lpad -> %catch1 -> %lpad4 -> %lpad) + +; CHECK-LABEL: @foo2 +; Check that nothing gets hoisted out of %lpad +; CHECK-LABEL: lpad: +; CHECK: %bc1 = add i32 %0, 10 +; CHECK: %bc7 = add i32 %0, 10 + +; Check that the add is hoisted +; CHECK-LABEL: catch1: +; CHECK-NEXT: invoke + +; Check that the add is hoisted +; CHECK-LABEL: catch: +; CHECK-NEXT: load + +; Check that other adds are not hoisted +; CHECK-LABEL: lpad4: +; CHECK: %bc5 = add i32 %0, 10 +; CHECK-LABEL: unreachable: +; CHECK: %bc2 = add i32 %0, 10 + +; Function Attrs: noinline uwtable +define i32 @foo2(i32* nocapture readonly %i) local_unnamed_addr personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { +entry: + %0 = load i32, i32* %i, align 4 + %cmp = icmp eq i32 %0, 0 + br i1 %cmp, label %try.cont, label %if.then + +if.then: + %exception = tail call i8* @__cxa_allocate_exception(i64 4) #2 + %1 = bitcast i8* %exception to i32* + store i32 %0, i32* %1, align 16 + invoke void @__cxa_throw(i8* %exception, i8* bitcast (i8** @_ZTIi to i8*), i8* null) #3 + to label %unreachable unwind label %lpad + +lpad: + %2 = landingpad { i8*, i32 } + catch i8* bitcast (i8** @_ZTIi to i8*) + catch i8* null + %bc1 = add i32 %0, 10 + %3 = extractvalue { i8*, i32 } %2, 0 + %4 = extractvalue { i8*, i32 } %2, 1 + %5 = tail call i32 @llvm.eh.typeid.for(i8* bitcast (i8** @_ZTIi to i8*)) #2 + %matches = icmp eq i32 %4, %5 + %bc7 = add i32 %0, 10 + %6 = tail call i8* @__cxa_begin_catch(i8* %3) #2 + br i1 %matches, label %catch1, label %catch + +catch1: + %bc3 = add i32 %0, 10 + invoke void @__cxa_rethrow() #3 + to label %unreachable unwind label %lpad4 + +catch: + %bc4 = add i32 %0, 10 + %7 = load i32, i32* %i, align 4 + %add = add nsw i32 %7, 1 + tail call void @__cxa_end_catch() + br label %try.cont + +lpad4: + %8 = landingpad { i8*, i32 } + cleanup + %bc5 = add i32 %0, 10 + tail call void @__cxa_end_catch() #2 + invoke void @__cxa_throw(i8* %exception, i8* bitcast (i8** @_ZTIi to i8*), i8* null) #3 + to label %unreachable unwind label %lpad + +try.cont: + %k.0 = phi i32 [ %add, %catch ], [ 0, %entry ] + %bc6 = add i32 %0, 10 + ret i32 %k.0 + +unreachable: + %bc2 = add i32 %0, 10 + ret i32 %bc2 +} + +declare i8* @__cxa_allocate_exception(i64) local_unnamed_addr + +declare void @__cxa_throw(i8*, i8*, i8*) local_unnamed_addr + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: nounwind readnone +declare i32 @llvm.eh.typeid.for(i8*) #1 + +declare i8* @__cxa_begin_catch(i8*) local_unnamed_addr + +declare void @__cxa_end_catch() local_unnamed_addr + +declare void @__cxa_rethrow() local_unnamed_addr + +attributes #1 = { nounwind readnone } +attributes #2 = { nounwind } +attributes #3 = { noreturn }