annotate gcc/testsuite/gcc.dg/tree-ssa/cunroll-13.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-do compile } */
kono
parents:
diff changeset
2 /* { dg-options "-O3 -fdisable-tree-evrp -fdisable-tree-cunrolli -fdisable-tree-vrp1 -fdump-tree-cunroll-blocks-details" } */
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 #if __SIZEOF_INT__ < 4
kono
parents:
diff changeset
5 __extension__ typedef __INT32_TYPE__ i32;
kono
parents:
diff changeset
6 #else
kono
parents:
diff changeset
7 typedef int i32;
kono
parents:
diff changeset
8 #endif
kono
parents:
diff changeset
9
kono
parents:
diff changeset
10 struct a {int a[8];int b;};
kono
parents:
diff changeset
11 void
kono
parents:
diff changeset
12 t(struct a *a)
kono
parents:
diff changeset
13 {
kono
parents:
diff changeset
14 for (i32 i=0;i<123456 && a->a[i];i++)
kono
parents:
diff changeset
15 a->a[i]++;
kono
parents:
diff changeset
16 }
kono
parents:
diff changeset
17 /* This pass relies on the fact that we do not eliminate the redundant test for i early.
kono
parents:
diff changeset
18 It is necessary to disable all passes that do so. At the moment it is evrp, vrp1 and cunrolli. */
kono
parents:
diff changeset
19 /* { dg-final { scan-tree-dump-times "Loop 1 iterates 123454 times" 1 "cunroll" } } */
kono
parents:
diff changeset
20 /* { dg-final { scan-tree-dump-times "Last iteration exit edge was proved true" 1 "cunroll" } } */
kono
parents:
diff changeset
21 /* { dg-final { scan-tree-dump-times "Exit condition of peeled iterations was eliminated" 1 "cunroll" } } */
kono
parents:
diff changeset
22 /* { dg-final { scan-tree-dump-times "loop with 7 iterations completely unrolled" 1 "cunroll" } } */
kono
parents:
diff changeset
23 /* { dg-final { scan-tree-dump-not "Invalid sum" "cunroll" } } */