2018-09-27 20:07:47 +08:00
|
|
|
# REQUIRES: x86
|
2018-09-13 05:02:01 +08:00
|
|
|
# RUN: llvm-mc -triple=i386-pc-win32 -filetype=obj -o %t.obj %s
|
[COFF] Implement /safeseh:no and check @feat.00 flags by default
Summary:
Fixes PR41828. Before this, LLD always emitted SafeSEH chunks and
defined __safe_se_handler_table & size. Now, /safeseh:no leaves those
undefined.
Additionally, we were checking for the safeseh @feat.00 flag in two
places: once to emit errors, and once during safeseh table construction.
The error was set up to be off by default, but safeseh is supposed to be
on by default. I combined the two checks, so now LLD emits an error if
an input object lacks @feat.00 and safeseh is enabled. This caused the
majority of 32-bit LLD tests to fail, since many test input object files
lack @feat.00 symbols. I explicitly added -safeseh:no to those tests to
preserve behavior.
Finally, LLD no longer sets IMAGE_DLL_CHARACTERISTICS_NO_SEH if any
input file wasn't compiled for safeseh.
Reviewers: mstorsjo, ruiu, thakis
Reviewed By: ruiu, thakis
Subscribers: llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D63570
llvm-svn: 366238
2019-07-17 02:17:33 +08:00
|
|
|
# RUN: lld-link -safeseh:no /subsystem:console /debug /nodefaultlib /entry:foo /out:%t.exe /pdb:%t.pdb %t.obj
|
2018-09-13 05:02:01 +08:00
|
|
|
# RUN: llvm-pdbutil dump -fpo %t.pdb | FileCheck %s
|
|
|
|
|
|
|
|
# CHECK: Old FPO Data
|
|
|
|
# CHECK-NEXT: ============================================================
|
|
|
|
# CHECK-NEXT: RVA | Code | Locals | Params | Prolog | Saved Regs | Use BP | Has SEH | Frame Type
|
|
|
|
# CHECK-NEXT: 00001002 | 1 | 2 | 3 | 4 | 0 | false | false | FPO
|
|
|
|
|
|
|
|
.text
|
|
|
|
_foo:
|
|
|
|
ret
|
|
|
|
|
|
|
|
.global _foo
|
|
|
|
|
|
|
|
.section .debug$F,"dr"
|
|
|
|
.long _foo@IMGREL+2
|
|
|
|
.long 1 # cbProc
|
|
|
|
.long 2 # cdwLocals;
|
|
|
|
.short 3 # cdwParams;
|
|
|
|
.short 4 # flags
|
|
|
|
# cbProlog : 8;
|
|
|
|
# cbRegs : 3;
|
|
|
|
# fHasSEH : 1;
|
|
|
|
# fUseBP : 1;
|
|
|
|
# reserved : 1;
|
|
|
|
# cbFrame : 2;
|