OSDN Git Service

For Greta Yorsh.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / tree-ssa / loop-1.c
1 /* { dg-do compile } */
2 /* -mlongcall will cause us to place &foo in the CTR register.  */
3 /* { dg-skip-if "" { powerpc*-*-* } { "-mlongcall" } { "" } } */
4 /* { dg-options "-O1 -ftree-loop-ivcanon -funroll-loops -fdump-tree-ivcanon-details -fdump-tree-cunroll-details -fdump-tree-optimized" } */
5
6 /* On 31-bit S/390 the function address will be stored (once) in the literal pool,
7    so scan-assembler-times "foo" will return 1 even if the loop is fully unrolled.
8    -msmall-exec avoids this by enabling a call instruction with immediate operand.  */
9 /* { dg-options "-O1 -ftree-loop-ivcanon -funroll-loops -fdump-tree-ivcanon-details -fdump-tree-cunroll-details -fdump-tree-optimized -msmall-exec" { target s390-*-* } } */
10
11 /* On Darwin, we call extern functions via a stub in PIC mode which is default and
12    the stub is named after the function.  To avoid this we use -static to go out
13    of PIC mode.  */
14 /* { dg-options "-O1 -ftree-loop-ivcanon -funroll-loops -fdump-tree-ivcanon-details -fdump-tree-cunroll-details -fdump-tree-optimized -static" { target *-*-darwin* } } */
15
16 /* On MIPS, disable generating hints (R_MIPS_JALR) for PIC calls.  In addition
17    to the load from the GOT this also contains the name of the funtion so for
18    each call the function name would appear twice.  */
19 /* { dg-options "-O1 -ftree-loop-ivcanon -funroll-loops -fdump-tree-ivcanon-details -fdump-tree-cunroll-details -fdump-tree-optimized -mno-relax-pic-calls" { target mips*-*-* } } */
20
21 void xxx(void)
22 {
23   int x = 45;
24
25   while (x >>= 1)
26     foo ();
27 }
28
29 /* We should be able to find out that the loop iterates four times and unroll it completely.  */
30
31 /* { dg-final { scan-tree-dump-times "Added canonical iv to loop 1, 4 iterations" 1 "ivcanon"} } */
32 /* { dg-final { cleanup-tree-dump "ivcanon" } } */
33 /* { dg-final { scan-tree-dump-times "Unrolled loop 1 completely" 1 "cunroll"} } */
34 /* { dg-final { cleanup-tree-dump "cunroll" } } */
35 /* { dg-final { scan-tree-dump-times "foo" 5 "optimized"} } */
36 /* { dg-final { cleanup-tree-dump "optimized" } } */
37
38 /* Because hppa, ia64 and Windows targets include an external declaration
39    for foo as well as the calls we need to look for something more specific
40    than just foo in order to count only the calls and not the declaration.  */
41 /* The SH targets always use separate instructions to load the address
42    and to do the actual call - bsr is only generated by link time
43    relaxation.  */
44 /* CRIS keeps the address in a register.  */
45 /* m68k sometimes puts the address in a register, depending on CPU and PIC.  */
46
47 /* { dg-final { scan-assembler-times "foo" 5 { xfail hppa*-*-* ia64*-*-* sh*-*-* cris-*-* crisv32-*-* fido-*-* m68k-*-* i?86-*-mingw* i?86-*-cygwin* x86_64-*-mingw* } } } */
48 /* { dg-final { scan-assembler-times "foo,%r" 5 { target hppa*-*-* } } } */
49 /* { dg-final { scan-assembler-times "= foo"  5 { target ia64*-*-* } } } */
50 /* { dg-final { scan-assembler-times "call\[ \t\]*_foo" 5 { target i?86-*-mingw* i?86-*-cygwin* } } } */
51 /* { dg-final { scan-assembler-times "call\[ \t\]*foo" 5 { target x86_64-*-mingw* } } } */
52 /* { dg-final { scan-assembler-times "jsr|bsrf|blink\ttr?,r18"  5 { target sh*-*-* } } } */
53 /* { dg-final { scan-assembler-times "Jsr \\\$r" 5 { target cris-*-* } } } */
54 /* { dg-final { scan-assembler-times "\[jb\]sr" 5 { target fido-*-* m68k-*-* } } } */