Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h64 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
H A DSystemZTargetTransformInfo.cpp343 bool SystemZTTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in SystemZTTIImpl
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.h79 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
H A DPPCTargetTransformInfo.cpp926 bool PPCTTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in PPCTTIImpl
936 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.h361 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
H A DRISCVTargetTransformInfo.cpp1502 bool RISCVTTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in RISCVTTIImpl
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h257 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
H A DX86TargetTransformInfo.cpp5842 bool X86TTIImpl::isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function in X86TTIImpl
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h717 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
1826 virtual bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1,
2284 bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1, in isLSRCostLess() function
2286 return Impl.isLSRCostLess(C1, C2); in isLSRCostLess()
H A DTargetTransformInfoImpl.h229 bool isLSRCostLess(const TTI::LSRCost &C1, const TTI::LSRCost &C2) const { in isLSRCostLess() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp411 bool TargetTransformInfo::isLSRCostLess(const LSRCost &C1, in isLSRCostLess() function in TargetTransformInfo
413 return TTIImpl->isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h381 bool isLSRCostLess(TTI::LSRCost C1, TTI::LSRCost C2) { in isLSRCostLess() function
382 return TargetTransformInfoImplBase::isLSRCostLess(C1, C2); in isLSRCostLess()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1486 return TTI->isLSRCostLess(C, Other.C); in isLess()