Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h60 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
H A DSystemZTargetTransformInfo.cpp305 bool SystemZTTIImpl::isLSRCostLess(TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in SystemZTTIImpl
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.h78 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
H A DPPCTargetTransformInfo.cpp1271 bool PPCTTIImpl::isLSRCostLess(TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in PPCTTIImpl
1281 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h224 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
H A DX86TargetTransformInfo.cpp4662 bool X86TTIImpl::isLSRCostLess(TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in X86TTIImpl
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h611 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
1490 virtual bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
1844 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function
1846 return Impl.isLSRCostLess(C1, C2); in isLSRCostLess()
H A DTargetTransformInfoImpl.h207 bool isLSRCostLess(TTI::LSRCost &C1, TTI::LSRCost &C2) const { in isLSRCostLess() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp342 bool TargetTransformInfo::isLSRCostLess(LSRCost &C1, LSRCost &C2) const { in isLSRCostLess() function in TargetTransformInfo
343 return TTIImpl->isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h321 bool isLSRCostLess(TTI::LSRCost C1, TTI::LSRCost C2) { in isLSRCostLess() function
322 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1468 return TTI->isLSRCostLess(C, Other.C); in isLess()