<br><br><div class="gmail_quote">On Fri Jan 16 2015 at 12:45:00 PM <<a href="mailto:jingham@apple.com">jingham@apple.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
> On Jan 16, 2015, at 12:14 PM, Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
><br>
> I'm still trying to wrap my head around the way LLDB does things.<br>
><br>
> 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.<br>
><br>
<br>
That's close, but not quite correct.<br>
<br>
1) In the original implementation, (and this is how gdb does it, BTW) lldb single-stepped till "something interesting happened."  As an optimization, when you are doing any kind of step through source range, I changed lldb so it runs from "instruction that could branch" to "instruction that could branch" using breakpoints.  Then when it hits an instruction that could branch it single steps that instruction, and then figures out from where that went what to do next.<br>
<br>
BTW, if it were helpful to figure out what to do next, we could store some info (the old stack frame or whatever) when we hit a branch instruction, and then use it when the single-step completed.  I haven't needed to do that yet, however; Jason's always been able to get the unwinder work reliably enough not to require this.<br></blockquote><div>Let's say you're stopped at the first line of foo() here.</div><div><br></div><div>1.     void foo()</div><div>2.     {</div><div>3. ->     printf(</div><div>4.              "Line 1\n");</div><div>5.         printf("Line 2\n");<br></div><div>6.         printf("Line 3\n");<br></div><div>7.     }</div><div><br></div><div>When you step-over, why can't it just say: Ok, current source line is 3. Debug info tells me that the next instruction begins on line 5.  Line 5 corresponds to address 0x12345678.  Put a breakpoint on 0x12345678.  To account for the fact that foo() may be recursive, also save off a copy of the stack pointer.  When the breakpoint is hit, stop if the stack pointer is the same or less than the saved value (depending on the definition of "less" for your architecture), otherwise don't stop.</div><div><br></div><div><br></div><div>(Still trying to process the rest of the points in your email)</div></div>