[PATCH] D125864: [Debuginfod] Add --debug-file-directory to llvm-debuginfod-find.
Daniel Thornburgh via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 18 02:33:37 PDT 2022
mysterymath created this revision.
mysterymath added reviewers: phosek, labath, noajshu.
Herald added a project: All.
mysterymath requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
This allows llvm-debuginfod-find to locate binaries in local build ID
directories configured via --debug-file-directory, the same flag used
for this purpose by llvm-symbolizer. This provides a consistent lookup
semantics between the two tools when configured the same way, in
particular when debug binaries may be located either locally or
remotely.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D125864
Files:
llvm/test/tools/llvm-debuginfod-find/local.test
llvm/tools/llvm-debuginfod-find/llvm-debuginfod-find.cpp
Index: llvm/tools/llvm-debuginfod-find/llvm-debuginfod-find.cpp
===================================================================
--- llvm/tools/llvm-debuginfod-find/llvm-debuginfod-find.cpp
+++ llvm/tools/llvm-debuginfod-find/llvm-debuginfod-find.cpp
@@ -15,6 +15,7 @@
///
//===----------------------------------------------------------------------===//
+#include "llvm/DebugInfo/Symbolize/DIFetcher.h"
#include "llvm/Debuginfod/Debuginfod.h"
#include "llvm/Debuginfod/HTTPClient.h"
#include "llvm/Support/CommandLine.h"
@@ -53,6 +54,11 @@
"path to the cached artifact on disk."),
cl::cat(DebuginfodFindCategory));
+static cl::list<std::string> DebugFileDirectory(
+ "debug-file-directory",
+ cl::desc("Path to directory where to look for debug files."),
+ cl::cat(DebuginfodFindCategory));
+
[[noreturn]] static void helpExit() {
errs() << "Must specify exactly one of --executable, "
"--source=/path/to/file, or --debuginfo.";
@@ -61,6 +67,8 @@
ExitOnError ExitOnErr;
+static std::string fetchDebugInfo(ArrayRef<uint8_t> BuildID);
+
int main(int argc, char **argv) {
InitLLVM X(argc, argv);
HTTPClient::initialize();
@@ -92,7 +100,7 @@
else if (FetchExecutable)
Path = ExitOnErr(getCachedOrDownloadExecutable(ID));
else if (FetchDebuginfo)
- Path = ExitOnErr(getCachedOrDownloadDebuginfo(ID));
+ Path = fetchDebugInfo(ID);
else
llvm_unreachable("We have already checked that exactly one of the above "
"conditions is true.");
@@ -107,3 +115,13 @@
// Print the path to the cached artifact file.
outs() << Path << "\n";
}
+
+// Find a debug binary in local build ID directories and via debuginfod.
+std::string fetchDebugInfo(ArrayRef<uint8_t> BuildID) {
+ if (!DebugFileDirectory.empty()) {
+ symbolize::LocalDIFetcher Fetcher(DebugFileDirectory);
+ if (Optional<std::string> LocalPath = Fetcher.fetchBuildID(BuildID))
+ return *LocalPath;
+ }
+ return ExitOnErr(getCachedOrDownloadDebuginfo(BuildID));
+}
Index: llvm/test/tools/llvm-debuginfod-find/local.test
===================================================================
--- /dev/null
+++ llvm/test/tools/llvm-debuginfod-find/local.test
@@ -0,0 +1,15 @@
+# Test that llvm-debuginfod-find can perform local directory lookups.
+
+RUN: mkdir -p %t/a/.build-id
+RUN: mkdir -p %t/b/.build-id/00/00000000000000
+RUN: mkdir -p %t/b/.build-id/01/23456789012345.debug
+RUN: mkdir -p %t/b/.build-id/02/22222222222222
+RUN: mkdir -p %t/c/.build-id/
+RUN: llvm-debuginfod-find \
+RUN: --debug-file-directory %t/a \
+RUN: --debug-file-directory %t/b \
+RUN: --debug-file-directory %t/c \
+RUN: --debuginfo 0123456789012345 > %t.out
+RUN: FileCheck -DT=%t --match-full-lines --implicit-check-not {{.}} %s < %t.out
+
+CHECK: [[T]]/b/.build-id/01/23456789012345.debug
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D125864.430299.patch
Type: text/x-patch
Size: 2886 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220518/7de4afab/attachment.bin>
More information about the llvm-commits
mailing list