Home
last modified time | relevance | path

Searched refs:PdbPath (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DNativeSession.cpp92 loadPdbFile(StringRef PdbPath, std::unique_ptr<BumpPtrAllocator> &Allocator) { in loadPdbFile() argument
94 MemoryBuffer::getFile(PdbPath, /*IsText=*/false, in loadPdbFile()
100 PdbPath = Buffer->getBufferIdentifier(); in loadPdbFile()
102 auto EC = identify_magic(PdbPath, Magic); in loadPdbFile()
109 auto File = std::make_unique<PDBFile>(PdbPath, std::move(Stream), *Allocator); in loadPdbFile()
119 Error NativeSession::createFromPdbPath(StringRef PdbPath, in createFromPdbPath() argument
122 auto PdbFile = loadPdbFile(PdbPath, Allocator); in createFromPdbPath()
142 StringRef PdbPath; in getPdbPathFromExe() local
144 if (Error E = ObjFile->getDebugPDBInfo(PdbInfo, PdbPath)) in getPdbPathFromExe()
147 return std::string(PdbPath); in getPdbPathFromExe()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/
H A DPDB.cpp39 Expected<std::string> PdbPath = NativeSession::searchForPdb({Path}); in loadDataForEXE() local
40 if (!PdbPath) in loadDataForEXE()
41 return PdbPath.takeError(); in loadDataForEXE()
42 return NativeSession::createFromPdbPath(PdbPath.get(), Session); in loadDataForEXE()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp162 ObjectFilePDB::loadPDBFile(std::string PdbPath, in loadPDBFile() argument
165 auto ec = llvm::identify_magic(PdbPath, magic); in loadPDBFile()
169 llvm::MemoryBuffer::getFile(PdbPath, /*IsText=*/false, in loadPDBFile()
H A DObjectFilePDB.h31 loadPDBFile(std::string PdbPath, llvm::BumpPtrAllocator &Allocator);
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeSession.h45 static Error createFromPdbPath(StringRef PdbPath,