Dan Gohman | caf71ab | 2010-06-22 23:07:13 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -march=x86-64 -asm-verbose=false | FileCheck %s |
Dan Gohman | 1d36798 | 2010-04-24 03:13:44 +0000 | [diff] [blame] | 2 | |
| 3 | ; LSR's OptimizeMax should eliminate the select (max). |
| 4 | |
| 5 | ; CHECK: foo: |
| 6 | ; CHECK-NOT: cmov |
| 7 | ; CHECK: jle |
| 8 | |
| 9 | define void @foo(i64 %n, double* nocapture %p) nounwind { |
| 10 | entry: |
| 11 | %cmp6 = icmp slt i64 %n, 0 ; <i1> [#uses=1] |
| 12 | br i1 %cmp6, label %for.end, label %for.body.preheader |
| 13 | |
| 14 | for.body.preheader: ; preds = %entry |
| 15 | %tmp = icmp sgt i64 %n, 0 ; <i1> [#uses=1] |
| 16 | %n.op = add i64 %n, 1 ; <i64> [#uses=1] |
| 17 | %tmp1 = select i1 %tmp, i64 %n.op, i64 1 ; <i64> [#uses=1] |
| 18 | br label %for.body |
| 19 | |
| 20 | for.body: ; preds = %for.body.preheader, %for.body |
| 21 | %i = phi i64 [ %i.next, %for.body ], [ 0, %for.body.preheader ] ; <i64> [#uses=2] |
| 22 | %arrayidx = getelementptr double* %p, i64 %i ; <double*> [#uses=2] |
| 23 | %t4 = load double* %arrayidx ; <double> [#uses=1] |
| 24 | %mul = fmul double %t4, 2.200000e+00 ; <double> [#uses=1] |
| 25 | store double %mul, double* %arrayidx |
| 26 | %i.next = add nsw i64 %i, 1 ; <i64> [#uses=2] |
| 27 | %exitcond = icmp eq i64 %i.next, %tmp1 ; <i1> [#uses=1] |
| 28 | br i1 %exitcond, label %for.end, label %for.body |
| 29 | |
| 30 | for.end: ; preds = %for.body, %entry |
| 31 | ret void |
| 32 | } |
Dan Gohman | caf71ab | 2010-06-22 23:07:13 +0000 | [diff] [blame] | 33 | |
| 34 | ; In this case, one of the max operands is another max, which folds, |
| 35 | ; leaving a two-operand max which doesn't fit the usual pattern. |
| 36 | ; OptimizeMax should handle this case. |
| 37 | ; PR7454 |
| 38 | |
| 39 | ; CHECK: _Z18GenerateStatusPagei: |
| 40 | |
| 41 | ; CHECK: jle |
| 42 | ; CHECK-NEXT: xorl %edi, %edi |
| 43 | ; CHECK-NEXT: align |
| 44 | ; CHECK-NEXT: BB1_2: |
| 45 | ; CHECK-NEXT: callq |
| 46 | ; CHECK-NEXT: incl %ebx |
| 47 | ; CHECK-NEXT: cmpl %r14d, %ebx |
| 48 | ; CHECK-NEXT: movq %rax, %rdi |
| 49 | ; CHECK-NEXT: jl |
| 50 | |
| 51 | define void @_Z18GenerateStatusPagei(i32 %jobs_to_display) nounwind { |
| 52 | entry: |
| 53 | %cmp.i = icmp sgt i32 %jobs_to_display, 0 ; <i1> [#uses=1] |
| 54 | %tmp = select i1 %cmp.i, i32 %jobs_to_display, i32 0 ; <i32> [#uses=3] |
| 55 | %cmp8 = icmp sgt i32 %tmp, 0 ; <i1> [#uses=1] |
| 56 | br i1 %cmp8, label %bb.nph, label %for.end |
| 57 | |
| 58 | bb.nph: ; preds = %entry |
| 59 | %tmp11 = icmp sgt i32 %tmp, 1 ; <i1> [#uses=1] |
| 60 | %smax = select i1 %tmp11, i32 %tmp, i32 1 ; <i32> [#uses=1] |
| 61 | br label %for.body |
| 62 | |
| 63 | for.body: ; preds = %for.body, %bb.nph |
| 64 | %i.010 = phi i32 [ 0, %bb.nph ], [ %inc, %for.body ] ; <i32> [#uses=1] |
| 65 | %it.0.09 = phi float* [ null, %bb.nph ], [ %call.i, %for.body ] ; <float*> [#uses=1] |
| 66 | %call.i = call float* @_ZSt18_Rb_tree_decrementPKSt18_Rb_tree_node_base(float* %it.0.09) ; <float*> [#uses=1] |
| 67 | %inc = add nsw i32 %i.010, 1 ; <i32> [#uses=2] |
| 68 | %exitcond = icmp eq i32 %inc, %smax ; <i1> [#uses=1] |
| 69 | br i1 %exitcond, label %for.end, label %for.body |
| 70 | |
| 71 | for.end: ; preds = %for.body, %entry |
| 72 | ret void |
| 73 | } |
| 74 | |
| 75 | declare float* @_ZSt18_Rb_tree_decrementPKSt18_Rb_tree_node_base(float*) |