84#define DEBUG_TYPE "indvars"
87STATISTIC(NumReplaced ,
"Number of exit values replaced");
88STATISTIC(NumLFTR ,
"Number of loop exit tests replaced");
89STATISTIC(NumElimExt ,
"Number of IV sign/zero extends eliminated");
90STATISTIC(NumElimIV ,
"Number of congruent IVs eliminated");
94 cl::desc(
"Choose the strategy to replace exit value in IndVarSimplify"),
98 "only replace exit value when the cost is cheap"),
101 "only replace exit value when it is an unused "
102 "induction variable in the loop and has cheap replacement cost"),
104 "only replace exit values when loop def likely dead"),
106 "always replace exit value whenever possible")));
110 cl::desc(
"Use post increment control-dependent ranges in IndVarSimplify"),
115 cl::desc(
"Disable Linear Function Test Replace optimization"));
119 cl::desc(
"Predicate conditions in read only loops"));
123 cl::desc(
"Predicate conditions that trap in loops with only local writes"));
127 cl::desc(
"Allow widening of indvars to eliminate s/zext"));
131class IndVarSimplify {
138 std::unique_ptr<MemorySSAUpdater> MSSAU;
143 bool RunUnswitching =
false;
146 bool rewriteNonIntegerIVs(
Loop *L);
152 bool canonicalizeExitCondition(
Loop *L);
159 bool rewriteFirstIterationLoopExitValues(
Loop *L);
162 const SCEV *ExitCount,
165 bool sinkUnusedInvariants(
Loop *L);
171 : LI(LI), SE(SE), DT(DT),
DL(
DL), TLI(TLI),
TTI(
TTI),
172 WidenIndVars(WidenIndVars) {
174 MSSAU = std::make_unique<MemorySSAUpdater>(MSSA);
179 bool runUnswitching()
const {
return RunUnswitching; }
190 bool isExact =
false;
264static std::optional<FloatingPointIV>
268 unsigned BackEdge = IncomingEdge ^ 1;
278 if (!Incr || Incr->getOpcode() != Instruction::FAdd)
284 if (!IncValueVal || Incr->getOperand(0) != PN)
290 if (!Incr->hasNUses(2))
296 [](
const User *U) { return isa<FCmpInst>(U); });
297 if (It == Incr->users().end())
301 if (!Compare->hasOneUse())
312 if (!L->contains(BI->getParent()) ||
313 (L->contains(BI->getSuccessor(0)) && L->contains(BI->getSuccessor(1))))
323 IncValueVal->getValueAPF(),
324 ExitValueVal->getValueAPF(), Compare, Incr);
331static std::optional<IntegerIV>
339 int64_t InitValue, IncrValue, ExitValue;
367 if (InitValue >= ExitValue)
389 if (Leftover != 0 && int32_t(ExitValue + IncrValue) < ExitValue)
394 if (InitValue <= ExitValue)
416 if (Leftover != 0 && int32_t(ExitValue + IncrValue) > ExitValue)
420 return IntegerIV{InitValue, IncrValue, ExitValue, NewPred};
428 std::unique_ptr<MemorySSAUpdater> &MSSAU) {
430 unsigned BackEdge = IncomingEdge ^ 1;
436 LLVM_DEBUG(
dbgs() <<
"INDVARS: Rewriting floating-point IV to integer IV:\n"
442 <<
" Original PN: " << *PN <<
"\n");
453 Incr->getName() +
".int", Incr->getIterator());
458 BI->getIterator(), IIV.
NewPred, NewAdd,
499bool IndVarSimplify::handleFloatingPointIV(
Loop *L,
PHINode *PN) {
515bool IndVarSimplify::rewriteNonIntegerIVs(Loop *L) {
524 for (WeakTrackingVH &
PHI : PHIs)
526 Changed |= handleFloatingPointIV(L, PN);
545bool IndVarSimplify::rewriteFirstIterationLoopExitValues(Loop *L) {
549 SmallVector<BasicBlock *, 8> ExitBlocks;
550 L->getUniqueExitBlocks(ExitBlocks);
552 bool MadeAnyChanges =
false;
553 for (
auto *ExitBB : ExitBlocks) {
556 for (PHINode &PN : ExitBB->phis()) {
558 IncomingValIdx !=
E; ++IncomingValIdx) {
566 if (!
L->getLoopLatch() ||
567 !DT->
dominates(IncomingBB,
L->getLoopLatch()))
577 Cond = BI->getCondition();
579 Cond =
SI->getCondition();
583 if (!
L->isLoopInvariant(
Cond))
589 if (!ExitVal || ExitVal->getParent() !=
L->getHeader())
595 auto *LoopPreheader =
L->getLoopPreheader();
596 assert(LoopPreheader &&
"Invalid loop");
597 int PreheaderIdx = ExitVal->getBasicBlockIndex(LoopPreheader);
598 if (PreheaderIdx != -1) {
599 assert(ExitVal->getParent() ==
L->getHeader() &&
600 "ExitVal must be in loop header");
601 MadeAnyChanges =
true;
603 ExitVal->getIncomingValue(PreheaderIdx));
609 return MadeAnyChanges;
622 bool IsSigned = Cast->
getOpcode() == Instruction::SExt;
623 if (!IsSigned && Cast->
getOpcode() != Instruction::ZExt)
636 if (NarrowIVWidth >= Width)
646 TTI->getArithmeticInstrCost(Instruction::Add, Ty) >
647 TTI->getArithmeticInstrCost(Instruction::Add,
676class IndVarSimplifyVisitor :
public IVVisitor {
678 const TargetTransformInfo *
TTI;
684 IndVarSimplifyVisitor(PHINode *
IV, ScalarEvolution *SCEV,
685 const TargetTransformInfo *
TTI,
686 const DominatorTree *DTree)
693 void visitCast(CastInst *Cast)
override {
visitIVCast(Cast, WI, SE,
TTI); }
703bool IndVarSimplify::simplifyAndExtend(Loop *L,
709 L->getBlocks()[0]->getModule(), Intrinsic::experimental_guard);
710 bool HasGuards = GuardDecl && !GuardDecl->use_empty();
720 while (!LoopPhis.empty()) {
728 PHINode *CurrIV = LoopPhis.pop_back_val();
731 IndVarSimplifyVisitor Visitor(CurrIV, SE,
TTI, DT);
738 if (Visitor.WI.WidestNativeType) {
741 }
while(!LoopPhis.empty());
751 DT, DeadInsts, ElimExt, Widened,
753 NumElimExt += ElimExt;
754 NumWidened += Widened;
756 LoopPhis.push_back(WidePhi);
776 case Instruction::Add:
777 case Instruction::Sub:
779 case Instruction::GetElementPtr:
789 if (Phi && Phi->getParent() == L->getHeader()) {
794 if (IncI->
getOpcode() == Instruction::GetElementPtr)
799 if (Phi && Phi->getParent() == L->getHeader()) {
822 assert(L->getLoopLatch() &&
"Must be in simplified form");
845 if (!L->isLoopInvariant(
RHS)) {
846 if (!L->isLoopInvariant(
LHS))
859 int Idx = Phi->getBasicBlockIndex(L->getLoopLatch());
864 Value *IncV = Phi->getIncomingValue(Idx);
915 assert(Phi->getParent() == L->getHeader());
916 assert(L->getLoopLatch());
925 int LatchIdx = Phi->getBasicBlockIndex(L->getLoopLatch());
926 Value *IncV = Phi->getIncomingValue(LatchIdx);
947 const SCEV *BestInit =
nullptr;
949 assert(LatchBlock &&
"Must be in simplified form");
963 if (PhiWidth < BCWidth || !
DL.isLegalInteger(PhiWidth))
972 Value *IncPhi = Phi->getIncomingValueForBlock(LatchBlock);
986 if (!Phi->getType()->isIntegerTy() &&
1006 else if (PhiWidth <= SE->getTypeSizeInBits(BestPhi->
getType()))
1019 const SCEV *ExitCount,
bool UsePostInc,
Loop *L,
1049 "Computed iteration count is not loop invariant!");
1050 return Rewriter.expandCodeFor(IVLimit, ARBase->
getType(),
1059bool IndVarSimplify::
1060linearFunctionTestReplace(Loop *L, BasicBlock *ExitingBB,
1061 const SCEV *ExitCount,
1062 PHINode *IndVar, SCEVExpander &
Rewriter) {
1063 assert(
L->getLoopLatch() &&
"Loop no longer in simplified form?");
1069 Value *CmpIndVar = IndVar;
1070 bool UsePostInc =
false;
1075 if (ExitingBB ==
L->getLoopLatch()) {
1080 bool SafeToPostInc =
1084 if (SafeToPostInc) {
1097 "genLoopLimit missed a cast");
1113 if (BO->hasNoUnsignedWrap())
1115 if (BO->hasNoSignedWrap())
1121 ICmpInst::Predicate
P;
1123 P = ICmpInst::ICMP_NE;
1125 P = ICmpInst::ICMP_EQ;
1132 Builder.SetCurrentDebugLocation(
Cond->getDebugLoc());
1141 if (CmpIndVarSize > ExitCntSize) {
1151 const SCEV *
IV = SE->
getSCEV(CmpIndVar);
1153 const SCEV *ZExtTrunc =
1156 if (ZExtTrunc ==
IV) {
1158 ExitCnt = Builder.CreateZExt(ExitCnt, IndVar->
getType(),
1161 const SCEV *SExtTrunc =
1163 if (SExtTrunc ==
IV) {
1165 ExitCnt = Builder.CreateSExt(ExitCnt, IndVar->
getType(),
1172 L->makeLoopInvariant(ExitCnt, Discard);
1174 CmpIndVar = Builder.CreateTrunc(CmpIndVar, ExitCnt->
getType(),
1177 LLVM_DEBUG(
dbgs() <<
"INDVARS: Rewriting loop exit condition to:\n"
1178 <<
" LHS:" << *CmpIndVar <<
'\n'
1179 <<
" op:\t" << (
P == ICmpInst::ICMP_NE ?
"!=" :
"==")
1181 <<
" RHS:\t" << *ExitCnt <<
"\n"
1182 <<
"ExitCount:\t" << *ExitCount <<
"\n"
1185 Value *
Cond = Builder.CreateICmp(
P, CmpIndVar, ExitCnt,
"exitcond");
1206bool IndVarSimplify::sinkUnusedInvariants(Loop *L) {
1208 if (!ExitBlock)
return false;
1211 if (!Preheader)
return false;
1213 bool MadeAnyChanges =
false;
1230 if (
I.mayHaveSideEffects() ||
I.mayReadFromMemory())
1234 if (
I.isDebugOrPseudoInst())
1250 bool UsedInLoop =
false;
1251 for (Use &U :
I.uses()) {
1257 UseBB =
P->getIncomingBlock(i);
1259 if (UseBB == Preheader ||
L->contains(UseBB)) {
1272 MadeAnyChanges =
true;
1275 return MadeAnyChanges;
1281 LLVM_DEBUG(
dbgs() <<
"Replacing condition of loop-exiting branch " << *BI
1282 <<
" with " << *NewCond <<
"\n");
1284 if (OldCond->use_empty())
1291 bool ExitIfTrue = !L->contains(*
succ_begin(ExitingBB));
1293 return ConstantInt::get(OldCond->getType(),
1294 IsTaken ? ExitIfTrue : !ExitIfTrue);
1307 assert(L->isLoopSimplifyForm() &&
"Should only do it in simplify form!");
1308 auto *LoopPreheader = L->getLoopPreheader();
1309 auto *LoopHeader = L->getHeader();
1311 for (
auto &PN : LoopHeader->phis()) {
1323 while (!Worklist.
empty()) {
1325 if (!Visited.
insert(
I).second)
1329 if (!L->contains(
I))
1334 for (
User *U :
I->users())
1336 I->replaceAllUsesWith(Res);
1347 BasicBlock *Preheader = L->getLoopPreheader();
1348 assert(Preheader &&
"Preheader doesn't exist");
1350 auto *LHSV = Rewriter.expandCodeFor(LIP.
LHS);
1351 auto *RHSV = Rewriter.expandCodeFor(LIP.
RHS);
1352 bool ExitIfTrue = !L->contains(*
succ_begin(ExitingBB));
1357 return Builder.CreateICmp(InvariantPred, LHSV, RHSV,
1361static std::optional<Value *>
1363 const SCEV *MaxIter,
bool Inverted,
bool SkipLastIter,
1381 auto *MaxIterTy = MaxIter->
getType();
1410 return std::nullopt;
1425 "Not a loop exit!");
1438 auto GoThrough = [&](
Value *V) {
1459 if (!GoThrough(Curr))
1462 }
while (!Worklist.
empty());
1469 if (!SkipLastIter && LeafConditions.
size() > 1 &&
1473 for (
auto *ICmp : LeafConditions) {
1476 const SCEV *ExitMax = EL.SymbolicMaxNotTaken;
1485 if (WideExitMax == WideMaxIter)
1486 ICmpsFailingOnLastIter.
insert(ICmp);
1490 for (
auto *OldCond : LeafConditions) {
1495 bool OptimisticSkipLastIter = SkipLastIter;
1496 if (!OptimisticSkipLastIter) {
1497 if (ICmpsFailingOnLastIter.
size() > 1)
1498 OptimisticSkipLastIter =
true;
1499 else if (ICmpsFailingOnLastIter.
size() == 1)
1500 OptimisticSkipLastIter = !ICmpsFailingOnLastIter.
count(OldCond);
1504 OptimisticSkipLastIter, SE, Rewriter)) {
1506 auto *NewCond = *Replaced;
1508 NCI->setName(OldCond->
getName() +
".first_iter");
1510 LLVM_DEBUG(
dbgs() <<
"Unknown exit count: Replacing " << *OldCond
1511 <<
" with " << *NewCond <<
"\n");
1517 ICmpsFailingOnLastIter.
erase(OldCond);
1523bool IndVarSimplify::canonicalizeExitCondition(Loop *L) {
1533 SmallVector<BasicBlock*, 16> ExitingBlocks;
1534 L->getExitingBlocks(ExitingBlocks);
1536 for (
auto *ExitingBB : ExitingBlocks) {
1542 if (!ICmp || !ICmp->hasOneUse())
1545 auto *
LHS = ICmp->getOperand(0);
1546 auto *
RHS = ICmp->getOperand(1);
1550 if (!
L->isLoopInvariant(
RHS)) {
1551 if (!
L->isLoopInvariant(
LHS))
1558 Value *LHSOp =
nullptr;
1562 const unsigned InnerBitWidth =
DL.getTypeSizeInBits(LHSOp->
getType());
1563 const unsigned OuterBitWidth =
DL.getTypeSizeInBits(
RHS->
getType());
1564 auto FullCR = ConstantRange::getFull(InnerBitWidth);
1565 FullCR = FullCR.zeroExtend(OuterBitWidth);
1567 if (FullCR.contains(RHSCR)) {
1570 ICmp->setPredicate(ICmp->getUnsignedPredicate());
1580 for (
auto *ExitingBB : ExitingBlocks) {
1586 if (!ICmp || !ICmp->hasOneUse() || !ICmp->isUnsigned())
1589 bool Swapped =
false;
1590 auto *
LHS = ICmp->getOperand(0);
1591 auto *
RHS = ICmp->getOperand(1);
1592 if (
L->isLoopInvariant(
LHS) ==
L->isLoopInvariant(
RHS))
1595 if (
L->isLoopInvariant(
LHS)) {
1606 Value *LHSOp =
nullptr;
1623 auto doRotateTransform = [&]() {
1624 assert(ICmp->isUnsigned() &&
"must have proven unsigned already");
1626 Instruction::Trunc,
RHS, LHSOp->
getType(),
"",
1627 L->getLoopPreheader()->getTerminator()->getIterator());
1631 ICmp->setOperand(Swapped ? 1 : 0, LHSOp);
1632 ICmp->setOperand(Swapped ? 0 : 1, NewRHS);
1634 ICmp->setSameSign(
false);
1639 const unsigned InnerBitWidth =
DL.getTypeSizeInBits(LHSOp->
getType());
1640 const unsigned OuterBitWidth =
DL.getTypeSizeInBits(
RHS->
getType());
1641 auto FullCR = ConstantRange::getFull(InnerBitWidth);
1642 FullCR = FullCR.zeroExtend(OuterBitWidth);
1644 if (FullCR.contains(RHSCR)) {
1645 doRotateTransform();
1657bool IndVarSimplify::optimizeLoopExits(Loop *L, SCEVExpander &
Rewriter) {
1658 SmallVector<BasicBlock*, 16> ExitingBlocks;
1659 L->getExitingBlocks(ExitingBlocks);
1676 if (!DT->
dominates(ExitingBB,
L->getLoopLatch()))
1691 if (ExitingBlocks.
empty())
1702 llvm::sort(ExitingBlocks, [&](BasicBlock *
A, BasicBlock *
B) {
1705 if (
A ==
B)
return false;
1710 "expected total dominance order!");
1715 for (
unsigned i = 1; i < ExitingBlocks.
size(); i++) {
1721 bool SkipLastIter =
false;
1723 auto UpdateSkipLastIter = [&](
const SCEV *MaxExitCount) {
1727 CurrMaxExit = MaxExitCount;
1732 if (CurrMaxExit == MaxBECount)
1733 SkipLastIter =
true;
1735 SmallPtrSet<const SCEV *, 8> DominatingExactExitCounts;
1736 for (BasicBlock *ExitingBB : ExitingBlocks) {
1737 const SCEV *ExactExitCount = SE->
getExitCount(L, ExitingBB);
1739 L, ExitingBB, ScalarEvolution::ExitCountKind::SymbolicMaximum);
1744 auto OptimizeCond = [&](
bool SkipLastIter) {
1746 MaxBECount, SkipLastIter,
1766 if (OptimizeCond(
false))
1768 else if (SkipLastIter && OptimizeCond(
true))
1770 UpdateSkipLastIter(MaxExitCount);
1774 UpdateSkipLastIter(ExactExitCount);
1781 if (ExactExitCount->
isZero()) {
1782 foldExit(L, ExitingBB,
true, DeadInsts);
1790 "Exit counts must be integers");
1802 foldExit(L, ExitingBB,
false, DeadInsts);
1811 if (!DominatingExactExitCounts.
insert(ExactExitCount).second) {
1812 foldExit(L, ExitingBB,
false, DeadInsts);
1838 if (CB->onlyAccessesInaccessibleMemory())
1845bool IndVarSimplify::predicateLoopExits(Loop *L, SCEVExpander &
Rewriter) {
1846 SmallVector<BasicBlock*, 16> ExitingBlocks;
1847 L->getExitingBlocks(ExitingBlocks);
1892 if (!ExitBlock->
phis().empty())
1895 const SCEV *ExitCount = SE->
getExitCount(L, ExitingBB);
1897 !
Rewriter.isSafeToExpand(ExitCount))
1901 "Exit count must be loop invariant");
1909 for (BasicBlock *ExitingBB : ExitingBlocks)
1920 llvm::sort(ExitingBlocks, [&](BasicBlock *
A, BasicBlock *
B) {
1934 for (
unsigned i = 1; i < ExitingBlocks.size(); i++)
1936 "Not sorted by dominance");
1940 for (
unsigned i = 0, e = ExitingBlocks.size(); i < e; i++)
1941 if (BadExit(ExitingBlocks[i])) {
1942 ExitingBlocks.resize(i);
1946 if (ExitingBlocks.empty())
1957 bool HasThreadLocalSideEffects =
false;
1958 for (BasicBlock *BB :
L->blocks())
1959 for (
auto &
I : *BB) {
1961 if (
I.mayHaveSideEffects()) {
1964 HasThreadLocalSideEffects =
true;
1970 if (!
SI->isSimple())
1979 if (
I.getType()->isTokenTy()) {
1980 for (User *U :
I.users()) {
1982 if (UserInst && !
L->contains(UserInst)) {
2000 Rewriter.setInsertPoint(
L->getLoopPreheader()->getTerminator());
2002 Value *ExactBTCV =
nullptr;
2003 for (BasicBlock *ExitingBB : ExitingBlocks) {
2004 const SCEV *ExitCount = SE->
getExitCount(L, ExitingBB);
2007 if (HasThreadLocalSideEffects) {
2009 for (
const BasicBlock *Succ : BI->
successors()) {
2021 if (ExitCount == ExactBTC) {
2023 B.getFalse() :
B.getTrue();
2027 ExactBTCV =
Rewriter.expandCodeFor(ExactBTC);
2031 ECV =
B.CreateZExt(ECV, WiderTy);
2032 RHS =
B.CreateZExt(
RHS, WiderTy);
2035 ICmpInst::ICMP_NE : ICmpInst::ICMP_EQ;
2036 NewCond =
B.CreateICmp(Pred, ECV,
RHS);
2043 RunUnswitching =
true;
2053bool IndVarSimplify::run(Loop *L) {
2055 assert(
L->isRecursivelyLCSSAForm(*DT, *LI) &&
2056 "LCSSA required to run indvars!");
2067 if (!
L->isLoopSimplifyForm())
2073 Changed |= rewriteNonIntegerIVs(L);
2076 SCEVExpander
Rewriter(*SE,
"indvars");
2077#if LLVM_ENABLE_ABI_BREAKING_CHECKS
2097 NumReplaced += Rewrites;
2103 NumElimIV +=
Rewriter.replaceCongruentIVs(L, DT, DeadInsts,
TTI);
2107 Changed |= canonicalizeExitCondition(L);
2110 if (optimizeLoopExits(L,
Rewriter)) {
2120 if (predicateLoopExits(L,
Rewriter)) {
2131 SmallVector<BasicBlock*, 16> ExitingBlocks;
2132 L->getExitingBlocks(ExitingBlocks);
2133 for (BasicBlock *ExitingBB : ExitingBlocks) {
2147 const SCEV *ExitCount = SE->
getExitCount(L, ExitingBB);
2168 if (!
Rewriter.isSafeToExpand(ExitCount))
2171 Changed |= linearFunctionTestReplace(L, ExitingBB,
2183 while (!DeadInsts.
empty()) {
2197 Changed |= sinkUnusedInvariants(L);
2202 Changed |= rewriteFirstIterationLoopExitValues(L);
2208 assert(
L->isRecursivelyLCSSAForm(*DT, *LI) &&
2209 "Indvars did not preserve LCSSA!");
2211 MSSAU->getMemorySSA()->verifyMemorySSA();
2219 Function *
F = L.getHeader()->getParent();
2229 if (IVS.runUnswitching()) {
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file declares a class to represent arbitrary precision floating point values and provide a varie...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This header defines various interfaces for pass management in LLVM.
This defines the Use class.
static bool optimizeLoopExitWithUnknownExitCount(const Loop *L, CondBrInst *BI, BasicBlock *ExitingBB, const SCEV *MaxIter, bool SkipLastIter, ScalarEvolution *SE, SCEVExpander &Rewriter, SmallVectorImpl< WeakTrackingVH > &DeadInsts)
static Value * genLoopLimit(PHINode *IndVar, BasicBlock *ExitingBB, const SCEV *ExitCount, bool UsePostInc, Loop *L, SCEVExpander &Rewriter, ScalarEvolution *SE)
Insert an IR expression which computes the value held by the IV IndVar (which must be an loop counter...
static std::optional< FloatingPointIV > maybeFloatingPointRecurrence(Loop *L, PHINode *PN)
Analyze a PN to determine whether it represents a simple floating-point induction variable,...
static cl::opt< bool > DisableLFTR("disable-lftr", cl::Hidden, cl::init(false), cl::desc("Disable Linear Function Test Replace optimization"))
static bool isLoopExitTestBasedOn(Value *V, BasicBlock *ExitingBB)
Whether the current loop exit test is based on this value.
static cl::opt< ReplaceExitVal > ReplaceExitValue("replexitval", cl::Hidden, cl::init(OnlyCheapRepl), cl::desc("Choose the strategy to replace exit value in IndVarSimplify"), cl::values(clEnumValN(NeverRepl, "never", "never replace exit value"), clEnumValN(OnlyCheapRepl, "cheap", "only replace exit value when the cost is cheap"), clEnumValN(UnusedIndVarInLoop, "unusedindvarinloop", "only replace exit value when it is an unused " "induction variable in the loop and has cheap replacement cost"), clEnumValN(NoHardUse, "noharduse", "only replace exit values when loop def likely dead"), clEnumValN(AlwaysRepl, "always", "always replace exit value whenever possible")))
static void visitIVCast(CastInst *Cast, WideIVInfo &WI, ScalarEvolution *SE, const TargetTransformInfo *TTI)
Update information about the induction variable that is extended by this sign or zero extend operatio...
static bool isRepresentableAsExactInteger(const APFloat &FPVal, int64_t IntVal)
Ensure we stay within the bounds of fp values that can be represented as integers without gaps,...
static void replaceLoopPHINodesWithPreheaderValues(LoopInfo *LI, Loop *L, SmallVectorImpl< WeakTrackingVH > &DeadInsts, ScalarEvolution &SE)
static void replaceExitCond(CondBrInst *BI, Value *NewCond, SmallVectorImpl< WeakTrackingVH > &DeadInsts)
static bool needsLFTR(Loop *L, BasicBlock *ExitingBB)
linearFunctionTestReplace policy.
static Value * createInvariantCond(const Loop *L, BasicBlock *ExitingBB, const ScalarEvolution::LoopInvariantPredicate &LIP, SCEVExpander &Rewriter)
static bool isLoopCounter(PHINode *Phi, Loop *L, ScalarEvolution *SE)
Return true if the given phi is a "counter" in L.
static std::optional< Value * > createReplacement(ICmpInst *ICmp, const Loop *L, BasicBlock *ExitingBB, const SCEV *MaxIter, bool Inverted, bool SkipLastIter, ScalarEvolution *SE, SCEVExpander &Rewriter)
static bool hasConcreteDefImpl(Value *V, SmallPtrSetImpl< Value * > &Visited, unsigned Depth)
Recursive helper for hasConcreteDef().
static bool hasConcreteDef(Value *V)
Return true if the given value is concrete.
static void foldExit(const Loop *L, BasicBlock *ExitingBB, bool IsTaken, SmallVectorImpl< WeakTrackingVH > &DeadInsts)
static PHINode * getLoopPhiForCounter(Value *IncV, Loop *L)
Given an Value which is hoped to be part of an add recurance in the given loop, return the associated...
static Constant * createFoldedExitCond(const Loop *L, BasicBlock *ExitingBB, bool IsTaken)
static std::optional< IntegerIV > tryConvertToIntegerIV(const FloatingPointIV &FPIV)
Ensure that the floating-point IV can be converted to a semantics-preserving signed 32-bit integer IV...
static cl::opt< bool > LoopPredicationTraps("indvars-predicate-loop-traps", cl::Hidden, cl::init(true), cl::desc("Predicate conditions that trap in loops with only local writes"))
static cl::opt< bool > UsePostIncrementRanges("indvars-post-increment-ranges", cl::Hidden, cl::desc("Use post increment control-dependent ranges in IndVarSimplify"), cl::init(true))
static void canonicalizeToIntegerIV(Loop *L, PHINode *PN, const FloatingPointIV &FPIV, const IntegerIV &IIV, const TargetLibraryInfo *TLI, std::unique_ptr< MemorySSAUpdater > &MSSAU)
Rewrite the floating-point IV as an integer IV.
static PHINode * FindLoopCounter(Loop *L, BasicBlock *ExitingBB, const SCEV *BECount, ScalarEvolution *SE, DominatorTree *DT)
Search the loop header for a loop counter (anadd rec w/step of one) suitable for use by LFTR.
static cl::opt< bool > AllowIVWidening("indvars-widen-indvars", cl::Hidden, cl::init(true), cl::desc("Allow widening of indvars to eliminate s/zext"))
static bool crashingBBWithoutEffect(const BasicBlock &BB)
static CmpInst::Predicate getIntegerPredicate(CmpInst::Predicate FPPred)
static bool ConvertToSInt(const APFloat &APF, int64_t &IntVal)
Convert APF to an integer, if possible.
static cl::opt< bool > LoopPredication("indvars-predicate-loops", cl::Hidden, cl::init(true), cl::desc("Predicate conditions in read only loops"))
This file exposes an interface to building/using memory SSA to walk memory instructions using a use/d...
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
const SmallVectorImpl< MachineOperand > & Cond
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Virtual Register Rewriter
static const uint32_t IV[8]
static constexpr roundingMode rmTowardZero
static LLVM_ABI unsigned int semanticsPrecision(const fltSemantics &)
static LLVM_ABI bool isIEEELikeFP(const fltSemantics &)
const fltSemantics & getSemantics() const
opStatus convertToInteger(MutableArrayRef< integerPart > Input, unsigned int Width, bool IsSigned, roundingMode RM, bool *IsExact) const
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
LLVM Basic Block Representation.
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
LLVM_ABI const_iterator getFirstInsertionPt() const
Returns an iterator to the first instruction in this block that is suitable for inserting a non-PHI i...
InstListType::iterator iterator
Instruction iterators...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
Represents analyses that only rely on functions' control flow.
This is the base class for all instructions that perform data casts.
Instruction::CastOps getOpcode() const
Return the opcode of this CastInst.
static LLVM_ABI CastInst * Create(Instruction::CastOps, Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Provides a way to construct any of the CastInst subclasses using an opcode instead of the subclass's ...
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
@ FCMP_OEQ
0 0 0 1 True if ordered and equal
@ ICMP_SLT
signed less than
@ ICMP_SLE
signed less or equal
@ FCMP_OLT
0 1 0 0 True if ordered and less than
@ FCMP_ULE
1 1 0 1 True if unordered, less than, or equal
@ FCMP_OGT
0 0 1 0 True if ordered and greater than
@ FCMP_OGE
0 0 1 1 True if ordered and greater than or equal
@ ICMP_SGT
signed greater than
@ FCMP_ULT
1 1 0 0 True if unordered or less than
@ FCMP_ONE
0 1 1 0 True if ordered and operands are unequal
@ FCMP_UEQ
1 0 0 1 True if unordered or equal
@ ICMP_ULT
unsigned less than
@ FCMP_UGT
1 0 1 0 True if unordered or greater than
@ FCMP_OLE
0 1 0 1 True if ordered and less than or equal
@ ICMP_SGE
signed greater or equal
@ FCMP_UNE
1 1 1 0 True if unordered or not equal
@ ICMP_ULE
unsigned less or equal
@ FCMP_UGE
1 0 1 1 True if unordered, greater than, or equal
Predicate getInversePredicate() const
For example, EQ -> NE, UGT -> ULE, SLT -> SGE, OEQ -> UNE, UGT -> OLE, OLT -> UGE,...
static LLVM_ABI StringRef getPredicateName(Predicate P)
Predicate getPredicate() const
Return the predicate for this instruction.
An abstraction over a floating-point predicate, and a pack of an integer predicate with samesign info...
Conditional Branch instruction.
void setCondition(Value *V)
Value * getCondition() const
BasicBlock * getSuccessor(unsigned i) const
iterator_range< succ_iterator > successors()
static ConstantInt * getSigned(IntegerType *Ty, int64_t V, bool ImplicitTrunc=false)
Return a ConstantInt with the specified value for the specified type.
This is an important base class in LLVM.
A parsed version of the target data layout string in and methods for querying it.
bool isLegalInteger(uint64_t Width) const
Returns true if the specified type is known to be a native integer type supported by the CPU.
static DebugLoc getDropped()
bool properlyDominates(const DomTreeNodeBase< NodeT > *A, const DomTreeNodeBase< NodeT > *B) const
properlyDominates - Returns true iff A dominates B and A != B.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
LLVM_ABI bool dominates(const BasicBlock *BB, const Use &U) const
Return true if the (end of the) basic block BB dominates the use U.
This instruction compares its operands according to the predicate given to the constructor.
This instruction compares its operands according to the predicate given to the constructor.
CmpPredicate getCmpPredicate() const
CmpPredicate getInverseCmpPredicate() const
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
PreservedAnalyses run(Loop &L, LoopAnalysisManager &AM, LoopStandardAnalysisResults &AR, LPMUpdater &U)
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
Instruction * user_back()
Specialize the methods defined in Value, as we know that an instruction can only be used by other ins...
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this instruction belongs to.
Class to represent integer types.
This class provides an interface for updating the loop pass manager based on mutations to the loop ne...
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
bool replacementPreservesLCSSAForm(Instruction *From, Value *To)
Returns true if replacing From with To everywhere is guaranteed to preserve LCSSA form.
Represents a single loop in the control flow graph.
An analysis that produces MemorySSA for a function.
Encapsulates MemorySSA, including all data associated with memory accesses.
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
void setIncomingValue(unsigned i, Value *V)
Value * getIncomingValueForBlock(const BasicBlock *BB) const
BasicBlock * getIncomingBlock(unsigned i) const
Return incoming basic block number i.
Value * getIncomingValue(unsigned i) const
Return incoming value number x.
static unsigned getIncomingValueNumForOperand(unsigned i)
unsigned getNumIncomingValues() const
Return the number of incoming edges.
static PHINode * Create(Type *Ty, unsigned NumReservedValues, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructors - NumReservedValues is a hint for the number of incoming edges that this phi node will h...
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
This node represents a polynomial recurrence on the trip count of the specified loop.
LLVM_ABI const SCEV * evaluateAtIteration(const SCEV *It, ScalarEvolution &SE) const
Return the value of this chain of recurrences at the specified iteration number.
LLVM_ABI const SCEVAddRecExpr * getPostIncExpr(ScalarEvolution &SE) const
Return an expression representing the value of this expression one iteration of the loop ahead.
SCEVUse getStepRecurrence(ScalarEvolution &SE) const
Constructs and returns the recurrence indicating how much this expression steps by.
This class uses information about analyze scalars to rewrite expressions in canonical form.
bool hasNoUnsignedWrap() const
bool hasNoSignedWrap() const
This class represents an analyzed expression in the program.
LLVM_ABI bool isOne() const
Return true if the expression is a constant one.
LLVM_ABI bool isZero() const
Return true if the expression is a constant zero.
LLVM_ABI Type * getType() const
Return the LLVM type of this SCEV expression.
This class represents a cast from signed integer to floating point.
The main scalar evolution driver.
LLVM_ABI std::optional< LoopInvariantPredicate > getLoopInvariantExitCondDuringFirstIterations(CmpPredicate Pred, const SCEV *LHS, const SCEV *RHS, const Loop *L, const Instruction *CtxI, const SCEV *MaxIter)
If the result of the predicate LHS Pred RHS is loop invariant with respect to L at given Context duri...
LLVM_ABI Type * getWiderType(Type *Ty1, Type *Ty2) const
LLVM_ABI bool isLoopEntryGuardedByCond(const Loop *L, CmpPredicate Pred, const SCEV *LHS, const SCEV *RHS)
Test whether entry to the loop is protected by a conditional between LHS and RHS.
LLVM_ABI const SCEV * getSCEVAtScope(const SCEV *S, const Loop *L)
Return a SCEV expression for the specified value at the specified scope in the program.
LLVM_ABI const SCEV * getBackedgeTakenCount(const Loop *L, ExitCountKind Kind=Exact)
If the specified loop has a predictable backedge-taken count, return it, otherwise return a SCEVCould...
LLVM_ABI ExitLimit computeExitLimitFromCond(const Loop *L, Value *ExitCond, bool ExitIfTrue, bool ControlsOnlyExit, bool AllowPredicates=false)
Compute the number of times the backedge of the specified loop will execute if its exit condition wer...
LLVM_ABI uint64_t getTypeSizeInBits(Type *Ty) const
Return the size in bits of the specified type, for which isSCEVable must return true.
LLVM_ABI const SCEV * getSCEV(Value *V)
Return a SCEV expression for the full generality of the specified expression.
LLVM_ABI const SCEV * getMinusSCEV(SCEVUse LHS, SCEVUse RHS, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Return LHS-RHS.
const SCEV * getOne(Type *Ty)
Return a SCEV for the constant 1 of a specific type.
LLVM_ABI std::optional< bool > evaluatePredicateAt(CmpPredicate Pred, const SCEV *LHS, const SCEV *RHS, const Instruction *CtxI)
Check whether the condition described by Pred, LHS, and RHS is true or false in the given Context.
LLVM_ABI void forgetLoop(const Loop *L)
This method should be called by the client when it has changed a loop in a way that may effect Scalar...
LLVM_ABI bool isLoopInvariant(const SCEV *S, const Loop *L)
Return true if the value of the given SCEV is unchanging in the specified loop.
LLVM_ABI const SCEV * getZeroExtendExpr(const SCEV *Op, Type *Ty, unsigned Depth=0)
LLVM_ABI bool isSCEVable(Type *Ty) const
Test if values of the given type are analyzable within the SCEV framework.
LLVM_ABI Type * getEffectiveSCEVType(Type *Ty) const
Return a type with the same bitwidth as the given type and which represents how SCEV will treat the g...
ConstantRange getUnsignedRange(const SCEV *S)
Determine the unsigned range for a particular SCEV.
LLVM_ABI void forgetTopmostLoop(const Loop *L)
LLVM_ABI void forgetValue(Value *V)
This method should be called by the client when it has changed a value in a way that may effect its v...
LLVM_ABI const SCEV * getTruncateExpr(const SCEV *Op, Type *Ty, unsigned Depth=0)
const SCEV * getMinusOne(Type *Ty)
Return a SCEV for the constant -1 of a specific type.
LLVM_ABI const SCEV * getNoopOrZeroExtend(const SCEV *V, Type *Ty)
Return a SCEV corresponding to a conversion of the input value to the specified type.
LLVM_ABI const SCEV * getUMinFromMismatchedTypes(const SCEV *LHS, const SCEV *RHS, bool Sequential=false)
Promote the operands to the wider of the types using zero-extension, and then perform a umin operatio...
LLVM_ABI const SCEV * getCouldNotCompute()
LLVM_ABI const SCEV * getExitCount(const Loop *L, const BasicBlock *ExitingBlock, ExitCountKind Kind=Exact)
Return the number of times the backedge executes before the given exit would be taken; if not exactly...
LLVM_ABI const SCEV * getSignExtendExpr(const SCEV *Op, Type *Ty, unsigned Depth=0)
@ SymbolicMaximum
An expression which provides an upper bound on the exact trip count.
LLVM_ABI const SCEV * applyLoopGuards(const SCEV *Expr, const Loop *L)
Try to apply information from loop guards for L to Expr.
LLVM_ABI bool isKnownPredicateAt(CmpPredicate Pred, const SCEV *LHS, const SCEV *RHS, const Instruction *CtxI)
Test if the given expression is known to satisfy the condition described by Pred, LHS,...
const SCEV * getSymbolicMaxBackedgeTakenCount(const Loop *L)
When successful, this returns a SCEV that is greater than or equal to (i.e.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
bool erase(PtrType Ptr)
Remove pointer from the set.
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Provides information about what library functions are available for the current target.
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
bool isPointerTy() const
True if this is an instance of PointerType.
bool isIntegerTy() const
True if this is an instance of IntegerType.
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
bool hasOneUse() const
Return true if there is exactly one use of this value.
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
LLVMContext & getContext() const
All values hold a context through their type.
iterator_range< user_iterator > users()
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
LLVM_ABI void takeName(Value *V)
Transfer the name from V to this value.
Value handle that is nullable, but tries to track the Value.
const ParentTy * getParent() const
self_iterator getIterator()
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
@ BasicBlock
Various leaf nodes.
LLVM_ABI Function * getDeclarationIfExists(const Module *M, ID id)
Look up the Function declaration of the intrinsic id in the Module M and return it if it exists.
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
CastInst_match< OpTy, ZExtInst > m_ZExt(const OpTy &Op)
Matches ZExt.
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
cst_pred_ty< is_one > m_scev_One()
Match an integer 1.
specificloop_ty m_SpecificLoop(const Loop *L)
SCEVAffineAddRec_match< Op0_t, Op1_t, class_match< const Loop > > m_scev_AffineAddRec(const Op0_t &Op0, const Op1_t &Op1)
bool match(const SCEV *S, const Pattern &P)
class_match< const SCEV > m_SCEV()
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
initializer< Ty > init(const Ty &Val)
PointerTypeMap run(const Module &M)
Compute the PointerTypeMap for the module M.
@ User
could "use" a pointer
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI bool mustExecuteUBIfPoisonOnPathTo(Instruction *Root, Instruction *OnPathTo, DominatorTree *DT)
Return true if undefined behavior would provable be executed on the path to OnPathTo if Root produced...
FunctionAddr VTableAddr Value
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool RecursivelyDeleteTriviallyDeadInstructions(Value *V, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, std::function< void(Value *)> AboutToDeleteCallback=std::function< void(Value *)>())
If the specified value is a trivially dead instruction, delete it.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
FunctionAddr VTableAddr uintptr_t uintptr_t Int32Ty
PHINode * createWideIV(const WideIVInfo &WI, LoopInfo *LI, ScalarEvolution *SE, SCEVExpander &Rewriter, DominatorTree *DT, SmallVectorImpl< WeakTrackingVH > &DeadInsts, unsigned &NumElimExt, unsigned &NumWidened, bool HasGuards, bool UsePostIncrementRanges)
Widen Induction Variables - Extend the width of an IV to cover its widest uses.
constexpr bool isUIntN(unsigned N, uint64_t x)
Checks if an unsigned integer fits into the given (dynamic) bit width.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
LLVM_ABI Value * simplifyInstruction(Instruction *I, const SimplifyQuery &Q)
See if we can compute a simplified version of this instruction.
AnalysisManager< Loop, LoopStandardAnalysisResults & > LoopAnalysisManager
The loop analysis manager.
auto dyn_cast_or_null(const Y &Val)
LLVM_ABI bool DeleteDeadPHIs(BasicBlock *BB, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr)
Examine each PHI in the given block and delete it if it is dead.
auto reverse(ContainerTy &&C)
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI cl::opt< unsigned > SCEVCheapExpansionBudget
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
std::pair< bool, bool > simplifyUsersOfIV(PHINode *CurrIV, ScalarEvolution *SE, DominatorTree *DT, LoopInfo *LI, const TargetTransformInfo *TTI, SmallVectorImpl< WeakTrackingVH > &Dead, SCEVExpander &Rewriter, IVVisitor *V=nullptr)
simplifyUsersOfIV - Simplify instructions that use this induction variable by using ScalarEvolution t...
RNSuccIterator< NodeRef, BlockT, RegionT > succ_begin(NodeRef Node)
IRBuilder(LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy >
LLVM_ABI bool VerifyMemorySSA
Enables verification of MemorySSA.
@ UMin
Unsigned integer min implemented in terms of select(cmp()).
DWARFExpression::Operation Op
constexpr U AbsoluteValue(T X)
Return the absolute value of a signed integer, converted to the corresponding unsigned integer type.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI PreservedAnalyses getLoopPassPreservedAnalyses()
Returns the minimum set of Analyses that all loop passes must preserve.
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
void erase_if(Container &C, UnaryPredicate P)
Provide a container algorithm similar to C++ Library Fundamentals v2's erase_if which is equivalent t...
LLVM_ABI bool isAlmostDeadIV(PHINode *IV, BasicBlock *LatchBlock, Value *Cond)
Return true if the induction variable IV in a Loop whose latch is LatchBlock would become dead if the...
LLVM_ABI int rewriteLoopExitValues(Loop *L, LoopInfo *LI, TargetLibraryInfo *TLI, ScalarEvolution *SE, const TargetTransformInfo *TTI, SCEVExpander &Rewriter, DominatorTree *DT, ReplaceExitVal ReplaceExitValue, SmallVector< WeakTrackingVH, 16 > &DeadInsts)
If the final value of any expressions that are recurrent in the loop can be computed,...
iterator_range< pointer_iterator< WrappedIteratorT > > make_pointer_range(RangeT &&Range)
LLVM_ABI bool RecursivelyDeleteDeadPHINode(PHINode *PN, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr)
If the specified value is an effectively dead PHI node, due to being a def-use chain of single-use no...
Implement std::hash so that hash_code can be used in STL containers.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Represents a floating-point induction variable pattern that may be convertible to integer form.
FloatingPointIV(APFloat Init, APFloat Incr, APFloat Exit, FCmpInst *Compare, BinaryOperator *Add)
Represents the integer values for a converted IV.
CmpInst::Predicate NewPred
The adaptor from a function pass to a loop pass computes these analyses and makes them available to t...
TargetTransformInfo & TTI
Collect information about induction variables that are used by sign/zero extend operations.