Eliminate another use of -disable-correct-folding.
[oota-llvm.git] / test / CodeGen / X86 / 2007-11-30-LoadFolding-Bug.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -stats |& \
2 ; RUN:   grep {1 .*folded into instructions}
3
4 declare fastcc void @rdft(i32, i32, double*, i32*, double*)
5
6 define fastcc void @mp_sqrt(i32 %n, i32 %radix, i32* %in, i32* %out, i32* %tmp1, i32* %tmp2, i32 %nfft, double* %tmp1fft, double* %tmp2fft, i32* %ip, double* %w) nounwind {
7 entry:
8         br label %bb.i5
9
10 bb.i5:          ; preds = %bb.i5, %entry
11         %nfft_init.0.i = phi i32 [ 1, %entry ], [ %tmp7.i3, %bb.i5 ]            ; <i32> [#uses=1]
12         %foo = phi i1 [1, %entry], [0, %bb.i5]
13         %tmp7.i3 = shl i32 %nfft_init.0.i, 1            ; <i32> [#uses=2]
14         br i1 %foo, label %bb.i5, label %mp_unexp_mp2d.exit.i
15
16 mp_unexp_mp2d.exit.i:           ; preds = %bb.i5
17         br i1 %foo, label %cond_next.i, label %cond_true.i
18
19 cond_true.i:            ; preds = %mp_unexp_mp2d.exit.i
20         ret void
21
22 cond_next.i:            ; preds = %mp_unexp_mp2d.exit.i
23         %tmp22.i = sdiv i32 0, 2                ; <i32> [#uses=2]
24         br i1 %foo, label %cond_true29.i, label %cond_next36.i
25
26 cond_true29.i:          ; preds = %cond_next.i
27         ret void
28
29 cond_next36.i:          ; preds = %cond_next.i
30         store i32 %tmp22.i, i32* null, align 4
31         %tmp8.i14.i = select i1 %foo, i32 1, i32 0              ; <i32> [#uses=1]
32         br label %bb.i28.i
33
34 bb.i28.i:               ; preds = %bb.i28.i, %cond_next36.i
35         %j.0.reg2mem.0.i16.i = phi i32 [ 0, %cond_next36.i ], [ %indvar.next39.i, %bb.i28.i ]           ; <i32> [#uses=2]
36         %din_addr.1.reg2mem.0.i17.i = phi double [ 0.000000e+00, %cond_next36.i ], [ %tmp16.i25.i, %bb.i28.i ]          ; <double> [#uses=1]
37         %tmp1.i18.i = fptosi double %din_addr.1.reg2mem.0.i17.i to i32          ; <i32> [#uses=2]
38         %tmp4.i19.i = icmp slt i32 %tmp1.i18.i, %radix          ; <i1> [#uses=1]
39         %x.0.i21.i = select i1 %tmp4.i19.i, i32 %tmp1.i18.i, i32 0              ; <i32> [#uses=1]
40         %tmp41.sum.i = add i32 %j.0.reg2mem.0.i16.i, 2          ; <i32> [#uses=0]
41         %tmp1213.i23.i = sitofp i32 %x.0.i21.i to double                ; <double> [#uses=1]
42         %tmp15.i24.i = sub double 0.000000e+00, %tmp1213.i23.i          ; <double> [#uses=1]
43         %tmp16.i25.i = mul double 0.000000e+00, %tmp15.i24.i            ; <double> [#uses=1]
44         %indvar.next39.i = add i32 %j.0.reg2mem.0.i16.i, 1              ; <i32> [#uses=2]
45         %exitcond40.i = icmp eq i32 %indvar.next39.i, %tmp8.i14.i               ; <i1> [#uses=1]
46         br i1 %exitcond40.i, label %mp_unexp_d2mp.exit29.i, label %bb.i28.i
47
48 mp_unexp_d2mp.exit29.i:         ; preds = %bb.i28.i
49         %tmp46.i = sub i32 0, %tmp22.i          ; <i32> [#uses=1]
50         store i32 %tmp46.i, i32* null, align 4
51         br i1 %exitcond40.i, label %bb.i.i, label %mp_sqrt_init.exit
52
53 bb.i.i:         ; preds = %bb.i.i, %mp_unexp_d2mp.exit29.i
54         br label %bb.i.i
55
56 mp_sqrt_init.exit:              ; preds = %mp_unexp_d2mp.exit29.i
57         tail call fastcc void @mp_mul_csqu( i32 0, double* %tmp1fft )
58         tail call fastcc void @rdft( i32 0, i32 -1, double* null, i32* %ip, double* %w )
59         tail call fastcc void @mp_mul_d2i( i32 0, i32 %radix, i32 0, double* %tmp1fft, i32* %tmp2 )
60         br i1 %exitcond40.i, label %cond_false.i, label %cond_true36.i
61
62 cond_true36.i:          ; preds = %mp_sqrt_init.exit
63         ret void
64
65 cond_false.i:           ; preds = %mp_sqrt_init.exit
66         tail call fastcc void @mp_round( i32 0, i32 %radix, i32 0, i32* %out )
67         tail call fastcc void @mp_add( i32 0, i32 %radix, i32* %tmp1, i32* %tmp2, i32* %tmp1 )
68         tail call fastcc void @mp_sub( i32 0, i32 %radix, i32* %in, i32* %tmp2, i32* %tmp2 )
69         tail call fastcc void @mp_round( i32 0, i32 %radix, i32 0, i32* %tmp1 )
70         tail call fastcc void @mp_mul_d2i( i32 0, i32 %radix, i32 %tmp7.i3, double* %tmp2fft, i32* %tmp2 )
71         ret void
72 }
73
74 declare fastcc void @mp_add(i32, i32, i32*, i32*, i32*)
75
76 declare fastcc void @mp_sub(i32, i32, i32*, i32*, i32*)
77
78 declare fastcc void @mp_round(i32, i32, i32, i32*)
79
80 declare fastcc void @mp_mul_csqu(i32, double*)
81
82 declare fastcc void @mp_mul_d2i(i32, i32, i32, double*, i32*)