Once the default for SimplifyCFG flips, we can no longer pass nullptr instead of DomTree to SimplifyCFG, so we need to propagate it here. We don't strictly need to actually preserve DomTree in DwarfEHPrepare, but we might as well do it, since it's trivial.
86 lines
3.1 KiB
LLVM
86 lines
3.1 KiB
LLVM
; Check if landing pads are kept in a separate eh section
|
|
; RUN: llc -simplifycfg-require-and-preserve-domtree=1 < %s -mtriple=i386-unknown-linux-gnu -function-sections -basic-block-sections=all -unique-basic-block-section-names | FileCheck %s -check-prefix=LINUX-SECTIONS
|
|
|
|
@_ZTIb = external dso_local constant i8*
|
|
define i32 @_Z3foob(i1 zeroext %0) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
|
|
%2 = alloca i32, align 4
|
|
%3 = alloca i8, align 1
|
|
%4 = alloca i8*
|
|
%5 = alloca i32
|
|
%6 = alloca i8, align 1
|
|
%7 = zext i1 %0 to i8
|
|
store i8 %7, i8* %3, align 1
|
|
%8 = load i8, i8* %3, align 1
|
|
%9 = trunc i8 %8 to i1
|
|
br i1 %9, label %10, label %11
|
|
|
|
10: ; preds = %1
|
|
store i32 1, i32* %2, align 4
|
|
br label %31
|
|
|
|
11: ; preds = %1
|
|
%12 = call i8* @__cxa_allocate_exception(i64 1) #2
|
|
%13 = load i8, i8* %3, align 1
|
|
%14 = trunc i8 %13 to i1
|
|
%15 = zext i1 %14 to i8
|
|
store i8 %15, i8* %12, align 16
|
|
invoke void @__cxa_throw(i8* %12, i8* bitcast (i8** @_ZTIb to i8*), i8* null) #3
|
|
to label %38 unwind label %16
|
|
|
|
16: ; preds = %11
|
|
%17 = landingpad { i8*, i32 }
|
|
catch i8* bitcast (i8** @_ZTIb to i8*)
|
|
%18 = extractvalue { i8*, i32 } %17, 0
|
|
store i8* %18, i8** %4, align 8
|
|
%19 = extractvalue { i8*, i32 } %17, 1
|
|
store i32 %19, i32* %5, align 4
|
|
br label %20
|
|
|
|
20: ; preds = %16
|
|
%21 = load i32, i32* %5, align 4
|
|
%22 = call i32 @llvm.eh.typeid.for(i8* bitcast (i8** @_ZTIb to i8*)) #2
|
|
%23 = icmp eq i32 %21, %22
|
|
br i1 %23, label %24, label %33
|
|
|
|
24: ; preds = %20
|
|
%25 = load i8*, i8** %4, align 8
|
|
%26 = call i8* @__cxa_begin_catch(i8* %25) #2
|
|
%27 = load i8, i8* %26, align 1
|
|
%28 = trunc i8 %27 to i1
|
|
%29 = zext i1 %28 to i8
|
|
store i8 %29, i8* %6, align 1
|
|
call void @__cxa_end_catch() #2
|
|
br label %30
|
|
|
|
30: ; preds = %24
|
|
store i32 0, i32* %2, align 4
|
|
br label %31
|
|
|
|
31: ; preds = %30, %10
|
|
%32 = load i32, i32* %2, align 4
|
|
ret i32 %32
|
|
|
|
33: ; preds = %20
|
|
%34 = load i8*, i8** %4, align 8
|
|
%35 = load i32, i32* %5, align 4
|
|
%36 = insertvalue { i8*, i32 } undef, i8* %34, 0
|
|
%37 = insertvalue { i8*, i32 } %36, i32 %35, 1
|
|
resume { i8*, i32 } %37
|
|
|
|
38: ; preds = %11
|
|
unreachable
|
|
}
|
|
declare i8* @__cxa_allocate_exception(i64)
|
|
declare void @__cxa_throw(i8*, i8*, i8*)
|
|
declare i32 @__gxx_personality_v0(...)
|
|
; Function Attrs: nounwind readnone
|
|
declare i32 @llvm.eh.typeid.for(i8*) #1
|
|
declare i8* @__cxa_begin_catch(i8*)
|
|
declare void @__cxa_end_catch()
|
|
|
|
;LINUX-SECTIONS: .section .text._Z3foob,"ax",@progbits
|
|
;LINUX-SECTIONS: _Z3foob:
|
|
;LINUX-SECTIONS: .section .text._Z3foob._Z3foob.__part.{{[0-9]+}},"ax",@progbits
|
|
;LINUX-SECTIONS-LABEL: _Z3foob.__part.{{[0-9]+}}:
|
|
;LINUX-SECTIONS: calll __cxa_begin_catch
|