ppc64: widening multiply patterns
authorRichard Henderson <rth@redhat.com>
Fri, 1 Feb 2013 16:34:15 +0000 (08:34 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Fri, 1 Feb 2013 16:34:15 +0000 (08:34 -0800)
        * config/rs6000/rs6000.md (smulditi3): New.
        (umulditi3): New.

From-SVN: r195667

gcc/ChangeLog
gcc/config/rs6000/rs6000.md

index 8c37f919bb2ec1a6746018e8a3f0389ebb58e48e..dd9224dd98668d0e865a44153e02c3f75986ee7a 100644 (file)
@@ -1,3 +1,8 @@
+2013-02-01  Richard Henderson <rth@redhat.com>
+
+       * config/rs6000/rs6000.md (smulditi3): New.
+       (umulditi3): New.
+
 2013-02-01  David Edelsohn  <dje.gcc@gmail.com>
 
        * config/rs6000/xcoff.h (ASM_OUTPUT_ALIGNED_COMMON): Use floor_log2.
index a4af648a31950b31ee3996a7a937ebc370b7ef93..b3db6817647e08803c87524320975311d7b2ef55 100644 (file)
   "mulhdu %0,%1,%2"
   [(set_attr "type" "lmul")])
 
+(define_expand "mulditi3"
+  [(set (match_operand:TI 0 "gpc_reg_operand")
+       (mult:TI (sign_extend:TI (match_operand:DI 1 "gpc_reg_operand"))
+                (sign_extend:TI (match_operand:DI 2 "gpc_reg_operand"))))]
+  "TARGET_POWERPC64"
+{
+  rtx l = gen_reg_rtx (DImode), h = gen_reg_rtx (DImode);
+  emit_insn (gen_muldi3 (l, operands[1], operands[2]));
+  emit_insn (gen_smuldi3_highpart (h, operands[1], operands[2]));
+  emit_move_insn (gen_lowpart (DImode, operands[0]), l);
+  emit_move_insn (gen_highpart (DImode, operands[0]), h);
+  DONE;
+})
+
+(define_expand "umulditi3"
+  [(set (match_operand:TI 0 "gpc_reg_operand")
+       (mult:TI (zero_extend:TI (match_operand:DI 1 "gpc_reg_operand"))
+                (zero_extend:TI (match_operand:DI 2 "gpc_reg_operand"))))]
+  "TARGET_POWERPC64"
+{
+  rtx l = gen_reg_rtx (DImode), h = gen_reg_rtx (DImode);
+  emit_insn (gen_muldi3 (l, operands[1], operands[2]));
+  emit_insn (gen_umuldi3_highpart (h, operands[1], operands[2]));
+  emit_move_insn (gen_lowpart (DImode, operands[0]), l);
+  emit_move_insn (gen_highpart (DImode, operands[0]), h);
+  DONE;
+})
+
 (define_insn "rotldi3"
   [(set (match_operand:DI 0 "gpc_reg_operand" "=r,r")
        (rotate:DI (match_operand:DI 1 "gpc_reg_operand" "r,r")