Home
last modified time | relevance | path

Searched refs:getThreshold (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineCost.h136 int getThreshold() const { in getThreshold() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp592 Cost -= std::max(0, CA.getThreshold() - CA.getCost()); in onLoweredCall()
951 int getThreshold() const { return Threshold; } in getThreshold() function in __anondb71d90f0111::InlineCostCallAnalyzer
2853 if (!ShouldInline.isSuccess() && CA.getCost() < CA.getThreshold()) in getInlineCost()
2855 if (ShouldInline.isSuccess() && CA.getCost() >= CA.getThreshold()) in getInlineCost()
2858 return llvm::InlineCost::get(CA.getCost(), CA.getThreshold()); in getInlineCost()
H A DInlineAdvisor.cpp296 << ", threshold=" << ore::NV("Threshold", IC.getThreshold()) << ")"; in operator <<()