Merged trunk at revision 161680 into branch.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / slp-perm-6.c
blob27e60369c6ce88a3c09e3e5050a86789a6d563db
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include <stdio.h>
5 #include "tree-vect.h"
7 #define M00 100
8 #define M10 216
9 #define M20 23
10 #define M01 1322
11 #define M11 13
12 #define M21 27271
13 #define M02 74
14 #define M12 191
15 #define M22 500
17 #define K00 405
18 #define K10 112
19 #define K01 4322
20 #define K11 135
22 #define N 16
24 void foo (int *__restrict__ pInput, int *__restrict__ pOutput,
25 int *__restrict__ pInput2, int *__restrict__ pOutput2)
27 int i, a, b, c, d, e;
29 for (i = 0; i < N / 3; i++)
31 a = *pInput++;
32 b = *pInput++;
33 c = *pInput++;
35 d = *pInput2++;
36 e = *pInput2++;
38 *pOutput++ = M00 * a + M01 * b + M02 * c;
39 *pOutput++ = M10 * a + M11 * b + M12 * c;
40 *pOutput++ = M20 * a + M21 * b + M22 * c;
42 /* Regular SLP - no permutation required. */
43 *pOutput2++ = K00 * d;
44 *pOutput2++ = K10 * e;
48 int main (int argc, const char* argv[])
50 int input[N], output[N], i;
51 int check_results[N] = {1470, 395, 28271, 5958, 1655, 111653, 10446, 2915, 195035, 14934, 4175, 278417, 19422, 5435, 361799, 0};
52 int input2[N], output2[N];
53 int check_results2[N] = {0, 112, 810, 336, 1620, 560, 2430, 784, 3240, 1008, 0, 0, 0, 0, 0, 0};
55 check_vect ();
57 for (i = 0; i < N; i++)
59 input[i] = i%256;
60 input2[i] = i%256;
61 output[i] = 0;
62 output2[i] = 0;
63 __asm__ volatile ("");
66 foo (input, output, input2, output2);
68 for (i = 0; i < N; i++)
69 if (output[i] != check_results[i] || output2[i] != check_results2[i])
70 abort ();
72 return 0;
75 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_perm } } } */
76 /* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 2 "vect" { target vect_perm } } } */
77 /* { dg-final { cleanup-tree-dump "vect" } } */