[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH for-6.1 v6 08/17] hw/core: Introduce TCGCPUOps.debug_check_breakp
From: |
Richard Henderson |
Subject: |
[PATCH for-6.1 v6 08/17] hw/core: Introduce TCGCPUOps.debug_check_breakpoint |
Date: |
Tue, 20 Jul 2021 09:54:30 -1000 |
New hook to return true when an architectural breakpoint is
to be recognized and false when it should be suppressed.
First use must wait until other pieces are in place.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
include/hw/core/tcg-cpu-ops.h | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/include/hw/core/tcg-cpu-ops.h b/include/hw/core/tcg-cpu-ops.h
index 72d791438c..eab27d0c03 100644
--- a/include/hw/core/tcg-cpu-ops.h
+++ b/include/hw/core/tcg-cpu-ops.h
@@ -88,6 +88,12 @@ struct TCGCPUOps {
*/
bool (*debug_check_watchpoint)(CPUState *cpu, CPUWatchpoint *wp);
+ /**
+ * @debug_check_breakpoint: return true if the architectural
+ * breakpoint whose PC has matched should really fire.
+ */
+ bool (*debug_check_breakpoint)(CPUState *cpu);
+
/**
* @io_recompile_replay_branch: Callback for cpu_io_recompile.
*
--
2.25.1
- [PATCH for-6.1 v6 00/17] tcg: breakpoint reorg, Richard Henderson, 2021/07/20
- [PATCH for-6.1 v6 01/17] accel/tcg: Reduce CF_COUNT_MASK to match TCG_MAX_INSNS, Richard Henderson, 2021/07/20
- [PATCH for-6.1 v6 02/17] accel/tcg: Move curr_cflags into cpu-exec.c, Richard Henderson, 2021/07/20
- [PATCH for-6.1 v6 03/17] target/alpha: Drop goto_tb path in gen_call_pal, Richard Henderson, 2021/07/20
- [PATCH for-6.1 v6 05/17] accel/tcg: Drop CF_NO_GOTO_PTR from -d nochain, Richard Henderson, 2021/07/20
- [PATCH for-6.1 v6 10/17] target/i386: Implement debug_check_breakpoint, Richard Henderson, 2021/07/20
- [PATCH for-6.1 v6 04/17] accel/tcg: Add CF_NO_GOTO_TB and CF_NO_GOTO_PTR, Richard Henderson, 2021/07/20
- [PATCH for-6.1 v6 06/17] accel/tcg: Handle -singlestep in curr_cflags, Richard Henderson, 2021/07/20
- [PATCH for-6.1 v6 07/17] accel/tcg: Use CF_NO_GOTO_{TB, PTR} in cpu_exec_step_atomic, Richard Henderson, 2021/07/20
- [PATCH for-6.1 v6 08/17] hw/core: Introduce TCGCPUOps.debug_check_breakpoint,
Richard Henderson <=
- [PATCH for-6.1 v6 09/17] target/arm: Implement debug_check_breakpoint, Richard Henderson, 2021/07/20
- [PATCH for-6.1 v6 11/17] hw/core: Introduce CPUClass.gdb_adjust_breakpoint, Richard Henderson, 2021/07/20