10 #ifndef LLVM_DEBUGINFO_PDB_DIA_DIASESSION_H 11 #define LLVM_DEBUGINFO_PDB_DIA_DIASESSION_H 17 #include <system_error> 25 explicit DIASession(CComPtr<IDiaSession> DiaSession);
28 std::unique_ptr<IPDBSession> &Session);
30 std::unique_ptr<IPDBSession> &Session);
42 std::unique_ptr<PDBSymbol>
46 std::unique_ptr<PDBSymbol>
50 std::unique_ptr<IPDBEnumLineNumbers>
53 std::unique_ptr<IPDBEnumLineNumbers>
55 std::unique_ptr<IPDBEnumLineNumbers>
57 std::unique_ptr<IPDBEnumLineNumbers>
61 std::unique_ptr<IPDBEnumSourceFiles>
64 std::unique_ptr<IPDBSourceFile>
68 std::unique_ptr<IPDBEnumChildren<PDBSymbolCompiland>>
71 std::unique_ptr<PDBSymbolCompiland>
77 std::unique_ptr<IPDBSourceFile>
82 std::unique_ptr<IPDBEnumTables>
getEnumTables()
const override;
88 std::unique_ptr<IPDBEnumFrameData>
getFrameData()
const override;
90 CComPtr<IDiaSession> Session;
std::unique_ptr< IPDBEnumLineNumbers > findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const override
IPDBSession defines an interface used to provide a context for querying debug information from a debu...
This class represents lattice values for constants.
std::unique_ptr< PDBSymbolExe > getGlobalScope() override
PDB_NameSearchFlags
Defines flags used for enumerating child symbols.
std::unique_ptr< IPDBEnumInjectedSources > getInjectedSources() const override
std::unique_ptr< PDBSymbol > findSymbolByAddress(uint64_t Address, PDB_SymType Type) const override
std::unique_ptr< IPDBEnumChildren< PDBSymbolCompiland > > findCompilandsForSourceFile(llvm::StringRef Pattern, PDB_NameSearchFlags Flags) const override
IPDBSourceFile defines an interface used to represent source files whose information are stored in th...
std::unique_ptr< IPDBSourceFile > getSourceFileById(uint32_t FileId) const override
bool setLoadAddress(uint64_t Address) override
std::unique_ptr< PDBSymbol > getSymbolById(SymIndexId SymbolId) const override
std::unique_ptr< IPDBEnumSourceFiles > findSourceFiles(const PDBSymbolCompiland *Compiland, llvm::StringRef Pattern, PDB_NameSearchFlags Flags) const override
static Error createFromPdb(StringRef Path, std::unique_ptr< IPDBSession > &Session)
std::unique_ptr< IPDBEnumLineNumbers > findLineNumbersBySectOffset(uint32_t Section, uint32_t Offset, uint32_t Length) const override
std::unique_ptr< IPDBEnumFrameData > getFrameData() const override
std::unique_ptr< IPDBSourceFile > findOneSourceFile(const PDBSymbolCompiland *Compiland, llvm::StringRef Pattern, PDB_NameSearchFlags Flags) const override
std::unique_ptr< IPDBEnumLineNumbers > findLineNumbersByAddress(uint64_t Address, uint32_t Length) const override
PDB_SymType
These values correspond to the SymTagEnum enumeration, and are documented here: https://msdn.microsoft.com/en-us/library/bkedss5f.aspx.
std::unique_ptr< PDBSymbol > findSymbolByRVA(uint32_t RVA, PDB_SymType Type) const override
std::unique_ptr< IPDBEnumSourceFiles > getSourceFilesForCompiland(const PDBSymbolCompiland &Compiland) const override
The instances of the Type class are immutable: once they are created, they are never changed...
std::unique_ptr< IPDBEnumSourceFiles > getAllSourceFiles() const override
DIASession(CComPtr< IDiaSession > DiaSession)
std::unique_ptr< IPDBEnumLineNumbers > findLineNumbers(const PDBSymbolCompiland &Compiland, const IPDBSourceFile &File) const override
bool addressForRVA(uint32_t RVA, uint32_t &Section, uint32_t &Offset) const override
std::unique_ptr< IPDBEnumDataStreams > getDebugStreams() const override
std::unique_ptr< PDBSymbolCompiland > findOneCompilandForSourceFile(llvm::StringRef Pattern, PDB_NameSearchFlags Flags) const override
std::unique_ptr< PDBSymbol > findSymbolBySectOffset(uint32_t Section, uint32_t Offset, PDB_SymType Type) const override
std::unique_ptr< IPDBEnumSectionContribs > getSectionContribs() const override
std::unique_ptr< IPDBEnumTables > getEnumTables() const override
static Error createFromExe(StringRef Path, std::unique_ptr< IPDBSession > &Session)
Lightweight error class with error context and mandatory checking.
bool addressForVA(uint64_t VA, uint32_t &Section, uint32_t &Offset) const override
StringRef - Represent a constant reference to a string, i.e.
uint64_t getLoadAddress() const override