blob: ded00d5cf3979a74d25bd839d2ddc4cbb5311dce [file] [log] [blame]
Reid Kleckner60b640b2015-05-28 22:47:01 +00001//===-- WinException.h - Windows Exception Handling ----------*- C++ -*--===//
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +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 windows exception info into asm files.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_WIN64EXCEPTION_H
15#define LLVM_LIB_CODEGEN_ASMPRINTER_WIN64EXCEPTION_H
16
17#include "EHStreamer.h"
18
19namespace llvm {
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000020class Function;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000021class MachineFunction;
David Majnemercde33032015-03-30 22:58:10 +000022class MCExpr;
David Majnemer0ad363e2015-08-18 19:07:12 +000023class Value;
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000024struct WinEHFuncInfo;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000025
Benjamin Kramer286d4662015-07-01 16:18:16 +000026class LLVM_LIBRARY_VISIBILITY WinException : public EHStreamer {
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000027 /// Per-function flag to indicate if personality info should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000028 bool shouldEmitPersonality = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000029
30 /// Per-function flag to indicate if the LSDA should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000031 bool shouldEmitLSDA = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000032
33 /// Per-function flag to indicate if frame moves info should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000034 bool shouldEmitMoves = false;
35
36 /// True if this is a 64-bit target and we should use image relative offsets.
37 bool useImageRel32 = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000038
David Majnemera80c1512015-09-29 20:12:33 +000039 /// Pointer to the current funclet entry BB.
40 const MachineBasicBlock *CurrentFuncletEntry = nullptr;
41
Reid Kleckner94b704c2015-09-09 21:10:03 +000042 void emitCSpecificHandlerTable(const MachineFunction *MF);
Reid Kleckner0a57f652015-01-14 01:05:27 +000043
Reid Klecknerd880dc72015-10-09 20:39:39 +000044 void emitSEHActionsForRange(WinEHFuncInfo &FuncInfo, MCSymbol *BeginLabel,
45 MCSymbol *EndLabel, int State);
46
Reid Klecknerf12c0302015-06-09 21:42:19 +000047 /// Emit the EH table data for 32-bit and 64-bit functions using
48 /// the __CxxFrameHandler3 personality.
David Majnemercde33032015-03-30 22:58:10 +000049 void emitCXXFrameHandler3Table(const MachineFunction *MF);
50
Reid Klecknerf12c0302015-06-09 21:42:19 +000051 /// Emit the EH table data for _except_handler3 and _except_handler4
52 /// personality functions. These are only used on 32-bit and do not use CFI
53 /// tables.
54 void emitExceptHandlerTable(const MachineFunction *MF);
55
Reid Klecknerc71d6272015-09-28 23:56:30 +000056 void computeIP2StateTable(
57 const MachineFunction *MF, WinEHFuncInfo &FuncInfo,
58 SmallVectorImpl<std::pair<const MCExpr *, int>> &IPToStateTable);
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000059
Reid Kleckner399a2fe2015-06-30 22:46:59 +000060 /// Emits the label used with llvm.x86.seh.recoverfp, which is used by
61 /// outlined funclets.
62 void emitEHRegistrationOffsetLabel(const WinEHFuncInfo &FuncInfo,
63 StringRef FLinkageName);
64
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000065 const MCExpr *create32bitRef(const MCSymbol *Value);
David Majnemer0ad363e2015-08-18 19:07:12 +000066 const MCExpr *create32bitRef(const Value *V);
Reid Klecknerc71d6272015-09-28 23:56:30 +000067 const MCExpr *getLabelPlusOne(MCSymbol *Label);
Reid Kleckner0a57f652015-01-14 01:05:27 +000068
Reid Kleckner70bf6bb2015-10-07 21:13:15 +000069 /// Gets the offset that we should use in a table for a stack object with the
70 /// given index. For targets using CFI (Win64, etc), this is relative to the
71 /// established SP at the end of the prologue. For targets without CFI (Win32
72 /// only), it is relative to the frame pointer.
73 int getFrameIndexOffset(int FrameIndex);
74
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000075public:
76 //===--------------------------------------------------------------------===//
77 // Main entry points.
78 //
Reid Kleckner60b640b2015-05-28 22:47:01 +000079 WinException(AsmPrinter *A);
80 ~WinException() override;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000081
82 /// Emit all exception information that should come after the content.
83 void endModule() override;
84
85 /// Gather pre-function exception information. Assumes being emitted
86 /// immediately after the function entry point.
87 void beginFunction(const MachineFunction *MF) override;
88
89 /// Gather and emit post-function exception information.
90 void endFunction(const MachineFunction *) override;
David Majnemera80c1512015-09-29 20:12:33 +000091
92 /// \brief Emit target-specific EH funclet machinery.
93 void beginFunclet(const MachineBasicBlock &MBB, MCSymbol *Sym) override;
94 void endFunclet() override;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000095};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000096}
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000097
98#endif
99