Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / ARM / ehabi-handlerdata.ll
blobc89eed4a389369868554ba69daa877eeeadc8c19
1 ; ARM EHABI test for the handlerdata.
3 ; This test case checks whether the handlerdata for exception
4 ; handling is generated properly.
6 ; (1) The handlerdata must not be empty.
7 ; (2) LPStartEncoding == DW_EH_PE_omit
8 ; (3) TTypeEncoding == DW_EH_PE_absptr
9 ; (4) CallSiteEncoding == DW_EH_PE_udata4
11 ; RUN: llc -mtriple arm-unknown-linux-gnueabi -filetype=asm -o - %s \
12 ; RUN:   | FileCheck %s
14 ; RUN: llc -mtriple arm-unknown-linux-gnueabi -filetype=asm -o - %s \
15 ; RUN:     -relocation-model=pic \
16 ; RUN:   | FileCheck %s
18 declare void @throw_exception()
20 declare i32 @__gxx_personality_v0(...)
22 declare ptr @__cxa_begin_catch(ptr)
24 declare void @__cxa_end_catch()
26 define void @test1() personality ptr @__gxx_personality_v0 {
27 entry:
28   invoke void @throw_exception() to label %try.cont unwind label %lpad
30 lpad:
31   %0 = landingpad { ptr, i32 }
32           catch ptr null
33   %1 = extractvalue { ptr, i32 } %0, 0
34   %2 = tail call ptr @__cxa_begin_catch(ptr %1)
35   tail call void @__cxa_end_catch()
36   br label %try.cont
38 try.cont:
39   ret void
42 ; CHECK:   .globl test1
43 ; CHECK:   .p2align 2
44 ; CHECK:   .type test1,%function
45 ; CHECK-LABEL: test1:
46 ; CHECK:   .fnstart
47 ; CHECK:   .personality __gxx_personality_v0
48 ; CHECK:   .handlerdata
49 ; CHECK:   .p2align 2
50 ; CHECK-LABEL: GCC_except_table0:
51 ; CHECK-LABEL: .Lexception0:
52 ; CHECK:   .byte 255                     @ @LPStart Encoding = omit
53 ; CHECK:   .byte 0                       @ @TType Encoding = absptr
54 ; CHECK:   .uleb128 .Lttbase
55 ; CHECK:   .byte 1                       @ Call site Encoding = uleb128
56 ; CHECK:   .uleb128 .Lcst_end
57 ; CHECK:   .uleb128
58 ; CHECK:   .uleb128
59 ; CHECK:   .uleb128
60 ; CHECK:   .fnend