[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #99736)
Robert O'Callahan via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 29 15:16:17 PDT 2024
rocallahan wrote:
> Is there a notion of "reverse stepping" like "take me to the line that preceded this one in execution history", and if so what contains the logic that does that?
rr supports the "bs" gdbserver packet to reverse-step a single instruction (and so does the test proxy I'm adding here). To "reverse-next one line" we will need to implement a thread plan that uses a combination of reverse-step-instruction and reverse-continue-to-breakpoint. That's future work. It may be difficult, and it's also not very high priority because it tends not to get used very much by gdb users.
https://github.com/llvm/llvm-project/pull/99736
More information about the lldb-commits
mailing list