99#define DEBUG_TYPE "loop-idiom"
101STATISTIC(NumMemSet,
"Number of memset's formed from loop stores");
102STATISTIC(NumMemCpy,
"Number of memcpy's formed from loop load+stores");
103STATISTIC(NumMemMove,
"Number of memmove's formed from loop load+stores");
104STATISTIC(NumStrLen,
"Number of strlen's and wcslen's formed from loop loads");
106 NumShiftUntilBitTest,
107 "Number of uncountable loops recognized as 'shift until bitttest' idiom");
109 "Number of uncountable loops recognized as 'shift until zero' idiom");
115 cl::desc(
"Options to disable Loop Idiom Recognize Pass."),
122 cl::desc(
"Proceed with loop idiom recognize pass, but do "
123 "not convert loop(s) to memset."),
130 cl::desc(
"Proceed with loop idiom recognize pass, but do "
131 "not convert loop(s) to memcpy."),
138 cl::desc(
"Proceed with loop idiom recognize pass, but do "
139 "not convert loop(s) to strlen."),
146 cl::desc(
"Proceed with loop idiom recognize pass, "
147 "enable conversion of loop(s) to wcslen."),
154 cl::desc(
"Proceed with loop idiom recognize pass, "
155 "but do not do hash-recognize analysis."),
160 "use-lir-code-size-heurs",
161 cl::desc(
"Use loop idiom recognition code size heuristics when compiling "
166 "loop-idiom-force-memset-pattern-intrinsic",
167 cl::desc(
"Use memset.pattern intrinsic whenever possible"),
cl::init(
false),
178 cl::desc(
"Preferred strategy for optimizing CRC loops"),
181 "Do not optimize CRC loops"),
183 "Use costing to determine strategy"),
185 "Use a Sarwate table when possible"),
187 "Use carry-less multiplication when possible")));
195class LoopIdiomRecognize {
196 Loop *CurLoop =
nullptr;
205 bool ApplyCodeSizeHeuristics;
206 std::unique_ptr<MemorySSAUpdater> MSSAU;
215 :
AA(
AA), DT(DT), LI(LI), SE(SE), TLI(TLI),
TTI(
TTI),
DL(
DL), ORE(ORE) {
217 MSSAU = std::make_unique<MemorySSAUpdater>(MSSA);
220 bool runOnLoop(
Loop *L);
223 using StoreList = SmallVector<StoreInst *, 8>;
224 using StoreListMap = MapVector<Value *, StoreList>;
226 StoreListMap StoreRefsForMemset;
227 StoreListMap StoreRefsForMemsetPattern;
228 StoreList StoreRefsForMemcpy;
230 bool HasMemsetPattern;
234 enum LegalStoreKind {
239 UnorderedAtomicMemcpy,
247 bool runOnCountableLoop();
248 bool runOnLoopBlock(BasicBlock *BB,
const SCEV *BECount,
249 SmallVectorImpl<BasicBlock *> &ExitBlocks);
251 void collectStores(BasicBlock *BB);
252 LegalStoreKind isLegalStore(StoreInst *SI);
253 enum class ForMemset {
No,
Yes };
254 bool processLoopStores(SmallVectorImpl<StoreInst *> &SL,
const SCEV *BECount,
257 template <
typename MemInst>
258 bool processLoopMemIntrinsic(
260 bool (LoopIdiomRecognize::*Processor)(MemInst *,
const SCEV *),
261 const SCEV *BECount);
262 bool processLoopMemCpy(MemCpyInst *MCI,
const SCEV *BECount);
263 bool processLoopMemSet(MemSetInst *MSI,
const SCEV *BECount);
265 bool processLoopStridedStore(
Value *DestPtr,
const SCEV *StoreSizeSCEV,
266 MaybeAlign StoreAlignment,
Value *StoredVal,
267 Instruction *TheStore,
268 SmallPtrSetImpl<Instruction *> &Stores,
269 const SCEVAddRecExpr *Ev,
const SCEV *BECount,
270 bool IsNegStride,
bool IsLoopMemset =
false);
271 bool processLoopStoreOfLoopLoad(StoreInst *SI,
const SCEV *BECount);
272 bool processLoopStoreOfLoopLoad(
Value *DestPtr,
Value *SourcePtr,
273 const SCEV *StoreSize, MaybeAlign StoreAlign,
274 MaybeAlign LoadAlign, Instruction *TheStore,
275 Instruction *TheLoad,
276 const SCEVAddRecExpr *StoreEv,
277 const SCEVAddRecExpr *LoadEv,
278 const SCEV *BECount);
279 bool avoidLIRForMultiBlockLoop(
bool IsMemset =
false,
280 bool IsLoopMemset =
false);
281 bool optimizeCRCLoop(
const PolynomialInfo &Info);
282 void optimizeCRCLoopUsingClmul(
const PolynomialInfo &Info);
283 void optimizeCRCLoopUsingTableLookup(
const PolynomialInfo &Info);
289 bool runOnNoncountableLoop();
291 bool recognizePopcount();
292 void transformLoopToPopcount(BasicBlock *PreCondBB, Instruction *CntInst,
293 PHINode *CntPhi,
Value *Var);
295 bool ZeroCheck,
size_t CanonicalSize);
297 Instruction *DefX, PHINode *CntPhi,
298 Instruction *CntInst);
299 bool recognizeAndInsertFFS();
300 bool recognizeShiftUntilLessThan();
301 void transformLoopToCountable(
Intrinsic::ID IntrinID, BasicBlock *PreCondBB,
302 Instruction *CntInst, PHINode *CntPhi,
303 Value *Var, Instruction *DefX,
305 bool IsCntPhiUsedOutsideLoop,
306 bool InsertSub =
false);
308 bool recognizeShiftUntilBitTest();
309 bool recognizeShiftUntilZero();
310 bool recognizeAndInsertStrLen();
322 const auto *
DL = &L.getHeader()->getDataLayout();
329 LoopIdiomRecognize LIR(&AR.
AA, &AR.
DT, &AR.
LI, &AR.
SE, &AR.
TLI, &AR.
TTI,
331 if (!LIR.runOnLoop(&L))
342 I->eraseFromParent();
351bool LoopIdiomRecognize::runOnLoop(
Loop *L) {
355 if (!
L->getLoopPreheader())
360 if (Name ==
"memset" || Name ==
"memcpy" || Name ==
"strlen" ||
365 ApplyCodeSizeHeuristics =
368 HasMemset = TLI->
has(LibFunc_memset);
374 HasMemsetPattern = TLI->
has(LibFunc_memset_pattern16);
375 HasMemcpy = TLI->
has(LibFunc_memcpy);
380 return runOnCountableLoop();
382 return runOnNoncountableLoop();
385bool LoopIdiomRecognize::runOnCountableLoop() {
388 "runOnCountableLoop() called on a loop without a predictable"
389 "backedge-taken count");
407 if (SafetyInfo.anyBlockMayThrow())
410 bool MadeChange =
false;
418 MadeChange |= runOnLoopBlock(BB, BECount, ExitBlocks);
424 MadeChange |= optimizeCRCLoop(*Res);
459 if (
DL->isBigEndian())
471 Type *CTy =
C->getType();
478LoopIdiomRecognize::LegalStoreKind
481 if (
SI->isVolatile())
482 return LegalStoreKind::None;
484 if (!
SI->isUnordered())
485 return LegalStoreKind::None;
488 if (
SI->getMetadata(LLVMContext::MD_nontemporal))
489 return LegalStoreKind::None;
491 Value *StoredVal =
SI->getValueOperand();
492 Value *StorePtr =
SI->getPointerOperand();
494 if (
DL->hasUnstableRepresentation(StoredVal->
getType()))
495 return LegalStoreKind::None;
504 bool MustPreserveExternalState =
DL->hasExternalState(StoredVal->
getType()) &&
513 return LegalStoreKind::None;
522 return LegalStoreKind::None;
533 bool UnorderedAtomic =
SI->isUnordered() && !
SI->isSimple();
537 if (!MustPreserveExternalState && !UnorderedAtomic && HasMemset &&
543 return LegalStoreKind::Memset;
545 if (!MustPreserveExternalState && !UnorderedAtomic &&
552 return LegalStoreKind::MemsetPattern;
559 unsigned StoreSize =
DL->getTypeStoreSize(
SI->getValueOperand()->getType());
561 if (StoreSize != StrideAP && StoreSize != -StrideAP)
562 return LegalStoreKind::None;
569 return LegalStoreKind::None;
572 return LegalStoreKind::None;
582 return LegalStoreKind::None;
585 UnorderedAtomic = UnorderedAtomic || LI->
isAtomic();
586 return UnorderedAtomic ? LegalStoreKind::UnorderedAtomicMemcpy
587 : LegalStoreKind::Memcpy;
590 return LegalStoreKind::None;
593void LoopIdiomRecognize::collectStores(
BasicBlock *BB) {
594 StoreRefsForMemset.clear();
595 StoreRefsForMemsetPattern.clear();
596 StoreRefsForMemcpy.clear();
603 switch (isLegalStore(
SI)) {
604 case LegalStoreKind::None:
607 case LegalStoreKind::Memset: {
610 StoreRefsForMemset[Ptr].push_back(
SI);
612 case LegalStoreKind::MemsetPattern: {
615 StoreRefsForMemsetPattern[Ptr].push_back(
SI);
617 case LegalStoreKind::Memcpy:
618 case LegalStoreKind::UnorderedAtomicMemcpy:
619 StoreRefsForMemcpy.push_back(
SI);
622 assert(
false &&
"unhandled return value");
631bool LoopIdiomRecognize::runOnLoopBlock(
641 bool MadeChange =
false;
648 for (
auto &SL : StoreRefsForMemset)
649 MadeChange |= processLoopStores(SL.second, BECount, ForMemset::Yes);
651 for (
auto &SL : StoreRefsForMemsetPattern)
652 MadeChange |= processLoopStores(SL.second, BECount, ForMemset::No);
655 for (
auto &
SI : StoreRefsForMemcpy)
656 MadeChange |= processLoopStoreOfLoopLoad(
SI, BECount);
658 MadeChange |= processLoopMemIntrinsic<MemCpyInst>(
659 BB, &LoopIdiomRecognize::processLoopMemCpy, BECount);
660 MadeChange |= processLoopMemIntrinsic<MemSetInst>(
661 BB, &LoopIdiomRecognize::processLoopMemSet, BECount);
668 const SCEV *BECount, ForMemset For) {
676 for (
unsigned i = 0, e = SL.
size(); i < e; ++i) {
677 assert(SL[i]->
isSimple() &&
"Expected only non-volatile stores.");
679 Value *FirstStoredVal = SL[i]->getValueOperand();
680 Value *FirstStorePtr = SL[i]->getPointerOperand();
684 unsigned FirstStoreSize =
DL->getTypeStoreSize(SL[i]->getValueOperand()->
getType());
687 if (FirstStride == FirstStoreSize || -FirstStride == FirstStoreSize) {
692 Value *FirstSplatValue =
nullptr;
693 Constant *FirstPatternValue =
nullptr;
695 if (For == ForMemset::Yes)
700 assert((FirstSplatValue || FirstPatternValue) &&
701 "Expected either splat value or pattern value.");
709 for (j = i + 1;
j <
e; ++
j)
711 for (j = i;
j > 0; --
j)
714 for (
auto &k : IndexQueue) {
715 assert(SL[k]->
isSimple() &&
"Expected only non-volatile stores.");
716 Value *SecondStorePtr = SL[
k]->getPointerOperand();
721 if (FirstStride != SecondStride)
724 Value *SecondStoredVal = SL[
k]->getValueOperand();
725 Value *SecondSplatValue =
nullptr;
726 Constant *SecondPatternValue =
nullptr;
728 if (For == ForMemset::Yes)
733 assert((SecondSplatValue || SecondPatternValue) &&
734 "Expected either splat value or pattern value.");
737 if (For == ForMemset::Yes) {
739 FirstSplatValue = SecondSplatValue;
740 if (FirstSplatValue != SecondSplatValue)
744 FirstPatternValue = SecondPatternValue;
745 if (FirstPatternValue != SecondPatternValue)
750 ConsecutiveChain[SL[i]] = SL[
k];
770 unsigned StoreSize = 0;
773 while (Tails.
count(
I) || Heads.count(
I)) {
774 if (TransformedStores.
count(
I))
778 StoreSize +=
DL->getTypeStoreSize(
I->getValueOperand()->getType());
780 I = ConsecutiveChain[
I];
790 if (StoreSize != Stride && StoreSize != -Stride)
793 bool IsNegStride = StoreSize == -Stride;
797 if (processLoopStridedStore(StorePtr, StoreSizeSCEV,
799 HeadStore, AdjacentStores, StoreEv, BECount,
811template <
typename MemInst>
812bool LoopIdiomRecognize::processLoopMemIntrinsic(
814 bool (LoopIdiomRecognize::*Processor)(MemInst *,
const SCEV *),
815 const SCEV *BECount) {
816 bool MadeChange =
false;
822 if (!(this->*Processor)(
MI, BECount))
836bool LoopIdiomRecognize::processLoopMemCpy(
MemCpyInst *MCI,
837 const SCEV *BECount) {
848 if (!Dest || !Source)
856 const APInt *StoreStrideValue, *LoadStrideValue;
867 if ((SizeInBytes >> 32) != 0)
875 if (SizeInBytes != *StoreStrideValue && SizeInBytes != -*StoreStrideValue) {
878 <<
ore::NV(
"Inst",
"memcpy") <<
" in "
880 <<
" function will not be hoisted: "
881 <<
ore::NV(
"Reason",
"memcpy size is not equal to stride");
886 int64_t StoreStrideInt = StoreStrideValue->
getSExtValue();
887 int64_t LoadStrideInt = LoadStrideValue->
getSExtValue();
889 if (StoreStrideInt != LoadStrideInt)
892 return processLoopStoreOfLoopLoad(
899bool LoopIdiomRecognize::processLoopMemSet(
MemSetInst *MSI,
900 const SCEV *BECount) {
915 const SCEV *PointerStrideSCEV;
924 bool IsNegStride =
false;
927 if (IsConstantSize) {
937 if (SizeInBytes != *Stride && SizeInBytes != -*Stride)
940 IsNegStride = SizeInBytes == -*Stride;
948 if (
Pointer->getType()->getPointerAddressSpace() != 0) {
964 LLVM_DEBUG(
dbgs() <<
" MemsetSizeSCEV: " << *MemsetSizeSCEV <<
"\n"
965 <<
" PositiveStrideSCEV: " << *PositiveStrideSCEV
968 if (PositiveStrideSCEV != MemsetSizeSCEV) {
971 const SCEV *FoldedPositiveStride =
973 const SCEV *FoldedMemsetSize =
977 <<
" FoldedMemsetSize: " << *FoldedMemsetSize <<
"\n"
978 <<
" FoldedPositiveStride: " << *FoldedPositiveStride
981 if (FoldedPositiveStride != FoldedMemsetSize) {
1006 assert(SplatByte &&
"expected a bytewise splat value to match against");
1008 if (!
SI || !
SI->isSimple() || !L->isLoopInvariant(
SI->getValueOperand()))
1020 const SCEV *BECount,
1023 Value *SplatByte =
nullptr,
1032 const APInt *BECst, *ConstSize;
1036 std::optional<uint64_t> SizeInt = ConstSize->
tryZExtValue();
1038 if (BEInt && SizeInt)
1050 bool TrySameByteValue = !AccessSize.
isPrecise() && SplatByte &&
DL;
1067 Type *IntPtr,
const SCEV *StoreSizeSCEV,
1070 if (!StoreSizeSCEV->
isOne()) {
1085 const SCEV *StoreSizeSCEV,
Loop *CurLoop,
1087 const SCEV *TripCountSCEV =
1096bool LoopIdiomRecognize::processLoopStridedStore(
1100 const SCEV *BECount,
bool IsNegStride,
bool IsLoopMemset) {
1112 Type *DestInt8PtrTy = Builder.getPtrTy(DestAS);
1123 if (!Expander.isSafeToExpand(Start))
1132 Expander.expandCodeFor(Start, DestInt8PtrTy, Preheader->
getTerminator());
1145 StoreSizeSCEV, *
AA, Stores, SplatValue,
DL))
1148 if (avoidLIRForMultiBlockLoop(
true, IsLoopMemset))
1159 std::optional<int64_t> BytesWritten;
1162 const SCEV *TripCountS =
1164 if (!Expander.isSafeToExpand(TripCountS))
1167 if (!ConstStoreSize)
1169 Value *TripCount = Expander.expandCodeFor(TripCountS, IntIdxTy,
1172 (ConstStoreSize->
getValue()->getZExtValue() * 8) /
1173 DL->getTypeSizeInBits(PatternValue->
getType());
1178 PatternRepsPerTrip == 1
1180 : Builder.CreateMul(TripCount,
1182 PatternRepsPerTrip));
1188 const SCEV *NumBytesS =
1189 getNumBytes(BECount, IntIdxTy, StoreSizeSCEV, CurLoop,
DL, SE);
1193 if (!Expander.isSafeToExpand(NumBytesS))
1196 Expander.expandCodeFor(NumBytesS, IntIdxTy, Preheader->
getTerminator());
1198 BytesWritten = CI->getZExtValue();
1200 assert(MemsetArg &&
"MemsetArg should have been set");
1204 AATags = AATags.
merge(
Store->getAAMetadata());
1206 AATags = AATags.
extendTo(BytesWritten.value());
1212 NewCall = Builder.CreateMemSet(BasePtr, SplatValue, MemsetArg,
1219 NewCall = Builder.CreateIntrinsicWithoutFolding(
1220 Intrinsic::experimental_memset_pattern,
1221 {DestInt8PtrTy, PatternValue->
getType(), IntIdxTy},
1222 {
BasePtr, PatternValue, MemsetArg,
1235 MemoryAccess *NewMemAcc = MSSAU->createMemoryAccessInBB(
1241 <<
" from store to: " << *Ev <<
" at: " << *TheStore
1247 R <<
"Transformed loop-strided store in "
1249 <<
" function into a call to "
1252 if (!Stores.empty())
1254 for (
auto *
I : Stores) {
1255 R <<
ore::NV(
"FromBlock",
I->getParent()->getName())
1263 for (
auto *
I : Stores) {
1265 MSSAU->removeMemoryAccess(
I,
true);
1269 MSSAU->getMemorySSA()->verifyMemorySSA();
1271 ExpCleaner.markResultUsed();
1278bool LoopIdiomRecognize::processLoopStoreOfLoopLoad(
StoreInst *
SI,
1279 const SCEV *BECount) {
1280 assert(
SI->isUnordered() &&
"Expected only non-volatile non-ordered stores.");
1282 Value *StorePtr =
SI->getPointerOperand();
1284 unsigned StoreSize =
DL->getTypeStoreSize(
SI->getValueOperand()->getType());
1297 return processLoopStoreOfLoopLoad(StorePtr, LoadPtr, StoreSizeSCEV,
1299 StoreEv, LoadEv, BECount);
1303class MemmoveVerifier {
1305 explicit MemmoveVerifier(
const SCEV &LoadStart,
const SCEV &StoreStart,
1306 ScalarEvolution &SE)
1307 :
DL(SE.getDataLayout()),
1308 Off(
dyn_cast<SCEVConstant>(SE.getMinusSCEV(&StoreStart, &LoadStart))),
1310 IsSameObject(
Off != nullptr) {}
1312 bool loadAndStoreMayFormMemmove(
unsigned StoreSize,
bool IsNegStride,
1313 const Instruction &TheLoad,
1314 bool IsMemCpy)
const {
1317 if (!Off || !BasePtr)
1319 const APInt &OffVal =
Off->getAPInt();
1324 NullBase->getPointerType()->getPointerAddressSpace()))
1331 LoadSize =
DL.getTypeSizeInBits(TheLoad.
getType()).getFixedValue() / 8;
1332 if (LoadSize != StoreSize)
1337 if (IsNegStride ? OffVal.
slt(LoadSize) : OffVal.
sgt(-LoadSize))
1343 const DataLayout &
DL;
1344 const SCEVConstant *
Off;
1348 const bool IsSameObject;
1352bool LoopIdiomRecognize::processLoopStoreOfLoopLoad(
1382 assert(ConstStoreSize &&
"store size is expected to be a constant");
1385 bool IsNegStride = StoreSize == -Stride;
1398 Value *StoreBasePtr = Expander.expandCodeFor(
1399 StrStart, Builder.getPtrTy(StrAS), Preheader->
getTerminator());
1411 IgnoredInsts.
insert(TheStore);
1414 const StringRef InstRemark = IsMemCpy ?
"memcpy" :
"load and store";
1416 bool LoopAccessStore =
1418 StoreSizeSCEV, *
AA, IgnoredInsts);
1419 if (LoopAccessStore) {
1425 IgnoredInsts.
insert(TheLoad);
1427 BECount, StoreSizeSCEV, *
AA, IgnoredInsts)) {
1431 <<
ore::NV(
"Inst", InstRemark) <<
" in "
1433 <<
" function will not be hoisted: "
1434 <<
ore::NV(
"Reason",
"The loop may access store location");
1438 IgnoredInsts.
erase(TheLoad);
1451 Value *LoadBasePtr = Expander.expandCodeFor(LdStart, Builder.getPtrTy(LdAS),
1456 MemmoveVerifier
Verifier(*LdStart, *StrStart, *SE);
1457 if (IsMemCpy && !
Verifier.IsSameObject)
1458 IgnoredInsts.
erase(TheStore);
1460 StoreSizeSCEV, *
AA, IgnoredInsts)) {
1463 <<
ore::NV(
"Inst", InstRemark) <<
" in "
1465 <<
" function will not be hoisted: "
1466 <<
ore::NV(
"Reason",
"The loop may access load location");
1472 bool UseMemMove = IsMemCpy ?
Verifier.IsSameObject : LoopAccessStore;
1481 assert((StoreAlign && LoadAlign) &&
1482 "Expect unordered load/store to have align.");
1483 if (*StoreAlign < StoreSize || *LoadAlign < StoreSize)
1490 if (StoreSize >
TTI->getAtomicMemIntrinsicMaxElementSize())
1495 if (!
Verifier.loadAndStoreMayFormMemmove(StoreSize, IsNegStride, *TheLoad,
1499 if (avoidLIRForMultiBlockLoop())
1504 const SCEV *NumBytesS =
1505 getNumBytes(BECount, IntIdxTy, StoreSizeSCEV, CurLoop,
DL, SE);
1508 Expander.expandCodeFor(NumBytesS, IntIdxTy, Preheader->
getTerminator());
1512 AATags = AATags.
merge(StoreAATags);
1514 AATags = AATags.
extendTo(CI->getZExtValue());
1524 NewCall = Builder.CreateMemMove(StoreBasePtr, StoreAlign, LoadBasePtr,
1525 LoadAlign, NumBytes,
1529 Builder.CreateMemCpy(StoreBasePtr, StoreAlign, LoadBasePtr, LoadAlign,
1530 NumBytes,
false, AATags);
1535 NewCall = Builder.CreateElementUnorderedAtomicMemCpy(
1536 StoreBasePtr, *StoreAlign, LoadBasePtr, *LoadAlign, NumBytes, StoreSize,
1542 MemoryAccess *NewMemAcc = MSSAU->createMemoryAccessInBB(
1548 <<
" from load ptr=" << *LoadEv <<
" at: " << *TheLoad
1550 <<
" from store ptr=" << *StoreEv <<
" at: " << *TheStore
1556 <<
"Formed a call to "
1558 <<
"() intrinsic from " <<
ore::NV(
"Inst", InstRemark)
1569 MSSAU->removeMemoryAccess(TheStore,
true);
1572 MSSAU->getMemorySSA()->verifyMemorySSA();
1577 ExpCleaner.markResultUsed();
1584bool LoopIdiomRecognize::avoidLIRForMultiBlockLoop(
bool IsMemset,
1585 bool IsLoopMemset) {
1586 if (ApplyCodeSizeHeuristics && CurLoop->
getNumBlocks() > 1) {
1587 if (CurLoop->
isOutermost() && (!IsMemset || !IsLoopMemset)) {
1589 <<
" : LIR " << (IsMemset ?
"Memset" :
"Memcpy")
1590 <<
" avoided: multi-block top-level loop\n");
1598bool LoopIdiomRecognize::optimizeCRCLoop(
const PolynomialInfo &Info) {
1618 TTI->getArithmeticInstrCost(Instruction::Xor, CRCTy,
CostKind);
1620 TTI->getArithmeticInstrCost(Instruction::LShr, CRCTy,
CostKind);
1622 TTI->getArithmeticInstrCost(Instruction::And, CRCTy,
CostKind);
1627 TTI->getMemoryOpCost(Instruction::Load, CRCTy,
DL->getABITypeAlign(CRCTy),
1628 DL->getDefaultGlobalsAddressSpace(),
CostKind);
1629 auto ClmulCost = [&](
unsigned BW) {
1632 return TTI->getIntrinsicInstrCost(Attrs,
CostKind);
1637 (2 * ShiftCost + 2 * XorCost + AndCost + SelectCost) *
Info.TripCount;
1642 Info.TripCount % 8 != 0
1644 : (LoadCost + XorCost + 2 * ShiftCost) * (
Info.TripCount / 8);
1648 ClmulCost(CRCBW +
Info.TripCount) +
1649 2 * XorCost + 2 * ShiftCost + AndCost;
1655 <<
"CRC loop costs: original="
1656 <<
ore::NV(
"OrigLoopCost", OrigLoopCost)
1657 <<
", table=" <<
ore::NV(
"TableStrategyCost", TableStrategyCost)
1658 <<
", clmul=" <<
ore::NV(
"ClmulStrategyCost", ClmulStrategyCost);
1661 auto ReportMissed = [&](
StringRef Reason) {
1666 <<
"CRC loop not optimized: " << Reason;
1673 <<
"CRC loop optimized using " <<
ore::NV(
"Strategy", Strategy)
1680 ReportMissed(
"disabled by user");
1685 if (
Info.TripCount % 8 == 0) {
1686 optimizeCRCLoopUsingTableLookup(Info);
1687 ReportOptimized(
"table",
"forced by user");
1690 ReportMissed(
"table strategy forced, but not possible");
1693 optimizeCRCLoopUsingClmul(Info);
1694 ReportOptimized(
"clmul",
"forced by user");
1702 if (ApplyCodeSizeHeuristics) {
1703 ReportMissed(
"optimizing for size");
1708 if (std::min(TableStrategyCost, ClmulStrategyCost) >= OrigLoopCost) {
1709 ReportMissed(
"no profitable strategy");
1713 if (TableStrategyCost <= ClmulStrategyCost) {
1714 optimizeCRCLoopUsingTableLookup(Info);
1715 ReportOptimized(
"table",
"most profitable strategy");
1717 optimizeCRCLoopUsingClmul(Info);
1718 ReportOptimized(
"clmul",
"most profitable strategy");
1727void LoopIdiomRecognize::optimizeCRCLoopUsingClmul(
const PolynomialInfo &Info) {
1736 unsigned TC =
Info.TripCount;
1747 ConstantInt::get(Ctx, Mu.zextOrTrunc(ClmulMuTy->
getBitWidth()));
1748 Value *GenPolyConst =
1749 ConstantInt::get(Ctx, FullGenPoly.zext(ClmulGPTy->
getBitWidth()));
1756 bool SetupShiftNeeded =
Info.IsBigEndian && TC != CRCBW;
1772 Value *ClmulMuInput =
1773 Builder.CreateZExtOrTrunc(
Info.LHS, SetupTy,
"crc.cast");
1779 Data = Builder.CreateZExtOrTrunc(
Data, SetupTy,
"data.cast");
1781 ClmulMuInput = Builder.CreateXor(ClmulMuInput,
Data,
"xor.crc.data");
1785 if (SetupShiftNeeded) {
1788 ? Builder.CreateShl(ClmulMuInput, TC - CRCBW,
"crc.align.tc")
1789 : Builder.CreateLShr(ClmulMuInput, CRCBW - TC,
"crc.align.tc");
1794 if (SetupTy->getBitWidth() > TC) {
1797 ClmulMuInput = Builder.CreateAnd(ClmulMuInput, Mask,
"crc.tcbits");
1803 Builder.CreateZExtOrTrunc(ClmulMuInput, ClmulMuTy,
"tcbits.cast");
1804 Value *ClmulMu = Builder.CreateBinaryIntrinsic(
1805 Intrinsic::clmul, ClmulMuInput, MuConst, {},
"clmul.mu");
1808 Value *ClmulGPInput =
1809 Info.IsBigEndian ? Builder.CreateLShr(ClmulMu, TC,
"quot.lshr") : ClmulMu;
1814 Builder.CreateZExtOrTrunc(ClmulGPInput, ClmulGPTy,
"quot.cast");
1815 Value *ClmulGP = Builder.CreateBinaryIntrinsic(Intrinsic::clmul, ClmulGPInput,
1822 Value *CRCNext = Builder.CreateZExt(
Info.LHS, ClmulGPTy,
"crc.recast");
1823 if (
Info.IsBigEndian)
1824 CRCNext = Builder.CreateShl(CRCNext, TC,
"crc.shl");
1827 CRCNext = Builder.CreateXor(CRCNext, ClmulGP,
"xor.crc.mult");
1828 if (!
Info.IsBigEndian)
1829 CRCNext = Builder.CreateLShr(CRCNext, TC,
"crc.lshr");
1832 CRCNext = Builder.CreateTrunc(CRCNext, CRCTy,
"crc.next");
1835 Info.ComputedValue->replaceUsesOutsideBlock(CRCNext, CurLoop->
getLoopLatch());
1849 Ctx, BrInst->getSuccessor(0) == CurLoop->
getExitBlock()));
1854void LoopIdiomRecognize::optimizeCRCLoopUsingTableLookup(
1856 assert(
Info.TripCount % 8 == 0 &&
"A byte-multiple trip count is required");
1862 std::array<Constant *, 256> CRCConstants;
1864 CRCConstants.begin(),
1865 [CRCTy](
const APInt &
E) { return ConstantInt::get(CRCTy, E); });
1887 unsigned NewBTC = (
Info.TripCount / 8) - 1;
1894 Value *ExitLimit = ConstantInt::get(
IV->getType(), NewBTC);
1896 Value *NewExitCond =
1897 Builder.CreateICmp(ExitPred,
IV, ExitLimit,
"exit.cond");
1919 Op = CRCBW > 8 ? Builder.CreateLShr(
Op, CRCBW - 8, Name)
1920 : Builder.CreateShl(
Op, 8 - CRCBW, Name);
1922 return LoByte(Builder,
Op, Name +
".lo.byte");
1930 PHINode *CRCPhi = Builder.CreatePHI(CRCTy, 2,
"crc");
1934 Value *CRC = CRCPhi;
1938 Value *Indexer = CRC;
1946 Value *IVBits = Builder.CreateZExtOrTrunc(
1947 Builder.CreateShl(
IV, 3,
"iv.bits"), DataTy,
"iv.indexer");
1948 Value *DataIndexer =
1949 Info.IsBigEndian ? Builder.CreateShl(
Data, IVBits,
"data.indexer")
1950 : Builder.CreateLShr(
Data, IVBits,
"data.indexer");
1951 Indexer = Builder.CreateXor(
1953 Builder.CreateZExtOrTrunc(Indexer, DataTy,
"crc.indexer.cast"),
1954 "crc.data.indexer");
1957 Indexer =
Info.IsBigEndian ? HiIdx(Builder, Indexer,
"indexer.hi")
1958 : LoByte(Builder, Indexer,
"indexer.lo");
1961 Indexer = Builder.CreateZExt(
1966 Value *CRCTableGEP =
1967 Builder.CreateInBoundsGEP(CRCTy, GV, Indexer,
"tbl.ptradd");
1968 Instruction *CRCTableLd = Builder.CreateLoad(CRCTy, CRCTableGEP,
"tbl.ld");
1972 auto *NewMemAcc = MSSAU->createMemoryAccessInBB(
1973 CRCTableLd,
nullptr, CRCTableLd->getParent(),
1980 Value *CRCNext = CRCTableLd;
1983 ? Builder.CreateShl(CRC, 8,
"crc.be.shift")
1984 : Builder.CreateLShr(CRC, 8,
"crc.le.shift");
1985 CRCNext = Builder.CreateXor(CRCShift, CRCTableLd,
"crc.next");
1990 Info.ComputedValue->replaceUsesOutsideBlock(CRCNext,
2000 MSSAU->getMemorySSA()->verifyMemorySSA();
2004bool LoopIdiomRecognize::runOnNoncountableLoop() {
2007 <<
"] Noncountable Loop %"
2010 return recognizePopcount() || recognizeAndInsertFFS() ||
2011 recognizeShiftUntilBitTest() || recognizeShiftUntilZero() ||
2012 recognizeShiftUntilLessThan() || recognizeAndInsertStrLen();
2022 bool JmpOnZero =
false) {
2028 if (!CmpZero || !CmpZero->isZero())
2039 return Cond->getOperand(0);
2046class StrlenVerifier {
2048 explicit StrlenVerifier(
const Loop *CurLoop, ScalarEvolution *SE,
2049 const TargetLibraryInfo *TLI)
2050 : CurLoop(CurLoop), SE(SE), TLI(TLI) {}
2052 bool isValidStrlenIdiom() {
2071 if (!LoopBody || LoopBody->
size() >= 15)
2092 const SCEV *LoadEv = SE->
getSCEV(IncPtr);
2105 if (OpWidth != StepSize * 8)
2107 if (OpWidth != 8 && OpWidth != 16 && OpWidth != 32)
2110 if (OpWidth != WcharSize * 8)
2114 for (Instruction &
I : *LoopBody)
2115 if (
I.mayHaveSideEffects())
2122 for (PHINode &PN : LoopExitBB->
phis()) {
2126 const SCEV *Ev = SE->
getSCEV(&PN);
2136 if (!AddRecEv || !AddRecEv->
isAffine())
2150 const Loop *CurLoop;
2151 ScalarEvolution *SE;
2152 const TargetLibraryInfo *TLI;
2155 ConstantInt *StepSizeCI;
2156 const SCEV *LoadBaseEv;
2221bool LoopIdiomRecognize::recognizeAndInsertStrLen() {
2225 StrlenVerifier
Verifier(CurLoop, SE, TLI);
2227 if (!
Verifier.isValidStrlenIdiom())
2234 assert(Preheader && LoopBody && LoopExitBB &&
2235 "Should be verified to be valid by StrlenVerifier");
2250 Builder.SetCurrentDebugLocation(CurLoop->
getStartLoc());
2252 Value *MaterialzedBase = Expander.expandCodeFor(
2254 Builder.GetInsertPoint());
2256 Value *StrLenFunc =
nullptr;
2258 StrLenFunc =
emitStrLen(MaterialzedBase, Builder, *
DL, TLI);
2260 StrLenFunc =
emitWcsLen(MaterialzedBase, Builder, *
DL, TLI);
2262 assert(StrLenFunc &&
"Failed to emit strlen function.");
2281 StrlenEv,
Base->getType())));
2283 Value *MaterializedPHI = Expander.expandCodeFor(NewEv, NewEv->
getType(),
2284 Builder.GetInsertPoint());
2299 "loop body must have a successor that is it self");
2301 ? Builder.getFalse()
2302 : Builder.getTrue();
2307 LLVM_DEBUG(
dbgs() <<
" Formed strlen idiom: " << *StrLenFunc <<
"\n");
2311 <<
"Transformed " << StrLenFunc->
getName() <<
" loop idiom";
2336 return Cond->getOperand(0);
2347 if (PhiX && PhiX->getParent() == LoopEntry &&
2348 (PhiX->getOperand(0) == DefX || PhiX->
getOperand(1) == DefX))
2415 if (DefX->
getOpcode() != Instruction::LShr)
2418 IntrinID = Intrinsic::ctlz;
2420 if (!Shft || !Shft->
isOne())
2434 if (Inst.
getOpcode() != Instruction::Add)
2486 Value *VarX1, *VarX0;
2489 DefX2 = CountInst =
nullptr;
2490 VarX1 = VarX0 =
nullptr;
2491 PhiX = CountPhi =
nullptr;
2504 if (!DefX2 || DefX2->
getOpcode() != Instruction::And)
2515 if (!SubOneOp || SubOneOp->
getOperand(0) != VarX1)
2521 (SubOneOp->
getOpcode() == Instruction::Add &&
2534 CountInst =
nullptr;
2537 if (Inst.
getOpcode() != Instruction::Add)
2541 if (!Inc || !Inc->
isOne())
2549 bool LiveOutLoop =
false;
2578 CntInst = CountInst;
2618 Value *VarX =
nullptr;
2632 if (!DefX || !DefX->
isShift())
2634 IntrinID = DefX->
getOpcode() == Instruction::Shl ? Intrinsic::cttz :
2637 if (!Shft || !Shft->
isOne())
2662 if (Inst.
getOpcode() != Instruction::Add)
2685bool LoopIdiomRecognize::isProfitableToInsertFFS(
Intrinsic::ID IntrinID,
2686 Value *InitX,
bool ZeroCheck,
2687 size_t CanonicalSize) {
2705bool LoopIdiomRecognize::insertFFSIfProfitable(
Intrinsic::ID IntrinID,
2709 bool IsCntPhiUsedOutsideLoop =
false;
2712 IsCntPhiUsedOutsideLoop =
true;
2715 bool IsCntInstUsedOutsideLoop =
false;
2718 IsCntInstUsedOutsideLoop =
true;
2723 if (IsCntInstUsedOutsideLoop && IsCntPhiUsedOutsideLoop)
2729 bool ZeroCheck =
false;
2738 if (!IsCntPhiUsedOutsideLoop) {
2757 size_t IdiomCanonicalSize = 6;
2758 if (!isProfitableToInsertFFS(IntrinID, InitX, ZeroCheck, IdiomCanonicalSize))
2761 transformLoopToCountable(IntrinID, PH, CntInst, CntPhi, InitX, DefX,
2763 IsCntPhiUsedOutsideLoop);
2770bool LoopIdiomRecognize::recognizeAndInsertFFS() {
2785 return insertFFSIfProfitable(IntrinID, InitX, DefX, CntPhi, CntInst);
2788bool LoopIdiomRecognize::recognizeShiftUntilLessThan() {
2799 APInt LoopThreshold;
2801 CntPhi, DefX, LoopThreshold))
2804 if (LoopThreshold == 2) {
2806 return insertFFSIfProfitable(IntrinID, InitX, DefX, CntPhi, CntInst);
2810 if (LoopThreshold != 4)
2828 APInt PreLoopThreshold;
2830 PreLoopThreshold != 2)
2833 bool ZeroCheck =
true;
2842 size_t IdiomCanonicalSize = 6;
2843 if (!isProfitableToInsertFFS(IntrinID, InitX, ZeroCheck, IdiomCanonicalSize))
2847 transformLoopToCountable(IntrinID, PH, CntInst, CntPhi, InitX, DefX,
2858bool LoopIdiomRecognize::recognizePopcount() {
2872 if (LoopBody->
size() >= 20) {
2900 transformLoopToPopcount(PreCondBB, CntInst, CntPhi, Val);
2954void LoopIdiomRecognize::transformLoopToCountable(
2957 bool ZeroCheck,
bool IsCntPhiUsedOutsideLoop,
bool InsertSub) {
2960 Builder.SetCurrentDebugLocation(
DL);
2969 if (IsCntPhiUsedOutsideLoop) {
2970 if (DefX->
getOpcode() == Instruction::AShr)
2971 InitXNext = Builder.CreateAShr(InitX, 1);
2972 else if (DefX->
getOpcode() == Instruction::LShr)
2973 InitXNext = Builder.CreateLShr(InitX, 1);
2974 else if (DefX->
getOpcode() == Instruction::Shl)
2975 InitXNext = Builder.CreateShl(InitX, 1);
2983 Count = Builder.CreateSub(
2986 Count = Builder.CreateSub(
Count, ConstantInt::get(CountTy, 1));
2988 if (IsCntPhiUsedOutsideLoop)
2989 Count = Builder.CreateAdd(
Count, ConstantInt::get(CountTy, 1));
2991 NewCount = Builder.CreateZExtOrTrunc(NewCount, CntInst->
getType());
2998 if (!InitConst || !InitConst->
isZero())
2999 NewCount = Builder.CreateAdd(NewCount, CntInitVal);
3003 NewCount = Builder.CreateSub(CntInitVal, NewCount);
3021 Builder.SetInsertPoint(LbCond);
3023 TcPhi, ConstantInt::get(CountTy, 1),
"tcdec",
false,
true));
3032 LbCond->
setOperand(1, ConstantInt::get(CountTy, 0));
3036 if (IsCntPhiUsedOutsideLoop)
3046void LoopIdiomRecognize::transformLoopToPopcount(
BasicBlock *PreCondBB,
3059 Value *PopCnt, *PopCntZext, *NewCount, *TripCnt;
3062 NewCount = PopCntZext =
3065 if (NewCount != PopCnt)
3074 if (!InitConst || !InitConst->
isZero()) {
3075 NewCount = Builder.CreateAdd(NewCount, CntInitVal);
3087 Value *Opnd0 = PopCntZext;
3088 Value *Opnd1 = ConstantInt::get(PopCntZext->
getType(), 0);
3093 Builder.CreateICmp(PreCond->
getPredicate(), Opnd0, Opnd1));
3094 PreCondBr->setCondition(NewPreCond);
3128 Builder.SetInsertPoint(LbCond);
3130 Builder.CreateSub(TcPhi, ConstantInt::get(Ty, 1),
3131 "tcdec",
false,
true));
3140 LbCond->
setOperand(1, ConstantInt::get(Ty, 0));
3161 template <
typename ITy>
bool match(ITy *V)
const {
3162 return L->isLoopInvariant(V) &&
SubPattern.match(V);
3167template <
typename Ty>
3198 " Performing shift-until-bittest idiom detection.\n");
3208 assert(LoopPreheaderBB &&
"There is always a loop preheader.");
3215 Value *CmpLHS, *CmpRHS;
3226 auto MatchVariableBitMask = [&]() {
3236 auto MatchDecomposableConstantBitMask = [&]() {
3238 CmpLHS, CmpRHS, Pred,
true,
3240 if (Res && Res->Mask.isPowerOf2()) {
3244 BitMask = ConstantInt::get(CurrX->
getType(), Res->Mask);
3245 BitPos = ConstantInt::get(CurrX->
getType(), Res->Mask.logBase2());
3251 if (!MatchVariableBitMask() && !MatchDecomposableConstantBitMask()) {
3258 if (!CurrXPN || CurrXPN->getParent() != LoopHeaderBB) {
3263 BaseX = CurrXPN->getIncomingValueForBlock(LoopPreheaderBB);
3268 "Expected BaseX to be available in the preheader!");
3279 "Should only get equality predicates here.");
3289 if (TrueBB != LoopHeaderBB) {
3348bool LoopIdiomRecognize::recognizeShiftUntilBitTest() {
3349 bool MadeChange =
false;
3351 Value *
X, *BitMask, *BitPos, *XCurr;
3356 " shift-until-bittest idiom detection failed.\n");
3366 assert(LoopPreheaderBB &&
"There is always a loop preheader.");
3369 assert(SuccessorBB &&
"There is only a single successor.");
3375 Type *Ty =
X->getType();
3389 " Intrinsic is too costly, not beneficial\n");
3392 if (
TTI->getArithmeticInstrCost(Instruction::Shl, Ty,
CostKind) >
3404 std::optional<BasicBlock::iterator> InsertPt = std::nullopt;
3406 InsertPt = BitPosI->getInsertionPointAfterDef();
3414 return U.getUser() != BitPosFrozen;
3416 BitPos = BitPosFrozen;
3422 BitPos->
getName() +
".lowbitmask");
3424 Builder.CreateOr(LowBitMask, BitMask, BitPos->
getName() +
".mask");
3425 Value *XMasked = Builder.CreateAnd(
X, Mask,
X->getName() +
".masked");
3426 Value *XMaskedNumLeadingZeros = Builder.CreateIntrinsic(
3427 IntrID, Ty, {XMasked, Builder.getTrue()},
3428 nullptr, XMasked->
getName() +
".numleadingzeros");
3429 Value *XMaskedNumActiveBits = Builder.CreateSub(
3431 XMasked->
getName() +
".numactivebits",
true,
3433 Value *XMaskedLeadingOnePos =
3435 XMasked->
getName() +
".leadingonepos",
false,
3438 Value *LoopBackedgeTakenCount = Builder.CreateSub(
3439 BitPos, XMaskedLeadingOnePos, CurLoop->
getName() +
".backedgetakencount",
3443 Value *LoopTripCount =
3444 Builder.CreateAdd(LoopBackedgeTakenCount, ConstantInt::get(Ty, 1),
3445 CurLoop->
getName() +
".tripcount",
true,
3452 Value *NewX = Builder.CreateShl(
X, LoopBackedgeTakenCount);
3455 I->copyIRFlags(XNext,
true);
3467 NewXNext = Builder.CreateShl(
X, LoopTripCount);
3472 NewXNext = Builder.CreateShl(NewX, ConstantInt::get(Ty, 1));
3477 I->copyIRFlags(XNext,
true);
3488 Builder.SetInsertPoint(LoopHeaderBB, LoopHeaderBB->
begin());
3489 auto *
IV = Builder.CreatePHI(Ty, 2, CurLoop->
getName() +
".iv");
3495 Builder.CreateAdd(
IV, ConstantInt::get(Ty, 1),
IV->getName() +
".next",
3496 true, Bitwidth != 2);
3499 auto *IVCheck = Builder.CreateICmpEQ(IVNext, LoopTripCount,
3500 CurLoop->
getName() +
".ivcheck");
3502 const bool HasBranchWeights =
3506 auto *BI = Builder.CreateCondBr(IVCheck, SuccessorBB, LoopHeaderBB);
3507 if (HasBranchWeights) {
3509 std::swap(BranchWeights[0], BranchWeights[1]);
3519 IV->addIncoming(ConstantInt::get(Ty, 0), LoopPreheaderBB);
3520 IV->addIncoming(IVNext, LoopHeaderBB);
3531 ++NumShiftUntilBitTest;
3567 const SCEV *&ExtraOffsetExpr,
3568 bool &InvertedCond) {
3570 " Performing shift-until-zero idiom detection.\n");
3583 assert(LoopPreheaderBB &&
"There is always a loop preheader.");
3594 !
match(ValShiftedIsZero,
3608 IntrinID = ValShifted->
getOpcode() == Instruction::Shl ? Intrinsic::cttz
3617 else if (
match(NBits,
3621 ExtraOffsetExpr = SE->
getSCEV(ExtraOffset);
3629 if (!IVPN || IVPN->getParent() != LoopHeaderBB) {
3634 Start = IVPN->getIncomingValueForBlock(LoopPreheaderBB);
3645 "Should only get equality predicates here.");
3656 if (FalseBB != LoopHeaderBB) {
3667 if (ValShifted->
getOpcode() == Instruction::AShr &&
3731bool LoopIdiomRecognize::recognizeShiftUntilZero() {
3732 bool MadeChange =
false;
3738 const SCEV *ExtraOffsetExpr;
3741 Start, Val, ExtraOffsetExpr, InvertedCond)) {
3743 " shift-until-zero idiom detection failed.\n");
3753 assert(LoopPreheaderBB &&
"There is always a loop preheader.");
3756 assert(SuccessorBB &&
"There is only a single successor.");
3759 Builder.SetCurrentDebugLocation(
IV->getDebugLoc());
3775 " Intrinsic is too costly, not beneficial\n");
3782 bool OffsetIsZero = ExtraOffsetExpr->
isZero();
3786 Value *ValNumLeadingZeros = Builder.CreateIntrinsic(
3787 IntrID, Ty, {Val, Builder.getFalse()},
3788 nullptr, Val->
getName() +
".numleadingzeros");
3789 Value *ValNumActiveBits = Builder.CreateSub(
3791 Val->
getName() +
".numactivebits",
true,
3795 Expander.setInsertPoint(&*Builder.GetInsertPoint());
3796 Value *ExtraOffset = Expander.expandCodeFor(ExtraOffsetExpr);
3798 Value *ValNumActiveBitsOffset = Builder.CreateAdd(
3799 ValNumActiveBits, ExtraOffset, ValNumActiveBits->
getName() +
".offset",
3800 OffsetIsZero,
true);
3801 Value *IVFinal = Builder.CreateIntrinsic(Intrinsic::smax, {Ty},
3802 {ValNumActiveBitsOffset,
Start},
3803 nullptr,
"iv.final");
3806 IVFinal, Start, CurLoop->
getName() +
".backedgetakencount",
3807 OffsetIsZero,
true));
3811 Value *LoopTripCount =
3812 Builder.CreateAdd(LoopBackedgeTakenCount, ConstantInt::get(Ty, 1),
3813 CurLoop->
getName() +
".tripcount",
true,
3819 IV->replaceUsesOutsideBlock(IVFinal, LoopHeaderBB);
3824 Builder.SetInsertPoint(LoopHeaderBB, LoopHeaderBB->
begin());
3825 auto *CIV = Builder.CreatePHI(Ty, 2, CurLoop->
getName() +
".iv");
3830 Builder.CreateAdd(CIV, ConstantInt::get(Ty, 1), CIV->getName() +
".next",
3831 true, Bitwidth != 2);
3834 auto *CIVCheck = Builder.CreateICmpEQ(CIVNext, LoopTripCount,
3835 CurLoop->
getName() +
".ivcheck");
3836 auto *NewIVCheck = CIVCheck;
3838 NewIVCheck = Builder.CreateNot(CIVCheck);
3839 NewIVCheck->takeName(ValShiftedIsZero);
3843 auto *IVDePHId = Builder.CreateAdd(CIV, Start,
"",
false,
3845 IVDePHId->takeName(
IV);
3850 const bool HasBranchWeights =
3854 auto *BI = Builder.CreateCondBr(CIVCheck, SuccessorBB, LoopHeaderBB);
3855 if (HasBranchWeights) {
3857 std::swap(BranchWeights[0], BranchWeights[1]);
3865 CIV->addIncoming(ConstantInt::get(Ty, 0), LoopPreheaderBB);
3866 CIV->addIncoming(CIVNext, LoopHeaderBB);
3874 IV->replaceAllUsesWith(IVDePHId);
3875 IV->eraseFromParent();
3884 ++NumShiftUntilZero;
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static const Function * getParent(const Value *V)
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
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...
static cl::opt< OutputCostKind > CostKind("cost-kind", cl::desc("Target cost kind"), cl::init(OutputCostKind::RecipThroughput), cl::values(clEnumValN(OutputCostKind::RecipThroughput, "throughput", "Reciprocal throughput"), clEnumValN(OutputCostKind::Latency, "latency", "Instruction latency"), clEnumValN(OutputCostKind::CodeSize, "code-size", "Code size"), clEnumValN(OutputCostKind::SizeAndLatency, "size-latency", "Code size and latency"), clEnumValN(OutputCostKind::All, "all", "Print all cost kinds")))
This file defines the DenseMap class.
ManagedStatic< HTTPClientCleanup > Cleanup
static bool mayLoopAccessLocation(Value *Ptr, ModRefInfo Access, Loop *L, const SCEV *BECount, unsigned StoreSize, AliasAnalysis &AA, SmallPtrSetImpl< Instruction * > &Ignored)
mayLoopAccessLocation - Return true if the specified loop might access the specified pointer location...
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
This file defines an InstructionCost class that is used when calculating the cost of an instruction,...
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
static PHINode * getRecurrenceVar(Value *VarX, Instruction *DefX, BasicBlock *LoopEntry)
static Value * createPopcntIntrinsic(IRBuilder<> &IRBuilder, Value *Val, const DebugLoc &DL)
static Value * matchShiftULTCondition(CondBrInst *BI, BasicBlock *LoopEntry, APInt &Threshold)
Check if the given conditional branch is based on an unsigned less-than comparison between a variable...
static bool detectShiftUntilLessThanIdiom(Loop *CurLoop, const DataLayout &DL, Intrinsic::ID &IntrinID, Value *&InitX, Instruction *&CntInst, PHINode *&CntPhi, Instruction *&DefX, APInt &Threshold)
Return true if the idiom is detected in the loop.
static Value * matchCondition(CondBrInst *BI, BasicBlock *LoopEntry, bool JmpOnZero=false)
Check if the given conditional branch is based on the comparison between a variable and zero,...
static bool detectShiftUntilBitTestIdiom(Loop *CurLoop, Value *&BaseX, Value *&BitMask, Value *&BitPos, Value *&CurrX, Instruction *&NextX)
Return true if the idiom is detected in the loop.
static bool detectPopcountIdiom(Loop *CurLoop, BasicBlock *PreCondBB, Instruction *&CntInst, PHINode *&CntPhi, Value *&Var)
Return true iff the idiom is detected in the loop.
static Constant * getMemSetPatternValue(Value *V, const DataLayout *DL)
getMemSetPatternValue - If a strided store of the specified value is safe to turn into a memset....
static const SCEV * getNumBytes(const SCEV *BECount, Type *IntPtr, const SCEV *StoreSizeSCEV, Loop *CurLoop, const DataLayout *DL, ScalarEvolution *SE)
Compute the number of bytes as a SCEV from the backedge taken count.
static bool detectShiftUntilZeroIdiom(Loop *CurLoop, const DataLayout &DL, Intrinsic::ID &IntrinID, Value *&InitX, Instruction *&CntInst, PHINode *&CntPhi, Instruction *&DefX)
Return true if the idiom is detected in the loop.
static Value * createFFSIntrinsic(IRBuilder<> &IRBuilder, Value *Val, const DebugLoc &DL, bool ZeroCheck, Intrinsic::ID IID)
static const SCEV * getStartForNegStride(const SCEV *Start, const SCEV *BECount, Type *IntPtr, const SCEV *StoreSizeSCEV, ScalarEvolution *SE)
static APInt getStoreStride(const SCEVAddRecExpr *StoreEv)
match_LoopInvariant< Ty > m_LoopInvariant(const Ty &M, const Loop *L)
Matches if the value is loop-invariant.
static bool isSameByteValueStore(Instruction &I, Value *SplatByte, Loop *L, const DataLayout &DL)
Return true if I is a (simple, loop-invariant-valued) store of the same bytewise value SplatByte.
static void deleteDeadInstruction(Instruction *I)
This file implements a map that provides insertion order iteration.
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 ...
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
verify safepoint Safepoint IR Verifier
This file implements a set that has insertion order iteration characteristics.
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)
static SymbolRef::Type getType(const Symbol *Sym)
static const uint32_t IV[8]
Class for arbitrary precision integers.
std::optional< uint64_t > tryZExtValue() const
Get zero extended value if possible.
uint64_t getZExtValue() const
Get zero extended value.
bool sgt(const APInt &RHS) const
Signed greater than comparison.
unsigned getBitWidth() const
Return the number of bits in the APInt.
static APInt getLowBitsSet(unsigned numBits, unsigned loBitsSet)
Constructs an APInt value that has the bottom loBitsSet bits set.
bool slt(const APInt &RHS) const
Signed less than comparison.
int64_t getSExtValue() const
Get sign extended value.
static LLVM_ABI ArrayType * get(Type *ElementType, uint64_t NumElements)
This static method is the primary way to construct an ArrayType.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
const Function * getParent() const
Return the enclosing method, or null if none.
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
LLVM_ABI const BasicBlock * getSinglePredecessor() const
Return the predecessor of this block if it has a single predecessor block.
const Instruction & front() const
InstListType::iterator iterator
Instruction iterators...
LLVM_ABI const_iterator getFirstNonPHIOrDbgOrAlloca() const
Returns an iterator to the first instruction in this block that is not a PHINode, a debug intrinsic,...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
LLVM_ABI const Module * getModule() const
Return the module owning the function this basic block belongs to, or nullptr if the function does no...
BinaryOps getOpcode() const
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
This class represents a function call, abstracting a target machine's calling convention.
void setPredicate(Predicate P)
Set the predicate for this instruction to the specified value.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
@ ICMP_SLE
signed less or equal
@ ICMP_UGT
unsigned greater than
@ ICMP_ULT
unsigned less than
Predicate getInversePredicate() const
For example, EQ -> NE, UGT -> ULE, SLT -> SGE, OEQ -> UNE, UGT -> OLE, OLT -> UGE,...
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
static LLVM_ABI Constant * get(ArrayType *T, ArrayRef< Constant * > V)
This is the shared class of boolean and integer constants.
bool isMinusOne() const
This function will return true iff every bit in this constant is set to true.
bool isOne() const
This is just a convenience method to make client code smaller for a common case.
bool isZero() const
This is just a convenience method to make client code smaller for a common code.
static LLVM_ABI ConstantInt * getFalse(LLVMContext &Context)
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
const APInt & getValue() const
Return the constant as an APInt value reference.
static LLVM_ABI ConstantInt * getBool(LLVMContext &Context, bool V)
This is an important base class in LLVM.
static LLVM_ABI Constant * getAllOnesValue(Type *Ty)
A parsed version of the target data layout string in and methods for querying it.
LLVM_ABI IntegerType * getIndexType(LLVMContext &C, unsigned AddressSpace) const
Returns the type of a GEP index in AddressSpace.
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 class represents a freeze function that returns random concrete value if an operand is either a ...
PointerType * getType() const
Global values are always pointers.
@ PrivateLinkage
Like Internal, but omit from symbol table.
static LLVM_ABI CRCTable genSarwateTable(const APInt &GenPoly, bool IsBigEndian)
Generate a lookup table of 256 entries by interleaving the generating polynomial.
static LLVM_ABI std::pair< APInt, APInt > genBarrettConstants(const PolynomialInfo &Info)
Auxilary entry point after analysis to generate constants for a GF(2) Barrett Reduction.
This instruction compares its operands according to the predicate given to the constructor.
bool isEquality() const
Return true if this predicate is either EQ or NE.
static bool isEquality(Predicate P)
Return true if this predicate is either EQ or NE.
Common base class shared among various IRBuilders.
ConstantInt * getInt1(bool V)
Get a constant value representing either true or false.
Value * CreateZExtOrTrunc(Value *V, Type *DestTy, const Twine &Name="")
Create a ZExt or Trunc from the integer value V to DestTy.
void SetCurrentDebugLocation(const DebugLoc &L)
Set location information used by debugging information.
LLVM_ABI Value * CreateIntrinsic(Intrinsic::ID ID, ArrayRef< Type * > OverloadTypes, ArrayRef< Value * > Args, FMFSource FMFSource={}, const Twine &Name="", ArrayRef< OperandBundleDef > OpBundles={}, function_ref< void(CallInst *)> SetFn=[](CallInst *) {})
Variant to create a possibly constant-folded intrinsic.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
static InstructionCost getInvalid(CostType Val=0)
LLVM_ABI bool hasNoUnsignedWrap() const LLVM_READONLY
Determine whether the no unsigned wrap flag is set.
LLVM_ABI bool hasNoSignedWrap() const LLVM_READONLY
Determine whether the no signed wrap flag is set.
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
LLVM_ABI void setAAMetadata(const AAMDNodes &N)
Sets the AA metadata on this instruction from the AAMDNodes structure.
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.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
LLVM_ABI BasicBlock * getSuccessor(unsigned Idx) const LLVM_READONLY
Return the specified successor. This instruction must be a terminator.
LLVM_ABI AAMDNodes getAAMetadata() const
Returns the AA metadata for this instruction.
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.
Class to represent integer types.
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
unsigned getBitWidth() const
Get the number of bits in this IntegerType.
This is an important class for using LLVM in a threaded context.
This class provides an interface for updating the loop pass manager based on mutations to the loop ne...
An instruction for reading from memory.
unsigned getPointerAddressSpace() const
Returns the address space of the pointer operand.
Value * getPointerOperand()
bool isVolatile() const
Return true if this is a load from a volatile memory location.
Align getAlign() const
Return the alignment of the access that is being performed.
static LocationSize precise(uint64_t Value)
static constexpr LocationSize afterPointer()
Any location after the base pointer (but still within the underlying object).
bool contains(const LoopT *L) const
Return true if the specified loop is contained within this loop.
bool isOutermost() const
Return true if the loop does not have a parent (natural) loop.
BlockT * getLoopLatch() const
If there is a single latch block for this loop, return it.
unsigned getNumBlocks() const
Get the number of blocks in this loop in constant time.
unsigned getNumBackEdges() const
Calculate the number of back edges to the loop header.
BlockT * getHeader() const
BlockT * getExitBlock() const
If getExitBlocks would return exactly one block, return that block.
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.
block_iterator block_begin() const
BlockT * getUniqueExitBlock() const
If getUniqueExitBlocks would return exactly one block, return that block.
LLVM_ABI PreservedAnalyses run(Loop &L, LoopAnalysisManager &AM, LoopStandardAnalysisResults &AR, LPMUpdater &U)
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
Represents a single loop in the control flow graph.
DebugLoc getStartLoc() const
Return the debug location of the start of this loop.
bool isLoopInvariant(const Value *V) const
Return true if the specified value is loop invariant.
ICmpInst * getLatchCmpInst() const
Get the latch condition instruction.
StringRef getName() const
PHINode * getCanonicalInductionVariable() const
Check to see if the loop has a canonical induction variable: an integer recurrence that starts at 0 a...
This class wraps the llvm.memcpy intrinsic.
Value * getLength() const
Value * getDest() const
This is just like getRawDest, but it strips off any cast instructions (including addrspacecast) that ...
MaybeAlign getDestAlign() const
bool isForceInlined() const
This class wraps the llvm.memset and llvm.memset.inline intrinsics.
MaybeAlign getSourceAlign() const
Value * getSource() const
This is just like getRawSource, but it strips off any cast instructions that feed it,...
Representation for a specific memory location.
An analysis that produces MemorySSA for a function.
Encapsulates MemorySSA, including all data associated with memory accesses.
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.
Value * getIncomingValueForBlock(const BasicBlock *BB) const
Value * getIncomingValue(unsigned i) const
Return incoming value number x.
int getBasicBlockIndex(const BasicBlock *BB) const
Return the first index of the specified basic block in the value list for this PHI.
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.
bool isAffine() const
Return true if this represents an expression A + B*x where A and B are loop invariant values.
SCEVUse getStepRecurrence(ScalarEvolution &SE) const
Constructs and returns the recurrence indicating how much this expression steps by.
This class represents a constant integer value.
ConstantInt * getValue() const
const APInt & getAPInt() const
Helper to remove instructions inserted during SCEV expansion, unless they are marked as used.
This class uses information about analyze scalars to rewrite expressions in canonical form.
SCEVUse getOperand(unsigned i) const
This class represents an analyzed expression in the program.
LLVM_ABI bool isOne() const
Return true if the expression is a constant one.
static constexpr auto FlagNUW
LLVM_ABI bool isZero() const
Return true if the expression is a constant zero.
LLVM_ABI bool isNonConstantNegative() const
Return true if the specified scev is negated, but not a constant.
Type * getType() const
Return the LLVM type of this SCEV expression.
The main scalar evolution driver.
const DataLayout & getDataLayout() const
Return the DataLayout associated with the module this SCEV instance is operating on.
LLVM_ABI bool isKnownNonNegative(const SCEV *S)
Test if the given expression is known to be non-negative.
LLVM_ABI const SCEV * getNegativeSCEV(const SCEV *V, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap)
Return the SCEV object corresponding to -V.
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...
const SCEV * getZero(Type *Ty)
Return a SCEV for the constant 0 of a specific type.
LLVM_ABI const SCEV * getConstant(ConstantInt *V)
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.
LLVM_ABI const SCEV * getTripCountFromExitCount(const SCEV *ExitCount)
A version of getTripCountFromExitCount below which always picks an evaluation type which can not resu...
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 bool isSCEVable(Type *Ty) const
Test if values of the given type are analyzable within the SCEV framework.
LLVM_ABI bool hasLoopInvariantBackedgeTakenCount(const Loop *L)
Return true if the specified loop has an analyzable loop-invariant backedge-taken count.
LLVM_ABI const SCEV * getMulExpr(SmallVectorImpl< SCEVUse > &Ops, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Get a canonical multiply expression, or something simpler if possible.
LLVM_ABI const SCEV * getAddExpr(SmallVectorImpl< SCEVUse > &Ops, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Get a canonical add expression, or something simpler if possible.
LLVM_ABI const SCEV * applyLoopGuards(const SCEV *Expr, const Loop *L)
Try to apply information from loop guards for L to Expr.
LLVM_ABI const SCEV * getTruncateOrZeroExtend(const SCEV *V, Type *Ty, unsigned Depth=0)
Return a SCEV corresponding to a conversion of the input value to the specified type.
LLVM_ABI const SCEV * getTruncateOrSignExtend(const SCEV *V, Type *Ty, unsigned Depth=0)
Return a SCEV corresponding to a conversion of the input value to the specified type.
A vector that has set insertion semantics.
size_type count(const_arg_type key) const
Count the number of elements of a given key in the SetVector.
bool insert(const value_type &X)
Insert a new element into the SetVector.
Simple and conservative implementation of LoopSafetyInfo that can give false-positive answers to its ...
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.
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.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
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.
Value * getValueOperand()
Value * getPointerOperand()
Represent a constant reference to a string, i.e.
Provides information about what library functions are available for the current target.
unsigned getWCharSize(const Module &M) const
Returns the size of the wchar_t type in bytes.
bool has(LibFunc F) const
Tests whether a library function is available.
Triple - Helper class for working with autoconf configuration names.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM_ABI unsigned getIntegerBitWidth() const
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
bool isIntOrPtrTy() const
Return true if this is an integer type or a pointer type.
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
A Use represents the edge between a Value definition and its users.
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.
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 void replaceUsesOutsideBlock(Value *V, BasicBlock *BB)
replaceUsesOutsideBlock - Go through the uses list for this definition and make each use point to "V"...
LLVM_ABI bool replaceUsesWithIf(Value *New, llvm::function_ref< bool(Use &U)> ShouldReplace)
Go through the uses list for this definition and make each use point to "V" if the callback ShouldRep...
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.
constexpr ScalarTy getFixedValue() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
const ParentTy * getParent() const
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
Abstract Attribute helper functions.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
@ BasicBlock
Various leaf nodes.
OperandType
Operands are tagged with one of the values of this enum.
match_combine_and< Ty... > m_CombineAnd(const Ty &...Ps)
Combine pattern matchers matching all of Ps patterns.
BinaryOp_match< LHS, RHS, Instruction::Add > m_Add(const LHS &L, const RHS &R)
BinaryOp_match< LHS, RHS, Instruction::And, true > m_c_And(const LHS &L, const RHS &R)
Matches an And with LHS and RHS in either order.
bool match(Val *V, const Pattern &P)
match_bind< Instruction > m_Instruction(Instruction *&I)
Match an instruction, capturing it if we match.
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
cst_pred_ty< is_one > m_One()
Match an integer 1 or a vector with all elements equal to 1.
auto m_BasicBlock()
Match an arbitrary basic block value and ignore it.
auto m_Value()
Match an arbitrary value and ignore it.
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.
CmpClass_match< LHS, RHS, ICmpInst > m_ICmp(CmpPredicate &Pred, const LHS &L, const RHS &R)
BinOpPred_match< LHS, RHS, is_shift_op > m_Shift(const LHS &L, const RHS &R)
Matches shift operations.
BinaryOp_match< LHS, RHS, Instruction::Shl > m_Shl(const LHS &L, const RHS &R)
brc_match< Cond_t, match_bind< BasicBlock >, match_bind< BasicBlock > > m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F)
is_zero m_Zero()
Match any null constant or a vector with all elements equal to 0.
BinaryOp_match< LHS, RHS, Instruction::Sub > m_Sub(const LHS &L, const RHS &R)
cst_pred_ty< icmp_pred_with_threshold > m_SpecificInt_ICMP(ICmpInst::Predicate Predicate, const APInt &Threshold)
Match an integer or vector with every element comparing 'pred' (eg/ne/...) to Threshold.
bind_cst_ty m_scev_APInt(const APInt *&C)
Match an SCEV constant and bind it to an APInt.
specificloop_ty m_SpecificLoop(const Loop *L)
bool match(const SCEV *S, const Pattern &P)
specificscev_ty m_scev_Specific(const SCEV *S)
Match if we have a specific specified SCEV.
SCEVAffineAddRec_match< Op0_t, Op1_t, match_isa< const Loop > > m_scev_AffineAddRec(const Op0_t &Op0, const Op1_t &Op1)
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)
LocationClass< Ty > location(Ty &L)
DiagnosticInfoOptimizationBase::Argument NV
DiagnosticInfoOptimizationBase::setExtraArgs setExtraArgs
bool isSimple(Instruction *I)
This is an optimization pass for GlobalISel generic memory operations.
static cl::opt< bool, true > DisableLIRPHashRecognize("disable-" DEBUG_TYPE "-hashrecognize", cl::desc("Proceed with loop idiom recognize pass, " "but do not do hash-recognize analysis."), cl::location(DisableLIRP::HashRecognize), cl::init(false), cl::ReallyHidden)
LLVM_ABI cl::opt< bool > ProfcheckDisableMetadataFixes
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.
static cl::opt< bool, true > EnableLIRPWcslen("disable-loop-idiom-wcslen", cl::desc("Proceed with loop idiom recognize pass, " "enable conversion of loop(s) to wcslen."), cl::location(DisableLIRP::Wcslen), cl::init(false), cl::ReallyHidden)
static cl::opt< bool, true > DisableLIRPMemcpy("disable-" DEBUG_TYPE "-memcpy", cl::desc("Proceed with loop idiom recognize pass, but do " "not convert loop(s) to memcpy."), cl::location(DisableLIRP::Memcpy), cl::init(false), cl::ReallyHidden)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
static cl::opt< bool, true > DisableLIRPStrlen("disable-loop-idiom-strlen", cl::desc("Proceed with loop idiom recognize pass, but do " "not convert loop(s) to strlen."), cl::location(DisableLIRP::Strlen), cl::init(false), cl::ReallyHidden)
@ Store
The extracted value is stored (ExtractElement only).
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
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...
static cl::opt< bool > ForceMemsetPatternIntrinsic("loop-idiom-force-memset-pattern-intrinsic", cl::desc("Use memset.pattern intrinsic whenever possible"), cl::init(false), cl::Hidden)
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
LLVM_ABI bool isLibFuncEmittable(const Module *M, const TargetLibraryInfo *TLI, LibFunc TheLibFunc)
Check whether the library function is available on target and also that it in the current Module is a...
LLVM_ABI void setBranchWeights(Instruction &I, ArrayRef< uint32_t > Weights, bool IsExpected, bool ElideAllZero=false)
Create a new branch_weights metadata node and add or overwrite a prof metadata reference to instructi...
AnalysisManager< Loop, LoopStandardAnalysisResults & > LoopAnalysisManager
The loop analysis manager.
auto dyn_cast_or_null(const Y &Val)
OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F)
Wrapper function around std::transform to apply a function to a range and store the result elsewhere.
LLVM_ABI bool isMustProgress(const Loop *L)
Return true if this loop can be assumed to make progress.
static cl::opt< CRCStrategyKind > CRCStrategy(DEBUG_TYPE "-crc-strategy", cl::desc("Preferred strategy for optimizing CRC loops"), cl::init(CRCStrategyKind::Auto), cl::Hidden, cl::values(clEnumValN(CRCStrategyKind::Disable, "disable", "Do not optimize CRC loops"), clEnumValN(CRCStrategyKind::Auto, "auto", "Use costing to determine strategy"), clEnumValN(CRCStrategyKind::Table, "table", "Use a Sarwate table when possible"), clEnumValN(CRCStrategyKind::Clmul, "clmul", "Use carry-less multiplication when possible")))
LLVM_ABI bool NullPointerIsDefined(const Function *F, unsigned AS=0)
Check whether null pointer dereferencing is considered undefined behavior for a given function or an ...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
bool isModOrRefSet(const ModRefInfo MRI)
LLVM_ABI bool RecursivelyDeleteDeadPHINode(PHINode *PN, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, SmallPtrSetImpl< PHINode * > *KnownNonDeadPHIs=nullptr)
If the specified value is an effectively dead PHI node, due to being a def-use chain of single-use no...
LLVM_ABI Value * emitStrLen(Value *Ptr, IRBuilderBase &B, const DataLayout &DL, const TargetLibraryInfo *TLI)
Emit a call to the strlen function to the builder, for the specified pointer.
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...
ModRefInfo
Flags indicating whether a memory access modifies or references memory.
@ ModRef
The access may reference and may modify the value stored in memory.
@ Mod
The access may modify the value stored in memory.
LLVM_ABI bool VerifyMemorySSA
Enables verification of MemorySSA.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
LLVM_ABI bool isConsecutiveAccess(Value *A, Value *B, const DataLayout &DL, ScalarEvolution &SE, bool CheckType=true)
Returns true if the memory operations A and B are consecutive.
DWARFExpression::Operation Op
LLVM_ABI bool isGuaranteedNotToBeUndefOrPoison(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Return true if this function can prove that V does not have undef bits and is never poison.
LLVM_ABI Value * emitWcsLen(Value *Ptr, IRBuilderBase &B, const DataLayout &DL, const TargetLibraryInfo *TLI)
Emit a call to the wcslen function to the builder, for the specified pointer.
LLVM_ABI bool extractBranchWeights(const MDNode *ProfileData, SmallVectorImpl< uint32_t > &Weights)
Extract branch weights from MD_prof metadata.
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.
LLVM_ABI Value * isBytewiseValue(Value *V, const DataLayout &DL)
If the specified value can be set by repeating the same byte in memory, return the i8 value that it i...
static cl::opt< bool > UseLIRCodeSizeHeurs("use-lir-code-size-heurs", cl::desc("Use loop idiom recognition code size heuristics when compiling " "with -Os/-Oz"), cl::init(true), cl::Hidden)
static cl::opt< bool, true > DisableLIRPMemset("disable-" DEBUG_TYPE "-memset", cl::desc("Proceed with loop idiom recognize pass, but do " "not convert loop(s) to memset."), cl::location(DisableLIRP::Memset), cl::init(false), cl::ReallyHidden)
static cl::opt< bool, true > DisableLIRPAll("disable-" DEBUG_TYPE "-all", cl::desc("Options to disable Loop Idiom Recognize Pass."), cl::location(DisableLIRP::All), cl::init(false), cl::ReallyHidden)
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.
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 std::optional< DecomposedBitTest > decomposeBitTestICmp(Value *LHS, Value *RHS, CmpInst::Predicate Pred, bool LookThroughTrunc=true, bool AllowNonZeroC=false, bool DecomposeAnd=false)
Decompose an icmp into the form ((X & Mask) pred C) if possible.
@ Auto
Determine whether to use color based on the command line argument and the raw_ostream.
SCEVUseT< const SCEV * > SCEVUse
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...
AAMDNodes extendTo(ssize_t Len) const
Create a new AAMDNode that describes this AAMDNode after extending it to apply to a series of bytes o...
static LLVM_ABI bool Memcpy
When true, Memcpy is disabled.
static LLVM_ABI bool Wcslen
When true, Wcslen is disabled.
static LLVM_ABI bool Strlen
When true, Strlen is disabled.
static LLVM_ABI bool HashRecognize
When true, HashRecognize is disabled.
static LLVM_ABI bool Memset
When true, Memset is disabled.
static LLVM_ABI bool All
When true, the entire pass is disabled.
The adaptor from a function pass to a loop pass computes these analyses and makes them available to t...
TargetTransformInfo & TTI
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
The structure that is returned when a polynomial algorithm was recognized by the analysis.
Match loop-invariant value.
match_LoopInvariant(const SubPattern_t &SP, const Loop *L)