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.h948 std::vector<BBEntry> BBEntries; // Basic block entries for this range.
953 std::equal(BBEntries.begin(), BBEntries.end(),
954 Other.BBEntries.begin());
973 NumBBEntries += BBR.BBEntries.size();
989 return BBRanges.front().BBEntries;
1030 std::vector<PGOBBEntry> BBEntries; // Extended basic block entries
1036 return std::tie(FuncEntryCount, BBEntries, FeatEnable) ==
1037 std::tie(Other.FuncEntryCount, Other.BBEntries, Other.FeatEnable);
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp883 std::vector<BBAddrMap::BBEntry> BBEntries; in decodeBBAddrMapImpl() local
914 BBEntries.push_back({ID, Offset + PrevBBEndOffset, Size, in decodeBBAddrMapImpl()
918 TotalNumBlocks += BBEntries.size(); in decodeBBAddrMapImpl()
920 BBRangeEntries.push_back({RangeBaseAddress, std::move(BBEntries)}); in decodeBBAddrMapImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h173 std::optional<std::vector<BBEntry>> BBEntries; member
190 if (!BBR.BBEntries) in hasAnyCallsiteOffsets()
192 for (const ELFYAML::BBAddrMapEntry::BBEntry &BBE : *BBR.BBEntries) in hasAnyCallsiteOffsets()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1495 BBR.NumBlocks.value_or(BBR.BBEntries ? BBR.BBEntries->size() : 0); in writeSectionContent()
1498 if (!BBR.BBEntries || FeatureOrErr->OmitBBEntries) in writeSectionContent()
1500 for (const ELFYAML::BBAddrMapEntry::BBEntry &BBE : *BBR.BBEntries) { in writeSectionContent()
H A DELFYAML.cpp1875 IO.mapOptional("BBEntries", E.BBEntries); in mapping()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp209 assert(PGOBBEntryIndex < PGOMap.BBEntries.size() && in constructPGOLabelString()
212 PGOMap.BBEntries[PGOBBEntryIndex]; in constructPGOLabelString()
217 printRelativeBlockFreq(PGOSS, PGOMap.BBEntries.front().BlockFreq, in constructPGOLabelString()
1537 FunctionMap->getAddrMap().BBRanges[I].BBEntries.size(); in collectBBAddrMapLabels()
1539 for (size_t I = 0; I < BBRange.BBEntries.size(); ++I) { in collectBBAddrMapLabels()
1540 const BBAddrMap::BBEntry &BBEntry = BBRange.BBEntries[I]; in collectBBAddrMapLabels()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp7928 for (const BBAddrMap::BBEntry &BBE : BBR.BBEntries) { in printBBAddrMaps()
7952 for (const PGOAnalysisMap::PGOBBEntry &PBBE : PAM.BBEntries) { in printBBAddrMaps()
7959 printRelativeBlockFreq(SS, PAM.BBEntries.front().BlockFreq, in printBBAddrMaps()