1 ; RUN: opt < %s -simplifycfg -S | FileCheck %s
3 ; ModuleID = 'cppeh-simplify.cpp'
4 target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-pc-windows-msvc18.0.0"
8 ; This case arises when two objects with empty destructors are cleaned up.
16 ; In this case, both cleanup pads can be eliminated and the invoke can be
17 ; converted to a call.
19 ; CHECK: define void @f1()
21 ; CHECK: call void @g()
23 ; CHECK-NOT: cleanuppad
26 define void @f1() personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) {
28 invoke void @g() to label %invoke.cont unwind label %ehcleanup
30 invoke.cont: ; preds = %entry
33 ehcleanup: ; preds = %entry
34 %0 = cleanuppad within none []
35 cleanupret from %0 unwind label %ehcleanup.1
37 ehcleanup.1: ; preds = %ehcleanup
38 %1 = cleanuppad within none []
39 cleanupret from %1 unwind to caller
43 ; This case arises when an object with an empty destructor must be cleaned up
44 ; outside of a try-block and an object with a non-empty destructor must be
45 ; cleaned up within the try-block.
55 ; In this case, the outermost cleanup pad can be eliminated and the catch block
56 ; should unwind to the caller (that is, exception handling continues with the
57 ; parent frame of the caller).
59 ; CHECK: define void @f2()
61 ; CHECK: invoke void @g()
63 ; CHECK: cleanuppad within none
64 ; CHECK: call void @"\01??1S2@@QEAA@XZ"(%struct.S2* %b)
65 ; CHECK: cleanupret from %0 unwind label %catch.dispatch
66 ; CHECK: catch.dispatch:
67 ; CHECK: catchswitch within none [label %catch] unwind to caller
71 ; CHECK-NOT: cleanuppad
74 define void @f2() personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) {
76 %b = alloca %struct.S2, align 1
77 invoke void @g() to label %invoke.cont unwind label %ehcleanup
79 invoke.cont: ; preds = %entry
82 ehcleanup: ; preds = %entry
83 %0 = cleanuppad within none []
84 call void @"\01??1S2@@QEAA@XZ"(%struct.S2* %b)
85 cleanupret from %0 unwind label %catch.dispatch
87 catch.dispatch: ; preds = %ehcleanup
88 %cs1 = catchswitch within none [label %catch] unwind label %ehcleanup.1
90 catch: ; preds = %catch.dispatch
91 %1 = catchpad within %cs1 [i8* null, i32 u0x40, i8* null]
92 catchret from %1 to label %catchret.dest
94 catchret.dest: ; preds = %catch
97 try.cont: ; preds = %catchret.dest, %invoke.cont
101 %2 = cleanuppad within none []
102 cleanupret from %2 unwind to caller
106 ; This case arises when an object with a non-empty destructor must be cleaned up
107 ; outside of a try-block and an object with an empty destructor must be cleaned
108 ; within the try-block.
118 ; In this case the inner cleanup pad should be eliminated and the invoke of g()
119 ; should unwind directly to the catchpad.
121 ; CHECK-LABEL: define void @f3()
123 ; CHECK: invoke void @g()
124 ; CHECK: to label %try.cont unwind label %catch.dispatch
125 ; CHECK: catch.dispatch:
126 ; CHECK-NEXT: catchswitch within none [label %catch] unwind label %ehcleanup.1
128 ; CHECK: catchpad within %cs1 [i8* null, i32 64, i8* null]
130 ; CHECK: ehcleanup.1:
132 ; CHECK: call void @"\01??1S2@@QEAA@XZ"(%struct.S2* %a)
133 ; CHECK: cleanupret from %cp3 unwind to caller
136 define void @f3() personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) {
138 %a = alloca %struct.S2, align 1
139 invoke void @g() to label %invoke.cont unwind label %ehcleanup
141 invoke.cont: ; preds = %entry
144 ehcleanup: ; preds = %entry
145 %0 = cleanuppad within none []
146 cleanupret from %0 unwind label %catch.dispatch
148 catch.dispatch: ; preds = %ehcleanup
149 %cs1 = catchswitch within none [label %catch] unwind label %ehcleanup.1
151 catch: ; preds = %catch.dispatch
152 %cp2 = catchpad within %cs1 [i8* null, i32 u0x40, i8* null]
153 catchret from %cp2 to label %catchret.dest
155 catchret.dest: ; preds = %catch
158 try.cont: ; preds = %catchret.dest, %invoke.cont
162 %cp3 = cleanuppad within none []
163 call void @"\01??1S2@@QEAA@XZ"(%struct.S2* %a)
164 cleanupret from %cp3 unwind to caller
168 ; This case arises when an object with an empty destructor may require cleanup
169 ; from either inside or outside of a try-block.
179 ; In this case, the cleanuppad should be eliminated, the invoke outside of the
180 ; catch block should be converted to a call (that is, that is, exception
181 ; handling continues with the parent frame of the caller).)
183 ; CHECK-LABEL: define void @f4()
185 ; CHECK: call void @g
186 ; Note: The cleanuppad simplification will insert an unconditional branch here
187 ; but it will be eliminated, placing the following invoke in the entry BB.
188 ; CHECK: invoke void @g()
189 ; CHECK: to label %try.cont unwind label %catch.dispatch
190 ; CHECK: catch.dispatch:
191 ; CHECK: catchswitch within none [label %catch] unwind to caller
195 ; CHECK-NOT: cleanuppad
198 define void @f4() personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) {
201 to label %invoke.cont unwind label %ehcleanup
203 invoke.cont: ; preds = %entry
205 to label %try.cont unwind label %catch.dispatch
207 catch.dispatch: ; preds = %invoke.cont
208 %cs1 = catchswitch within none [label %catch] unwind label %ehcleanup
210 catch: ; preds = %catch.dispatch
211 %0 = catchpad within %cs1 [i8* null, i32 u0x40, i8* null]
212 catchret from %0 to label %try.cont
214 try.cont: ; preds = %catch, %invoke.cont
218 %cp2 = cleanuppad within none []
219 cleanupret from %cp2 unwind to caller
222 ; This case tests simplification of an otherwise empty cleanup pad that contains
238 ; In this case, the cleanup pad should be eliminated and the PHI node in the
239 ; cleanup pad should be sunk into the catch dispatch block.
241 ; CHECK-LABEL: define i32 @f6()
243 ; CHECK: invoke void @g()
244 ; CHECK: invoke.cont:
245 ; CHECK: invoke void @g()
246 ; CHECK-NOT: ehcleanup:
247 ; CHECK-NOT: cleanuppad
248 ; CHECK: catch.dispatch:
249 ; CHECK: %state.0 = phi i32 [ 2, %invoke.cont ], [ 1, %entry ]
251 define i32 @f6() personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) {
254 to label %invoke.cont unwind label %ehcleanup
256 invoke.cont: ; preds = %entry
258 to label %return unwind label %ehcleanup
260 ehcleanup: ; preds = %invoke.cont, %entry
261 %state.0 = phi i32 [ 2, %invoke.cont ], [ 1, %entry ]
262 %0 = cleanuppad within none []
263 cleanupret from %0 unwind label %catch.dispatch
265 catch.dispatch: ; preds = %ehcleanup
266 %cs1 = catchswitch within none [label %catch] unwind to caller
268 catch: ; preds = %catch.dispatch
269 %1 = catchpad within %cs1 [i8* null, i32 u0x40, i8* null]
270 catchret from %1 to label %return
272 return: ; preds = %invoke.cont, %catch
273 %retval.0 = phi i32 [ %state.0, %catch ], [ 0, %invoke.cont ]
277 ; This case tests another variation of simplification of an otherwise empty
278 ; cleanup pad that contains a PHI node.
295 ; In this case, the cleanup pad should be eliminated and the PHI node in the
296 ; cleanup pad should be merged with the PHI node in the catch dispatch block.
298 ; CHECK-LABEL: define i32 @f7()
300 ; CHECK: invoke void @g()
301 ; CHECK: invoke.cont:
302 ; CHECK: invoke void @g()
303 ; CHECK: invoke.cont.1:
304 ; CHECK: invoke void @g()
305 ; CHECK-NOT: ehcleanup:
306 ; CHECK-NOT: cleanuppad
307 ; CHECK: catch.dispatch:
308 ; CHECK: %state.1 = phi i32 [ 1, %entry ], [ 3, %invoke.cont.1 ], [ 2, %invoke.cont ]
310 define i32 @f7() personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) {
313 to label %invoke.cont unwind label %catch.dispatch
315 invoke.cont: ; preds = %entry
317 to label %invoke.cont.1 unwind label %ehcleanup
319 invoke.cont.1: ; preds = %invoke.cont
321 to label %return unwind label %ehcleanup
323 ehcleanup: ; preds = %invoke.cont.1, %invoke.cont
324 %state.0 = phi i32 [ 3, %invoke.cont.1 ], [ 2, %invoke.cont ]
325 %0 = cleanuppad within none []
326 cleanupret from %0 unwind label %catch.dispatch
328 catch.dispatch: ; preds = %ehcleanup, %entry
329 %state.1 = phi i32 [ %state.0, %ehcleanup ], [ 1, %entry ]
330 %cs1 = catchswitch within none [label %catch] unwind to caller
332 catch: ; preds = %catch.dispatch
333 %1 = catchpad within %cs1 [i8* null, i32 u0x40, i8* null]
334 catchret from %1 to label %return
336 return: ; preds = %invoke.cont.1, %catch
337 %retval.0 = phi i32 [ %state.1, %catch ], [ 0, %invoke.cont.1 ]
341 ; This case tests a scenario where an empty cleanup pad is not dominated by all
342 ; of the predecessors of its successor, but the successor references a PHI node
343 ; in the empty cleanup pad.
345 ; Conceptually, the case being modeled is something like this:
362 ; While that C++ syntax isn't legal, the IR below is.
364 ; In this case, the PHI node that is sunk from ehcleanup to catch.dispatch
365 ; should have an incoming value entry for path from 'foo' that references the
368 ; CHECK-LABEL: define void @f8()
370 ; CHECK: invoke void @g()
371 ; CHECK: invoke.cont:
372 ; CHECK: invoke void @g()
373 ; CHECK-NOT: ehcleanup:
374 ; CHECK-NOT: cleanuppad
375 ; CHECK: catch.dispatch:
376 ; CHECK: %x = phi i32 [ 2, %invoke.cont ], [ 1, %entry ], [ %x, %catch.cont ]
378 define void @f8() personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) {
381 to label %invoke.cont unwind label %ehcleanup
383 invoke.cont: ; preds = %entry
385 to label %return unwind label %ehcleanup
387 ehcleanup: ; preds = %invoke.cont, %entry
388 %x = phi i32 [ 2, %invoke.cont ], [ 1, %entry ]
389 %0 = cleanuppad within none []
390 cleanupret from %0 unwind label %catch.dispatch
392 catch.dispatch: ; preds = %ehcleanup, %catch.cont
393 %cs1 = catchswitch within none [label %catch] unwind to caller
395 catch: ; preds = %catch.dispatch
396 %1 = catchpad within %cs1 [i8* null, i32 u0x40, i8* null]
397 call void @use_x(i32 %x)
398 catchret from %1 to label %catch.cont
400 catch.cont: ; preds = %catch
402 to label %return unwind label %catch.dispatch
404 return: ; preds = %invoke.cont, %catch.cont
407 ; CHECK-LABEL: define i32 @f9()
409 ; CHECK: invoke void @"\01??1S2@@QEAA@XZ"(
410 ; CHECK-NOT: cleanuppad
411 ; CHECK: catch.dispatch:
413 define i32 @f9() personality i32 (...)* @__CxxFrameHandler3 {
415 %s = alloca i8, align 1
416 call void @llvm.lifetime.start.p0i8(i64 1, i8* nonnull %s)
417 %bc = bitcast i8* %s to %struct.S2*
418 invoke void @"\01??1S2@@QEAA@XZ"(%struct.S2* %bc)
419 to label %try.cont unwind label %ehcleanup
422 %cleanup.pad = cleanuppad within none []
423 call void @llvm.lifetime.end.p0i8(i64 1, i8* nonnull %s)
424 cleanupret from %cleanup.pad unwind label %catch.dispatch
427 %catch.switch = catchswitch within none [label %catch] unwind to caller
430 %catch.pad = catchpad within %catch.switch [i8* null, i32 0, i8* null]
431 catchret from %catch.pad to label %try.cont
437 ; CHECK-LABEL: define void @f10(
438 define void @f10(i32 %V) personality i32 (...)* @__CxxFrameHandler3 {
441 to label %unreachable unwind label %cleanup
442 ; CHECK: call void @g()
443 ; CHECK-NEXT: unreachable
449 %cp = cleanuppad within none []
450 switch i32 %V, label %cleanupret1 [
451 i32 0, label %cleanupret2
455 cleanupret from %cp unwind to caller
458 cleanupret from %cp unwind to caller
461 %struct.S = type { i8 }
462 %struct.S2 = type { i8 }
463 declare void @"\01??1S2@@QEAA@XZ"(%struct.S2*)
465 declare void @use_x(i32 %x)
467 declare i32 @__CxxFrameHandler3(...)
469 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture)
470 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture)