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 /include/exec/translation-block.h | |
parent | 8d65cda7284edf31998778f92813bc6ef1e6ab77 (diff) | |
download | qemu-d828b92b8a61204d8a7aaa87a24e48ac7ab69143.zip qemu-d828b92b8a61204d8a7aaa87a24e48ac7ab69143.tar.gz qemu-d828b92b8a61204d8a7aaa87a24e48ac7ab69143.tar.bz2 |
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 'include/exec/translation-block.h')
-rw-r--r-- | include/exec/translation-block.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exec/translation-block.h b/include/exec/translation-block.h index 48211c8..a6d1af6 100644 --- a/include/exec/translation-block.h +++ b/include/exec/translation-block.h @@ -77,6 +77,7 @@ struct TranslationBlock { #define CF_PARALLEL 0x00008000 /* Generate code for a parallel context */ #define CF_NOIRQ 0x00010000 /* Generate an uninterruptible TB */ #define CF_PCREL 0x00020000 /* Opcodes in TB are PC-relative */ +#define CF_BP_PAGE 0x00040000 /* Breakpoint present in code page */ #define CF_CLUSTER_MASK 0xff000000 /* Top 8 bits are cluster ID */ #define CF_CLUSTER_SHIFT 24 |