diff options
author | Pavel Dovgalyuk | 2020-10-03 19:13:49 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-10-06 08:34:49 +0200 |
commit | cda382594b7ea50aff5f672f32767f9f9fef4c12 (patch) | |
tree | 9d33774ea1a44059a0a7d5e9895f5d7a3d530eba /stubs | |
parent | gdbstub: add reverse step support in replay mode (diff) | |
download | qemu-cda382594b7ea50aff5f672f32767f9f9fef4c12.tar.gz qemu-cda382594b7ea50aff5f672f32767f9f9fef4c12.tar.xz qemu-cda382594b7ea50aff5f672f32767f9f9fef4c12.zip |
gdbstub: add reverse continue support in replay mode
This patch adds support of the reverse continue operation for gdbstub.
Reverse continue finds the last breakpoint that would happen in normal
execution from the beginning to the current moment.
Implementation of the reverse continue replays the execution twice:
to find the breakpoints that were hit and to seek to the last breakpoint.
Reverse continue loads the previous snapshot and tries to find the breakpoint
since that moment. If there are no such breakpoints, it proceeds to
the earlier snapshot, and so on. When no breakpoints or watchpoints were
hit at all, execution stops at the beginning of the replay log.
Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
Message-Id: <160174522930.12451.6994758004725016836.stgit@pasha-ThinkPad-X280>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/replay.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/stubs/replay.c b/stubs/replay.c index d5b52302e9..45ebe77fb9 100644 --- a/stubs/replay.c +++ b/stubs/replay.c @@ -98,3 +98,8 @@ bool replay_reverse_step(void) { return false; } + +bool replay_reverse_continue(void) +{ + return false; +} |