Lines Matching defs:Count
52 bool ICallPromotionAnalysis::isPromotionProfitable(uint64_t Count,
55 return Count * 100 >= ICPRemainingPercentThreshold * RemainingCount &&
56 Count * 100 >= ICPTotalPercentThreshold * TotalCount;
70 uint64_t Count = ValueDataArray[I].Count;
71 assert(Count <= RemainingCount);
72 LLVM_DEBUG(dbgs() << " Candidate " << I << " Count=" << Count
75 if (!isPromotionProfitable(Count, TotalCount, RemainingCount)) {
79 RemainingCount -= Count;