Lines Matching refs:Count
92 if (SuccBIIter->Count != BinaryBasicBlock::COUNT_NO_PROFILE && in postProcessProfile()
94 Succ->setExecutionCount(Succ->getExecutionCount() + SuccBIIter->Count); in postProcessProfile()
114 if (!BI.Count) { in postProcessProfile()
115 BI.Count = BB->getKnownExecutionCount(); in postProcessProfile()
117 BI.Count); in postProcessProfile()
127 uint64_t Count = SuccBIIter->Count; in postProcessProfile() local
128 if (Count != BinaryBasicBlock::COUNT_NO_PROFILE && Count > 0) { in postProcessProfile()
129 Succ->setExecutionCount(std::max(Succ->getExecutionCount(), Count)); in postProcessProfile()
130 BB->setExecutionCount(std::max(BB->getExecutionCount(), Count)); in postProcessProfile()
166 TotalBranchCount += BranchInfo.Count; in postProcessProfile()
168 JT->Count += TotalBranchCount; in postProcessProfile()
184 JT->Counts[Delta].Count += BranchInfo.Count; in postProcessProfile()
230 assert(BII->Count != BinaryBasicBlock::COUNT_NO_PROFILE && in mergeProfileDataInto()
232 assert(BIMergeI->Count != BinaryBasicBlock::COUNT_NO_PROFILE && in mergeProfileDataInto()
235 BIMergeI->Count += BII->Count; in mergeProfileDataInto()
263 CountMergeI->Count += JI.Count; in mergeProfileDataInto()
290 if (SuccBI.Count != BinaryBasicBlock::COUNT_NO_PROFILE) in inferFallThroughCounts()
291 ReportedBranches += SuccBI.Count; in inferFallThroughCounts()
335 if (SuccBI.Count == 0) { in inferFallThroughCounts()
336 SuccBI.Count = Inferred; in inferFallThroughCounts()
352 BI.Count = 0; in clearProfile()