OSDN Git Service

* gcc.target/i386/sse-17.c: Include sse2-check.h.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / vect-78-alignchecks.c
1 /* { dg-require-effective-target vect_int } */
2
3 #include <stdarg.h>
4 #include "tree-vect.h"
5
6 #define N 8
7 #define OFF 8
8
9 /* Check handling of accesses for which the "initial condition" -
10    the expression that represents the first location accessed - is
11    more involved than just an ssa_name.  */
12
13 int ib[N+OFF] __attribute__ ((__aligned__(16))) = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10, 14, 22, 26, 34};
14 int off = 8;
15
16 __attribute__ ((noinline))
17 int main1 (int *ib)
18 {
19   int i;
20   int ia[N];
21
22   for (i = 0; i < N; i++)
23     {
24       ia[i] = ib[i+off];
25     }
26
27
28   /* check results:  */
29   for (i = 0; i < N; i++)
30     {
31      if (ia[i] != ib[i+off])
32         abort ();
33     }
34
35   return 0;
36 }
37
38 int main (void)
39 {
40   check_vect ();
41
42   main1 (ib);
43   return 0;
44 }
45
46 /* For targets that don't support misaligned loads we version for the load.
47    The store is aligned if alignment can be forced on the stack. Otherwise, we need to 
48    peel the loop in order to align the store. For targets that can't align variables
49    using peeling (don't guarantee natural alignment) versioning the loop is required
50    both for the load and the store.  */
51
52 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
53 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 1 "vect" { xfail { vect_no_align } } } } */ 
54 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 1 "vect" { target { {! vect_no_align} && { unaligned_stack && vector_alignment_reachable } } } } } */
55 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning." 1 "vect" { target { { {! unaligned_stack} && vect_no_align } || {unaligned_stack && { {! vector_alignment_reachable} && {! vect_no_align} } } } } } } */
56 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning." 2 "vect" { target { { unaligned_stack && { vector_alignment_reachable && vect_no_align } } || {unaligned_stack && { {! vector_alignment_reachable} && vect_no_align } } } } } } */
57 /* { dg-final { cleanup-tree-dump "vect" } } */