[llvm] [BOLT][DWARF][NFC] Add parallelization for processing of DWO debug information (PR #100282)

Alexander Yermolovich via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 23 18:04:02 PDT 2024


================
@@ -50,7 +50,7 @@ enum SchedulingPolicy {
 };
 
 /// Return the managed thread pool and initialize it if not initialized.
-ThreadPoolInterface &getThreadPool();
+ThreadPoolInterface &getThreadPool(const int ThreadsCount = opts::ThreadCount);
----------------
ayermolo wrote:

I mean here:
ThreadPoolInterface &ThreadPool =
        ParallelUtilities::getThreadPool(opts::DebugThreadCount);

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


More information about the llvm-commits mailing list