Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
HDSystemZTargetTransformInfo.h64 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
HDSystemZTargetTransformInfo.cpp347 bool SystemZTTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in SystemZTTIImpl
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
HDPPCTargetTransformInfo.h79 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
HDPPCTargetTransformInfo.cpp937 bool PPCTTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in PPCTTIImpl
947 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86TargetTransformInfo.h260 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
HDX86TargetTransformInfo.cpp5914 bool X86TTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in X86TTIImpl
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
HDRISCVTargetTransformInfo.h394 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
HDRISCVTargetTransformInfo.cpp1933 bool RISCVTTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in RISCVTTIImpl
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
HDAArch64TargetTransformInfo.h435 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
HDAArch64TargetTransformInfo.cpp4412 bool AArch64TTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in AArch64TTIImpl
4425 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDTargetTransformInfo.h737 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
1891 virtual bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
2366 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function
2368 return Impl.isLSRCostLess(C1, C2); in isLSRCostLess()
HDTargetTransformInfoImpl.h238 bool isLSRCostLess(const TTI::LSRCost &C1, const TTI::LSRCost &C2) const { in isLSRCostLess() function
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
HDTargetTransformInfo.cpp421 bool TargetTransformInfo::isLSRCostLess(const LSRCost &C1, in isLSRCostLess() function in TargetTransformInfo
423 return TTIImpl->isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
HDBasicTTIImpl.h389 bool isLSRCostLess(TTI::LSRCost C1, TTI::LSRCost C2) { in isLSRCostLess() function
390 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
HDLoopStrengthReduce.cpp1627 return TTI->isLSRCostLess(C, Other.C); in isLess()