1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
; RUN: opt %s -S -simplifycfg | FileCheck %s
declare void @foo()
declare void @bar()
; CHECK-LABEL: @test_and1
; CHECK: taken:
; CHECK-NOT: cmp3
; CHECK: call void @bar()
; CHECK-NEXT: call void @foo()
; CHECK: ret
define void @test_and1(i32 %a, i32 %b) {
entry:
%cmp1 = icmp eq i32 %a, 0
%cmp2 = icmp eq i32 %b, 0
%and = and i1 %cmp1, %cmp2
br i1 %and, label %taken, label %end
taken:
call void @bar()
%cmp3 = icmp eq i32 %a, 0 ;; <-- implied true
br i1 %cmp3, label %if.then, label %end
if.then:
call void @foo()
br label %end
end:
ret void
}
; We can't infer anything if the result of the 'and' is false
; CHECK-LABEL: @test_and2
; CHECK: taken:
; CHECK: call void @bar()
; CHECK: %cmp3
; CHECK: br i1 %cmp3
; CHECK: if.then:
; CHECK: call void @foo()
; CHECK: ret
define void @test_and2(i32 %a, i32 %b) {
entry:
%cmp1 = icmp eq i32 %a, 0
%cmp2 = icmp eq i32 %b, 0
%and = and i1 %cmp1, %cmp2
br i1 %and, label %end, label %taken
taken:
call void @bar()
%cmp3 = icmp eq i32 %a, 0
br i1 %cmp3, label %if.then, label %end
if.then:
call void @foo()
br label %end
end:
ret void
}
; CHECK-LABEL: @test_or1
; CHECK: taken:
; CHECK-NOT: cmp3
; CHECK: call void @bar()
; CHECK-NEXT: call void @foo()
; CHECK: ret
define void @test_or1(i32 %a, i32 %b) {
entry:
%cmp1 = icmp eq i32 %a, 0
%cmp2 = icmp eq i32 %b, 0
%or = or i1 %cmp1, %cmp2
br i1 %or, label %end, label %taken
taken:
call void @bar()
%cmp3 = icmp ne i32 %a, 0 ;; <-- implied true
br i1 %cmp3, label %if.then, label %end
if.then:
call void @foo()
br label %end
end:
ret void
}
; We can't infer anything if the result of the 'or' is true
; CHECK-LABEL: @test_or2
; CHECK: call void @bar()
; CHECK: %cmp3
; CHECK: br i1 %cmp3
; CHECK: if.then:
; CHECK: call void @foo()
; CHECK: ret
define void @test_or2(i32 %a, i32 %b) {
entry:
%cmp1 = icmp eq i32 %a, 0
%cmp2 = icmp eq i32 %b, 0
%or = or i1 %cmp1, %cmp2
br i1 %or, label %taken, label %end
taken:
call void @bar()
%cmp3 = icmp eq i32 %a, 0
br i1 %cmp3, label %if.then, label %end
if.then:
call void @foo()
br label %end
end:
ret void
}
; We can recurse a tree of 'and' or 'or's.
; CHECK-LABEL: @test_and_recurse1
; CHECK: taken:
; CHECK-NEXT: call void @bar()
; CHECK-NEXT: call void @foo()
; CHECK-NEXT: br label %end
; CHECK: ret
define void @test_and_recurse1(i32 %a, i32 %b, i32 %c) {
entry:
%cmpa = icmp eq i32 %a, 0
%cmpb = icmp eq i32 %b, 0
%cmpc = icmp eq i32 %c, 0
%and1 = and i1 %cmpa, %cmpb
%and2 = and i1 %and1, %cmpc
br i1 %and2, label %taken, label %end
taken:
call void @bar()
%cmp3 = icmp eq i32 %a, 0
br i1 %cmp3, label %if.then, label %end
if.then:
call void @foo()
br label %end
end:
ret void
}
; Check to make sure we don't recurse too deep.
; CHECK-LABEL: @test_and_recurse2
; CHECK: taken:
; CHECK-NEXT: call void @bar()
; CHECK-NEXT: %cmp3 = icmp eq i32 %a, 0
; CHECK-NEXT: br i1 %cmp3, label %if.then, label %end
; CHECK: ret
define void @test_and_recurse2(i32 %a, i32 %b, i32 %c, i32 %d, i32 %e, i32 %f,
i32 %g, i32 %h) {
entry:
%cmpa = icmp eq i32 %a, 0
%cmpb = icmp eq i32 %b, 0
%cmpc = icmp eq i32 %c, 0
%cmpd = icmp eq i32 %d, 0
%cmpe = icmp eq i32 %e, 0
%cmpf = icmp eq i32 %f, 0
%cmpg = icmp eq i32 %g, 0
%cmph = icmp eq i32 %h, 0
%and1 = and i1 %cmpa, %cmpb
%and2 = and i1 %and1, %cmpc
%and3 = and i1 %and2, %cmpd
%and4 = and i1 %and3, %cmpe
%and5 = and i1 %and4, %cmpf
%and6 = and i1 %and5, %cmpg
%and7 = and i1 %and6, %cmph
br i1 %and7, label %taken, label %end
taken:
call void @bar()
%cmp3 = icmp eq i32 %a, 0 ; <-- can be implied true
br i1 %cmp3, label %if.then, label %end
if.then:
call void @foo()
br label %end
end:
ret void
}
|