2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-93.c
blob4c41e60df0afe635763f8d022a968ecafdb54c6c
1 /* { dg-require-effective-target vect_float } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 3001
9 __attribute__ ((noinline))
10 main1 (float *pa)
12 int i;
14 for (i = 0; i < 3001; i++)
16 pa[i] = 2.0;
19 /* check results: */
20 for (i = 0; i < 3001; i++)
22 if (pa[i] != 2.0)
23 abort ();
26 for (i = 1; i <= 10; i++)
28 pa[i] = 3.0;
31 /* check results: */
32 for (i = 1; i <= 10; i++)
34 if (pa[i] != 3.0)
35 abort ();
38 return 0;
41 int main (void)
43 int i;
44 float a[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
45 float b[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
47 check_vect ();
49 /* from bzip2: */
50 for (i=0; i<N; i++) b[i] = i;
51 a[0] = 0;
52 for (i = 1; i <= 256; i++) a[i] = b[i-1];
54 /* check results: */
55 for (i = 1; i <= 256; i++)
57 if (a[i] != i-1)
58 abort ();
60 if (a[0] != 0)
61 abort ();
63 main1 (a);
65 return 0;
68 /* 2 loops vectorized in main1, 2 loops vectorized in main:
69 the first loop in main requires vectorization of conversions,
70 the second loop in main requires vectorization of misaligned load. */
72 /* main && main1 together: */
73 /* { dg-final { scan-tree-dump-times "vectorized 2 loops" 2 "vect" { target powerpc*-*-* i?86-*-* x86_64-*-* } } } */
74 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 3 "vect" { target vect_hw_misalign } } } */
75 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 2 "vect" { target { vect_no_align && {! vector_alignment_reachable} } } } } */
76 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 3 "vect" { xfail { { vect_no_align || vect_hw_misalign } || {! vector_alignment_reachable} } } } } */
78 /* in main1: */
79 /* { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" { target !powerpc*-*-* !i?86-*-* !x86_64-*-* } } } */
80 /* { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" { target vect_no_align } } } */
82 /* in main: */
83 /* { dg-final { scan-tree-dump-times "vectorized 0 loops" 1 "vect" { target vect_no_align } } } */
84 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 1 "vect" { xfail { vect_no_align || vect_hw_misalign } } } } */
86 /* { dg-final { cleanup-tree-dump "vect" } } */