d7bfc710ab
2015-06-15 Tom de Vries <tom@codesourcery.com> * testsuite/libgomp.c/atomic-1.c: Remove dg-options "-O2". Use dg-additional-options for any remaining options. * testsuite/libgomp.c/atomic-2.c: Same. * testsuite/libgomp.c/atomic-4.c: Same. * testsuite/libgomp.c/atomic-5.c: Same. * testsuite/libgomp.c/atomic-6.c: Same. * testsuite/libgomp.c/autopar-1.c: Same. * testsuite/libgomp.c/copyin-1.c: Same. * testsuite/libgomp.c/copyin-2.c: Same. * testsuite/libgomp.c/copyin-3.c: Same. * testsuite/libgomp.c/examples-4/e.53.5.c: Same. * testsuite/libgomp.c/nestedfn-5.c: Same. * testsuite/libgomp.c/parloops-exit-first-loop-alt-2.c: Same. * testsuite/libgomp.c/parloops-exit-first-loop-alt-3.c: Same. * testsuite/libgomp.c/parloops-exit-first-loop-alt-4.c: Same. * testsuite/libgomp.c/parloops-exit-first-loop-alt.c: Same. * testsuite/libgomp.c/pr32362-1.c: Same. * testsuite/libgomp.c/pr32362-2.c: Same. * testsuite/libgomp.c/pr32362-3.c: Same. * testsuite/libgomp.c/pr39591-1.c: Same. * testsuite/libgomp.c/pr39591-2.c: Same. * testsuite/libgomp.c/pr39591-3.c: Same. * testsuite/libgomp.c/pr58392.c: Same. * testsuite/libgomp.c/pr58756.c: Same. * testsuite/libgomp.c/simd-1.c: Same. * testsuite/libgomp.c/simd-10.c: Same. * testsuite/libgomp.c/simd-11.c: Same. * testsuite/libgomp.c/simd-12.c: Same. * testsuite/libgomp.c/simd-13.c: Same. * testsuite/libgomp.c/simd-14.c: Same. * testsuite/libgomp.c/simd-15.c: Same. * testsuite/libgomp.c/simd-2.c: Same. * testsuite/libgomp.c/simd-3.c: Same. * testsuite/libgomp.c/simd-4.c: Same. * testsuite/libgomp.c/simd-5.c: Same. * testsuite/libgomp.c/simd-6.c: Same. * testsuite/libgomp.c/simd-7.c: Same. * testsuite/libgomp.c/simd-8.c: Same. * testsuite/libgomp.c/simd-9.c: Same. From-SVN: r224489
96 lines
1.9 KiB
C
96 lines
1.9 KiB
C
/* { dg-do run } */
|
|
/* { dg-additional-options "-msse2" { target sse2_runtime } } */
|
|
/* { dg-additional-options "-mavx" { target avx_runtime } } */
|
|
|
|
extern void abort ();
|
|
int a[1024] __attribute__((aligned (32))) = { 1 };
|
|
int b[1024] __attribute__((aligned (32))) = { 1 };
|
|
int k, m;
|
|
struct U { int u; };
|
|
struct V { int v; };
|
|
|
|
__attribute__((noinline, noclone)) int
|
|
foo (int *p)
|
|
{
|
|
int i, s = 0;
|
|
struct U u;
|
|
struct V v;
|
|
#pragma omp simd aligned(a, p : 32) linear(k: m + 1) \
|
|
linear(i) reduction(+:s) lastprivate(u, v)
|
|
for (i = 0; i < 1024; i++)
|
|
{
|
|
int *q = &i;
|
|
a[i] *= p[i];
|
|
u.u = p[i] + k;
|
|
k += m + 1;
|
|
v.v = p[i] + k;
|
|
s += p[i] + k;
|
|
}
|
|
if (u.u != 36 + 4 + 3 * 1023 || v.v != 36 + 4 + 3 * 1024 || i != 1024)
|
|
abort ();
|
|
return s;
|
|
}
|
|
|
|
__attribute__((noinline, noclone)) int
|
|
bar (int *p)
|
|
{
|
|
int i, s = 0;
|
|
struct U u;
|
|
struct V v;
|
|
#pragma omp simd aligned(a, p : 32) linear(k: m + 1) \
|
|
reduction(+:s) lastprivate(u, v)
|
|
for (i = 0; i < 1024; i++)
|
|
{
|
|
int *q = &i;
|
|
a[i] *= p[i];
|
|
u.u = p[i] + k;
|
|
k += m + 1;
|
|
v.v = p[i] + k;
|
|
s += p[i] + k;
|
|
}
|
|
if (u.u != 36 + 4 + 3 * 1023 || v.v != 36 + 4 + 3 * 1024 || i != 1024)
|
|
abort ();
|
|
return s;
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
#if __SIZEOF_INT__ >= 4
|
|
int i;
|
|
k = 4;
|
|
m = 2;
|
|
for (i = 0; i < 1024; i++)
|
|
{
|
|
a[i] = i - 512;
|
|
b[i] = (i - 51) % 39;
|
|
}
|
|
int s = foo (b);
|
|
for (i = 0; i < 1024; i++)
|
|
{
|
|
if (b[i] != (i - 51) % 39
|
|
|| a[i] != (i - 512) * b[i])
|
|
abort ();
|
|
}
|
|
if (k != 4 + 3 * 1024 || s != 1596127)
|
|
abort ();
|
|
k = 4;
|
|
m = 2;
|
|
for (i = 0; i < 1024; i++)
|
|
{
|
|
a[i] = i - 512;
|
|
b[i] = (i - 51) % 39;
|
|
}
|
|
s = bar (b);
|
|
for (i = 0; i < 1024; i++)
|
|
{
|
|
if (b[i] != (i - 51) % 39
|
|
|| a[i] != (i - 512) * b[i])
|
|
abort ();
|
|
}
|
|
if (k != 4 + 3 * 1024 || s != 1596127)
|
|
abort ();
|
|
#endif
|
|
return 0;
|
|
}
|