Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DProfileSummary.h36 uint64_t NumCounts; ///< Number of counts >= the minimum count. member
40 : Cutoff(TheCutoff), MinCount(TheMinCount), NumCounts(TheNumCounts) {} in ProfileSummaryEntry()
53 uint32_t NumCounts, NumFunctions; variable
74 uint32_t NumCounts, uint32_t NumFunctions,
79 NumCounts(NumCounts), NumFunctions(NumFunctions), Partial(Partial), in PSK()
91 uint32_t getNumCounts() { return NumCounts; } in getNumCounts()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DProfileSummary.cpp64 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Entry.NumCounts))}; in getDetailedSummaryMD()
215 uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount, in getFromMD() local
229 NumCounts)) in getFromMD()
248 NumCounts, NumFunctions, IsPartialProfile, in getFromMD()
256 OS << "Total number of blocks: " << NumCounts << "\n"; in printSummary()
263 OS << Entry.NumCounts << " blocks with count >= " << Entry.MinCount in printDetailedSummary()
H A DModule.cpp787 uint32_t NumCounts = ProfileSummary->getNumCounts(); in setPartialSampleProfileRatio() local
788 if (!NumCounts) in setPartialSampleProfileRatio()
790 double Ratio = (double)BlockCount / NumCounts; in setPartialSampleProfileRatio()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DProfileCommon.h53 uint32_t NumCounts = 0; variable
105 NumCounts++; in addCount()
H A DInstrProf.h1084 ER.NumBlocks = E.NumCounts; in setEntry()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp249 HotEntry.NumCounts > ProfileSummaryHugeWorkingSetSizeThreshold; in computeThresholds()
251 HotEntry.NumCounts > ProfileSummaryLargeWorkingSetSizeThreshold; in computeThresholds()
257 static_cast<uint64_t>(HotEntry.NumCounts * PartialProfileRatio * in computeThresholds()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp181 MaxFunctionCount, NumCounts, NumFunctions); in getSummary()
217 MaxInternalBlockCount, MaxFunctionCount, NumCounts, NumFunctions); in getSummary()
H A DSampleProfWriter.cpp677 encodeULEB128(Entry.NumCounts, OS); in writeSummary()