6 A (const A &x) { t = x.t; }
15 M (const M &x) { t = x.t; }
24 B (const B &x) { t = x.t; }
47 #pragma omp declare reduction(+:A<int>:omp_out.t += omp_in.t)
48 #pragma omp declare reduction(+:A<char>:add (omp_out, omp_in)) initializer(zero (omp_priv))
49 #pragma omp declare reduction(*:M<int>:omp_out.t *= omp_in.t) initializer(omp_priv = 1)
50 #pragma omp declare reduction(|:A<unsigned long long>:orit (&omp_in, &omp_out))
51 #pragma omp declare reduction(&:B<long>:omp_out.t = omp_out.t & omp_in.t) initializer(orit (&omp_priv, &omp_orig))
52 #pragma omp declare reduction(maxb:short:omp_out = omp_in > omp_out ? omp_in : omp_out) initializer(omp_priv = -6)
56 __attribute__((noinline, noclone)) void
57 foo (A<int> (*&x)[3][2], M<int> *y, B<long> (&w)[1][2])
59 A<unsigned long long> a[9];
62 #pragma omp parallel for reduction(+:x[0:2][:][0:2], z[:4]) \
63 reduction(*:y[:3]) reduction(|:a[:4]) \
64 reduction(&:w[0:][:2]) reduction(maxb:b)
65 for (int i = 0; i < 128; i++)
67 x[i / 64][i % 3][(i / 4) & 1].t += i;
74 z[i / 32].t += (i & 3);
77 a[i / 32].t |= 1ULL << (i & 30);
78 w[0][i & 1].t &= ~(1L << (i / 17 * 3));
90 for (int i = 0; i < 9; i++)
91 if (a[i].t != (i < 4 ? 0x55555555ULL : 0))
93 if (bb[0] != 78 || bb[1] != 12 || bb[2] != 22 || bb[3] != 84 || bb[4] != 127)
98 A<int> (*p3)[3][2] = &a3[1];
99 M<int> y3[5] = { 0, 1, 1, 1, 0 };
109 A<unsigned long long> a[9];
110 S() : x(p3), y(y3+1), w(w3), z(), a(), b() {}
111 __attribute__((noinline, noclone)) void foo ();
117 #pragma omp parallel for reduction(+:x[0:2][:][0:2], z[:4]) \
118 reduction(*:y[:3]) reduction(|:a[:4]) \
119 reduction(&:w[0:][:2]) reduction(maxb:b)
120 for (int i = 0; i < 128; i++)
122 x[i / 64][i % 3][(i / 4) & 1].t += i;
129 z[i / 32].t += (i & 3);
132 a[i / 32].t |= 1ULL << (i & 30);
133 w[0][i & 1].t &= ~(1L << (i / 17 * 3));
142 if ((i % 192) > b[4])
151 static int a2[4][3][2] = {{{ 0, 0 }, { 0, 0 }, { 0, 0 }},
152 {{ 312, 381 }, { 295, 356 }, { 337, 335 }},
153 {{ 1041, 975 }, { 1016, 1085 }, { 935, 1060 }},
154 {{ 0, 0 }, { 0, 0 }, { 0, 0 }}};
155 A<int> (*p)[3][2] = &a[1];
156 M<int> y[5] = { 0, 1, 1, 1, 0 };
157 int y2[5] = { 0, 6561, 2401, 289, 0 };
158 char z2[10] = { 48, 49, 50, 51, 0, 0, 0, 0, 0, 0 };
161 for (int i = 0; i < 4; i++)
162 for (int j = 0; j < 3; j++)
163 for (int k = 0; k < 2; k++)
164 if (a[i][j][k].t != a2[i][j][k])
166 for (int i = 0; i < 5; i++)
169 for (int i = 0; i < 10; i++)
172 if (w[0][0].t != ~0x249249L || w[0][1].t != ~0x249249L)
176 for (int i = 0; i < 9; i++)
177 if (s.a[i].t != (i < 4 ? 0x55555555ULL : 0))
179 for (int i = 0; i < 4; i++)
180 for (int j = 0; j < 3; j++)
181 for (int k = 0; k < 2; k++)
182 if (a3[i][j][k].t != a2[i][j][k])
184 for (int i = 0; i < 5; i++)
185 if (y3[i].t != y2[i])
187 for (int i = 0; i < 10; i++)
188 if (s.z[i].t != z2[i])
190 if (w3[0][0].t != ~0x249249L || w3[0][1].t != ~0x249249L)
192 if (s.b[0] != 78 || s.b[1] != 12 || s.b[2] != 22
193 || s.b[3] != 84 || s.b[4] != 127)