Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h933 std::vector<BBEntry> BBEntries; // Basic block entries for this range.
938 std::equal(BBEntries.begin(), BBEntries.end(),
939 Other.BBEntries.begin());
958 NumBBEntries += BBR.BBEntries.size();
974 return BBRanges.front().BBEntries;
1015 std::vector<PGOBBEntry> BBEntries; // Extended basic block entries
1021 return std::tie(FuncEntryCount, BBEntries, FeatEnable) ==
1022 std::tie(Other.FuncEntryCount, Other.BBEntries, Other.FeatEnable);
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp824 std::vector<BBAddrMap::BBEntry> BBEntries; in decodeBBAddrMapImpl() local
872 BBEntries.push_back({ID, Offset, Size, *MetadataOrErr}); in decodeBBAddrMapImpl()
874 TotalNumBlocks += BBEntries.size(); in decodeBBAddrMapImpl()
875 BBRangeEntries.push_back({RangeBaseAddress, std::move(BBEntries)}); in decodeBBAddrMapImpl()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1500 BBR.NumBlocks.value_or(BBR.BBEntries ? BBR.BBEntries->size() : 0); in writeSectionContent()
1503 if (!BBR.BBEntries) in writeSectionContent()
1505 for (const ELFYAML::BBAddrMapEntry::BBEntry &BBE : *BBR.BBEntries) { in writeSectionContent()
H A DELFYAML.cpp1841 IO.mapOptional("BBEntries", E.BBEntries); in mapping()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp210 assert(PGOBBEntryIndex < PGOMap.BBEntries.size() && in constructPGOLabelString()
213 PGOMap.BBEntries[PGOBBEntryIndex]; in constructPGOLabelString()
218 printRelativeBlockFreq(PGOSS, PGOMap.BBEntries.front().BlockFreq, in constructPGOLabelString()
1466 FunctionMap->getAddrMap().BBRanges[I].BBEntries.size(); in collectBBAddrMapLabels()
1468 for (size_t I = 0; I < BBRange.BBEntries.size(); ++I) { in collectBBAddrMapLabels()
1469 const BBAddrMap::BBEntry &BBEntry = BBRange.BBEntries[I]; in collectBBAddrMapLabels()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h172 std::optional<std::vector<BBEntry>> BBEntries; member
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp7813 for (const BBAddrMap::BBEntry &BBE : BBR.BBEntries) { in printBBAddrMaps()
7835 for (const PGOAnalysisMap::PGOBBEntry &PBBE : PAM.BBEntries) { in printBBAddrMaps()
7842 printRelativeBlockFreq(SS, PAM.BBEntries.front().BlockFreq, in printBBAddrMaps()