Lines Matching refs:NativeSession
66 NativeSession::NativeSession(std::unique_ptr<PDBFile> PdbFile, in NativeSession() function in NativeSession
71 NativeSession::~NativeSession() = default;
73 Error NativeSession::createFromPdb(std::unique_ptr<MemoryBuffer> Buffer, in createFromPdb()
87 std::make_unique<NativeSession>(std::move(File), std::move(Allocator)); in createFromPdb()
120 Error NativeSession::createFromPdbPath(StringRef PdbPath, in createFromPdbPath()
127 Session = std::make_unique<NativeSession>(std::move(PdbFile.get()), in createFromPdbPath()
151 Error NativeSession::createFromExe(StringRef ExePath, in createFromExe()
167 Session = std::make_unique<NativeSession>(std::move(File.get()), in createFromExe()
174 NativeSession::searchForPdb(const PdbSearchOptions &Opts) { in searchForPdb()
205 uint64_t NativeSession::getLoadAddress() const { return LoadAddress; } in getLoadAddress()
207 bool NativeSession::setLoadAddress(uint64_t Address) { in setLoadAddress()
212 std::unique_ptr<PDBSymbolExe> NativeSession::getGlobalScope() { in getGlobalScope()
217 NativeSession::getSymbolById(SymIndexId SymbolId) const { in getSymbolById()
221 bool NativeSession::addressForVA(uint64_t VA, uint32_t &Section, in addressForVA()
227 bool NativeSession::addressForRVA(uint32_t RVA, uint32_t &Section, in addressForRVA()
250 NativeSession::findSymbolByAddress(uint64_t Address, PDB_SymType Type) { in findSymbolByAddress()
257 std::unique_ptr<PDBSymbol> NativeSession::findSymbolByRVA(uint32_t RVA, in findSymbolByRVA()
266 NativeSession::findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, in findSymbolBySectOffset()
275 NativeSession::findLineNumbers(const PDBSymbolCompiland &Compiland, in findLineNumbers()
281 NativeSession::findLineNumbersByAddress(uint64_t Address, in findLineNumbersByAddress()
287 NativeSession::findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const { in findLineNumbersByRVA()
292 NativeSession::findLineNumbersBySectOffset(uint32_t Section, uint32_t Offset, in findLineNumbersBySectOffset()
299 NativeSession::findSourceFiles(const PDBSymbolCompiland *Compiland, in findSourceFiles()
306 NativeSession::findOneSourceFile(const PDBSymbolCompiland *Compiland, in findOneSourceFile()
313 NativeSession::findCompilandsForSourceFile(StringRef Pattern, in findCompilandsForSourceFile()
319 NativeSession::findOneCompilandForSourceFile(StringRef Pattern, in findOneCompilandForSourceFile()
324 std::unique_ptr<IPDBEnumSourceFiles> NativeSession::getAllSourceFiles() const { in getAllSourceFiles()
328 std::unique_ptr<IPDBEnumSourceFiles> NativeSession::getSourceFilesForCompiland( in getSourceFilesForCompiland()
334 NativeSession::getSourceFileById(uint32_t FileId) const { in getSourceFileById()
338 std::unique_ptr<IPDBEnumDataStreams> NativeSession::getDebugStreams() const { in getDebugStreams()
342 std::unique_ptr<IPDBEnumTables> NativeSession::getEnumTables() const { in getEnumTables()
347 NativeSession::getInjectedSources() const { in getInjectedSources()
362 NativeSession::getSectionContribs() const { in getSectionContribs()
367 NativeSession::getFrameData() const { in getFrameData()
371 void NativeSession::initializeExeSymbol() { in initializeExeSymbol()
376 NativeExeSymbol &NativeSession::getNativeGlobalScope() const { in getNativeGlobalScope()
377 const_cast<NativeSession &>(*this).initializeExeSymbol(); in getNativeGlobalScope()
382 uint32_t NativeSession::getRVAFromSectOffset(uint32_t Section, in getRVAFromSectOffset()
398 uint64_t NativeSession::getVAFromSectOffset(uint32_t Section, in getVAFromSectOffset()
403 bool NativeSession::moduleIndexForVA(uint64_t VA, uint16_t &ModuleIndex) const { in moduleIndexForVA()
412 bool NativeSession::moduleIndexForSectOffset(uint32_t Sect, uint32_t Offset, in moduleIndexForSectOffset()
422 void NativeSession::parseSectionContribs() { in parseSectionContribs()
428 NativeSession &Session; in parseSectionContribs()
432 Visitor(NativeSession &Session, IMap &AddrMap) in parseSectionContribs()
454 NativeSession::getModuleDebugStream(uint32_t Index) const { in getModuleDebugStream()