Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2899 if (auto RedCost = getReductionPatternCost(CI, VF, RetTy, CostKind)) in getVectorCallCost() local
2900 return *RedCost; in getVectorCallCost()
5838 InstructionCost RedCost = TTI.getMulAccReductionCost( in getReductionPatternCost() local
5841 if (RedCost.isValid() && in getReductionPatternCost()
5842 RedCost < ExtCost * 2 + MulCost + Ext2Cost + BaseCost) in getReductionPatternCost()
5843 return I == RetI ? RedCost : 0; in getReductionPatternCost()
5849 InstructionCost RedCost = TTI.getExtendedReductionCost( in getReductionPatternCost() local
5856 if (RedCost.isValid() && RedCost < BaseCost + ExtCost) in getReductionPatternCost()
5857 return I == RetI ? RedCost : 0; in getReductionPatternCost()
5883 InstructionCost RedCost = TTI.getMulAccReductionCost( in getReductionPatternCost() local
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h2621 InstructionCost RedCost = in getExtendedReductionCost() local
2627 return RedCost + ExtCost; in getExtendedReductionCost()
2637 InstructionCost RedCost = thisT()->getArithmeticReductionCost( in getMulAccReductionCost() local
2646 return RedCost + MulCost + 2 * ExtCost; in getMulAccReductionCost()