Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
DIVDescriptors.h285 BinaryOperator *getInductionBinOp() const { return InductionBinOp; } in getInductionBinOp()
320 if (IK == IK_FpInduction && InductionBinOp && in getExactFPMathInst()
321 !InductionBinOp->hasAllowReassoc()) in getExactFPMathInst()
322 return InductionBinOp; in getExactFPMathInst()
328 return InductionBinOp ? InductionBinOp->getOpcode() in getInductionOpcode()
342 BinaryOperator *InductionBinOp = nullptr,
352 BinaryOperator *InductionBinOp = nullptr; variable
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DIVDescriptors.cpp967 : StartValue(Start), IK(K), Step(Step), InductionBinOp(BOp) { in InductionDescriptor()
990 (InductionBinOp && in InductionDescriptor()
991 (InductionBinOp->getOpcode() == Instruction::FAdd || in InductionDescriptor()
992 InductionBinOp->getOpcode() == Instruction::FSub))) && in InductionDescriptor()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp3445 auto InductionBinOp = ID.getInductionBinOp(); in emitTransformedIndex() local
3446 assert(InductionBinOp && in emitTransformedIndex()
3447 (InductionBinOp->getOpcode() == Instruction::FAdd || in emitTransformedIndex()
3448 InductionBinOp->getOpcode() == Instruction::FSub) && in emitTransformedIndex()
3453 return B.CreateBinOp(InductionBinOp->getOpcode(), StartValue, MulExp, in emitTransformedIndex()