> -----Original Message----- > From: Andrea Corallo <andrea.cora...@arm.com> > Sent: Friday, January 20, 2023 4:40 PM > To: gcc-patches@gcc.gnu.org > Cc: Kyrylo Tkachov <kyrylo.tkac...@arm.com>; Richard Earnshaw > <richard.earns...@arm.com>; Andrea Corallo <andrea.cora...@arm.com> > Subject: [PATCH 12/23] arm: improve tests for vqdmladhxq* > > gcc/testsuite/ChangeLog: > > * gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s16.c: Improve test. > * gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s32.c: Improve test. > * gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s8.c: Improve test. > * gcc.target/arm/mve/intrinsics/vqdmladhxq_s16.c: Improve test. > * gcc.target/arm/mve/intrinsics/vqdmladhxq_s32.c: Improve test. > * gcc.target/arm/mve/intrinsics/vqdmladhxq_s8.c: Improve test. Ok. Thanks, Kyrill > --- > .../arm/mve/intrinsics/vqdmladhxq_m_s16.c | 34 ++++++++++++++++--- > .../arm/mve/intrinsics/vqdmladhxq_m_s32.c | 34 ++++++++++++++++--- > .../arm/mve/intrinsics/vqdmladhxq_m_s8.c | 34 ++++++++++++++++--- > .../arm/mve/intrinsics/vqdmladhxq_s16.c | 24 +++++++++++-- > .../arm/mve/intrinsics/vqdmladhxq_s32.c | 24 +++++++++++-- > .../arm/mve/intrinsics/vqdmladhxq_s8.c | 24 +++++++++++-- > 6 files changed, 156 insertions(+), 18 deletions(-) > > diff --git a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s16.c > b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s16.c > index c2446e69181..19c5ce5a64f 100644 > --- a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s16.c > +++ b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s16.c > @@ -1,23 +1,49 @@ > /* { dg-require-effective-target arm_v8_1m_mve_ok } */ > /* { dg-add-options arm_v8_1m_mve } */ > /* { dg-additional-options "-O2" } */ > +/* { dg-final { check-function-bodies "**" "" } } */ > > #include "arm_mve.h" > > +#ifdef __cplusplus > +extern "C" { > +#endif > + > +/* > +**foo: > +** ... > +** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|) > +** ... > +** vpst(?: @.*|) > +** ... > +** vqdmladhxt.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int16x8_t > foo (int16x8_t inactive, int16x8_t a, int16x8_t b, mve_pred16_t p) > { > return vqdmladhxq_m_s16 (inactive, a, b, p); > } > > -/* { dg-final { scan-assembler "vpst" } } */ > -/* { dg-final { scan-assembler "vqdmladhxt.s16" } } */ > > +/* > +**foo1: > +** ... > +** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|) > +** ... > +** vpst(?: @.*|) > +** ... > +** vqdmladhxt.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int16x8_t > foo1 (int16x8_t inactive, int16x8_t a, int16x8_t b, mve_pred16_t p) > { > return vqdmladhxq_m (inactive, a, b, p); > } > > -/* { dg-final { scan-assembler "vpst" } } */ > -/* { dg-final { scan-assembler "vqdmladhxt.s16" } } */ > +#ifdef __cplusplus > +} > +#endif > + > +/* { dg-final { scan-assembler-not "__ARM_undef" } } */ > \ No newline at end of file > diff --git a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s32.c > b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s32.c > index 12b45517535..e00162addae 100644 > --- a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s32.c > +++ b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s32.c > @@ -1,23 +1,49 @@ > /* { dg-require-effective-target arm_v8_1m_mve_ok } */ > /* { dg-add-options arm_v8_1m_mve } */ > /* { dg-additional-options "-O2" } */ > +/* { dg-final { check-function-bodies "**" "" } } */ > > #include "arm_mve.h" > > +#ifdef __cplusplus > +extern "C" { > +#endif > + > +/* > +**foo: > +** ... > +** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|) > +** ... > +** vpst(?: @.*|) > +** ... > +** vqdmladhxt.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int32x4_t > foo (int32x4_t inactive, int32x4_t a, int32x4_t b, mve_pred16_t p) > { > return vqdmladhxq_m_s32 (inactive, a, b, p); > } > > -/* { dg-final { scan-assembler "vpst" } } */ > -/* { dg-final { scan-assembler "vqdmladhxt.s32" } } */ > > +/* > +**foo1: > +** ... > +** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|) > +** ... > +** vpst(?: @.*|) > +** ... > +** vqdmladhxt.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int32x4_t > foo1 (int32x4_t inactive, int32x4_t a, int32x4_t b, mve_pred16_t p) > { > return vqdmladhxq_m (inactive, a, b, p); > } > > -/* { dg-final { scan-assembler "vpst" } } */ > -/* { dg-final { scan-assembler "vqdmladhxt.s32" } } */ > +#ifdef __cplusplus > +} > +#endif > + > +/* { dg-final { scan-assembler-not "__ARM_undef" } } */ > \ No newline at end of file > diff --git a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s8.c > b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s8.c > index 146aa51306b..19767d2cd41 100644 > --- a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s8.c > +++ b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_m_s8.c > @@ -1,23 +1,49 @@ > /* { dg-require-effective-target arm_v8_1m_mve_ok } */ > /* { dg-add-options arm_v8_1m_mve } */ > /* { dg-additional-options "-O2" } */ > +/* { dg-final { check-function-bodies "**" "" } } */ > > #include "arm_mve.h" > > +#ifdef __cplusplus > +extern "C" { > +#endif > + > +/* > +**foo: > +** ... > +** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|) > +** ... > +** vpst(?: @.*|) > +** ... > +** vqdmladhxt.s8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int8x16_t > foo (int8x16_t inactive, int8x16_t a, int8x16_t b, mve_pred16_t p) > { > return vqdmladhxq_m_s8 (inactive, a, b, p); > } > > -/* { dg-final { scan-assembler "vpst" } } */ > -/* { dg-final { scan-assembler "vqdmladhxt.s8" } } */ > > +/* > +**foo1: > +** ... > +** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|) > +** ... > +** vpst(?: @.*|) > +** ... > +** vqdmladhxt.s8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int8x16_t > foo1 (int8x16_t inactive, int8x16_t a, int8x16_t b, mve_pred16_t p) > { > return vqdmladhxq_m (inactive, a, b, p); > } > > -/* { dg-final { scan-assembler "vpst" } } */ > -/* { dg-final { scan-assembler "vqdmladhxt.s8" } } */ > +#ifdef __cplusplus > +} > +#endif > + > +/* { dg-final { scan-assembler-not "__ARM_undef" } } */ > \ No newline at end of file > diff --git a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s16.c > b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s16.c > index 5a6f4455c20..c6a2fa80670 100644 > --- a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s16.c > +++ b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s16.c > @@ -1,21 +1,41 @@ > /* { dg-require-effective-target arm_v8_1m_mve_ok } */ > /* { dg-add-options arm_v8_1m_mve } */ > /* { dg-additional-options "-O2" } */ > +/* { dg-final { check-function-bodies "**" "" } } */ > > #include "arm_mve.h" > > +#ifdef __cplusplus > +extern "C" { > +#endif > + > +/* > +**foo: > +** ... > +** vqdmladhx.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int16x8_t > foo (int16x8_t inactive, int16x8_t a, int16x8_t b) > { > return vqdmladhxq_s16 (inactive, a, b); > } > > -/* { dg-final { scan-assembler "vqdmladhx.s16" } } */ > > +/* > +**foo1: > +** ... > +** vqdmladhx.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int16x8_t > foo1 (int16x8_t inactive, int16x8_t a, int16x8_t b) > { > return vqdmladhxq (inactive, a, b); > } > > -/* { dg-final { scan-assembler "vqdmladhx.s16" } } */ > +#ifdef __cplusplus > +} > +#endif > + > +/* { dg-final { scan-assembler-not "__ARM_undef" } } */ > \ No newline at end of file > diff --git a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s32.c > b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s32.c > index 4eafa6f9476..d38bd691243 100644 > --- a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s32.c > +++ b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s32.c > @@ -1,21 +1,41 @@ > /* { dg-require-effective-target arm_v8_1m_mve_ok } */ > /* { dg-add-options arm_v8_1m_mve } */ > /* { dg-additional-options "-O2" } */ > +/* { dg-final { check-function-bodies "**" "" } } */ > > #include "arm_mve.h" > > +#ifdef __cplusplus > +extern "C" { > +#endif > + > +/* > +**foo: > +** ... > +** vqdmladhx.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int32x4_t > foo (int32x4_t inactive, int32x4_t a, int32x4_t b) > { > return vqdmladhxq_s32 (inactive, a, b); > } > > -/* { dg-final { scan-assembler "vqdmladhx.s32" } } */ > > +/* > +**foo1: > +** ... > +** vqdmladhx.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int32x4_t > foo1 (int32x4_t inactive, int32x4_t a, int32x4_t b) > { > return vqdmladhxq (inactive, a, b); > } > > -/* { dg-final { scan-assembler "vqdmladhx.s32" } } */ > +#ifdef __cplusplus > +} > +#endif > + > +/* { dg-final { scan-assembler-not "__ARM_undef" } } */ > \ No newline at end of file > diff --git a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s8.c > b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s8.c > index cc6643574f4..322f702d962 100644 > --- a/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s8.c > +++ b/gcc/testsuite/gcc.target/arm/mve/intrinsics/vqdmladhxq_s8.c > @@ -1,21 +1,41 @@ > /* { dg-require-effective-target arm_v8_1m_mve_ok } */ > /* { dg-add-options arm_v8_1m_mve } */ > /* { dg-additional-options "-O2" } */ > +/* { dg-final { check-function-bodies "**" "" } } */ > > #include "arm_mve.h" > > +#ifdef __cplusplus > +extern "C" { > +#endif > + > +/* > +**foo: > +** ... > +** vqdmladhx.s8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int8x16_t > foo (int8x16_t inactive, int8x16_t a, int8x16_t b) > { > return vqdmladhxq_s8 (inactive, a, b); > } > > -/* { dg-final { scan-assembler "vqdmladhx.s8" } } */ > > +/* > +**foo1: > +** ... > +** vqdmladhx.s8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|) > +** ... > +*/ > int8x16_t > foo1 (int8x16_t inactive, int8x16_t a, int8x16_t b) > { > return vqdmladhxq (inactive, a, b); > } > > -/* { dg-final { scan-assembler "vqdmladhx.s8" } } */ > +#ifdef __cplusplus > +} > +#endif > + > +/* { dg-final { scan-assembler-not "__ARM_undef" } } */ > \ No newline at end of file > -- > 2.25.1
RE: [PATCH 12/23] arm: improve tests for vqdmladhxq*
Kyrylo Tkachov via Gcc-patches Fri, 20 Jan 2023 10:04:41 -0800
- [PATCH 04/23] arm: improve tests for vmulhq... Andrea Corallo via Gcc-patches
- RE: [PATCH 04/23] arm: improve tests f... Kyrylo Tkachov via Gcc-patches
- [PATCH 18/23] arm: improve tests for vqrdml... Andrea Corallo via Gcc-patches
- RE: [PATCH 18/23] arm: improve tests f... Kyrylo Tkachov via Gcc-patches
- [PATCH 05/23] arm: improve tests for vmullb... Andrea Corallo via Gcc-patches
- RE: [PATCH 05/23] arm: improve tests f... Kyrylo Tkachov via Gcc-patches
- [PATCH 03/23] arm: improve tests and fix vn... Andrea Corallo via Gcc-patches
- RE: [PATCH 03/23] arm: improve tests a... Kyrylo Tkachov via Gcc-patches
- [PATCH 21/23] arm: improve tests and fix vq... Andrea Corallo via Gcc-patches
- [PATCH 12/23] arm: improve tests for vqdmla... Andrea Corallo via Gcc-patches
- RE: [PATCH 12/23] arm: improve tests f... Kyrylo Tkachov via Gcc-patches
- [PATCH 13/23] arm: improve tests for vqrdml... Andrea Corallo via Gcc-patches
- RE: [PATCH 13/23] arm: improve tests f... Kyrylo Tkachov via Gcc-patches
- [PATCH 02/23] arm: improve tests and fix vc... Andrea Corallo via Gcc-patches
- RE: [PATCH 02/23] arm: improve tests a... Kyrylo Tkachov via Gcc-patches
- [PATCH 08/23] arm: improve tests for vcmlaq... Andrea Corallo via Gcc-patches
- RE: [PATCH 08/23] arm: improve tests f... Kyrylo Tkachov via Gcc-patches
- [PATCH 11/23] arm: improve tests for vqdmla... Andrea Corallo via Gcc-patches
- RE: [PATCH 11/23] arm: improve tests f... Kyrylo Tkachov via Gcc-patches
- [PATCH 19/23] arm: improve tests for vqrdml... Andrea Corallo via Gcc-patches
- RE: [PATCH 19/23] arm: improve tests f... Kyrylo Tkachov via Gcc-patches