Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Cold

22 // considered hot/cold. These two parameters are percentile values (multiplied
26 // threshold for determining cold count (everything <= this threshold is
27 // considered cold).
35 "profile-summary-cutoff-cold", cl::Hidden, cl::init(999999), cl::ZeroOrMore,
36 cl::desc("A count is cold if it is below the minimum count"
82 // Returns true if the function is a cold function. If it returns false, it
83 // either means it is not cold or it is unknown whether F is cold or not (for
89 if (F->hasFnAttribute(Attribute::Cold)) {
103 // Compute the hot and cold thresholds.
154 OS << "Functions in " << M.getName() << " with hot/cold annotations: \n";
160 OS << " :cold ";