OSDN Git Service

8723d266f9d8b71ee25a207d1bb7e508be4a59c9
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / costmodel / ppc / costmodel-vect-76b.c
1 /* { dg-require-effective-target vect_int } */
2
3 #include <stdarg.h>
4 #include "../../tree-vect.h"
5
6 #define N 8
7 #define OFF 4
8
9 /* Check handling of accesses for which the "initial condition" -
10    the expression that represents the first location accessed - is
11    more involved than just an ssa_name.  */
12
13 int ib[N+OFF] __attribute__ ((__aligned__(16))) = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
14
15 int main1 (int *pib)
16 {
17   int i;
18   int ia[N+OFF];
19   int ic[N+OFF] = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
20
21   for (i = OFF; i < N; i++)
22     {
23       pib[i - OFF] = ic[i];
24     }
25
26
27   /* check results:  */
28   for (i = OFF; i < N; i++)
29     {
30      if (pib[i - OFF] != ic[i])
31         abort ();
32     }
33
34   return 0;  
35 }
36
37 int main (void)
38 {
39   check_vect ();
40
41   main1 (&ib[OFF]);
42   return 0;
43 }
44
45 /* Peeling to align the store is used. Overhead of peeling is too high.  */
46 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 0 "vect" { target vector_alignment_reachable } } } */
47 /* { dg-final { scan-tree-dump-times "vectorization not profitable" 1 "vect" { target { vector_alignment_reachable && {! vect_no_align} } } } } */
48
49 /* Versioning to align the store is used. Overhead of versioning is not too high.  */
50 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target { vect_no_align || {! vector_alignment_reachable} } } } } */
51 /* { dg-final { cleanup-tree-dump "vect" } } */