Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp440 unsigned NumRecords, NumAbbreviatedRecords; member
447 NumSubBlocks(0), NumAbbrevs(0), NumRecords(0), NumAbbreviatedRecords(0) {} in PerBlockIDStats()
609 ++BlockStats.NumRecords; in ParseBlock()
940 outs() << " Tot/Avg Records: " << Stats.NumRecords << "/" in AnalyzeBitcode()
941 << Stats.NumRecords/(double)Stats.NumInstances << "\n"; in AnalyzeBitcode()
945 outs() << " Num Records: " << Stats.NumRecords << "\n"; in AnalyzeBitcode()
947 if (Stats.NumRecords) { in AnalyzeBitcode()
948 double pct = (Stats.NumAbbreviatedRecords * 100.0) / Stats.NumRecords; in AnalyzeBitcode()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.cpp58 uint32_t NumRecords) in LazyRandomTypeCollection() argument
59 : LazyRandomTypeCollection(Types, NumRecords, PartialOffsetArray()) {} in LazyRandomTypeCollection()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStream.cpp306 size_t NumRecords = StreamLen / sizeof(object::FpoData); in initializeFpoRecords() local
308 if (auto EC = Reader.readArray(FpoRecords, NumRecords)) in initializeFpoRecords()
/freebsd-12.1/contrib/llvm/lib/ProfileData/
H A DSampleProfReader.cpp373 auto NumRecords = readNumber<uint32_t>(); in readProfile() local
374 if (std::error_code EC = NumRecords.getError()) in readProfile()
377 for (uint32_t I = 0; I < *NumRecords; ++I) { in readProfile()
/freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1546 unsigned NumRecords = 0; in parseTypeTableBody() local
1559 if (NumRecords != TypeList.size()) in parseTypeTableBody()
1704 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
1708 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]); in parseTypeTableBody()
1711 TypeList[NumRecords] = nullptr; in parseTypeTableBody()
1733 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
1737 StructType *Res = cast_or_null<StructType>(TypeList[NumRecords]); in parseTypeTableBody()
1740 TypeList[NumRecords] = nullptr; in parseTypeTableBody()
1767 if (NumRecords >= TypeList.size()) in parseTypeTableBody()
1769 if (TypeList[NumRecords]) in parseTypeTableBody()
[all …]