Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DStreamUtil.cpp132 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::Exception)) in discoverStreamPurposes()
135 else if (Dbi && StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::Fixup)) in discoverStreamPurposes()
138 else if (Dbi && StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::FPO)) in discoverStreamPurposes()
141 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::NewFPO)) in discoverStreamPurposes()
145 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::OmapFromSrc)) in discoverStreamPurposes()
149 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::OmapToSrc)) in discoverStreamPurposes()
152 else if (Dbi && StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::Pdata)) in discoverStreamPurposes()
155 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::SectionHdr)) in discoverStreamPurposes()
160 Dbi->getDebugStreamIndex(DbgHeaderType::SectionHdrOrig)) in discoverStreamPurposes()
164 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::TokenRidMap)) in discoverStreamPurposes()
[all …]
H A DDumpOutputStyle.h106 void dumpSectionHeaders(StringRef Label, DbgHeaderType Type);
H A DDumpOutputStyle.cpp384 loadSectionHeaders(PDBFile &File, DbgHeaderType Type) { in loadSectionHeaders()
416 auto ExpectedHeaders = loadSectionHeaders(File, DbgHeaderType::SectionHdr); in getSectionNames()
1760 dumpSectionHeaders("Section Headers", DbgHeaderType::SectionHdr); in dumpSectionHeaders()
1761 dumpSectionHeaders("Original Section Headers", DbgHeaderType::SectionHdrOrig); in dumpSectionHeaders()
1765 void DumpOutputStyle::dumpSectionHeaders(StringRef Label, DbgHeaderType Type) { in dumpSectionHeaders()
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.cpp84 Error DbiStreamBuilder::addDbgStream(pdb::DbgHeaderType Type, in addDbgStream()
86 assert(Type != DbgHeaderType::NewFPO && in addDbgStream()
289 DbgStreams[(int)DbgHeaderType::NewFPO].emplace(); in finalizeMsfLayout()
290 DbgStreams[(int)DbgHeaderType::NewFPO]->Size = in finalizeMsfLayout()
292 DbgStreams[(int)DbgHeaderType::NewFPO]->WriteFn = in finalizeMsfLayout()
299 DbgStreams[(int)DbgHeaderType::FPO].emplace(); in finalizeMsfLayout()
300 DbgStreams[(int)DbgHeaderType::FPO]->Size = in finalizeMsfLayout()
302 DbgStreams[(int)DbgHeaderType::FPO]->WriteFn = in finalizeMsfLayout()
H A DDbiStream.cpp258 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::SectionHdr); in initializeSectionHeadersData()
284 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::FPO); in initializeOldFpoRecords()
308 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::NewFPO); in initializeNewFpoRecords()
325 DbgHeaderType Type) const { in createIndexedStreamForHeaderType()
376 uint32_t DbiStream::getDebugStreamIndex(DbgHeaderType Type) const { in getDebugStreamIndex()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStream.h79 uint32_t getDebugStreamIndex(DbgHeaderType Type) const;
103 createIndexedStreamForHeaderType(PDBFile *Pdb, DbgHeaderType Type) const;
H A DDbiStreamBuilder.h60 Error addDbgStream(pdb::DbgHeaderType Type, ArrayRef<uint8_t> Data);
133 std::array<Optional<DebugStream>, (int)DbgHeaderType::Max> DbgStreams;
H A DRawConstants.h86 enum class DbgHeaderType : uint16_t { enum
/llvm-project-15.0.7/lld/COFF/
H A DPDB.cpp1664 dbiBuilder.addDbgStream(pdb::DbgHeaderType::SectionHdr, sectionTable)); in addSections()