blob: 01c4d7357edd2a43a897c793d0dbdd06aa72d23c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_p8vector_ok } */
/* { dg-options "-mdejagnu-cpu=power8 -O3" } */
/* { dg-final { scan-assembler "lxvd2x" } } */
/* { dg-final { scan-assembler "stxvd2x" } } */
/* { dg-final { scan-assembler "stxsdx" } } */
/* { dg-final { scan-assembler-times "xxpermdi" 1 } } */
/* The only xxpermdi expected is for the vec_splats. */
#include <altivec.h>
void abort ();
#define N 4096
long long ca[N] __attribute__((aligned(16)));
long long cb[N] __attribute__((aligned(16)));
long long cc[N] __attribute__((aligned(16)));
long long cd[N] __attribute__((aligned(16)));
long long x;
__attribute__((noinline)) void foo ()
{
int i;
vector long long va, vb, vc, vd, tmp;
volatile unsigned long long three = 3;
vector unsigned long long threes = vec_splats (three);
for (i = 0; i < N; i+=2) {
vb = vec_vsx_ld (0, (vector long long *)&cb[i]);
vc = vec_vsx_ld (0, (vector long long *)&cc[i]);
vd = vec_vsx_ld (0, (vector long long *)&cd[i]);
tmp = vec_add (vb, vc);
tmp = vec_sub (tmp, vd);
tmp = vec_sra (tmp, threes);
x = vec_extract (tmp, 0);
vec_vsx_st (tmp, 0, (vector long long *)&ca[i]);
}
}
int main ()
{
foo ();
return 0;
}
|