blob: ec29847e7a826872ad327d10037d8b082efae164 [file] [log] [blame]
Devang Patelee959ef2007-09-25 17:31:19 +00001
2; Update loop iteraton space to eliminate condition inside loop.
3; RUN: llvm-as < %s | opt -loop-index-split | llvm-dis | not grep bothcond
4define void @test(float* %x, i32 %ndat, float** %y, float %xcen, i32 %xmin, i32 %xmax, float %sigmal, float %contribution) {
5entry:
6 %tmp519 = icmp sgt i32 %xmin, %xmax ; <i1> [#uses=1]
7 br i1 %tmp519, label %return, label %bb.preheader
8
9bb.preheader: ; preds = %entry
10 %tmp3031 = fpext float %contribution to double ; <double> [#uses=1]
11 %tmp32 = mul double %tmp3031, 5.000000e-01 ; <double> [#uses=1]
12 %tmp3839 = fpext float %sigmal to double ; <double> [#uses=1]
13 br label %bb
14
15bb: ; preds = %bb.preheader, %cond_next45
Devang Patel37c8ad92008-12-04 21:38:42 +000016 %i.01.0 = phi i32 [ %tmp47, %cond_next45 ], [ 0, %bb.preheader ] ; <i32> [#uses=6]
Devang Patelee959ef2007-09-25 17:31:19 +000017 %tmp2 = icmp sgt i32 %i.01.0, -1 ; <i1> [#uses=1]
18 %tmp6 = icmp slt i32 %i.01.0, %ndat ; <i1> [#uses=1]
19 %bothcond = and i1 %tmp2, %tmp6 ; <i1> [#uses=1]
20 br i1 %bothcond, label %cond_true9, label %cond_next45
21
22cond_true9: ; preds = %bb
23 %tmp12 = getelementptr float* %x, i32 %i.01.0 ; <float*> [#uses=1]
24 %tmp13 = load float* %tmp12, align 4 ; <float> [#uses=1]
25 %tmp15 = sub float %xcen, %tmp13 ; <float> [#uses=1]
26 %tmp16 = tail call float @fabsf( float %tmp15 ) ; <float> [#uses=1]
27 %tmp18 = fdiv float %tmp16, %sigmal ; <float> [#uses=1]
28 %tmp21 = load float** %y, align 4 ; <float*> [#uses=2]
29 %tmp27 = getelementptr float* %tmp21, i32 %i.01.0 ; <float*> [#uses=1]
30 %tmp28 = load float* %tmp27, align 4 ; <float> [#uses=1]
31 %tmp2829 = fpext float %tmp28 to double ; <double> [#uses=1]
32 %tmp34 = sub float -0.000000e+00, %tmp18 ; <float> [#uses=1]
33 %tmp3435 = fpext float %tmp34 to double ; <double> [#uses=1]
34 %tmp36 = tail call double @exp( double %tmp3435 ) ; <double> [#uses=1]
35 %tmp37 = mul double %tmp32, %tmp36 ; <double> [#uses=1]
36 %tmp40 = fdiv double %tmp37, %tmp3839 ; <double> [#uses=1]
37 %tmp41 = add double %tmp2829, %tmp40 ; <double> [#uses=1]
38 %tmp4142 = fptrunc double %tmp41 to float ; <float> [#uses=1]
39 %tmp44 = getelementptr float* %tmp21, i32 %i.01.0 ; <float*> [#uses=1]
40 store float %tmp4142, float* %tmp44, align 4
41 br label %cond_next45
42
43cond_next45: ; preds = %bb, %cond_true9
44 %tmp47 = add i32 %i.01.0, 1 ; <i32> [#uses=2]
45 %tmp51 = icmp sgt i32 %tmp47, %xmax ; <i1> [#uses=1]
46 br i1 %tmp51, label %return.loopexit, label %bb
47
48return.loopexit: ; preds = %cond_next45
49 br label %return
50
51return: ; preds = %return.loopexit, %entry
52 ret void
53}
54
55declare float @fabsf(float)
56
57declare double @exp(double)