Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeSession.cpp84 loadPdbFile(StringRef PdbPath, std::unique_ptr<BumpPtrAllocator> &Allocator) { in loadPdbFile() argument
86 MemoryBuffer::getFile(PdbPath, /*IsText=*/false, in loadPdbFile()
92 PdbPath = Buffer->getBufferIdentifier(); in loadPdbFile()
94 auto EC = identify_magic(PdbPath, Magic); in loadPdbFile()
101 auto File = std::make_unique<PDBFile>(PdbPath, std::move(Stream), *Allocator); in loadPdbFile()
111 Error NativeSession::createFromPdbPath(StringRef PdbPath, in createFromPdbPath() argument
114 auto PdbFile = loadPdbFile(PdbPath, Allocator); in createFromPdbPath()
134 StringRef PdbPath; in getPdbPathFromExe() local
136 if (Error E = ObjFile->getDebugPDBInfo(PdbInfo, PdbPath)) in getPdbPathFromExe()
139 return std::string(PdbPath); in getPdbPathFromExe()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
H A DPDB.cpp40 Expected<std::string> PdbPath = NativeSession::searchForPdb({Path}); in loadDataForEXE() local
41 if (!PdbPath) in loadDataForEXE()
42 return PdbPath.takeError(); in loadDataForEXE()
43 return NativeSession::createFromPdbPath(PdbPath.get(), Session); in loadDataForEXE()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeSession.h41 static Error createFromPdbPath(StringRef PdbPath,