]> Git Repo - qemu.git/commitdiff
target/sh4: Simplify 64-bit fp reg-reg move
authorRichard Henderson <[email protected]>
Tue, 18 Jul 2017 20:02:42 +0000 (10:02 -1000)
committerAurelien Jarno <[email protected]>
Tue, 18 Jul 2017 21:39:17 +0000 (23:39 +0200)
We do not need to form full 64-bit quantities in order to perform
the move.  This reduces code expansion on 64-bit hosts.

Reviewed-by: Aurelien Jarno <[email protected]>
Signed-off-by: Richard Henderson <[email protected]>
Message-Id: <20170718200255[email protected]>
Signed-off-by: Aurelien Jarno <[email protected]>
target/sh4/translate.c

index 7dfe23d1f419cabff1dc6ed87e90bdfc9af7e908..792a46804bb723a18e407ea1c2ca49849e39a568 100644 (file)
@@ -981,10 +981,10 @@ static void _decode_opc(DisasContext * ctx)
     case 0xf00c: /* fmov {F,D,X}Rm,{F,D,X}Rn - FPSCR: Nothing */
        CHECK_FPU_ENABLED
         if (ctx->tbflags & FPSCR_SZ) {
-           TCGv_i64 fp = tcg_temp_new_i64();
-            gen_load_fpr64(ctx, fp, XHACK(B7_4));
-            gen_store_fpr64(ctx, fp, XHACK(B11_8));
-           tcg_temp_free_i64(fp);
+            int xsrc = XHACK(B7_4);
+            int xdst = XHACK(B11_8);
+            tcg_gen_mov_i32(FREG(xdst), FREG(xsrc));
+            tcg_gen_mov_i32(FREG(xdst + 1), FREG(xsrc + 1));
        } else {
             tcg_gen_mov_i32(FREG(B11_8), FREG(B7_4));
        }
This page took 0.03013 seconds and 4 git commands to generate.