Re: [PATCH 03/16] exec: Add cpu_probe_watchpoint

2020-04-17 Thread Richard Henderson
On 4/16/20 5:08 AM, Peter Maydell wrote: >> void cpu_check_watchpoint(CPUState *cpu, vaddr addr, vaddr len, >>MemTxAttrs attrs, int flags, uintptr_t ra); >> +bool cpu_probe_watchpoint(CPUState *cpu, vaddr addr, vaddr len, int flags); > > Could we have a doc comment for

Re: [PATCH 03/16] exec: Add cpu_probe_watchpoint

2020-04-16 Thread Peter Maydell
On Wed, 11 Mar 2020 at 06:44, Richard Henderson wrote: > > Allow probing of a watchpoint *without* raising an exception. > This is of most use for no-fault loads, which should indicate > via some architectural means that the load did not occur. > > Signed-off-by: Richard Henderson > --- > includ

[PATCH 03/16] exec: Add cpu_probe_watchpoint

2020-03-10 Thread Richard Henderson
Allow probing of a watchpoint *without* raising an exception. This is of most use for no-fault loads, which should indicate via some architectural means that the load did not occur. Signed-off-by: Richard Henderson --- include/hw/core/cpu.h | 7 +++ exec.c| 19 ++