Home
last modified time | relevance | path

Searched refs:TotalCallCount (Results 1 – 1 of 1) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h134 if (auto TotalCallCount = getTotalCallCount(F)) in isFunctionHotInCallGraph() local
135 if (isHotCount(*TotalCallCount)) in isFunctionHotInCallGraph()
154 if (auto TotalCallCount = getTotalCallCount(F)) in isFunctionColdInCallGraph() local
155 if (!isColdCount(*TotalCallCount)) in isFunctionColdInCallGraph()
285 if (auto TotalCallCount = getTotalCallCount(F)) { in isFunctionHotOrColdInCallGraphNthPercentile() local
286 if (isHot && isHotCountNthPercentile(PercentileCutoff, *TotalCallCount)) in isFunctionHotOrColdInCallGraphNthPercentile()
289 !isColdCountNthPercentile(PercentileCutoff, *TotalCallCount)) in isFunctionHotOrColdInCallGraphNthPercentile()
336 uint64_t TotalCallCount = 0; variable
341 TotalCallCount += *CallCount;
342 return TotalCallCount;