Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h53 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
H A DSystemZTargetTransformInfo.cpp296 bool SystemZTTIImpl::isLSRCostLess(TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in SystemZTTIImpl
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h127 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
H A DX86TargetTransformInfo.cpp2855 bool X86TTIImpl::isLSRCostLess(TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in X86TTIImpl
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h478 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
1065 virtual bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
1295 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function
1297 return Impl.isLSRCostLess(C1, C2); in isLSRCostLess()
H A DTargetTransformInfoImpl.h246 bool isLSRCostLess(TTI::LSRCost &C1, TTI::LSRCost &C2) { in isLSRCostLess() function
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp154 bool TargetTransformInfo::isLSRCostLess(LSRCost &C1, LSRCost &C2) const { in isLSRCostLess() function in TargetTransformInfo
155 return TTIImpl->isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h249 bool isLSRCostLess(TTI::LSRCost C1, TTI::LSRCost C2) { in isLSRCostLess() function
250 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1417 return TTI.isLSRCostLess(C, Other.C); in isLess()