[Lldb-commits] [PATCH] D43419: Fix TestBreakpointInGlobalConstructor for Windows

Zachary Turner via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 16 16:34:18 PST 2018


zturner added a comment.

I guess one advantage to delaying it is that the debug info for the dynamic library could be large and slow to parse, and you don't know if you're even going to need it until you hit the breakpoint.  So by delaying the resolution even to File address, you postpone parsing potentially expensive debug info until you know you're going to need it.

It this not a consideration on OSX and/or other platforms that resolve it to a file address early?


https://reviews.llvm.org/D43419





More information about the lldb-commits mailing list