Fix -freorder-blocks-and-partition glitch with Windows SEH
authorEric Botcazou <ebotcazou@adacore.com>
Thu, 11 Feb 2021 23:16:49 +0000 (00:16 +0100)
committerEric Botcazou <ebotcazou@adacore.com>
Thu, 11 Feb 2021 23:19:21 +0000 (00:19 +0100)
commit85cefe22564c4b7c1159a544fa692a24e0c71870
tree819cf044158af0146dcd6170c2a01c53816386ec
parent5e40542f878127a1dd0421831c03cda1b977f2a0
Fix -freorder-blocks-and-partition glitch with Windows SEH

Since GCC 8, the -freorder-blocks-and-partition pass can split a function
into hot and cold parts, thus generating 2 CIEs for a single function in
DWARF for exception purposes and doing an equivalent trick for Windows SEH.

Now the Windows system unwinder is picky when it comes to the boundary
between an active EH region and the end of the function and, therefore,
a nop may need to be added in specific cases.

gcc/
* config/i386/winnt.c (i386_pe_seh_unwind_emit): When switching to
the cold section, emit a nop before the directive if the previous
active instruction can throw.
gcc/config/i386/winnt.c