Remove xfail for hppa*-*-hpux* from stdatomic-flag.c and stdatomic-flag-2.c
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c++ / privatized-ref-3.C
blob11e1cefbc3963b48c9c4c6d64286a4d010fd1b09
1 /* { dg-do run } */
3 /* { dg-additional-options "-fopt-info-note-omp" }
4    { dg-additional-options "-foffload=-fopt-info-note-omp" } */
6 /* { dg-additional-options "--param=openacc-privatization=noisy" }
7    { dg-additional-options "-foffload=--param=openacc-privatization=noisy" } */
9 /* { dg-additional-options "-Wuninitialized" } */
11 /*TODO
12    { dg-xfail-run-if TODO { openacc_radeon_accel_selected && { ! __OPTIMIZE__ } } } */
14 /* It's only with Tcl 8.5 (released in 2007) that "the variable 'varName'
15    passed to 'incr' may be unset, and in that case, it will be set to [...]",
16    so to maintain compatibility with earlier Tcl releases, we manually
17    initialize counter variables:
18    { dg-line l_dummy[variable c_compute 0 c_loop 0] }
19    { dg-message "dummy" "" { target iN-VAl-Id } l_dummy } to avoid
20    "WARNING: dg-line var l_dummy defined, but not used".  */
22 #include <stdlib.h>
24 void gangs (void)
26   double res[65536];
27   int i;
29 #pragma acc parallel copyout(res) num_gangs(64) /* { dg-line l_compute[incr c_compute] } */
30   /* { dg-note {variable 'i' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
31   /* { dg-note {variable 'j' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
32   /* { dg-note {variable 'tmpvar' declared in block is candidate for adjusting OpenACC privatization level} "" { target *-*-* } l_compute$c_compute }
33      But, with optimizations enabled, per the '*.ssa' dump ('gcc/tree-ssa.c:execute_update_addresses_taken'):
34          No longer having address taken: tmpvar
35          Now a gimple register: tmpvar
36      However, 'tmpvar' remains in the candidate set:
37      { dg-note {variable 'tmpvar' ought to be adjusted for OpenACC privatization level: 'gang'} "" { target *-*-* } l_compute$c_compute }
38      Now, for GCN offloading, 'adjust_private_decl' does the privatization change right away:
39      { dg-note {variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target openacc_radeon_accel_selected } l_compute$c_compute }
40      For nvptx offloading however, we first mark up 'tmpvar', and then later apply the privatization change -- or, with optimizations enabled, don't, because we then don't actually call 'expand_var_decl'.
41      { dg-note {variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target { openacc_nvidia_accel_selected && { ! __OPTIMIZE__ } } } l_compute$c_compute }
42      { dg-bogus {note: variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target { openacc_nvidia_accel_selected && __OPTIMIZE__ } } l_compute$c_compute }
43   */
44   /* { dg-note {variable 'tmpref' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
45   {
46     int i, j;
47     int tmpvar;
48     int &tmpref = tmpvar;
49 #pragma acc loop collapse(2) gang private(tmpref) /* { dg-line l_loop[incr c_loop] } */
50     /* { dg-note {variable 'tmpref' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
51     /* { dg-note {variable 'j' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
52     /* { dg-note {variable 'i' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
53     for (i = 0; i < 256; i++)
54       {
55         for (j = 0; j < 256; j++)
56           {
57             tmpref = (i * 256 + j) * 97;
58             res[i * 256 + j] = tmpref;
59           }
60       }
61   }
63   for (i = 0; i < 65536; i++)
64     if (res[i] != i * 97)
65       abort ();
68 void workers (void)
70   double res[65536];
71   int i;
73 #pragma acc parallel copyout(res) num_gangs(64) num_workers(64) /* { dg-line l_compute[incr c_compute] } */
74   /* { dg-note {variable 'i' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
75   /* { dg-note {variable 'j' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
76   /* { dg-note {variable 'tmpvar' declared in block is candidate for adjusting OpenACC privatization level} "" { target *-*-* } l_compute$c_compute }
77      But, with optimizations enabled, per the '*.ssa' dump ('gcc/tree-ssa.c:execute_update_addresses_taken'):
78          No longer having address taken: tmpvar
79          Now a gimple register: tmpvar
80      However, 'tmpvar' remains in the candidate set:
81      { dg-note {variable 'tmpvar' ought to be adjusted for OpenACC privatization level: 'gang'} "" { target *-*-* } l_compute$c_compute }
82      Now, for GCN offloading, 'adjust_private_decl' does the privatization change right away:
83      { dg-note {variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target openacc_radeon_accel_selected } l_compute$c_compute }
84      For nvptx offloading however, we first mark up 'tmpvar', and then later apply the privatization change -- or, with optimizations enabled, don't, because we then don't actually call 'expand_var_decl'.
85      { dg-note {variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target { openacc_nvidia_accel_selected && { ! __OPTIMIZE__ } } } l_compute$c_compute }
86      { dg-bogus {note: variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target { openacc_nvidia_accel_selected && __OPTIMIZE__ } } l_compute$c_compute }
87   */
88   /* { dg-note {variable 'tmpref' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
89   /* { dg-warning "using .num_workers \\(32\\)., ignoring 64" "" { target openacc_nvidia_accel_selected } l_compute$c_compute } */
90   {
91     int i, j;
92     int tmpvar;
93     int &tmpref = tmpvar;
94 #pragma acc loop gang /* { dg-line l_loop[incr c_loop] } */
95     /* { dg-note {variable 'i' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
96     for (i = 0; i < 256; i++)
97       {
98 #pragma acc loop worker private(tmpref) /* { dg-line l_loop[incr c_loop] } */
99         /* { dg-note {variable 'tmpref' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
100         /* { dg-note {variable 'j' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
101         for (j = 0; j < 256; j++)
102           {
103             tmpref = (i * 256 + j) * 99;
104             res[i * 256 + j] = tmpref;
105           }
106       }
107   }
109   for (i = 0; i < 65536; i++)
110     if (res[i] != i * 99)
111       abort ();
114 void vectors (void)
116   double res[65536];
117   int i;
119 #pragma acc parallel copyout(res) num_gangs(64) num_workers(64) /* { dg-line l_compute[incr c_compute] } */
120   /* { dg-note {variable 'i' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
121   /* { dg-note {variable 'j' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
122   /* { dg-note {variable 'tmpvar' declared in block is candidate for adjusting OpenACC privatization level} "" { target *-*-* } l_compute$c_compute }
123      But, with optimizations enabled, per the '*.ssa' dump ('gcc/tree-ssa.c:execute_update_addresses_taken'):
124          No longer having address taken: tmpvar
125          Now a gimple register: tmpvar
126      However, 'tmpvar' remains in the candidate set:
127      { dg-note {variable 'tmpvar' ought to be adjusted for OpenACC privatization level: 'gang'} "" { target *-*-* } l_compute$c_compute }
128      Now, for GCN offloading, 'adjust_private_decl' does the privatization change right away:
129      { dg-note {variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target openacc_radeon_accel_selected } l_compute$c_compute }
130      For nvptx offloading however, we first mark up 'tmpvar', and then later apply the privatization change -- or, with optimizations enabled, don't, because we then don't actually call 'expand_var_decl'.
131      { dg-note {variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target { openacc_nvidia_accel_selected && { ! __OPTIMIZE__ } } } l_compute$c_compute }
132      { dg-bogus {note: variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target { openacc_nvidia_accel_selected && __OPTIMIZE__ } } l_compute$c_compute }
133   */
134   /* { dg-note {variable 'tmpref' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
135   /* { dg-warning "using .num_workers \\(32\\)., ignoring 64" "" { target openacc_nvidia_accel_selected } l_compute$c_compute } */
136   {
137     int i, j;
138     int tmpvar;
139     int &tmpref = tmpvar;
140 #pragma acc loop gang worker /* { dg-line l_loop[incr c_loop] } */
141     /* { dg-note {variable 'i' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
142     for (i = 0; i < 256; i++)
143       {
144 #pragma acc loop vector private(tmpref) /* { dg-line l_loop[incr c_loop] } */
145         /* { dg-note {variable 'tmpref' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
146         /* { dg-note {variable 'j' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
147         for (j = 0; j < 256; j++)
148           {
149             tmpref = (i * 256 + j) * 101;
150             res[i * 256 + j] = tmpref;
151           }
152       }
153   }
155   for (i = 0; i < 65536; i++)
156     if (res[i] != i * 101)
157       abort ();
160 void gangs_workers_vectors (void)
162   double res[65536];
163   int i;
165 #pragma acc parallel copyout(res) num_gangs(64) num_workers(64) /* { dg-line l_compute[incr c_compute] } */
166   /* { dg-note {variable 'i' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
167   /* { dg-note {variable 'j' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
168   /* { dg-note {variable 'tmpvar' declared in block is candidate for adjusting OpenACC privatization level} "" { target *-*-* } l_compute$c_compute }
169      But, with optimizations enabled, per the '*.ssa' dump ('gcc/tree-ssa.c:execute_update_addresses_taken'):
170          No longer having address taken: tmpvar
171          Now a gimple register: tmpvar
172      However, 'tmpvar' remains in the candidate set:
173      { dg-note {variable 'tmpvar' ought to be adjusted for OpenACC privatization level: 'gang'} "" { target *-*-* } l_compute$c_compute }
174      Now, for GCN offloading, 'adjust_private_decl' does the privatization change right away:
175      { dg-note {variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target openacc_radeon_accel_selected } l_compute$c_compute }
176      For nvptx offloading however, we first mark up 'tmpvar', and then later apply the privatization change -- or, with optimizations enabled, don't, because we then don't actually call 'expand_var_decl'.
177      { dg-note {variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target { openacc_nvidia_accel_selected && { ! __OPTIMIZE__ } } } l_compute$c_compute }
178      { dg-bogus {note: variable 'tmpvar' adjusted for OpenACC privatization level: 'gang'} "" { target { openacc_nvidia_accel_selected && __OPTIMIZE__ } } l_compute$c_compute }
179   */
180   /* { dg-note {variable 'tmpref' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_compute$c_compute } */
181   /* { dg-warning "using .num_workers \\(32\\)., ignoring 64" "" { target openacc_nvidia_accel_selected } l_compute$c_compute } */
182   {
183     int i, j;
184     int tmpvar;
185     int &tmpref = tmpvar;
186 #pragma acc loop collapse(2) gang worker vector private(tmpref) /* { dg-line l_loop[incr c_loop] } */
187     /* { dg-note {variable 'tmpref' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
188     /* { dg-note {variable 'j' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
189     /* { dg-note {variable 'i' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} "" { target *-*-* } l_loop$c_loop } */
190     for (i = 0; i < 256; i++)
191       {
192         for (j = 0; j < 256; j++)
193           {
194             tmpref = (i * 256 + j) * 103;
195             res[i * 256 + j] = tmpref;
196           }
197       }
198   }
200   for (i = 0; i < 65536; i++)
201     if (res[i] != i * 103)
202       abort ();
205 int main (int argc, char *argv[])
207   gangs ();
208   workers ();
209   vectors ();
210   gangs_workers_vectors ();
211   return 0;