PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / prefetch-5.c
blob7f343b66025e595c5633898eb69b9d84dcce45a5
1 /* { dg-do compile { target { i?86-*-* x86_64-*-* } } } */
2 /* { dg-options "-O2 -fprefetch-loop-arrays -march=amdfam10 --param min-insn-to-prefetch-ratio=5 -fdump-tree-aprefetch-details" } */
4 /* These are common idioms for writing variable-length arrays at the end
5 of structures. We should not deduce anything about the number of iterations
6 of the loops from them. */
8 struct tail0
10 int xxx;
11 int yyy[0];
14 int loop0 (int n, struct tail0 *x)
16 int i, s = 0;
18 for (i = 0; i < n; i++)
19 s += x->yyy[i];
21 return s;
24 struct tail1
26 int xxx;
27 int yyy[1];
29 int loop1 (int n, struct tail1 *x)
31 int i, s = 0;
33 for (i = 0; i < n; i++)
34 s += x->yyy[i];
36 return s;
39 /* It is unlikely that this should be a tail array. We may deduce that most
40 likely, the loop iterates about 5 times, and the array is not worth prefetching. */
42 struct tail5
44 int xxx;
45 int yyy[5];
47 int loop5 (int n, struct tail5 *x)
49 int i, s = 0;
51 for (i = 0; i < n; i++)
52 s += x->yyy[i];
54 return s;
57 /* Until we are able to track likely upper bounds, we can't really work out that
58 small trailing arrays should not be prefetched. */
59 /* { dg-final { scan-tree-dump-times "Issued prefetch" 2 "aprefetch" } } */
60 /* { dg-final { scan-tree-dump-times "Not prefetching" 1 "aprefetch" } } */