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.h861 BBAddrMap(uint64_t Addr, std::vector<BBEntry> BBEntries)
862 : Addr(Addr), BBEntries(std::move(BBEntries)) {}
868 const std::vector<BBEntry> &getBBEntries() const { return BBEntries; }
872 return Addr == Other.Addr && std::equal(BBEntries.begin(), BBEntries.end(),
873 Other.BBEntries.begin());
877 std::vector<BBEntry> BBEntries; // Basic block entries for this function.
945 std::vector<PGOBBEntry> BBEntries; // Extended basic block entries
951 return std::tie(FuncEntryCount, BBEntries, FeatEnable) ==
952 std::tie(Other.FuncEntryCount, Other.BBEntries, Other.FeatEnable);
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp751 std::vector<BBAddrMap::BBEntry> BBEntries; in decodeBBAddrMapImpl() local
773 BBEntries.push_back({ID, Offset, Size, *MetadataOrErr}); in decodeBBAddrMapImpl()
775 FunctionEntries.emplace_back(Address, std::move(BBEntries)); in decodeBBAddrMapImpl()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1435 E.NumBlocks.value_or(E.BBEntries ? E.BBEntries->size() : 0); in writeSectionContent()
1438 if (E.BBEntries) { in writeSectionContent()
1439 for (const ELFYAML::BBAddrMapEntry::BBEntry &BBE : *E.BBEntries) { in writeSectionContent()
1459 if (!E.BBEntries || E.BBEntries->size() != PGOBBEntries.size()) { in writeSectionContent()
H A DELFYAML.cpp1817 IO.mapOptional("BBEntries", E.BBEntries); in mapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h170 std::optional<std::vector<BBEntry>> BBEntries; member
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1285 assert(BBEntryIndex < PGOMap.BBEntries.size() && in constructPGOLabelString()
1288 PGOMap.BBEntries[BBEntryIndex]; in constructPGOLabelString()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp7593 for (const BBAddrMap::BBEntry &BBE : AM.BBEntries) { in printBBAddrMaps()