target/hppa: Drop checks for singlestep_enabled

GDB single-stepping is now handled generically.

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
Richard Henderson 2021-07-18 21:19:26 -10:00
parent 364caea70f
commit 8532a14e41
1 changed files with 4 additions and 13 deletions

View File

@ -814,11 +814,7 @@ static void gen_goto_tb(DisasContext *ctx, int which,
} else { } else {
copy_iaoq_entry(cpu_iaoq_f, f, cpu_iaoq_b); copy_iaoq_entry(cpu_iaoq_f, f, cpu_iaoq_b);
copy_iaoq_entry(cpu_iaoq_b, b, ctx->iaoq_n_var); copy_iaoq_entry(cpu_iaoq_b, b, ctx->iaoq_n_var);
if (ctx->base.singlestep_enabled) { tcg_gen_lookup_and_goto_ptr();
gen_excp_1(EXCP_DEBUG);
} else {
tcg_gen_lookup_and_goto_ptr();
}
} }
} }
@ -2346,11 +2342,7 @@ static bool do_rfi(DisasContext *ctx, bool rfi_r)
gen_helper_rfi(cpu_env); gen_helper_rfi(cpu_env);
} }
/* Exit the TB to recognize new interrupts. */ /* Exit the TB to recognize new interrupts. */
if (ctx->base.singlestep_enabled) { tcg_gen_exit_tb(NULL, 0);
gen_excp_1(EXCP_DEBUG);
} else {
tcg_gen_exit_tb(NULL, 0);
}
ctx->base.is_jmp = DISAS_NORETURN; ctx->base.is_jmp = DISAS_NORETURN;
return nullify_end(ctx); return nullify_end(ctx);
@ -4274,10 +4266,9 @@ static void hppa_tr_tb_stop(DisasContextBase *dcbase, CPUState *cs)
nullify_save(ctx); nullify_save(ctx);
/* FALLTHRU */ /* FALLTHRU */
case DISAS_IAQ_N_UPDATED: case DISAS_IAQ_N_UPDATED:
if (ctx->base.singlestep_enabled) { if (is_jmp != DISAS_IAQ_N_STALE_EXIT) {
gen_excp_1(EXCP_DEBUG);
} else if (is_jmp != DISAS_IAQ_N_STALE_EXIT) {
tcg_gen_lookup_and_goto_ptr(); tcg_gen_lookup_and_goto_ptr();
break;
} }
/* FALLTHRU */ /* FALLTHRU */
case DISAS_EXIT: case DISAS_EXIT: