Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
DLoopUtils.h320 return InductionBinOp && !cast<FPMathOperator>(InductionBinOp)->isFast(); in hasUnsafeAlgebra()
326 if (!InductionBinOp || cast<FPMathOperator>(InductionBinOp)->isFast()) in getUnsafeAlgebraInst()
328 return InductionBinOp; in getUnsafeAlgebraInst()
333 return InductionBinOp ? InductionBinOp->getOpcode() : in getInductionOpcode()
347 BinaryOperator *InductionBinOp = nullptr,
357 BinaryOperator *InductionBinOp = nullptr; variable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DLoopUtils.cpp758 : StartValue(Start), IK(K), Step(Step), InductionBinOp(BOp) { in InductionDescriptor()
780 assert((IK != IK_FpInduction || (InductionBinOp && in InductionDescriptor()
781 (InductionBinOp->getOpcode() == Instruction::FAdd || in InductionDescriptor()
782 InductionBinOp->getOpcode() == Instruction::FSub))) && in InductionDescriptor()
844 assert(InductionBinOp && in transform()
845 (InductionBinOp->getOpcode() == Instruction::FAdd || in transform()
846 InductionBinOp->getOpcode() == Instruction::FSub) && in transform()
860 Value *BOp = B.CreateBinOp(InductionBinOp->getOpcode() , StartValue, in transform()