OSDN Git Service

Increase array sizes in vect-tests to enable 256-bit vectorization
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / vect-over-widen-4.c
1 /* { dg-require-effective-target vect_int } */
2 /* { dg-require-effective-target vect_shift } */
3
4 #include <stdlib.h>
5 #include <stdarg.h>
6 #include "tree-vect.h"
7
8 #define N 512
9
10 /* Modified rgb to rgb conversion from FFmpeg.  */
11 __attribute__ ((noinline)) int
12 foo (unsigned char *src, unsigned char *dst)
13 {
14   unsigned char *s = src;
15   unsigned short *d = (unsigned short *)dst, res;
16   int i, result = 0;
17
18   for (i = 0; i < N/4; i++)
19     {
20       const int b = *s++;
21       const int g = *s++;
22       const int r = *s++;
23       const int a = *s++;
24       res = ((b>>3) | ((g&0xFC)<<3) | ((r&0xF8)<<8) | (a>>5));
25       *d = res;
26       result += res;
27       d++;
28     }
29
30   s = src;
31   d = (unsigned short *)dst;
32   for (i = 0; i < N/4; i++)
33     {
34       const int b = *s++;
35       const int g = *s++;
36       const int r = *s++;
37       const int a = *s++;
38       if (*d != ((b>>3) | ((g&0xFC)<<3) | ((r&0xF8)<<8) | (a>>5)))
39         abort ();
40       d++;
41     }
42
43   return result;
44 }
45
46 int main (void)
47 {
48   int i;
49   unsigned char in[N], out[N];
50
51   check_vect ();
52
53   for (i = 0; i < N; i++)
54     {
55       in[i] = i;
56       out[i] = 255;
57       __asm__ volatile ("");
58     }
59
60   foo (in, out);
61
62   return 0;
63 }
64
65 /* { dg-final { scan-tree-dump-times "vect_recog_over_widening_pattern: detected" 4 "vect" } } */
66 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
67 /* { dg-final { cleanup-tree-dump "vect" } } */
68