Home
last modified time | relevance | path

Searched refs:DebugPath (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp386 SmallString<16> DebugPath = OrigDir; in findDebugBinary() local
388 llvm::sys::path::append(DebugPath, DebuglinkName); in findDebugBinary()
389 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
390 Result = std::string(DebugPath.str()); in findDebugBinary()
394 DebugPath = OrigDir; in findDebugBinary()
395 llvm::sys::path::append(DebugPath, ".debug", DebuglinkName); in findDebugBinary()
396 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
397 Result = std::string(DebugPath.str()); in findDebugBinary()
406 DebugPath = Opts.FallbackDebugPath; in findDebugBinary()
410 DebugPath = "/usr/libdata/debug"; in findDebugBinary()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp229 OwningBinary<Binary> DebugPath = in load() local
231 loadSymbolsFromDWARF(*cast<ObjectFile>(DebugPath.getBinary())); in load()