diff options
author | Claudio Fontana | 2021-03-22 14:27:49 +0100 |
---|---|---|
committer | Paolo Bonzini | 2021-05-10 21:41:51 +0200 |
commit | 6d8d1a031ad70122c47d23902f7c3e60f7e1d61e (patch) | |
tree | 49d02ae8b6713630d0e8626163c32e99bfe8df8c /target/i386/tcg/helper-tcg.h | |
parent | i386: split tcg excp_helper into sysemu and user parts (diff) | |
download | qemu-6d8d1a031ad70122c47d23902f7c3e60f7e1d61e.tar.gz qemu-6d8d1a031ad70122c47d23902f7c3e60f7e1d61e.tar.xz qemu-6d8d1a031ad70122c47d23902f7c3e60f7e1d61e.zip |
i386: move TCG bpt_helper into sysemu/
for user-mode, assert that the hidden IOBPT flags are not set
while attempting to generate io_bpt helpers.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210322132800.7470-14-cfontana@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/tcg/helper-tcg.h')
-rw-r--r-- | target/i386/tcg/helper-tcg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/i386/tcg/helper-tcg.h b/target/i386/tcg/helper-tcg.h index bcdfca06f6..ff2b99886c 100644 --- a/target/i386/tcg/helper-tcg.h +++ b/target/i386/tcg/helper-tcg.h @@ -88,4 +88,7 @@ void do_interrupt_x86_hardirq(CPUX86State *env, int intno, int is_hw); /* smm_helper.c */ void do_smm_enter(X86CPU *cpu); +/* bpt_helper.c */ +bool check_hw_breakpoints(CPUX86State *env, bool force_dr6_update); + #endif /* I386_HELPER_TCG_H */ |