From: Richard Henderson Date: Sun, 20 Jun 2021 23:31:23 +0000 (-0700) Subject: target/ppc: Use translator_use_goto_tb X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6e9cc373ec5871bfd8aca36e319ded67e48ca58f;p=qemu.git target/ppc: Use translator_use_goto_tb Reviewed-by: Luis Pires Signed-off-by: Richard Henderson --- diff --git a/target/ppc/translate.c b/target/ppc/translate.c index 07d79acc08..0ad601793c 100644 --- a/target/ppc/translate.c +++ b/target/ppc/translate.c @@ -4301,15 +4301,7 @@ static inline void gen_update_cfar(DisasContext *ctx, target_ulong nip) static inline bool use_goto_tb(DisasContext *ctx, target_ulong dest) { - if (unlikely(ctx->singlestep_enabled)) { - return false; - } - -#ifndef CONFIG_USER_ONLY - return (ctx->base.tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK); -#else - return true; -#endif + return translator_use_goto_tb(&ctx->base, dest); } static void gen_lookup_and_goto_ptr(DisasContext *ctx)