Home
last modified time | relevance | path

Searched refs:shouldDropLSRSolutionIfLessProfitable (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp444 bool TargetTransformInfo::shouldDropLSRSolutionIfLessProfitable() const { in shouldDropLSRSolutionIfLessProfitable() function in TargetTransformInfo
445 return TTIImpl->shouldDropLSRSolutionIfLessProfitable(); in shouldDropLSRSolutionIfLessProfitable()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h781 LLVM_ABI bool shouldDropLSRSolutionIfLessProfitable() const;
H A DTargetTransformInfoImpl.h292 virtual bool shouldDropLSRSolutionIfLessProfitable() const { return false; } in shouldDropLSRSolutionIfLessProfitable() function
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h499 bool shouldDropLSRSolutionIfLessProfitable() const override { in shouldDropLSRSolutionIfLessProfitable() function
500 return TargetTransformInfoImplBase::shouldDropLSRSolutionIfLessProfitable(); in shouldDropLSRSolutionIfLessProfitable()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp5520 return TTI.shouldDropLSRSolutionIfLessProfitable(); in Solve()