Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp422 SmallString<16> DebugPath = OrigDir; in findDebugBinary() local
425 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
426 Result = std::string(DebugPath.str()); in findDebugBinary()
430 DebugPath = OrigDir; in findDebugBinary()
432 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
433 Result = std::string(DebugPath.str()); in findDebugBinary()
442 DebugPath = Opts.FallbackDebugPath; in findDebugBinary()
446 DebugPath = "/usr/libdata/debug"; in findDebugBinary()
449 DebugPath = "/usr/lib/debug"; in findDebugBinary()
454 if (checkFileCRC(DebugPath, CRCHash)) { in findDebugBinary()
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp216 OwningBinary<Binary> DebugPath = in load() local
218 loadSymbolsFromDWARF(*cast<ObjectFile>(DebugPath.getBinary())); in load()