Home
last modified time | relevance | path

Searched refs:getReductionCost (Results 1 – 9 of 9) sorted by relevance

/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h563 int getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwiseForm) const;
721 virtual int getReductionCost(unsigned Opcode, Type *Ty,
943 int getReductionCost(unsigned Opcode, Type *Ty, in getReductionCost() function
945 return Impl.getReductionCost(Opcode, Ty, IsPairwiseForm); in getReductionCost()
DTargetTransformInfoImpl.h364 unsigned getReductionCost(unsigned, Type *, bool) { return 1; } in getReductionCost() function
/external/llvm/lib/Target/X86/
DX86TargetTransformInfo.h88 int getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwiseForm);
DX86TargetTransformInfo.cpp1193 int X86TTIImpl::getReductionCost(unsigned Opcode, Type *ValTy, in getReductionCost() function in X86TTIImpl
1262 return BaseT::getReductionCost(Opcode, ValTy, IsPairwise); in getReductionCost()
/external/llvm/lib/Analysis/
DCostModel.cpp468 return TTI->getReductionCost(ReduxOpCode, ReduxType, false); in getInstructionCost()
470 return TTI->getReductionCost(ReduxOpCode, ReduxType, true); in getInstructionCost()
DTargetTransformInfo.cpp393 int TargetTransformInfo::getReductionCost(unsigned Opcode, Type *Ty, in getReductionCost() function in TargetTransformInfo
395 int Cost = TTIImpl->getReductionCost(Opcode, Ty, IsPairwiseForm); in getReductionCost()
/external/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h920 unsigned getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwise) { in getReductionCost() function
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp4085 int Cost = V.getTreeCost() + getReductionCost(TTI, ReducedVals[i]); in tryToReduce()
4131 int getReductionCost(TargetTransformInfo *TTI, Value *FirstReducedVal) { in getReductionCost() function in HorizontalReduction
4135 int PairwiseRdxCost = TTI->getReductionCost(ReductionOpcode, VecTy, true); in getReductionCost()
4136 int SplittingRdxCost = TTI->getReductionCost(ReductionOpcode, VecTy, false); in getReductionCost()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp5771 int ReductionCost = getReductionCost(TTI, ReducedVals[i], ReduxWidth); in tryToReduce()
5849 int getReductionCost(TargetTransformInfo *TTI, Value *FirstReducedVal, in getReductionCost() function in __anon179022771a11::HorizontalReduction