]> git.proxmox.com Git - qemu.git/commitdiff
tcg-s390: Implement mulu2_i64 opcode
authorRichard Henderson <rth@twiddle.net>
Tue, 26 Mar 2013 20:50:29 +0000 (16:50 -0400)
committerRichard Henderson <rth@twiddle.net>
Fri, 5 Apr 2013 18:35:40 +0000 (13:35 -0500)
Signed-off-by: Richard Henderson <rth@twiddle.net>
tcg/s390/tcg-target.c
tcg/s390/tcg-target.h

index b00776371d6b4f873b2c0c28ed767e55ac4f1d76..81e2f6ab4cc1aae0a5409a49f2afcc7660d8637c 100644 (file)
@@ -147,6 +147,7 @@ typedef enum S390Opcode {
     RRE_LRVR    = 0xb91f,
     RRE_LRVGR   = 0xb90f,
     RRE_LTGR    = 0xb902,
+    RRE_MLGR    = 0xb986,
     RRE_MSGR    = 0xb90c,
     RRE_MSR     = 0xb252,
     RRE_NGR     = 0xb980,
@@ -1981,6 +1982,9 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
     case INDEX_op_divu2_i64:
         tcg_out_insn(s, RRE, DLGR, TCG_REG_R2, args[4]);
         break;
+    case INDEX_op_mulu2_i64:
+        tcg_out_insn(s, RRE, MLGR, TCG_REG_R2, args[3]);
+        break;
 
     case INDEX_op_shl_i64:
         op = RSY_SLLG;
@@ -2156,6 +2160,7 @@ static const TCGTargetOpDef s390_op_defs[] = {
 
     { INDEX_op_div2_i64, { "b", "a", "0", "1", "r" } },
     { INDEX_op_divu2_i64, { "b", "a", "0", "1", "r" } },
+    { INDEX_op_mulu2_i64, { "b", "a", "0", "r" } },
 
     { INDEX_op_and_i64, { "r", "0", "rA" } },
     { INDEX_op_or_i64, { "r", "0", "rO" } },
index da726bd5fdbaf2534a3b572633f08d60916e538f..c0cb7141e78ba4ce221f784884b60aded38fc4b9 100644 (file)
@@ -92,7 +92,7 @@ typedef enum TCGReg {
 #define TCG_TARGET_HAS_movcond_i64      0
 #define TCG_TARGET_HAS_add2_i64         1
 #define TCG_TARGET_HAS_sub2_i64         1
-#define TCG_TARGET_HAS_mulu2_i64        0
+#define TCG_TARGET_HAS_mulu2_i64        1
 #define TCG_TARGET_HAS_muls2_i64        0
 
 /* used for function call generation */