Home
last modified time | relevance | path

Searched refs:ConstStride (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLoopDataPrefetch.cpp161 const auto *ConstStride = dyn_cast<SCEVConstant>(AR->getStepRecurrence(*SE)); in isStrideLargeEnough() local
164 if (!ConstStride) in isStrideLargeEnough()
167 unsigned AbsStride = std::abs(ConstStride->getAPInt().getSExtValue()); in isStrideLargeEnough()
DLoopIdiomRecognize.cpp427 const SCEVConstant *ConstStride = cast<SCEVConstant>(StoreEv->getOperand(1)); in getStoreStride() local
428 return ConstStride->getAPInt(); in getStoreStride()
922 const SCEVConstant *ConstStride = dyn_cast<SCEVConstant>(Ev->getOperand(1)); in processLoopMemSet() local
923 if (!ConstStride) in processLoopMemSet()
926 APInt Stride = ConstStride->getAPInt(); in processLoopMemSet()
DLowerMatrixIntrinsics.cpp966 if (auto *ConstStride = dyn_cast<ConstantInt>(Stride)) { in getAlignForIndex() local
968 ConstStride->getZExtValue() * ElementSizeInBits / 8; in getAlignForIndex()