<div dir="ltr">Few more addition to the above:<div><br></div><div>How are you running lldb-server on your device? For remote debugging running lldb-server in platform mode (and then using remote-linux or similar as the selected platform in LLDB) will give you a significantly better performance over running lldb-server in gdbserver mode only and then selecting remote-gdbserver as your platform in LLDB. The following things *only apply* to the case when you are running lldb-server in platform mode.<br><div><br></div><div>If the target side libraries are backed by files on the target system then LLDB should download them only once (at first usage) and then cache it on the host in a module cache (even between LLDB or machine restarts). It means that the startup time is expected to be quite high the first time you debug on a specific device but it should be much faster afterwards (as you already have the libraries on the host). If this is not the case it would be interesting to see why module cache isn't working for you.</div><div><div><br></div><div>By default LLDB uses the gdb-remote protocol to download the files from the target device what is known to be very very slow for transferring large amount of data in bulk. For Android we implemented a faster way to download the files using ADB what gave us a large performance gain (multiple times faster, but don't remember exact number). You can see the code at <a href="https://github.com/llvm-mirror/lldb/blob/a4df8399803ba766d05ef7fcd5d04dc0342d2682/source/Plugins/Platform/Android/PlatformAndroid.cpp#L190">https://github.com/llvm-mirror/lldb/blob/a4df8399803ba766d05ef7fcd5d04dc0342d2682/source/Plugins/Platform/Android/PlatformAndroid.cpp#L190</a> I expect that you can achieve similar gains if you implement Platform*::GetFile and Platform*::PutFile for your platform based on a faster method (e.g. scp/rsync)</div></div></div><div><br></div><div>Tamas</div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, May 23, 2017 at 12:23 AM Ted Woodward via lldb-dev <<a href="mailto:lldb-dev@lists.llvm.org">lldb-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">To expand on Jim's message, "target modules search-paths add" can be used to help lldb find  the host-side copies of shared libraries when they're not in the same directory as on the target system.<br>
<br>
For example, if you have libraries in /usr/lib on the target system, and have copies on the host system in /local/scratch/work/debuglibs , you can say<br>
target modules search-paths add /usr/lib /local/scratch/work/debuglibs<br>
and when lldb goes to load (for example) /usr/lib/libc.so, it will try to load /local/scratch/work/debuglibs/libc.so from the host machine before trying to load through the memory interface.<br>
<br>
I found this very helpful when trying to debug dynamic executables on Linux running on a Hexagon board, running lldb on x86 Linux or Windows.<br>
<br>
Ted<br>
<br>
--<br>
Qualcomm Innovation Center, Inc.<br>
The Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project<br>
<br>
> -----Original Message-----<br>
> From: lldb-dev [mailto:<a href="mailto:lldb-dev-bounces@lists.llvm.org" target="_blank">lldb-dev-bounces@lists.llvm.org</a>] On Behalf Of Jim<br>
> Ingham via lldb-dev<br>
> Sent: Monday, May 22, 2017 5:02 PM<br>
> To: Chunseok Lee <<a href="mailto:chunseoklee@gmail.com" target="_blank">chunseoklee@gmail.com</a>><br>
> Cc: lldb-dev <<a href="mailto:lldb-dev@lists.llvm.org" target="_blank">lldb-dev@lists.llvm.org</a>><br>
> Subject: Re: [lldb-dev] lldb command like gdb's "set auto-solib-add off"<br>
><br>
> In general, if lldb can find host-side copies of binaries that match the ones it<br>
> finds on the device, it will do all symbol reading against the host copies.  In<br>
> the case of an OS X host debugging iOS, lldb uses Spotlight and a few other<br>
> tricks to find the host-side binaries.  You can also use "add-symbol-file" to<br>
> manually point lldb at the host-side symbol files.  If you are reading symbols<br>
> from host-side files, then symbol loading doesn't slow down debugging<br>
> startup that much.<br>
><br>
> Presumably, your symbol files are only on the device, so you are reading<br>
> them from memory.  "settings set target.memory-module-load-level" is<br>
> almost what you want, but it applies to ALL shared libraries read from<br>
> memory.  If you can copy the symbol file that contains the<br>
> __jit_debug_register_code to the host you are debugging from, and use<br>
> add-symbol-file to tell lldb about it, then that one should NOT have to be<br>
> read from memory anymore.  Then you could turn "memory-module-load-<br>
> level" to partial or even mininal, and that should get you starting faster.<br>
><br>
> The other option would be to extend the setting, so you can say:<br>
><br>
> set set target.memory-module-load-level [[lib-name level] [lib-name level]<br>
> ...]<br>
><br>
> If there's just one argument, that's equivalent to "all <arg>".<br>
><br>
> Jim<br>
><br>
> > On May 22, 2017, at 2:35 PM, Chunseok Lee <<a href="mailto:chunseoklee@gmail.com" target="_blank">chunseoklee@gmail.com</a>><br>
> wrote:<br>
> ><br>
> ><br>
> ><br>
> > Thank you for your help.<br>
> > It would be really helpful to me.<br>
> ><br>
> > The reason behind the question is exactly what you mentioned. I am<br>
> > wokring on debugging in devices and it seems that shared library loading(I<br>
> do not know lldb loads symbols lazyly) runs very slowly since my testing<br>
> program depends on so many shared libs.  since I am debuggging with gdbjit<br>
> feature, I do not need shared library loading except one shared lib(which<br>
> contains __jit_debug_register_code symbol) Thus, I want to turn off shred<br>
> lib loading except one shared lib. Is it possible?<br>
> ><br>
> > Thank you.<br>
> ><br>
> > BR,<br>
> > Chunseok Lee<br>
> ><br>
> ><br>
> ><br>
> > 2017. 5. 23. 오전 3:24 Jim Ingham <<a href="mailto:jingham@apple.com" target="_blank">jingham@apple.com</a>> 작성:<br>
> ><br>
> >> We designed lldb to be as lazy as possible in loading symbol information<br>
> from the shared libraries as they get loaded.  If this is causing you problems,<br>
> the first thing to do is to figure out why lldb is pulling in more information<br>
> than you need.  For instance, it looks like on Linux the gdb JIT loading<br>
> breakpoint is getting set with a global search which is pulling in all the symbols<br>
> from all the initially loaded shared libraries.  It would be better to fix things so<br>
> that only explicit user actions (which can be scoped to shared libraries to limit<br>
> the search) pull in symbols so we don't have to fiddle around with turning off<br>
> and on the loading of shared libraries.  Back when we were supporting gdb<br>
> for MacOS I did a lot of work to try to get this right (there are times you really<br>
> need the shared library info - e.g. when something shows up in a backtrace)<br>
> so you have to judiciously re-introduce symbols, or the user experience is<br>
> noticeably degraded.<br>
> >><br>
> >> It also depends on how far you want to go turning this off.  There's "don't<br>
> look at shared libraries at all" which is what the auto-solib-add variable does<br>
> IIRC.  We also had a fairly extensive mechanism to specify "load-levels" for<br>
> various libraries, which  was more user-friendly but much more work to<br>
> support.  Anyway, it would be easy to just turn this shared library<br>
> notifications - just don't set the dyld load notification breakpoint.  That would<br>
> be the easy part.  But as I said above, you're also going to have to make sure<br>
> you turn it back on for users when some action they request requires it.<br>
> >><br>
> >> Note, there is a setting to determine how much symbol information to<br>
> read in from libraries loaded from memory (since in device debugging this<br>
> can be quite slow.)  That is the target.memory-module-load-level setting.<br>
> You might look at that for some hints as to how to proceed.<br>
> >><br>
> >> Jim<br>
> >><br>
> >>> On May 22, 2017, at 8:02 AM, Chunseok Lee via lldb-dev <lldb-<br>
> <a href="mailto:dev@lists.llvm.org" target="_blank">dev@lists.llvm.org</a>> wrote:<br>
> >>><br>
> >>> Hello.<br>
> >>><br>
> >>> In gdb, I can toggle auto symbol loading using "set auto-solib-add off"<br>
> command.<br>
> >>> I wonder that lldb has similar command for disabling auto shared library<br>
> symbol loading?<br>
> >>> If not, where is the good starting point to review the source code to<br>
> implement this feature?<br>
> >>><br>
> >>> BR,<br>
> >>> Chunseok Lee<br>
> >>> _______________________________________________<br>
> >>> lldb-dev mailing list<br>
> >>> <a href="mailto:lldb-dev@lists.llvm.org" target="_blank">lldb-dev@lists.llvm.org</a><br>
> >>> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev</a><br>
> >><br>
><br>
> _______________________________________________<br>
> lldb-dev mailing list<br>
> <a href="mailto:lldb-dev@lists.llvm.org" target="_blank">lldb-dev@lists.llvm.org</a><br>
> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev</a><br>
<br>
_______________________________________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@lists.llvm.org" target="_blank">lldb-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev</a><br>
</blockquote></div>