[llvm] [llvm-dwarfdump] Make --verify for .debug_names multithreaded. (PR #127281)

Greg Clayton via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 11 18:27:35 PDT 2025


================
@@ -284,6 +286,9 @@ static cl::opt<bool>
                 cat(DwarfDumpCategory));
 static opt<bool> Verify("verify", desc("Verify the DWARF debug info."),
                         cat(DwarfDumpCategory));
+static opt<unsigned> VerifyNumThreads(
+    "verify-num-threads", init(hardware_concurrency().compute_thread_count()),
+    desc("Number of threads to use for --verify."), cat(DwarfDumpCategory));
----------------
clayborg wrote:

Probably best to expand this documentation. 
```
sc("Number of threads to use for --verify. Single threaded verification is the default unless this option is specified. This can cause the output to be non determinisitic, but can speed up verification and is useful when running with the summary only or JSON summary modes.")
```

https://github.com/llvm/llvm-project/pull/127281


More information about the llvm-commits mailing list