Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h486 int getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwiseForm) const;
622 virtual int getReductionCost(unsigned Opcode, Type *Ty,
800 int getReductionCost(unsigned Opcode, Type *Ty, in getReductionCost() function
802 return Impl.getReductionCost(Opcode, Ty, IsPairwiseForm); in getReductionCost()
DTargetTransformInfoImpl.h328 unsigned getReductionCost(unsigned, Type *, bool) { return 1; } in getReductionCost() function
/external/llvm/lib/Target/X86/
DX86TargetTransformInfo.h82 int getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwiseForm);
DX86TargetTransformInfo.cpp1059 int X86TTIImpl::getReductionCost(unsigned Opcode, Type *ValTy, in getReductionCost() function in X86TTIImpl
1128 return BaseT::getReductionCost(Opcode, ValTy, IsPairwise); in getReductionCost()
/external/llvm/lib/Analysis/
DTargetTransformInfo.cpp317 int TargetTransformInfo::getReductionCost(unsigned Opcode, Type *Ty, in getReductionCost() function in TargetTransformInfo
319 int Cost = TTIImpl->getReductionCost(Opcode, Ty, IsPairwiseForm); in getReductionCost()
DCostModel.cpp468 return TTI->getReductionCost(ReduxOpCode, ReduxType, false); in getInstructionCost()
470 return TTI->getReductionCost(ReduxOpCode, ReduxType, true); in getInstructionCost()
/external/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h770 unsigned getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwise) { in getReductionCost() function
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp3785 int Cost = V.getTreeCost() + getReductionCost(TTI, ReducedVals[i]); in tryToReduce()
3831 int getReductionCost(TargetTransformInfo *TTI, Value *FirstReducedVal) { in getReductionCost() function in __anonf9942ad60111::HorizontalReduction
3835 int PairwiseRdxCost = TTI->getReductionCost(ReductionOpcode, VecTy, true); in getReductionCost()
3836 int SplittingRdxCost = TTI->getReductionCost(ReductionOpcode, VecTy, false); in getReductionCost()