blob: 4151101e22bcc1fcb258bd78e29fbdc9524c5d2f [file] [log] [blame]
Reid Kleckner60b640b2015-05-28 22:47:01 +00001//===-- CodeGen/AsmPrinter/WinException.cpp - Dwarf Exception Impl ------===//
Charles Davis91ed7992011-05-27 23:47:32 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains support for writing Win64 exception info into asm files.
11//
12//===----------------------------------------------------------------------===//
13
Reid Kleckner60b640b2015-05-28 22:47:01 +000014#include "WinException.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/SmallString.h"
16#include "llvm/ADT/StringExtras.h"
17#include "llvm/ADT/Twine.h"
Charles Davis91ed7992011-05-27 23:47:32 +000018#include "llvm/CodeGen/AsmPrinter.h"
Charles Davis91ed7992011-05-27 23:47:32 +000019#include "llvm/CodeGen/MachineFrameInfo.h"
20#include "llvm/CodeGen/MachineFunction.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/CodeGen/MachineModuleInfo.h"
David Majnemercde33032015-03-30 22:58:10 +000022#include "llvm/CodeGen/WinEHFuncInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/DataLayout.h"
Rafael Espindola894843c2014-01-07 21:19:40 +000024#include "llvm/IR/Mangler.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/Module.h"
Charles Davis91ed7992011-05-27 23:47:32 +000026#include "llvm/MC/MCAsmInfo.h"
27#include "llvm/MC/MCContext.h"
28#include "llvm/MC/MCExpr.h"
29#include "llvm/MC/MCSection.h"
30#include "llvm/MC/MCStreamer.h"
31#include "llvm/MC/MCSymbol.h"
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000032#include "llvm/MC/MCWin64EH.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000033#include "llvm/Support/Dwarf.h"
34#include "llvm/Support/ErrorHandling.h"
35#include "llvm/Support/FormattedStream.h"
Charles Davis91ed7992011-05-27 23:47:32 +000036#include "llvm/Target/TargetFrameLowering.h"
37#include "llvm/Target/TargetLoweringObjectFile.h"
Charles Davis91ed7992011-05-27 23:47:32 +000038#include "llvm/Target/TargetOptions.h"
39#include "llvm/Target/TargetRegisterInfo.h"
Charles Davis91ed7992011-05-27 23:47:32 +000040using namespace llvm;
41
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000042WinException::WinException(AsmPrinter *A) : EHStreamer(A) {
43 // MSVC's EH tables are always composed of 32-bit words. All known 64-bit
44 // platforms use an imagerel32 relocation to refer to symbols.
45 useImageRel32 = (A->getDataLayout().getPointerSizeInBits() == 64);
46}
Charles Davis91ed7992011-05-27 23:47:32 +000047
Reid Kleckner60b640b2015-05-28 22:47:01 +000048WinException::~WinException() {}
Charles Davis91ed7992011-05-27 23:47:32 +000049
Timur Iskhodzhanov119f3072013-11-26 13:34:55 +000050/// endModule - Emit all exception information that should come after the
Charles Davis91ed7992011-05-27 23:47:32 +000051/// content.
Reid Kleckner60b640b2015-05-28 22:47:01 +000052void WinException::endModule() {
Reid Kleckner2bc93ca2015-06-10 01:02:30 +000053 auto &OS = *Asm->OutStreamer;
54 const Module *M = MMI->getModule();
Reid Klecknerca6ef662015-06-10 01:13:44 +000055 for (const Function &F : *M)
56 if (F.hasFnAttribute("safeseh"))
Reid Kleckner2bc93ca2015-06-10 01:02:30 +000057 OS.EmitCOFFSafeSEH(Asm->getSymbol(&F));
Charles Davis91ed7992011-05-27 23:47:32 +000058}
59
Reid Kleckner60b640b2015-05-28 22:47:01 +000060void WinException::beginFunction(const MachineFunction *MF) {
Charles Davis5638b9f2011-05-28 04:21:04 +000061 shouldEmitMoves = shouldEmitPersonality = shouldEmitLSDA = false;
62
63 // If any landing pads survive, we need an EH table.
64 bool hasLandingPads = !MMI->getLandingPads().empty();
65
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000066 const Function *F = MF->getFunction();
67 const Function *ParentF = MMI->getWinEHParent(F);
68
Charles Davis5638b9f2011-05-28 04:21:04 +000069 shouldEmitMoves = Asm->needsSEHMoves();
70
71 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
72 unsigned PerEncoding = TLOF.getPersonalityEncoding();
Reid Kleckner9a1a9192015-07-13 20:41:46 +000073 const Function *Per = nullptr;
74 if (F->hasPersonalityFn())
75 Per = dyn_cast<Function>(F->getPersonalityFn()->stripPointerCasts());
Charles Davis5638b9f2011-05-28 04:21:04 +000076
Keno Fischeraff703a2015-07-14 19:22:51 +000077 bool forceEmitPersonality =
78 F->hasPersonalityFn() && !isNoOpWithoutInvoke(classifyEHPersonality(Per)) &&
79 F->needsUnwindTableEntry();
80
81 shouldEmitPersonality = forceEmitPersonality || (hasLandingPads &&
82 PerEncoding != dwarf::DW_EH_PE_omit && Per);
Charles Davis5638b9f2011-05-28 04:21:04 +000083
84 unsigned LSDAEncoding = TLOF.getLSDAEncoding();
85 shouldEmitLSDA = shouldEmitPersonality &&
86 LSDAEncoding != dwarf::DW_EH_PE_omit;
87
Reid Kleckner9a1a9192015-07-13 20:41:46 +000088 // If we're not using CFI, we don't want the CFI or the personality. If
89 // WinEHPrepare outlined something, we should emit the LSDA.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000090 if (!Asm->MAI->usesWindowsCFI()) {
Reid Kleckner9a1a9192015-07-13 20:41:46 +000091 bool HasOutlinedChildren =
92 F->hasFnAttribute("wineh-parent") && F == ParentF;
93 shouldEmitLSDA = HasOutlinedChildren;
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000094 shouldEmitPersonality = false;
95 return;
96 }
David Majnemera225a192015-03-31 22:35:44 +000097
98 // If this was an outlined handler, we need to define the label corresponding
99 // to the offset of the parent frame relative to the stack pointer after the
100 // prologue.
David Majnemera225a192015-03-31 22:35:44 +0000101 if (F != ParentF) {
102 WinEHFuncInfo &FuncInfo = MMI->getWinEHFuncInfo(ParentF);
103 auto I = FuncInfo.CatchHandlerParentFrameObjOffset.find(F);
104 if (I != FuncInfo.CatchHandlerParentFrameObjOffset.end()) {
105 MCSymbol *HandlerTypeParentFrameOffset =
106 Asm->OutContext.getOrCreateParentFrameOffsetSymbol(
107 GlobalValue::getRealLinkageName(F->getName()));
108
109 // Emit a symbol assignment.
Lang Hames9ff69c82015-04-24 19:11:51 +0000110 Asm->OutStreamer->EmitAssignment(
David Majnemera225a192015-03-31 22:35:44 +0000111 HandlerTypeParentFrameOffset,
Jim Grosbach13760bd2015-05-30 01:25:56 +0000112 MCConstantExpr::create(I->second, Asm->OutContext));
David Majnemera225a192015-03-31 22:35:44 +0000113 }
114 }
115
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000116 if (shouldEmitMoves || shouldEmitPersonality)
117 Asm->OutStreamer->EmitWinCFIStartProc(Asm->CurrentFnSym);
Charles Davis5638b9f2011-05-28 04:21:04 +0000118
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000119 if (shouldEmitPersonality) {
120 const MCSymbol *PersHandlerSym =
121 TLOF.getCFIPersonalitySymbol(Per, *Asm->Mang, Asm->TM, MMI);
122 Asm->OutStreamer->EmitWinEHHandler(PersHandlerSym, true, true);
123 }
Charles Davis91ed7992011-05-27 23:47:32 +0000124}
125
Timur Iskhodzhanov119f3072013-11-26 13:34:55 +0000126/// endFunction - Gather and emit post-function exception information.
Charles Davis91ed7992011-05-27 23:47:32 +0000127///
Reid Kleckner60b640b2015-05-28 22:47:01 +0000128void WinException::endFunction(const MachineFunction *MF) {
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000129 if (!shouldEmitPersonality && !shouldEmitMoves && !shouldEmitLSDA)
Charles Davis5638b9f2011-05-28 04:21:04 +0000130 return;
131
Reid Kleckner9a1a9192015-07-13 20:41:46 +0000132 const Function *F = MF->getFunction();
133 EHPersonality Per = EHPersonality::Unknown;
134 if (F->hasPersonalityFn())
135 Per = classifyEHPersonality(F->getPersonalityFn());
Reid Kleckner3e9fadf2015-04-15 18:48:15 +0000136
137 // Get rid of any dead landing pads if we're not using a Windows EH scheme. In
138 // Windows EH schemes, the landing pad is not actually reachable. It only
139 // exists so that we can emit the right table data.
140 if (!isMSVCEHPersonality(Per))
141 MMI->TidyLandingPads();
Charles Davisa5752262011-05-30 00:13:34 +0000142
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000143 if (shouldEmitPersonality || shouldEmitLSDA) {
Lang Hames9ff69c82015-04-24 19:11:51 +0000144 Asm->OutStreamer->PushSection();
Reid Kleckner0a57f652015-01-14 01:05:27 +0000145
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000146 if (shouldEmitMoves || shouldEmitPersonality) {
147 // Emit an UNWIND_INFO struct describing the prologue.
148 Asm->OutStreamer->EmitWinEHHandlerData();
149 } else {
150 // Just switch sections to the right xdata section. This use of
151 // CurrentFnSym assumes that we only emit the LSDA when ending the parent
152 // function.
153 MCSection *XData = WinEH::UnwindEmitter::getXDataSection(
154 Asm->CurrentFnSym, Asm->OutContext);
155 Asm->OutStreamer->SwitchSection(XData);
156 }
Reid Kleckner0a57f652015-01-14 01:05:27 +0000157
Reid Kleckner9b5eaf02015-01-14 18:50:10 +0000158 // Emit the tables appropriate to the personality function in use. If we
159 // don't recognize the personality, assume it uses an Itanium-style LSDA.
Reid Kleckner2d5fb682015-02-14 00:21:02 +0000160 if (Per == EHPersonality::MSVC_Win64SEH)
Reid Kleckner9b5eaf02015-01-14 18:50:10 +0000161 emitCSpecificHandlerTable();
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000162 else if (Per == EHPersonality::MSVC_X86SEH)
Reid Klecknerf12c0302015-06-09 21:42:19 +0000163 emitExceptHandlerTable(MF);
David Majnemercde33032015-03-30 22:58:10 +0000164 else if (Per == EHPersonality::MSVC_CXX)
165 emitCXXFrameHandler3Table(MF);
Reid Kleckner9b5eaf02015-01-14 18:50:10 +0000166 else
Reid Kleckner0a57f652015-01-14 01:05:27 +0000167 emitExceptionTable();
Reid Kleckner0a57f652015-01-14 01:05:27 +0000168
Lang Hames9ff69c82015-04-24 19:11:51 +0000169 Asm->OutStreamer->PopSection();
Charles Davisa5752262011-05-30 00:13:34 +0000170 }
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000171
172 if (shouldEmitMoves)
173 Asm->OutStreamer->EmitWinCFIEndProc();
Charles Davis91ed7992011-05-27 23:47:32 +0000174}
Reid Kleckner0a57f652015-01-14 01:05:27 +0000175
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000176const MCExpr *WinException::create32bitRef(const MCSymbol *Value) {
David Majnemercde33032015-03-30 22:58:10 +0000177 if (!Value)
Jim Grosbach13760bd2015-05-30 01:25:56 +0000178 return MCConstantExpr::create(0, Asm->OutContext);
179 return MCSymbolRefExpr::create(Value, useImageRel32
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000180 ? MCSymbolRefExpr::VK_COFF_IMGREL32
181 : MCSymbolRefExpr::VK_None,
Reid Kleckner0a57f652015-01-14 01:05:27 +0000182 Asm->OutContext);
183}
184
David Majnemer0ad363e2015-08-18 19:07:12 +0000185const MCExpr *WinException::create32bitRef(const Value *V) {
186 if (!V)
Jim Grosbach13760bd2015-05-30 01:25:56 +0000187 return MCConstantExpr::create(0, Asm->OutContext);
David Majnemer0ad363e2015-08-18 19:07:12 +0000188 return create32bitRef(Asm->getSymbol(cast<GlobalValue>(V)));
David Majnemercde33032015-03-30 22:58:10 +0000189}
190
Reid Kleckner0a57f652015-01-14 01:05:27 +0000191/// Emit the language-specific data that __C_specific_handler expects. This
192/// handler lives in the x64 Microsoft C runtime and allows catching or cleaning
193/// up after faults with __try, __except, and __finally. The typeinfo values
194/// are not really RTTI data, but pointers to filter functions that return an
195/// integer (1, 0, or -1) indicating how to handle the exception. For __finally
196/// blocks and other cleanups, the landing pad label is zero, and the filter
197/// function is actually a cleanup handler with the same prototype. A catch-all
198/// entry is modeled with a null filter function field and a non-zero landing
199/// pad label.
200///
201/// Possible filter function return values:
202/// EXCEPTION_EXECUTE_HANDLER (1):
203/// Jump to the landing pad label after cleanups.
204/// EXCEPTION_CONTINUE_SEARCH (0):
205/// Continue searching this table or continue unwinding.
206/// EXCEPTION_CONTINUE_EXECUTION (-1):
207/// Resume execution at the trapping PC.
208///
209/// Inferred table structure:
210/// struct Table {
211/// int NumEntries;
212/// struct Entry {
213/// imagerel32 LabelStart;
214/// imagerel32 LabelEnd;
Reid Klecknerf690f502015-01-22 02:27:44 +0000215/// imagerel32 FilterOrFinally; // One means catch-all.
Reid Kleckner0a57f652015-01-14 01:05:27 +0000216/// imagerel32 LabelLPad; // Zero means __finally.
217/// } Entries[NumEntries];
218/// };
Reid Kleckner60b640b2015-05-28 22:47:01 +0000219void WinException::emitCSpecificHandlerTable() {
Reid Kleckner0a57f652015-01-14 01:05:27 +0000220 const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
221
222 // Simplifying assumptions for first implementation:
223 // - Cleanups are not implemented.
224 // - Filters are not implemented.
225
226 // The Itanium LSDA table sorts similar landing pads together to simplify the
227 // actions table, but we don't need that.
228 SmallVector<const LandingPadInfo *, 64> LandingPads;
229 LandingPads.reserve(PadInfos.size());
230 for (const auto &LP : PadInfos)
231 LandingPads.push_back(&LP);
232
233 // Compute label ranges for call sites as we would for the Itanium LSDA, but
234 // use an all zero action table because we aren't using these actions.
235 SmallVector<unsigned, 64> FirstActions;
236 FirstActions.resize(LandingPads.size());
237 SmallVector<CallSiteEntry, 64> CallSites;
238 computeCallSiteTable(CallSites, LandingPads, FirstActions);
239
Rafael Espindola629cdba2015-02-27 18:18:39 +0000240 MCSymbol *EHFuncBeginSym = Asm->getFunctionBegin();
241 MCSymbol *EHFuncEndSym = Asm->getFunctionEnd();
Reid Kleckner0a57f652015-01-14 01:05:27 +0000242
243 // Emit the number of table entries.
244 unsigned NumEntries = 0;
245 for (const CallSiteEntry &CSE : CallSites) {
246 if (!CSE.LPad)
247 continue; // Ignore gaps.
Reid Klecknerd2a1a512015-04-21 18:23:57 +0000248 NumEntries += CSE.LPad->SEHHandlers.size();
Reid Kleckner0a57f652015-01-14 01:05:27 +0000249 }
Lang Hames9ff69c82015-04-24 19:11:51 +0000250 Asm->OutStreamer->EmitIntValue(NumEntries, 4);
Reid Kleckner0a57f652015-01-14 01:05:27 +0000251
Reid Klecknerd2a1a512015-04-21 18:23:57 +0000252 // If there are no actions, we don't need to iterate again.
253 if (NumEntries == 0)
254 return;
255
Reid Kleckner0a57f652015-01-14 01:05:27 +0000256 // Emit the four-label records for each call site entry. The table has to be
257 // sorted in layout order, and the call sites should already be sorted.
258 for (const CallSiteEntry &CSE : CallSites) {
259 // Ignore gaps. Unlike the Itanium model, unwinding through a frame without
260 // an EH table entry will propagate the exception rather than terminating
261 // the program.
262 if (!CSE.LPad)
263 continue;
264 const LandingPadInfo *LPad = CSE.LPad;
265
266 // Compute the label range. We may reuse the function begin and end labels
267 // rather than forming new ones.
268 const MCExpr *Begin =
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000269 create32bitRef(CSE.BeginLabel ? CSE.BeginLabel : EHFuncBeginSym);
Reid Kleckner0a57f652015-01-14 01:05:27 +0000270 const MCExpr *End;
271 if (CSE.EndLabel) {
272 // The interval is half-open, so we have to add one to include the return
273 // address of the last invoke in the range.
Jim Grosbach13760bd2015-05-30 01:25:56 +0000274 End = MCBinaryExpr::createAdd(create32bitRef(CSE.EndLabel),
275 MCConstantExpr::create(1, Asm->OutContext),
Reid Kleckner0a57f652015-01-14 01:05:27 +0000276 Asm->OutContext);
277 } else {
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000278 End = create32bitRef(EHFuncEndSym);
Reid Kleckner0a57f652015-01-14 01:05:27 +0000279 }
280
Reid Klecknerd2a1a512015-04-21 18:23:57 +0000281 // Emit an entry for each action.
282 for (SEHHandler Handler : LPad->SEHHandlers) {
Lang Hames9ff69c82015-04-24 19:11:51 +0000283 Asm->OutStreamer->EmitValue(Begin, 4);
284 Asm->OutStreamer->EmitValue(End, 4);
Reid Klecknerd2a1a512015-04-21 18:23:57 +0000285
286 // Emit the filter or finally function pointer, if present. Otherwise,
287 // emit '1' to indicate a catch-all.
288 const Function *F = Handler.FilterOrFinally;
289 if (F)
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000290 Asm->OutStreamer->EmitValue(create32bitRef(Asm->getSymbol(F)), 4);
Reid Klecknerd2a1a512015-04-21 18:23:57 +0000291 else
Lang Hames9ff69c82015-04-24 19:11:51 +0000292 Asm->OutStreamer->EmitIntValue(1, 4);
Reid Klecknerd2a1a512015-04-21 18:23:57 +0000293
294 // Emit the recovery address, if present. Otherwise, this must be a
295 // finally.
296 const BlockAddress *BA = Handler.RecoverBA;
297 if (BA)
Lang Hames9ff69c82015-04-24 19:11:51 +0000298 Asm->OutStreamer->EmitValue(
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000299 create32bitRef(Asm->GetBlockAddressSymbol(BA)), 4);
Reid Klecknerd2a1a512015-04-21 18:23:57 +0000300 else
Lang Hames9ff69c82015-04-24 19:11:51 +0000301 Asm->OutStreamer->EmitIntValue(0, 4);
Reid Klecknerd2a1a512015-04-21 18:23:57 +0000302 }
Reid Kleckner0a57f652015-01-14 01:05:27 +0000303 }
304}
David Majnemercde33032015-03-30 22:58:10 +0000305
Reid Kleckner60b640b2015-05-28 22:47:01 +0000306void WinException::emitCXXFrameHandler3Table(const MachineFunction *MF) {
David Majnemercde33032015-03-30 22:58:10 +0000307 const Function *F = MF->getFunction();
308 const Function *ParentF = MMI->getWinEHParent(F);
Lang Hames9ff69c82015-04-24 19:11:51 +0000309 auto &OS = *Asm->OutStreamer;
David Majnemera225a192015-03-31 22:35:44 +0000310 WinEHFuncInfo &FuncInfo = MMI->getWinEHFuncInfo(ParentF);
David Majnemercde33032015-03-30 22:58:10 +0000311
312 StringRef ParentLinkageName =
313 GlobalValue::getRealLinkageName(ParentF->getName());
314
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000315 MCSymbol *FuncInfoXData = nullptr;
316 if (shouldEmitPersonality) {
317 FuncInfoXData = Asm->OutContext.getOrCreateSymbol(
318 Twine("$cppxdata$", ParentLinkageName));
319 OS.EmitValue(create32bitRef(FuncInfoXData), 4);
320
321 extendIP2StateTable(MF, ParentF, FuncInfo);
322
323 // Defer emission until we've visited the parent function and all the catch
324 // handlers. Cleanups don't contribute to the ip2state table, so don't count
325 // them.
326 if (ParentF != F && !FuncInfo.CatchHandlerMaxState.count(F))
327 return;
328 ++FuncInfo.NumIPToStateFuncsVisited;
329 if (FuncInfo.NumIPToStateFuncsVisited != FuncInfo.CatchHandlerMaxState.size())
330 return;
331 } else {
332 FuncInfoXData = Asm->OutContext.getOrCreateLSDASymbol(ParentLinkageName);
Reid Kleckner399a2fe2015-06-30 22:46:59 +0000333 emitEHRegistrationOffsetLabel(FuncInfo, ParentLinkageName);
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000334 }
335
336 MCSymbol *UnwindMapXData = nullptr;
337 MCSymbol *TryBlockMapXData = nullptr;
338 MCSymbol *IPToStateXData = nullptr;
339 if (!FuncInfo.UnwindMap.empty())
340 UnwindMapXData = Asm->OutContext.getOrCreateSymbol(
341 Twine("$stateUnwindMap$", ParentLinkageName));
342 if (!FuncInfo.TryBlockMap.empty())
343 TryBlockMapXData = Asm->OutContext.getOrCreateSymbol(
344 Twine("$tryMap$", ParentLinkageName));
345 if (!FuncInfo.IPToStateList.empty())
346 IPToStateXData = Asm->OutContext.getOrCreateSymbol(
347 Twine("$ip2state$", ParentLinkageName));
348
349 // FuncInfo {
350 // uint32_t MagicNumber
351 // int32_t MaxState;
352 // UnwindMapEntry *UnwindMap;
353 // uint32_t NumTryBlocks;
354 // TryBlockMapEntry *TryBlockMap;
355 // uint32_t IPMapEntries; // always 0 for x86
356 // IPToStateMapEntry *IPToStateMap; // always 0 for x86
357 // uint32_t UnwindHelp; // non-x86 only
358 // ESTypeList *ESTypeList;
359 // int32_t EHFlags;
360 // }
361 // EHFlags & 1 -> Synchronous exceptions only, no async exceptions.
362 // EHFlags & 2 -> ???
363 // EHFlags & 4 -> The function is noexcept(true), unwinding can't continue.
Reid Kleckner85a24502015-07-10 00:08:49 +0000364 OS.EmitValueToAlignment(4);
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000365 OS.EmitLabel(FuncInfoXData);
366 OS.EmitIntValue(0x19930522, 4); // MagicNumber
367 OS.EmitIntValue(FuncInfo.UnwindMap.size(), 4); // MaxState
368 OS.EmitValue(create32bitRef(UnwindMapXData), 4); // UnwindMap
369 OS.EmitIntValue(FuncInfo.TryBlockMap.size(), 4); // NumTryBlocks
370 OS.EmitValue(create32bitRef(TryBlockMapXData), 4); // TryBlockMap
371 OS.EmitIntValue(FuncInfo.IPToStateList.size(), 4); // IPMapEntries
372 OS.EmitValue(create32bitRef(IPToStateXData), 4); // IPToStateMap
373 if (Asm->MAI->usesWindowsCFI())
374 OS.EmitIntValue(FuncInfo.UnwindHelpFrameOffset, 4); // UnwindHelp
375 OS.EmitIntValue(0, 4); // ESTypeList
376 OS.EmitIntValue(1, 4); // EHFlags
377
378 // UnwindMapEntry {
379 // int32_t ToState;
380 // void (*Action)();
381 // };
382 if (UnwindMapXData) {
383 OS.EmitLabel(UnwindMapXData);
384 for (const WinEHUnwindMapEntry &UME : FuncInfo.UnwindMap) {
385 OS.EmitIntValue(UME.ToState, 4); // ToState
386 OS.EmitValue(create32bitRef(UME.Cleanup), 4); // Action
387 }
388 }
389
390 // TryBlockMap {
391 // int32_t TryLow;
392 // int32_t TryHigh;
393 // int32_t CatchHigh;
394 // int32_t NumCatches;
395 // HandlerType *HandlerArray;
396 // };
397 if (TryBlockMapXData) {
398 OS.EmitLabel(TryBlockMapXData);
399 SmallVector<MCSymbol *, 1> HandlerMaps;
400 for (size_t I = 0, E = FuncInfo.TryBlockMap.size(); I != E; ++I) {
401 WinEHTryBlockMapEntry &TBME = FuncInfo.TryBlockMap[I];
402 MCSymbol *HandlerMapXData = nullptr;
403
404 if (!TBME.HandlerArray.empty())
405 HandlerMapXData =
406 Asm->OutContext.getOrCreateSymbol(Twine("$handlerMap$")
407 .concat(Twine(I))
408 .concat("$")
409 .concat(ParentLinkageName));
410
411 HandlerMaps.push_back(HandlerMapXData);
412
413 int CatchHigh = -1;
414 for (WinEHHandlerType &HT : TBME.HandlerArray)
415 CatchHigh =
David Majnemer0ad363e2015-08-18 19:07:12 +0000416 std::max(CatchHigh,
417 FuncInfo.CatchHandlerMaxState[cast<Function>(HT.Handler)]);
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000418
419 assert(TBME.TryLow <= TBME.TryHigh);
420 OS.EmitIntValue(TBME.TryLow, 4); // TryLow
421 OS.EmitIntValue(TBME.TryHigh, 4); // TryHigh
422 OS.EmitIntValue(CatchHigh, 4); // CatchHigh
423 OS.EmitIntValue(TBME.HandlerArray.size(), 4); // NumCatches
424 OS.EmitValue(create32bitRef(HandlerMapXData), 4); // HandlerArray
425 }
426
427 for (size_t I = 0, E = FuncInfo.TryBlockMap.size(); I != E; ++I) {
428 WinEHTryBlockMapEntry &TBME = FuncInfo.TryBlockMap[I];
429 MCSymbol *HandlerMapXData = HandlerMaps[I];
430 if (!HandlerMapXData)
431 continue;
432 // HandlerType {
433 // int32_t Adjectives;
434 // TypeDescriptor *Type;
435 // int32_t CatchObjOffset;
436 // void (*Handler)();
437 // int32_t ParentFrameOffset; // x64 only
438 // };
439 OS.EmitLabel(HandlerMapXData);
440 for (const WinEHHandlerType &HT : TBME.HandlerArray) {
441 // Get the frame escape label with the offset of the catch object. If
442 // the index is -1, then there is no catch object, and we should emit an
443 // offset of zero, indicating that no copy will occur.
444 const MCExpr *FrameAllocOffsetRef = nullptr;
445 if (HT.CatchObjRecoverIdx >= 0) {
446 MCSymbol *FrameAllocOffset =
447 Asm->OutContext.getOrCreateFrameAllocSymbol(
448 GlobalValue::getRealLinkageName(ParentF->getName()),
449 HT.CatchObjRecoverIdx);
Jim Grosbach13760bd2015-05-30 01:25:56 +0000450 FrameAllocOffsetRef = MCSymbolRefExpr::create(
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000451 FrameAllocOffset, MCSymbolRefExpr::VK_None, Asm->OutContext);
452 } else {
Jim Grosbach13760bd2015-05-30 01:25:56 +0000453 FrameAllocOffsetRef = MCConstantExpr::create(0, Asm->OutContext);
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000454 }
455
456 OS.EmitIntValue(HT.Adjectives, 4); // Adjectives
457 OS.EmitValue(create32bitRef(HT.TypeDescriptor), 4); // Type
458 OS.EmitValue(FrameAllocOffsetRef, 4); // CatchObjOffset
459 OS.EmitValue(create32bitRef(HT.Handler), 4); // Handler
460
461 if (shouldEmitPersonality) {
462 MCSymbol *ParentFrameOffset =
463 Asm->OutContext.getOrCreateParentFrameOffsetSymbol(
464 GlobalValue::getRealLinkageName(HT.Handler->getName()));
Jim Grosbach13760bd2015-05-30 01:25:56 +0000465 const MCSymbolRefExpr *ParentFrameOffsetRef = MCSymbolRefExpr::create(
Reid Klecknera9d62532015-06-11 22:32:23 +0000466 ParentFrameOffset, Asm->OutContext);
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000467 OS.EmitValue(ParentFrameOffsetRef, 4); // ParentFrameOffset
468 }
469 }
470 }
471 }
472
473 // IPToStateMapEntry {
474 // void *IP;
475 // int32_t State;
476 // };
477 if (IPToStateXData) {
478 OS.EmitLabel(IPToStateXData);
479 for (auto &IPStatePair : FuncInfo.IPToStateList) {
480 OS.EmitValue(create32bitRef(IPStatePair.first), 4); // IP
481 OS.EmitIntValue(IPStatePair.second, 4); // State
482 }
483 }
484}
485
486void WinException::extendIP2StateTable(const MachineFunction *MF,
487 const Function *ParentF,
488 WinEHFuncInfo &FuncInfo) {
489 const Function *F = MF->getFunction();
David Majnemercde33032015-03-30 22:58:10 +0000490
491 // The Itanium LSDA table sorts similar landing pads together to simplify the
492 // actions table, but we don't need that.
493 SmallVector<const LandingPadInfo *, 64> LandingPads;
494 const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
495 LandingPads.reserve(PadInfos.size());
496 for (const auto &LP : PadInfos)
497 LandingPads.push_back(&LP);
498
499 RangeMapType PadMap;
500 computePadMap(LandingPads, PadMap);
501
502 // The end label of the previous invoke or nounwind try-range.
503 MCSymbol *LastLabel = Asm->getFunctionBegin();
504
505 // Whether there is a potentially throwing instruction (currently this means
506 // an ordinary call) between the end of the previous try-range and now.
507 bool SawPotentiallyThrowing = false;
508
David Majnemercde33032015-03-30 22:58:10 +0000509 int LastEHState = -2;
510
511 // The parent function and the catch handlers contribute to the 'ip2state'
512 // table.
Andrew Kaylor762a6be2015-05-11 19:41:19 +0000513
514 // Include ip2state entries for the beginning of the main function and
515 // for catch handler functions.
516 if (F == ParentF) {
517 FuncInfo.IPToStateList.push_back(std::make_pair(LastLabel, -1));
518 LastEHState = -1;
519 } else if (FuncInfo.HandlerBaseState.count(F)) {
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +0000520 FuncInfo.IPToStateList.push_back(
521 std::make_pair(LastLabel, FuncInfo.HandlerBaseState[F]));
Andrew Kaylor762a6be2015-05-11 19:41:19 +0000522 LastEHState = FuncInfo.HandlerBaseState[F];
523 }
David Majnemercde33032015-03-30 22:58:10 +0000524 for (const auto &MBB : *MF) {
525 for (const auto &MI : MBB) {
526 if (!MI.isEHLabel()) {
527 if (MI.isCall())
528 SawPotentiallyThrowing |= !callToNoUnwindFunction(&MI);
529 continue;
530 }
531
532 // End of the previous try-range?
533 MCSymbol *BeginLabel = MI.getOperand(0).getMCSymbol();
534 if (BeginLabel == LastLabel)
535 SawPotentiallyThrowing = false;
536
537 // Beginning of a new try-range?
538 RangeMapType::const_iterator L = PadMap.find(BeginLabel);
539 if (L == PadMap.end())
540 // Nope, it was just some random label.
541 continue;
542
543 const PadRange &P = L->second;
544 const LandingPadInfo *LandingPad = LandingPads[P.PadIndex];
545 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
546 "Inconsistent landing pad map!");
547
Andrew Kaylor762a6be2015-05-11 19:41:19 +0000548 // FIXME: Should this be using FuncInfo.HandlerBaseState?
549 if (SawPotentiallyThrowing && LastEHState != -1) {
David Majnemercde33032015-03-30 22:58:10 +0000550 FuncInfo.IPToStateList.push_back(std::make_pair(LastLabel, -1));
551 SawPotentiallyThrowing = false;
552 LastEHState = -1;
553 }
554
555 if (LandingPad->WinEHState != LastEHState)
556 FuncInfo.IPToStateList.push_back(
557 std::make_pair(BeginLabel, LandingPad->WinEHState));
558 LastEHState = LandingPad->WinEHState;
559 LastLabel = LandingPad->EndLabels[P.RangeIndex];
560 }
561 }
David Majnemercde33032015-03-30 22:58:10 +0000562}
Reid Klecknerf12c0302015-06-09 21:42:19 +0000563
Reid Kleckner399a2fe2015-06-30 22:46:59 +0000564void WinException::emitEHRegistrationOffsetLabel(const WinEHFuncInfo &FuncInfo,
565 StringRef FLinkageName) {
566 // Outlined helpers called by the EH runtime need to know the offset of the EH
567 // registration in order to recover the parent frame pointer. Now that we know
568 // we've code generated the parent, we can emit the label assignment that
569 // those helpers use to get the offset of the registration node.
570 assert(FuncInfo.EHRegNodeEscapeIndex != INT_MAX &&
Reid Kleckner60381792015-07-07 22:25:32 +0000571 "no EH reg node localescape index");
Reid Kleckner399a2fe2015-06-30 22:46:59 +0000572 MCSymbol *ParentFrameOffset =
573 Asm->OutContext.getOrCreateParentFrameOffsetSymbol(FLinkageName);
574 MCSymbol *RegistrationOffsetSym = Asm->OutContext.getOrCreateFrameAllocSymbol(
575 FLinkageName, FuncInfo.EHRegNodeEscapeIndex);
576 const MCExpr *RegistrationOffsetSymRef =
577 MCSymbolRefExpr::create(RegistrationOffsetSym, Asm->OutContext);
578 Asm->OutStreamer->EmitAssignment(ParentFrameOffset, RegistrationOffsetSymRef);
579}
580
Reid Klecknerf12c0302015-06-09 21:42:19 +0000581/// Emit the language-specific data that _except_handler3 and 4 expect. This is
582/// functionally equivalent to the __C_specific_handler table, except it is
583/// indexed by state number instead of IP.
584void WinException::emitExceptHandlerTable(const MachineFunction *MF) {
Reid Klecknera9d62532015-06-11 22:32:23 +0000585 MCStreamer &OS = *Asm->OutStreamer;
Reid Klecknera9d62532015-06-11 22:32:23 +0000586 const Function *F = MF->getFunction();
Reid Klecknera9d62532015-06-11 22:32:23 +0000587 StringRef FLinkageName = GlobalValue::getRealLinkageName(F->getName());
Reid Kleckner399a2fe2015-06-30 22:46:59 +0000588
589 WinEHFuncInfo &FuncInfo = MMI->getWinEHFuncInfo(F);
590 emitEHRegistrationOffsetLabel(FuncInfo, FLinkageName);
Reid Klecknerf12c0302015-06-09 21:42:19 +0000591
592 // Emit the __ehtable label that we use for llvm.x86.seh.lsda.
Reid Klecknerf12c0302015-06-09 21:42:19 +0000593 MCSymbol *LSDALabel = Asm->OutContext.getOrCreateLSDASymbol(FLinkageName);
Reid Kleckner85a24502015-07-10 00:08:49 +0000594 OS.EmitValueToAlignment(4);
Reid Klecknerf12c0302015-06-09 21:42:19 +0000595 OS.EmitLabel(LSDALabel);
596
Reid Kleckner9a1a9192015-07-13 20:41:46 +0000597 const Function *Per =
598 dyn_cast<Function>(F->getPersonalityFn()->stripPointerCasts());
Reid Klecknerf12c0302015-06-09 21:42:19 +0000599 StringRef PerName = Per->getName();
600 int BaseState = -1;
601 if (PerName == "_except_handler4") {
602 // The LSDA for _except_handler4 starts with this struct, followed by the
603 // scope table:
604 //
605 // struct EH4ScopeTable {
606 // int32_t GSCookieOffset;
607 // int32_t GSCookieXOROffset;
608 // int32_t EHCookieOffset;
609 // int32_t EHCookieXOROffset;
610 // ScopeTableEntry ScopeRecord[];
611 // };
612 //
613 // Only the EHCookieOffset field appears to vary, and it appears to be the
614 // offset from the final saved SP value to the retaddr.
615 OS.EmitIntValue(-2, 4);
616 OS.EmitIntValue(0, 4);
617 // FIXME: Calculate.
618 OS.EmitIntValue(9999, 4);
619 OS.EmitIntValue(0, 4);
620 BaseState = -2;
621 }
622
623 // Build a list of pointers to LandingPadInfos and then sort by WinEHState.
624 const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
625 SmallVector<const LandingPadInfo *, 4> LPads;
626 LPads.reserve((PadInfos.size()));
627 for (const LandingPadInfo &LPInfo : PadInfos)
628 LPads.push_back(&LPInfo);
629 std::sort(LPads.begin(), LPads.end(),
630 [](const LandingPadInfo *L, const LandingPadInfo *R) {
631 return L->WinEHState < R->WinEHState;
632 });
633
634 // For each action in each lpad, emit one of these:
635 // struct ScopeTableEntry {
636 // int32_t EnclosingLevel;
Reid Kleckner81d1cc02015-06-11 23:37:18 +0000637 // int32_t (__cdecl *Filter)();
638 // void *HandlerOrFinally;
Reid Klecknerf12c0302015-06-09 21:42:19 +0000639 // };
640 //
641 // The "outermost" action will use BaseState as its enclosing level. Each
642 // other action will refer to the previous state as its enclosing level.
643 int CurState = 0;
644 for (const LandingPadInfo *LPInfo : LPads) {
645 int EnclosingLevel = BaseState;
Reid Kleckner7912d9b2015-06-10 00:04:53 +0000646 assert(CurState + int(LPInfo->SEHHandlers.size()) - 1 ==
647 LPInfo->WinEHState &&
Reid Klecknerf12c0302015-06-09 21:42:19 +0000648 "gaps in the SEH scope table");
Reid Kleckner81d1cc02015-06-11 23:37:18 +0000649 for (auto I = LPInfo->SEHHandlers.rbegin(), E = LPInfo->SEHHandlers.rend();
650 I != E; ++I) {
651 const SEHHandler &Handler = *I;
Reid Klecknerf12c0302015-06-09 21:42:19 +0000652 const BlockAddress *BA = Handler.RecoverBA;
Reid Kleckner81d1cc02015-06-11 23:37:18 +0000653 const Function *F = Handler.FilterOrFinally;
654 assert(F && "cannot catch all in 32-bit SEH without filter function");
655 const MCExpr *FilterOrNull =
656 create32bitRef(BA ? Asm->getSymbol(F) : nullptr);
657 const MCExpr *ExceptOrFinally = create32bitRef(
658 BA ? Asm->GetBlockAddressSymbol(BA) : Asm->getSymbol(F));
Reid Klecknerf12c0302015-06-09 21:42:19 +0000659
660 OS.EmitIntValue(EnclosingLevel, 4);
Reid Kleckner81d1cc02015-06-11 23:37:18 +0000661 OS.EmitValue(FilterOrNull, 4);
662 OS.EmitValue(ExceptOrFinally, 4);
Reid Klecknerf12c0302015-06-09 21:42:19 +0000663
664 // The next state unwinds to this state.
665 EnclosingLevel = CurState;
666 CurState++;
667 }
668 }
669}