Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h752 bool shouldDropLSRSolutionIfLessProfitable() const;
1895 virtual bool shouldDropLSRSolutionIfLessProfitable() const = 0;
2376 bool shouldDropLSRSolutionIfLessProfitable() const override { in shouldDropLSRSolutionIfLessProfitable() function
2377 return Impl.shouldDropLSRSolutionIfLessProfitable(); in shouldDropLSRSolutionIfLessProfitable()
H A DTargetTransformInfoImpl.h249 bool shouldDropLSRSolutionIfLessProfitable() const { return false; } in shouldDropLSRSolutionIfLessProfitable() function
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp434 bool TargetTransformInfo::shouldDropLSRSolutionIfLessProfitable() const { in shouldDropLSRSolutionIfLessProfitable() function in TargetTransformInfo
435 return TTIImpl->shouldDropLSRSolutionIfLessProfitable(); in shouldDropLSRSolutionIfLessProfitable()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h402 bool shouldDropLSRSolutionIfLessProfitable() const { in shouldDropLSRSolutionIfLessProfitable() function
403 return TargetTransformInfoImplBase::shouldDropLSRSolutionIfLessProfitable(); in shouldDropLSRSolutionIfLessProfitable()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp5544 return TTI.shouldDropLSRSolutionIfLessProfitable(); in Solve()