]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* config/aarch64/aarch64.c (aarch64_classify_address)
authorBin Cheng <bin.cheng@arm.com>
Wed, 4 Jun 2014 03:45:50 +0000 (03:45 +0000)
committerBin Cheng <amker@gcc.gnu.org>
Wed, 4 Jun 2014 03:45:50 +0000 (03:45 +0000)
(aarch64_legitimize_reload_address): Support full addressing modes
for vector modes.
* config/aarch64/aarch64.md (mov<mode>, movmisalign<mode>)
(*aarch64_simd_mov<mode>, *aarch64_simd_mov<mode>): Relax predicates.

From-SVN: r211211

gcc/ChangeLog
gcc/config/aarch64/aarch64-simd.md
gcc/config/aarch64/aarch64.c

index ece0da1eee6aea15886206de5b50ddf7b870cdb2..c188d41d3f5cebfd2bb8bd0389a0fa15073ad5d4 100644 (file)
@@ -1,3 +1,11 @@
+2014-06-04  Bin Cheng  <bin.cheng@arm.com>
+
+       * config/aarch64/aarch64.c (aarch64_classify_address)
+       (aarch64_legitimize_reload_address): Support full addressing modes
+       for vector modes.
+       * config/aarch64/aarch64.md (mov<mode>, movmisalign<mode>)
+       (*aarch64_simd_mov<mode>, *aarch64_simd_mov<mode>): Relax predicates.
+
 2014-06-03  Andrew Pinski  <apinski@cavium.com>
 
        * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Allow non comparisons
index a1f0ff53eb3858466b274d29056221b131255329..8b3cfa19ccd50705c2fab91a52c889f74af4a070 100644 (file)
@@ -19,8 +19,8 @@
 ;; <http://www.gnu.org/licenses/>.
 
 (define_expand "mov<mode>"
-  [(set (match_operand:VALL 0 "aarch64_simd_nonimmediate_operand" "")
-       (match_operand:VALL 1 "aarch64_simd_general_operand" ""))]
+  [(set (match_operand:VALL 0 "nonimmediate_operand" "")
+       (match_operand:VALL 1 "general_operand" ""))]
   "TARGET_SIMD"
   "
     if (GET_CODE (operands[0]) == MEM)
@@ -29,8 +29,8 @@
 )
 
 (define_expand "movmisalign<mode>"
-  [(set (match_operand:VALL 0 "aarch64_simd_nonimmediate_operand" "")
-        (match_operand:VALL 1 "aarch64_simd_general_operand" ""))]
+  [(set (match_operand:VALL 0 "nonimmediate_operand" "")
+        (match_operand:VALL 1 "general_operand" ""))]
   "TARGET_SIMD"
 {
   /* This pattern is not permitted to fail during expansion: if both arguments
@@ -91,9 +91,9 @@
 )
 
 (define_insn "*aarch64_simd_mov<mode>"
-  [(set (match_operand:VD 0 "aarch64_simd_nonimmediate_operand"
+  [(set (match_operand:VD 0 "nonimmediate_operand"
                "=w, m,  w, ?r, ?w, ?r, w")
-       (match_operand:VD 1 "aarch64_simd_general_operand"
+       (match_operand:VD 1 "general_operand"
                "m,  w,  w,  w,  r,  r, Dn"))]
   "TARGET_SIMD
    && (register_operand (operands[0], <MODE>mode)
 )
 
 (define_insn "*aarch64_simd_mov<mode>"
-  [(set (match_operand:VQ 0 "aarch64_simd_nonimmediate_operand"
+  [(set (match_operand:VQ 0 "nonimmediate_operand"
                "=w, m,  w, ?r, ?w, ?r, w")
-       (match_operand:VQ 1 "aarch64_simd_general_operand"
+       (match_operand:VQ 1 "general_operand"
                "m,  w,  w,  w,  r,  r, Dn"))]
   "TARGET_SIMD
    && (register_operand (operands[0], <MODE>mode)
index 3d5f48ce26a74a764ffda9ffe6534737b123c25b..b26e5f54fae40c65f46f4a644391a9eb460262e3 100644 (file)
@@ -3158,11 +3158,11 @@ aarch64_classify_address (struct aarch64_address_info *info,
   enum rtx_code code = GET_CODE (x);
   rtx op0, op1;
   bool allow_reg_index_p =
-    outer_code != PARALLEL && GET_MODE_SIZE(mode) != 16;
-
+    outer_code != PARALLEL && (GET_MODE_SIZE (mode) != 16
+                              || aarch64_vector_mode_supported_p (mode));
   /* Don't support anything other than POST_INC or REG addressing for
      AdvSIMD.  */
-  if (aarch64_vector_mode_p (mode)
+  if (aarch64_vect_struct_mode_p (mode)
       && (code != POST_INC && code != REG))
     return false;
 
@@ -4092,8 +4092,8 @@ aarch64_legitimize_reload_address (rtx *x_p,
 {
   rtx x = *x_p;
 
-  /* Do not allow mem (plus (reg, const)) if vector mode.  */
-  if (aarch64_vector_mode_p (mode)
+  /* Do not allow mem (plus (reg, const)) if vector struct mode.  */
+  if (aarch64_vect_struct_mode_p (mode)
       && GET_CODE (x) == PLUS
       && REG_P (XEXP (x, 0))
       && CONST_INT_P (XEXP (x, 1)))