Home
last modified time | relevance | path

Searched refs:PGOAnalyses (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELFObjectFile.cpp926 std::vector<PGOAnalysisMap> *PGOAnalyses) { in readBBAddrMapImpl() argument
930 if (PGOAnalyses) in readBBAddrMapImpl()
931 PGOAnalyses->clear(); in readBBAddrMapImpl()
962 EF.decodeBBAddrMap(*Sec, RelocSec, PGOAnalyses); in readBBAddrMapImpl()
964 if (PGOAnalyses) in readBBAddrMapImpl()
965 PGOAnalyses->clear(); in readBBAddrMapImpl()
972 if (PGOAnalyses) in readBBAddrMapImpl()
973 assert(PGOAnalyses->size() == BBAddrMaps.size() && in readBBAddrMapImpl()
1050 std::vector<PGOAnalysisMap> *PGOAnalyses) const { in readBBAddrMap()
1052 return readBBAddrMapImpl(Obj->getELFFile(), TextSectionIndex, PGOAnalyses); in readBBAddrMap()
[all …]
H A DELF.cpp739 std::vector<PGOAnalysisMap> *PGOAnalyses) { in decodeBBAddrMapImpl() argument
924 if (PGOAnalyses || FeatEnable.hasPGOAnalysis()) { in decodeBBAddrMapImpl()
949 if (PGOAnalyses) in decodeBBAddrMapImpl()
954 if (PGOAnalyses) in decodeBBAddrMapImpl()
958 if (PGOAnalyses) in decodeBBAddrMapImpl()
959 PGOAnalyses->push_back( in decodeBBAddrMapImpl()
974 std::vector<PGOAnalysisMap> *PGOAnalyses) const { in decodeBBAddrMap()
975 size_t OriginalPGOSize = PGOAnalyses ? PGOAnalyses->size() : 0; in decodeBBAddrMap()
976 auto AddrMapsOrErr = decodeBBAddrMapImpl(*this, Sec, RelaSec, PGOAnalyses); in decodeBBAddrMap()
978 if (!AddrMapsOrErr && PGOAnalyses) in decodeBBAddrMap()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1436 if (Section.PGOAnalyses) in writeSectionContent()
1443 const std::vector<ELFYAML::PGOAnalysisMapEntry> *PGOAnalyses = nullptr; in writeSectionContent() local
1444 if (Section.PGOAnalyses) { in writeSectionContent()
1445 if (Section.Entries->size() != Section.PGOAnalyses->size()) in writeSectionContent()
1449 PGOAnalyses = &Section.PGOAnalyses.value(); in writeSectionContent()
1518 if (!PGOAnalyses) in writeSectionContent()
1520 const ELFYAML::PGOAnalysisMapEntry &PGOEntry = PGOAnalyses->at(Idx); in writeSectionContent()
H A DELFYAML.cpp1443 IO.mapOptional("PGOAnalyses", Section.PGOAnalyses); in sectionMapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h360 std::optional<std::vector<PGOAnalysisMapEntry>> PGOAnalyses; member
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1916 std::vector<PGOAnalysisMap> PGOAnalyses; in disassembleObject() local
1917 auto BBAddrMapsOrErr = Elf->readBBAddrMap(SectionIndex, &PGOAnalyses); in disassembleObject()
1923 zip_equal(*std::move(BBAddrMapsOrErr), std::move(PGOAnalyses))) { in disassembleObject()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h519 std::vector<PGOAnalysisMap> *PGOAnalyses = nullptr) const;
H A DELFObjectFile.h128 std::vector<PGOAnalysisMap> *PGOAnalyses = nullptr) const;
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp7899 std::vector<PGOAnalysisMap> PGOAnalyses; in printBBAddrMaps() local
7901 this->Obj.decodeBBAddrMap(*Sec, RelocSec, &PGOAnalyses); in printBBAddrMaps()
7907 for (const auto &[AM, PAM] : zip_equal(*BBAddrMapOrErr, PGOAnalyses)) { in printBBAddrMaps()