<div dir="ltr">Btw: I did not find an API to retrieve the load address of the SBModule? This seems to be weird to me, did I miss anything?<div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Feb 29, 2016 at 1:34 PM, Jeffrey Tan <span dir="ltr"><<a href="mailto:jeffrey.fudan@gmail.com" target="_blank">jeffrey.fudan@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I see why I did not find them in the first place. These two APIs are not listed in the official doc:<div><a href="http://lldb.llvm.org/python_reference/index.html" target="_blank">http://lldb.llvm.org/python_reference/index.html</a><br></div><div><br></div><div>Someone might want to add it.</div><div><br></div><div>Thanks</div><span class="HOEnZb"><font color="#888888"><div>Jeffrey</div></font></span></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Feb 29, 2016 at 11:59 AM, Jeffrey Tan <span dir="ltr"><<a href="mailto:jeffrey.fudan@gmail.com" target="_blank">jeffrey.fudan@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">This is very useful, thanks for the info!</div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Feb 29, 2016 at 10:36 AM, Jim Ingham <span dir="ltr"><<a href="mailto:jingham@apple.com" target="_blank">jingham@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><br><div><span><blockquote type="cite"><div>On Feb 27, 2016, at 8:34 PM, Jeffrey Tan via lldb-dev <<a href="mailto:lldb-dev@lists.llvm.org" target="_blank">lldb-dev@lists.llvm.org</a>> wrote:</div><br><div><div dir="ltr">Hi,<div><br></div><div>I am trying to listen for module/symbol load/unload events and display them in output UI so that debugger users can have a basic clue what is debugger busy doing while launching a big executable linking many shared libraries.</div><div><br></div><div>Questions:</div><div>1. I did not find an API to get current load/unload module during module events. I was expecting some static API like lldb.SBModule(or SBTarget).GetModuleFromEvent(SBEvent), but this does not exists. I tried to treat current PC's module as loading module in module load/unload events. But that does not work too(I think because process is not stopped in module load/unload events). Do I miss something here?<br></div></div></div></blockquote><div><br></div></span><div>From SBTarget.h:</div><div><br></div><div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(112,61,170)"><span style="color:#000000">    </span><span style="color:#bb2ca2">static</span><span style="color:#000000"> </span>uint32_t</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    GetNumModulesFromEvent (<span style="color:#bb2ca2">const</span> <span style="color:#4f8187">lldb</span>::<span style="color:#4f8187">SBEvent</span> &event);</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;min-height:13px"><br></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(79,129,135)"><span style="color:#000000">    </span><span style="color:#bb2ca2">static</span><span style="color:#000000"> </span>lldb<span style="color:#000000">::</span>SBModule</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">    GetModuleAtIndexFromEvent (<span style="color:#bb2ca2">const</span> <span style="color:#703daa">uint32_t</span> idx, <span style="color:#bb2ca2">const</span> <span style="color:#4f8187">lldb</span>::<span style="color:#4f8187">SBEvent</span> &event);</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;min-height:13px"><br></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;min-height:13px">Note, you can also cause the process to stop with modules are loaded with the setting:</div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;min-height:13px"><br></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;min-height:13px"><div style="margin:0px;line-height:normal">target.process.stop-on-sharedlibrary-events</div><div style="margin:0px;line-height:normal"><br></div><div style="margin:0px;line-height:normal">if that is more convenient for you.</div></div></div><span><br><blockquote type="cite"><div><div dir="ltr"><div><br></div><div>2. Even though "image list" shows I have around 42 modules loaded in process, I only got two module load events. Why is that?</div></div></div></blockquote><div><br></div></span><div>On OS X the loader loads the closure of modules for whatever it is loading, and only stops and informs the debugger when this is all done.  So it is quite usual to see only a few load events even though many modules get loaded.</div><span><div><br></div><br><blockquote type="cite"><div><div dir="ltr"><div><br></div><div>3. Even though I added lldb.SBTarget.eBroadcastBitSymbolsLoaded, there is no event of type eBroadcastBitSymbolsLoaded generated. Is it expected? Apparently I have the symbols next to the binary. </div></div></div></blockquote><div><br></div></span><div>That event gets sent when symbols are added to an already loaded module.  It is so a UI will know to refresh the backtrace, local variables, source view, etc when code goes from having no symbols to having some symbols.  Those actions are not needed if the library & its symbols get loaded simultaneously, so it isn’t sent in that case.</div><div><br></div><div>Jim</div><div><br></div><br><blockquote type="cite"><div><span><div dir="ltr"><div><br></div><div>This is tested on mac OSX lldb.</div><div><br></div><div>Jeffrey</div></div></span>
_______________________________________________<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" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev</a><br></div></blockquote></div><br></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>