libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / no-vfa-vect-57.c
blob6291dd9d53c33160a0aacf05aeb6febb79fdadf0
1 /* { dg-require-effective-target vect_float } */
3 #include <stdarg.h>
4 #include <string.h>
5 #include "tree-vect.h"
7 #define N 256
9 __attribute__ ((noinline))
10 void bar (float *pa, float *pb, float *pc)
12 int i;
14 /* check results: */
15 #pragma GCC novector
16 for (i = 0; i < N/2; i++)
18 if (pa[i] != (pb[i+1] * pc[i+1]))
19 abort ();
22 return;
25 __attribute__ ((noinline))
26 void foo (float *pb, float *pc)
28 float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57};
29 float c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19};
30 memcpy (pb, b, sizeof (b));
31 memcpy (pc, c, sizeof (c));
34 /* Unaligned pointer read accesses with known alignment,
35 and an unaligned write access with unknown alignment.
36 The loop bound is known and divisible by the vectorization factor.
37 Can't prove that the pointers don't alias.
38 vect-61.c is similar to this one with one difference:
39 the loop bound is unknown.
40 vect-56.c is similar to this one with two differences:
41 aliasing is a problem, and the write access is aligned. */
43 __attribute__ ((noinline)) int
44 main1 (float *pa)
46 int i;
47 float b[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
48 float c[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
49 float *pb = b;
50 float *pc = c;
52 foo (pb, pc);
54 for (i = 0; i < N/2; i++)
56 pa[i] = pb[i+1] * pc[i+1];
59 bar (pa, pb, pc);
61 return 0;
64 int main (void)
66 int i;
67 float a[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
69 check_vect ();
70 main1 (a);
72 return 0;
75 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail { vect_no_align && { ! vect_hw_misalign } } } } } */