]> www.infradead.org Git - users/dwmw2/qemu.git/commit
softmmu: fix watchpoint processing in icount mode
authorPavel Dovgalyuk <pavel.dovgalyuk@ispras.ru>
Thu, 28 Oct 2021 11:48:05 +0000 (14:48 +0300)
committerRichard Henderson <richard.henderson@linaro.org>
Fri, 29 Oct 2021 03:55:07 +0000 (20:55 -0700)
commit9f660c077b53f58792b6fa6a45b2c3eb1e25b716
treefed811078ff9cb38ef2bb19735d88f978982adb2
parent93a967fbb571ae34857c769dbf0bcc08f2286328
softmmu: fix watchpoint processing in icount mode

Watchpoint processing code restores vCPU state twice:
in tb_check_watchpoint and in cpu_loop_exit_restore/cpu_restore_state.
Normally it does not affect anything, but in icount mode instruction
counter is incremented twice and becomes incorrect.
This patch eliminates unneeded CPU state restore.

Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <163542168516.2127597.8781375223437124644.stgit@pasha-ThinkPad-X280>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
softmmu/physmem.c