提交 c407df81 编写于 作者: A aurel32

target-mips: optimize gen_flt_ldst()

Signed-off-by: NAurelien Jarno <aurelien@aurel32.net>

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7125 c046a42c-6fe2-441c-8c8c-71466251a162
上级 8e0f950d
......@@ -1180,12 +1180,10 @@ static void gen_flt_ldst (DisasContext *ctx, uint32_t opc, int ft,
case OPC_LWC1:
{
TCGv_i32 fp0 = tcg_temp_new_i32();
TCGv t1 = tcg_temp_new();
tcg_gen_qemu_ld32s(t1, t0, ctx->mem_idx);
tcg_gen_trunc_tl_i32(fp0, t1);
tcg_gen_qemu_ld32s(t0, t0, ctx->mem_idx);
tcg_gen_trunc_tl_i32(fp0, t0);
gen_store_fpr32(fp0, ft);
tcg_temp_free(t1);
tcg_temp_free_i32(fp0);
}
opn = "lwc1";
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册