Index: lib/Transforms/Scalar/GVNHoist.cpp =================================================================== --- lib/Transforms/Scalar/GVNHoist.cpp +++ lib/Transforms/Scalar/GVNHoist.cpp @@ -18,27 +18,6 @@ // 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" @@ -47,6 +26,7 @@ #include "llvm/Analysis/GlobalsModRef.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" @@ -112,8 +92,36 @@ }; // A map from a pair of VNs to all the instructions with those VNs. -typedef DenseMap, SmallVector> +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); + } +}; + +typedef SmallVectorImpl::iterator CHIIt; + // An invalid value number Used when inserting a single value number into // VNtoInsns. enum : unsigned { InvalidVN = ~2U }; @@ -199,8 +207,14 @@ }; 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; static void combineKnownMetadata(Instruction *ReplInst, Instruction *I) { static const unsigned KnownIDs[] = { @@ -216,15 +230,16 @@ // 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), + 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)), - HoistingGeps(false), - HoistedCtr(0) + HoistedCtr(0), + HoistingGeps(false) { } bool run(Function &F) { + NumFuncArgs = F.arg_size(); VN.setDomTree(DT); VN.setAliasAnalysis(AA); VN.setMemDep(MD); @@ -261,18 +276,49 @@ 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; + PDomMapT PDomMap; int HoistedCtr; + unsigned NumFuncArgs; + const bool HoistingGeps; enum InsKind { Unknown, Scalar, Load, Store }; @@ -305,44 +351,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()); @@ -534,140 +542,175 @@ // Return true when it is safe to hoist scalar instructions from all blocks in // WL to HoistBB. bool safeToHoistScalar(const BasicBlock *HoistBB, - SmallPtrSetImpl &WL, + const BasicBlock *BB, int &NBBsOnAllPaths) { - // Check that the hoisted expression is needed on all paths. - if (!hoistingFromAllPaths(HoistBB, WL)) - return false; - - for (const BasicBlock *BB : WL) - if (hasEHOnPath(HoistBB, BB, NBBsOnAllPaths)) - return false; - - return true; + return !hasEHOnPath(HoistBB, BB, NBBsOnAllPaths); } - // 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); + // 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. + PairBB getOrCreate(BasicBlock *BB) { + auto PDomI = PDomMap.find(BB); + if (PDomI != PDomMap.end()) + return PDomI->second; + BasicBlock *Entry = &BB->getParent()->getEntryBlock(); + // Get immediate dominators + auto BB1 = BB; + while (BB1 != Entry) { + BasicBlock *D = DT->getNode(BB1)->getIDom()->getBlock(); + // BB !pdom D but BB pdom a successor of D + if (!PDT->dominates(BB, D)) { + for (BasicBlock *Succ : D->getTerminator()->successors()) { + if (PDT->dominates(BB, Succ)) { + PDomMap[BB] = {D, Succ}; + return {D, Succ}; + } + } + } + BB1 = D; } + return {nullptr, nullptr}; + } - 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; - } 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(); + // 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 PHI. + + 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; + } - SmallPtrSet WL; - WL.insert(HoistBB); - WL.insert(BB); - - if (K == InsKind::Scalar) { - if (safeToHoistScalar(NewHoistBB, WL, NumBBsOnAllPaths)) { - // Extend HoistPt to NewHoistPt. - HoistPt = NewHoistPt; - HoistBB = NewHoistBB; - continue; + // 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. + typedef DenseMap> OutValuesT; + void findHoistableCandidates(OutValuesT &OutValue, InsKind K, + HoistingPointList &HPL) { + for (std::pair> &A : OutValue) { + 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(), [](const CHIArg& A, const CHIArg& B) { + return A.VN < B.VN; } ); + 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; + int NumBBsOnAllPaths = MaxNumberOfBBSInPath; + // 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. + for (CHIIt B = PrevIt; B != PHIIt; ++B) { + Instruction *Insn = B->I; + if (K == InsKind::Scalar) { + if (safeToHoistScalar(BB, Insn->getParent(), NumBBsOnAllPaths)) + Safe.push_back(*B); + } else { + MemoryUseOrDef *UD = MSSA->getMemoryAccess(Insn); + if (safeToHoistLdSt(BB->getTerminator(), Insn, UD, K, + NumBBsOnAllPaths)) + Safe.push_back(*B); + } } - } 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; + // 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); } - } - // 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; + // Check other VNs + PrevIt = PHIIt; + PHIIt = std::find_if(PrevIt, CHIs.end(), + [PrevIt](CHIArg &A){ return A != *PrevIt; }); + } } - - // Save the last partition. - if (std::distance(Start, II) > 1) - HPL.push_back({HoistBB, SmallVecInsn(Start, II)}); } - // 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 + OutValuesT OutValue; + 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) + const VNType &VN = R; + for (unsigned i = 0 ; i < V.size(); ++i) { + auto I = V[i]; + BasicBlock *BBI = I->getParent(); // 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); + if (hasEH(BBI)) + continue; + // Get the BasicBlock where we need to insert a CHI + BasicBlock *BB, *Dest; + std::tie(BB, Dest) = getOrCreate(BBI); + if (!BB) + continue; + // Insert CHI node for each basic block. This is used to factor out + // basic blocks where the ANTIC can potentially change. + CHIArg C = { VN, Dest, I }; + OutValue[BB].push_back(C); + } } + + findHoistableCandidates(OutValue, K, HPL); } // Return true when all operands of Instr are available at insertion point @@ -996,16 +1039,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(); @@ -1018,10 +1063,11 @@ 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,106 @@ +; 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 @@ -8,8 +8,8 @@ ; 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 @@ -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,97 @@ +; 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,289 @@ +; 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 +} + +; bitcast is not hoisted hoisted even when fully-anticipable because +; it is fully redundant and gvn-hoist does not deal with fully +; redundant expressions as gvn-pre will take care of it. + +; CHECK-LABEL: @test13 +; CHECK-LABEL: B2: +; CHECK: bitcast +; CHECK: 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 }