8860d2706d
* gimplify.c (omp_add_variable): Use GOVD_PRIVATE | GOVD_EXPLICIT for VLA helper variables on target data even if not GOVD_FIRSTPRIVATE. (gimplify_scan_omp_clauses): For OMP_CLAUSE_USE_DEVICE_* use just GOVD_EXPLICIT flags. (gimplify_omp_workshare): For OMP_TARGET_DATA move all OMP_CLAUSE_USE_DEVICE_* clauses to the end of clauses chain. * omp-low.c (scan_sharing_clauses): For OMP_CLAUSE_USE_DEVICE_* call install_var_field with mask 11 instead of 3. (lower_omp_target): For OMP_CLAUSE_USE_DEVICE_* use pass (splay_tree_key) &DECL_UID (var) to build_sender_ref instead of var. gcc/c/ * c-typeck.c (c_finish_omp_clauses): For C_ORT_OMP OMP_CLAUSE_USE_DEVICE_* clauses use oacc_reduction_head bitmap instead of generic_head to track duplicates. gcc/cp/ * semantics.c (finish_omp_clauses): For C_ORT_OMP OMP_CLAUSE_USE_DEVICE_* clauses use oacc_reduction_head bitmap instead of generic_head to track duplicates. libgomp/ * target.c (gomp_map_vars_internal): For GOMP_MAP_USE_DEVICE_PTR perform the lookup in the first loop only if !not_found_cnt, otherwise perform lookups for it in the second loop guarded with if (not_found_cnt || has_firstprivate). * testsuite/libgomp.c/target-37.c: New test. * testsuite/libgomp.c++/target-22.C: New test. From-SVN: r274206
100 lines
2.2 KiB
C
100 lines
2.2 KiB
C
extern "C" void abort (void);
|
|
struct S { int e, f; };
|
|
|
|
void
|
|
foo (int *&p, int (&s)[5], int &t, S &u, int n)
|
|
{
|
|
int a[4] = { 7, 8, 9, 10 }, b[n], c[3] = { 20, 21, 22 };
|
|
int *r = a + 1, *q = p - 1, i, err;
|
|
int v = 27;
|
|
S w = { 28, 29 };
|
|
for (i = 0; i < n; i++)
|
|
b[i] = 9 + i;
|
|
#pragma omp target data map(to:a) use_device_ptr(r) map(from:err)
|
|
#pragma omp target is_device_ptr(r) private(i) map(from:err)
|
|
{
|
|
err = 0;
|
|
for (i = 0; i < 4; i++)
|
|
if (r[i - 1] != 7 + i)
|
|
err = 1;
|
|
}
|
|
if (err)
|
|
abort ();
|
|
#pragma omp target data use_device_ptr(p) map(from:err) map(to:q[:4])
|
|
#pragma omp target is_device_ptr(p) private(i) map(from:err)
|
|
{
|
|
err = 0;
|
|
for (i = 0; i < 4; i++)
|
|
if (p[i - 1] != i)
|
|
err = 1;
|
|
}
|
|
if (err)
|
|
abort ();
|
|
#pragma omp target data map(to:b) use_device_addr(b) map(from:err)
|
|
#pragma omp target is_device_ptr(b) private(i) map(from:err)
|
|
{
|
|
err = 0;
|
|
for (i = 0; i < n; i++)
|
|
if (b[i] != 9 + i)
|
|
err = 1;
|
|
}
|
|
if (err)
|
|
abort ();
|
|
#pragma omp target data use_device_addr(c) map(to:c) map(from:err)
|
|
#pragma omp target is_device_ptr(c) private(i) map(from:err)
|
|
{
|
|
err = 0;
|
|
for (i = 0; i < 3; i++)
|
|
if (c[i] != 20 + i)
|
|
err = 1;
|
|
}
|
|
if (err)
|
|
abort ();
|
|
#pragma omp target data map(to:s[:5]) use_device_addr(s) map(from:err)
|
|
#pragma omp target is_device_ptr(s) private(i) map(from:err)
|
|
{
|
|
err = 0;
|
|
for (i = 0; i < 5; i++)
|
|
if (s[i] != 17 + i)
|
|
err = 1;
|
|
}
|
|
if (err)
|
|
abort ();
|
|
#pragma omp target data use_device_addr (v) map(to: v) map(to:u) use_device_addr (u) map(from:err)
|
|
{
|
|
int *z = &v;
|
|
S *x = &u;
|
|
#pragma omp target is_device_ptr (z, x) map(from:err)
|
|
{
|
|
err = 0;
|
|
if (*z != 27 || x->e != 25 || x->f != 26)
|
|
err = 1;
|
|
}
|
|
}
|
|
if (err)
|
|
abort ();
|
|
#pragma omp target data map(to: t) use_device_addr (t, w) map (to: w) map(from:err)
|
|
{
|
|
int *z = &t;
|
|
S *x = &w;
|
|
#pragma omp target is_device_ptr (z) is_device_ptr (x) map(from:err)
|
|
{
|
|
err = 0;
|
|
if (*z != 24 || x->e != 28 || x->f != 29)
|
|
err = 1;
|
|
}
|
|
}
|
|
if (err)
|
|
abort ();
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int a[4] = { 0, 1, 2, 3 }, b[5] = { 17, 18, 19, 20, 21 };
|
|
int *p = a + 1;
|
|
int t = 24;
|
|
S u = { 25, 26 };
|
|
foo (p, b, t, u, 9);
|
|
}
|