Searched refs:getReductionCost (Results 1 – 8 of 8) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 563 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()
|
D | TargetTransformInfoImpl.h | 364 unsigned getReductionCost(unsigned, Type *, bool) { return 1; } in getReductionCost() function
|
/external/llvm/lib/Target/X86/ |
D | X86TargetTransformInfo.h | 88 int getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwiseForm);
|
D | X86TargetTransformInfo.cpp | 1193 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/ |
D | CostModel.cpp | 468 return TTI->getReductionCost(ReduxOpCode, ReduxType, false); in getInstructionCost() 470 return TTI->getReductionCost(ReduxOpCode, ReduxType, true); in getInstructionCost()
|
D | TargetTransformInfo.cpp | 393 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/ |
D | BasicTTIImpl.h | 920 unsigned getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwise) { in getReductionCost() function
|
/external/llvm/lib/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 4085 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()
|