arm: MVE Fix immediate constraints on some vector instructions
authorAndre Simoes Dias Vieira <andre.simoesdiasvieira@arm.com>
Tue, 7 Apr 2020 14:26:03 +0000 (15:26 +0100)
committerAndre Vieira <andre.simoesdiasvieira@arm.com>
Tue, 7 Apr 2020 14:44:51 +0000 (15:44 +0100)
Hi,

This patch fixes the immediate checks on vcvt and vqshr(u)n[bt] instructions.
It also removes the 'arm_mve_immediate_check' as the check was wrong and the
error message is not much better than the constraint one, which albeit isn't
great either.

gcc/ChangeLog:
2020-04-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>

* config/arm/arm.c (arm_mve_immediate_check): Removed.
* config/arm/mve.md (MVE_pred2, MVE_constraint2): Added FP types.
(mve_vcvtq_n_to_f_*, mve_vcvtq_n_from_f_*, mve_vqshrnbq_n_*,
 mve_vqshrntq_n_*, mve_vqshrunbq_n_s*, mve_vqshruntq_n_s*,
 mve_vcvtq_m_n_from_f_*, mve_vcvtq_m_n_to_f_*, mve_vqshrnbq_m_n_*,
 mve_vqrshruntq_m_n_s*, mve_vqshrunbq_m_n_s*,
 mve_vqshruntq_m_n_s*): Fixed immediate constraints.

gcc/testsuite/ChangeLog:
2020-04-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>

* gcc.target/arm/mve/intrinsics/mve_immediates_1_n.c: New test.

gcc/ChangeLog
gcc/config/arm/arm.c
gcc/config/arm/mve.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/arm/mve/intrinsics/mve_immediates_1_n.c [new file with mode: 0644]

index 45825a881ba77ce2d45d539bf4d6c557f620ab3e..b9ee1817e006705717ade42cd36f761225d39fb7 100644 (file)
@@ -1,3 +1,13 @@
+2020-04-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>
+
+       * config/arm/arm.c (arm_mve_immediate_check): Removed.
+       * config/arm/mve.md (MVE_pred2, MVE_constraint2): Added FP types.
+       (mve_vcvtq_n_to_f_*, mve_vcvtq_n_from_f_*, mve_vqshrnbq_n_*,
+        mve_vqshrntq_n_*, mve_vqshrunbq_n_s*, mve_vqshruntq_n_s*,
+        mve_vcvtq_m_n_from_f_*, mve_vcvtq_m_n_to_f_*, mve_vqshrnbq_m_n_*,
+        mve_vqrshruntq_m_n_s*, mve_vqshrunbq_m_n_s*,
+        mve_vqshruntq_m_n_s*): Fixed immediate constraints.
+
 2020-04-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>
 
        * config/arm/arm.d (ashldi3): Don't use lsll for constant 32-bit shifts.
index 1af9d5cf145f6d01e364a1afd7ceb3df5da86c9a..cd0a49cdb63690d794981a73e1e7e0d47f6d1987 100644 (file)
@@ -32693,31 +32693,6 @@ arm_simd_check_vect_par_cnst_half_p (rtx op, machine_mode mode,
   return true;
 }
 
-/* To check op's immediate values matches the mode of the defined insn.  */
-bool
-arm_mve_immediate_check (rtx op, machine_mode mode, bool val)
-{
-  if (val)
-    {
-      if (((GET_CODE (op) == CONST_INT) && (INTVAL (op) <= 7)
-          && (mode == E_V16QImode))
-         || ((GET_CODE (op) == CONST_INT) && (INTVAL (op) <= 15)
-          && (mode == E_V8HImode))
-         || ((GET_CODE (op) == CONST_INT) && (INTVAL (op) <= 31)
-          && (mode == E_V4SImode)))
-       return true;
-    }
-  else
-    {
-      if (((GET_CODE (op) == CONST_INT) && (INTVAL (op) <= 7)
-          && (mode == E_V8HImode))
-         || ((GET_CODE (op) == CONST_INT) && (INTVAL (op) <= 15)
-          && (mode == E_V4SImode)))
-       return true;
-    }
-  return false;
-}
-
 /* Can output mi_thunk for all cases except for non-zero vcall_offset
    in Thumb1.  */
 static bool
