Re: [PULL 034/126] softmmu: Extract watchpoint API from physmem.c

2023-03-23 Thread David Hildenbrand
On 23.03.23 09:54, Philippe Mathieu-Daudé wrote: On 27/2/23 15:00, Philippe Mathieu-Daudé wrote: The watchpoint API is specific to TCG system emulation. I'm seeing CPUWatchpoint being used by KVM: $ git grep CPUWatchpoint|fgrep kvm target/arm/kvm64.c:1558:CPUWatchpoint *wp =

Re: [PULL 034/126] softmmu: Extract watchpoint API from physmem.c

2023-03-23 Thread Philippe Mathieu-Daudé
On 27/2/23 15:00, Philippe Mathieu-Daudé wrote: The watchpoint API is specific to TCG system emulation. I'm seeing CPUWatchpoint being used by KVM: $ git grep CPUWatchpoint|fgrep kvm target/arm/kvm64.c:1558:CPUWatchpoint *wp = find_hw_watchpoint(cs, debug_exit->far);

[PULL 034/126] softmmu: Extract watchpoint API from physmem.c

2023-02-27 Thread Philippe Mathieu-Daudé
The watchpoint API is specific to TCG system emulation. Move it to a new compile unit. The inlined stubs are used for user-mode and non-TCG accelerators. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20221209141254.68662-1-phi...@linaro.org> --- MAINTAINERS