blob: d424b0c488eb6214c642e95c28c0e041b80caf0d [file] [log] [blame]
/* PR86731. Verify that the rs6000 gimple-folding code handles the
left shift operation properly. This is a testcase variation that
explicitly disables gimple folding. */
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-require-effective-target lp64 } */
/* { dg-options "-maltivec -O3 -fwrapv -mno-fold-gimple" } */
/* { dg-prune-output "gimple folding of rs6000 builtins has been disabled." } */
#include <altivec.h>
/* original test as reported. */
vector unsigned int splat(void)
{
vector unsigned int mzero = vec_splat_u32(-1);
return (vector unsigned int) vec_sl(mzero, mzero);
}
/* more testcase variations. */
vector unsigned char splatu1(void)
{
vector unsigned char mzero = vec_splat_u8(-1);
return (vector unsigned char) vec_sl(mzero, mzero);
}
vector unsigned short splatu2(void)
{
vector unsigned short mzero = vec_splat_u16(-1);
return (vector unsigned short) vec_sl(mzero, mzero);
}
vector unsigned int splatu3(void)
{
vector unsigned int mzero = vec_splat_u32(-1);
return (vector unsigned int) vec_sl(mzero, mzero);
}
vector signed char splats1(void)
{
vector unsigned char mzero = vec_splat_u8(-1);
return (vector signed char) vec_sl(mzero, mzero);
}
vector signed short splats2(void)
{
vector unsigned short mzero = vec_splat_u16(-1);
return (vector signed short) vec_sl(mzero, mzero);
}
vector signed int splats3(void)
{
vector unsigned int mzero = vec_splat_u32(-1);
return (vector signed int) vec_sl(mzero, mzero);
}
/* Codegen will consist of splat and shift instructions for most types.
Noted variations: if gimple folding is disabled, or if -fwrapv is not specified, the
long long tests will generate a vspltisw+vsld pair, versus generating a lvx. */
/* { dg-final { scan-assembler-times {\mvspltis[bhw]\M|\mxxspltib\M} 7 } } */
/* { dg-final { scan-assembler-times {\mvsl[bhwd]\M} 7 } } */
/* { dg-final { scan-assembler-times {\mlvx\M} 0 } } */