arm: improve tests for vmullbq*

gcc/testsuite/ChangeLog:

	* gcc.target/arm/mve/intrinsics/vmullbq_int_m_s16.c: Use
	check-function-bodies instead of scan-assembler checks.  Use
	extern "C" for C++ testing.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_m_s32.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_m_s8.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_m_u16.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_m_u32.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_m_u8.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_s16.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_s32.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_s8.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_u16.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_u32.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_u8.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_x_s16.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_x_s32.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_x_s8.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_x_u16.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_x_u32.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_int_x_u8.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_poly_m_p16.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_poly_m_p8.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_poly_p16.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_poly_p8.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_poly_x_p16.c: Likewise.
	* gcc.target/arm/mve/intrinsics/vmullbq_poly_x_p8.c: Likewise.
This commit is contained in:
Andrea Corallo 2022-11-28 17:12:08 +01:00
parent 6c61fac901
commit e6f52130d0
24 changed files with 656 additions and 72 deletions

View file

@ -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(?: @.*|)
** ...
** vmullbt.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int32x4_t
foo (int32x4_t inactive, int16x8_t a, int16x8_t b, mve_pred16_t p)
{
return vmullbq_int_m_s16 (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.s16" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int32x4_t
foo1 (int32x4_t inactive, int16x8_t a, int16x8_t b, mve_pred16_t p)
{
return vmullbq_int_m (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.s16" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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(?: @.*|)
** ...
** vmullbt.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int64x2_t
foo (int64x2_t inactive, int32x4_t a, int32x4_t b, mve_pred16_t p)
{
return vmullbq_int_m_s32 (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.s32" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int64x2_t
foo1 (int64x2_t inactive, int32x4_t a, int32x4_t b, mve_pred16_t p)
{
return vmullbq_int_m (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.s32" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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(?: @.*|)
** ...
** vmullbt.s8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int16x8_t
foo (int16x8_t inactive, int8x16_t a, int8x16_t b, mve_pred16_t p)
{
return vmullbq_int_m_s8 (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.s8" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.s8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int16x8_t
foo1 (int16x8_t inactive, int8x16_t a, int8x16_t b, mve_pred16_t p)
{
return vmullbq_int_m (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.s8" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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(?: @.*|)
** ...
** vmullbt.u16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo (uint32x4_t inactive, uint16x8_t a, uint16x8_t b, mve_pred16_t p)
{
return vmullbq_int_m_u16 (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.u16" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.u16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo1 (uint32x4_t inactive, uint16x8_t a, uint16x8_t b, mve_pred16_t p)
{
return vmullbq_int_m (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.u16" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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(?: @.*|)
** ...
** vmullbt.u32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint64x2_t
foo (uint64x2_t inactive, uint32x4_t a, uint32x4_t b, mve_pred16_t p)
{
return vmullbq_int_m_u32 (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.u32" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.u32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint64x2_t
foo1 (uint64x2_t inactive, uint32x4_t a, uint32x4_t b, mve_pred16_t p)
{
return vmullbq_int_m (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.u32" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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(?: @.*|)
** ...
** vmullbt.u8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo (uint16x8_t inactive, uint8x16_t a, uint8x16_t b, mve_pred16_t p)
{
return vmullbq_int_m_u8 (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.u8" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.u8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo1 (uint16x8_t inactive, uint8x16_t a, uint8x16_t b, mve_pred16_t p)
{
return vmullbq_int_m (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.u8" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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:
** ...
** vmullb.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int32x4_t
foo (int16x8_t a, int16x8_t b)
{
return vmullbq_int_s16 (a, b);
}
/* { dg-final { scan-assembler "vmullb.s16" } } */
/*
**foo1:
** ...
** vmullb.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int32x4_t
foo1 (int16x8_t a, int16x8_t b)
{
return vmullbq_int (a, b);
}
/* { dg-final { scan-assembler "vmullb.s16" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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:
** ...
** vmullb.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int64x2_t
foo (int32x4_t a, int32x4_t b)
{
return vmullbq_int_s32 (a, b);
}
/* { dg-final { scan-assembler "vmullb.s32" } } */
/*
**foo1:
** ...
** vmullb.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int64x2_t
foo1 (int32x4_t a, int32x4_t b)
{
return vmullbq_int (a, b);
}
/* { dg-final { scan-assembler "vmullb.s32" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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:
** ...
** vmullb.s8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int16x8_t
foo (int8x16_t a, int8x16_t b)
{
return vmullbq_int_s8 (a, b);
}
/* { dg-final { scan-assembler "vmullb.s8" } } */
/*
**foo1:
** ...
** vmullb.s8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int16x8_t
foo1 (int8x16_t a, int8x16_t b)
{
return vmullbq_int (a, b);
}
/* { dg-final { scan-assembler "vmullb.s8" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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:
** ...
** vmullb.u16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo (uint16x8_t a, uint16x8_t b)
{
return vmullbq_int_u16 (a, b);
}
/* { dg-final { scan-assembler "vmullb.u16" } } */
/*
**foo1:
** ...
** vmullb.u16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo1 (uint16x8_t a, uint16x8_t b)
{
return vmullbq_int (a, b);
}
/* { dg-final { scan-assembler "vmullb.u16" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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:
** ...
** vmullb.u32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint64x2_t
foo (uint32x4_t a, uint32x4_t b)
{
return vmullbq_int_u32 (a, b);
}
/* { dg-final { scan-assembler "vmullb.u32" } } */
/*
**foo1:
** ...
** vmullb.u32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint64x2_t
foo1 (uint32x4_t a, uint32x4_t b)
{
return vmullbq_int (a, b);
}
/* { dg-final { scan-assembler "vmullb.u32" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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:
** ...
** vmullb.u8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo (uint8x16_t a, uint8x16_t b)
{
return vmullbq_int_u8 (a, b);
}
/* { dg-final { scan-assembler "vmullb.u8" } } */
/*
**foo1:
** ...
** vmullb.u8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo1 (uint8x16_t a, uint8x16_t b)
{
return vmullbq_int (a, b);
}
/* { dg-final { scan-assembler "vmullb.u8" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -1,22 +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(?: @.*|)
** ...
** vmullbt.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int32x4_t
foo (int16x8_t a, int16x8_t b, mve_pred16_t p)
{
return vmullbq_int_x_s16 (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.s16" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int32x4_t
foo1 (int16x8_t a, int16x8_t b, mve_pred16_t p)
{
return vmullbq_int_x (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -1,22 +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(?: @.*|)
** ...
** vmullbt.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int64x2_t
foo (int32x4_t a, int32x4_t b, mve_pred16_t p)
{
return vmullbq_int_x_s32 (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.s32" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int64x2_t
foo1 (int32x4_t a, int32x4_t b, mve_pred16_t p)
{
return vmullbq_int_x (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -1,22 +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(?: @.*|)
** ...
** vmullbt.s8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int16x8_t
foo (int8x16_t a, int8x16_t b, mve_pred16_t p)
{
return vmullbq_int_x_s8 (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.s8" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.s8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int16x8_t
foo1 (int8x16_t a, int8x16_t b, mve_pred16_t p)
{
return vmullbq_int_x (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -1,22 +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(?: @.*|)
** ...
** vmullbt.u16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo (uint16x8_t a, uint16x8_t b, mve_pred16_t p)
{
return vmullbq_int_x_u16 (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.u16" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.u16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo1 (uint16x8_t a, uint16x8_t b, mve_pred16_t p)
{
return vmullbq_int_x (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -1,22 +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(?: @.*|)
** ...
** vmullbt.u32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint64x2_t
foo (uint32x4_t a, uint32x4_t b, mve_pred16_t p)
{
return vmullbq_int_x_u32 (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.u32" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.u32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint64x2_t
foo1 (uint32x4_t a, uint32x4_t b, mve_pred16_t p)
{
return vmullbq_int_x (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -1,22 +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(?: @.*|)
** ...
** vmullbt.u8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo (uint8x16_t a, uint8x16_t b, mve_pred16_t p)
{
return vmullbq_int_x_u8 (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.u8" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.u8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo1 (uint8x16_t a, uint8x16_t b, mve_pred16_t p)
{
return vmullbq_int_x (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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(?: @.*|)
** ...
** vmullbt.p16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo (uint32x4_t inactive, uint16x8_t a, uint16x8_t b, mve_pred16_t p)
{
return vmullbq_poly_m_p16 (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.p16" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.p16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo1 (uint32x4_t inactive, uint16x8_t a, uint16x8_t b, mve_pred16_t p)
{
return vmullbq_poly_m (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.p16" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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(?: @.*|)
** ...
** vmullbt.p8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo (uint16x8_t inactive, uint8x16_t a, uint8x16_t b, mve_pred16_t p)
{
return vmullbq_poly_m_p8 (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.p8" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.p8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo1 (uint16x8_t inactive, uint8x16_t a, uint8x16_t b, mve_pred16_t p)
{
return vmullbq_poly_m (inactive, a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.p8" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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:
** ...
** vmullb.p16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo (uint16x8_t a, uint16x8_t b)
{
return vmullbq_poly_p16 (a, b);
}
/* { dg-final { scan-assembler "vmullb.p16" } } */
/*
**foo1:
** ...
** vmullb.p16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo1 (uint16x8_t a, uint16x8_t b)
{
return vmullbq_poly (a, b);
}
/* { dg-final { scan-assembler "vmullb.p16" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -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:
** ...
** vmullb.p8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo (uint8x16_t a, uint8x16_t b)
{
return vmullbq_poly_p8 (a, b);
}
/* { dg-final { scan-assembler "vmullb.p8" } } */
/*
**foo1:
** ...
** vmullb.p8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo1 (uint8x16_t a, uint8x16_t b)
{
return vmullbq_poly (a, b);
}
/* { dg-final { scan-assembler "vmullb.p8" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -1,22 +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(?: @.*|)
** ...
** vmullbt.p16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo (uint16x8_t a, uint16x8_t b, mve_pred16_t p)
{
return vmullbq_poly_x_p16 (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.p16" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.p16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo1 (uint16x8_t a, uint16x8_t b, mve_pred16_t p)
{
return vmullbq_poly_x (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */

View file

@ -1,22 +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(?: @.*|)
** ...
** vmullbt.p8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo (uint8x16_t a, uint8x16_t b, mve_pred16_t p)
{
return vmullbq_poly_x_p8 (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vmullbt.p8" } } */
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmullbt.p8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint16x8_t
foo1 (uint8x16_t a, uint8x16_t b, mve_pred16_t p)
{
return vmullbq_poly_x (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
#ifdef __cplusplus
}
#endif
/* { dg-final { scan-assembler-not "__ARM_undef" } } */