blob: b02dc64a31b863bbced3dd215bd38efde695ec50 [file] [log] [blame]
/* { 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"
/*
**foo:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmlast.u16 q[0-9]+, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
uint16x8_t
foo (uint16x8_t m1, uint16x8_t m2, uint16_t add, mve_pred16_t p)
{
return vmlasq_m_n_u16 (m1, m2, add, p);
}
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmlast.u16 q[0-9]+, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
uint16x8_t
foo1 (uint16x8_t m1, uint16x8_t m2, uint16_t add, mve_pred16_t p)
{
return vmlasq_m (m1, m2, add, p);
}
/*
**foo2:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmlast.u16 q[0-9]+, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
uint16x8_t
foo2 (uint16x8_t m1, uint16x8_t m2, mve_pred16_t p)
{
return vmlasq_m (m1, m2, 1, p);
}
/* { dg-final { scan-assembler-not "__ARM_undef" } } */