Re: [Qemu-devel] [PATCH v3 00/19] reverse debugging

2018-05-23 Thread Pavel Dovgalyuk
> From: Ciro Santilli [mailto:ciro.santi...@gmail.com] > On Wed, May 23, 2018 at 2:28 PM, Pavel Dovgalyuk wrote: > >> From: Ciro Santilli [mailto:ciro.santi...@gmail.com] > >> On Wed, May 23, 2018 at 7:49 AM, Pavel Dovgalyuk > >> wrote: > >> > GDB remote protocol supports reverse debugging of the

Re: [Qemu-devel] [PATCH v3 00/19] reverse debugging

2018-05-23 Thread Ciro Santilli
On Wed, May 23, 2018 at 2:28 PM, Pavel Dovgalyuk wrote: >> From: Ciro Santilli [mailto:ciro.santi...@gmail.com] >> On Wed, May 23, 2018 at 7:49 AM, Pavel Dovgalyuk >> wrote: >> > GDB remote protocol supports reverse debugging of the targets. >> > It includes 'reverse step' and 'reverse continue'

Re: [Qemu-devel] [PATCH v3 00/19] reverse debugging

2018-05-23 Thread Ciro Santilli
On Wed, May 23, 2018 at 7:49 AM, Pavel Dovgalyuk wrote: > GDB remote protocol supports reverse debugging of the targets. > It includes 'reverse step' and 'reverse continue' operations. > The first one finds the previous step of the execution, > and the second one is intended to stop at the last br

Re: [Qemu-devel] [PATCH v3 00/19] reverse debugging

2018-05-23 Thread Pavel Dovgalyuk
> From: Ciro Santilli [mailto:ciro.santi...@gmail.com] > On Wed, May 23, 2018 at 7:49 AM, Pavel Dovgalyuk > wrote: > > GDB remote protocol supports reverse debugging of the targets. > > It includes 'reverse step' and 'reverse continue' operations. > > The first one finds the previous step of the e

[Qemu-devel] [PATCH v3 00/19] reverse debugging

2018-05-22 Thread Pavel Dovgalyuk
GDB remote protocol supports reverse debugging of the targets. It includes 'reverse step' and 'reverse continue' operations. The first one finds the previous step of the execution, and the second one is intended to stop at the last breakpoint that would happen when the program is executed normally.