[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 8/8] target/mips: Define gen_helper() macros in translate.h
|
From: |
Philippe Mathieu-Daudé |
|
Subject: |
[PATCH 8/8] target/mips: Define gen_helper() macros in translate.h |
|
Date: |
Mon, 16 Aug 2021 22:51:07 +0200 |
To be able to split some code calling the gen_helper() macros
out of the huge translate.c, we need to define them in the
'translate.h' local header.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
Will be used in following series. Can resend there as first
patch.
---
target/mips/tcg/translate.h | 12 ++++++++++++
target/mips/tcg/translate.c | 12 ------------
2 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/target/mips/tcg/translate.h b/target/mips/tcg/translate.h
index bb0a6b8d74f..eac01a81182 100644
--- a/target/mips/tcg/translate.h
+++ b/target/mips/tcg/translate.h
@@ -113,6 +113,18 @@ enum {
OPC_BC1TANY4 = (0x01 << 16) | OPC_BC1ANY4,
};
+#define gen_helper_0e1i(name, arg1, arg2) do { \
+ gen_helper_##name(cpu_env, arg1, tcg_constant_i32(arg2)); \
+ } while (0)
+
+#define gen_helper_1e0i(name, ret, arg1) do { \
+ gen_helper_##name(ret, cpu_env, tcg_constant_i32(arg1)); \
+ } while (0)
+
+#define gen_helper_0e2i(name, arg1, arg2, arg3) do { \
+ gen_helper_##name(cpu_env, arg1, arg2, tcg_constant_i32(arg3));\
+ } while (0)
+
void generate_exception(DisasContext *ctx, int excp);
void generate_exception_err(DisasContext *ctx, int excp, int err);
void generate_exception_end(DisasContext *ctx, int excp);
diff --git a/target/mips/tcg/translate.c b/target/mips/tcg/translate.c
index 93b72c994f2..40cb1fc9508 100644
--- a/target/mips/tcg/translate.c
+++ b/target/mips/tcg/translate.c
@@ -1213,18 +1213,6 @@ TCGv_i64 fpu_f64[32];
#include "exec/gen-icount.h"
-#define gen_helper_0e1i(name, arg1, arg2) do { \
- gen_helper_##name(cpu_env, arg1, tcg_constant_i32(arg2)); \
- } while (0)
-
-#define gen_helper_1e0i(name, ret, arg1) do { \
- gen_helper_##name(ret, cpu_env, tcg_constant_i32(arg1)); \
- } while (0)
-
-#define gen_helper_0e2i(name, arg1, arg2, arg3) do { \
- gen_helper_##name(cpu_env, arg1, arg2, tcg_constant_i32(arg3));\
- } while (0)
-
#define DISAS_STOP DISAS_TARGET_0
#define DISAS_EXIT DISAS_TARGET_1
--
2.31.1
- [PATCH 0/8] target/mips: Housekeeping in gen_helper() macros, Philippe Mathieu-Daudé, 2021/08/16
- [PATCH 1/8] target/mips: Remove gen_helper_0e3i(), Philippe Mathieu-Daudé, 2021/08/16
- [PATCH 3/8] target/mips: Use tcg_constant_i32() in gen_helper_0e2i(), Philippe Mathieu-Daudé, 2021/08/16
- [PATCH 2/8] target/mips: Remove gen_helper_1e2i(), Philippe Mathieu-Daudé, 2021/08/16
- [PATCH 4/8] target/mips: Simplify gen_helper() macros by using tcg_constant_i32(), Philippe Mathieu-Daudé, 2021/08/16
- [PATCH 5/8] target/mips: Inline gen_helper_1e1i() call in op_ld_INSN() macros, Philippe Mathieu-Daudé, 2021/08/16
- [PATCH 6/8] target/mips: Inline gen_helper_0e0i(), Philippe Mathieu-Daudé, 2021/08/16
- [PATCH 7/8] target/mips: Use tcg_constant_i32() in generate_exception_err(), Philippe Mathieu-Daudé, 2021/08/16
- [PATCH 8/8] target/mips: Define gen_helper() macros in translate.h,
Philippe Mathieu-Daudé <=
- Re: [PATCH 0/8] target/mips: Housekeeping in gen_helper() macros, Richard Henderson, 2021/08/17