OSDN Git Service

* doc/loop.texi: Document possibility not to perform disambiguation
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / vect-multitypes-4.c
1 /* { dg-require-effective-target vect_int } */
2
3 #include <stdarg.h>
4 #include "tree-vect.h"
5
6 #define N 32
7
8 unsigned short sa[N];
9 unsigned short sc[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,
10                 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31};
11 unsigned short sb[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,
12                 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31};
13 unsigned int ia[N];
14 unsigned int ic[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,
15                0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
16 unsigned int ib[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,
17                0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
18
19 /* Current peeling-for-alignment scheme will consider the 'sa[i+7]'
20    access for peeling, and therefore will examine the option of
21    using a peeling factor = VF-7%VF. This will result in a peeling factor 1,
22    which will also align the access to 'ia[i+3]', and the loop could be
23    vectorized on all targets that support unaligned loads.
24  */
25
26 int main1 (int n)
27 {
28   int i;
29
30   /* Multiple types with different sizes, used in independent
31      copmutations. Vectorizable.  */
32   for (i = 0; i < n; i++)
33     {
34       sa[i+7] = sb[i] + sc[i];
35       ia[i+3] = ib[i] + ic[i];
36     }
37
38   /* check results:  */
39   for (i = 0; i < n; i++)
40     {
41       if (sa[i+7] != sb[i] + sc[i] || ia[i+3] != ib[i] + ic[i])
42         abort ();
43     }
44
45   return 0;
46 }
47
48 /* Current peeling-for-alignment scheme will consider the 'ia[i+3]'
49    access for peeling, and therefore will examine the option of
50    using a peeling factor = VF-3%VF. This will result in a peeling factor
51    5 if VF=8, or 1 if VF=4,2. In either case, this will also align the access 
52    to 'sa[i+3]', and the loop could be vectorized on targets that support 
53    unaligned loads.  */
54
55 int main2 (int n)
56 {
57   int i;
58
59   /* Multiple types with different sizes, used in independent
60      copmutations. Vectorizable.  */
61   for (i = 0; i < n; i++)
62     {
63       ia[i+3] = ib[i] + ic[i];
64       sa[i+3] = sb[i] + sc[i];
65     }
66
67   /* check results:  */
68   for (i = 0; i < n; i++)
69     {
70       if (sa[i+3] != sb[i] + sc[i] || ia[i+3] != ib[i] + ic[i])
71         abort ();
72     }
73
74   return 0;
75 }
76
77 int main (void)
78
79   check_vect ();
80   
81   main1 (N-7);
82   main2 (N-3);
83
84   return 0;
85 }
86
87 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 2 "vect" { xfail vect_no_align } } } */
88 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 2 "vect" { xfail vect_no_align } } } */
89 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 8 "vect" { xfail vect_no_align } } } */
90 /* { dg-final { cleanup-tree-dump "vect" } } */
91