]> Git Repo - qemu.git/commitdiff
target-tricore: add missing 64-bit MOV in RLC format
authorAlex Zuepke <[email protected]>
Fri, 12 Dec 2014 14:10:29 +0000 (15:10 +0100)
committerBastian Koppelmann <[email protected]>
Sun, 21 Dec 2014 18:32:27 +0000 (18:32 +0000)
Signed-off-by: Alex Zuepke <[email protected]>
Reviewed-by: Bastian Koppelmann <[email protected]>
Signed-off-by: Bastian Koppelmann <[email protected]>
target-tricore/translate.c
target-tricore/tricore-opcodes.h

index c1322238a7ebf01aca133f1e86a58028d35238ae..e3eeedba95864389107e14cce390765ac65cb23d 100644 (file)
@@ -3781,6 +3781,17 @@ static void decode_rlc_opc(CPUTriCoreState *env, DisasContext *ctx,
     case OPC1_32_RLC_MOV:
         tcg_gen_movi_tl(cpu_gpr_d[r2], const16);
         break;
+    case OPC1_32_RLC_MOV_64:
+        if (tricore_feature(env, TRICORE_FEATURE_16)) {
+            if ((r2 & 0x1) != 0) {
+                /* TODO: raise OPD trap */
+            }
+            tcg_gen_movi_tl(cpu_gpr_d[r2], const16);
+            tcg_gen_movi_tl(cpu_gpr_d[r2+1], const16 >> 15);
+        } else {
+            /* TODO: raise illegal opcode trap */
+        }
+        break;
     case OPC1_32_RLC_MOV_U:
         const16 = MASK_OP_RLC_CONST16(ctx->opcode);
         tcg_gen_movi_tl(cpu_gpr_d[r2], const16);
@@ -4021,6 +4032,7 @@ static void decode_32Bit_opc(CPUTriCoreState *env, DisasContext *ctx)
     case OPC1_32_RLC_ADDIH_A:
     case OPC1_32_RLC_MFCR:
     case OPC1_32_RLC_MOV:
+    case OPC1_32_RLC_MOV_64:
     case OPC1_32_RLC_MOV_U:
     case OPC1_32_RLC_MOV_H:
     case OPC1_32_RLC_MOVH_A:
index 7aa6aed4d3f4d85a61402bfe913b7b369e11e10d..a76a7e4c458b62c51f0a85204457510dc1d96be5 100644 (file)
@@ -487,6 +487,7 @@ enum {
     OPC1_32_RLC_ADDIH_A                              = 0x11,
     OPC1_32_RLC_MFCR                                 = 0x4d,
     OPC1_32_RLC_MOV                                  = 0x3b,
+    OPC1_32_RLC_MOV_64                               = 0xfb, /* 1.6 only */
     OPC1_32_RLC_MOV_U                                = 0xbb,
     OPC1_32_RLC_MOV_H                                = 0x7b,
     OPC1_32_RLC_MOVH_A                               = 0x91,
This page took 0.034304 seconds and 4 git commands to generate.