Lines Matching defs:Threshold
277 /// that fits the \p Threshold for function definition import. If none are
294 unsigned Threshold, StringRef CallerModulePath,
311 if ((Summary->instCount() > Threshold) && !Summary->fflags().AlwaysInline &&
332 using EdgeInfo = std::tuple<const FunctionSummary *, unsigned /* Threshold */>;
835 const unsigned Threshold, const GVSummaryMapTy &DefinedGVSummaries,
846 LLVM_DEBUG(dbgs() << " edge -> " << VI << " Threshold:" << Threshold
874 Threshold * GetBonusMultiplier(Edge.second.getHotness());
897 dbgs() << "ignored! Target was already imported with Threshold "
909 dbgs() << "ignored! Target was already rejected with Threshold "
999 auto GetAdjustedThreshold = [](unsigned Threshold, bool IsHotCallsite) {
1004 return Threshold * ImportHotInstrFactor;
1005 return Threshold * ImportInstrFactor;
1008 const auto AdjThreshold = GetAdjustedThreshold(Threshold, IsHotCallsite);
1054 auto Threshold = std::get<1>(GVInfo);
1057 computeImportForFunction(*FS, Index, Threshold, DefinedGVSummaries,
1079 << ", Threshold = " << ProcessedThreshold