Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELFObjectFile.cpp789 std::vector<PGOAnalysisMap> *PGOAnalyses) { in readBBAddrMapImpl() argument
793 if (PGOAnalyses) in readBBAddrMapImpl()
794 PGOAnalyses->clear(); in readBBAddrMapImpl()
823 EF.decodeBBAddrMap(*Sec, RelocSec, PGOAnalyses); in readBBAddrMapImpl()
825 if (PGOAnalyses) in readBBAddrMapImpl()
826 PGOAnalyses->clear(); in readBBAddrMapImpl()
833 if (PGOAnalyses) in readBBAddrMapImpl()
834 assert(PGOAnalyses->size() == BBAddrMaps.size() && in readBBAddrMapImpl()
911 std::vector<PGOAnalysisMap> *PGOAnalyses) const { in readBBAddrMap()
913 return readBBAddrMapImpl(Obj->getELFFile(), TextSectionIndex, PGOAnalyses); in readBBAddrMap()
[all …]
H A DELF.cpp677 std::vector<PGOAnalysisMap> *PGOAnalyses) { in decodeBBAddrMapImpl() argument
777 if (PGOAnalyses || FeatEnable.anyEnabled()) { in decodeBBAddrMapImpl()
802 if (PGOAnalyses) in decodeBBAddrMapImpl()
807 if (PGOAnalyses) in decodeBBAddrMapImpl()
811 if (PGOAnalyses) in decodeBBAddrMapImpl()
812 PGOAnalyses->push_back( in decodeBBAddrMapImpl()
827 std::vector<PGOAnalysisMap> *PGOAnalyses) const { in decodeBBAddrMap()
828 size_t OriginalPGOSize = PGOAnalyses ? PGOAnalyses->size() : 0; in decodeBBAddrMap()
829 auto AddrMapsOrErr = decodeBBAddrMapImpl(*this, Sec, RelaSec, PGOAnalyses); in decodeBBAddrMap()
831 if (!AddrMapsOrErr && PGOAnalyses) in decodeBBAddrMap()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1395 if (Section.PGOAnalyses) in writeSectionContent()
1402 const std::vector<ELFYAML::PGOAnalysisMapEntry> *PGOAnalyses = nullptr; in writeSectionContent() local
1403 if (Section.PGOAnalyses) { in writeSectionContent()
1404 if (Section.Entries->size() != Section.PGOAnalyses->size()) in writeSectionContent()
1408 PGOAnalyses = &Section.PGOAnalyses.value(); in writeSectionContent()
1423 if (Section.PGOAnalyses) { in writeSectionContent()
1448 if (!PGOAnalyses) in writeSectionContent()
1450 const ELFYAML::PGOAnalysisMapEntry &PGOEntry = PGOAnalyses->at(Idx); in writeSectionContent()
H A DELFYAML.cpp1393 IO.mapOptional("PGOAnalyses", Section.PGOAnalyses); in sectionMapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h333 std::optional<std::vector<PGOAnalysisMapEntry>> PGOAnalyses; member
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1702 std::vector<PGOAnalysisMap> PGOAnalyses; in disassembleObject() local
1703 auto BBAddrMapsOrErr = Elf->readBBAddrMap(SectionIndex, &PGOAnalyses); in disassembleObject()
1709 zip_equal(*std::move(BBAddrMapsOrErr), std::move(PGOAnalyses))) { in disassembleObject()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h465 std::vector<PGOAnalysisMap> *PGOAnalyses = nullptr) const;
H A DELFObjectFile.h121 std::vector<PGOAnalysisMap> *PGOAnalyses = nullptr) const;