[Patch combine] Don't create vector mode ZERO_EXTEND from subregs
authorJames Greenhalgh <james.greenhalgh@arm.com>
Tue, 12 Dec 2017 11:27:54 +0000 (11:27 +0000)
committerJames Greenhalgh <jgreenhalgh@gcc.gnu.org>
Tue, 12 Dec 2017 11:27:54 +0000 (11:27 +0000)
The code in simplify set to handle transforming the paradoxical subreg
expression:

  (set FOO (subreg:M (mem:N BAR) 0))

in to:

  (set FOO (zero_extend:M (mem:N BAR)))

Does not consider the case where M is a vector mode, allowing it to
construct (for example):

  (zero_extend:V4SI (mem:SI))

For one, this has the wrong semantics - but fortunately we fail long
before then in expand_compound_operation.

We need to explicitly reject vector modes from this transformation.

gcc/

* combine.c (simplify_set): Do not transform subregs to zero_extends
if the destination mode is a vector mode.

From-SVN: r255578

gcc/ChangeLog
gcc/combine.c

index 8c24c0ec722b21c85243b0a9c06af18d97e59de7..ae7adbcf08afcb775ce28fdf106d034f80a3a7da 100644 (file)
@@ -1,3 +1,8 @@
+2017-12-12  James Greenhalgh  <james.greenhalgh@arm.com>
+
+       * combine.c (simplify_set): Do not transform subregs to zero_extends
+       if the destination mode is a vector mode.
+
 2017-12-12  Jakub Jelinek  <jakub@redhat.com>
 
        PR tree-optimization/83359
index f4e94450c094c44b2569bc46dad0406d9a1efb3c..b6410c3afb0b96105fce90f15bd95ae69eb09853 100644 (file)
@@ -6962,11 +6962,13 @@ simplify_set (rtx x)
 
   /* If we have (set FOO (subreg:M (mem:N BAR) 0)) with M wider than N, this
      would require a paradoxical subreg.  Replace the subreg with a
-     zero_extend to avoid the reload that would otherwise be required.  */
+     zero_extend to avoid the reload that would otherwise be required.
+     Don't do this for vector modes, as the transformation is incorrect.  */
 
   enum rtx_code extend_op;
   if (paradoxical_subreg_p (src)
       && MEM_P (SUBREG_REG (src))
+      && !VECTOR_MODE_P (GET_MODE (src))
       && (extend_op = load_extend_op (GET_MODE (SUBREG_REG (src)))) != UNKNOWN)
     {
       SUBST (SET_SRC (x),