diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-03-21 16:54:11 -1000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-05-06 12:55:51 -0700 |
| commit | d828b92b8a61204d8a7aaa87a24e48ac7ab69143 (patch) | |
| tree | bc20417aa8c77cb8f89f44b2d83901658ebd5052 /accel/tcg/cpu-exec.c | |
| parent | 8d65cda7284edf31998778f92813bc6ef1e6ab77 (diff) | |
| download | focaccia-qemu-d828b92b8a61204d8a7aaa87a24e48ac7ab69143.tar.gz focaccia-qemu-d828b92b8a61204d8a7aaa87a24e48ac7ab69143.zip | |
accel/tcg: Introduce CF_BP_PAGE
Record the fact that we've found a breakpoint on the page in which a TranslationBlock is running. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/tcg/cpu-exec.c')
| -rw-r--r-- | accel/tcg/cpu-exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/tcg/cpu-exec.c b/accel/tcg/cpu-exec.c index 225e5fbd3e..6a764f527b 100644 --- a/accel/tcg/cpu-exec.c +++ b/accel/tcg/cpu-exec.c @@ -371,7 +371,7 @@ static bool check_for_breakpoints_slow(CPUState *cpu, vaddr pc, * breakpoints are removed. */ if (match_page) { - *cflags = (*cflags & ~CF_COUNT_MASK) | CF_NO_GOTO_TB | 1; + *cflags = (*cflags & ~CF_COUNT_MASK) | CF_NO_GOTO_TB | CF_BP_PAGE | 1; } return false; } |