[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 43/76] target/mips: Drop tcg_temp_free from translate_addr_con
From: |
Richard Henderson |
Subject: |
[PATCH v2 43/76] target/mips: Drop tcg_temp_free from translate_addr_const.c |
Date: |
Sun, 26 Feb 2023 19:24:32 -1000 |
Translators are no longer required to free tcg temporaries.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/mips/tcg/translate_addr_const.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/target/mips/tcg/translate_addr_const.c
b/target/mips/tcg/translate_addr_const.c
index 96f483418e..a510da406c 100644
--- a/target/mips/tcg/translate_addr_const.c
+++ b/target/mips/tcg/translate_addr_const.c
@@ -30,10 +30,6 @@ bool gen_lsa(DisasContext *ctx, int rd, int rt, int rs, int
sa)
tcg_gen_shli_tl(t0, t0, sa + 1);
tcg_gen_add_tl(cpu_gpr[rd], t0, t1);
tcg_gen_ext32s_tl(cpu_gpr[rd], cpu_gpr[rd]);
-
- tcg_temp_free(t1);
- tcg_temp_free(t0);
-
return true;
}
@@ -54,8 +50,5 @@ bool gen_dlsa(DisasContext *ctx, int rd, int rt, int rs, int
sa)
gen_load_gpr(t1, rt);
tcg_gen_shli_tl(t0, t0, sa + 1);
tcg_gen_add_tl(cpu_gpr[rd], t0, t1);
- tcg_temp_free(t1);
- tcg_temp_free(t0);
-
return true;
}
--
2.34.1
- [PATCH v2 38/76] target/mips: Drop tcg_temp_free from mips16e_translate.c.inc, (continued)
- [PATCH v2 38/76] target/mips: Drop tcg_temp_free from mips16e_translate.c.inc, Richard Henderson, 2023/02/27
- [PATCH v2 34/76] target/m68k: Drop free_cond, Richard Henderson, 2023/02/27
- [PATCH v2 35/76] target/m68k: Drop tcg_temp_free, Richard Henderson, 2023/02/27
- [PATCH v2 39/76] target/mips: Drop tcg_temp_free from msa_translate.c, Richard Henderson, 2023/02/27
- [PATCH v2 36/76] target/microblaze: Drop tcg_temp_free, Richard Henderson, 2023/02/27
- [PATCH v2 40/76] target/mips: Drop tcg_temp_free from mxu_translate.c, Richard Henderson, 2023/02/27
- [PATCH v2 42/76] target/mips: Drop tcg_temp_free from octeon_translate.c, Richard Henderson, 2023/02/27
- [PATCH v2 41/76] target/mips: Drop tcg_temp_free from nanomips_translate.c.inc, Richard Henderson, 2023/02/27
- [PATCH v2 45/76] target/mips: Fix trans_mult_acc return, Richard Henderson, 2023/02/27
- [PATCH v2 46/76] target/mips: Drop tcg_temp_free from vr54xx_translate.c, Richard Henderson, 2023/02/27
- [PATCH v2 43/76] target/mips: Drop tcg_temp_free from translate_addr_const.c,
Richard Henderson <=
- [PATCH v2 44/76] target/mips: Drop tcg_temp_free from tx79_translate.c, Richard Henderson, 2023/02/27
- [PATCH v2 50/76] target/ppc: Drop tcg_temp_free, Richard Henderson, 2023/02/27
- [PATCH v2 56/76] target/s390x: Use tcg_constant_* for DisasCompare, Richard Henderson, 2023/02/27
- [PATCH v2 47/76] target/mips: Drop tcg_temp_free from translate.c, Richard Henderson, 2023/02/27
- [PATCH v2 49/76] target/openrisc: Drop tcg_temp_free, Richard Henderson, 2023/02/27
- [PATCH v2 51/76] target/riscv: Drop ftemp_new, Richard Henderson, 2023/02/27
- [PATCH v2 52/76] target/riscv: Drop temp_new, Richard Henderson, 2023/02/27
- [PATCH v2 53/76] target/riscv: Drop tcg_temp_free, Richard Henderson, 2023/02/27
- [PATCH v2 48/76] target/nios2: Drop tcg_temp_free, Richard Henderson, 2023/02/27
- [PATCH v2 54/76] target/rx: Drop tcg_temp_free, Richard Henderson, 2023/02/27