This reapplies 36c64af9d7f97414d48681b74352c9684077259b in updated form. Emit the xdata for each function at .seh_endproc. This keeps the exact same output header order for most code generated by the LLVM CodeGen layer. (Sections still change order for code built from assembly where functions lack an explicit .seh_handlerdata directive, and functions with chained unwind info.) The practical effect should be that assembly output lacks superfluous ".seh_handlerdata; .text" pairs at the end of functions that don't handle exceptions, which allows such functions to use the AArch64 packed unwind format again. Differential Revision: https://reviews.llvm.org/D87448
33 lines
733 B
LLVM
33 lines
733 B
LLVM
; RUN: llc -mtriple=x86_64-windows-gnu < %s | FileCheck %s
|
|
|
|
declare void @throwit()
|
|
declare void @__gxx_personality_seh0(...)
|
|
declare void @__gcc_personality_seh0(...)
|
|
|
|
define void @use_gxx_seh()
|
|
personality void (...)* @__gxx_personality_seh0 {
|
|
entry:
|
|
call void @throwit()
|
|
unreachable
|
|
}
|
|
|
|
; CHECK-LABEL: use_gxx_seh:
|
|
; CHECK: .seh_proc use_gxx_seh
|
|
; CHECK-NOT: .seh_handler __gxx_personality_seh0
|
|
; CHECK: callq throwit
|
|
; CHECK: .seh_endproc
|
|
|
|
define void @use_gcc_seh()
|
|
personality void (...)* @__gcc_personality_seh0 {
|
|
entry:
|
|
call void @throwit()
|
|
unreachable
|
|
}
|
|
|
|
; CHECK-LABEL: use_gcc_seh:
|
|
; CHECK: .seh_proc use_gcc_seh
|
|
; CHECK-NOT: .seh_handler __gcc_personality_seh0
|
|
; CHECK: callq throwit
|
|
; CHECK: .seh_endproc
|
|
|