Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DInlineCost.h116 int getThreshold() const { in getThreshold() function
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DInlineCost.cpp298 int getThreshold() { return Threshold; } in getThreshold() function in __anon45440fe00111::CallAnalyzer
1302 Cost -= std::max(0, CA.getThreshold() - CA.getCost()); in visitCallSite()
2068 if (!ShouldInline && CA.getCost() < CA.getThreshold()) in getInlineCost()
2070 if (ShouldInline && CA.getCost() >= CA.getThreshold()) in getInlineCost()
2073 return llvm::InlineCost::get(CA.getCost(), CA.getThreshold()); in getInlineCost()
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DInliner.cpp403 << ", threshold=" << ore::NV("Threshold", IC.getThreshold()) << ")"; in operator <<()