Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-over-widen-4.c
blobcc75646514de5c546f958e3284257c7c8dbfaa2c
1 /* { dg-require-effective-target vect_int } */
2 /* { dg-require-effective-target vect_shift } */
4 #include <stdarg.h>
5 #include "tree-vect.h"
7 #define N 64
9 /* Modified rgb to rgb conversion from FFmpeg. */
10 __attribute__ ((noinline)) int
11 foo (unsigned char *src, unsigned char *dst)
13 unsigned char *s = src;
14 unsigned short *d = (unsigned short *)dst, res;
15 int i, result = 0;
17 for (i = 0; i < N/4; i++)
19 const int b = *s++;
20 const int g = *s++;
21 const int r = *s++;
22 const int a = *s++;
23 res = ((b>>3) | ((g&0xFC)<<3) | ((r&0xF8)<<8) | (a>>5));
24 *d = res;
25 result += res;
26 d++;
29 s = src;
30 d = (unsigned short *)dst;
31 for (i = 0; i < N/4; i++)
33 const int b = *s++;
34 const int g = *s++;
35 const int r = *s++;
36 const int a = *s++;
37 if (*d != ((b>>3) | ((g&0xFC)<<3) | ((r&0xF8)<<8) | (a>>5)))
38 abort ();
39 d++;
42 return result;
45 int main (void)
47 int i;
48 unsigned char in[N], out[N];
50 check_vect ();
52 for (i = 0; i < N; i++)
54 in[i] = i;
55 out[i] = 255;
56 __asm__ volatile ("");
59 foo (in, out);
61 return 0;
64 /* { dg-final { scan-tree-dump-times "vect_recog_widen_shift_pattern: detected" 2 "vect" { target vect_widen_shift } } } */
65 /* { dg-final { scan-tree-dump-times "vect_recog_over_widening_pattern: detected" 2 "vect" { target vect_widen_shift } } } */
66 /* { dg-final { scan-tree-dump-times "vect_recog_over_widening_pattern: detected" 4 "vect" { target { { ! vect_sizes_32B_16B } && { ! vect_widen_shift } } } } } */
67 /* { dg-final { scan-tree-dump-times "vect_recog_over_widening_pattern: detected" 8 "vect" { target vect_sizes_32B_16B } } } */
68 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */