Home
last modified time | relevance | path

Searched refs:StepValue (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVETailPredication.cpp338 auto StepValue = Step->getValue()->getSExtValue(); in IsSafeActiveMask() local
339 if (VectorWidth == StepValue) in IsSafeActiveMask()
342 LLVM_DEBUG(dbgs() << "ARM TP: Step value " << StepValue in IsSafeActiveMask()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopInfo.cpp216 Value *StepValue = nullptr; in getBounds() local
218 StepValue = StepInstOp1; in getBounds()
220 StepValue = StepInstOp0; in getBounds()
226 return LoopBounds(L, *InitialIVValue, *StepInst, StepValue, *FinalIVValue, in getBounds()
H A DIVDescriptors.cpp1278 auto *StepValue = in isInductionPHI() local
1280 D = InductionDescriptor(StartValue, IK_PtrInduction, StepValue, BOp); in isInductionPHI()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopInfo.h657 Value *getStepValue() const { return StepValue; } in getStepValue()
709 : L(Loop), InitialIVValue(I), StepInst(SI), StepValue(SV), in LoopBounds()
722 Value *StepValue; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp2529 Value *StepValue = expandCodeForImpl(Step, Ty, Loc, false); in generateOverflowCheck() local
2542 Value *StepCompare = Builder.CreateICmp(ICmpInst::ICMP_SLT, StepValue, Zero); in generateOverflowCheck()
2543 Value *AbsStep = Builder.CreateSelect(StepCompare, NegStepValue, StepValue); in generateOverflowCheck()
2590 BackedgeCheck, Builder.CreateICmp(ICmpInst::ICMP_NE, StepValue, Zero)); in generateOverflowCheck()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3451 Value *StepValue = cast<SCEVUnknown>(Step)->getValue(); in emitTransformedIndex() local
3452 Value *MulExp = B.CreateFMul(StepValue, Index); in emitTransformedIndex()