index 4a506cc3861534b4ddc30ba8f4f3c4ec28a8cc69..3c75f9ebc70d5765a59934b944955c757b6b2195 100644 (file)
                        (VCTP64Q "64") (VCTP8Q_M "8") (VCTP16Q_M "16")
                        (VCTP32Q_M "32") (VCTP64Q_M "64")])
 (define_mode_attr MVE_pred2 [(V16QI "mve_imm_8") (V8HI "mve_imm_16")
-                            (V4SI "mve_imm_32")])
-(define_mode_attr MVE_constraint2 [(V16QI "Rb") (V8HI "Rd") (V4SI "Rf")])
+                            (V4SI "mve_imm_32")
+                            (V8HF "mve_imm_16") (V4SF "mve_imm_32")])
+(define_mode_attr MVE_constraint2 [(V16QI "Rb") (V8HI "Rd") (V4SI "Rf")
+                                   (V8HF "Rd") (V4SF "Rf")])
 (define_mode_attr MVE_LANES [(V16QI "16") (V8HI "8") (V4SI "4")])
 (define_mode_attr MVE_constraint [ (V16QI "Ra") (V8HI "Rc") (V4SI "Re")])
 (define_mode_attr MVE_pred [ (V16QI "mve_imm_7") (V8HI "mve_imm_15")
   [
    (set (match_operand:MVE_0 0 "s_register_operand" "=w")
        (unspec:MVE_0 [(match_operand:<MVE_CNVT> 1 "s_register_operand" "w")
-                      (match_operand:SI 2 "mve_imm_16" "Rd")]
+                      (match_operand:SI 2 "<MVE_pred2>" "<MVE_constraint2>")]
         VCVTQ_N_TO_F))
   ]
   "TARGET_HAVE_MVE && TARGET_HAVE_MVE_FLOAT"
   [
    (set (match_operand:MVE_5 0 "s_register_operand" "=w")
        (unspec:MVE_5 [(match_operand:<MVE_CNVT> 1 "s_register_operand" "w")
-                      (match_operand:SI 2 "mve_imm_16" "Rd")]
+                      (match_operand:SI 2 "<MVE_pred2>" "<MVE_constraint2>")]
         VCVTQ_N_FROM_F))
   ]
   "TARGET_HAVE_MVE && TARGET_HAVE_MVE_FLOAT"
    (set (match_operand:<V_narrow_pack> 0 "s_register_operand" "=w")
        (unspec:<V_narrow_pack> [(match_operand:<V_narrow_pack> 1 "s_register_operand" "0")
                       (match_operand:MVE_5 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "<MVE_pred1>" "<MVE_constraint1>")]
+                      (match_operand:SI 3 "<MVE_pred3>" "<MVE_constraint3>")]
         VQSHRNBQ_N))
   ]
   "TARGET_HAVE_MVE"
    (set (match_operand:<V_narrow_pack> 0 "s_register_operand" "=w")
        (unspec:<V_narrow_pack> [(match_operand:<V_narrow_pack> 1 "s_register_operand" "0")
                       (match_operand:MVE_5 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "mve_imm_8" "Rb")]
+                      (match_operand:SI 3 "<MVE_pred3>" "<MVE_constraint3>")]
         VQSHRNTQ_N))
   ]
   "TARGET_HAVE_MVE"
    (set (match_operand:<V_narrow_pack> 0 "s_register_operand" "=w")
        (unspec:<V_narrow_pack> [(match_operand:<V_narrow_pack> 1 "s_register_operand" "0")
                       (match_operand:MVE_5 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "immediate_operand" "i")]
+                      (match_operand:SI 3 "<MVE_pred3>" "<MVE_constraint3>")]
         VQSHRUNBQ_N_S))
   ]
   "TARGET_HAVE_MVE"
    (set (match_operand:<V_narrow_pack> 0 "s_register_operand" "=w")
        (unspec:<V_narrow_pack> [(match_operand:<V_narrow_pack> 1 "s_register_operand" "0")
                       (match_operand:MVE_5 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "mve_imm_8" "Rb")]
+                      (match_operand:SI 3 "<MVE_pred3>" "<MVE_constraint3>")]
         VQSHRUNTQ_N_S))
   ]
   "TARGET_HAVE_MVE"
    (set (match_operand:MVE_5 0 "s_register_operand" "=w")
        (unspec:MVE_5 [(match_operand:MVE_5 1 "s_register_operand" "0")
                       (match_operand:<MVE_CNVT> 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "mve_imm_16" "Rd")
+                      (match_operand:SI 3 "<MVE_pred2>" "<MVE_constraint2>")
                       (match_operand:HI 4 "vpr_register_operand" "Up")]
         VCVTQ_M_N_FROM_F))
   ]
    (set (match_operand:MVE_0 0 "s_register_operand" "=w")
        (unspec:MVE_0 [(match_operand:MVE_0 1 "s_register_operand" "0")
                       (match_operand:<MVE_CNVT> 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "mve_imm_16" "Rd")
+                      (match_operand:SI 3 "<MVE_pred2>" "<MVE_constraint2>")
                       (match_operand:HI 4 "vpr_register_operand" "Up")]
         VCVTQ_M_N_TO_F))
   ]
    (set (match_operand:<V_narrow_pack> 0 "s_register_operand" "=w")
        (unspec:<V_narrow_pack> [(match_operand:<V_narrow_pack> 1 "s_register_operand" "0")
                       (match_operand:MVE_5 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "<MVE_pred1>" "<MVE_constraint1>")
+                      (match_operand:SI 3 "<MVE_pred3>" "<MVE_constraint3>")
                       (match_operand:HI 4 "vpr_register_operand" "Up")]
         VQSHRNBQ_M_N))
   ]
