[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 13/26] target/mips: Use translator_use_goto_tb
From: |
Richard Henderson |
Subject: |
[PATCH 13/26] target/mips: Use translator_use_goto_tb |
Date: |
Sun, 20 Jun 2021 18:34:26 -0700 |
Just use translator_use_goto_tb directly at the one call site,
rather than maintaining a local wrapper.
Cc: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/mips/tcg/translate.c | 17 ++---------------
1 file changed, 2 insertions(+), 15 deletions(-)
diff --git a/target/mips/tcg/translate.c b/target/mips/tcg/translate.c
index 797eba4434..d59986b340 100644
--- a/target/mips/tcg/translate.c
+++ b/target/mips/tcg/translate.c
@@ -5019,22 +5019,9 @@ static void gen_trap(DisasContext *ctx, uint32_t opc,
tcg_temp_free(t1);
}
-static inline bool use_goto_tb(DisasContext *ctx, target_ulong dest)
+static void gen_goto_tb(DisasContext *ctx, int n, target_ulong dest)
{
- if (unlikely(ctx->base.singlestep_enabled)) {
- return false;
- }
-
-#ifndef CONFIG_USER_ONLY
- return (ctx->base.tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK);
-#else
- return true;
-#endif
-}
-
-static inline void gen_goto_tb(DisasContext *ctx, int n, target_ulong dest)
-{
- if (use_goto_tb(ctx, dest)) {
+ if (translator_use_goto_tb(&ctx->base, dest)) {
tcg_gen_goto_tb(n);
gen_save_pc(dest);
tcg_gen_exit_tb(ctx->base.tb, n);
--
2.25.1
- [PATCH 03/26] target/alpha: Remove in_superpage, (continued)
- [PATCH 03/26] target/alpha: Remove in_superpage, Richard Henderson, 2021/06/20
- [PATCH 06/26] target/avr: Use translator_use_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 09/26] target/hppa: Use translator_use_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 10/26] target/i386: Use translator_use_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 08/26] target/cris: Use translator_use_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 11/26] target/m68k: Use translator_use_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 12/26] target/microblaze: Use translator_use_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 14/26] target/mips: Fix missing else in gen_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 13/26] target/mips: Use translator_use_goto_tb,
Richard Henderson <=
- [PATCH 16/26] target/openrisc: Use translator_use_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 17/26] target/ppc: Use translator_use_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 21/26] target/s390x: Remove use_exit_tb, Richard Henderson, 2021/06/20
- [PATCH 22/26] target/sh4: Use translator_use_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 25/26] target/tricore: Use tcg_gen_lookup_and_goto_ptr, Richard Henderson, 2021/06/20
- [PATCH 19/26] target/rx: Use translator_use_goto_tb, Richard Henderson, 2021/06/20
- [PATCH 18/26] target/riscv: Use translator_use_goto_tb, Richard Henderson, 2021/06/20