[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 09/24] target/i386: Drop check for singlestep_enabled
From: |
Richard Henderson |
Subject: |
[PULL 09/24] target/i386: Drop check for singlestep_enabled |
Date: |
Sat, 16 Oct 2021 11:14:59 -0700 |
GDB single-stepping is now handled generically.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/i386/helper.h | 1 -
target/i386/tcg/misc_helper.c | 8 --------
target/i386/tcg/translate.c | 4 +---
3 files changed, 1 insertion(+), 12 deletions(-)
diff --git a/target/i386/helper.h b/target/i386/helper.h
index 574ff75615..ac3b4d1ee3 100644
--- a/target/i386/helper.h
+++ b/target/i386/helper.h
@@ -56,7 +56,6 @@ DEF_HELPER_2(syscall, void, env, int)
DEF_HELPER_2(sysret, void, env, int)
#endif
DEF_HELPER_FLAGS_2(pause, TCG_CALL_NO_WG, noreturn, env, int)
-DEF_HELPER_FLAGS_1(debug, TCG_CALL_NO_WG, noreturn, env)
DEF_HELPER_1(reset_rf, void, env)
DEF_HELPER_FLAGS_3(raise_interrupt, TCG_CALL_NO_WG, noreturn, env, int, int)
DEF_HELPER_FLAGS_2(raise_exception, TCG_CALL_NO_WG, noreturn, env, int)
diff --git a/target/i386/tcg/misc_helper.c b/target/i386/tcg/misc_helper.c
index baffa5d7ba..5769db5ace 100644
--- a/target/i386/tcg/misc_helper.c
+++ b/target/i386/tcg/misc_helper.c
@@ -110,14 +110,6 @@ void QEMU_NORETURN helper_pause(CPUX86State *env, int
next_eip_addend)
do_pause(env);
}
-void QEMU_NORETURN helper_debug(CPUX86State *env)
-{
- CPUState *cs = env_cpu(env);
-
- cs->exception_index = EXCP_DEBUG;
- cpu_loop_exit(cs);
-}
-
uint64_t helper_rdpkru(CPUX86State *env, uint32_t ecx)
{
if ((env->cr[4] & CR4_PKE_MASK) == 0) {
diff --git a/target/i386/tcg/translate.c b/target/i386/tcg/translate.c
index c8d919bc3f..e9e1451540 100644
--- a/target/i386/tcg/translate.c
+++ b/target/i386/tcg/translate.c
@@ -2660,9 +2660,7 @@ do_gen_eob_worker(DisasContext *s, bool inhibit, bool
recheck_tf, bool jr)
if (s->base.tb->flags & HF_RF_MASK) {
gen_helper_reset_rf(cpu_env);
}
- if (s->base.singlestep_enabled) {
- gen_helper_debug(cpu_env);
- } else if (recheck_tf) {
+ if (recheck_tf) {
gen_helper_rechecking_single_step(cpu_env);
tcg_gen_exit_tb(NULL, 0);
} else if (s->flags & HF_TF_MASK) {
--
2.25.1
- [PULL 00/24] tcg patch queue, Richard Henderson, 2021/10/16
- [PULL 01/24] accel/tcg: Handle gdb singlestep in cpu_tb_exec, Richard Henderson, 2021/10/16
- [PULL 04/24] target/cris: Drop checks for singlestep_enabled, Richard Henderson, 2021/10/16
- [PULL 05/24] target/hexagon: Drop checks for singlestep_enabled, Richard Henderson, 2021/10/16
- [PULL 10/24] target/m68k: Drop checks for singlestep_enabled, Richard Henderson, 2021/10/16
- [PULL 14/24] target/mips: Drop exit checks for singlestep_enabled, Richard Henderson, 2021/10/16
- [PULL 07/24] target/hppa: Drop checks for singlestep_enabled, Richard Henderson, 2021/10/16
- [PULL 12/24] target/microblaze: Drop checks for singlestep_enabled, Richard Henderson, 2021/10/16
- [PULL 09/24] target/i386: Drop check for singlestep_enabled,
Richard Henderson <=
- [PULL 11/24] target/microblaze: Check CF_NO_GOTO_TB for DISAS_JUMP, Richard Henderson, 2021/10/16
- [PULL 18/24] target/riscv: Remove exit_tb and lookup_and_goto_ptr, Richard Henderson, 2021/10/16
- [PULL 17/24] target/riscv: Remove dead code after exception, Richard Henderson, 2021/10/16
- [PULL 02/24] target/alpha: Drop checks for singlestep_enabled, Richard Henderson, 2021/10/16
- [PULL 06/24] target/arm: Drop checks for singlestep_enabled, Richard Henderson, 2021/10/16
- [PULL 15/24] target/openrisc: Drop checks for singlestep_enabled, Richard Henderson, 2021/10/16
- [PULL 20/24] target/s390x: Drop check for singlestep_enabled, Richard Henderson, 2021/10/16
- [PULL 24/24] Revert "cpu: Move cpu_common_props to hw/core/cpu.c", Richard Henderson, 2021/10/16
- [PULL 08/24] target/i386: Check CF_NO_GOTO_TB for dc->jmp_opt, Richard Henderson, 2021/10/16
- [PULL 22/24] target/tricore: Drop check for singlestep_enabled, Richard Henderson, 2021/10/16