2015-11-13 02:13:42 +08:00
|
|
|
; RUN: llc -mtriple=x86_64-pc-windows-msvc < %s -enable-shrink-wrap=false | FileCheck %s
|
|
|
|
; Make sure shrink-wrapping does not break the lowering of exception handling.
|
|
|
|
; RUN: llc -mtriple=x86_64-pc-windows-msvc < %s -enable-shrink-wrap=true | FileCheck %s
|
2015-10-23 23:06:05 +08:00
|
|
|
|
|
|
|
; Repro cases from PR25168
|
|
|
|
|
|
|
|
; test @catchret - catchret target is not address-taken until PEI
|
|
|
|
; splits it into lea/mov followed by ret. Make sure the MBB is
|
|
|
|
; handled, both by tempting BranchFolding to merge it with %early_out
|
|
|
|
; and delete it, and by checking that we emit a proper reference
|
|
|
|
; to it in the LEA
|
|
|
|
|
|
|
|
declare void @ProcessCLRException()
|
|
|
|
declare void @f()
|
|
|
|
|
|
|
|
define void @catchret(i1 %b) personality void ()* @ProcessCLRException {
|
|
|
|
entry:
|
|
|
|
br i1 %b, label %body, label %early_out
|
|
|
|
early_out:
|
|
|
|
ret void
|
|
|
|
body:
|
|
|
|
invoke void @f()
|
|
|
|
to label %exit unwind label %catch.pad
|
|
|
|
catch.pad:
|
[IR] Reformulate LLVM's EH funclet IR
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
llvm-svn: 255422
2015-12-12 13:38:55 +08:00
|
|
|
%cs1 = catchswitch within none [label %catch.body] unwind to caller
|
2015-10-23 23:06:05 +08:00
|
|
|
catch.body:
|
[IR] Reformulate LLVM's EH funclet IR
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
llvm-svn: 255422
2015-12-12 13:38:55 +08:00
|
|
|
%catch = catchpad within %cs1 [i32 33554467]
|
|
|
|
catchret from %catch to label %exit
|
2015-10-23 23:06:05 +08:00
|
|
|
exit:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
; CHECK-LABEL: catchret: # @catchret
|
|
|
|
; CHECK: [[Exit:^[^ :]+]]: # Block address taken
|
|
|
|
; CHECK-NEXT: # %exit
|
[IR] Reformulate LLVM's EH funclet IR
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
llvm-svn: 255422
2015-12-12 13:38:55 +08:00
|
|
|
; CHECK: # %catch.body
|
2015-10-23 23:06:05 +08:00
|
|
|
; CHECK: .seh_endprolog
|
|
|
|
; CHECK: leaq [[Exit]](%rip), %rax
|
|
|
|
; CHECK: retq # CATCHRET
|
|
|
|
|
|
|
|
|
|
|
|
; test @setjmp - similar to @catchret, but the MBB in question
|
|
|
|
; is the one generated when the setjmp's block is split
|
|
|
|
|
|
|
|
@buf = internal global [5 x i8*] zeroinitializer
|
|
|
|
declare i8* @llvm.frameaddress(i32) nounwind readnone
|
|
|
|
declare i8* @llvm.stacksave() nounwind
|
|
|
|
declare i32 @llvm.eh.sjlj.setjmp(i8*) nounwind
|
|
|
|
declare void @llvm.eh.sjlj.longjmp(i8*) nounwind
|
|
|
|
|
|
|
|
define void @setjmp(i1 %b) nounwind {
|
|
|
|
entry:
|
|
|
|
br i1 %b, label %early_out, label %sj
|
|
|
|
early_out:
|
|
|
|
ret void
|
|
|
|
sj:
|
|
|
|
%fp = call i8* @llvm.frameaddress(i32 0)
|
|
|
|
store i8* %fp, i8** getelementptr inbounds ([5 x i8*], [5 x i8*]* @buf, i64 0, i64 0), align 16
|
|
|
|
%sp = call i8* @llvm.stacksave()
|
|
|
|
store i8* %sp, i8** getelementptr inbounds ([5 x i8*], [5 x i8*]* @buf, i64 0, i64 2), align 16
|
|
|
|
call i32 @llvm.eh.sjlj.setjmp(i8* bitcast ([5 x i8*]* @buf to i8*))
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
; CHECK-LABEL: setjmp: # @setjmp
|
|
|
|
; CHECK: # %sj
|
|
|
|
; CHECK: leaq [[Label:\..+]](%rip), %[[Reg:.+]]{{$}}
|
|
|
|
; CHECK-NEXT: movq %[[Reg]], buf
|
|
|
|
; CHECK: {{^}}[[Label]]: # Block address taken
|
|
|
|
; CHECK-NEXT: # %sj
|