Searched refs:PdbPath (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeSession.cpp | 92 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 D | PDB.cpp | 39 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 D | ObjectFilePDB.cpp | 162 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 D | ObjectFilePDB.h | 31 loadPDBFile(std::string PdbPath, llvm::BumpPtrAllocator &Allocator);
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | NativeSession.h | 45 static Error createFromPdbPath(StringRef PdbPath,
|