[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH for-6.2 04/23] target/cris: Drop checks for singlestep_enabled
From: |
Richard Henderson |
Subject: |
[PATCH for-6.2 04/23] target/cris: Drop checks for singlestep_enabled |
Date: |
Tue, 20 Jul 2021 20:41:36 -1000 |
GDB single-stepping is now handled generically.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/cris/translate.c | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/target/cris/translate.c b/target/cris/translate.c
index a84b753349..59325b388a 100644
--- a/target/cris/translate.c
+++ b/target/cris/translate.c
@@ -3249,22 +3249,6 @@ static void cris_tr_tb_stop(DisasContextBase *dcbase,
CPUState *cpu)
}
}
- if (unlikely(dc->base.singlestep_enabled)) {
- switch (is_jmp) {
- case DISAS_TOO_MANY:
- case DISAS_UPDATE_NEXT:
- tcg_gen_movi_tl(env_pc, npc);
- /* fall through */
- case DISAS_JUMP:
- case DISAS_UPDATE:
- t_gen_raise_exception(EXCP_DEBUG);
- return;
- default:
- break;
- }
- g_assert_not_reached();
- }
-
switch (is_jmp) {
case DISAS_TOO_MANY:
gen_goto_tb(dc, 0, npc);
--
2.25.1
- [PATCH for-6.2 00/23] tcg: gdb singlestep reorg, Richard Henderson, 2021/07/21
- [PATCH for-6.2 01/23] accel/tcg: Handle gdb singlestep in cpu_tb_exec, Richard Henderson, 2021/07/21
- [PATCH for-6.2 02/23] target/alpha: Drop checks for singlestep_enabled, Richard Henderson, 2021/07/21
- [PATCH for-6.2 03/23] target/avr: Drop checks for singlestep_enabled, Richard Henderson, 2021/07/21
- [PATCH for-6.2 04/23] target/cris: Drop checks for singlestep_enabled,
Richard Henderson <=
- [PATCH for-6.2 06/23] target/arm: Drop checks for singlestep_enabled, Richard Henderson, 2021/07/21
- [PATCH for-6.2 07/23] target/hppa: Drop checks for singlestep_enabled, Richard Henderson, 2021/07/21
- [PATCH for-6.2 08/23] target/i386: Check CF_NO_GOTO_TB for dc->jmp_opt, Richard Henderson, 2021/07/21
- [PATCH for-6.2 13/23] target/mips: Fix single stepping, Richard Henderson, 2021/07/21
- [PATCH for-6.2 14/23] target/mips: Drop exit checks for singlestep_enabled, Richard Henderson, 2021/07/21
- [PATCH for-6.2 15/23] target/openrisc: Drop checks for singlestep_enabled, Richard Henderson, 2021/07/21
- [PATCH for-6.2 05/23] target/hexagon: Drop checks for singlestep_enabled, Richard Henderson, 2021/07/21
- [PATCH for-6.2 09/23] target/i386: Drop check for singlestep_enabled, Richard Henderson, 2021/07/21