[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #112079)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 10 17:32:31 PST 2024
================
@@ -3239,6 +3241,14 @@ Status Process::ConnectRemote(llvm::StringRef remote_url) {
return error;
}
+void Process::SetRunDirection(RunDirection direction) {
+ if (m_base_direction == direction) {
+ return;
+ }
+ m_thread_list.DiscardThreadPlans();
----------------
jimingham wrote:
Somewhere we should say that we're allowing ourselves the simplification that the ThreadPlanStacks have to be homogeneous in direction, but that we should be able to relax that in the future. Maybe here or maybe there should be a more general comment describing your strategy here.
https://github.com/llvm/llvm-project/pull/112079
More information about the lldb-commits
mailing list