mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 14:47:00 +00:00
8cec2f2816
While we have successfully implemented a funclet-oriented EH scheme on top of LLVM IR, our scheme has some notable deficiencies: - catchendpad and cleanupendpad are necessary in the current design but they are difficult to explain to others, even to seasoned LLVM experts. - catchendpad and cleanupendpad are optimization barriers. They cannot be split and force all potentially throwing call-sites to be invokes. This has a noticable effect on the quality of our code generation. - catchpad, while similar in some aspects to invoke, is fairly awkward. It is unsplittable, starts a funclet, and has control flow to other funclets. - The nesting relationship between funclets is currently a property of control flow edges. Because of this, we are forced to carefully analyze the flow graph to see if there might potentially exist illegal nesting among funclets. While we have logic to clone funclets when they are illegally nested, it would be nicer if we had a representation which forbade them upfront. Let's clean this up a bit by doing the following: - Instead, make catchpad more like cleanuppad and landingpad: no control flow, just a bunch of simple operands; catchpad would be splittable. - Introduce catchswitch, a control flow instruction designed to model the constraints of funclet oriented EH. - Make funclet scoping explicit by having funclet instructions consume the token produced by the funclet which contains them. - Remove catchendpad and cleanupendpad. Their presence can be inferred implicitly using coloring information. N.B. The state numbering code for the CLR has been updated but the veracity of it's output cannot be spoken for. An expert should take a look to make sure the results are reasonable. Reviewers: rnk, JosephTremoulet, andrew.w.kaylor Differential Revision: http://reviews.llvm.org/D15139 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255422 91177308-0d34-0410-b5e6-96231b3b80d8
82 lines
1.8 KiB
LLVM
82 lines
1.8 KiB
LLVM
; RUN: llc -mtriple x86_64-pc-windows-msvc < %s | FileCheck %s
|
|
|
|
declare void @maybe_throw()
|
|
|
|
@_ZTIi = external constant i8*
|
|
@g = external global i32
|
|
|
|
declare i32 @__C_specific_handler(...)
|
|
declare i32 @__gxx_personality_seh0(...)
|
|
declare i32 @llvm.eh.typeid.for(i8*) readnone nounwind
|
|
|
|
define i32 @use_seh() personality i32 (...)* @__C_specific_handler {
|
|
entry:
|
|
invoke void @maybe_throw()
|
|
to label %cont unwind label %lpad
|
|
|
|
cont:
|
|
ret i32 0
|
|
|
|
lpad:
|
|
%cs = catchswitch within none [label %catch] unwind to caller
|
|
catch:
|
|
%p = catchpad within %cs [i8* bitcast (i32 (i8*, i8*)* @filt_g to i8*)]
|
|
catchret from %p to label %ret1
|
|
|
|
ret1:
|
|
ret i32 1
|
|
}
|
|
|
|
define internal i32 @filt_g(i8*, i8*) {
|
|
%g = load i32, i32* @g
|
|
ret i32 %g
|
|
}
|
|
|
|
; CHECK-LABEL: use_seh:
|
|
; CHECK: callq maybe_throw
|
|
; CHECK: xorl %eax, %eax
|
|
; CHECK: .LBB0_[[epilogue:[0-9]+]]
|
|
; CHECK: retq
|
|
; CHECK: # %catch{{$}}
|
|
; CHECK: movl $1, %eax
|
|
; CHECK: jmp .LBB0_[[epilogue]]
|
|
|
|
; A MinGW64-ish EH style. It could happen if a binary uses both MSVC CRT and
|
|
; mingw CRT and is linked with LTO.
|
|
define i32 @use_gcc() personality i32 (...)* @__gxx_personality_seh0 {
|
|
entry:
|
|
invoke void @maybe_throw()
|
|
to label %cont unwind label %lpad
|
|
|
|
cont:
|
|
ret i32 0
|
|
|
|
lpad:
|
|
%ehvals = landingpad { i8*, i32 }
|
|
cleanup
|
|
catch i8* bitcast (i8** @_ZTIi to i8*)
|
|
%ehsel = extractvalue { i8*, i32 } %ehvals, 1
|
|
%filt_g_sel = call i32 @llvm.eh.typeid.for(i8* bitcast (i32 (i8*, i8*)* @filt_g to i8*))
|
|
%matches = icmp eq i32 %ehsel, %filt_g_sel
|
|
br i1 %matches, label %ret1, label %eh.resume
|
|
|
|
ret1:
|
|
ret i32 1
|
|
|
|
eh.resume:
|
|
resume { i8*, i32 } %ehvals
|
|
}
|
|
|
|
; CHECK-LABEL: use_gcc:
|
|
; CHECK: callq maybe_throw
|
|
; CHECK: xorl %eax, %eax
|
|
;
|
|
; CHECK: # %lpad
|
|
; CHECK: cmpl $2, %edx
|
|
; CHECK: jne
|
|
;
|
|
; CHECK: # %ret1
|
|
; CHECK: movl $1, %eax
|
|
;
|
|
; CHECK: callq _Unwind_Resume
|