Home
last modified time | relevance | path

Searched refs:isLSRCostLess (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h62 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
H A DSystemZTargetTransformInfo.cpp342 bool SystemZTTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in SystemZTTIImpl
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.h79 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
H A DPPCTargetTransformInfo.cpp1312 bool PPCTTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in PPCTTIImpl
1322 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2); in isLSRCostLess()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h228 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
H A DX86TargetTransformInfo.cpp5205 bool X86TTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in X86TTIImpl
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h627 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
1587 virtual bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
1984 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function
1986 return Impl.isLSRCostLess(C1, C2); in isLSRCostLess()
H A DTargetTransformInfoImpl.h213 bool isLSRCostLess(const TTI::LSRCost &C1, const TTI::LSRCost &C2) const { in isLSRCostLess() function
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp358 bool TargetTransformInfo::isLSRCostLess(const LSRCost &C1, in isLSRCostLess() function in TargetTransformInfo
360 return TTIImpl->isLSRCostLess(C1, C2); in isLSRCostLess()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h351 bool isLSRCostLess(TTI::LSRCost C1, TTI::LSRCost C2) { in isLSRCostLess() function
352 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2); in isLSRCostLess()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1473 return TTI->isLSRCostLess(C, Other.C); in isLess()