Lines Matching full:cutoff
34 "profile-summary-cutoff-hot", cl::Hidden, cl::init(990000),
39 "profile-summary-cutoff-cold", cl::Hidden, cl::init(999999),
47 " blocks required to reach the -profile-summary-cutoff-hot"
54 " blocks required to reach the -profile-summary-cutoff-hot"
62 " profile-summary-cutoff-hot"));
67 " profile-summary-cutoff-cold"));
70 // A set of cutoff values. Each value, when divided by ProfileSummary::Scale
84 return Entry.Cutoff < Percentile;
89 report_fatal_error("Desired percentile exceeds the maximum cutoff");
131 // The argument to this method is a vector of cutoff percentages and the return
132 // value is a vector of (Cutoff, MinCount, NumCounts) triplets.
143 for (const uint32_t Cutoff : DetailedSummaryCutoffs) {
144 assert(Cutoff <= 999999);
146 APInt N(128, Cutoff);
160 ProfileSummaryEntry PSE = {Cutoff, Count, CountsSeen};