<div>I'm still trying to wrap my head around the way LLDB does things.</div><div><br></div><div>If I understand correctly, when you run thread step-over, it enters single step mode (by setting the trap flag on the CPU).  Every time the CPU traps, LLDB picks this up and asks the ThreadPlan "should i stop now?"  "should i stop now?" until the ThreadPlan returns true.  And part of this "should i stop now" involves generating an unwind.</div><div><br></div><div>If my understanding is correct, then I have some questions:</div><div><br></div><div>1) Isn't this extremely slow?  What if I'm in main(), and the program I'm debugging is, say, clang, and I say "step over the entire compilation"?  It seems like this would take a decade to return.</div><div><br></div><div>2) What if one of the instructions is a pushf / popf?   You step over a pushf, then later you try to continue, and it continues over the popf, which restores the trap flag.  Now LLDB is confused because it doesn't think it's single stepping, but the CPU does.  How does this work?<br><br><div class="gmail_quote">On Fri Jan 16 2015 at 11:50:21 AM Greg Clayton <<a href="mailto:gclayton@apple.com">gclayton@apple.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">One important thing to get right before proceeding is getting the correct address bounds of all functions so that the disassembly unwinder can do its job. You said you are stopped at a function, but don't know the function bounds. You will want to modify your object file reader (COFF?) to create a viable symbol table that can be used. On MacOSX we use the actual symbol table from the object file and supplement it with all sorts of goodies:<br>
1 - LC_FUNCTION_STARTS load command which tells us all function bounds even if their symbols have been stripped<br>
2 - the PLT entries are made into symbols<br>
3 - more data from the __LINKEDIT is used to create other symbols<br>
<br>
Can you modify your COFF plug-in to get the symbols bounds for every function somehow? Then we can rely on the unwind plan that manually disassembles the functions and makes its own unwind info.<br>
<br>
Greg<br>
<br>
> On Jan 15, 2015, at 5:01 PM, Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
><br>
> Btw, I'm still a little uncomfortable that not having unwind/ symbol info at any point no matter how deep in a function call chain, has the possibility to mess up a step over. In my original example, i had symbols for main but not printf. Is that not sufficient to step over a call to printf? It should be able to know from that a) the bounds of main(), b) the pc corresponding to the next line of source after printf, and c) the value of esp. Aren't those 3 pieces of information enough to step over any line of source, regardless of whether you have unwind information for the code inside the function you're stepping over?<br>
> On Thu, Jan 15, 2015 at 4:36 PM <<a href="mailto:jingham@apple.com" target="_blank">jingham@apple.com</a>> wrote:<br>
><br>
> > On Jan 15, 2015, at 4:18 PM, Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
> ><br>
> > Which is unfortunate, because it seems to be needed even for basic stepping to work, like step over.  Originally I was just trying to implement stepping, and that's how I ran into this issue.  So that brings me to a related question.  Why is step over as complicated as it is?  It seems to me like step over can be implemented by disassembling 1 opcode, adding the size of the opcode to the current pc, and having the ThreadPlan::ShouldStop always return false unless the pc is equal to old_pc + size_of_opcode.<br>
> ><br>
><br>
> You are describing "thread step-inst".  That should pretty much always work regardless of unwinder, etc.<br>
><br>
> Source step over, as Jason said, is much more complicated.<br>
><br>
> Jim<br>
> ______________________________<u></u>_________________<br>
> lldb-dev mailing list<br>
> <a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/lldb-dev</a><br>
<br>
</blockquote></div></div>