[Lldb-commits] [lldb] [lldb] Create dependent modules in parallel (PR #114507)

Dmitrii Galimzianov via lldb-commits lldb-commits at lists.llvm.org
Fri Nov 1 21:08:48 PDT 2024


================
@@ -1608,9 +1612,28 @@ void Target::SetExecutableModule(ModuleSP &executable_sp,
         if (image_module_sp) {
           added_modules.AppendIfNeeded(image_module_sp, false);
           ObjectFile *objfile = image_module_sp->GetObjectFile();
-          if (objfile)
+          if (objfile) {
+            std::lock_guard<std::mutex> guard(dependent_files_mutex);
             objfile->GetDependentModules(dependent_files);
----------------
DmT021 wrote:

Just in case, did you check for a regression in performance after the latest patch?

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


More information about the lldb-commits mailing list