//===- DbiStream.h - PDB Dbi Stream (Stream 3) Access -----------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLVM_DEBUGINFO_PDB_RAW_PDBDBISTREAM_H #define LLVM_DEBUGINFO_PDB_RAW_PDBDBISTREAM_H #include "llvm/DebugInfo/CodeView/ModuleDebugFragment.h" #include "llvm/DebugInfo/MSF/MappedBlockStream.h" #include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h" #include "llvm/DebugInfo/PDB/Native/DbiModuleList.h" #include "llvm/DebugInfo/PDB/Native/PDBStringTable.h" #include "llvm/DebugInfo/PDB/Native/RawConstants.h" #include "llvm/DebugInfo/PDB/Native/RawTypes.h" #include "llvm/DebugInfo/PDB/PDBTypes.h" #include "llvm/Support/BinaryStreamArray.h" #include "llvm/Support/BinaryStreamArray.h" #include "llvm/Support/BinaryStreamRef.h" #include "llvm/Support/BinaryStreamRef.h" #include "llvm/Support/Endian.h" #include "llvm/Support/Error.h" namespace llvm { namespace object { struct FpoData; struct coff_section; } namespace pdb { class DbiStreamBuilder; class PDBFile; class ISectionContribVisitor; class DbiStream { friend class DbiStreamBuilder; public: DbiStream(PDBFile &File, std::unique_ptr Stream); ~DbiStream(); Error reload(); PdbRaw_DbiVer getDbiVersion() const; uint32_t getAge() const; uint16_t getPublicSymbolStreamIndex() const; uint16_t getGlobalSymbolStreamIndex() const; uint16_t getFlags() const; bool isIncrementallyLinked() const; bool hasCTypes() const; bool isStripped() const; uint16_t getBuildNumber() const; uint16_t getBuildMajorVersion() const; uint16_t getBuildMinorVersion() const; uint16_t getPdbDllRbld() const; uint32_t getPdbDllVersion() const; uint32_t getSymRecordStreamIndex() const; PDB_Machine getMachineType() const; /// If the given stream type is present, returns its stream index. If it is /// not present, returns InvalidStreamIndex. uint32_t getDebugStreamIndex(DbgHeaderType Type) const; const DbiModuleList &modules() const; FixedStreamArray getSectionHeaders(); FixedStreamArray getFpoRecords(); FixedStreamArray getSectionMap() const; void visitSectionContributions(ISectionContribVisitor &Visitor) const; private: Error initializeSectionContributionData(); Error initializeSectionHeadersData(); Error initializeSectionMapData(); Error initializeFpoRecords(); PDBFile &Pdb; std::unique_ptr Stream; PDBStringTable ECNames; BinaryStreamRef SecContrSubstream; BinaryStreamRef SecMapSubstream; BinaryStreamRef TypeServerMapSubstream; BinaryStreamRef ECSubstream; DbiModuleList Modules; FixedStreamArray DbgStreams; PdbRaw_DbiSecContribVer SectionContribVersion; FixedStreamArray SectionContribs; FixedStreamArray SectionContribs2; FixedStreamArray SectionMap; std::unique_ptr SectionHeaderStream; FixedStreamArray SectionHeaders; std::unique_ptr FpoStream; FixedStreamArray FpoRecords; const DbiStreamHeader *Header; }; } } #endif