Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h460 unsigned getReductionCost(unsigned Opcode, Type *Ty,
585 virtual unsigned getReductionCost(unsigned Opcode, Type *Ty,
743 unsigned getReductionCost(unsigned Opcode, Type *Ty, in getReductionCost() function
745 return Impl.getReductionCost(Opcode, Ty, IsPairwiseForm); in getReductionCost()
DTargetTransformInfoImpl.h316 unsigned getReductionCost(unsigned, Type *, bool) { return 1; } in getReductionCost() function
/external/llvm/lib/Analysis/
DTargetTransformInfo.cpp258 unsigned TargetTransformInfo::getReductionCost(unsigned Opcode, Type *Ty, in getReductionCost() function in TargetTransformInfo
260 return TTIImpl->getReductionCost(Opcode, Ty, IsPairwiseForm); in getReductionCost()
DCostModel.cpp473 return TTI->getReductionCost(ReduxOpCode, ReduxType, false); in getInstructionCost()
475 return TTI->getReductionCost(ReduxOpCode, ReduxType, true); in getInstructionCost()
/external/llvm/lib/Target/X86/
DX86TargetTransformInfo.h94 unsigned getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwiseForm);
DX86TargetTransformInfo.cpp881 unsigned X86TTIImpl::getReductionCost(unsigned Opcode, Type *ValTy, in getReductionCost() function in X86TTIImpl
958 return BaseT::getReductionCost(Opcode, ValTy, IsPairwise); in getReductionCost()
/external/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h712 unsigned getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwise) { in getReductionCost() function
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp3655 int Cost = V.getTreeCost() + getReductionCost(TTI, ReducedVals[i]); in tryToReduce()
3698 int getReductionCost(TargetTransformInfo *TTI, Value *FirstReducedVal) { in getReductionCost() function in __anonf9942ad60111::HorizontalReduction
3702 int PairwiseRdxCost = TTI->getReductionCost(ReductionOpcode, VecTy, true); in getReductionCost()
3703 int SplittingRdxCost = TTI->getReductionCost(ReductionOpcode, VecTy, false); in getReductionCost()