i386: Robustify V2QI and V4QI move patterns
authorUros Bizjak <ubizjak@gmail.com>
Fri, 7 Jan 2022 19:40:35 +0000 (20:40 +0100)
committerUros Bizjak <ubizjak@gmail.com>
Fri, 7 Jan 2022 19:41:30 +0000 (20:41 +0100)
Add sse2 isa attribute where needed and remove where not needed.

2022-01-07  Uroš Bizjak  <ubizjak@gmail.com>

gcc/ChangeLog:

* config/i386/mmx.md (*move<V_32:mode>_internal): Add isa attribute.
(*movv2qi_internal): Remve sse2 requirement for alternatives 4,5.

gcc/config/i386/mmx.md

index 8e0a649..4fc3e00 100644 (file)
       gcc_unreachable ();
     }
 }
-  [(set (attr "type")
+  [(set (attr "isa")
+     (cond [(eq_attr "alternative" "6,7")
+             (const_string "sse2")
+          ]
+          (const_string "*")))
+   (set (attr "type")
      (cond [(eq_attr "alternative" "2")
              (const_string "sselog1")
            (eq_attr "alternative" "3,4,5,6,7")
                       (const_string "V4SF")
                     (match_test "TARGET_AVX")
                       (const_string "TI")
-                    (match_test "optimize_function_for_size_p (cfun)")
+                    (ior (not (match_test "TARGET_SSE2"))
+                         (match_test "optimize_function_for_size_p (cfun)"))
                       (const_string "V4SF")
                    ]
                    (const_string "TI"))
+
            (and (eq_attr "alternative" "4,5")
-                (match_test "<MODE>mode == V2HFmode"))
+                (ior (match_test "<MODE>mode == V2HFmode")
+                     (not (match_test "TARGET_SSE2"))))
              (const_string "SF")
           ]
           (const_string "SI")))
     }
 }
   [(set (attr "isa")
-       (cond [(eq_attr "alternative" "4,5,6,8,9")
+       (cond [(eq_attr "alternative" "6,8,9")
                  (const_string "sse2")
               (eq_attr "alternative" "7")
                  (const_string "sse4")