llvm-project/llvm/test/CodeGen/X86/win32-eh-states.ll

99 lines
3.0 KiB
LLVM
Raw Normal View History

; RUN: llc -mtriple=i686-pc-windows-msvc < %s | FileCheck %s
; Based on this source:
; extern "C" void may_throw(int);
; void f() {
; try {
; may_throw(1);
; try {
; may_throw(2);
; } catch (int) {
; may_throw(3);
; }
; } catch (int) {
; may_throw(4);
; }
; }
%rtti.TypeDescriptor2 = type { i8**, i8*, [3 x i8] }
%eh.CatchHandlerType = type { i32, i8* }
declare void @may_throw(i32)
declare i32 @__CxxFrameHandler3(...)
declare void @llvm.eh.begincatch(i8*, i8*)
declare void @llvm.eh.endcatch()
declare i32 @llvm.eh.typeid.for(i8*)
$"\01??_R0H@8" = comdat any
@"\01??_7type_info@@6B@" = external constant i8*
@"\01??_R0H@8" = linkonce_odr global %rtti.TypeDescriptor2 { i8** @"\01??_7type_info@@6B@", i8* null, [3 x i8] c".H\00" }, comdat
@llvm.eh.handlertype.H.0 = private unnamed_addr constant %eh.CatchHandlerType { i32 0, i8* bitcast (%rtti.TypeDescriptor2* @"\01??_R0H@8" to i8*) }, section "llvm.metadata"
define void @f() #0 personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) {
entry:
invoke void @may_throw(i32 1)
to label %invoke.cont unwind label %lpad.1
invoke.cont: ; preds = %entry
invoke void @may_throw(i32 2)
to label %try.cont.9 unwind label %lpad
try.cont.9: ; preds = %invoke.cont.3, %invoke.cont, %catch.7
; FIXME: Something about our CFG breaks TailDuplication. This empy asm blocks
; it so we can focus on testing the state numbering.
call void asm sideeffect "", "~{dirflag},~{fpsr},~{flags}"()
ret void
lpad: ; preds = %catch, %entry
%p1 = catchpad [%rtti.TypeDescriptor2* @"\01??_R0H@8", i32 0, i8* null]
to label %catch unwind label %end.inner.catch
catch: ; preds = %lpad.1
invoke void @may_throw(i32 3)
to label %invoke.cont.3 unwind label %end.inner.catch
invoke.cont.3: ; preds = %catch
catchret %p1 to label %try.cont.9
end.inner.catch:
catchendpad unwind label %lpad.1
lpad.1: ; preds = %invoke.cont
%p2 = catchpad [%rtti.TypeDescriptor2* @"\01??_R0H@8", i32 0, i8* null]
to label %catch.7 unwind label %eh.resume
catch.7:
invoke void @may_throw(i32 4)
to label %invoke.cont.10 unwind label %eh.resume
invoke.cont.10:
catchret %p2 to label %try.cont.9
eh.resume: ; preds = %catch.dispatch.4
catchendpad unwind to caller
}
; CHECK-LABEL: _f:
; CHECK: movl $-1, [[state:[-0-9]+]](%ebp)
; CHECK: movl $___ehhandler$f, {{.*}}
;
; CHECK: movl $0, [[state]](%ebp)
; CHECK: movl $1, (%esp)
; CHECK: calll _may_throw
;
; CHECK: movl $1, [[state]](%ebp)
; CHECK: movl $2, (%esp)
; CHECK: calll _may_throw
;
; CHECK: movl $2, [[state]](%ebp)
; CHECK: movl $3, (%esp)
; CHECK: calll _may_throw
;
; CHECK: movl $3, [[state]](%ebp)
; CHECK: movl $4, (%esp)
; CHECK: calll _may_throw
; CHECK: .safeseh ___ehhandler$f