Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A 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()
H A DLoopIdiomRecognize.cpp386 const SCEVConstant *ConstStride = cast<SCEVConstant>(StoreEv->getOperand(1)); in getStoreStride() local
387 return ConstStride->getAPInt(); in getStoreStride()
H A DLowerMatrixIntrinsics.cpp1290 if (auto *ConstStride = dyn_cast<ConstantInt>(Stride)) { in getAlignForIndex() local
1292 ConstStride->getZExtValue() * ElementSizeInBits / 8; in getAlignForIndex()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp10750 std::optional<uint32_t> ConstStride = std::nullopt; in lowerPointerAsRsrcIntrin() local
10752 ConstStride = ConstNode->getZExtValue(); in lowerPointerAsRsrcIntrin()
10755 if (!ConstStride || *ConstStride != 0) { in lowerPointerAsRsrcIntrin()
10757 if (ConstStride) { in lowerPointerAsRsrcIntrin()
10758 ShiftedStride = DAG.getConstant(*ConstStride << 16, Loc, MVT::i32); in lowerPointerAsRsrcIntrin()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp18998 if (auto *ConstStride = dyn_cast<ConstantSDNode>(Stride); in performCONCAT_VECTORSCombine() local
18999 ConstStride && ConstStride->getSExtValue() >= 0) in performCONCAT_VECTORSCombine()
19003 ConstStride->getSExtValue() * (N->getNumOperands() - 1); in performCONCAT_VECTORSCombine()