//===- PDBFile.h - Low level interface to a PDB file ------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_DEBUGINFO_PDB_NATIVE_PDBFILE_H #define LLVM_DEBUGINFO_PDB_NATIVE_PDBFILE_H #include "llvm/DebugInfo/MSF/IMSFFile.h" #include "llvm/DebugInfo/MSF/MSFCommon.h" #include "llvm/Support/Allocator.h" #include "llvm/Support/BinaryStreamRef.h" #include "llvm/Support/Endian.h" #include "llvm/Support/Error.h" #include namespace llvm { class BinaryStream; namespace msf { class MappedBlockStream; } namespace pdb { class DbiStream; class GlobalsStream; class InfoStream; class InjectedSourceStream; class PDBStringTable; class PDBFileBuilder; class PublicsStream; class SymbolStream; class TpiStream; class PDBFile : public msf::IMSFFile { friend PDBFileBuilder; public: PDBFile(StringRef Path, std::unique_ptr PdbFileBuffer, BumpPtrAllocator &Allocator); ~PDBFile() override; StringRef getFileDirectory() const; StringRef getFilePath() const; uint32_t getFreeBlockMapBlock() const; uint32_t getUnknown1() const; uint32_t getBlockSize() const override; uint32_t getBlockCount() const override; uint32_t getNumDirectoryBytes() const; uint32_t getBlockMapIndex() const; uint32_t getNumDirectoryBlocks() const; uint64_t getBlockMapOffset() const; uint32_t getNumStreams() const override; uint32_t getMaxStreamSize() const; uint32_t getStreamByteSize(uint32_t StreamIndex) const override; ArrayRef getStreamBlockList(uint32_t StreamIndex) const override; uint64_t getFileSize() const; Expected> getBlockData(uint32_t BlockIndex, uint32_t NumBytes) const override; Error setBlockData(uint32_t BlockIndex, uint32_t Offset, ArrayRef Data) const override; ArrayRef getStreamSizes() const { return ContainerLayout.StreamSizes; } ArrayRef> getStreamMap() const { return ContainerLayout.StreamMap; } const msf::MSFLayout &getMsfLayout() const { return ContainerLayout; } BinaryStreamRef getMsfBuffer() const { return *Buffer; } ArrayRef getDirectoryBlockArray() const; std::unique_ptr createIndexedStream(uint16_t SN) const; Expected> safelyCreateIndexedStream(uint32_t StreamIndex) const; Expected> safelyCreateNamedStream(StringRef Name); msf::MSFStreamLayout getStreamLayout(uint32_t StreamIdx) const; msf::MSFStreamLayout getFpmStreamLayout() const; Error parseFileHeaders(); Error parseStreamData(); Expected getPDBInfoStream(); Expected getPDBDbiStream(); Expected getPDBGlobalsStream(); Expected getPDBTpiStream(); Expected getPDBIpiStream(); Expected getPDBPublicsStream(); Expected getPDBSymbolStream(); Expected getStringTable(); Expected getInjectedSourceStream(); BumpPtrAllocator &getAllocator() { return Allocator; } bool hasPDBDbiStream() const; bool hasPDBGlobalsStream(); bool hasPDBInfoStream() const; bool hasPDBIpiStream() const; bool hasPDBPublicsStream(); bool hasPDBSymbolStream(); bool hasPDBTpiStream() const; bool hasPDBStringTable(); bool hasPDBInjectedSourceStream(); uint32_t getPointerSize(); private: std::string FilePath; BumpPtrAllocator &Allocator; std::unique_ptr Buffer; msf::MSFLayout ContainerLayout; std::unique_ptr Globals; std::unique_ptr Info; std::unique_ptr Dbi; std::unique_ptr Tpi; std::unique_ptr Ipi; std::unique_ptr Publics; std::unique_ptr Symbols; std::unique_ptr DirectoryStream; std::unique_ptr StringTableStream; std::unique_ptr InjectedSources; std::unique_ptr Strings; }; } } #endif