-  "TARGET_HAVE_MVE && arm_mve_immediate_check (operands[3], <MODE>mode, 0)"
+  "TARGET_HAVE_MVE"
   "vpst\n\tvqshrnbt.<supf>%#<V_sz_elem>\t%q0, %q2, %3"
   [(set_attr "type" "mve_move")
    (set_attr "length""8")])
    (set (match_operand:<V_narrow_pack> 0 "s_register_operand" "=w")
        (unspec:<V_narrow_pack> [(match_operand:<V_narrow_pack> 1 "s_register_operand" "0")
                       (match_operand:MVE_5 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "mve_imm_8" "Rb")
+                      (match_operand:SI 3 "<MVE_pred3>" "<MVE_constraint3>")
                       (match_operand:HI 4 "vpr_register_operand" "Up")]
         VQSHRNTQ_M_N))
   ]
    (set (match_operand:<V_narrow_pack> 0 "s_register_operand" "=w")
        (unspec:<V_narrow_pack> [(match_operand:<V_narrow_pack> 1 "s_register_operand" "0")
                       (match_operand:MVE_5 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "mve_imm_8" "Rb")
+                      (match_operand:SI 3 "<MVE_pred3>" "<MVE_constraint3>")
                       (match_operand:HI 4 "vpr_register_operand" "Up")]
         VQRSHRUNTQ_M_N_S))
   ]
    (set (match_operand:<V_narrow_pack> 0 "s_register_operand" "=w")
        (unspec:<V_narrow_pack> [(match_operand:<V_narrow_pack> 1 "s_register_operand" "0")
                       (match_operand:MVE_5 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "mve_imm_8" "Rb")
+                      (match_operand:SI 3 "<MVE_pred3>" "<MVE_constraint3>")
                       (match_operand:HI 4 "vpr_register_operand" "Up")]
         VQSHRUNBQ_M_N_S))
   ]
    (set (match_operand:<V_narrow_pack> 0 "s_register_operand" "=w")
        (unspec:<V_narrow_pack> [(match_operand:<V_narrow_pack> 1 "s_register_operand" "0")
                       (match_operand:MVE_5 2 "s_register_operand" "w")
-                      (match_operand:SI 3 "mve_imm_8" "Rb")
+                      (match_operand:SI 3 "<MVE_pred3>" "<MVE_constraint3>")
                       (match_operand:HI 4 "vpr_register_operand" "Up")]
         VQSHRUNTQ_M_N_S))
   ]
