[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 42/76] target/mips: Drop tcg_temp_free from octeon_translate.c
From: |
Richard Henderson |
Subject: |
[PATCH 42/76] target/mips: Drop tcg_temp_free from octeon_translate.c |
Date: |
Fri, 24 Feb 2023 23:13:53 -1000 |
Translators are no longer required to free tcg temporaries.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/mips/tcg/octeon_translate.c | 23 -----------------------
1 file changed, 23 deletions(-)
diff --git a/target/mips/tcg/octeon_translate.c
b/target/mips/tcg/octeon_translate.c
index 6a207d2e7e..103c304d10 100644
--- a/target/mips/tcg/octeon_translate.c
+++ b/target/mips/tcg/octeon_translate.c
@@ -40,8 +40,6 @@ static bool trans_BBIT(DisasContext *ctx, arg_BBIT *a)
ctx->hflags |= MIPS_HFLAG_BC;
ctx->btarget = ctx->base.pc_next + 4 + a->offset * 4;
ctx->hflags |= MIPS_HFLAG_BDS32;
-
- tcg_temp_free(t0);
return true;
}
@@ -61,10 +59,6 @@ static bool trans_BADDU(DisasContext *ctx, arg_BADDU *a)
tcg_gen_add_tl(t0, t0, t1);
tcg_gen_andi_i64(cpu_gpr[a->rd], t0, 0xff);
-
- tcg_temp_free(t0);
- tcg_temp_free(t1);
-
return true;
}
@@ -83,10 +77,6 @@ static bool trans_DMUL(DisasContext *ctx, arg_DMUL *a)
gen_load_gpr(t1, a->rt);
tcg_gen_mul_i64(cpu_gpr[a->rd], t0, t1);
-
- tcg_temp_free(t0);
- tcg_temp_free(t1);
-
return true;
}
@@ -103,8 +93,6 @@ static bool trans_EXTS(DisasContext *ctx, arg_EXTS *a)
gen_load_gpr(t0, a->rs);
tcg_gen_sextract_tl(t0, t0, a->p, a->lenm1 + 1);
gen_store_gpr(t0, a->rt);
- tcg_temp_free(t0);
-
return true;
}
@@ -121,8 +109,6 @@ static bool trans_CINS(DisasContext *ctx, arg_CINS *a)
gen_load_gpr(t0, a->rs);
tcg_gen_deposit_z_tl(t0, t0, a->p, a->lenm1 + 1);
gen_store_gpr(t0, a->rt);
- tcg_temp_free(t0);
-
return true;
}
@@ -142,8 +128,6 @@ static bool trans_POP(DisasContext *ctx, arg_POP *a)
}
tcg_gen_ctpop_tl(t0, t0);
gen_store_gpr(t0, a->rd);
- tcg_temp_free(t0);
-
return true;
}
@@ -167,10 +151,6 @@ static bool trans_SEQNE(DisasContext *ctx, arg_SEQNE *a)
} else {
tcg_gen_setcond_tl(TCG_COND_EQ, cpu_gpr[a->rd], t1, t0);
}
-
- tcg_temp_free(t0);
- tcg_temp_free(t1);
-
return true;
}
@@ -194,8 +174,5 @@ static bool trans_SEQNEI(DisasContext *ctx, arg_SEQNEI *a)
} else {
tcg_gen_setcondi_tl(TCG_COND_EQ, cpu_gpr[a->rt], t0, imm);
}
-
- tcg_temp_free(t0);
-
return true;
}
--
2.34.1
- [PATCH 33/76] target/m68k: Drop mark_to_release, (continued)
- [PATCH 33/76] target/m68k: Drop mark_to_release, Richard Henderson, 2023/02/25
- [PATCH 34/76] target/m68k: Drop free_cond, Richard Henderson, 2023/02/25
- [PATCH 35/76] target/m68k: Drop tcg_temp_free, Richard Henderson, 2023/02/25
- [PATCH 38/76] target/mips: Drop tcg_temp_free from mips16e_translate.c.inc, Richard Henderson, 2023/02/25
- [PATCH 39/76] target/mips: Drop tcg_temp_free from msa_translate.c, Richard Henderson, 2023/02/25
- [PATCH 40/76] target/mips: Drop tcg_temp_free from mxu_translate.c, Richard Henderson, 2023/02/25
- [PATCH 41/76] target/mips: Drop tcg_temp_free from nanomips_translate.c.inc, Richard Henderson, 2023/02/25
- [PATCH 43/76] target/mips: Drop tcg_temp_free from translate_addr_const.c, Richard Henderson, 2023/02/25
- [PATCH 45/76] target/mips: Fix trans_mult_acc return, Richard Henderson, 2023/02/25
- [PATCH 42/76] target/mips: Drop tcg_temp_free from octeon_translate.c,
Richard Henderson <=
- [PATCH 44/76] target/mips: Drop tcg_temp_free from tx79_translate.c, Richard Henderson, 2023/02/25
- [PATCH 46/76] target/mips: Drop tcg_temp_free from vr54xx_translate.c, Richard Henderson, 2023/02/25
- [PATCH 47/76] target/mips: Drop tcg_temp_free from translate.c, Richard Henderson, 2023/02/25
- [PATCH 48/76] target/nios2: Drop tcg_temp_free, Richard Henderson, 2023/02/25
- [PATCH 52/76] target/riscv: Drop temp_new, Richard Henderson, 2023/02/25
- [PATCH 49/76] target/openrisc: Drop tcg_temp_free, Richard Henderson, 2023/02/25
- [PATCH 50/76] target/ppc: Drop tcg_temp_free, Richard Henderson, 2023/02/25