brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.1 KiB · cdeb6d8 Raw
55 lines · plain
1; RUN: llc --mtriple=loongarch32 -mattr=+d --relocation-model=static < %s | FileCheck %s2; RUN: llc --mtriple=loongarch32 -mattr=+d --relocation-model=pic < %s | FileCheck %s3; RUN: llc --mtriple=loongarch64 -mattr=+d --relocation-model=static < %s | FileCheck %s4; RUN: llc --mtriple=loongarch64 -mattr=+d --relocation-model=pic < %s | FileCheck %s5 6declare void @throw_exception()7 8declare i32 @__gxx_personality_v0(...)9 10declare ptr @__cxa_begin_catch(ptr)11 12declare void @__cxa_end_catch()13 14; CHECK-LABEL: test1:15; CHECK: .cfi_startproc16;; PersonalityEncoding = DW_EH_PE_indirect | DW_EH_PE_pcrel | DW_EH_PE_sdata417; CHECK-NEXT: .cfi_personality 155, DW.ref.__gxx_personality_v018;; LSDAEncoding = DW_EH_PE_pcrel | DW_EH_PE_sdata419; CHECK-NEXT: .cfi_lsda 27, .Lexception020 21define void @test1() personality ptr @__gxx_personality_v0 {22entry:23  invoke void @throw_exception() to label %try.cont unwind label %lpad24 25lpad:26  %0 = landingpad { ptr, i32 }27          catch ptr null28  %1 = extractvalue { ptr, i32 } %0, 029  %2 = tail call ptr @__cxa_begin_catch(ptr %1)30  tail call void @__cxa_end_catch()31  br label %try.cont32 33try.cont:34  ret void35}36 37; CHECK-LABEL: GCC_except_table0:38; CHECK-NEXT: .Lexception0:39; CHECK-NEXT: .byte 255 # @LPStart Encoding = omit40;; TTypeEncoding = DW_EH_PE_indirect | DW_EH_PE_pcrel | DW_EH_PE_sdata441; CHECK-NEXT: .byte 155 # @TType Encoding = indirect pcrel sdata442; CHECK: .Lttbaseref0:43;; CallSiteEncoding = dwarf::DW_EH_PE_uleb12844; CHECK-NEXT: .byte 1                       # Call site Encoding = uleb12845; CHECK-NEXT: .uleb128 .Lcst_end0-.Lcst_begin046; CHECK-NEXT: .Lcst_begin0:47; CHECK-NEXT: .uleb128 .Ltmp0-.Lfunc_begin0   # >> Call Site 1 <<48; CHECK-NEXT: .uleb128 .Ltmp1-.Ltmp0          #   Call between .Ltmp0 and .Ltmp149; CHECK-NEXT: .uleb128 .Ltmp2-.Lfunc_begin0   #     jumps to .Ltmp250; CHECK-NEXT: .byte 1                       #   On action: 151; CHECK-NEXT: .uleb128 .Ltmp1-.Lfunc_begin0   # >> Call Site 2 <<52; CHECK-NEXT: .uleb128 .Lfunc_end0-.Ltmp1     #   Call between .Ltmp1 and .Lfunc_end053; CHECK-NEXT: .byte 0                       #     has no landing pad54; CHECK-NEXT: .byte 0                       #   On action: cleanup55