Lines Matching defs:CountValue
1303 uint64_t CountValue = CountFromProfile[I++];
1308 if (InstrBB == FuncEntry && CountValue == 0)
1309 CountValue = 1;
1310 Info.setBBInfoCount(CountValue);
2025 uint64_t CountValue = 0;
2030 CountValue = *Func.getBBInfo(&BBI).Count;
2032 SumCount.add(APFloat(CountValue * 1.0), APFloat::rmNearestTiesToEven);
2073 uint64_t CountValue = 0;
2076 CountValue = Func.getBBInfo(&BBI).Count.value_or(CountValue);
2079 if (CountValue)
2086 bool rawIsHot = CountValue >= HotCountThreshold;
2088 bool rawIsCold = CountValue <= ColdCountThreshold;
2100 if ((CountValue < PGOVerifyBFICutoff) &&
2103 uint64_t Diff = (BFICountValue >= CountValue)
2104 ? BFICountValue - CountValue
2105 : CountValue - BFICountValue;
2106 if (Diff <= CountValue / 100 * PGOVerifyBFIRatio)
2115 << " Count=" << ore::NV("Count", CountValue)