mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
4d25420fc8
This isn't necessary according to the DWARF standard, but it matches the .eh_frame sections emitted by other tools in practice, and the Android libunwindstack rejects .eh_frame sections where an FDE refers to a CIE other than the closest previous CIE. So match the other tools and also sort accordingly. I consider this a bug in libunwindstack, but it's easy enough to emit a compatible .eh_frame section for compatibility with installed operating systems. Differential Revision: https://reviews.llvm.org/D58266 llvm-svn: 356216
76 lines
2.1 KiB
LLVM
76 lines
2.1 KiB
LLVM
; RUN: llc -mtriple aarch64_be-linux-gnu -filetype obj < %s | llvm-objdump -s - | FileCheck %s
|
|
|
|
; ARM EHABI for big endian
|
|
; This test case checks whether CIE length record is laid out in big endian format.
|
|
;
|
|
; This is the LLVM assembly generated from following C++ code:
|
|
;
|
|
; extern void foo(int);
|
|
; void test(int a, int b) {
|
|
; try {
|
|
; foo(a);
|
|
; } catch (...) {
|
|
; foo(b);
|
|
; }
|
|
;}
|
|
|
|
define void @_Z4testii(i32 %a, i32 %b) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
|
|
entry:
|
|
invoke void @_Z3fooi(i32 %a)
|
|
to label %try.cont unwind label %lpad
|
|
|
|
lpad: ; preds = %entry
|
|
%0 = landingpad { i8*, i32 }
|
|
catch i8* null
|
|
%1 = extractvalue { i8*, i32 } %0, 0
|
|
%2 = tail call i8* @__cxa_begin_catch(i8* %1) #2
|
|
invoke void @_Z3fooi(i32 %b)
|
|
to label %invoke.cont2 unwind label %lpad1
|
|
|
|
invoke.cont2: ; preds = %lpad
|
|
tail call void @__cxa_end_catch()
|
|
br label %try.cont
|
|
|
|
try.cont: ; preds = %entry, %invoke.cont2
|
|
ret void
|
|
|
|
lpad1: ; preds = %lpad
|
|
%3 = landingpad { i8*, i32 }
|
|
cleanup
|
|
invoke void @__cxa_end_catch()
|
|
to label %eh.resume unwind label %terminate.lpad
|
|
|
|
eh.resume: ; preds = %lpad1
|
|
resume { i8*, i32 } %3
|
|
|
|
terminate.lpad: ; preds = %lpad1
|
|
%4 = landingpad { i8*, i32 }
|
|
catch i8* null
|
|
%5 = extractvalue { i8*, i32 } %4, 0
|
|
tail call void @__clang_call_terminate(i8* %5) #3
|
|
unreachable
|
|
}
|
|
|
|
declare void @_Z3fooi(i32) #0
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|
|
|
|
declare i8* @__cxa_begin_catch(i8*)
|
|
|
|
declare void @__cxa_end_catch()
|
|
|
|
; Function Attrs: noinline noreturn nounwind
|
|
define linkonce_odr hidden void @__clang_call_terminate(i8*) #1 {
|
|
%2 = tail call i8* @__cxa_begin_catch(i8* %0) #2
|
|
tail call void @_ZSt9terminatev() #3
|
|
unreachable
|
|
}
|
|
|
|
declare void @_ZSt9terminatev()
|
|
|
|
; CHECK-LABEL: Contents of section .eh_frame:
|
|
; CHECK-NEXT: {{^ 0000}}
|
|
; CHECK-NEXT: {{^ 0010}}
|
|
; CHECK-NEXT: 0000 0000001c
|
|
|