accel/tcg: Improve docstrings around TCGCPUOps::*watchpoint* handlers
Commit d5ee641cfc5 ("target/ppc: Implement watchpoint debug facility for v2.07S") also implemented TCGCPUOps::debug_check_watchpoint for PPC: make the comment generic. Signed-off-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com> Reviewed-by: Daniel Henrique Barboza <daniel.barboza@oss.qualcomm.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20260705215729.62196-29-philmd@oss.qualcomm.com>
Philippe Mathieu-Daudé committed
Jun 30, 2026 at 18:13 UTC
93e7ca71d7bc5987e65d1c99b0944b084e9b15b7
1 file changed
+2
-3
include/accel/tcg/cpu-ops.h
+2
-3
@@ -250,14 +250,13 @@ struct TCGCPUOps {
250
int mmu_idx, uintptr_t retaddr);
251
252
/**
253
- * @adjust_watchpoint_address: hack for cpu_check_watchpoint used by ARM
253
+ * @adjust_watchpoint_address: hack for cpu_check_watchpoint (used by ARM)
254
*/
255
vaddr (*adjust_watchpoint_address)(CPUState *cpu, vaddr addr, int len);
256
257
/**
258
* @debug_check_watchpoint: return true if the architectural
259
- * watchpoint whose address has matched should really fire, used by ARM
260
- * and RISC-V
259
+ * watchpoint whose address has matched should really fire.
260
*/
261
bool (*debug_check_watchpoint)(CPUState *cpu, CPUWatchpoint *wp);
262