Re: [PATCH] replay: fix watchpoint processing for reverse debugging

2021-05-25 Thread Richard Henderson
On 5/11/21 2:11 AM, Pavel Dovgalyuk wrote: This patch enables reverse debugging with watchpoints. Reverse continue scans the execution to find the breakpoints and watchpoints that should fire. It uses helper function replay_breakpoint() for that. But this function needs to access icount, which ca

Re: [PATCH] replay: fix watchpoint processing for reverse debugging

2021-05-24 Thread Pavel Dovgalyuk
ping On 11.05.2021 12:11, Pavel Dovgalyuk wrote: This patch enables reverse debugging with watchpoints. Reverse continue scans the execution to find the breakpoints and watchpoints that should fire. It uses helper function replay_breakpoint() for that. But this function needs to access icount, w

[PATCH] replay: fix watchpoint processing for reverse debugging

2021-05-11 Thread Pavel Dovgalyuk
This patch enables reverse debugging with watchpoints. Reverse continue scans the execution to find the breakpoints and watchpoints that should fire. It uses helper function replay_breakpoint() for that. But this function needs to access icount, which can't be correct in the middle of TB. Therefore