re PR tree-optimization/68961 (Test case gcc.target/powerpc/pr60203.c fails since...
authorRichard Biener <rguenther@suse.de>
Wed, 29 Jun 2016 07:52:35 +0000 (07:52 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Wed, 29 Jun 2016 07:52:35 +0000 (07:52 +0000)
2016-06-29  Richard Biener  <rguenther@suse.de>

PR rtl-optimization/68961
* simplify-rtx.c (simplify_subreg): Handle VEC_CONCAT like CONCAT.

From-SVN: r237840

gcc/ChangeLog
gcc/simplify-rtx.c

index e57c1a9b8340594fc02f9ce17aff49fdf7797ebe..7f6dcb3866bc8c04d1e4e935a85168448fc104f7 100644 (file)
@@ -1,3 +1,8 @@
+2016-06-29  Richard Biener  <rguenther@suse.de>
+
+       PR rtl-optimization/68961
+       * simplify-rtx.c (simplify_subreg): Handle VEC_CONCAT like CONCAT.
+
 2016-06-29  Richard Biener  <rguenther@suse.de>
 
        PR middle-end/71002
index 2203ff703eab56d06b7ffa44890eedb8e1b9cd98..a23a6f51cde61d57de8d334f6b7b950784cb6a2c 100644 (file)
@@ -6108,9 +6108,10 @@ simplify_subreg (machine_mode outermode, rtx op,
       && GET_MODE_SIZE (outermode) <= GET_MODE_SIZE (GET_MODE (op)))
     return adjust_address_nv (op, outermode, byte);
 
-  /* Handle complex values represented as CONCAT
-     of real and imaginary part.  */
-  if (GET_CODE (op) == CONCAT)
+  /* Handle complex or vector values represented as CONCAT or VEC_CONCAT
+     of two parts.  */
+  if (GET_CODE (op) == CONCAT
+      || GET_CODE (op) == VEC_CONCAT)
     {
       unsigned int part_size, final_offset;
       rtx part, res;
@@ -6130,10 +6131,13 @@ simplify_subreg (machine_mode outermode, rtx op,
       if (final_offset + GET_MODE_SIZE (outermode) > part_size)
        return NULL_RTX;
 
-      res = simplify_subreg (outermode, part, GET_MODE (part), final_offset);
+      enum machine_mode part_mode = GET_MODE (part);
+      if (part_mode == VOIDmode)
+       part_mode = GET_MODE_INNER (GET_MODE (op));
+      res = simplify_subreg (outermode, part, part_mode, final_offset);
       if (res)
        return res;
-      if (validate_subreg (outermode, GET_MODE (part), part, final_offset))
+      if (validate_subreg (outermode, part_mode, part, final_offset))
        return gen_rtx_SUBREG (outermode, part, final_offset);
       return NULL_RTX;
     }