72#define DEBUG_TYPE "loop-accesses"
76 cl::desc(
"Sets the SIMD width. Zero is autoselect."),
82 cl::desc(
"Sets the vectorization interleave count. "
83 "Zero is autoselect."),
90 cl::desc(
"When performing memory disambiguation checks at runtime do not "
91 "generate more than this number of comparisons (default = 8)."),
98 cl::desc(
"Maximum number of comparisons done when trying to merge "
99 "runtime memory checks. (default = 100)"),
108 cl::desc(
"Maximum number of dependences collected by "
109 "loop-access analysis (default = 100)"),
125 cl::desc(
"Enable symbolic stride memory access versioning"));
130 "store-to-load-forwarding-conflict-detection",
cl::Hidden,
131 cl::desc(
"Enable conflict detection in loop-access analysis"),
136 cl::desc(
"Maximum recursion depth when finding forked SCEVs (default = 5)"),
141 cl::desc(
"Speculate that non-constant strides are unit in LAA"),
147 "Hoist inner loop runtime memory checks to outer loop if possible"),
152 return ::VectorizationInterleave.getNumOccurrences() > 0;
162 const SCEV *StrideSCEV = PtrToStride.
lookup(Ptr);
179 <<
" by: " << *Expr <<
"\n");
185 :
High(RtCheck.Pointers[Index].End),
Low(RtCheck.Pointers[Index].Start),
217 std::optional<ScalarEvolution::LoopGuards> &LoopGuards) {
223 bool CheckForNonNull, CheckForFreed;
224 Value *StartPtrV = StartPtr->getValue();
226 DL, CheckForNonNull, CheckForFreed);
228 if (DerefBytes && (CheckForNonNull || CheckForFreed))
236 Instruction *CtxI = &*L->getHeader()->getFirstNonPHIIt();
237 if (
BasicBlock *LoopPred = L->getLoopPredecessor()) {
239 CtxI = LoopPred->getTerminator();
249 DerefRK = std::max(DerefRK, RK);
258 DerefBytesSCEV = SE.
getUMaxExpr(DerefBytesSCEV, DerefRKSCEV);
261 if (DerefBytesSCEV->
isZero())
281 const SCEV *OffsetAtLastIter =
283 if (!OffsetAtLastIter) {
293 if (!OffsetAtLastIter)
302 if (IsKnownNonNegative) {
325 DenseMap<std::pair<const SCEV *, const SCEV *>,
328 std::optional<ScalarEvolution::LoopGuards> &LoopGuards) {
339 const Loop *Lp,
const SCEV *PtrExpr,
const SCEV *EltSizeSCEV,
341 DenseMap<std::pair<const SCEV *, const SCEV *>,
344 std::optional<ScalarEvolution::LoopGuards> &LoopGuards) {
345 std::pair<const SCEV *, const SCEV *> *PtrBoundsPair;
348 {{PtrExpr, EltSizeSCEV},
352 PtrBoundsPair = &Iter->second;
360 ScStart = ScEnd = PtrExpr;
362 ScStart = AR->getStart();
368 ScEnd = AR->evaluateAtIteration(BTC, *SE);
378 DT, AC, LoopGuards)) {
379 ScEnd = AR->evaluateAtIteration(MaxBTC, *SE);
388 const SCEV *Step = AR->getStepRecurrence(*SE);
393 if (CStep->getValue()->isNegative())
411 std::pair<const SCEV *, const SCEV *> Res = {ScStart, ScEnd};
413 *PtrBoundsPair = Res;
420 Type *AccessTy,
bool WritePtr,
421 unsigned DepSetId,
unsigned ASId,
427 Lp, PtrExpr, AccessTy, BTC, SymbolicMaxBTC, PSE.
getSE(),
428 &DC.getPointerBounds(), DC.getDT(), DC.getAC(), LoopGuards);
431 "must be able to compute both start and end expressions");
432 Pointers.emplace_back(Ptr, ScStart, ScEnd, WritePtr, DepSetId, ASId, PtrExpr,
436bool RuntimePointerChecking::tryToCreateDiffCheck(
459 if (AccSrc.
size() != 1 || AccSink.
size() != 1)
463 if (AccSink[0] < AccSrc[0])
467 const SCEV *SrcStart;
468 const SCEV *SinkStart;
470 if (!
match(Src->Expr,
489 std::max(
DL.getTypeAllocSize(SrcTy),
DL.getTypeAllocSize(DstTy));
515 const Loop *StartARLoop = SrcStartAR->getLoop();
516 if (StartARLoop == SinkStartAR->getLoop() &&
521 SrcStartAR->getStepRecurrence(*SE) !=
522 SinkStartAR->getStepRecurrence(*SE)) {
523 LLVM_DEBUG(
dbgs() <<
"LAA: Not creating diff runtime check, since these "
524 "cannot be hoisted out of the outer loop\n");
530 <<
"SrcStart: " << *SrcStartInt <<
'\n'
531 <<
"SinkStartInt: " << *SinkStartInt <<
'\n');
532 DiffChecks.emplace_back(SrcStartInt, SinkStartInt, AllocSize,
533 Src->NeedsFreeze ||
Sink->NeedsFreeze);
538 SmallVector<RuntimePointerCheck, 4> Checks;
546 CanUseDiffCheck = CanUseDiffCheck && tryToCreateDiffCheck(CGI, CGJ);
547 Checks.emplace_back(&CGI, &CGJ);
556 assert(Checks.empty() &&
"Checks is not empty");
557 groupChecks(DepCands);
563 for (
const auto &
I : M.Members)
564 for (
const auto &J :
N.Members)
577 return Diff->isNegative() ? J :
I;
584 RtCheck.
Pointers[Index].PointerValue->getType()->getPointerAddressSpace(),
585 RtCheck.
Pointers[Index].NeedsFreeze, *RtCheck.SE);
589 const SCEV *End,
unsigned AS,
593 "all pointers in a checking group must be in the same address space");
619void RuntimePointerChecking::groupChecks(
661 unsigned TotalComparisons = 0;
664 for (
unsigned Index = 0; Index <
Pointers.size(); ++Index)
665 PositionMap[
Pointers[Index].PointerValue].push_back(Index);
698 auto PointerI = PositionMap.
find(M.getPointer());
701 if (PointerI == PositionMap.
end())
703 for (
unsigned Pointer : PointerI->second) {
720 if (Group.addPointer(Pointer, *
this)) {
730 Groups.emplace_back(Pointer, *
this);
743 return (PtrToPartition[PtrIdx1] != -1 &&
744 PtrToPartition[PtrIdx1] == PtrToPartition[PtrIdx2]);
767 for (
const auto &[Idx, CG] :
enumerate(CheckingGroups))
768 PtrIndices[&CG] = Idx;
774 unsigned Depth)
const {
777 for (
const auto &[Check1, Check2] : Checks) {
778 const auto &
First = Check1->Members, &Second = Check2->Members;
780 OS.
indent(
Depth + 2) <<
"Comparing group GRP" << PtrIndices.at(Check1)
782 for (
unsigned K :
First)
784 OS.
indent(
Depth + 2) <<
"Against group GRP" << PtrIndices.at(Check2)
786 for (
unsigned K : Second)
799 OS.
indent(
Depth + 2) <<
"Group GRP" << PtrIndices.at(&CG) <<
":\n";
800 OS.
indent(
Depth + 4) <<
"(Low: " << *CG.Low <<
" High: " << *CG.High
802 for (
unsigned Member : CG.Members) {
814class AccessAnalysis {
824 : TheLoop(TheLoop), BAA(*
AA), AST(BAA), LI(LI), DT(DT), DepCands(DA),
825 PSE(PSE), LoopAliasScopes(LoopAliasScopes) {
827 BAA.enableCrossIterationMode();
833 AST.add(adjustLoc(
Loc));
834 Accesses[MemAccessInfo(Ptr,
false)].insert(AccessTy);
836 ReadOnlyPtr.insert(Ptr);
840 void addStore(
const MemoryLocation &Loc,
Type *AccessTy) {
842 AST.add(adjustLoc(Loc));
843 Accesses[MemAccessInfo(Ptr,
true)].insert(AccessTy);
853 bool createCheckForAccess(RuntimePointerChecking &RtCheck,
855 const DenseMap<Value *, const SCEV *> &Strides,
856 DenseMap<Value *, unsigned> &DepSetId,
857 Loop *TheLoop,
unsigned &RunningDepId,
858 unsigned ASId,
bool Assume);
869 bool canCheckPtrAtRT(RuntimePointerChecking &RtCheck, Loop *TheLoop,
870 const DenseMap<Value *, const SCEV *> &Strides,
871 Value *&UncomputablePtr,
bool AllowPartial,
872 const MemoryDepChecker &DepChecker);
876 void buildDependenceSets() {
877 processMemAccesses();
885 bool isDependencyCheckNeeded()
const {
return !CheckDeps.empty(); }
888 void resetDepChecks(MemoryDepChecker &DepChecker) {
893 const MemAccessInfoList &getDependenciesToCheck()
const {
return CheckDeps; }
896 typedef MapVector<MemAccessInfo, SmallSetVector<Type *, 1>> PtrAccessMap;
900 MemoryLocation adjustLoc(MemoryLocation Loc)
const {
910 MDNode *adjustAliasScopeList(MDNode *ScopeList)
const {
917 return LoopAliasScopes.contains(cast<MDNode>(Scope));
926 void processMemAccesses();
936 MemAccessInfoList CheckDeps;
939 SmallPtrSet<Value*, 16> ReadOnlyPtr;
966 bool IsRTCheckAnalysisNeeded =
false;
969 PredicatedScalarEvolution &PSE;
971 DenseMap<Value *, SmallVector<const Value *, 16>> UnderlyingObjects;
975 SmallPtrSetImpl<MDNode *> &LoopAliasScopes;
982static std::optional<int64_t>
986 LLVM_DEBUG(
dbgs() <<
"LAA: Bad stride - Scalable object: " << *AccessTy
994 dbgs() <<
"LAA: Bad stride - Not striding over innermost loop ";
996 dbgs() << *Ptr <<
" ";
998 dbgs() <<
"SCEV: " << *AR <<
"\n";
1000 return std::nullopt;
1007 const APInt *APStepVal;
1010 dbgs() <<
"LAA: Bad stride - Not a constant strided ";
1012 dbgs() << *Ptr <<
" ";
1013 dbgs() <<
"SCEV: " << *AR <<
"\n";
1015 return std::nullopt;
1019 TypeSize AllocSize =
DL.getTypeAllocSize(AccessTy);
1023 std::optional<int64_t> StepVal = APStepVal->
trySExtValue();
1025 return std::nullopt;
1028 return *StepVal %
Size ? std::nullopt : std::make_optional(*StepVal /
Size);
1036 std::optional<int64_t> Stride = std::nullopt) {
1050 GEP &&
GEP->hasNoUnsignedSignedWrap()) {
1053 if (L->getHeader() == L->getLoopLatch() ||
1055 if (getLoadStorePointerOperand(U) != GEP)
1057 BasicBlock *UserBB = cast<Instruction>(U)->getParent();
1058 if (!L->contains(UserBB))
1060 return !LoopAccessInfo::blockNeedsPredication(UserBB, L, &DT);
1073 (Stride == 1 || Stride == -1))
1077 if (Ptr && Assume) {
1080 <<
"LAA: Pointer: " << *Ptr <<
"\n"
1081 <<
"LAA: SCEV: " << *AR <<
"\n"
1082 <<
"LAA: Added an overflow assumption\n");
1095 while (!WorkList.
empty()) {
1097 if (!Visited.
insert(Ptr).second)
1103 if (PN && InnermostLoop.
contains(PN->getParent()) &&
1104 PN->getParent() != InnermostLoop.
getHeader()) {
1149 auto GetBinOpExpr = [&SE](
unsigned Opcode,
const SCEV *L,
const SCEV *R) {
1151 case Instruction::Add:
1153 case Instruction::Sub:
1161 unsigned Opcode =
I->getOpcode();
1163 case Instruction::GetElementPtr: {
1165 Type *SourceTy =
GEP->getSourceElementType();
1168 if (
I->getNumOperands() != 2 || SourceTy->
isVectorTy()) {
1178 bool NeedsFreeze =
any_of(BaseScevs, UndefPoisonCheck) ||
1179 any_of(OffsetScevs, UndefPoisonCheck);
1184 if (OffsetScevs.
size() == 2 && BaseScevs.
size() == 1)
1186 else if (BaseScevs.
size() == 2 && OffsetScevs.
size() == 1)
1189 ScevList.emplace_back(Scev, NeedsFreeze);
1200 for (
auto [
B, O] :
zip(BaseScevs, OffsetScevs)) {
1211 case Instruction::Select: {
1218 if (ChildScevs.
size() == 2)
1224 case Instruction::PHI: {
1229 if (
I->getNumOperands() == 2) {
1233 if (ChildScevs.
size() == 2)
1239 case Instruction::Add:
1240 case Instruction::Sub: {
1248 any_of(LScevs, UndefPoisonCheck) ||
any_of(RScevs, UndefPoisonCheck);
1253 if (LScevs.
size() == 2 && RScevs.
size() == 1)
1255 else if (RScevs.
size() == 2 && LScevs.
size() == 1)
1258 ScevList.emplace_back(Scev, NeedsFreeze);
1262 for (
auto [L, R] :
zip(LScevs, RScevs))
1263 ScevList.emplace_back(GetBinOpExpr(Opcode,
get<0>(L),
get<0>(R)),
1269 LLVM_DEBUG(
dbgs() <<
"ForkedPtr unhandled instruction: " << *
I <<
"\n");
1275bool AccessAnalysis::createCheckForAccess(
1279 unsigned &RunningDepId,
unsigned ASId,
bool Assume) {
1287 "Must have some runtime-check pointer candidates");
1291 auto IsLoopInvariantOrAR =
1296 if (RTCheckPtrs.
size() == 2 &&
all_of(RTCheckPtrs, IsLoopInvariantOrAR)) {
1297 LLVM_DEBUG(
dbgs() <<
"LAA: Found forked pointer: " << *Ptr <<
"\n";
1299 <<
"\t(" << Idx <<
") " << *Q.getPointer() <<
"\n");
1306 for (
auto &
P : RTCheckPtrs) {
1319 if (RTCheckPtrs.size() == 1) {
1325 if (!
isNoWrap(PSE, AR, RTCheckPtrs.size() == 1 ? Ptr :
nullptr, AccessTy,
1326 TheLoop, Assume, DT))
1330 for (
const auto &[PtrExpr, NeedsFreeze] : RTCheckPtrs) {
1336 unsigned &LeaderId = DepSetId[Leader];
1338 LeaderId = RunningDepId++;
1342 DepId = RunningDepId++;
1344 bool IsWrite =
Access.getInt();
1345 RtCheck.
insert(TheLoop, Ptr, PtrExpr, AccessTy, IsWrite, DepId, ASId, PSE,
1347 LLVM_DEBUG(
dbgs() <<
"LAA: Found a runtime check ptr:" << *Ptr <<
'\n');
1353bool AccessAnalysis::canCheckPtrAtRT(
1359 bool CanDoRT =
true;
1361 bool MayNeedRTCheck =
false;
1362 if (!IsRTCheckAnalysisNeeded)
return true;
1370 for (
const auto &Dep : *Deps) {
1374 "Should only skip safe dependences");
1378 Instruction *Dst = Dep.getDestination(DepChecker);
1390 for (
const auto &AS : AST) {
1391 int NumReadPtrChecks = 0;
1392 int NumWritePtrChecks = 0;
1393 bool CanDoAliasSetRT =
true;
1395 auto ASPointers = AS.getPointers();
1399 unsigned RunningDepId = 1;
1407 for (
const Value *ConstPtr : ASPointers) {
1409 bool IsWrite =
Accesses.contains(MemAccessInfo(Ptr,
true));
1411 ++NumWritePtrChecks;
1419 if (NumWritePtrChecks == 0 ||
1420 (NumWritePtrChecks == 1 && NumReadPtrChecks == 0)) {
1421 assert((ASPointers.size() <= 1 ||
1423 [
this](
const Value *Ptr) {
1424 MemAccessInfo AccessWrite(
const_cast<Value *
>(Ptr),
1426 return !DepCands.
contains(AccessWrite);
1428 "Can only skip updating CanDoRT below, if all entries in AS "
1429 "are reads or there is at most 1 entry");
1433 for (
auto &
Access : AccessInfos) {
1435 if (!createCheckForAccess(RtCheck,
Access, AccessTy, StridesMap,
1436 DepSetId, TheLoop, RunningDepId, ASId,
1439 << *
Access.getPointer() <<
'\n');
1441 CanDoAliasSetRT =
false;
1455 bool NeedsAliasSetRTCheck = RunningDepId > 2 || !Retries.
empty();
1459 if (NeedsAliasSetRTCheck && !CanDoAliasSetRT) {
1463 CanDoAliasSetRT =
true;
1464 for (
const auto &[
Access, AccessTy] : Retries) {
1465 if (!createCheckForAccess(RtCheck,
Access, AccessTy, StridesMap,
1466 DepSetId, TheLoop, RunningDepId, ASId,
1468 CanDoAliasSetRT =
false;
1469 UncomputablePtr =
Access.getPointer();
1476 CanDoRT &= CanDoAliasSetRT;
1477 MayNeedRTCheck |= NeedsAliasSetRTCheck;
1486 unsigned NumPointers = RtCheck.
Pointers.size();
1487 for (
unsigned i = 0; i < NumPointers; ++i) {
1488 for (
unsigned j = i + 1;
j < NumPointers; ++
j) {
1490 if (RtCheck.
Pointers[i].DependencySetId ==
1491 RtCheck.
Pointers[j].DependencySetId)
1504 dbgs() <<
"LAA: Runtime check would require comparison between"
1505 " different address spaces\n");
1511 if (MayNeedRTCheck && (CanDoRT || AllowPartial))
1515 <<
" pointer comparisons.\n");
1522 bool CanDoRTIfNeeded = !RtCheck.
Need || CanDoRT;
1523 assert(CanDoRTIfNeeded == (CanDoRT || !MayNeedRTCheck) &&
1524 "CanDoRTIfNeeded depends on RtCheck.Need");
1525 if (!CanDoRTIfNeeded && !AllowPartial)
1527 return CanDoRTIfNeeded;
1530void AccessAnalysis::processMemAccesses() {
1540 dbgs() <<
"\t" << *
A.getPointer() <<
" ("
1543 : (ReadOnlyPtr.contains(
A.getPointer()) ?
"read-only"
1552 for (
const auto &AS : AST) {
1556 auto ASPointers = AS.getPointers();
1558 bool SetHasWrite =
false;
1563 UnderlyingObjToAccessMap;
1564 UnderlyingObjToAccessMap ObjToLastAccess;
1567 PtrAccessMap DeferredAccesses;
1571 for (
int SetIteration = 0; SetIteration < 2; ++SetIteration) {
1572 bool UseDeferred = SetIteration > 0;
1573 PtrAccessMap &S = UseDeferred ? DeferredAccesses :
Accesses;
1575 for (
const Value *ConstPtr : ASPointers) {
1580 for (
const auto &[AC,
_] : S) {
1581 if (AC.getPointer() != Ptr)
1584 bool IsWrite = AC.getInt();
1588 bool IsReadOnlyPtr = ReadOnlyPtr.contains(Ptr) && !IsWrite;
1589 if (UseDeferred && !IsReadOnlyPtr)
1593 assert(((IsReadOnlyPtr && UseDeferred) || IsWrite ||
1594 S.contains(MemAccessInfo(Ptr,
false))) &&
1595 "Alias-set pointer not in the access set?");
1597 MemAccessInfo
Access(Ptr, IsWrite);
1605 if (!UseDeferred && IsReadOnlyPtr) {
1608 DeferredAccesses.insert({
Access, {}});
1616 if ((IsWrite || IsReadOnlyPtr) && SetHasWrite) {
1617 CheckDeps.push_back(
Access);
1618 IsRTCheckAnalysisNeeded =
true;
1630 <<
"Underlying objects for pointer " << *Ptr <<
"\n");
1631 for (
const Value *UnderlyingObj : UOs) {
1640 auto [It,
Inserted] = ObjToLastAccess.try_emplace(
1658std::optional<int64_t>
1662 bool Assume,
bool ShouldCheckWrap) {
1674 LLVM_DEBUG(
dbgs() <<
"LAA: Bad stride - Not an AddRecExpr pointer " << *Ptr
1675 <<
" SCEV: " << *PtrScev <<
"\n");
1676 return std::nullopt;
1679 std::optional<int64_t> Stride =
1681 if (!ShouldCheckWrap || !Stride)
1684 if (
isNoWrap(PSE, AR, Ptr, AccessTy, Lp, Assume, DT, Stride))
1688 dbgs() <<
"LAA: Bad stride - Pointer may wrap in the address space "
1689 << *Ptr <<
" SCEV: " << *AR <<
"\n");
1690 return std::nullopt;
1698 assert(PtrA && PtrB &&
"Expected non-nullptr pointers.");
1706 return std::nullopt;
1713 return std::nullopt;
1714 unsigned IdxWidth =
DL.getIndexSizeInBits(ASA);
1716 APInt OffsetA(IdxWidth, 0), OffsetB(IdxWidth, 0);
1722 std::optional<int64_t> Val;
1723 if (PtrA1 == PtrB1) {
1730 return std::nullopt;
1732 IdxWidth =
DL.getIndexSizeInBits(ASA);
1733 OffsetA = OffsetA.sextOrTrunc(IdxWidth);
1742 std::optional<APInt> Diff =
1745 return std::nullopt;
1746 Val = Diff->trySExtValue();
1750 return std::nullopt;
1752 int64_t
Size =
DL.getTypeStoreSize(ElemTyA);
1753 int64_t Dist = *Val /
Size;
1757 if (!StrictCheck || Dist *
Size == Val)
1759 return std::nullopt;
1766 VL, [](
const Value *V) {
return V->getType()->isPointerTy(); }) &&
1767 "Expected list of pointer operands.");
1770 Value *Ptr0 = VL[0];
1772 using DistOrdPair = std::pair<int64_t, unsigned>;
1774 std::set<DistOrdPair,
decltype(Compare)> Offsets(Compare);
1775 Offsets.emplace(0, 0);
1776 bool IsConsecutive =
true;
1778 std::optional<int64_t> Diff =
1786 auto [It, IsInserted] = Offsets.emplace(
Offset, Idx);
1790 IsConsecutive &= std::next(It) == Offsets.end();
1792 SortedIndices.
clear();
1793 if (!IsConsecutive) {
1796 for (
auto [Idx, Off] :
enumerate(Offsets))
1797 SortedIndices[Idx] = Off.second;
1811 std::optional<int64_t> Diff =
1820 Accesses[MemAccessInfo(Ptr, true)].push_back(AccessIdx);
1821 InstMap.push_back(SI);
1828 [
this, LI](
Value *Ptr) {
1829 Accesses[MemAccessInfo(Ptr, false)].push_back(AccessIdx);
1830 InstMap.push_back(LI);
1892bool MemoryDepChecker::couldPreventStoreLoadForward(
uint64_t Distance,
1894 unsigned CommonStride) {
1907 const uint64_t NumItersForStoreLoadThroughMemory = 8 * TypeByteSize;
1909 uint64_t MaxVFWithoutSLForwardIssuesPowerOf2 =
1911 MaxStoreLoadForwardSafeDistanceInBits);
1914 for (
uint64_t VF = 2 * TypeByteSize;
1915 VF <= MaxVFWithoutSLForwardIssuesPowerOf2; VF *= 2) {
1918 if (Distance % VF && Distance / VF < NumItersForStoreLoadThroughMemory) {
1919 MaxVFWithoutSLForwardIssuesPowerOf2 = (VF >> 1);
1924 if (MaxVFWithoutSLForwardIssuesPowerOf2 < 2 * TypeByteSize) {
1926 dbgs() <<
"LAA: Distance " << Distance
1927 <<
" that could cause a store-load forwarding conflict\n");
1932 MaxVFWithoutSLForwardIssuesPowerOf2 <
1933 MaxStoreLoadForwardSafeDistanceInBits &&
1934 MaxVFWithoutSLForwardIssuesPowerOf2 !=
1937 bit_floor(MaxVFWithoutSLForwardIssuesPowerOf2 / CommonStride);
1938 uint64_t MaxVFInBits = MaxVF * TypeByteSize * 8;
1939 MaxStoreLoadForwardSafeDistanceInBits =
1940 std::min(MaxStoreLoadForwardSafeDistanceInBits, MaxVFInBits);
1963 const SCEV &MaxBTC,
const SCEV &Dist,
1986 const SCEV *CastedDist = &Dist;
1987 const SCEV *CastedProduct = Product;
1994 if (DistTypeSizeBits > ProductTypeSizeBits)
2019 assert(Stride > 1 &&
"The stride must be greater than 1");
2020 assert(TypeByteSize > 0 &&
"The type size in byte must be non-zero");
2021 assert(Distance > 0 &&
"The distance must be non-zero");
2024 if (Distance % TypeByteSize)
2043 return Distance % Stride;
2046bool MemoryDepChecker::areAccessesCompletelyBeforeOrAfter(
const SCEV *Src,
2050 const SCEV *BTC = PSE.getBackedgeTakenCount();
2051 const SCEV *SymbolicMaxBTC = PSE.getSymbolicMaxBackedgeTakenCount();
2052 ScalarEvolution &SE = *PSE.getSE();
2053 const auto &[SrcStart_, SrcEnd_] =
2055 &SE, &PointerBounds, DT, AC, LoopGuards);
2059 const auto &[SinkStart_, SinkEnd_] =
2061 &SE, &PointerBounds, DT, AC, LoopGuards);
2080 MemoryDepChecker::DepDistanceStrideAndSizeInfo>
2081MemoryDepChecker::getDependenceDistanceStrideAndSize(
2082 const AccessAnalysis::MemAccessInfo &
A, Instruction *AInst,
2083 const AccessAnalysis::MemAccessInfo &
B, Instruction *BInst) {
2084 const auto &
DL = InnermostLoop->getHeader()->getDataLayout();
2085 auto &SE = *PSE.getSE();
2086 const auto &[APtr, AIsWrite] =
A;
2087 const auto &[BPtr, BIsWrite] =
B;
2090 if (!AIsWrite && !BIsWrite)
2097 if (APtr->getType()->getPointerAddressSpace() !=
2098 BPtr->getType()->getPointerAddressSpace())
2102 PSE, ATy, APtr, InnermostLoop, *DT, SymbolicStrides,
true,
true);
2104 PSE, BTy, BPtr, InnermostLoop, *DT, SymbolicStrides,
true,
true);
2106 const SCEV *Src = PSE.getSCEV(APtr);
2107 const SCEV *
Sink = PSE.getSCEV(BPtr);
2112 if (StrideAPtr && *StrideAPtr < 0) {
2121 LLVM_DEBUG(
dbgs() <<
"LAA: Src Scev: " << *Src <<
"Sink Scev: " << *Sink
2123 LLVM_DEBUG(
dbgs() <<
"LAA: Distance for " << *AInst <<
" to " << *BInst
2124 <<
": " << *Dist <<
"\n");
2133 if (!StrideAPtr || !StrideBPtr) {
2134 LLVM_DEBUG(
dbgs() <<
"Pointer access with non-constant stride\n");
2138 int64_t StrideAPtrInt = *StrideAPtr;
2139 int64_t StrideBPtrInt = *StrideBPtr;
2140 LLVM_DEBUG(
dbgs() <<
"LAA: Src induction step: " << StrideAPtrInt
2141 <<
" Sink induction step: " << StrideBPtrInt <<
"\n");
2144 if (!StrideAPtrInt || !StrideBPtrInt)
2149 if ((StrideAPtrInt > 0) != (StrideBPtrInt > 0)) {
2151 dbgs() <<
"Pointer access with strides in different directions\n");
2155 TypeSize AStoreSz =
DL.getTypeStoreSize(ATy);
2156 TypeSize BStoreSz =
DL.getTypeStoreSize(BTy);
2160 uint64_t ASz =
DL.getTypeAllocSize(ATy);
2161 uint64_t BSz =
DL.getTypeAllocSize(BTy);
2162 uint64_t TypeByteSize = (AStoreSz == BStoreSz) ? BSz : 0;
2164 uint64_t StrideAScaled = std::abs(StrideAPtrInt) * ASz;
2165 uint64_t StrideBScaled = std::abs(StrideBPtrInt) * BSz;
2167 uint64_t MaxStride = std::max(StrideAScaled, StrideBScaled);
2169 std::optional<uint64_t> CommonStride;
2170 if (StrideAScaled == StrideBScaled)
2171 CommonStride = StrideAScaled;
2176 ShouldRetryWithRuntimeChecks |= StrideAPtrInt == StrideBPtrInt;
2184 return DepDistanceStrideAndSizeInfo(Dist, MaxStride, CommonStride,
2185 TypeByteSize, AIsWrite, BIsWrite);
2189MemoryDepChecker::isDependent(
const MemAccessInfo &
A,
unsigned AIdx,
2191 assert(AIdx < BIdx &&
"Must pass arguments in program order");
2196 auto CheckCompletelyBeforeOrAfter = [&]() {
2197 auto *APtr =
A.getPointer();
2198 auto *BPtr =
B.getPointer();
2201 const SCEV *Src = PSE.getSCEV(APtr);
2202 const SCEV *
Sink = PSE.getSCEV(BPtr);
2203 return areAccessesCompletelyBeforeOrAfter(Src, ATy, Sink, BTy);
2209 getDependenceDistanceStrideAndSize(
A, InstMap[AIdx],
B, InstMap[BIdx]);
2210 if (std::holds_alternative<Dependence::DepType>(Res)) {
2212 CheckCompletelyBeforeOrAfter())
2214 return std::get<Dependence::DepType>(Res);
2217 auto &[Dist, MaxStride, CommonStride, TypeByteSize, AIsWrite, BIsWrite] =
2218 std::get<DepDistanceStrideAndSizeInfo>(Res);
2219 bool HasSameSize = TypeByteSize > 0;
2221 ScalarEvolution &SE = *PSE.getSE();
2222 auto &
DL = InnermostLoop->getHeader()->getDataLayout();
2231 DL, SE, *(PSE.getSymbolicMaxBackedgeTakenCount()), *Dist, MaxStride))
2236 const APInt *APDist =
nullptr;
2237 uint64_t ConstDist =
2244 if (ConstDist > 0 && CommonStride && CommonStride > 1 && HasSameSize &&
2263 LLVM_DEBUG(
dbgs() <<
"LAA: possibly zero dependence difference but "
2264 "different type sizes\n");
2268 bool IsTrueDataDependence = (AIsWrite && !BIsWrite);
2283 couldPreventStoreLoadForward(ConstDist, TypeByteSize)) {
2285 dbgs() <<
"LAA: Forward but may prevent st->ld forwarding\n");
2296 if (MinDistance <= 0) {
2302 if (CheckCompletelyBeforeOrAfter())
2304 LLVM_DEBUG(
dbgs() <<
"LAA: ReadWrite-Write positive dependency with "
2305 "different type sizes\n");
2314 unsigned MinNumIter = std::max(ForcedFactor * ForcedUnroll, 2U);
2349 uint64_t MinDistanceNeeded = MaxStride * (MinNumIter - 1) + TypeByteSize;
2350 if (MinDistanceNeeded >
static_cast<uint64_t
>(MinDistance)) {
2359 LLVM_DEBUG(
dbgs() <<
"LAA: Failure because of positive minimum distance "
2360 << MinDistance <<
'\n');
2366 if (MinDistanceNeeded > MinDepDistBytes) {
2368 << MinDistanceNeeded <<
" size in bytes\n");
2373 std::min(
static_cast<uint64_t
>(MinDistance), MinDepDistBytes);
2375 bool IsTrueDataDependence = (!AIsWrite && BIsWrite);
2377 couldPreventStoreLoadForward(MinDistance, TypeByteSize, *CommonStride))
2380 uint64_t MaxVF = MinDepDistBytes / MaxStride;
2381 LLVM_DEBUG(
dbgs() <<
"LAA: Positive min distance " << MinDistance
2382 <<
" with max VF = " << MaxVF <<
'\n');
2384 uint64_t MaxVFInBits = MaxVF * TypeByteSize * 8;
2385 if (!ConstDist && MaxVFInBits < MaxTargetVectorWidthInBits) {
2394 if (CheckCompletelyBeforeOrAfter())
2397 MaxSafeVectorWidthInBits = std::min(MaxSafeVectorWidthInBits, MaxVFInBits);
2404 MinDepDistBytes = -1;
2419 bool AIIsWrite = AI->getInt();
2423 (AIIsWrite ? AI : std::next(AI));
2426 auto &Acc = Accesses[*AI];
2427 for (std::vector<unsigned>::iterator I1 = Acc.begin(), I1E = Acc.end();
2431 for (std::vector<unsigned>::iterator
2432 I2 = (OI == AI ? std::next(I1) : Accesses[*OI].begin()),
2433 I2E = (OI == AI ? I1E : Accesses[*OI].end());
2435 auto A = std::make_pair(&*AI, *I1);
2436 auto B = std::make_pair(&*OI, *I2);
2443 isDependent(*
A.first,
A.second, *
B.first,
B.second);
2450 if (RecordDependences) {
2452 Dependences.emplace_back(
A.second,
B.second,
Type);
2455 RecordDependences =
false;
2456 Dependences.clear();
2458 <<
"Too many dependences, stopped recording\n");
2470 LLVM_DEBUG(
dbgs() <<
"Total Dependences: " << Dependences.size() <<
"\n");
2477 auto I = Accesses.find(
Access);
2479 if (
I != Accesses.end()) {
2480 transform(
I->second, std::back_inserter(Insts),
2481 [&](
unsigned Idx) { return this->InstMap[Idx]; });
2492 "ForwardButPreventsForwarding",
2494 "BackwardVectorizable",
2495 "BackwardVectorizableButPreventsForwarding"};
2505bool LoopAccessInfo::canAnalyzeLoop() {
2514 recordAnalysis(
"NotInnerMostLoop") <<
"loop is not the innermost loop";
2521 dbgs() <<
"LAA: loop control flow is not understood by analyzer\n");
2522 recordAnalysis(
"CFGNotUnderstood")
2523 <<
"loop control flow is not understood by analyzer";
2532 recordAnalysis(
"CantComputeNumberOfIterations")
2533 <<
"could not determine number of loop iterations";
2534 LLVM_DEBUG(
dbgs() <<
"LAA: SCEV could not compute the loop exit count.\n");
2543bool LoopAccessInfo::analyzeLoop(AAResults *AA,
const LoopInfo *LI,
2544 const TargetLibraryInfo *TLI,
2545 DominatorTree *DT) {
2549 SmallPtrSet<MDNode *, 8> LoopAliasScopes;
2552 unsigned NumReads = 0;
2553 unsigned NumReadWrites = 0;
2555 bool HasComplexMemInst =
false;
2558 HasConvergentOp =
false;
2560 PtrRtChecking->Pointers.
clear();
2561 PtrRtChecking->Need =
false;
2565 const bool EnableMemAccessVersioningOfLoop =
2571 LoopBlocksRPO RPOT(TheLoop);
2573 for (BasicBlock *BB : RPOT) {
2576 for (Instruction &
I : *BB) {
2579 HasConvergentOp =
true;
2584 if (HasComplexMemInst && HasConvergentOp)
2588 if (HasComplexMemInst)
2593 for (
Metadata *
Op : Decl->getScopeList()->operands())
2606 if (
I.mayReadFromMemory()) {
2607 auto hasPointerArgs = [](CallBase *CB) {
2609 return Arg->getType()->isPointerTy();
2622 recordAnalysis(
"CantVectorizeInstruction", &
I)
2623 <<
"instruction cannot be vectorized";
2624 HasComplexMemInst =
true;
2627 if (!Ld->isSimple() && !IsAnnotatedParallel) {
2628 recordAnalysis(
"NonSimpleLoad", Ld)
2629 <<
"read with atomic ordering or volatile read";
2631 HasComplexMemInst =
true;
2637 if (EnableMemAccessVersioningOfLoop)
2638 collectStridedAccess(Ld);
2643 if (
I.mayWriteToMemory()) {
2646 recordAnalysis(
"CantVectorizeInstruction", &
I)
2647 <<
"instruction cannot be vectorized";
2648 HasComplexMemInst =
true;
2651 if (!St->isSimple() && !IsAnnotatedParallel) {
2652 recordAnalysis(
"NonSimpleStore", St)
2653 <<
"write with atomic ordering or volatile write";
2655 HasComplexMemInst =
true;
2661 if (EnableMemAccessVersioningOfLoop)
2662 collectStridedAccess(St);
2667 if (HasComplexMemInst)
2675 if (!Stores.
size()) {
2681 AccessAnalysis
Accesses(TheLoop, AA, LI, *DT, DepCands, *PSE,
2689 SmallSet<std::pair<Value *, Type *>, 16> Seen;
2693 SmallPtrSet<Value *, 16> UniformStores;
2695 for (StoreInst *ST : Stores) {
2696 Value *Ptr =
ST->getPointerOperand();
2698 if (isInvariant(Ptr)) {
2700 StoresToInvariantAddresses.push_back(ST);
2701 HasStoreStoreDependenceInvolvingLoopInvariantAddress |=
2702 !UniformStores.
insert(Ptr).second;
2708 if (Seen.
insert({Ptr, AccessTy}).second) {
2715 if (blockNeedsPredication(
ST->getParent(), TheLoop, DT))
2719 [&Accesses, AccessTy, Loc](
Value *Ptr) {
2720 MemoryLocation NewLoc = Loc.getWithNewPtr(Ptr);
2721 Accesses.addStore(NewLoc, AccessTy);
2726 if (IsAnnotatedParallel) {
2728 dbgs() <<
"LAA: A loop annotated parallel, ignore memory dependency "
2733 for (LoadInst *LD : Loads) {
2734 Value *Ptr =
LD->getPointerOperand();
2743 bool IsReadOnlyPtr =
false;
2745 if (Seen.
insert({Ptr, AccessTy}).second ||
2746 !
getPtrStride(*PSE, AccessTy, Ptr, TheLoop, *DT, SymbolicStrides,
false,
2749 IsReadOnlyPtr =
true;
2755 LLVM_DEBUG(
dbgs() <<
"LAA: Found an unsafe dependency between a uniform "
2756 "load and uniform store to the same address!\n");
2757 HasLoadStoreDependenceInvolvingLoopInvariantAddress =
true;
2764 if (blockNeedsPredication(
LD->getParent(), TheLoop, DT))
2768 [&Accesses, AccessTy, Loc, IsReadOnlyPtr](
Value *Ptr) {
2769 MemoryLocation NewLoc = Loc.getWithNewPtr(Ptr);
2770 Accesses.addLoad(NewLoc, AccessTy, IsReadOnlyPtr);
2776 if (NumReadWrites == 1 && NumReads == 0) {
2783 Accesses.buildDependenceSets();
2787 Value *UncomputablePtr =
nullptr;
2788 HasCompletePtrRtChecking =
2789 Accesses.canCheckPtrAtRT(*PtrRtChecking, TheLoop, SymbolicStrides,
2790 UncomputablePtr, AllowPartial, getDepChecker());
2791 if (!HasCompletePtrRtChecking) {
2793 recordAnalysis(
"CantIdentifyArrayBounds",
I)
2794 <<
"cannot identify array bounds";
2795 LLVM_DEBUG(
dbgs() <<
"LAA: We can't vectorize because we can't find "
2796 <<
"the array bounds.\n");
2801 dbgs() <<
"LAA: May be able to perform a memory runtime check if needed.\n");
2803 bool DepsAreSafe =
true;
2804 if (Accesses.isDependencyCheckNeeded()) {
2807 DepChecker->
areDepsSafe(DepCands, Accesses.getDependenciesToCheck());
2812 PtrRtChecking->reset();
2813 PtrRtChecking->Need =
true;
2815 UncomputablePtr =
nullptr;
2816 HasCompletePtrRtChecking = Accesses.canCheckPtrAtRT(
2817 *PtrRtChecking, TheLoop, SymbolicStrides, UncomputablePtr,
2818 AllowPartial, getDepChecker());
2821 if (!HasCompletePtrRtChecking) {
2823 recordAnalysis(
"CantCheckMemDepsAtRunTime",
I)
2824 <<
"cannot check memory dependencies at runtime";
2825 LLVM_DEBUG(
dbgs() <<
"LAA: Can't vectorize with memory checks\n");
2830 Accesses.resetDepChecks(*DepChecker);
2836 if (HasConvergentOp) {
2837 recordAnalysis(
"CantInsertRuntimeCheckWithConvergent")
2838 <<
"cannot add control dependency to convergent operation";
2839 LLVM_DEBUG(
dbgs() <<
"LAA: We can't vectorize because a runtime check "
2840 "would be needed with a convergent operation\n");
2846 dbgs() <<
"LAA: No unsafe dependent memory operations in loop. We"
2847 << (PtrRtChecking->Need ?
"" :
" don't")
2848 <<
" need runtime memory checks.\n");
2852 emitUnsafeDependenceRemark();
2856void LoopAccessInfo::emitUnsafeDependenceRemark() {
2857 const auto *Deps = getDepChecker().getDependences();
2865 if (Found == Deps->end())
2867 MemoryDepChecker::Dependence Dep = *Found;
2869 LLVM_DEBUG(
dbgs() <<
"LAA: unsafe dependent memory operations in loop\n");
2872 bool HasForcedDistribution =
false;
2873 std::optional<const MDOperand *>
Value =
2881 const std::string
Info =
2882 HasForcedDistribution
2883 ?
"unsafe dependent memory operations in loop."
2884 :
"unsafe dependent memory operations in loop. Use "
2885 "#pragma clang loop distribute(enable) to allow loop distribution "
2886 "to attempt to isolate the offending operations into a separate "
2888 OptimizationRemarkAnalysis &
R =
2897 R <<
"\nBackward loop carried data dependence.";
2900 R <<
"\nForward loop carried data dependence that prevents "
2901 "store-to-load forwarding.";
2904 R <<
"\nBackward loop carried data dependence that prevents "
2905 "store-to-load forwarding.";
2908 R <<
"\nUnsafe indirect dependence.";
2911 R <<
"\nUnknown data dependence.";
2915 if (Instruction *
I = Dep.
getSource(getDepChecker())) {
2918 SourceLoc = DD->getDebugLoc();
2920 R <<
" Memory location is the same as accessed at "
2921 <<
ore::NV(
"Location", SourceLoc);
2926 const Loop *TheLoop,
2928 assert(TheLoop->contains(BB) &&
"Unknown block used");
2931 const BasicBlock *Latch = TheLoop->getLoopLatch();
2937 assert(!Report &&
"Multiple reports generated");
2943 CodeRegion =
I->getParent();
2946 if (
I->getDebugLoc())
2947 DL =
I->getDebugLoc();
2950 Report = std::make_unique<OptimizationRemarkAnalysis>(
DEBUG_TYPE, RemarkName,
2956 auto *SE = PSE->getSE();
2957 if (TheLoop->isLoopInvariant(V))
2974 for (
const Use &U :
GEP->operands()) {
2996 Value *OrigPtr = Ptr;
3004 V =
C->getOperand();
3027void LoopAccessInfo::collectStridedAccess(
Value *MemAccess) {
3045 LLVM_DEBUG(
dbgs() <<
"LAA: Found a strided access that is a candidate for "
3047 LLVM_DEBUG(
dbgs() <<
" Ptr: " << *Ptr <<
" Stride: " << *StrideExpr <<
"\n");
3050 LLVM_DEBUG(
dbgs() <<
" Chose not to due to -laa-speculate-unit-stride\n");
3067 const SCEV *MaxBTC = PSE->getSymbolicMaxBackedgeTakenCount();
3073 uint64_t StrideTypeSizeBits =
DL.getTypeSizeInBits(StrideExpr->
getType());
3074 uint64_t BETypeSizeBits =
DL.getTypeSizeInBits(MaxBTC->
getType());
3075 const SCEV *CastedStride = StrideExpr;
3076 const SCEV *CastedBECount = MaxBTC;
3077 ScalarEvolution *SE = PSE->getSE();
3078 if (BETypeSizeBits >= StrideTypeSizeBits)
3082 const SCEV *StrideMinusBETaken = SE->
getMinusSCEV(CastedStride, CastedBECount);
3088 dbgs() <<
"LAA: Stride>=TripCount; No point in versioning as the "
3089 "Stride==1 predicate will imply that the loop executes "
3093 LLVM_DEBUG(
dbgs() <<
"LAA: Found a strided access that we can version.\n");
3097 const SCEV *StrideBase = StrideExpr;
3099 StrideBase =
C->getOperand();
3109 PtrRtChecking(nullptr), TheLoop(L), AllowPartial(AllowPartial) {
3110 unsigned MaxTargetVectorWidthInBits = std::numeric_limits<unsigned>::max();
3111 if (
TTI && !
TTI->enableScalableVectorization())
3114 MaxTargetVectorWidthInBits =
3117 DepChecker = std::make_unique<MemoryDepChecker>(
3118 *PSE, AC, DT, L, SymbolicStrides, MaxTargetVectorWidthInBits, LoopGuards);
3120 std::make_unique<RuntimePointerChecking>(*DepChecker, SE, LoopGuards);
3121 if (canAnalyzeLoop())
3122 CanVecMem = analyzeLoop(
AA, LI, TLI, DT);
3127 OS.
indent(
Depth) <<
"Memory dependences are safe";
3130 OS <<
" with a maximum safe vector width of "
3134 OS <<
", with a maximum safe store-load forward width of " << SLDist
3137 if (PtrRtChecking->Need)
3138 OS <<
" with run-time checks";
3142 if (HasConvergentOp)
3143 OS.
indent(
Depth) <<
"Has convergent operation in loop\n";
3146 OS.
indent(
Depth) <<
"Report: " << Report->getMsg() <<
"\n";
3148 if (
auto *Dependences = DepChecker->getDependences()) {
3150 for (
const auto &Dep : *Dependences) {
3151 Dep.
print(OS,
Depth + 2, DepChecker->getMemoryInstructions());
3155 OS.
indent(
Depth) <<
"Too many dependences, not recorded\n";
3158 PtrRtChecking->print(OS,
Depth);
3159 if (PtrRtChecking->Need && !HasCompletePtrRtChecking)
3160 OS.
indent(
Depth) <<
"Generated run-time checks are incomplete\n";
3164 <<
"Non vectorizable stores to invariant address were "
3165 << (HasStoreStoreDependenceInvolvingLoopInvariantAddress ||
3166 HasLoadStoreDependenceInvolvingLoopInvariantAddress
3169 <<
"found in loop.\n";
3172 PSE->getPredicate().print(OS,
Depth);
3177 PSE->print(OS,
Depth);
3181 bool AllowPartial) {
3182 const auto &[It, Inserted] = LoopAccessInfoMap.try_emplace(&L);
3186 if (Inserted || It->second->hasAllowPartial() != AllowPartial)
3187 It->second = std::make_unique<LoopAccessInfo>(&L, &SE, TTI, TLI, &AA, &DT,
3188 &LI, AC, AllowPartial);
3197 for (
const auto &[L, LAI] : LoopAccessInfoMap) {
3198 if (LAI->getRuntimePointerChecking()->getChecks().empty() &&
3199 LAI->getPSE().getPredicate().isAlwaysTrue())
3201 LoopAccessInfoMap.erase(L);
3207 FunctionAnalysisManager::Invalidator &Inv) {
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 GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
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.
Generic implementation of equivalence classes through the use Tarjan's efficient union-find algorithm...
This header defines various interfaces for pass management in LLVM.
static cl::opt< unsigned > MaxDependences("max-dependences", cl::Hidden, cl::desc("Maximum number of dependences collected by " "loop-access analysis (default = 100)"), cl::init(100))
We collect dependences up to this threshold.
static cl::opt< bool > EnableForwardingConflictDetection("store-to-load-forwarding-conflict-detection", cl::Hidden, cl::desc("Enable conflict detection in loop-access analysis"), cl::init(true))
Enable store-to-load forwarding conflict detection.
static void findForkedSCEVs(ScalarEvolution *SE, const Loop *L, Value *Ptr, SmallVectorImpl< PointerIntPair< const SCEV *, 1, bool > > &ScevList, unsigned Depth)
static const SCEV * mulSCEVNoOverflow(const SCEV *A, const SCEV *B, ScalarEvolution &SE)
Returns A * B, if it is guaranteed not to unsigned wrap.
static cl::opt< unsigned > MemoryCheckMergeThreshold("memory-check-merge-threshold", cl::Hidden, cl::desc("Maximum number of comparisons done when trying to merge " "runtime memory checks. (default = 100)"), cl::init(100))
The maximum iterations used to merge memory checks.
static const SCEV * getStrideFromPointer(Value *Ptr, ScalarEvolution *SE, Loop *Lp)
Get the stride of a pointer access in a loop.
static bool evaluatePtrAddRecAtMaxBTCWillNotWrap(const SCEVAddRecExpr *AR, const SCEV *MaxBTC, const SCEV *EltSize, ScalarEvolution &SE, const DataLayout &DL, DominatorTree *DT, AssumptionCache *AC, std::optional< ScalarEvolution::LoopGuards > &LoopGuards)
Return true, if evaluating AR at MaxBTC cannot wrap, because AR at MaxBTC is guaranteed inbounds of t...
static std::optional< int64_t > getStrideFromAddRec(const SCEVAddRecExpr *AR, const Loop *Lp, Type *AccessTy, Value *Ptr, PredicatedScalarEvolution &PSE)
Try to compute a constant stride for AR.
static cl::opt< unsigned, true > VectorizationInterleave("force-vector-interleave", cl::Hidden, cl::desc("Sets the vectorization interleave count. " "Zero is autoselect."), cl::location(VectorizerParams::VectorizationInterleave))
static cl::opt< bool, true > HoistRuntimeChecks("hoist-runtime-checks", cl::Hidden, cl::desc("Hoist inner loop runtime memory checks to outer loop if possible"), cl::location(VectorizerParams::HoistRuntimeChecks), cl::init(true))
static DenseMap< const RuntimeCheckingPtrGroup *, unsigned > getPtrToIdxMap(ArrayRef< RuntimeCheckingPtrGroup > CheckingGroups)
Assign each RuntimeCheckingPtrGroup pointer an index for stable UTC output.
static cl::opt< unsigned, true > VectorizationFactor("force-vector-width", cl::Hidden, cl::desc("Sets the SIMD width. Zero is autoselect."), cl::location(VectorizerParams::VectorizationFactor))
static cl::opt< unsigned, true > RuntimeMemoryCheckThreshold("runtime-memory-check-threshold", cl::Hidden, cl::desc("When performing memory disambiguation checks at runtime do not " "generate more than this number of comparisons (default = 8)."), cl::location(VectorizerParams::RuntimeMemoryCheckThreshold), cl::init(8))
static void visitPointers(Value *StartPtr, const Loop &InnermostLoop, function_ref< void(Value *)> AddPointer)
static bool isNoWrap(PredicatedScalarEvolution &PSE, const SCEVAddRecExpr *AR, Value *Ptr, Type *AccessTy, const Loop *L, bool Assume, const DominatorTree &DT, std::optional< int64_t > Stride=std::nullopt)
Check whether AR is a non-wrapping AddRec.
static bool isSafeDependenceDistance(const DataLayout &DL, ScalarEvolution &SE, const SCEV &MaxBTC, const SCEV &Dist, uint64_t MaxStride)
Given a dependence-distance Dist between two memory accesses, that have strides in the same direction...
static bool areStridedAccessesIndependent(uint64_t Distance, uint64_t Stride, uint64_t TypeByteSize)
Check the dependence for two accesses with the same stride Stride.
static const SCEV * getMinFromExprs(const SCEV *I, const SCEV *J, ScalarEvolution *SE)
Compare I and J and return the minimum.
static Value * getLoopVariantGEPOperand(Value *Ptr, ScalarEvolution *SE, Loop *Lp)
If Ptr is a GEP, which has a loop-variant operand, return that operand.
static cl::opt< unsigned > MaxForkedSCEVDepth("max-forked-scev-depth", cl::Hidden, cl::desc("Maximum recursion depth when finding forked SCEVs (default = 5)"), cl::init(5))
static cl::opt< bool > SpeculateUnitStride("laa-speculate-unit-stride", cl::Hidden, cl::desc("Speculate that non-constant strides are unit in LAA"), cl::init(true))
static cl::opt< bool > EnableMemAccessVersioning("enable-mem-access-versioning", cl::init(true), cl::Hidden, cl::desc("Enable symbolic stride memory access versioning"))
This enables versioning on the strides of symbolically striding memory accesses in code like the foll...
static const SCEV * addSCEVNoOverflow(const SCEV *A, const SCEV *B, ScalarEvolution &SE)
Returns A + B, if it is guaranteed not to unsigned wrap.
This header provides classes for managing per-loop analyses.
This file provides utility analysis objects describing memory locations.
FunctionAnalysisManager FAM
This file defines the PointerIntPair class.
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
This file defines the SmallSet class.
This file defines the SmallVector class.
static SymbolRef::Type getType(const Symbol *Sym)
static const X86InstrFMA3Group Groups[]
A manager for alias analyses.
Class for arbitrary precision integers.
uint64_t getZExtValue() const
Get zero extended value.
APInt abs() const
Get the absolute value.
LLVM_ABI APInt sextOrTrunc(unsigned width) const
Sign extend or truncate to width.
std::optional< int64_t > trySExtValue() const
Get sign extended value if possible.
int64_t getSExtValue() const
Get sign extended value.
This templated class represents "all analyses that operate over <aparticular IR unit>" (e....
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
bool empty() const
empty - Check if the array is empty.
A function analysis which provides an AssumptionCache.
A cache of @llvm.assume calls within a function.
LLVM Basic Block Representation.
const Function * getParent() const
Return the enclosing method, or null if none.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this basic block belongs to.
bool isNoBuiltin() const
Return true if the call should not be treated as a call to a builtin.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
bool isConvergent() const
Determine if the invoke is convergent.
@ ICMP_UGE
unsigned greater or equal
@ ICMP_SGE
signed greater or equal
@ ICMP_ULE
unsigned less or equal
static LLVM_ABI Constant * getIntToPtr(Constant *C, Type *Ty, bool OnlyIfReduced=false)
static LLVM_ABI Constant * getAllOnesValue(Type *Ty)
A parsed version of the target data layout string in and methods for querying it.
ValueT lookup(const_arg_type_t< KeyT > Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
iterator find(const_arg_type_t< KeyT > Val)
Analysis pass which computes a DominatorTree.
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.
iterator_range< member_iterator > members(const ECValue &ECV) const
bool contains(const ElemTy &V) const
Returns true if V is contained an equivalence class.
const ECValue & insert(const ElemTy &Data)
insert - Insert a new value into the union/find set, ignoring the request if the value already exists...
member_iterator member_end() const
const ElemTy & getLeaderValue(const ElemTy &V) const
getLeaderValue - Return the leader for the specified value that is in the set.
member_iterator findLeader(const ElemTy &V) const
findLeader - Given a value in the set, return a member iterator for the equivalence class it is in.
void eraseClass(const ElemTy &V)
Erase the class containing V, i.e.
member_iterator unionSets(const ElemTy &V1, const ElemTy &V2)
union - Merge the two equivalence sets for the specified values, inserting them if they do not alread...
bool hasOptSize() const
Optimize this function for size (-Os) or minimum size (-Oz).
PointerType * getType() const
Global values are always pointers.
An instruction for reading from memory.
Value * getPointerOperand()
static constexpr LocationSize beforeOrAfterPointer()
Any location before or after the base pointer (but still within the underlying object).
This analysis provides dependence information for the memory accesses of a loop.
LLVM_ABI Result run(Function &F, FunctionAnalysisManager &AM)
LLVM_ABI bool invalidate(Function &F, const PreservedAnalyses &PA, FunctionAnalysisManager::Invalidator &Inv)
LLVM_ABI const LoopAccessInfo & getInfo(Loop &L, bool AllowPartial=false)
Drive the analysis of memory accesses in the loop.
const MemoryDepChecker & getDepChecker() const
the Memory Dependence Checker which can determine the loop-independent and loop-carried dependences b...
LLVM_ABI bool isInvariant(Value *V) const
Returns true if value V is loop invariant.
LLVM_ABI void print(raw_ostream &OS, unsigned Depth=0) const
Print the information about the memory accesses in the loop.
static LLVM_ABI bool blockNeedsPredication(const BasicBlock *BB, const Loop *TheLoop, const DominatorTree *DT)
Return true if the block BB needs to be predicated in order for the loop to be vectorized.
LLVM_ABI LoopAccessInfo(Loop *L, ScalarEvolution *SE, const TargetTransformInfo *TTI, const TargetLibraryInfo *TLI, AAResults *AA, DominatorTree *DT, LoopInfo *LI, AssumptionCache *AC, bool AllowPartial=false)
Analysis pass that exposes the LoopInfo for a function.
bool contains(const LoopT *L) const
Return true if the specified loop is contained within in this loop.
bool isInnermost() const
Return true if the loop does not contain any (natural) loops.
unsigned getNumBackEdges() const
Calculate the number of back edges to the loop header.
BlockT * getHeader() const
LoopT * getParentLoop() const
Return the parent loop if it exists or nullptr for top level loops.
Represents a single loop in the control flow graph.
std::string getLocStr() const
Return a string containing the debug location of the loop (file name + line number if present,...
bool isAnnotatedParallel() const
Returns true if the loop is annotated parallel.
DebugLoc getStartLoc() const
Return the debug location of the start of this loop.
ArrayRef< MDOperand > operands() const
Checks memory dependences among accesses to the same underlying object to determine whether there vec...
ArrayRef< unsigned > getOrderForAccess(Value *Ptr, bool IsWrite) const
Return the program order indices for the access location (Ptr, IsWrite).
bool isSafeForAnyStoreLoadForwardDistances() const
Return true if there are no store-load forwarding dependencies.
bool isSafeForAnyVectorWidth() const
Return true if the number of elements that are safe to operate on simultaneously is not bounded.
LLVM_ABI bool areDepsSafe(const DepCandidates &AccessSets, const MemAccessInfoList &CheckDeps)
Check whether the dependencies between the accesses are safe, and records the dependence information ...
EquivalenceClasses< MemAccessInfo > DepCandidates
Set of potential dependent memory accesses.
bool shouldRetryWithRuntimeChecks() const
In same cases when the dependency check fails we can still vectorize the loop with a dynamic array ac...
const Loop * getInnermostLoop() const
uint64_t getMaxSafeVectorWidthInBits() const
Return the number of elements that are safe to operate on simultaneously, multiplied by the size of t...
bool isSafeForVectorization() const
No memory dependence was encountered that would inhibit vectorization.
const SmallVectorImpl< Dependence > * getDependences() const
Returns the memory dependences.
SmallVector< MemAccessInfo, 8 > MemAccessInfoList
LLVM_ABI SmallVector< Instruction *, 4 > getInstructionsForAccess(Value *Ptr, bool isWrite) const
Find the set of instructions that read or write via Ptr.
VectorizationSafetyStatus
Type to keep track of the status of the dependence check.
@ PossiblySafeWithRtChecks
LLVM_ABI void addAccess(StoreInst *SI)
Register the location (instructions are given increasing numbers) of a write access.
PointerIntPair< Value *, 1, bool > MemAccessInfo
uint64_t getStoreLoadForwardSafeDistanceInBits() const
Return safe power-of-2 number of elements, which do not prevent store-load forwarding,...
Representation for a specific memory location.
static LLVM_ABI MemoryLocation get(const LoadInst *LI)
Return a location with information about the memory reference by the given instruction.
LocationSize Size
The maximum size of the location, in address-units, or UnknownSize if the size is not known.
AAMDNodes AATags
The metadata nodes which describes the aliasing of the location (each member is null if that kind of ...
const Value * Ptr
The address of the start of the location.
PointerIntPair - This class implements a pair of a pointer and small integer.
An interface layer with SCEV used to manage how we see SCEV expressions for values in the context of ...
LLVM_ABI void addPredicate(const SCEVPredicate &Pred)
Adds a new predicate.
ScalarEvolution * getSE() const
Returns the ScalarEvolution analysis used.
LLVM_ABI bool hasNoOverflow(Value *V, SCEVWrapPredicate::IncrementWrapFlags Flags)
Returns true if we've proved that V doesn't wrap by means of a SCEV predicate.
LLVM_ABI void setNoOverflow(Value *V, SCEVWrapPredicate::IncrementWrapFlags Flags)
Proves that V doesn't overflow by adding SCEV predicate.
LLVM_ABI const SCEVAddRecExpr * getAsAddRec(Value *V)
Attempts to produce an AddRecExpr for V by adding additional SCEV predicates.
LLVM_ABI const SCEV * getBackedgeTakenCount()
Get the (predicated) backedge count for the analyzed loop.
LLVM_ABI const SCEV * getSymbolicMaxBackedgeTakenCount()
Get the (predicated) symbolic max backedge count for the analyzed loop.
LLVM_ABI const SCEV * getSCEV(Value *V)
Returns the SCEV expression of V, in the context of the current SCEV predicate.
A set of analyses that are preserved following a run of a transformation pass.
PreservedAnalysisChecker getChecker() const
Build a checker for this PreservedAnalyses and the specified analysis type.
Holds information about the memory runtime legality checks to verify that a group of pointers do not ...
bool Need
This flag indicates if we need to add the runtime check.
void reset()
Reset the state of the pointer runtime information.
unsigned getNumberOfChecks() const
Returns the number of run-time checks required according to needsChecking.
LLVM_ABI void printChecks(raw_ostream &OS, const SmallVectorImpl< RuntimePointerCheck > &Checks, unsigned Depth=0) const
Print Checks.
LLVM_ABI bool needsChecking(const RuntimeCheckingPtrGroup &M, const RuntimeCheckingPtrGroup &N) const
Decide if we need to add a check between two groups of pointers, according to needsChecking.
LLVM_ABI void print(raw_ostream &OS, unsigned Depth=0) const
Print the list run-time memory checks necessary.
SmallVector< RuntimeCheckingPtrGroup, 2 > CheckingGroups
Holds a partitioning of pointers into "check groups".
friend struct RuntimeCheckingPtrGroup
static LLVM_ABI bool arePointersInSamePartition(const SmallVectorImpl< int > &PtrToPartition, unsigned PtrIdx1, unsigned PtrIdx2)
Check if pointers are in the same partition.
LLVM_ABI void generateChecks(MemoryDepChecker::DepCandidates &DepCands)
Generate the checks and store it.
SmallVector< PointerInfo, 2 > Pointers
Information about the pointers that may require checking.
LLVM_ABI void insert(Loop *Lp, Value *Ptr, const SCEV *PtrExpr, Type *AccessTy, bool WritePtr, unsigned DepSetId, unsigned ASId, PredicatedScalarEvolution &PSE, bool NeedsFreeze)
Insert a pointer and calculate the start and end SCEVs.
This node represents a polynomial recurrence on the trip count of the specified loop.
const SCEV * getStart() const
const SCEV * getStepRecurrence(ScalarEvolution &SE) const
Constructs and returns the recurrence indicating how much this expression steps by.
bool isAffine() const
Return true if this represents an expression A + B*x where A and B are loop invariant values.
const Loop * getLoop() const
This class represents a constant integer value.
ConstantInt * getValue() const
const APInt & getAPInt() const
NoWrapFlags getNoWrapFlags(NoWrapFlags Mask=NoWrapMask) const
This class represents an analyzed expression in the program.
LLVM_ABI bool isZero() const
Return true if the expression is a constant zero.
LLVM_ABI Type * getType() const
Return the LLVM type of this SCEV expression.
Analysis pass that exposes the ScalarEvolution for a function.
static LLVM_ABI LoopGuards collect(const Loop *L, ScalarEvolution &SE)
Collect rewrite map for loop guards for loop L, together with flags indicating if NUW and NSW can be ...
The main scalar evolution driver.
const SCEV * getConstantMaxBackedgeTakenCount(const Loop *L)
When successful, this returns a SCEVConstant that is greater than or equal to (i.e.
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 Type * getWiderType(Type *Ty1, Type *Ty2) const
LLVM_ABI const SCEV * getAbsExpr(const SCEV *Op, bool IsNSW)
LLVM_ABI bool isKnownNonPositive(const SCEV *S)
Test if the given expression is known to be non-positive.
LLVM_ABI bool isKnownNegative(const SCEV *S)
Test if the given expression is known to be negative.
LLVM_ABI const SCEV * getUMaxExpr(const SCEV *LHS, const SCEV *RHS)
LLVM_ABI bool willNotOverflow(Instruction::BinaryOps BinOp, bool Signed, const SCEV *LHS, const SCEV *RHS, const Instruction *CtxI=nullptr)
Is operation BinOp between LHS and RHS provably does not have a signed/unsigned overflow (Signed)?
LLVM_ABI const SCEVPredicate * getEqualPredicate(const SCEV *LHS, const SCEV *RHS)
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 * getNoopOrSignExtend(const SCEV *V, Type *Ty)
Return a SCEV corresponding to a conversion of the input value to the specified type.
const SCEV * getOne(Type *Ty)
Return a SCEV for the constant 1 of a specific type.
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 isKnownPositive(const SCEV *S)
Test if the given expression is known to be positive.
LLVM_ABI const SCEV * getZeroExtendExpr(const SCEV *Op, Type *Ty, unsigned Depth=0)
LLVM_ABI bool isSCEVable(Type *Ty) const
Test if values of the given type are analyzable within the SCEV framework.
LLVM_ABI Type * getEffectiveSCEVType(Type *Ty) const
Return a type with the same bitwidth as the given type and which represents how SCEV will treat the g...
LLVM_ABI const SCEV * getUMinExpr(const SCEV *LHS, const SCEV *RHS, bool Sequential=false)
APInt getSignedRangeMin(const SCEV *S)
Determine the min of the signed range for a particular SCEV.
LLVM_ABI const SCEV * getStoreSizeOfExpr(Type *IntTy, Type *StoreTy)
Return an expression for the store size of StoreTy that is type IntTy.
LLVM_ABI const SCEV * getMinusSCEV(const SCEV *LHS, const SCEV *RHS, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Return LHS-RHS.
LLVM_ABI const SCEV * getNoopOrZeroExtend(const SCEV *V, Type *Ty)
Return a SCEV corresponding to a conversion of the input value to the specified type.
LLVM_ABI const SCEV * getCouldNotCompute()
LLVM_ABI const SCEV * getPointerBase(const SCEV *V)
Transitively follow the chain of pointer-type operands until reaching a SCEV that does not have a sin...
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 * getMulExpr(SmallVectorImpl< const SCEV * > &Ops, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Get a canonical multiply expression, or something simpler if possible.
LLVM_ABI const SCEV * getPtrToAddrExpr(const SCEV *Op)
LLVM_ABI const SCEV * getSizeOfExpr(Type *IntTy, TypeSize Size)
Return an expression for a TypeSize.
LLVM_ABI std::optional< APInt > computeConstantDifference(const SCEV *LHS, const SCEV *RHS)
Compute LHS - RHS and returns the result as an APInt if it is a constant, and std::nullopt if it isn'...
LLVM_ABI const SCEV * getAddExpr(SmallVectorImpl< const SCEV * > &Ops, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Get a canonical add expression, or something simpler if possible.
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.
LLVM_ABI bool isKnownPredicate(CmpPredicate Pred, const SCEV *LHS, const SCEV *RHS)
Test if the given expression is known to satisfy the condition described by Pred, LHS,...
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
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.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
bool contains(const T &V) const
Check if the SmallSet contains the given element.
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
StringRef - Represent a constant reference to a string, i.e.
Analysis pass providing the TargetTransformInfo.
Analysis pass providing the TargetLibraryInfo.
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.
bool isVectorTy() const
True if this is an instance of VectorType.
bool isPointerTy() const
True if this is an instance of PointerType.
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
A Use represents the edge between a Value definition and its users.
static SmallVector< VFInfo, 8 > getMappings(const CallInst &CI)
Retrieve all the VFInfo instances associated to the CallInst CI.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI bool canBeFreed() const
Return true if the memory object referred to by V can by freed in the scope for which the SSA value d...
LLVM_ABI const Value * stripAndAccumulateConstantOffsets(const DataLayout &DL, APInt &Offset, bool AllowNonInbounds, bool AllowInvariantGroup=false, function_ref< bool(Value &Value, APInt &Offset)> ExternalAnalysis=nullptr, bool LookThroughIntToPtr=false) const
Accumulate the constant offset this value has compared to a base pointer.
LLVM_ABI uint64_t getPointerDereferenceableBytes(const DataLayout &DL, bool &CanBeNull, bool &CanBeFreed) const
Returns the number of bytes known to be dereferenceable for the pointer value.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
constexpr ScalarTy getFixedValue() const
An efficient, type-erasing, non-owning reference to a callable.
This class implements an extremely fast bulk output stream that can only output to a stream.
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
Abstract Attribute helper functions.
@ C
The default llvm calling convention, compatible with C.
bool match(Val *V, const Pattern &P)
bind_cst_ty m_scev_APInt(const APInt *&C)
Match an SCEV constant and bind it to an APInt.
is_undef_or_poison m_scev_UndefOrPoison()
Match an SCEVUnknown wrapping undef or poison.
class_match< const SCEVConstant > m_SCEVConstant()
specificloop_ty m_SpecificLoop(const Loop *L)
SCEVAffineAddRec_match< Op0_t, Op1_t, class_match< const Loop > > m_scev_AffineAddRec(const Op0_t &Op0, const Op1_t &Op1)
bind_ty< const SCEVMulExpr > m_scev_Mul(const SCEVMulExpr *&V)
specificscev_ty m_scev_Specific(const SCEV *S)
Match if we have a specific specified SCEV.
class_match< const SCEV > m_SCEV()
initializer< Ty > init(const Ty &Val)
LocationClass< Ty > location(Ty &L)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, bool > hasa(Y &&MD)
Check whether Metadata has a Value.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
DiagnosticInfoOptimizationBase::Argument NV
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI std::pair< const SCEV *, const SCEV * > getStartAndEndForAccess(const Loop *Lp, const SCEV *PtrExpr, Type *AccessTy, const SCEV *BTC, const SCEV *MaxBTC, ScalarEvolution *SE, DenseMap< std::pair< const SCEV *, const SCEV * >, std::pair< const SCEV *, const SCEV * > > *PointerBounds, DominatorTree *DT, AssumptionCache *AC, std::optional< ScalarEvolution::LoopGuards > &LoopGuards)
Calculate Start and End points of memory access using exact backedge taken count BTC if computable or...
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
LLVM_ABI bool willNotFreeBetween(const Instruction *Assume, const Instruction *CtxI)
Returns true, if no instruction between Assume and CtxI may free memory and the function is marked as...
detail::zippy< detail::zip_shortest, T, U, Args... > zip(T &&t, U &&u, Args &&...args)
zip iterator for two or more iteratable types.
FunctionAddr VTableAddr Value
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI RetainedKnowledge getKnowledgeForValue(const Value *V, ArrayRef< Attribute::AttrKind > AttrKinds, AssumptionCache &AC, function_ref< bool(RetainedKnowledge, Instruction *, const CallBase::BundleOpInfo *)> Filter=[](auto...) { return true;})
Return a valid Knowledge associated to the Value V if its Attribute kind is in AttrKinds and it match...
LLVM_ABI bool isValidAssumeForContext(const Instruction *I, const Instruction *CxtI, const DominatorTree *DT=nullptr, bool AllowEphemerals=false)
Return true if it is valid to use the assumptions provided by an assume intrinsic,...
LLVM_ABI Intrinsic::ID getVectorIntrinsicIDForCall(const CallInst *CI, const TargetLibraryInfo *TLI)
Returns intrinsic ID for call.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
unsigned getPointerAddressSpace(const Type *T)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI std::optional< const MDOperand * > findStringMetadataForLoop(const Loop *TheLoop, StringRef Name)
Find string metadata for loop.
const Value * getLoadStorePointerOperand(const Value *V)
A helper function that returns the pointer operand of a load or store instruction.
auto dyn_cast_if_present(const Y &Val)
dyn_cast_if_present<X> - Functionally identical to dyn_cast, except that a null (or none in the case ...
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
const Value * getPointerOperand(const Value *V)
A helper function that returns the pointer operand of a load, store or GEP instruction.
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.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
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.
LLVM_ABI std::optional< int64_t > getPointersDiff(Type *ElemTyA, Value *PtrA, Type *ElemTyB, Value *PtrB, const DataLayout &DL, ScalarEvolution &SE, bool StrictCheck=false, bool CheckType=true)
Returns the distance between the pointers PtrA and PtrB iff they are compatible and it is possible to...
LLVM_ABI bool sortPtrAccesses(ArrayRef< Value * > VL, Type *ElemTy, const DataLayout &DL, ScalarEvolution &SE, SmallVectorImpl< unsigned > &SortedIndices)
Attempt to sort the pointers in VL and return the sorted indices in SortedIndices,...
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
LLVM_ABI const SCEV * replaceSymbolicStrideSCEV(PredicatedScalarEvolution &PSE, const DenseMap< Value *, const SCEV * > &PtrToStride, Value *Ptr)
Return the SCEV corresponding to a pointer with the symbolic stride replaced with constant one,...
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.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
Type * getLoadStoreType(const Value *I)
A helper function that returns the type of a load or store instruction.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
T bit_floor(T Value)
Returns the largest integral power of two no greater than Value if Value is nonzero.
LLVM_ABI void getUnderlyingObjects(const Value *V, SmallVectorImpl< const Value * > &Objects, const LoopInfo *LI=nullptr, unsigned MaxLookup=MaxLookupSearchDepth)
This method is similar to getUnderlyingObject except that it can look through phi and select instruct...
LLVM_ABI std::optional< int64_t > getPtrStride(PredicatedScalarEvolution &PSE, Type *AccessTy, Value *Ptr, const Loop *Lp, const DominatorTree &DT, const DenseMap< Value *, const SCEV * > &StridesMap=DenseMap< Value *, const SCEV * >(), bool Assume=false, bool ShouldCheckWrap=true)
If the pointer has a constant stride return it in units of the access type size.
Implement std::hash so that hash_code can be used in STL containers.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
IR Values for the lower and upper bounds of a pointer evolution.
MDNode * Scope
The tag for alias scope specification (used with noalias).
MDNode * TBAA
The tag for type-based alias analysis.
MDNode * NoAlias
The tag specifying the noalias scope.
A special type used by analysis passes to provide an address that identifies that particular analysis...
Instruction * getDestination(const MemoryDepChecker &DepChecker) const
Return the destination instruction of the dependence.
DepType Type
The type of the dependence.
unsigned Destination
Index of the destination of the dependence in the InstMap vector.
LLVM_ABI bool isPossiblyBackward() const
May be a lexically backward dependence type (includes Unknown).
Instruction * getSource(const MemoryDepChecker &DepChecker) const
Return the source instruction of the dependence.
LLVM_ABI bool isForward() const
Lexically forward dependence.
LLVM_ABI bool isBackward() const
Lexically backward dependence.
LLVM_ABI void print(raw_ostream &OS, unsigned Depth, const SmallVectorImpl< Instruction * > &Instrs) const
Print the dependence.
unsigned Source
Index of the source of the dependence in the InstMap vector.
DepType
The type of the dependence.
@ BackwardVectorizableButPreventsForwarding
@ ForwardButPreventsForwarding
static LLVM_ABI const char * DepName[]
String version of the types.
static LLVM_ABI VectorizationSafetyStatus isSafeForVectorization(DepType Type)
Dependence types that don't prevent vectorization.
Represent one information held inside an operand bundle of an llvm.assume.
unsigned AddressSpace
Address space of the involved pointers.
LLVM_ABI bool addPointer(unsigned Index, const RuntimePointerChecking &RtCheck)
Tries to add the pointer recorded in RtCheck at index Index to this pointer checking group.
bool NeedsFreeze
Whether the pointer needs to be frozen after expansion, e.g.
LLVM_ABI RuntimeCheckingPtrGroup(unsigned Index, const RuntimePointerChecking &RtCheck)
Create a new pointer checking group containing a single pointer, with index Index in RtCheck.
const SCEV * High
The SCEV expression which represents the upper bound of all the pointers in this group.
SmallVector< unsigned, 2 > Members
Indices of all the pointers that constitute this grouping.
const SCEV * Low
The SCEV expression which represents the lower bound of all the pointers in this group.
bool IsWritePtr
Holds the information if this pointer is used for writing to memory.
unsigned DependencySetId
Holds the id of the set of pointers that could be dependent because of a shared underlying object.
unsigned AliasSetId
Holds the id of the disjoint alias set to which this pointer belongs.
static LLVM_ABI const unsigned MaxVectorWidth
Maximum SIMD width.
static LLVM_ABI unsigned VectorizationFactor
VF as overridden by the user.
static LLVM_ABI unsigned RuntimeMemoryCheckThreshold
\When performing memory disambiguation checks at runtime do not make more than this number of compari...
static LLVM_ABI bool isInterleaveForced()
True if force-vector-interleave was specified by the user.
static LLVM_ABI unsigned VectorizationInterleave
Interleave factor as overridden by the user.
static LLVM_ABI bool HoistRuntimeChecks
Function object to check whether the first component of a container supported by std::get (like std::...