Re: [PATCH v7 00/14] Reverse debugging

2020-10-05 Thread Paolo Bonzini
On 05/10/20 15:45, Pavel Dovgalyuk wrote: > > That's very strange. > None of the patches affect RR for AArch64. Is this the real failure or > just a coincidence? > I also tried running this test on my local machine and got normal > execution time for replay: > real    0m0,968s > user    0m0,657s >

Re: [PATCH v7 00/14] Reverse debugging

2020-10-05 Thread Pavel Dovgalyuk
On 05.10.2020 15:27, Paolo Bonzini wrote: On 03/10/20 19:12, 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

Re: [PATCH v7 00/14] Reverse debugging

2020-10-05 Thread Paolo Bonzini
On 03/10/20 19:12, 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 breakpoint that >

Re: [PATCH v7 00/14] Reverse debugging

2020-10-03 Thread no-reply
Subject: [PATCH v7 00/14] Reverse debugging === TEST SCRIPT BEGIN === #!/bin/bash git rev-parse base > /dev/null || exit 0 git config --local diff.renamelimit 0 git config --local diff.renames True git config --local diff.algorithm histogram ./scripts/checkpatch.pl --mailback base.. === T

[PATCH v7 00/14] Reverse debugging

2020-10-03 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.