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

Alexander Yermolovich via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 24 17:25:35 PST 2025


================
@@ -903,6 +908,7 @@ int main(int argc, char **argv) {
 
   bool Success = true;
   if (Verify) {
+    parallel::strategy = hardware_concurrency(VerifyNumThreads);
----------------
ayermolo wrote:

This is used inside parallelForEach. It ends up calling llvm::parallelFor in llvm/lib/Support/Parallel.cpp.
If it's set to 1, it uses a regular loop.

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


More information about the llvm-commits mailing list