mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
8fc47f8652
For these cases, we already omit the prologue directives, if (!AFI->hasStackFrame() && !windowsRequiresStackProbe && !NumBytes). When writing the epilogue (after the prolog has been written), if the function doesn't have the WinCFI flag set (i.e. if no prologue was generated), assume that no epilogue will be needed either, and don't emit any epilog start pseudo instruction. After completing the epilogue, make sure that it actually matched the prologue. Previously, when epilogue start/end was generated, but no prologue, the unwind info for such functions actually was huge; 12 bytes xdata (4 bytes header, 4 bytes for one non-folded epilogue header, 4 bytes for padded opcodes) and 8 bytes pdata. Because the epilog consisted of one opcode (end) but the prolog was empty (no .seh_endprologue), the epilogue couldn't be folded into the prologue, and thus couldn't be considered for packed form either. On a 6.5 MB DLL with 110 KB pdata and 166 KB xdata, this gets rid of 38 KB pdata and 62 KB xdata. Differential Revision: https://reviews.llvm.org/D88641
25 lines
575 B
LLVM
25 lines
575 B
LLVM
; RUN: llc < %s -mtriple=aarch64-pc-windows-msvc | FileCheck %s
|
|
|
|
define dso_local void @"?f@@YAXXZ"() nounwind sspstrong uwtable {
|
|
; CHECK-LABEL: f@@YAXXZ
|
|
; CHECK-NOT: .seh_proc
|
|
; CHECK-NOT: .seh_handlerdata
|
|
; CHECK-NOT: .seh_endproc
|
|
entry:
|
|
call void @llvm.trap()
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.trap() noreturn nounwind
|
|
|
|
define dso_local i32 @getValue() nounwind sspstrong uwtable {
|
|
; CHECK-LABEL: getValue
|
|
; CHECK-NOT: .seh_proc
|
|
; CHECK-NOT: .seh_endprologue
|
|
; CHECK-NOT: .seh_startepilogue
|
|
; CHECK-NOT: .seh_endepilogue
|
|
; CHECK-NOT: .seh_endproc
|
|
entry:
|
|
ret i32 42
|
|
}
|