mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
c8b1f095a3
The personality routine currently lives in the LandingPadInst. This isn't desirable because: - All LandingPadInsts in the same function must have the same personality routine. This means that each LandingPadInst beyond the first has an operand which produces no additional information. - There is ongoing work to introduce EH IR constructs other than LandingPadInst. Moving the personality routine off of any one particular Instruction and onto the parent function seems a lot better than have N different places a personality function can sneak onto an exceptional function. Differential Revision: http://reviews.llvm.org/D10429 llvm-svn: 239940
92 lines
2.1 KiB
LLVM
92 lines
2.1 KiB
LLVM
; RUN: opt -mergefunc -S < %s | FileCheck %s
|
|
|
|
define i8 @call_with_range() {
|
|
bitcast i8 0 to i8 ; dummy to make the function large enough
|
|
%out = call i8 @dummy(), !range !0
|
|
ret i8 %out
|
|
}
|
|
|
|
define i8 @call_no_range() {
|
|
; CHECK-LABEL: @call_no_range
|
|
; CHECK-NEXT: bitcast i8 0 to i8
|
|
; CHECK-NEXT: %out = call i8 @dummy()
|
|
; CHECK-NEXT: ret i8 %out
|
|
bitcast i8 0 to i8
|
|
%out = call i8 @dummy()
|
|
ret i8 %out
|
|
}
|
|
|
|
define i8 @call_different_range() {
|
|
; CHECK-LABEL: @call_different_range
|
|
; CHECK-NEXT: bitcast i8 0 to i8
|
|
; CHECK-NEXT: %out = call i8 @dummy(), !range !1
|
|
; CHECK-NEXT: ret i8 %out
|
|
bitcast i8 0 to i8
|
|
%out = call i8 @dummy(), !range !1
|
|
ret i8 %out
|
|
}
|
|
|
|
define i8 @invoke_with_range() personality i8* undef {
|
|
%out = invoke i8 @dummy() to label %next unwind label %lpad, !range !0
|
|
|
|
next:
|
|
ret i8 %out
|
|
|
|
lpad:
|
|
%pad = landingpad { i8*, i32 } cleanup
|
|
resume { i8*, i32 } zeroinitializer
|
|
}
|
|
|
|
define i8 @invoke_no_range() personality i8* undef {
|
|
; CHECK-LABEL: @invoke_no_range()
|
|
; CHECK-NEXT: invoke i8 @dummy
|
|
%out = invoke i8 @dummy() to label %next unwind label %lpad
|
|
|
|
next:
|
|
ret i8 %out
|
|
|
|
lpad:
|
|
%pad = landingpad { i8*, i32 } cleanup
|
|
resume { i8*, i32 } zeroinitializer
|
|
}
|
|
|
|
define i8 @invoke_different_range() personality i8* undef {
|
|
; CHECK-LABEL: @invoke_different_range()
|
|
; CHECK-NEXT: invoke i8 @dummy
|
|
%out = invoke i8 @dummy() to label %next unwind label %lpad, !range !1
|
|
|
|
next:
|
|
ret i8 %out
|
|
|
|
lpad:
|
|
%pad = landingpad { i8*, i32 } cleanup
|
|
resume { i8*, i32 } zeroinitializer
|
|
}
|
|
|
|
define i8 @call_with_same_range() {
|
|
; CHECK-LABEL: @call_with_same_range
|
|
; CHECK: tail call i8 @call_with_range
|
|
bitcast i8 0 to i8
|
|
%out = call i8 @dummy(), !range !0
|
|
ret i8 %out
|
|
}
|
|
|
|
define i8 @invoke_with_same_range() personality i8* undef {
|
|
; CHECK-LABEL: @invoke_with_same_range()
|
|
; CHECK: tail call i8 @invoke_with_range()
|
|
%out = invoke i8 @dummy() to label %next unwind label %lpad, !range !0
|
|
|
|
next:
|
|
ret i8 %out
|
|
|
|
lpad:
|
|
%pad = landingpad { i8*, i32 } cleanup
|
|
resume { i8*, i32 } zeroinitializer
|
|
}
|
|
|
|
declare i8 @dummy();
|
|
declare i32 @__gxx_personality_v0(...)
|
|
|
|
!0 = !{i8 0, i8 2}
|
|
!1 = !{i8 5, i8 7}
|