97#define DEBUG_TYPE "licm"
99STATISTIC(NumCreatedBlocks,
"Number of blocks created");
100STATISTIC(NumClonedBranches,
"Number of branches cloned");
101STATISTIC(NumSunk,
"Number of instructions sunk out of loop");
102STATISTIC(NumHoisted,
"Number of instructions hoisted out of loop");
103STATISTIC(NumMovedLoads,
"Number of load insts hoisted or sunk");
104STATISTIC(NumMovedCalls,
"Number of call insts hoisted or sunk");
105STATISTIC(NumPromotionCandidates,
"Number of promotion candidates");
106STATISTIC(NumLoadPromoted,
"Number of load-only promotions");
107STATISTIC(NumLoadStorePromoted,
"Number of load and store promotions");
109 "Number of min/max expressions hoisted out of the loop");
111 "Number of geps reassociated and hoisted out of the loop");
112STATISTIC(NumAddSubHoisted,
"Number of add/subtract expressions reassociated "
113 "and hoisted out of the loop");
114STATISTIC(NumFPAssociationsHoisted,
"Number of invariant FP expressions "
115 "reassociated and hoisted out of the loop");
117 "Number of invariant int expressions "
118 "reassociated and hoisted out of the loop");
119STATISTIC(NumBOAssociationsHoisted,
"Number of invariant BinaryOp expressions "
120 "reassociated and hoisted out of the loop");
125 cl::desc(
"Disable memory promotion in LICM pass"));
129 cl::desc(
"Enable control flow (and PHI) hoisting in LICM"));
133 cl::desc(
"Max num uses visited for identifying load "
134 "invariance in loop using invariant start (default = 8)"));
139 "Set upper limit for the number of transformations performed "
140 "during a single round of hoisting the reassociated expressions."));
145 "Set upper limit for the number of transformations performed "
146 "during a single round of hoisting the reassociated expressions."));
158 cl::desc(
"Enable imprecision in LICM in pathological cases, in exchange "
159 "for faster compile. Caps the MemorySSA clobbering calls."));
166 cl::desc(
"[LICM & MemorySSA] When MSSA in LICM is disabled, this has no "
167 "effect. When MSSA in LICM is enabled, then this is the maximum "
168 "number of accesses allowed to be present in a loop in order to "
169 "enable memory promotion."));
175 bool &FoldableInLoop,
bool LoopNestMode);
194 bool InvariantGroup);
222 std::pair<SmallSetVector<Value *, 8>,
bool>;
229struct LoopInvariantCodeMotion {
235 LoopInvariantCodeMotion(
unsigned LicmMssaOptCap,
236 unsigned LicmMssaNoAccForPromotionCap,
237 bool LicmAllowSpeculation)
238 : LicmMssaOptCap(LicmMssaOptCap),
239 LicmMssaNoAccForPromotionCap(LicmMssaNoAccForPromotionCap),
240 LicmAllowSpeculation(LicmAllowSpeculation) {}
243 unsigned LicmMssaOptCap;
244 unsigned LicmMssaNoAccForPromotionCap;
245 bool LicmAllowSpeculation;
248struct LegacyLICMPass :
public LoopPass {
253 bool LicmAllowSpeculation =
true)
254 : LoopPass(
ID), LICM(LicmMssaOptCap, LicmMssaNoAccForPromotionCap,
255 LicmAllowSpeculation) {
259 bool runOnLoop(
Loop *L, LPPassManager &LPM)
override {
264 <<
L->getHeader()->getNameOrAsOperand() <<
"\n");
268 auto *SE = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>();
269 MemorySSA *MSSA = &getAnalysis<MemorySSAWrapperPass>().getMSSA();
273 OptimizationRemarkEmitter ORE(
L->getHeader()->getParent());
274 return LICM.runOnLoop(
275 L, &getAnalysis<AAResultsWrapperPass>().getAAResults(),
276 &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(),
277 &getAnalysis<DominatorTreeWrapperPass>().
getDomTree(),
278 &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(*
F),
279 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(*
F),
280 &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(*
F),
281 SE ? &SE->getSE() :
nullptr, MSSA, &ORE);
287 void getAnalysisUsage(AnalysisUsage &AU)
const override {
302 LoopInvariantCodeMotion LICM;
316 LoopInvariantCodeMotion LICM(Opts.MssaOptCap, Opts.MssaNoAccForPromotionCap,
317 Opts.AllowSpeculation);
318 if (!LICM.runOnLoop(&L, &AR.
AA, &AR.
LI, &AR.
DT, &AR.
AC, &AR.
TLI, &AR.
TTI,
331 OS, MapClassName2PassName);
334 OS << (Opts.AllowSpeculation ?
"" :
"no-") <<
"allowspeculation";
349 LoopInvariantCodeMotion LICM(Opts.MssaOptCap, Opts.MssaNoAccForPromotionCap,
350 Opts.AllowSpeculation);
353 bool Changed = LICM.runOnLoop(&OutermostLoop, &AR.
AA, &AR.
LI, &AR.
DT, &AR.
AC,
370 static_cast<PassInfoMixin<LNICMPass> *
>(
this)->
printPipeline(
371 OS, MapClassName2PassName);
374 OS << (Opts.AllowSpeculation ?
"" :
"no-") <<
"allowspeculation";
378char LegacyLICMPass::ID = 0;
402 unsigned AccessCapCount = 0;
403 for (
auto *BB : L.getBlocks())
427 assert(L->isLCSSAForm(*DT) &&
"Loop is not in LCSSA form.");
445 using namespace PatternMatch;
446 return any_of(make_pointer_range(*BB),
447 match_fn(m_Intrinsic<Intrinsic::coro_suspend>()));
455 BasicBlock *Preheader = L->getLoopPreheader();
469 if (L->hasDedicatedExits())
473 TLI,
TTI, L, MSSAU, &SafetyInfo, Flags, ORE)
475 MSSAU, &SafetyInfo, Flags, ORE);
476 Flags.setIsSink(
false);
479 MSSAU, SE, &SafetyInfo, Flags, ORE, LoopNestMode,
480 LicmAllowSpeculation);
490 !Flags.tooManyMemoryAccesses() && !HasCoroSuspendInst) {
492 SmallVector<BasicBlock *, 8> ExitBlocks;
493 L->getUniqueExitBlocks(ExitBlocks);
496 bool HasCatchSwitch = llvm::any_of(ExitBlocks, [](BasicBlock *Exit) {
497 return isa<CatchSwitchInst>(Exit->getTerminator());
500 if (!HasCatchSwitch) {
503 InsertPts.
reserve(ExitBlocks.size());
504 MSSAInsertPts.
reserve(ExitBlocks.size());
506 InsertPts.
push_back(ExitBlock->getFirstInsertionPt());
514 bool Promoted =
false;
517 LocalPromoted =
false;
518 for (
auto [PointerMustAliases, HasReadsOutsideSet] :
521 PointerMustAliases, ExitBlocks, InsertPts, MSSAInsertPts,
PIC, LI,
522 DT, AC, TLI,
TTI, L, MSSAU, &SafetyInfo, ORE,
523 LicmAllowSpeculation, HasReadsOutsideSet);
525 Promoted |= LocalPromoted;
526 }
while (LocalPromoted);
544 assert(
L->isLCSSAForm(*DT) &&
"Loop not left in LCSSA form after LICM!");
545 assert((
L->isOutermost() ||
L->getParentLoop()->isLCSSAForm(*DT)) &&
546 "Parent loop not left in LCSSA form after LICM!");
569 assert(
N !=
nullptr &&
AA !=
nullptr && LI !=
nullptr && DT !=
nullptr &&
570 CurLoop !=
nullptr && SafetyInfo !=
nullptr &&
571 "Unexpected input to sinkRegion.");
605 bool FoldableInLoop =
false;
606 bool LoopNestMode = OutermostLoop !=
nullptr;
607 if (!
I.mayHaveSideEffects() &&
609 SafetyInfo,
TTI, FoldableInLoop,
612 if (
sink(
I, LI, DT, CurLoop, SafetyInfo, MSSAU, ORE)) {
613 if (!FoldableInLoop) {
640 while (!Worklist.
empty()) {
643 MSSAU, SafetyInfo, Flags, ORE, CurLoop);
656class ControlFlowHoister {
675 : LI(LI), DT(DT), CurLoop(CurLoop), MSSAU(MSSAU) {}
677 void registerPossiblyHoistableBranch(CondBrInst *BI) {
688 TrueDest == FalseDest)
701 if (TrueDestSucc.count(FalseDest)) {
702 CommonSucc = FalseDest;
703 }
else if (FalseDestSucc.count(TrueDest)) {
704 CommonSucc = TrueDest;
708 if (TrueDestSucc.size() == 1)
709 CommonSucc = *TrueDestSucc.
begin();
713 else if (!TrueDestSucc.empty()) {
715 auto IsSucc = [&](
BasicBlock &BB) {
return TrueDestSucc.count(&BB); };
717 assert(It !=
F->end() &&
"Could not find successor in function");
729 if (CommonSucc && DT->
dominates(BI, CommonSucc))
730 HoistableBranches[BI] = CommonSucc;
733 bool canHoistPHI(PHINode *PN) {
747 if (PredecessorBlocks.size() !=
pred_size(BB))
749 for (
auto &Pair : HoistableBranches) {
750 if (Pair.second == BB) {
753 if (Pair.first->getSuccessor(0) == BB) {
754 PredecessorBlocks.erase(Pair.first->getParent());
755 PredecessorBlocks.erase(Pair.first->getSuccessor(1));
756 }
else if (Pair.first->getSuccessor(1) == BB) {
757 PredecessorBlocks.erase(Pair.first->getParent());
758 PredecessorBlocks.erase(Pair.first->getSuccessor(0));
760 PredecessorBlocks.erase(Pair.first->getSuccessor(0));
761 PredecessorBlocks.erase(Pair.first->getSuccessor(1));
767 return PredecessorBlocks.empty();
770 BasicBlock *getOrCreateHoistedBlock(BasicBlock *BB) {
774 if (
auto It = HoistDestinationMap.
find(BB); It != HoistDestinationMap.
end())
778 auto HasBBAsSuccessor =
779 [&](DenseMap<CondBrInst *, BasicBlock *>::value_type &Pair) {
780 return BB != Pair.second && (Pair.first->getSuccessor(0) == BB ||
781 Pair.first->getSuccessor(1) == BB);
783 auto It =
llvm::find_if(HoistableBranches, HasBBAsSuccessor);
787 if (It == HoistableBranches.end()) {
790 <<
" as hoist destination for "
792 HoistDestinationMap[BB] = InitialPreheader;
793 return InitialPreheader;
795 CondBrInst *BI = It->first;
796 assert(std::none_of(std::next(It), HoistableBranches.end(),
798 "BB is expected to be the target of at most one branch");
803 BasicBlock *CommonSucc = HoistableBranches[BI];
807 auto CreateHoistedBlock = [&](
BasicBlock *Orig) {
819 <<
" as hoist destination for " << Orig->getName()
823 BasicBlock *HoistTrueDest = CreateHoistedBlock(TrueDest);
824 BasicBlock *HoistFalseDest = CreateHoistedBlock(FalseDest);
825 BasicBlock *HoistCommonSucc = CreateHoistedBlock(CommonSucc);
832 assert(TargetSucc &&
"Expected hoist target to have a single successor");
847 if (HoistTarget == InitialPreheader) {
858 for (
auto &Pair : HoistDestinationMap)
859 if (Pair.second == InitialPreheader && Pair.first != BI->
getParent())
860 Pair.second = HoistCommonSucc;
870 NewBI->copyMetadata(*BI, {LLVMContext::MD_prof});
878 "Hoisting blocks should not have destroyed preheader");
879 return HoistDestinationMap[BB];
896 bool AllowSpeculation) {
898 assert(
N !=
nullptr &&
AA !=
nullptr && LI !=
nullptr && DT !=
nullptr &&
899 CurLoop !=
nullptr && SafetyInfo !=
nullptr &&
900 "Unexpected input to hoistRegion.");
902 ControlFlowHoister CFH(LI, DT, CurLoop, MSSAU);
918 if (!LoopNestMode &&
inSubLoop(BB, CurLoop, LI))
933 hoist(
I, DT, CurLoop, CFH.getOrCreateHoistedBlock(BB), SafetyInfo,
942 CFH.getOrCreateHoistedBlock(BB), SafetyInfo,
943 MSSAU, SE, ORE, HoistedInstructions)) {
950 if (
I.getOpcode() == Instruction::FDiv &&
I.hasAllowReciprocal() &&
952 auto Divisor =
I.getOperand(1);
953 auto One = llvm::ConstantFP::get(Divisor->getType(), 1.0);
954 auto ReciprocalDivisor = BinaryOperator::CreateFDiv(One, Divisor);
955 ReciprocalDivisor->setFastMathFlags(
I.getFastMathFlags());
957 ReciprocalDivisor->insertBefore(
I.getIterator());
958 ReciprocalDivisor->setDebugLoc(
I.getDebugLoc());
961 BinaryOperator::CreateFMul(
I.getOperand(0), ReciprocalDivisor);
962 Product->setFastMathFlags(
I.getFastMathFlags());
964 Product->insertAfter(
I.getIterator());
965 Product->setDebugLoc(
I.getDebugLoc());
966 I.replaceAllUsesWith(Product);
969 hoist(*ReciprocalDivisor, DT, CurLoop, CFH.getOrCreateHoistedBlock(BB),
970 SafetyInfo, MSSAU, SE, ORE);
971 HoistedInstructions.
push_back(ReciprocalDivisor);
978 return I.use_empty() &&
981 auto MustExecuteWithoutWritesBefore = [&](
Instruction &
I) {
985 if ((IsInvariantStart(
I) ||
isGuard(&
I)) &&
987 MustExecuteWithoutWritesBefore(
I)) {
988 hoist(
I, DT, CurLoop, CFH.getOrCreateHoistedBlock(BB), SafetyInfo,
996 if (CFH.canHoistPHI(PN)) {
1002 hoist(*PN, DT, CurLoop, CFH.getOrCreateHoistedBlock(BB), SafetyInfo,
1020 CFH.registerPossiblyHoistableBranch(BI);
1035 [&](
Use &U) { return DT->dominates(I, U); })) {
1041 "New hoist point expected to dominate old hoist point");
1045 << HoistPoint->
getParent()->getNameOrAsOperand()
1046 <<
": " << *
I <<
"\n");
1059#ifdef EXPENSIVE_CHECKS
1061 assert(DT->
verify(DominatorTree::VerificationLevel::Fast) &&
1062 "Dominator tree verification failed");
1070static std::optional<uint64_t>
1075 return std::nullopt;
1079 if (InsertedIdxCI->isNegative() ||
1080 InsertedIdxCI->getValue().uge(
1081 VecTy->getElementCount().getKnownMinValue()))
1082 return std::nullopt;
1083 return InsertedIdxCI->getValue().getLimitedValue();
1114 if (!InnerIns || InnerIns->getParent() != Ins->
getParent())
1119 if (!InsertIdx || *InsertIdx == *HoistIdx)
1123 if (!InnerIns->hasOneUse())
1138 hoist(*Ins, DT, CurLoop, HoistDest, SafetyInfo, MSSAU, SE, ORE);
1170 unsigned UsesVisited = 0;
1173 for (
auto *U : Addr->
users()) {
1180 if (!
II ||
II->getIntrinsicID() != Intrinsic::invariant_start ||
1218 for (
auto *BB : L->getBlocks())
1221 for (
const auto &Acc : *Accs) {
1225 if (MUD->getMemoryInst() !=
I || NotAPhi++ == 1)
1237 if (Flags.tooManyClobberingCalls())
1242 Flags.incrementClobberingCalls();
1248 bool TargetExecutesOncePerLoop,
1258 if (LI.
hasMetadata(LLVMContext::MD_invariant_load))
1261 if (LI.
isAtomic() && !TargetExecutesOncePerLoop)
1270 bool InvariantGroup = LI.
hasMetadata(LLVMContext::MD_invariant_group);
1279 DEBUG_TYPE,
"LoadWithLoopInvariantAddressInvalidated", &LI)
1280 <<
"failed to move load with loop-invariant address "
1281 "because the loop may invalidate its value";
1284 return !Invalidated;
1289 bool TargetExecutesOncePerLoop,
1299 return canHoistLoad(*LI,
AA, DT, CurLoop, *MSSA, TargetExecutesOncePerLoop,
1310 if (CI->isConvergent())
1318 if (CI->getFunction()->isPresplitCoroutine())
1341 MSSA, MU, CurLoop,
I, Flags,
false);
1356 if (!
SI->isUnordered())
1369 assert(!
I.mayReadOrWriteMemory() &&
"unhandled aliasing");
1401 for (
const User *U :
GEP->users()) {
1423 bool &FoldableInLoop,
bool LoopNestMode) {
1425 for (
const User *U :
I.users()) {
1437 if (!BlockColors.empty() &&
1438 BlockColors.find(
const_cast<BasicBlock *
>(BB))->second.size() != 1)
1454 FoldableInLoop =
true;
1474 for (
unsigned BundleIdx = 0, BundleEnd = CI->getNumOperandBundles();
1475 BundleIdx != BundleEnd; ++BundleIdx) {
1483 if (!BlockColors.empty()) {
1484 const ColorVector &CV = BlockColors.find(&ExitBlock)->second;
1485 assert(CV.
size() == 1 &&
"non-unique color for exit block!");
1488 if (EHPad->isEHPad())
1493 New->copyMetadata(*CI);
1499 if (!
I.getName().empty())
1500 New->setName(
I.getName() +
".le");
1526 for (
Use &
Op : New->operands())
1531 OInst->getName() +
".lcssa");
1544 I.eraseFromParent();
1553 I.moveBefore(*Dest->getParent(), Dest);
1568 "Expect only trivially replaceable PHI");
1570 auto [It, Inserted] = SunkCopies.
try_emplace(ExitBlock);
1605 assert(ExitBlockSet.
count(ExitBB) &&
"Expect the PHI is in an exit block.");
1642 while (!PredBBs.
empty()) {
1645 "Expect all predecessors are in the loop");
1648 ExitBB, PredBB,
".split.loop.exit", &DTU, LI, MSSAU,
true);
1652 if (!BlockColors.empty())
1679 Use &U = UI.getUse();
1717 UI =
I.user_begin();
1721 if (VisitedUsers.
empty())
1726 <<
"sinking " <<
ore::NV(
"Inst", &
I);
1749 for (
auto *UI :
Users) {
1757 "The LCSSA PHI is not in an exit block!");
1761 PN, &
I, LI, SunkCopies, SafetyInfo, CurLoop, MSSAU);
1763 New->dropLocation();
1798 I.dropUBImplyingAttrsAndMetadata();
1809 I.updateLocationAfterHoist();
1826 if (AllowSpeculation &&
1832 if (!GuaranteedToExecute) {
1837 DEBUG_TYPE,
"LoadWithLoopInvariantAddressCondExecuted", LI)
1838 <<
"failed to hoist load with loop-invariant address "
1839 "because load is conditionally executed";
1843 return GuaranteedToExecute;
1849 SmallVectorImpl<BasicBlock *> &LoopExitBlocks;
1850 SmallVectorImpl<BasicBlock::iterator> &LoopInsertPts;
1851 SmallVectorImpl<MemoryAccess *> &MSSAInsertPts;
1852 PredIteratorCache &PredCache;
1853 MemorySSAUpdater &MSSAU;
1857 bool UnorderedAtomic;
1859 ICFLoopSafetyInfo &SafetyInfo;
1860 bool CanInsertStoresInExitBlocks;
1866 Value *maybeInsertLCSSAPHI(
Value *V, BasicBlock *BB)
const {
1874 I->getName() +
".lcssa");
1876 for (BasicBlock *Pred : PredCache.
get(BB))
1883 SmallVectorImpl<BasicBlock *> &LEB,
1884 SmallVectorImpl<BasicBlock::iterator> &LIP,
1885 SmallVectorImpl<MemoryAccess *> &MSSAIP, PredIteratorCache &
PIC,
1886 MemorySSAUpdater &MSSAU, LoopInfo &li,
DebugLoc dl,
1887 Align Alignment,
bool UnorderedAtomic,
const AAMDNodes &AATags,
1888 ICFLoopSafetyInfo &SafetyInfo,
bool CanInsertStoresInExitBlocks)
1889 : LoadAndStorePromoter(Insts, S), SomePtr(
SP), LoopExitBlocks(LEB),
1890 LoopInsertPts(LIP), MSSAInsertPts(MSSAIP), PredCache(
PIC), MSSAU(MSSAU),
1892 UnorderedAtomic(UnorderedAtomic), AATags(AATags),
1893 SafetyInfo(SafetyInfo),
1894 CanInsertStoresInExitBlocks(CanInsertStoresInExitBlocks),
Uses(Insts) {}
1896 void insertStoresInLoopExitBlocks() {
1901 DIAssignID *NewID =
nullptr;
1902 for (
unsigned i = 0, e = LoopExitBlocks.
size(); i != e; ++i) {
1904 Value *LiveInValue =
SSA.GetValueInMiddleOfBlock(ExitBlock);
1905 LiveInValue = maybeInsertLCSSAPHI(LiveInValue, ExitBlock);
1906 Value *Ptr = maybeInsertLCSSAPHI(SomePtr, ExitBlock);
1908 StoreInst *NewSI =
new StoreInst(LiveInValue, Ptr, InsertPos);
1909 if (UnorderedAtomic)
1925 NewSI->
setMetadata(LLVMContext::MD_DIAssignID, NewID);
1931 MemoryAccess *MSSAInsertPoint = MSSAInsertPts[i];
1932 MemoryAccess *NewMemAcc;
1933 if (!MSSAInsertPoint) {
1935 NewSI,
nullptr, NewSI->
getParent(), MemorySSA::Beginning);
1940 MSSAInsertPts[i] = NewMemAcc;
1946 void doExtraRewritesBeforeFinalDeletion()
override {
1947 if (CanInsertStoresInExitBlocks)
1948 insertStoresInLoopExitBlocks();
1951 void instructionDeleted(Instruction *
I)
const override {
1956 bool shouldDelete(Instruction *
I)
const override {
1958 return CanInsertStoresInExitBlocks;
1963bool isNotCapturedBeforeOrInLoop(
const Value *V,
const Loop *L,
1970 V,
true,
L->getHeader()->getTerminator(), DT,
1976bool isNotVisibleOnUnwindInLoop(
const Value *Object,
const Loop *L,
1978 bool RequiresNoCaptureBeforeUnwind;
1982 return !RequiresNoCaptureBeforeUnwind ||
1983 isNotCapturedBeforeOrInLoop(Object, L, DT);
1986bool isThreadLocalObject(
const Value *Object,
const Loop *L,
1991 isNotCapturedBeforeOrInLoop(Object, L, DT))
1995 const Module *
M =
L->getHeader()->getModule();
2015 bool HasReadsOutsideSet) {
2017 assert(LI !=
nullptr && DT !=
nullptr && CurLoop !=
nullptr &&
2018 SafetyInfo !=
nullptr &&
2019 "Unexpected Input to promoteLoopAccessesToScalars");
2022 dbgs() <<
"Trying to promote set of must-aliased pointers:\n";
2023 for (
Value *Ptr : PointerMustAliases)
2024 dbgs() <<
" " << *Ptr <<
"\n";
2026 ++NumPromotionCandidates;
2028 Value *SomePtr = *PointerMustAliases.
begin();
2068 bool DereferenceableInPH =
false;
2069 bool StoreIsGuaranteedToExecute =
false;
2070 bool LoadIsGuaranteedToExecute =
false;
2071 bool FoundLoadToPromote =
false;
2078 } StoreSafety = StoreSafetyUnknown;
2086 bool SawUnorderedAtomic =
false;
2087 bool SawNotAtomic =
false;
2094 if (HasReadsOutsideSet)
2095 StoreSafety = StoreUnsafe;
2104 if (!isNotVisibleOnUnwindInLoop(Object, CurLoop, DT))
2105 StoreSafety = StoreUnsafe;
2111 Type *AccessTy =
nullptr;
2112 for (
Value *ASIV : PointerMustAliases) {
2122 if (!
Load->isUnordered())
2125 SawUnorderedAtomic |=
Load->isAtomic();
2126 SawNotAtomic |= !
Load->isAtomic();
2127 FoundLoadToPromote =
true;
2131 if (!LoadIsGuaranteedToExecute)
2132 LoadIsGuaranteedToExecute =
2139 if (!DereferenceableInPH || (InstAlignment > Alignment))
2141 *
Load, DT, TLI, CurLoop, SafetyInfo, ORE,
2143 DereferenceableInPH =
true;
2144 Alignment = std::max(Alignment, InstAlignment);
2151 if (!
Store->isUnordered())
2154 SawUnorderedAtomic |=
Store->isAtomic();
2155 SawNotAtomic |= !
Store->isAtomic();
2164 StoreIsGuaranteedToExecute |= GuaranteedToExecute;
2165 if (GuaranteedToExecute) {
2166 DereferenceableInPH =
true;
2167 if (StoreSafety == StoreSafetyUnknown)
2168 StoreSafety = StoreSafe;
2169 Alignment = std::max(Alignment, InstAlignment);
2178 if (StoreSafety == StoreSafetyUnknown &&
2182 StoreSafety = StoreSafe;
2186 if (!DereferenceableInPH) {
2188 Store->getPointerOperand(),
Store->getValueOperand()->getType(),
2201 if (LoopUses.
empty()) {
2204 }
else if (AATags) {
2216 if (SawUnorderedAtomic && SawNotAtomic)
2226 if (!DereferenceableInPH) {
2227 LLVM_DEBUG(
dbgs() <<
"Not promoting: Not dereferenceable in preheader\n");
2235 if (StoreSafety == StoreSafetyUnknown) {
2237 bool ExplicitlyDereferenceableOnly;
2242 (!ExplicitlyDereferenceableOnly ||
2245 isThreadLocalObject(Object, CurLoop, DT))
2246 StoreSafety = StoreSafe;
2251 if (StoreSafety != StoreSafe && !FoundLoadToPromote)
2256 if (StoreSafety == StoreSafe) {
2257 LLVM_DEBUG(
dbgs() <<
"LICM: Promoting load/store of the value: " << *SomePtr
2259 ++NumLoadStorePromoted;
2261 LLVM_DEBUG(
dbgs() <<
"LICM: Promoting load of the value: " << *SomePtr
2269 <<
"Moving accesses to memory location out of the loop";
2273 std::vector<DebugLoc> LoopUsesLocs;
2274 for (
auto U : LoopUses)
2275 LoopUsesLocs.push_back(U->getDebugLoc());
2281 LoopPromoter Promoter(SomePtr, LoopUses,
SSA, ExitBlocks, InsertPts,
2282 MSSAInsertPts,
PIC, MSSAU, *LI,
DL, Alignment,
2284 StoreIsGuaranteedToExecute ? AATags :
AAMDNodes(),
2285 *SafetyInfo, StoreSafety == StoreSafe);
2290 if (FoundLoadToPromote || !StoreIsGuaranteedToExecute) {
2294 if (SawUnorderedAtomic)
2298 if (AATags && LoadIsGuaranteedToExecute)
2305 SSA.AddAvailableValue(Preheader, PreheaderLoad);
2314 Promoter.run(LoopUses);
2319 if (PreheaderLoad && PreheaderLoad->
use_empty())
2331 Fn(MUD->getMemoryInst());
2338 const Value *PtrOp =
SI->getPointerOperand();
2344 const Value *PtrOp = LI->getPointerOperand();
2368 L->getExitingBlocks(ExitingBlocks);
2381 return StoresWithInvariantAATags;
2395 std::optional<SmallPtrSet<const StoreInst *, 8>> StoresWithInvariantAATags;
2396 auto HasInvariantAATags = [&](
const StoreInst *
SI) {
2397 if (!StoresWithInvariantAATags)
2399 return StoresWithInvariantAATags->contains(
SI);
2406 AttemptingPromotion.
insert(
I);
2408 SI &&
SI->getAAMetadata() &&
2410 !HasInvariantAATags(
SI)) {
2426 if (!AS.isForwardingAliasSet() && AS.isMod() && AS.isMustAlias())
2454 for (
auto [Set, HasReadsOutsideSet] : Sets) {
2456 for (
const auto &MemLoc : *Set)
2457 PointerMustAliases.
insert(
const_cast<Value *
>(MemLoc.Ptr));
2458 Result.emplace_back(std::move(PointerMustAliases), HasReadsOutsideSet);
2473 if (Flags.tooManyMemoryAccesses())
2492 if (!Flags.getIsSink() && MSSA->
dominates(IMD, &MA))
2510 bool InvariantGroup) {
2512 if (!Flags.getIsSink()) {
2525 CurLoop->
contains(Source->getBlock()) &&
2546 if (Flags.tooManyMemoryAccesses())
2574 Value *Cond1, *Cond2;
2586 if (!
LHS->getType()->isIntegerTy())
2590 if (L.isLoopInvariant(
LHS)) {
2594 if (L.isLoopInvariant(
LHS) || !L.isLoopInvariant(
RHS))
2601 Value *LHS1, *LHS2, *RHS1, *RHS2;
2602 if (!MatchICmpAgainstInvariant(Cond1, P1, LHS1, RHS1) ||
2603 !MatchICmpAgainstInvariant(Cond2, P2, LHS2, RHS2))
2606 if (!MatchingPred || LHS1 != LHS2)
2614 "Relational predicate is either less (or equal) or greater (or equal)!");
2616 ? (UseMin ? Intrinsic::smin : Intrinsic::smax)
2617 : (UseMin ? Intrinsic::umin : Intrinsic::umax);
2618 auto *Preheader = L.getLoopPreheader();
2619 assert(Preheader &&
"Loop is not in simplify form?");
2626 RHS2 = Builder.CreateFreeze(RHS2, RHS2->
getName() +
".fr");
2627 Value *NewRHS = Builder.CreateBinaryIntrinsic(
2628 id, RHS1, RHS2,
nullptr,
2631 (UseMin ?
"min" :
"max"));
2632 Builder.SetInsertPoint(&
I);
2636 Value *NewCond = Builder.CreateICmp(
P, LHS1, NewRHS);
2638 I.replaceAllUsesWith(NewCond);
2661 if (
GEP->hasAllConstantIndices())
2665 if (!Src || !Src->hasOneUse() || !L.contains(Src))
2668 Value *SrcPtr = Src->getPointerOperand();
2669 auto LoopInvariant = [&](
Value *V) {
return L.isLoopInvariant(V); };
2670 if (!L.isLoopInvariant(SrcPtr) || !
all_of(
GEP->indices(), LoopInvariant))
2677 if (
all_of(Src->indices(), LoopInvariant))
2687 bool IsInBounds = Src->isInBounds() &&
GEP->isInBounds() &&
2691 BasicBlock *Preheader = L.getLoopPreheader();
2693 Value *NewSrc = Builder.CreateGEP(
GEP->getSourceElementType(), SrcPtr,
2695 "invariant.gep", IsInBounds);
2696 Builder.SetInsertPoint(
GEP);
2697 Value *NewGEP = Builder.CreateGEP(Src->getSourceElementType(), NewSrc,
2700 GEP->replaceAllUsesWith(NewGEP);
2713 assert(!L.isLoopInvariant(VariantLHS) &&
"Precondition.");
2714 assert(L.isLoopInvariant(InvariantRHS) &&
"Precondition.");
2720 Value *VariantOp, *InvariantOp;
2730 if (L.isLoopInvariant(VariantOp))
2732 if (L.isLoopInvariant(VariantOp) || !L.isLoopInvariant(InvariantOp))
2739 auto &
DL = L.getHeader()->getDataLayout();
2748 auto *Preheader = L.getLoopPreheader();
2749 assert(Preheader &&
"Loop is not in simplify form?");
2752 Builder.CreateSub(InvariantRHS, InvariantOp,
"invariant.op",
2753 !IsSigned, IsSigned);
2774 assert(!L.isLoopInvariant(VariantLHS) &&
"Precondition.");
2775 assert(L.isLoopInvariant(InvariantRHS) &&
"Precondition.");
2781 Value *VariantOp, *InvariantOp;
2789 bool VariantSubtracted =
false;
2793 if (L.isLoopInvariant(VariantOp)) {
2795 VariantSubtracted =
true;
2798 if (L.isLoopInvariant(VariantOp) || !L.isLoopInvariant(InvariantOp))
2806 auto &
DL = L.getHeader()->getDataLayout();
2808 if (VariantSubtracted && IsSigned) {
2813 }
else if (VariantSubtracted && !IsSigned) {
2818 }
else if (!VariantSubtracted && IsSigned) {
2829 auto *Preheader = L.getLoopPreheader();
2830 assert(Preheader &&
"Loop is not in simplify form?");
2834 ? Builder.CreateSub(InvariantOp, InvariantRHS,
"invariant.op",
2835 !IsSigned, IsSigned)
2836 : Builder.CreateAdd(InvariantOp, InvariantRHS,
"invariant.op",
2837 !IsSigned, IsSigned);
2862 if (L.isLoopInvariant(
LHS)) {
2868 if (L.isLoopInvariant(
LHS) || !L.isLoopInvariant(
RHS) || !
LHS->hasOneUse())
2883 unsigned FPOpcode) {
2884 if (
I->getOpcode() == IntOpcode)
2886 if (
I->getOpcode() == FPOpcode &&
I->hasAllowReassoc() &&
2887 I->hasNoSignedZeros())
2903 Value *VariantOp =
I.getOperand(0);
2904 Value *InvariantOp =
I.getOperand(1);
2905 if (L.isLoopInvariant(VariantOp))
2907 if (L.isLoopInvariant(VariantOp) || !L.isLoopInvariant(InvariantOp))
2909 Value *Factor = InvariantOp;
2917 while (!Worklist.
empty()) {
2930 L.isLoopInvariant(BO))
2934 if (L.isLoopInvariant(U0))
2936 else if (L.isLoopInvariant(U1))
2940 unsigned Limit =
I.getType()->isIntOrIntVectorTy()
2943 if (Changes.
size() > Limit)
2946 if (Changes.
empty())
2950 if (
I.getType()->isIntOrIntVectorTy()) {
2951 for (
auto *
Add : Adds)
2952 Add->dropPoisonGeneratingFlags();
2956 auto *Preheader = L.getLoopPreheader();
2957 assert(Preheader &&
"Loop is not in simplify form?");
2959 for (
auto *U : Changes) {
2960 assert(L.isLoopInvariant(U->get()));
2963 if (
I.getType()->isIntOrIntVectorTy()) {
2964 Mul = Builder.CreateMul(U->get(), Factor,
"factor.op.mul");
2966 Ins->dropPoisonGeneratingFlags();
2968 Mul = Builder.CreateFMulFMF(U->get(), Factor, Ins,
"factor.op.fmul");
2971 unsigned OpIdx = U->getOperandNo();
2972 auto *
LHS = OpIdx == 0 ?
Mul : Ins->getOperand(0);
2973 auto *
RHS = OpIdx == 1 ?
Mul : Ins->getOperand(1);
2976 Ins->getName() +
".reass", Ins->getIterator());
2978 NewBO->copyIRFlags(Ins);
2979 if (VariantOp == Ins)
2985 I.replaceAllUsesWith(VariantOp);
3005 if (!BO || !BO->isAssociative())
3009 bool LVInRHS = L.isLoopInvariant(BO->getOperand(0));
3011 if (!BO0 || BO0->getOpcode() != Opcode || !BO0->isAssociative() ||
3012 BO0->hasNUsesOrMore(BO0->getType()->isIntegerTy() ? 2 : 3))
3015 Value *LV = BO0->getOperand(0);
3016 Value *C1 = BO0->getOperand(1);
3017 Value *C2 = BO->getOperand(!LVInRHS);
3019 assert(BO->isCommutative() && BO0->isCommutative() &&
3020 "Associativity implies commutativity");
3021 if (L.isLoopInvariant(LV) && !L.isLoopInvariant(C1))
3023 if (L.isLoopInvariant(LV) || !L.isLoopInvariant(C1) || !L.isLoopInvariant(C2))
3026 auto *Preheader = L.getLoopPreheader();
3027 assert(Preheader &&
"Loop is not in simplify form?");
3030 auto *Inv = Builder.CreateBinOp(Opcode, C1, C2,
"invariant.op");
3033 Opcode, LV, Inv, BO->
getName() +
".reass", BO->getIterator());
3036 if (Opcode == Instruction::FAdd || Opcode == Instruction::FMul) {
3038 FastMathFlags Intersect = BO->getFastMathFlags() & BO0->getFastMathFlags();
3040 I->setFastMathFlags(Intersect);
3041 NewBO->setFastMathFlags(Intersect);
3045 Flags.AllKnownNonZero =
false;
3046 Flags.mergeFlags(*BO);
3047 Flags.mergeFlags(*BO0);
3050 Flags.applyFlags(*
I);
3051 Flags.applyFlags(*NewBO);
3054 BO->replaceAllUsesWith(NewBO);
3059 if (BO0->use_empty()) {
3083 Value *LV, *C1, *C2;
3103 if (L.isLoopInvariant(LV) && !L.isLoopInvariant(C1))
3105 InvOp = Instruction::Sub;
3106 ResultOp = Instruction::Add;
3111 InvOp = Instruction::Add;
3112 ResultOp = Instruction::Sub;
3122 InvOp = Instruction::Sub;
3123 ResultOp = Instruction::Add;
3128 if (L.isLoopInvariant(LV) || !L.isLoopInvariant(C1) || !L.isLoopInvariant(C2))
3131 auto *Preheader = L.getLoopPreheader();
3132 assert(Preheader &&
"Loop is not in simplify form?");
3135 auto *Inv = Builder.CreateBinOp(InvOp, C1, C2,
"invariant.op");
3138 I.getName() +
".reass",
I.getIterator());
3144 I.replaceAllUsesWith(NewBO);
3167 if (
hoistGEP(
I, L, SafetyInfo, MSSAU, AC, DT)) {
3180 bool IsInt =
I.getType()->isIntOrIntVectorTy();
3184 ++NumIntAssociationsHoisted;
3186 ++NumFPAssociationsHoisted;
3192 ++NumBOAssociationsHoisted;
3198 ++NumBOAssociationsHoisted;
3209 assert(CurLoop->
contains(BB) &&
"Only valid if BB is IN the loop");
for(const MachineOperand &MO :llvm::drop_begin(OldMI.operands(), Desc.getNumOperands()))
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static msgpack::DocNode getNode(msgpack::DocNode DN, msgpack::Type Type, MCValue Val)
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
DXIL Forward Handle Accesses
This file defines the DenseMap class.
early cse Early CSE w MemorySSA
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
iv Induction Variable Users
static bool isReassociableOp(Instruction *I, unsigned IntOpcode, unsigned FPOpcode)
static bool isNotUsedOrFoldableInLoop(const Instruction &I, const Loop *CurLoop, const LoopSafetyInfo *SafetyInfo, TargetTransformInfo *TTI, bool &FoldableInLoop, bool LoopNestMode)
Return true if the only users of this instruction are outside of the loop.
static bool hoistGEP(Instruction &I, Loop &L, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU, AssumptionCache *AC, DominatorTree *DT)
Reassociate gep (gep ptr, idx1), idx2 to gep (gep ptr, idx2), idx1 if this allows hoisting the inner ...
static void splitPredecessorsOfLoopExit(PHINode *PN, DominatorTree *DT, LoopInfo *LI, const Loop *CurLoop, LoopSafetyInfo *SafetyInfo, MemorySSAUpdater *MSSAU)
static bool hoistInsertPastInsert(InsertElementInst *Ins, Loop *CurLoop, DominatorTree *DT, BasicBlock *HoistDest, ICFLoopSafetyInfo *SafetyInfo, MemorySSAUpdater &MSSAU, ScalarEvolution *SE, OptimizationRemarkEmitter *ORE, SmallVectorImpl< Instruction * > &HoistedInstructions)
static cl::opt< unsigned > FPAssociationUpperLimit("licm-max-num-fp-reassociations", cl::init(5U), cl::Hidden, cl::desc("Set upper limit for the number of transformations performed " "during a single round of hoisting the reassociated expressions."))
static bool isFoldableInLoop(const Instruction &I, const Loop *CurLoop, const TargetTransformInfo *TTI)
Return true if the instruction is foldable in the loop.
static SmallPtrSet< const StoreInst *, 8 > collectStoresWithInvariantAATags(MemorySSA *MSSA, DominatorTree *DT, Loop *L)
Returns the potentially promotable stores with AA tags that are valid along all non-unwinding executi...
static bool hoistMinMax(Instruction &I, Loop &L, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU)
Try to simplify things like (A < INV_1 AND icmp A < INV_2) into (A < min(INV_1, INV_2)),...
static void moveInstructionBefore(Instruction &I, BasicBlock::iterator Dest, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU, ScalarEvolution *SE)
static Instruction * cloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN, const LoopInfo *LI, const LoopSafetyInfo *SafetyInfo, MemorySSAUpdater &MSSAU)
static cl::opt< bool > ControlFlowHoisting("licm-control-flow-hoisting", cl::Hidden, cl::init(false), cl::desc("Enable control flow (and PHI) hoisting in LICM"))
static bool pointerInvalidatedByLoop(MemorySSA *MSSA, MemoryUse *MU, Loop *CurLoop, Instruction &I, SinkAndHoistLICMFlags &Flags, bool InvariantGroup)
static bool hoistSubAddAssociation(Instruction &I, Loop &L, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU, AssumptionCache *AC, DominatorTree *DT)
Reassociate add/sub expressions of the form:
static SmallVector< PointersAndHasReadsOutsideSet, 0 > collectPromotionCandidates(MemorySSA *MSSA, AliasAnalysis *AA, DominatorTree *DT, ICFLoopSafetyInfo *SafetyInfo, Loop *L)
static bool hoistAdd(ICmpInst::Predicate Pred, Value *VariantLHS, Value *InvariantRHS, ICmpInst &ICmp, Loop &L, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU, AssumptionCache *AC, DominatorTree *DT)
Try to turn things like "LV + C1 < C2" into "LV < C2 - C1".
static MemoryAccess * getClobberingMemoryAccess(MemorySSA &MSSA, BatchAAResults &BAA, SinkAndHoistLICMFlags &Flags, MemoryUseOrDef *MA)
static void hoist(Instruction &I, const DominatorTree *DT, const Loop *CurLoop, BasicBlock *Dest, ICFLoopSafetyInfo *SafetyInfo, MemorySSAUpdater &MSSAU, ScalarEvolution *SE, OptimizationRemarkEmitter *ORE)
When an instruction is found to only use loop invariant operands that is safe to hoist,...
static bool canSplitPredecessors(PHINode *PN, LoopSafetyInfo *SafetyInfo)
static bool sink(Instruction &I, LoopInfo *LI, DominatorTree *DT, const Loop *CurLoop, ICFLoopSafetyInfo *SafetyInfo, MemorySSAUpdater &MSSAU, OptimizationRemarkEmitter *ORE)
When an instruction is found to only be used outside of the loop, this function moves it to the exit ...
static bool isPotentiallyPromotable(const Instruction *I, const Loop *L)
Returns whether I is a memory access that may be a candidate for promotion out of the loop L.
static bool hoistAddSub(Instruction &I, Loop &L, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU, AssumptionCache *AC, DominatorTree *DT)
Reassociate and hoist add/sub expressions.
static bool hoistMulAddAssociation(Instruction &I, Loop &L, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU, AssumptionCache *AC, DominatorTree *DT)
Try to reassociate expressions like ((A1 * B1) + (A2 * B2) + ...) * C where A1, A2,...
static cl::opt< uint32_t > MaxNumUsesTraversed("licm-max-num-uses-traversed", cl::Hidden, cl::init(8), cl::desc("Max num uses visited for identifying load " "invariance in loop using invariant start (default = 8)"))
static bool isOnlyMemoryAccess(const Instruction *I, const Loop *L, const MemorySSAUpdater &MSSAU)
Return true if I is the only Instruction with a MemoryAccess in L.
static cl::opt< unsigned > IntAssociationUpperLimit("licm-max-num-int-reassociations", cl::init(5U), cl::Hidden, cl::desc("Set upper limit for the number of transformations performed " "during a single round of hoisting the reassociated expressions."))
static void foreachMemoryAccess(MemorySSA *MSSA, Loop *L, function_ref< void(Instruction *)> Fn)
static bool isLoadInvariantInLoop(LoadInst *LI, DominatorTree *DT, Loop *CurLoop)
static bool isHoistableAndSinkableInst(Instruction &I)
Return true if-and-only-if we know how to (mechanically) both hoist and sink a given instruction out ...
static Instruction * sinkThroughTriviallyReplaceablePHI(PHINode *TPN, Instruction *I, LoopInfo *LI, SmallDenseMap< BasicBlock *, Instruction *, 32 > &SunkCopies, const LoopSafetyInfo *SafetyInfo, const Loop *CurLoop, MemorySSAUpdater &MSSAU)
static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI)
Little predicate that returns true if the specified basic block is in a subloop of the current one,...
static bool hoistSub(ICmpInst::Predicate Pred, Value *VariantLHS, Value *InvariantRHS, ICmpInst &ICmp, Loop &L, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU, AssumptionCache *AC, DominatorTree *DT)
Try to reassociate and hoist the following two patterns: LV - C1 < C2 --> LV < C1 + C2,...
static void eraseInstruction(Instruction &I, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU)
static bool isSafeToExecuteUnconditionally(Instruction &Inst, const DominatorTree *DT, const TargetLibraryInfo *TLI, const Loop *CurLoop, const LoopSafetyInfo *SafetyInfo, OptimizationRemarkEmitter *ORE, const Instruction *CtxI, AssumptionCache *AC, bool AllowSpeculation)
Only sink or hoist an instruction if it is not a trapping instruction, or if the instruction is known...
static bool hoistArithmetics(Instruction &I, Loop &L, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU, AssumptionCache *AC, DominatorTree *DT)
Aggregates various functions for hoisting computations out of loop.
static bool noConflictingReadWrites(Instruction *I, MemorySSA *MSSA, AAResults *AA, Loop *CurLoop, SinkAndHoistLICMFlags &Flags)
static bool isTriviallyReplaceablePHI(const PHINode &PN, const Instruction &I)
Returns true if a PHINode is a trivially replaceable with an Instruction.
std::pair< SmallSetVector< Value *, 8 >, bool > PointersAndHasReadsOutsideSet
static cl::opt< bool > DisablePromotion("disable-licm-promotion", cl::Hidden, cl::init(false), cl::desc("Disable memory promotion in LICM pass"))
Memory promotion is enabled by default.
static std::optional< uint64_t > getConstantInsertionIndex(InsertElementInst *Ins)
static bool hoistBOAssociation(Instruction &I, Loop &L, ICFLoopSafetyInfo &SafetyInfo, MemorySSAUpdater &MSSAU, AssumptionCache *AC, DominatorTree *DT)
Reassociate associative binary expressions of the form.
static bool pointerInvalidatedByBlock(BasicBlock &BB, MemorySSA &MSSA, MemoryUse &MU)
This file defines the interface for the loop nest analysis.
This file provides utility analysis objects describing memory locations.
This file exposes an interface to building/using memory SSA to walk memory instructions using a use/d...
Contains a collection of routines for determining if a given instruction is guaranteed to execute if ...
uint64_t IntrinsicInst * II
PassInstrumentationCallbacks PIC
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
This file provides a priority worklist.
static DominatorTree getDomTree(Function &F)
Remove Loads Into Fake Uses
This file defines generic set operations that may be used on set's of different types,...
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
LLVM_ABI void addWithoutAATags(StoreInst *SI)
LLVM_ABI void add(const MemoryLocation &Loc)
These methods are used to add different types of instructions to the alias sets.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
A cache of @llvm.assume calls within a function.
LLVM Basic Block Representation.
LLVM_ABI void replaceSuccessorsPhiUsesWith(BasicBlock *Old, BasicBlock *New)
Update all phi nodes in this basic block's successors to refer to basic block New instead of basic bl...
iterator begin()
Instruction iterator methods.
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...
const Function * getParent() const
Return the enclosing method, or null if none.
bool hasTerminator() const LLVM_READONLY
Returns whether the block has a terminator.
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
LLVM_ABI const BasicBlock * getSingleSuccessor() const
Return the successor of this block if it has a single successor.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this basic block belongs to.
InstListType::iterator iterator
Instruction iterators...
LLVM_ABI LLVMContext & getContext() const
Get the context in which this basic block lives.
void moveBefore(BasicBlock *MovePos)
Unlink this basic block from its current function and insert it into the function that MovePos lives ...
LLVM_ABI bool canSplitPredecessors() const
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
This class is a wrapper over an AAResults, and it is intended to be used only when there are no IR ch...
ModRefInfo getModRefInfo(const Instruction *I, const std::optional< MemoryLocation > &OptLoc)
static LLVM_ABI BinaryOperator * Create(BinaryOps Op, Value *S1, Value *S2, const Twine &Name=Twine(), InsertPosition InsertBefore=nullptr)
Construct a binary instruction, given the opcode and the two operands.
This class represents a function call, abstracting a target machine's calling convention.
static CallInst * Create(FunctionType *Ty, Value *F, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
void setPredicate(Predicate P)
Set the predicate for this instruction to the specified value.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
Predicate getSwappedPredicate() const
For example, EQ->EQ, SLE->SGE, ULT->UGT, OEQ->OEQ, ULE->UGE, OLT->OGT, etc.
Predicate getInversePredicate() const
For example, EQ -> NE, UGT -> ULE, SLT -> SGE, OEQ -> UNE, UGT -> OLE, OLT -> UGE,...
An abstraction over a floating-point predicate, and a pack of an integer predicate with samesign info...
static LLVM_ABI std::optional< CmpPredicate > getMatching(CmpPredicate A, CmpPredicate B)
Compares two CmpPredicates taking samesign into account and returns the canonicalized CmpPredicate if...
Conditional Branch instruction.
static CondBrInst * Create(Value *Cond, BasicBlock *IfTrue, BasicBlock *IfFalse, InsertPosition InsertBefore=nullptr)
Value * getCondition() const
BasicBlock * getSuccessor(unsigned i) const
This is the shared class of boolean and integer constants.
int64_t getSExtValue() const
Return the constant as a 64-bit integer value after it has been sign extended as appropriate for the ...
A parsed version of the target data layout string in and methods for querying it.
TypeSize getTypeStoreSize(Type *Ty) const
Returns the maximum number of bytes that may be overwritten by storing the specified type.
static LLVM_ABI DebugLoc getMergedLocations(ArrayRef< DebugLoc > Locs)
Try to combine the vector of locations passed as input in a single one.
static DebugLoc getDropped()
iterator find(const_arg_type_t< KeyT > Val)
std::pair< iterator, bool > try_emplace(KeyT &&Key, Ts &&...Args)
DomTreeNodeBase * getIDom() const
Analysis pass which computes a DominatorTree.
bool verify(VerificationLevel VL=VerificationLevel::Full) const
verify - checks if the tree is correct.
void changeImmediateDominator(DomTreeNodeBase< NodeT > *N, DomTreeNodeBase< NodeT > *NewIDom)
changeImmediateDominator - This method is used to update the dominator tree information when a node's...
DomTreeNodeBase< NodeT > * addNewBlock(NodeT *BB, NodeT *DomBB)
Add a new node to the dominator tree information.
DomTreeNodeBase< NodeT > * getNode(const NodeT *BB) const
getNode - return the (Post)DominatorTree node for the specified basic block.
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 isReachableFromEntry(const Use &U) const
Provide an overload for a Use.
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.
Convenience struct for specifying and reasoning about fast-math flags.
This implementation of LoopSafetyInfo use ImplicitControlFlowTracking to give precise answers on "may...
bool doesNotWriteMemoryBefore(const BasicBlock *BB) const
Returns true if we could not execute a memory-modifying instruction before we enter BB under assumpti...
bool isGuaranteedToExecute(const Instruction &Inst, const DominatorTree *DT) const override
Returns true if the instruction in a loop is guaranteed to execute at least once (under the assumptio...
void removeInstruction(const Instruction *Inst)
Inform safety info that we are planning to remove the instruction Inst from its block.
bool anyBlockMayThrow() const override
Returns true iff any block of the loop for which this info is contains an instruction that may throw ...
void insertInstructionTo(const Instruction *Inst, const BasicBlock *BB)
Inform the safety info that we are planning to insert a new instruction Inst into the basic block BB.
This instruction compares its operands according to the predicate given to the constructor.
static bool isGE(Predicate P)
Return true if the predicate is SGE or UGE.
static bool isLT(Predicate P)
Return true if the predicate is SLT or ULT.
static bool isGT(Predicate P)
Return true if the predicate is SGT or UGT.
bool isRelational() const
Return true if the predicate is relational (not EQ or NE).
static bool isLE(Predicate P)
Return true if the predicate is SLE or ULE.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
This instruction inserts a single (scalar) element into a VectorType value.
VectorType * getType() const
Overload to return most specific vector type.
LLVM_ABI void mergeDIAssignID(ArrayRef< const Instruction * > SourceInstructions)
Merge the DIAssignID metadata from this instruction and those attached to instructions in SourceInstr...
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI void setAAMetadata(const AAMDNodes &N)
Sets the AA metadata on this instruction from the AAMDNodes structure.
user_iterator_impl< Instruction > user_iterator
Specialize the methods defined in Value, as we know that an instruction can only be used by other ins...
bool hasMetadata() const
Return true if this instruction has any metadata attached to it.
LLVM_ABI void moveBefore(InstListType::iterator InsertPos)
Unlink this instruction from its current basic block and insert it into the basic block that MovePos ...
LLVM_ABI bool isAtomic() const LLVM_READONLY
Return true if this instruction has an AtomicOrdering of unordered or higher.
LLVM_ABI void insertBefore(InstListType::iterator InsertPos)
Insert an unlinked instruction into a basic block immediately before the specified position.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
Instruction * user_back()
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
LLVM_ABI void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
LLVM_ABI AAMDNodes getAAMetadata() const
Returns the AA metadata for this instruction.
LLVM_ABI void dropPoisonGeneratingFlags()
Drops flags that may cause this instruction to evaluate to poison despite having non-poison inputs.
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.
A wrapper class for inspecting calls to intrinsic functions.
LLVM_ABI void printPipeline(raw_ostream &OS, function_ref< StringRef(StringRef)> MapClassName2PassName)
LLVM_ABI PreservedAnalyses run(Loop &L, LoopAnalysisManager &AM, LoopStandardAnalysisResults &AR, LPMUpdater &U)
LLVM_ABI PreservedAnalyses run(LoopNest &L, LoopAnalysisManager &AM, LoopStandardAnalysisResults &AR, LPMUpdater &U)
LLVM_ABI void printPipeline(raw_ostream &OS, function_ref< StringRef(StringRef)> MapClassName2PassName)
This class provides an interface for updating the loop pass manager based on mutations to the loop ne...
static void getLazyBFIAnalysisUsage(AnalysisUsage &AU)
Helper for client passes to set up the analysis usage on behalf of this pass.
An instruction for reading from memory.
void setAlignment(Align Align)
Value * getPointerOperand()
void setOrdering(AtomicOrdering Ordering)
Sets the ordering constraint of this load instruction.
Analysis pass that exposes the LoopInfo for a function.
bool contains(const LoopT *L) const
Return true if the specified loop is contained within this loop.
BlockT * getHeader() const
void addBasicBlockToLoop(BlockT *NewBB, LoopInfoBase< BlockT, LoopT > &LI)
This method is used by other analyses to update loop information.
BlockT * getLoopPreheader() const
If there is a preheader for this loop, return it.
ArrayRef< BlockT * > getBlocks() const
Get a list of the basic blocks which make up this loop.
void getUniqueExitBlocks(SmallVectorImpl< BlockT * > &ExitBlocks) const
Return all unique successor blocks of this loop.
LoopT * getParentLoop() const
Return the parent loop if it exists or nullptr for top level loops.
Wrapper class to LoopBlocksDFS that provides a standard begin()/end() interface for the DFS reverse p...
void perform(const LoopInfo *LI)
Traverse the loop blocks and store the DFS result.
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
LLVM_ABI bool wouldBeOutOfLoopUseRequiringLCSSA(const Value *V, const BasicBlock *ExitBB) const
This class represents a loop nest and can be used to query its properties.
Function * getParent() const
Return the function to which the loop-nest belongs.
Loop & getOutermostLoop() const
Return the outermost loop in the loop nest.
Captures loop safety information.
LLVM_ABI void copyColors(BasicBlock *New, BasicBlock *Old)
Copy colors of block Old into the block New.
LLVM_ABI const DenseMap< BasicBlock *, ColorVector > & getBlockColors() const
Returns block colors map that is used to update funclet operand bundles.
virtual bool isGuaranteedToExecute(const Instruction &Inst, const DominatorTree *DT) const =0
Returns true if the instruction in a loop is guaranteed to execute at least once (under the assumptio...
Represents a single loop in the control flow graph.
bool hasLoopInvariantOperands(const Instruction *I) const
Return true if all the operands of the specified instruction are loop invariant.
bool isLoopInvariant(const Value *V) const
Return true if the specified value is loop invariant.
BasicBlock * getBlock() const
bool onlyWritesMemory() const
Whether this function only (at most) writes memory.
bool doesNotAccessMemory() const
Whether this function accesses no memory.
bool onlyReadsMemory() const
Whether this function only (at most) reads memory.
static LLVM_ABI MemoryLocation get(const LoadInst *LI)
Return a location with information about the memory reference by the given instruction.
An analysis that produces MemorySSA for a function.
MemorySSA * getMemorySSA() const
Get handle on MemorySSA.
LLVM_ABI void insertDef(MemoryDef *Def, bool RenameUses=false)
Insert a definition into the MemorySSA IR.
LLVM_ABI void insertUse(MemoryUse *Use, bool RenameUses=false)
LLVM_ABI MemoryAccess * createMemoryAccessInBB(Instruction *I, MemoryAccess *Definition, const BasicBlock *BB, MemorySSA::InsertionPlace Point, bool CreationMustSucceed=true)
Create a MemoryAccess in MemorySSA at a specified point in a block.
LLVM_ABI void removeMemoryAccess(MemoryAccess *, bool OptimizePhis=false)
Remove a MemoryAccess from MemorySSA, including updating all definitions and uses.
LLVM_ABI MemoryUseOrDef * createMemoryAccessAfter(Instruction *I, MemoryAccess *Definition, MemoryAccess *InsertPt)
Create a MemoryAccess in MemorySSA after an existing MemoryAccess.
LLVM_ABI void moveToPlace(MemoryUseOrDef *What, BasicBlock *BB, MemorySSA::InsertionPlace Where)
LLVM_ABI void wireOldPredecessorsToNewImmediatePredecessor(BasicBlock *Old, BasicBlock *New, ArrayRef< BasicBlock * > Preds, bool IdenticalEdgesWereMerged=true)
A new empty BasicBlock (New) now branches directly to Old.
MemoryAccess * getClobberingMemoryAccess(const Instruction *I, BatchAAResults &AA)
Given a memory Mod/Ref/ModRef'ing instruction, calling this will give you the nearest dominating Memo...
Legacy analysis pass which computes MemorySSA.
Encapsulates MemorySSA, including all data associated with memory accesses.
DefsList * getBlockDefs(const BasicBlock *BB) const
Return the list of MemoryDef's and MemoryPhi's for a given basic block.
LLVM_ABI MemorySSAWalker * getSkipSelfWalker()
AccessList * getBlockAccesses(const BasicBlock *BB) const
Return the list of MemoryAccess's for a given basic block.
LLVM_ABI bool dominates(const MemoryAccess *A, const MemoryAccess *B) const
Given two memory accesses in potentially different blocks, determine whether MemoryAccess A dominates...
LLVM_ABI void verifyMemorySSA(VerificationLevel=VerificationLevel::Fast) const
Verify that MemorySSA is self consistent (IE definitions dominate all uses, uses appear in the right ...
MemoryUseOrDef * getMemoryAccess(const Instruction *I) const
Given a memory Mod/Ref'ing instruction, get the MemorySSA access associated with it.
LLVM_ABI bool locallyDominates(const MemoryAccess *A, const MemoryAccess *B) const
Given two memory accesses in the same basic block, determine whether MemoryAccess A dominates MemoryA...
bool isLiveOnEntryDef(const MemoryAccess *MA) const
Return true if MA represents the live on entry value.
Class that has the common methods + fields of memory uses/defs.
MemoryAccess * getDefiningAccess() const
Get the access that produces the memory state used by this Use.
Represents read-only accesses to memory.
A Module instance is used to store all the information related to an LLVM module.
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
op_range incoming_values()
void setIncomingBlock(unsigned i, BasicBlock *BB)
BasicBlock * getIncomingBlock(unsigned i) const
Return incoming basic block number i.
int getBasicBlockIndex(const BasicBlock *BB) const
Return the first index of the specified basic block in the value list for this PHI.
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 PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
Pass interface - Implemented by all 'passes'.
PointerIntPair - This class implements a pair of a pointer and small integer.
void setInt(IntType IntVal) &
PointerTy getPointer() const
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
PredIteratorCache - This class is an extremely trivial cache for predecessor iterator queries.
size_t size(BasicBlock *BB)
ArrayRef< BasicBlock * > get(BasicBlock *BB)
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.
bool empty() const
Determine if the PriorityWorklist is empty or not.
bool insert(const T &X)
Insert a new element into the PriorityWorklist.
Helper class for SSA formation on a set of values defined in multiple blocks.
The main scalar evolution driver.
LLVM_ABI void forgetBlockAndLoopDispositions(Value *V=nullptr)
Called when the client has changed the disposition of values in a loop or block.
LLVM_ABI void forgetLoopDispositions()
Called when the client has changed the disposition of values in this loop.
bool remove(const value_type &X)
Remove an item from the set vector.
bool empty() const
Determine if the SetVector is empty or not.
iterator begin()
Get an iterator to the beginning of the SetVector.
bool insert(const value_type &X)
Insert a new element into the SetVector.
Flags controlling how much is checked when sinking or hoisting instructions.
LLVM_ABI SinkAndHoistLICMFlags(unsigned LicmMssaOptCap, unsigned LicmMssaNoAccForPromotionCap, bool IsSink, Loop &L, MemorySSA &MSSA)
unsigned LicmMssaNoAccForPromotionCap
A version of PriorityWorklist that selects small size optimized data structures for the vector and ma...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
void insert_range(Range &&R)
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
A SetVector that performs no allocations if smaller than a certain size.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
void setAlignment(Align Align)
void setOrdering(AtomicOrdering Ordering)
Sets the ordering constraint of this store instruction.
static unsigned getPointerOperandIndex()
Represent a constant reference to a string, i.e.
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 UncondBrInst * Create(BasicBlock *Target, InsertPosition InsertBefore=nullptr)
A Use represents the edge between a Value definition and its users.
const Use & getOperandUse(unsigned i) const
void setOperand(unsigned i, Value *Val)
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI bool hasOneUser() const
Return true if there is exactly one user of this value.
LLVM_ABI std::string getNameOrAsOperand() const
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.
iterator_range< user_iterator > users()
iterator_range< use_iterator > uses()
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.
constexpr ScalarTy getFixedValue() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
self_iterator getIterator()
This class implements an extremely fast bulk output stream that can only output to a stream.
Abstract Attribute helper functions.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
@ BasicBlock
Various leaf nodes.
OneUse_match< SubPat > m_OneUse(const SubPat &SP)
BinaryOp_match< LHS, RHS, Instruction::Add > m_Add(const LHS &L, const RHS &R)
OverflowingBinaryOp_match< LHS, RHS, Instruction::Sub, OverflowingBinaryOperator::NoSignedWrap > m_NSWSub(const LHS &L, const RHS &R)
bool match(Val *V, const Pattern &P)
match_bind< Instruction > m_Instruction(Instruction *&I)
Match an instruction, capturing it if we match.
auto m_Value()
Match an arbitrary value and ignore it.
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
BinaryOp_match< LHS, RHS, Instruction::Add, true > m_c_Add(const LHS &L, const RHS &R)
Matches a Add with LHS and RHS in either order.
auto m_Intrinsic(const Ts &...Ops)
Match intrinsic calls like this: m_Intrinsic<Intrinsic::fabs>(m_Value(X))
OverflowingBinaryOp_match< LHS, RHS, Instruction::Sub, OverflowingBinaryOperator::NoUnsignedWrap > m_NUWSub(const LHS &L, const RHS &R)
match_combine_or< OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoSignedWrap >, DisjointOr_match< LHS, RHS > > m_NSWAddLike(const LHS &L, const RHS &R)
Match either "add nsw" or "or disjoint".
CmpClass_match< LHS, RHS, ICmpInst > m_ICmp(CmpPredicate &Pred, const LHS &L, const RHS &R)
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
match_combine_or< OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoUnsignedWrap >, DisjointOr_match< LHS, RHS > > m_NUWAddLike(const LHS &L, const RHS &R)
Match either "add nuw" or "or disjoint".
BinaryOp_match< LHS, RHS, Instruction::Sub > m_Sub(const LHS &L, const RHS &R)
initializer< Ty > init(const Ty &Val)
DiagnosticInfoOptimizationBase::Argument NV
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
@ NeverOverflows
Never overflows.
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 canSinkOrHoistInst(Instruction &I, AAResults *AA, DominatorTree *DT, Loop *CurLoop, MemorySSAUpdater &MSSAU, bool TargetExecutesOncePerLoop, SinkAndHoistLICMFlags &LICMFlags, OptimizationRemarkEmitter *ORE=nullptr)
Returns true if is legal to hoist or sink this instruction disregarding the possible introduction of ...
auto pred_end(const MachineBasicBlock *BB)
void set_intersect(S1Ty &S1, const S2Ty &S2)
set_intersect(A, B) - Compute A := A ^ B Identical to set_intersection, except that it works on set<>...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
bool isStrongerThanMonotonic(AtomicOrdering AO)
LLVM_ABI void salvageDebugInfo(const MachineRegisterInfo &MRI, MachineInstr &MI)
Assuming the instruction MI is going to be deleted, attempt to salvage debug users of MI by writing t...
auto successors(const MachineBasicBlock *BB)
@ Load
The value being inserted comes from a load (InsertElement only).
@ Store
The extracted value is stored (ExtractElement only).
constexpr from_range_t from_range
LLVM_ABI bool formLCSSARecursively(Loop &L, const DominatorTree &DT, const LoopInfo *LI, ScalarEvolution *SE)
Put a loop nest into LCSSA form.
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...
auto cast_or_null(const Y &Val)
auto pred_size(const MachineBasicBlock *BB)
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
LLVM_ABI bool isSafeToSpeculativelyExecute(const Instruction *I, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr, bool UseVariableInfo=true, bool IgnoreUBImplyingAttrs=true)
Return true if the instruction does not have any effects besides calculating the result and does not ...
LLVM_ABI bool PointerMayBeCapturedBefore(const Value *V, bool ReturnCaptures, const Instruction *I, const DominatorTree *DT, bool IncludeI=false, unsigned MaxUsesToExplore=0, const LoopInfo *LI=nullptr)
PointerMayBeCapturedBefore - Return true if this pointer value may be captured by the enclosing funct...
LLVM_ABI Pass * createLICMPass()
LLVM_ABI SmallVector< BasicBlock *, 16 > collectChildrenInLoop(DominatorTree *DT, DomTreeNode *N, const Loop *CurLoop)
Does a BFS from a given node to all of its children inside a given loop.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
DomTreeNodeBase< BasicBlock > DomTreeNode
AnalysisManager< Loop, LoopStandardAnalysisResults & > LoopAnalysisManager
The loop analysis manager.
LLVM_ABI bool hoistRegion(DomTreeNode *, AAResults *, LoopInfo *, DominatorTree *, AssumptionCache *, TargetLibraryInfo *, Loop *, MemorySSAUpdater &, ScalarEvolution *, ICFLoopSafetyInfo *, SinkAndHoistLICMFlags &, OptimizationRemarkEmitter *, bool, bool AllowSpeculation)
Walk the specified region of the CFG (defined by all blocks dominated by the specified block,...
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool isInstructionTriviallyDead(Instruction *I, const TargetLibraryInfo *TLI=nullptr)
Return true if the result produced by the instruction is not used, and the instruction will return.
LLVM_ABI bool isGuard(const User *U)
Returns true iff U has semantics of a guard expressed in a form of call of llvm.experimental....
auto reverse(ContainerTy &&C)
LLVM_ABI OverflowResult computeOverflowForSignedSub(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
LLVM_ABI void initializeLegacyLICMPassPass(PassRegistry &)
bool isModSet(const ModRefInfo MRI)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_TEMPLATE_ABI void appendLoopsToWorklist(RangeT &&, SmallPriorityWorklist< Loop *, 4 > &)
Utility that implements appending of loops onto a worklist given a range.
LLVM_ABI bool isNotVisibleOnUnwind(const Value *Object, bool &RequiresNoCaptureBeforeUnwind)
Return true if Object memory is not visible after an unwind, in the sense that program semantics cann...
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...
LLVM_ABI void getLoopAnalysisUsage(AnalysisUsage &AU)
Helper to consistently add the set of standard passes to a loop pass's AnalysisUsage.
LLVM_ABI BasicBlock * SplitBlockPredecessors(BasicBlock *BB, ArrayRef< BasicBlock * > Preds, const char *Suffix, DominatorTree *DT, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, bool PreserveLCSSA=false)
This method introduces at least one new basic block into the function and moves some of the predecess...
ModRefInfo
Flags indicating whether a memory access modifies or references memory.
LLVM_ABI bool VerifyMemorySSA
Enables verification of MemorySSA.
LLVM_ABI bool salvageKnowledge(Instruction *I, AssumptionCache *AC=nullptr, DominatorTree *DT=nullptr)
Calls BuildAssumeFromInst and if the resulting llvm.assume is valid insert if before I.
LLVM_ABI bool hasDisableLICMTransformsHint(const Loop *L)
Look for the loop attribute that disables the LICM transformation heuristics.
LLVM_ABI OverflowResult computeOverflowForSignedAdd(const WithCache< const Value * > &LHS, const WithCache< const Value * > &RHS, const SimplifyQuery &SQ)
DWARFExpression::Operation Op
LLVM_ABI bool isDereferenceableAndAlignedPointer(const Value *V, Type *Ty, Align Alignment, const SimplifyQuery &Q, bool IgnoreFree=false)
Returns true if V is always a dereferenceable pointer with alignment greater or equal than requested.
ArrayRef(const T &OneElt) -> ArrayRef< T >
LLVM_ABI bool isIdentifiedFunctionLocal(const Value *V)
Return true if V is umabigously identified at the function-level.
auto make_second_range(ContainerTy &&c)
Given a container of pairs, return a range over the second elements.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI OverflowResult computeOverflowForUnsignedSub(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
TinyPtrVector< BasicBlock * > ColorVector
auto pred_begin(const MachineBasicBlock *BB)
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...
auto predecessors(const MachineBasicBlock *BB)
Type * getLoadStoreType(const Value *I)
A helper function that returns the type of a load or store instruction.
LLVM_ABI bool sinkRegion(DomTreeNode *, AAResults *, LoopInfo *, DominatorTree *, TargetLibraryInfo *, TargetTransformInfo *, Loop *CurLoop, MemorySSAUpdater &, ICFLoopSafetyInfo *, SinkAndHoistLICMFlags &, OptimizationRemarkEmitter *, Loop *OutermostLoop=nullptr)
Walk the specified region of the CFG (defined by all blocks dominated by the specified block,...
LLVM_ABI OverflowResult computeOverflowForUnsignedAdd(const WithCache< const Value * > &LHS, const WithCache< const Value * > &RHS, const SimplifyQuery &SQ)
LLVM_ABI cl::opt< unsigned > SetLicmMssaNoAccForPromotionCap
LLVM_ABI bool canHoistLoad(LoadInst &LI, AAResults *AA, DominatorTree *DT, Loop *CurLoop, MemorySSA &MSSA, bool TargetExecutesOncePerLoop, SinkAndHoistLICMFlags &LICMFlags, OptimizationRemarkEmitter *ORE=nullptr)
Returns true if it is legal to hoist LI out of CurLoop.
LLVM_ABI bool isDereferenceablePointer(const Value *V, Type *Ty, const SimplifyQuery &Q, bool IgnoreFree=false)
Equivalent to isDereferenceableAndAlignedPointer with an alignment of 1.
LLVM_ABI const Value * getUnderlyingObject(const Value *V, unsigned MaxLookup=MaxLookupSearchDepth)
This method strips off any GEP address adjustments, pointer casts or llvm.threadlocal....
AAResults AliasAnalysis
Temporary typedef for legacy code that uses a generic AliasAnalysis pointer or reference.
bool capturesNothing(CaptureComponents CC)
LLVM_ABI bool isKnownNonNegative(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Returns true if the give value is known to be non-negative.
LLVM_ABI bool promoteLoopAccessesToScalars(const SmallSetVector< Value *, 8 > &, SmallVectorImpl< BasicBlock * > &, SmallVectorImpl< BasicBlock::iterator > &, SmallVectorImpl< MemoryAccess * > &, PredIteratorCache &, LoopInfo *, DominatorTree *, AssumptionCache *AC, const TargetLibraryInfo *, TargetTransformInfo *, Loop *, MemorySSAUpdater &, ICFLoopSafetyInfo *, OptimizationRemarkEmitter *, bool AllowSpeculation, bool HasReadsOutsideSet)
Try to promote memory values to scalars by sinking stores out of the loop and moving loads to before ...
bool isNoModRef(const ModRefInfo MRI)
LLVM_ABI cl::opt< unsigned > SetLicmMssaOptCap
LLVM_ABI bool sinkRegionForLoopNest(DomTreeNode *, AAResults *, LoopInfo *, DominatorTree *, TargetLibraryInfo *, TargetTransformInfo *, Loop *, MemorySSAUpdater &, ICFLoopSafetyInfo *, SinkAndHoistLICMFlags &, OptimizationRemarkEmitter *)
Call sinkRegion on loops contained within the specified loop in order from innermost to outermost.
bool isRefSet(const ModRefInfo MRI)
LLVM_ABI bool isWritableObject(const Value *Object, bool &ExplicitlyDereferenceableOnly)
Return true if the Object is writable, in the sense that any location based on this pointer that can ...
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
A collection of metadata nodes that might be associated with a memory access used by the alias-analys...
LLVM_ABI AAMDNodes merge(const AAMDNodes &Other) const
Given two sets of AAMDNodes applying to potentially different locations, determine the best AAMDNodes...
This struct is a compact representation of a valid (non-zero power of two) alignment.
The adaptor from a function pass to a loop pass computes these analyses and makes them available to t...
TargetTransformInfo & TTI
A lightweight accessor for an operand bundle meant to be passed around by value.
uint32_t getTagID() const
Return the tag of this operand bundle as an integer.