Home
last modified time | relevance | path

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

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