Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DIVDescriptors.h284 BinaryOperator *getInductionBinOp() const { return InductionBinOp; } in getInductionBinOp()
319 if (IK == IK_FpInduction && InductionBinOp && in getExactFPMathInst()
320 !InductionBinOp->hasAllowReassoc()) in getExactFPMathInst()
321 return InductionBinOp; in getExactFPMathInst()
327 return InductionBinOp ? InductionBinOp->getOpcode() in getInductionOpcode()
341 BinaryOperator *InductionBinOp = nullptr,
351 BinaryOperator *InductionBinOp = nullptr; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DIVDescriptors.cpp941 : StartValue(Start), IK(K), Step(Step), InductionBinOp(BOp) { in InductionDescriptor()
964 (InductionBinOp && in InductionDescriptor()
965 (InductionBinOp->getOpcode() == Instruction::FAdd || in InductionDescriptor()
966 InductionBinOp->getOpcode() == Instruction::FSub))) && in InductionDescriptor()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3416 auto InductionBinOp = ID.getInductionBinOp(); in emitTransformedIndex() local
3417 assert(InductionBinOp && in emitTransformedIndex()
3418 (InductionBinOp->getOpcode() == Instruction::FAdd || in emitTransformedIndex()
3419 InductionBinOp->getOpcode() == Instruction::FSub) && in emitTransformedIndex()
3424 return B.CreateBinOp(InductionBinOp->getOpcode(), StartValue, MulExp, in emitTransformedIndex()