i386.md (add->lea splitter): Implement using SWI mode iterator.
authorUros Bizjak <ubizjak@gmail.com>
Tue, 26 Jul 2011 16:04:53 +0000 (18:04 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Tue, 26 Jul 2011 16:04:53 +0000 (18:04 +0200)
* config/i386/i386.md (add->lea splitter): Implement using SWI
mode iterator.  Change operand 2 predicate to <nonmemory_operand>.
(add->lea zext splitter): Change operand 2 predicate to
x86_64_nonmemory_operand.

From-SVN: r176795

gcc/ChangeLog
gcc/config/i386/i386.md

index 0177df886883700106ba96c8057434e8481d8214..ab5aaff9003c69cd74617e50e3f23a0e3417c959 100644 (file)
@@ -1,3 +1,10 @@
+2011-07-26  Uros Bizjak  <ubizjak@gmail.com>
+
+       * config/i386/i386.md (add->lea splitter): Implement using SWI
+       mode iterator.  Change operand 2 predicate to <nonmemory_operand>.
+       (add->lea zext splitter): Change operand 2 predicate to
+       x86_64_nonmemory_operand.
+
 2011-07-26  Richard Guenther  <rguenther@suse.de>
 
        * predict.c (maybe_hot_frequency_p): Make sure a zero entry-block
index 98d60ec8ae1e819dd246cd8b06644b4259935ea7..e91a2999ffb5a47d9035b337c7e11fb8aa68ba3c 100644 (file)
 
 ;; Convert add to the lea pattern to avoid flags dependency.
 (define_split
-  [(set (match_operand 0 "register_operand" "")
-       (plus (match_operand 1 "register_operand" "")
-              (match_operand 2 "nonmemory_operand" "")))
+  [(set (match_operand:SWI 0 "register_operand" "")
+       (plus (match_operand:SWI 1 "register_operand" "")
+              (match_operand:SWI 2 "<nonmemory_operand>" "")))
    (clobber (reg:CC FLAGS_REG))]
-  "GET_MODE (operands[0]) == GET_MODE (operands[1])
-   && (GET_MODE (operands[0]) == GET_MODE (operands[2])
-       || GET_MODE (operands[2]) == VOIDmode)
-   && reload_completed && ix86_lea_for_add_ok (insn, operands)" 
+  "reload_completed && ix86_lea_for_add_ok (insn, operands)" 
   [(const_int 0)]
 {
-  enum machine_mode mode = GET_MODE (operands[0]);
+  enum machine_mode mode = <MODE>mode;
   rtx pat;
 
   if (GET_MODE_SIZE (mode) < GET_MODE_SIZE (SImode))
   DONE;
 })
 
-;; Convert add to the lea pattern to avoid flags dependency.
-;; ??? This pattern handles immediate operands that do not satisfy immediate
-;; operand predicate (TARGET_LEGITIMATE_CONSTANT_P) in the previous pattern.
-(define_split
-  [(set (match_operand:DI 0 "register_operand" "")
-       (plus:DI (match_operand:DI 1 "register_operand" "")
-                (match_operand:DI 2 "x86_64_immediate_operand" "")))
-   (clobber (reg:CC FLAGS_REG))]
-  "TARGET_64BIT && reload_completed 
-   && true_regnum (operands[0]) != true_regnum (operands[1])"
-  [(set (match_dup 0)
-       (plus:DI (match_dup 1) (match_dup 2)))])
-
 ;; Convert add to the lea pattern to avoid flags dependency.
 (define_split
   [(set (match_operand:DI 0 "register_operand" "")
        (zero_extend:DI
          (plus:SI (match_operand:SI 1 "register_operand" "")
-                  (match_operand:SI 2 "nonmemory_operand" ""))))
+                  (match_operand:SI 2 "x86_64_nonmemory_operand" ""))))
    (clobber (reg:CC FLAGS_REG))]
-  "TARGET_64BIT && reload_completed
-   && ix86_lea_for_add_ok (insn, operands)"
+  "TARGET_64BIT && reload_completed && ix86_lea_for_add_ok (insn, operands)"
   [(set (match_dup 0)
        (zero_extend:DI (plus:SI (match_dup 1) (match_dup 2))))])