* config/mips/7000.md (rm7_impy_si_mult): Just match imul and imadd.
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 May 2005 20:03:39 +0000 (20:03 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 May 2005 20:03:39 +0000 (20:03 +0000)
Remove hilo_operand check.
(rm7_impy_si_mul): Just match imul3.  Remove hilo_operand check.
* config/mips/predicates.md (hilo_operand): Delete.

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

gcc/ChangeLog
gcc/config/mips/7000.md
gcc/config/mips/predicates.md

index d5278ce..afbf5af 100644 (file)
@@ -1,5 +1,12 @@
 2005-05-11  Richard Sandiford  <rsandifo@redhat.com>
 
+       * config/mips/7000.md (rm7_impy_si_mult): Just match imul and imadd.
+       Remove hilo_operand check.
+       (rm7_impy_si_mul): Just match imul3.  Remove hilo_operand check.
+       * config/mips/predicates.md (hilo_operand): Delete.
+
+2005-05-11  Richard Sandiford  <rsandifo@redhat.com>
+
        * config/mips/sr71k.md, config/mips/7000.md: Reformat.
 
 2005-05-11  Kazu Hirata  <kazu@cs.umass.edu>
index a520e08..9f04039 100644 (file)
 
 (define_insn_reservation "rm7_impy_si_mult" 5
   (and (eq_attr "cpu" "r7000")
-       (and (eq_attr "type" "imul,imul3,imadd")
-           (and (eq_attr "mode" "SI")
-                (match_operand 0 "hilo_operand"))))
+       (and (eq_attr "type" "imul,imadd")
+           (eq_attr "mode" "SI")))
   "rm7_impydiv+(rm7_impydiv_iter*3)")
 
 ;; There are an additional 2 stall cycles.
 (define_insn_reservation "rm7_impy_si_mul" 2
   (and (eq_attr "cpu" "r7000")
-       (and (eq_attr "type" "imul,imul3,imadd")
-           (and (eq_attr "mode" "SI")
-                (not (match_operand 0 "hilo_operand")))))
+       (and (eq_attr "type" "imul3")
+           (eq_attr "mode" "SI")))
   "rm7_impydiv")
 
 (define_insn_reservation "rm7_impy_di" 9
index 9e9acda..d486cfc 100644 (file)
   (and (match_code "reg")
        (match_test "FP_REG_P (REGNO (op))")))
 
-(define_predicate "hilo_operand"
-  (and (match_code "reg")
-       (match_test "MD_REG_P (REGNO (op))")))
-
 (define_predicate "lo_operand"
   (and (match_code "reg")
        (match_test "REGNO (op) == LO_REGNUM")))