OSDN Git Service

* config/m32c/muldiv.md (mulhisi3_c): Limit the mode of the 2nd
authordj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 7 May 2007 23:46:02 +0000 (23:46 +0000)
committerdj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 7 May 2007 23:46:02 +0000 (23:46 +0000)
operand to HI mode.
(mulsi3): New.
(divsi3): New.
(udivsi3): New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@124524 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/m32c/muldiv.md

index 9452c04..a7df7b0 100644 (file)
@@ -1,3 +1,11 @@
+2007-05-07   Naveen.H.S  <naveen.hs@kpitcummins.com>
+
+       * config/m32c/muldiv.md (mulhisi3_c): Limit the mode of the 2nd
+       operand to HI mode.
+       (mulsi3): New.
+       (divsi3): New.
+       (udivsi3): New.
+
 2007-05-07  Jayant Sonar  <jayants@kpitcummins.com>
 
        * config/m32c/m32c.c (SYMBOL_FLAG_FUNCVEC_FUNCTION): Define.
index 6913ea9..b6c6565 100644 (file)
@@ -82,7 +82,7 @@
 (define_insn "mulhisi3_c"
   [(set (match_operand:SI 0 "ra_operand" "=Rsi")
         (mult:SI (sign_extend:SI (match_operand:HI 1 "mra_operand" "%0"))
-                 (match_operand 2 "immediate_operand" "i")))]
+                 (match_operand:HI 2 "immediate_operand" "i")))]
   ""
   "mul.w\t%2,%1"
   [(set_attr "flags" "o")]
      }"
   )
 
-
+(define_insn "mulsi3"
+  [(set (match_operand:SI 0 "r0123_operand" "=R02,R02")
+        (mult:SI (match_operand:SI 1 "r0123_operand" "%0,0")
+                 (match_operand:SI 2 "mra_operand" "RsiSd,?Rmm")))]
+  "TARGET_M32C"
+  "mul.l\t%2,%1"
+  [(set_attr "flags" "o")]
+)
 
 (define_expand "divmodqi4"
   [(set (match_dup 4)
   "divu.w\t%2"
   [(set_attr "flags" "o")]
   )
+
+(define_insn "divsi3"
+  [(set (match_operand:SI 0 "r0123_operand" "=R02,R02")
+        (div:SI (match_operand:SI 1 "r0123_operand" "0,0")
+                (match_operand:SI 2 "mra_operand" "RsiSd,?Rmm")))]
+  "TARGET_M32C"
+  "div.l\t%2"
+  [(set_attr "flags" "o")]
+)
+
+(define_insn "udivsi3"
+  [(set (match_operand:SI 0 "r0123_operand" "=R02,R02")
+        (udiv:SI (match_operand:SI 1 "r0123_operand" "0,0")
+                 (match_operand:SI 2 "mra_operand" "RsiSd,?Rmm")))]
+  "TARGET_M32C"
+  "divu.l\t%2"
+  [(set_attr "flags" "o")]
+)
+
+