2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-92.c
blob62aa97540f2594c8ea11d2e7264dc8ff944d760e
1 /* { dg-require-effective-target vect_float } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 256
8 float pa[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
9 float pb[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))) = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57};
10 float pc[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))) = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19};
12 /* Check handling of unaligned accesses when the misalignment is
13 known at compile time and different accesses have the same
14 misalignment (e.g. peeling to align one access will align all
15 accesses with the same misalignment. Also, the number of
16 peeled iterations is known in this case, and the vectorizer
17 can use this information (generate prolog and epilog loops
18 with known number of iterations, and only if needed). */
20 __attribute__ ((noinline)) int
21 main1 ()
23 int i;
25 for (i = 0; i < 10; i++)
27 pa[i+1] = pb[i+1] * pc[i+1];
30 /* check results: */
31 for (i = 0; i < 10; i++)
33 if (pa[i+1] != (pb[i+1] * pc[i+1]))
34 abort ();
37 return 0;
40 __attribute__ ((noinline)) int
41 main2 ()
43 int i;
45 for (i = 0; i < 12; i++)
47 pa[i+1] = pb[i+1] * pc[i+1];
50 /* check results: */
51 for (i = 0; i < 12; i++)
53 if (pa[i+1] != (pb[i+1] * pc[i+1]))
54 abort ();
57 return 0;
60 __attribute__ ((noinline)) int
61 main3 (int n)
63 int i;
65 for (i = 0; i < n; i++)
67 pa[i+1] = pb[i+1] * pc[i+1];
70 /* check results: */
71 for (i = 0; i < n; i++)
73 if (pa[i+1] != (pb[i+1] * pc[i+1]))
74 abort ();
77 return 0;
80 int main (void)
82 int i;
84 check_vect ();
86 main1 ();
87 main2 ();
88 main3 (N-1);
90 return 0;
93 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 3 "vect" } } */
94 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 9 "vect" { target vect_hw_misalign } } } */
95 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" { xfail vect_hw_misalign } } } */
96 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 3 "vect" { xfail vect_hw_misalign } } } */
97 /* { dg-final { cleanup-tree-dump "vect" } } */