Jakob Stoklund Olesen | 312babc | 2011-03-31 03:54:44 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -regalloc=greedy -mcpu=cortex-a8 -relocation-model=pic -disable-fp-elim | FileCheck %s |
| 2 | ; |
| 3 | ; ARM tests that crash or fail with the greedy register allocator. |
| 4 | |
| 5 | target triple = "thumbv7-apple-darwin" |
| 6 | |
| 7 | declare double @exp(double) |
| 8 | |
| 9 | ; CHECK remat_subreg |
| 10 | define void @remat_subreg(float* nocapture %x, i32* %y, i32 %n, i32 %z, float %c, float %lambda, float* nocapture %ret_f, float* nocapture %ret_df) nounwind { |
| 11 | entry: |
| 12 | %conv16 = fpext float %lambda to double |
| 13 | %mul17 = fmul double %conv16, -1.000000e+00 |
| 14 | br i1 undef, label %cond.end.us, label %cond.end |
| 15 | |
| 16 | cond.end.us: ; preds = %entry |
| 17 | unreachable |
| 18 | |
| 19 | cond.end: ; preds = %cond.end, %entry |
| 20 | %mul = fmul double undef, 0.000000e+00 |
| 21 | %add = fadd double undef, %mul |
| 22 | %add46 = fadd double undef, undef |
| 23 | %add75 = fadd double 0.000000e+00, undef |
| 24 | br i1 undef, label %for.end, label %cond.end |
| 25 | |
| 26 | for.end: ; preds = %cond.end |
| 27 | %conv78 = sitofp i32 %z to double |
| 28 | %conv83 = fpext float %c to double |
| 29 | %mul84 = fmul double %mul17, %conv83 |
| 30 | %call85 = tail call double @exp(double %mul84) nounwind |
| 31 | %mul86 = fmul double %conv78, %call85 |
| 32 | %add88 = fadd double 0.000000e+00, %mul86 |
| 33 | ; CHECK: blx _exp |
| 34 | %call100 = tail call double @exp(double %mul84) nounwind |
| 35 | %mul101 = fmul double undef, %call100 |
| 36 | %add103 = fadd double %add46, %mul101 |
| 37 | %mul111 = fmul double undef, %conv83 |
| 38 | %mul119 = fmul double %mul111, undef |
| 39 | %add121 = fadd double undef, %mul119 |
| 40 | %div = fdiv double 1.000000e+00, %conv16 |
| 41 | %div126 = fdiv double %add, %add75 |
| 42 | %sub = fsub double %div, %div126 |
| 43 | %div129 = fdiv double %add103, %add88 |
| 44 | %add130 = fadd double %sub, %div129 |
| 45 | %conv131 = fptrunc double %add130 to float |
| 46 | store float %conv131, float* %ret_f, align 4 |
| 47 | %mul139 = fmul double %div129, %div129 |
| 48 | %div142 = fdiv double %add121, %add88 |
| 49 | %sub143 = fsub double %mul139, %div142 |
| 50 | ; %lambda is passed on the stack, and the stack slot load is rematerialized. |
| 51 | ; The rematted load of a float constrains the D register used for the mul. |
| 52 | ; CHECK: vldr |
| 53 | %mul146 = fmul float %lambda, %lambda |
| 54 | %conv147 = fpext float %mul146 to double |
| 55 | %div148 = fdiv double 1.000000e+00, %conv147 |
| 56 | %sub149 = fsub double %sub143, %div148 |
| 57 | %conv150 = fptrunc double %sub149 to float |
| 58 | store float %conv150, float* %ret_df, align 4 |
| 59 | ret void |
| 60 | } |
| 61 | |