Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DStreamUtil.cpp133 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::Exception)) in discoverStreamPurposes()
136 else if (Dbi && StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::Fixup)) in discoverStreamPurposes()
139 else if (Dbi && StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::FPO)) in discoverStreamPurposes()
142 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::NewFPO)) in discoverStreamPurposes()
146 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::OmapFromSrc)) in discoverStreamPurposes()
150 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::OmapToSrc)) in discoverStreamPurposes()
153 else if (Dbi && StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::Pdata)) in discoverStreamPurposes()
156 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::SectionHdr)) in discoverStreamPurposes()
161 Dbi->getDebugStreamIndex(DbgHeaderType::SectionHdrOrig)) in discoverStreamPurposes()
165 StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::TokenRidMap)) in discoverStreamPurposes()
[all …]
H A DDumpOutputStyle.h105 void dumpSectionHeaders(StringRef Label, DbgHeaderType Type);
H A DDumpOutputStyle.cpp467 loadSectionHeaders(PDBFile &File, DbgHeaderType Type) { in loadSectionHeaders()
499 auto ExpectedHeaders = loadSectionHeaders(File, DbgHeaderType::SectionHdr); in getSectionNames()
1014 uint32_t Index = Dbi.getDebugStreamIndex(DbgHeaderType::FPO); in dumpOldFpo()
1046 uint32_t Index = Dbi.getDebugStreamIndex(DbgHeaderType::NewFPO); in dumpNewFpo()
1749 dumpSectionHeaders("Section Headers", DbgHeaderType::SectionHdr); in dumpSectionHeaders()
1750 dumpSectionHeaders("Original Section Headers", DbgHeaderType::SectionHdrOrig); in dumpSectionHeaders()
1754 void DumpOutputStyle::dumpSectionHeaders(StringRef Label, DbgHeaderType Type) { in dumpSectionHeaders()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.cpp89 Error DbiStreamBuilder::addDbgStream(pdb::DbgHeaderType Type, in addDbgStream()
91 assert(Type != DbgHeaderType::NewFPO && in addDbgStream()
294 DbgStreams[(int)DbgHeaderType::NewFPO].emplace(); in finalizeMsfLayout()
295 DbgStreams[(int)DbgHeaderType::NewFPO]->Size = in finalizeMsfLayout()
297 DbgStreams[(int)DbgHeaderType::NewFPO]->WriteFn = in finalizeMsfLayout()
304 DbgStreams[(int)DbgHeaderType::FPO].emplace(); in finalizeMsfLayout()
305 DbgStreams[(int)DbgHeaderType::FPO]->Size = in finalizeMsfLayout()
307 DbgStreams[(int)DbgHeaderType::FPO]->WriteFn = in finalizeMsfLayout()
H A DDbiStream.cpp256 uint32_t StreamNum = getDebugStreamIndex(DbgHeaderType::SectionHdr); in initializeSectionHeadersData()
289 uint32_t StreamNum = getDebugStreamIndex(DbgHeaderType::NewFPO); in initializeFpoRecords()
350 uint32_t DbiStream::getDebugStreamIndex(DbgHeaderType Type) const { in getDebugStreamIndex()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.h64 Error addDbgStream(pdb::DbgHeaderType Type, ArrayRef<uint8_t> Data);
138 std::array<Optional<DebugStream>, (int)DbgHeaderType::Max> DbgStreams;
H A DRawConstants.h87 enum class DbgHeaderType : uint16_t { enum
H A DDbiStream.h77 uint32_t getDebugStreamIndex(DbgHeaderType Type) const;
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DPDB.cpp1617 DbiBuilder.addDbgStream(pdb::DbgHeaderType::SectionHdr, SectionTable)); in addSections()