Home
last modified time | relevance | path

Searched refs:PGOBBEntries (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp784 std::vector<PGOAnalysisMap::PGOBBEntry> PGOBBEntries; in decodeBBAddrMapImpl() local
808 PGOBBEntries.push_back({BlockFrequency(BBF), std::move(Successors)}); in decodeBBAddrMapImpl()
813 {FuncEntryCount, std::move(PGOBBEntries), FeatEnable}); in decodeBBAddrMapImpl()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1455 if (!PGOEntry.PGOBBEntries) in writeSectionContent()
1458 const auto &PGOBBEntries = PGOEntry.PGOBBEntries.value(); in writeSectionContent() local
1459 if (!E.BBEntries || E.BBEntries->size() != PGOBBEntries.size()) { in writeSectionContent()
1467 for (const auto &PGOBBE : PGOBBEntries) { in writeSectionContent()
H A DELFYAML.cpp1833 IO.mapOptional("PGOBBEntries", E.PGOBBEntries); in mapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h183 std::optional<std::vector<PGOBBEntry>> PGOBBEntries; member