Searched refs:getCmpSelInstrCost (Results 1 - 18 of 18) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h836 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, function in class:llvm::BasicTTIImplBase
864 unsigned Cost = static_cast<T *>(this)->getCmpSelInstrCost(
1165 Cost += ConcreteTTI->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy,
1167 Cost += ConcreteTTI->getCmpSelInstrCost(BinaryOperator::Select, RetTy,
1350 Cost += ConcreteTTI->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy,
1352 Cost += 2 * ConcreteTTI->getCmpSelInstrCost(BinaryOperator::Select, RetTy,
1368 Cost += ConcreteTTI->getCmpSelInstrCost(BinaryOperator::Select, RetTy,
1412 Cost += 3 * ConcreteTTI->getCmpSelInstrCost(BinaryOperator::ICmp, SumTy,
1414 Cost += 2 * ConcreteTTI->getCmpSelInstrCost(
1430 Cost += ConcreteTTI->getCmpSelInstrCost(BinaryOperato
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.h128 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
H A DHexagonTargetTransformInfo.cpp229 unsigned HexagonTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, function in class:HexagonTTIImpl
236 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, I);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h87 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
H A DSystemZTargetTransformInfo.cpp807 int SystemZTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, function in class:SystemZTTIImpl
810 assert (ST->hasVector() && "getCmpSelInstrCost() called with vector type.");
884 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, nullptr);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.h100 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
H A DPPCTargetTransformInfo.cpp770 int PPCTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, function in class:PPCTTIImpl
772 int Cost = BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, I);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.h199 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
H A DARMTargetTransformInfo.cpp447 int ARMTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, function in class:ARMTTIImpl
475 return BaseCost * BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, I);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h133 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
H A DAArch64TargetTransformInfo.cpp598 int AArch64TTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, function in class:AArch64TTIImpl
626 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, I);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h133 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
H A DX86TargetTransformInfo.cpp1703 int X86TTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, function in class:X86TTIImpl
1881 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, I);
2499 int ScalarCompareCost = getCmpSelInstrCost(
3266 getCmpSelInstrCost(Instruction::ICmp, Type::getInt1Ty(SrcVTy->getContext()),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp635 int TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, function in class:TargetTransformInfo
639 int Cost = TTIImpl->getCmpSelInstrCost(Opcode, ValTy, CondTy, I);
1203 return getCmpSelInstrCost(I->getOpcode(), I->getType(), CondTy, I);
1208 return getCmpSelInstrCost(I->getOpcode(), ValTy, I->getType(), I);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h940 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
1327 virtual int getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
1739 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
1741 return Impl.getCmpSelInstrCost(Opcode, ValTy, CondTy, I);
H A DTargetTransformInfoImpl.h457 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, function in class:llvm::TargetTransformInfoImplBase
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp3379 int ScalarEltCost = TTI->getCmpSelInstrCost(E->getOpcode(), ScalarTy,
3386 int VecCost = TTI->getCmpSelInstrCost(E->getOpcode(), VecTy, MaskTy, VL0);
6904 TTI->getCmpSelInstrCost(ReductionData.getOpcode(), ScalarTy) +
6905 TTI->getCmpSelInstrCost(Instruction::Select, ScalarTy,
H A DLoopVectorize.cpp6212 TTI.getCmpSelInstrCost(
6296 return TTI.getCmpSelInstrCost(I->getOpcode(), VectorTy, CondTy, I);
6305 return TTI.getCmpSelInstrCost(I->getOpcode(), VectorTy, nullptr, I);

Completed in 439 milliseconds