OSDN Git Service

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