Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DProfileSummaryInfo.cpp154 uint64_t TotalCallCount = 0; in isFunctionHotInCallGraph() local
159 TotalCallCount += CallCount.getValue(); in isFunctionHotInCallGraph()
160 if (isHotCount(TotalCallCount)) in isFunctionHotInCallGraph()
183 uint64_t TotalCallCount = 0; in isFunctionColdInCallGraph() local
188 TotalCallCount += CallCount.getValue(); in isFunctionColdInCallGraph()
189 if (!isColdCount(TotalCallCount)) in isFunctionColdInCallGraph()
208 uint64_t TotalCallCount = 0; in isFunctionHotInCallGraphNthPercentile() local
213 TotalCallCount += CallCount.getValue(); in isFunctionHotInCallGraphNthPercentile()
214 if (isHotCountNthPercentile(PercentileCutoff, TotalCallCount)) in isFunctionHotInCallGraphNthPercentile()