annotate gcc/testsuite/gcc.dg/vect/pr79920.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1 /* { dg-additional-options "-O3 -fno-fast-math" } */
111
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 #include "tree-vect.h"
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 double __attribute__((noinline,noclone))
kono
parents:
diff changeset
6 compute_integral (double w_1[18])
kono
parents:
diff changeset
7 {
kono
parents:
diff changeset
8 double A = 0;
kono
parents:
diff changeset
9 double t33[2][6] = {{0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
kono
parents:
diff changeset
10 {0.0, 0.0, 0.0, 0.0, 0.0, 0.0}};
kono
parents:
diff changeset
11 double t43[2] = {0.0, 0.0};
kono
parents:
diff changeset
12 double t31[2][2] = {{1.0, 1.0}, {1.0, 1.0}};
kono
parents:
diff changeset
13 double t32[2][3] = {{0.0, 0.0, 1.0}, {0.0, 0.0, 1.0}};
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 for (int ip_1 = 0; ip_1 < 2; ++ip_1)
kono
parents:
diff changeset
16 {
kono
parents:
diff changeset
17 for (int i_0 = 0; i_0 < 6; ++i_0)
kono
parents:
diff changeset
18 t33[ip_1][i_0] = ((w_1[i_0*3] * t32[ip_1][0])
kono
parents:
diff changeset
19 + (w_1[i_0*3+2] * t32[ip_1][2]));
kono
parents:
diff changeset
20 t43[ip_1] = 2.0;
kono
parents:
diff changeset
21 }
kono
parents:
diff changeset
22 for (int i_0 = 0; i_0 < 6; ++i_0)
kono
parents:
diff changeset
23 A += t43[1]*t33[1][i_0];
kono
parents:
diff changeset
24 return A;
kono
parents:
diff changeset
25 }
kono
parents:
diff changeset
26
kono
parents:
diff changeset
27 int main()
kono
parents:
diff changeset
28 {
kono
parents:
diff changeset
29 check_vect ();
kono
parents:
diff changeset
30
kono
parents:
diff changeset
31 double w_1[18] = {0., 1.0, 1.0,
kono
parents:
diff changeset
32 0., 1.0, 1.0,
kono
parents:
diff changeset
33 0., 1.0, 1.0,
kono
parents:
diff changeset
34 0., 1.0, 1.0,
kono
parents:
diff changeset
35 0., 1.0, 1.0,
kono
parents:
diff changeset
36 0., 1.0, 1.0};
kono
parents:
diff changeset
37 double A = compute_integral(w_1);
kono
parents:
diff changeset
38 if (A != 12.0)
kono
parents:
diff changeset
39 __builtin_abort ();
kono
parents:
diff changeset
40 return 0;
kono
parents:
diff changeset
41 }
kono
parents:
diff changeset
42
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
43 /* { dg-final { scan-tree-dump-times {using an in-order \(fold-left\) reduction} 1 "vect" { target vect_double } } } */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
44 /* { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" { target { vect_double && { vect_perm && vect_hw_misalign } } } } } */