[Lldb-commits] [PATCH] D131328: [lldb] Support fetching symbols with dsymForUUID in the background

Jason Molenda via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Sun Aug 7 11:10:50 PDT 2022


jasonmolenda added a comment.

I wonder if it might be interesting to target this a bit - only start background downloading the dSYM for a Module once it has appeared in a backtrace, for instance.  Any UI application on macOS etc has around 500 libraries loaded, but I believe only a few dozen of those libraries will actually appear in backtraces as they're debugging.  We could delay it until the UnwindTable ctor is called for instance -- that's the first thing that will happen when a Module is in a backtrace.  Just thinking aloud, not arguing for it especially.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D131328/new/

https://reviews.llvm.org/D131328



More information about the lldb-commits mailing list