mirror of https://github.com/xemu-project/xemu.git
target/mips: Drop tcg_temp_free from msa_translate.c
Translators are no longer required to free tcg temporaries. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
a85f83a040
commit
ac66a187d8
|
@ -217,8 +217,6 @@ static void gen_check_zero_element(TCGv tresult, uint8_t df, uint8_t wt,
|
|||
/* if some bit is non-zero then some element is zero */
|
||||
tcg_gen_setcondi_i64(cond, t0, t0, 0);
|
||||
tcg_gen_trunc_i64_tl(tresult, t0);
|
||||
tcg_temp_free_i64(t0);
|
||||
tcg_temp_free_i64(t1);
|
||||
}
|
||||
|
||||
static bool gen_msa_BxZ_V(DisasContext *ctx, int wt, int sa, TCGCond cond)
|
||||
|
@ -237,7 +235,6 @@ static bool gen_msa_BxZ_V(DisasContext *ctx, int wt, int sa, TCGCond cond)
|
|||
tcg_gen_or_i64(t0, msa_wr_d[wt << 1], msa_wr_d[(wt << 1) + 1]);
|
||||
tcg_gen_setcondi_i64(cond, t0, t0, 0);
|
||||
tcg_gen_trunc_i64_tl(bcond, t0);
|
||||
tcg_temp_free_i64(t0);
|
||||
|
||||
ctx->btarget = ctx->base.pc_next + (sa << 2) + 4;
|
||||
|
||||
|
@ -545,8 +542,6 @@ static bool trans_CTCMSA(DisasContext *ctx, arg_msa_elm *a)
|
|||
gen_load_gpr(telm, a->ws);
|
||||
gen_helper_msa_ctcmsa(cpu_env, telm, tcg_constant_i32(a->wd));
|
||||
|
||||
tcg_temp_free(telm);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -563,8 +558,6 @@ static bool trans_CFCMSA(DisasContext *ctx, arg_msa_elm *a)
|
|||
gen_helper_msa_cfcmsa(telm, cpu_env, tcg_constant_i32(a->ws));
|
||||
gen_store_gpr(telm, a->wd);
|
||||
|
||||
tcg_temp_free(telm);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -782,8 +775,6 @@ static bool trans_msa_ldst(DisasContext *ctx, arg_msa_i *a,
|
|||
gen_base_offset_addr(ctx, taddr, a->ws, a->sa << a->df);
|
||||
gen_msa_ldst(cpu_env, tcg_constant_i32(a->wd), taddr);
|
||||
|
||||
tcg_temp_free(taddr);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue