Home
last modified time | relevance | path

Searched refs:getArithmeticReductionCost (Results 1 – 18 of 18) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.cpp1158 return getArithmeticReductionCost(Instruction::Or, Ty, FMF, CostKind); in getMinMaxReductionCost()
1160 return getArithmeticReductionCost(Instruction::And, Ty, FMF, CostKind); in getMinMaxReductionCost()
1248 RISCVTTIImpl::getArithmeticReductionCost(unsigned Opcode, VectorType *Ty, in getArithmeticReductionCost() function in RISCVTTIImpl
1252 return BaseT::getArithmeticReductionCost(Opcode, Ty, FMF, CostKind); in getArithmeticReductionCost()
1256 return BaseT::getArithmeticReductionCost(Opcode, Ty, FMF, CostKind); in getArithmeticReductionCost()
1263 return BaseT::getArithmeticReductionCost(Opcode, Ty, FMF, CostKind); in getArithmeticReductionCost()
1355 getArithmeticReductionCost(Opcode, ValTy, FMF, CostKind); in getExtendedReductionCost()
H A DRISCVTargetTransformInfo.h181 InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *Ty,
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.h249 InstructionCost getArithmeticReductionCost(
H A DAMDGPUTargetTransformInfo.cpp780 GCNTTIImpl::getArithmeticReductionCost(unsigned Opcode, VectorType *Ty, in getArithmeticReductionCost() function in GCNTTIImpl
784 return BaseT::getArithmeticReductionCost(Opcode, Ty, FMF, CostKind); in getArithmeticReductionCost()
791 return BaseT::getArithmeticReductionCost(Opcode, Ty, FMF, CostKind); in getArithmeticReductionCost()
/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h214 InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *Ty,
H A DX86TargetTransformInfo.cpp5174 X86TTIImpl::getArithmeticReductionCost(unsigned Opcode, VectorType *ValTy, in getArithmeticReductionCost() function in X86TTIImpl
5178 return BaseT::getArithmeticReductionCost(Opcode, ValTy, FMF, CostKind); in getArithmeticReductionCost()
5250 getArithmeticReductionCost(Opcode, WideVecTy, FMF, CostKind); in getArithmeticReductionCost()
5346 return BaseT::getArithmeticReductionCost(Opcode, ValVTy, FMF, CostKind); in getArithmeticReductionCost()
5355 return BaseT::getArithmeticReductionCost(Opcode, ValVTy, FMF, CostKind); in getArithmeticReductionCost()
/src/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h394 InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *Ty,
H A DAArch64TargetTransformInfo.cpp3866 AArch64TTIImpl::getArithmeticReductionCost(unsigned Opcode, VectorType *ValTy, in getArithmeticReductionCost() function in AArch64TTIImpl
3880 BaseT::getArithmeticReductionCost(Opcode, ValTy, FMF, CostKind); in getArithmeticReductionCost()
3972 return BaseT::getArithmeticReductionCost(Opcode, ValTy, FMF, CostKind); in getArithmeticReductionCost()
/src/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.h283 InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *ValTy,
H A DARMTargetTransformInfo.cpp1682 ARMTTIImpl::getArithmeticReductionCost(unsigned Opcode, VectorType *ValTy, in getArithmeticReductionCost() function in ARMTTIImpl
1752 return BaseT::getArithmeticReductionCost(Opcode, ValTy, FMF, CostKind); in getArithmeticReductionCost()
1764 return BaseT::getArithmeticReductionCost(Opcode, ValTy, FMF, CostKind); in getArithmeticReductionCost()
/src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h2102 return thisT()->getArithmeticReductionCost( in getTypeBasedIntrinsicInstrCost()
2107 return thisT()->getArithmeticReductionCost( in getTypeBasedIntrinsicInstrCost()
2554 InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *Ty, in getArithmeticReductionCost() function
2622 thisT()->getArithmeticReductionCost(Opcode, ExtTy, FMF, CostKind); in getExtendedReductionCost()
2637 InstructionCost RedCost = thisT()->getArithmeticReductionCost( in getMulAccReductionCost()
/src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h1511 InstructionCost getArithmeticReductionCost(
2105 getArithmeticReductionCost(unsigned Opcode, VectorType *Ty,
2787 getArithmeticReductionCost(unsigned Opcode, VectorType *Ty, in getArithmeticReductionCost() function
2790 return Impl.getArithmeticReductionCost(Opcode, Ty, FMF, CostKind); in getArithmeticReductionCost()
H A DTargetTransformInfoImpl.h792 InstructionCost getArithmeticReductionCost(unsigned, VectorType *, in getArithmeticReductionCost() function
/src/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp1149 InstructionCost TargetTransformInfo::getArithmeticReductionCost( in getArithmeticReductionCost() function in TargetTransformInfo
1153 TTIImpl->getArithmeticReductionCost(Opcode, Ty, FMF, CostKind); in getArithmeticReductionCost()
/src/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVectorCombine.cpp2157 InstructionCost OldCost = TTI.getArithmeticReductionCost( in foldCastFromReductions()
2163 TTI.getArithmeticReductionCost(ReductionOpc, SrcTy, std::nullopt, in foldCastFromReductions()
H A DLoopVectorize.cpp5787 BaseCost = TTI.getArithmeticReductionCost( in getReductionPatternCost()
H A DSLPVectorizer.cpp17831 TTI->getArithmeticReductionCost(RdxOpcode, VectorTy, FMF, CostKind); in getReductionCost()
/src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp1444 TTI.getArithmeticReductionCost( in lowerDotProduct()