index 3f3cf24c8a97f34362a2903a064162e5e0f1bf33..6b44c3484477fec0749ff64ecd2e2fb64617fa65 100644 (file)
@@ -1,3 +1,7 @@
+2020-04-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>
+
+       * gcc.target/arm/mve/intrinsics/mve_immediates_1_n.c: New test.
+
 2020-04-07  Andre Vieira  <andre.simoesdiasvieira@arm.com>
 
        * gcc.target/arm/mve/intrinsics/mve_load_from_array.c: New test.
diff --git a/gcc/testsuite/gcc.target/arm/mve/intrinsics/mve_immediates_1_n.c b/gcc/testsuite/gcc.target/arm/mve/intrinsics/mve_immediates_1_n.c
new file mode 100644 (file)
index 0000000..9ec6f98
--- /dev/null
@@ -0,0 +1,62 @@
+/* { dg-require-effective-target arm_v8_1m_mve_fp_ok } */
+/* { dg-add-options arm_v8_1m_mve_fp } */
+/* { dg-additional-options "-O2" } */
+
+#include "arm_mve.h"
+
+uint8x16_t u8;
+int8x16_t s8;
+uint16x8_t u16;
+int16x8_t s16;
+uint32x4_t u32;
+int32x4_t s32;
+float16x8_t f16;
+float32x4_t f32;
+
+#define MACRO_VCVT_NAME(__to1,__from1) \
+  vcvtq_n_##__to1 ## _ ##__from1
+
+#define MACRO_VCVT_NAME_P(__to1,__from1) \
+  vcvtq_m_n_##__to1 ## _ ##__from1
+
+#define VCVT_TEST(to,from,val) \
+  to = MACRO_VCVT_NAME(to,from) (from, val); \
+  to = MACRO_VCVT_NAME_P(to,from) (to, from, val, p);
+
+#define VQSHRN_TEST(to,from,val) \
+  to = vqshrnbq (to, from, val); \
+  to = vqshrntq (to, from, val); \
+  to = vqshrnbq_m (to, from, val, p); \
+  to = vqshrntq_m (to, from, val, p); \
+
+#define VQSHRUN_TEST(to,from,val) \
+  to = vqshrunbq (to, from, val); \
+  to = vqshruntq (to, from, val); \
+  to = vqshrunbq_m (to, from, val, p); \
+  to = vqshruntq_m (to, from, val, p); \
+
+void test (mve_pred16_t p)
+{
+  VCVT_TEST(f16,s16,16)
+  VCVT_TEST(f16,u16,16)
+  VCVT_TEST(f32,s32,32)
+  VCVT_TEST(f32,u32,32)
+  VCVT_TEST(u16,f16,16)
+  VCVT_TEST(s16,f16,16)
+  VCVT_TEST(u32,f32,32)
+  VCVT_TEST(s32,f32,32)
+  VCVT_TEST(f16,s16,1)
+  VCVT_TEST(f16,u16,1)
+  VCVT_TEST(f32,s32,1)
+  VCVT_TEST(f32,u32,1)
+  VCVT_TEST(u16,f16,1)
+  VCVT_TEST(s16,f16,1)
+  VCVT_TEST(u32,f32,1)
+  VCVT_TEST(s32,f32,1)
+  VQSHRN_TEST(u8, u16, 8)
+  VQSHRN_TEST(s8, s16, 8)
+  VQSHRN_TEST(u16, u32, 16)
+  VQSHRN_TEST(s16, s32, 16)
+  VQSHRUN_TEST(u8, s16, 8)
+  VQSHRUN_TEST(u16, s32, 16)
+}