reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/DebugInfo/PDB/Native/DbiStream.h
   77   uint32_t getDebugStreamIndex(DbgHeaderType Type) const;
  101   createIndexedStreamForHeaderType(PDBFile *Pdb, DbgHeaderType Type) const;
include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h
   63   Error addDbgStream(pdb::DbgHeaderType Type, ArrayRef<uint8_t> Data);
  137   std::array<Optional<DebugStream>, (int)DbgHeaderType::Max> DbgStreams;
lib/DebugInfo/PDB/Native/DbiStream.cpp
  260       createIndexedStreamForHeaderType(Pdb, DbgHeaderType::SectionHdr);
  286       createIndexedStreamForHeaderType(Pdb, DbgHeaderType::FPO);
  310       createIndexedStreamForHeaderType(Pdb, DbgHeaderType::NewFPO);
  327                                             DbgHeaderType Type) const {
  378 uint32_t DbiStream::getDebugStreamIndex(DbgHeaderType Type) const {
lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
   88 Error DbiStreamBuilder::addDbgStream(pdb::DbgHeaderType Type,
  293     DbgStreams[(int)DbgHeaderType::NewFPO].emplace();
  294     DbgStreams[(int)DbgHeaderType::NewFPO]->Size =
  296     DbgStreams[(int)DbgHeaderType::NewFPO]->WriteFn =
  303     DbgStreams[(int)DbgHeaderType::FPO].emplace();
  304     DbgStreams[(int)DbgHeaderType::FPO]->Size =
  306     DbgStreams[(int)DbgHeaderType::FPO]->WriteFn =
tools/lld/COFF/PDB.cpp
 1683       dbiBuilder.addDbgStream(pdb::DbgHeaderType::SectionHdr, sectionTable));
tools/llvm-pdbutil/DumpOutputStyle.cpp
  501 loadSectionHeaders(PDBFile &File, DbgHeaderType Type) {
  533   auto ExpectedHeaders = loadSectionHeaders(File, DbgHeaderType::SectionHdr);
 1862   dumpSectionHeaders("Section Headers", DbgHeaderType::SectionHdr);
 1863   dumpSectionHeaders("Original Section Headers", DbgHeaderType::SectionHdrOrig);
 1867 void DumpOutputStyle::dumpSectionHeaders(StringRef Label, DbgHeaderType Type) {
tools/llvm-pdbutil/DumpOutputStyle.h
  112   void dumpSectionHeaders(StringRef Label, DbgHeaderType Type);
tools/llvm-pdbutil/StreamUtil.cpp
  132              StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::Exception))
  135     else if (Dbi && StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::Fixup))
  138     else if (Dbi && StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::FPO))
  141              StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::NewFPO))
  145              StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::OmapFromSrc))
  149              StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::OmapToSrc))
  152     else if (Dbi && StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::Pdata))
  155              StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::SectionHdr))
  160                  Dbi->getDebugStreamIndex(DbgHeaderType::SectionHdrOrig))
  164              StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::TokenRidMap))
  167     else if (Dbi && StreamIdx == Dbi->getDebugStreamIndex(DbgHeaderType::Xdata))