blob: 5b96c6b16be9d9a27e0150dca102b30321649969 [file] [log] [blame]
Chris Lattnerd9bacc02010-12-13 03:18:54 +00001; RUN: opt < %s -simplifycfg -S | FileCheck %s
Chris Lattnerae509322004-02-24 05:34:44 +00002
Tanya Lattnerbaa370b2008-03-18 03:45:45 +00003declare void @foo1()
Chris Lattnerae509322004-02-24 05:34:44 +00004
Tanya Lattnerbaa370b2008-03-18 03:45:45 +00005declare void @foo2()
6
7define void @test1(i32 %V) {
8 %C1 = icmp eq i32 %V, 4 ; <i1> [#uses=1]
9 %C2 = icmp eq i32 %V, 17 ; <i1> [#uses=1]
10 %CN = or i1 %C1, %C2 ; <i1> [#uses=1]
11 br i1 %CN, label %T, label %F
12T: ; preds = %0
13 call void @foo1( )
14 ret void
15F: ; preds = %0
16 call void @foo2( )
17 ret void
Chris Lattnerd9bacc02010-12-13 03:18:54 +000018; CHECK: @test1
19; CHECK: switch i32 %V, label %F [
20; CHECK: i32 17, label %T
21; CHECK: i32 4, label %T
22; CHECK: ]
Chris Lattnerae509322004-02-24 05:34:44 +000023}
24
Tanya Lattnerbaa370b2008-03-18 03:45:45 +000025define void @test2(i32 %V) {
26 %C1 = icmp ne i32 %V, 4 ; <i1> [#uses=1]
27 %C2 = icmp ne i32 %V, 17 ; <i1> [#uses=1]
28 %CN = and i1 %C1, %C2 ; <i1> [#uses=1]
29 br i1 %CN, label %T, label %F
30T: ; preds = %0
31 call void @foo1( )
32 ret void
33F: ; preds = %0
34 call void @foo2( )
35 ret void
Chris Lattnerd9bacc02010-12-13 03:18:54 +000036; CHECK: @test2
37; CHECK: switch i32 %V, label %T [
38; CHECK: i32 17, label %F
39; CHECK: i32 4, label %F
40; CHECK: ]
Chris Lattnerae509322004-02-24 05:34:44 +000041}
42
Tanya Lattnerbaa370b2008-03-18 03:45:45 +000043define void @test3(i32 %V) {
44 %C1 = icmp eq i32 %V, 4 ; <i1> [#uses=1]
45 br i1 %C1, label %T, label %N
46N: ; preds = %0
47 %C2 = icmp eq i32 %V, 17 ; <i1> [#uses=1]
48 br i1 %C2, label %T, label %F
49T: ; preds = %N, %0
50 call void @foo1( )
51 ret void
52F: ; preds = %N
53 call void @foo2( )
54 ret void
Chris Lattnerd9bacc02010-12-13 03:18:54 +000055
56; CHECK: @test3
57; CHECK: switch i32 %V, label %F [
58; CHECK: i32 4, label %T
59; CHECK: i32 17, label %T
60; CHECK: ]
Chris Lattner272f3522005-02-24 02:13:50 +000061}
62
63
Chris Lattnerd9bacc02010-12-13 03:18:54 +000064
65define i32 @test4(i8 zeroext %c) nounwind ssp noredzone {
66entry:
67 %cmp = icmp eq i8 %c, 62
68 br i1 %cmp, label %lor.end, label %lor.lhs.false
69
70lor.lhs.false: ; preds = %entry
71 %cmp4 = icmp eq i8 %c, 34
72 br i1 %cmp4, label %lor.end, label %lor.rhs
73
74lor.rhs: ; preds = %lor.lhs.false
75 %cmp8 = icmp eq i8 %c, 92
76 br label %lor.end
77
78lor.end: ; preds = %lor.rhs, %lor.lhs.false, %entry
79 %0 = phi i1 [ true, %lor.lhs.false ], [ true, %entry ], [ %cmp8, %lor.rhs ]
80 %lor.ext = zext i1 %0 to i32
81 ret i32 %lor.ext
82
83; CHECK: @test4
84; CHECK: switch i8 %c, label %lor.rhs [
85; CHECK: i8 62, label %lor.end
86; CHECK: i8 34, label %lor.end
87; CHECK: i8 92, label %lor.end
88; CHECK: ]
89}
90
Chris Lattner62cc76e2010-12-13 03:43:57 +000091define i32 @test5(i8 zeroext %c) nounwind ssp noredzone {
92entry:
93 switch i8 %c, label %lor.rhs [
94 i8 62, label %lor.end
95 i8 34, label %lor.end
96 i8 92, label %lor.end
97 ]
98
99lor.rhs: ; preds = %entry
100 %V = icmp eq i8 %c, 92
101 br label %lor.end
102
103lor.end: ; preds = %entry, %entry, %entry, %lor.rhs
104 %0 = phi i1 [ true, %entry ], [ %V, %lor.rhs ], [ true, %entry ], [ true, %entry ]
105 %lor.ext = zext i1 %0 to i32
106 ret i32 %lor.ext
107; CHECK: @test5
108; CHECK: switch i8 %c, label %lor.rhs [
109; CHECK: i8 62, label %lor.end
110; CHECK: i8 34, label %lor.end
111; CHECK: i8 92, label %lor.end
112; CHECK: ]
113}
Chris Lattnera7377212010-12-13 04:45:56 +0000114
115
116define i1 @test6({ i32, i32 }* %I) {
117entry:
118 %tmp.1.i = getelementptr { i32, i32 }* %I, i64 0, i32 1 ; <i32*> [#uses=1]
119 %tmp.2.i = load i32* %tmp.1.i ; <i32> [#uses=6]
120 %tmp.2 = icmp eq i32 %tmp.2.i, 14 ; <i1> [#uses=1]
121 br i1 %tmp.2, label %shortcirc_done.4, label %shortcirc_next.0
122shortcirc_next.0: ; preds = %entry
123 %tmp.6 = icmp eq i32 %tmp.2.i, 15 ; <i1> [#uses=1]
124 br i1 %tmp.6, label %shortcirc_done.4, label %shortcirc_next.1
125shortcirc_next.1: ; preds = %shortcirc_next.0
126 %tmp.11 = icmp eq i32 %tmp.2.i, 16 ; <i1> [#uses=1]
127 br i1 %tmp.11, label %shortcirc_done.4, label %shortcirc_next.2
128shortcirc_next.2: ; preds = %shortcirc_next.1
129 %tmp.16 = icmp eq i32 %tmp.2.i, 17 ; <i1> [#uses=1]
130 br i1 %tmp.16, label %shortcirc_done.4, label %shortcirc_next.3
131shortcirc_next.3: ; preds = %shortcirc_next.2
132 %tmp.21 = icmp eq i32 %tmp.2.i, 18 ; <i1> [#uses=1]
133 br i1 %tmp.21, label %shortcirc_done.4, label %shortcirc_next.4
134shortcirc_next.4: ; preds = %shortcirc_next.3
135 %tmp.26 = icmp eq i32 %tmp.2.i, 19 ; <i1> [#uses=1]
136 br label %UnifiedReturnBlock
137shortcirc_done.4: ; preds = %shortcirc_next.3, %shortcirc_next.2, %shortcirc_next.1, %shortcirc_next.0, %entry
138 br label %UnifiedReturnBlock
139UnifiedReturnBlock: ; preds = %shortcirc_done.4, %shortcirc_next.4
140 %UnifiedRetVal = phi i1 [ %tmp.26, %shortcirc_next.4 ], [ true, %shortcirc_done.4 ] ; <i1> [#uses=1]
141 ret i1 %UnifiedRetVal
142
143; CHECK: @test6
144; CHECK: switch i32 %tmp.2.i, label %shortcirc_next.4 [
145; CHECK: i32 14, label %UnifiedReturnBlock
146; CHECK: i32 15, label %UnifiedReturnBlock
147; CHECK: i32 16, label %UnifiedReturnBlock
148; CHECK: i32 17, label %UnifiedReturnBlock
149; CHECK: i32 18, label %UnifiedReturnBlock
150; CHECK: i32 19, label %switch.edge
151; CHECK: ]
Chris Lattnera7377212010-12-13 04:45:56 +0000152}
153
Chris Lattnera442f242010-12-13 04:50:38 +0000154define void @test7(i8 zeroext %c, i32 %x) nounwind ssp noredzone {
155entry:
156 %cmp = icmp ult i32 %x, 32
157 %cmp4 = icmp eq i8 %c, 97
158 %or.cond = or i1 %cmp, %cmp4
159 %cmp9 = icmp eq i8 %c, 99
160 %or.cond11 = or i1 %or.cond, %cmp9
161 br i1 %or.cond11, label %if.then, label %if.end
Chris Lattnera7377212010-12-13 04:45:56 +0000162
Chris Lattnera442f242010-12-13 04:50:38 +0000163if.then: ; preds = %entry
164 tail call void @foo1() nounwind noredzone
165 ret void
166
167if.end: ; preds = %entry
168 ret void
169
170; CHECK: @test7
Chris Lattnerfb836f82010-12-13 08:12:19 +0000171; CHECK: %cmp = icmp ult i32 %x, 32
172; CHECK: br i1 %cmp, label %if.then, label %switch.early.test
173; CHECK: switch.early.test:
174; CHECK: switch i8 %c, label %if.end [
175; CHECK: i8 99, label %if.then
176; CHECK: i8 97, label %if.then
177; CHECK: ]
Chris Lattnera442f242010-12-13 04:50:38 +0000178}
Chris Lattnercb570f82010-12-13 05:34:18 +0000179
180define i32 @test8(i8 zeroext %c, i32 %x, i1 %C) nounwind ssp noredzone {
181entry:
182 br i1 %C, label %N, label %if.then
183N:
184 %cmp = icmp ult i32 %x, 32
185 %cmp4 = icmp eq i8 %c, 97
186 %or.cond = or i1 %cmp, %cmp4
187 %cmp9 = icmp eq i8 %c, 99
188 %or.cond11 = or i1 %or.cond, %cmp9
189 br i1 %or.cond11, label %if.then, label %if.end
190
191if.then: ; preds = %entry
192 %A = phi i32 [0, %entry], [42, %N]
193 tail call void @foo1() nounwind noredzone
194 ret i32 %A
195
196if.end: ; preds = %entry
197 ret i32 0
198
199; CHECK: @test8
Chris Lattnerfb836f82010-12-13 08:12:19 +0000200; CHECK: switch.early.test:
201; CHECK: switch i8 %c, label %if.end [
202; CHECK: i8 99, label %if.then
203; CHECK: i8 97, label %if.then
204; CHECK: ]
205; CHECK: %A = phi i32 [ 0, %entry ], [ 42, %switch.early.test ], [ 42, %N ], [ 42, %switch.early.test ]
Chris Lattnercb570f82010-12-13 05:34:18 +0000206}
Chris Lattnerfbeb5582010-12-13 07:00:06 +0000207
Chris Lattner79db3572010-12-13 07:41:29 +0000208;; This is "Example 7" from http://blog.regehr.org/archives/320
Chris Lattnerfbeb5582010-12-13 07:00:06 +0000209define i32 @test9(i8 zeroext %c) nounwind ssp noredzone {
210entry:
211 %cmp = icmp ult i8 %c, 33
212 br i1 %cmp, label %lor.end, label %lor.lhs.false
213
214lor.lhs.false: ; preds = %entry
215 %cmp4 = icmp eq i8 %c, 46
216 br i1 %cmp4, label %lor.end, label %lor.lhs.false6
217
218lor.lhs.false6: ; preds = %lor.lhs.false
219 %cmp9 = icmp eq i8 %c, 44
220 br i1 %cmp9, label %lor.end, label %lor.lhs.false11
221
222lor.lhs.false11: ; preds = %lor.lhs.false6
223 %cmp14 = icmp eq i8 %c, 58
224 br i1 %cmp14, label %lor.end, label %lor.lhs.false16
225
226lor.lhs.false16: ; preds = %lor.lhs.false11
227 %cmp19 = icmp eq i8 %c, 59
228 br i1 %cmp19, label %lor.end, label %lor.lhs.false21
229
230lor.lhs.false21: ; preds = %lor.lhs.false16
231 %cmp24 = icmp eq i8 %c, 60
232 br i1 %cmp24, label %lor.end, label %lor.lhs.false26
233
234lor.lhs.false26: ; preds = %lor.lhs.false21
235 %cmp29 = icmp eq i8 %c, 62
236 br i1 %cmp29, label %lor.end, label %lor.lhs.false31
237
238lor.lhs.false31: ; preds = %lor.lhs.false26
239 %cmp34 = icmp eq i8 %c, 34
240 br i1 %cmp34, label %lor.end, label %lor.lhs.false36
241
242lor.lhs.false36: ; preds = %lor.lhs.false31
243 %cmp39 = icmp eq i8 %c, 92
244 br i1 %cmp39, label %lor.end, label %lor.rhs
245
246lor.rhs: ; preds = %lor.lhs.false36
247 %cmp43 = icmp eq i8 %c, 39
248 br label %lor.end
249
250lor.end: ; preds = %lor.rhs, %lor.lhs.false36, %lor.lhs.false31, %lor.lhs.false26, %lor.lhs.false21, %lor.lhs.false16, %lor.lhs.false11, %lor.lhs.false6, %lor.lhs.false, %entry
251 %0 = phi i1 [ true, %lor.lhs.false36 ], [ true, %lor.lhs.false31 ], [ true, %lor.lhs.false26 ], [ true, %lor.lhs.false21 ], [ true, %lor.lhs.false16 ], [ true, %lor.lhs.false11 ], [ true, %lor.lhs.false6 ], [ true, %lor.lhs.false ], [ true, %entry ], [ %cmp43, %lor.rhs ]
252 %conv46 = zext i1 %0 to i32
253 ret i32 %conv46
254
255; CHECK: @test9
256; CHECK: %cmp = icmp ult i8 %c, 33
Chris Lattnerfb836f82010-12-13 08:12:19 +0000257; CHECK: br i1 %cmp, label %lor.end, label %switch.early.test
Chris Lattnerfbeb5582010-12-13 07:00:06 +0000258
Chris Lattnerfb836f82010-12-13 08:12:19 +0000259; CHECK: switch.early.test:
260; CHECK: switch i8 %c, label %lor.rhs [
261; CHECK: i8 46, label %lor.end
262; CHECK: i8 44, label %lor.end
263; CHECK: i8 58, label %lor.end
264; CHECK: i8 59, label %lor.end
265; CHECK: i8 60, label %lor.end
266; CHECK: i8 62, label %lor.end
267; CHECK: i8 34, label %lor.end
268; CHECK: i8 92, label %lor.end
269; CHECK: i8 39, label %lor.end
270; CHECK: ]
Chris Lattnerfbeb5582010-12-13 07:00:06 +0000271}
272
Chris Lattnerfb836f82010-12-13 08:12:19 +0000273define i32 @test10(i32 %mode, i1 %Cond) {
274 %A = icmp ne i32 %mode, 0
275 %B = icmp ne i32 %mode, 51
276 %C = and i1 %A, %B
277 %D = and i1 %C, %Cond
278 br i1 %D, label %T, label %F
279T:
280 ret i32 123
281F:
282 ret i32 324
283
284; CHECK: @test10
285; CHECK: br i1 %Cond, label %switch.early.test, label %F
286; CHECK:switch.early.test:
287; CHECK: switch i32 %mode, label %T [
288; CHECK: i32 51, label %F
289; CHECK: i32 0, label %F
290; CHECK: ]
291}
292
293
Chris Lattnerfbeb5582010-12-13 07:00:06 +0000294