Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/include/llvm/Analysis/
H A DIVDescriptors.h323 BinaryOperator *getInductionBinOp() const { return InductionBinOp; } in getInductionBinOp()
358 if (IK == IK_FpInduction && InductionBinOp && in getExactFPMathInst()
359 !InductionBinOp->hasAllowReassoc()) in getExactFPMathInst()
360 return InductionBinOp; in getExactFPMathInst()
366 return InductionBinOp ? InductionBinOp->getOpcode() in getInductionOpcode()
385 BinaryOperator *InductionBinOp = nullptr,
396 BinaryOperator *InductionBinOp = nullptr; variable
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DIVDescriptors.cpp1269 : StartValue(Start), IK(K), Step(Step), InductionBinOp(BOp), in InductionDescriptor()
1293 (InductionBinOp && in InductionDescriptor()
1294 (InductionBinOp->getOpcode() == Instruction::FAdd || in InductionDescriptor()
1295 InductionBinOp->getOpcode() == Instruction::FSub))) && in InductionDescriptor()
/openbsd/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2525 auto InductionBinOp = ID.getInductionBinOp(); in emitTransformedIndex() local
2526 assert(InductionBinOp && in emitTransformedIndex()
2527 (InductionBinOp->getOpcode() == Instruction::FAdd || in emitTransformedIndex()
2528 InductionBinOp->getOpcode() == Instruction::FSub) && in emitTransformedIndex()
2532 return B.CreateBinOp(InductionBinOp->getOpcode(), StartValue, MulExp, in emitTransformedIndex()