blob: acb301016910a1fc172ed8ffc36246e9e518ad33 [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;
Joseph Tremoulet3d0fbf12015-10-23 15:06:05 +000021class GlobalValue;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000022class MachineFunction;
David Majnemercde33032015-03-30 22:58:10 +000023class MCExpr;
David Majnemer0ad363e2015-08-18 19:07:12 +000024class Value;
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000025struct WinEHFuncInfo;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000026
Benjamin Kramer286d4662015-07-01 16:18:16 +000027class LLVM_LIBRARY_VISIBILITY WinException : public EHStreamer {
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000028 /// Per-function flag to indicate if personality info should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000029 bool shouldEmitPersonality = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000030
31 /// Per-function flag to indicate if the LSDA should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000032 bool shouldEmitLSDA = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000033
34 /// Per-function flag to indicate if frame moves info should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000035 bool shouldEmitMoves = false;
36
37 /// True if this is a 64-bit target and we should use image relative offsets.
38 bool useImageRel32 = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000039
David Majnemera80c1512015-09-29 20:12:33 +000040 /// Pointer to the current funclet entry BB.
41 const MachineBasicBlock *CurrentFuncletEntry = nullptr;
42
Reid Kleckner94b704c2015-09-09 21:10:03 +000043 void emitCSpecificHandlerTable(const MachineFunction *MF);
Reid Kleckner0a57f652015-01-14 01:05:27 +000044
Reid Klecknerc20276d2015-11-17 21:10:25 +000045 void emitSEHActionsForRange(const WinEHFuncInfo &FuncInfo,
Joseph Tremoulet1e2f0622015-10-13 16:44:30 +000046 const MCSymbol *BeginLabel,
47 const MCSymbol *EndLabel, int State);
Reid Klecknerd880dc72015-10-09 20:39:39 +000048
Reid Klecknerf12c0302015-06-09 21:42:19 +000049 /// Emit the EH table data for 32-bit and 64-bit functions using
50 /// the __CxxFrameHandler3 personality.
David Majnemercde33032015-03-30 22:58:10 +000051 void emitCXXFrameHandler3Table(const MachineFunction *MF);
52
Reid Klecknerf12c0302015-06-09 21:42:19 +000053 /// Emit the EH table data for _except_handler3 and _except_handler4
54 /// personality functions. These are only used on 32-bit and do not use CFI
55 /// tables.
56 void emitExceptHandlerTable(const MachineFunction *MF);
57
Joseph Tremoulet28c89bb2015-10-13 20:18:27 +000058 void emitCLRExceptionTable(const MachineFunction *MF);
59
Reid Klecknerc71d6272015-09-28 23:56:30 +000060 void computeIP2StateTable(
Reid Klecknerc20276d2015-11-17 21:10:25 +000061 const MachineFunction *MF, const WinEHFuncInfo &FuncInfo,
Reid Klecknerc71d6272015-09-28 23:56:30 +000062 SmallVectorImpl<std::pair<const MCExpr *, int>> &IPToStateTable);
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000063
Reid Kleckner399a2fe2015-06-30 22:46:59 +000064 /// Emits the label used with llvm.x86.seh.recoverfp, which is used by
65 /// outlined funclets.
66 void emitEHRegistrationOffsetLabel(const WinEHFuncInfo &FuncInfo,
67 StringRef FLinkageName);
68
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000069 const MCExpr *create32bitRef(const MCSymbol *Value);
Joseph Tremoulet3d0fbf12015-10-23 15:06:05 +000070 const MCExpr *create32bitRef(const GlobalValue *GV);
Joseph Tremoulet1e2f0622015-10-13 16:44:30 +000071 const MCExpr *getLabelPlusOne(const MCSymbol *Label);
Joseph Tremoulet28c89bb2015-10-13 20:18:27 +000072 const MCExpr *getOffset(const MCSymbol *OffsetOf, const MCSymbol *OffsetFrom);
73 const MCExpr *getOffsetPlusOne(const MCSymbol *OffsetOf,
74 const MCSymbol *OffsetFrom);
Reid Kleckner0a57f652015-01-14 01:05:27 +000075
Reid Kleckner70bf6bb2015-10-07 21:13:15 +000076 /// Gets the offset that we should use in a table for a stack object with the
77 /// given index. For targets using CFI (Win64, etc), this is relative to the
78 /// established SP at the end of the prologue. For targets without CFI (Win32
79 /// only), it is relative to the frame pointer.
Reid Klecknerc20276d2015-11-17 21:10:25 +000080 int getFrameIndexOffset(int FrameIndex, const WinEHFuncInfo &FuncInfo);
Reid Kleckner70bf6bb2015-10-07 21:13:15 +000081
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000082public:
83 //===--------------------------------------------------------------------===//
84 // Main entry points.
85 //
Reid Kleckner60b640b2015-05-28 22:47:01 +000086 WinException(AsmPrinter *A);
87 ~WinException() override;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000088
89 /// Emit all exception information that should come after the content.
90 void endModule() override;
91
92 /// Gather pre-function exception information. Assumes being emitted
93 /// immediately after the function entry point.
94 void beginFunction(const MachineFunction *MF) override;
95
96 /// Gather and emit post-function exception information.
97 void endFunction(const MachineFunction *) override;
David Majnemera80c1512015-09-29 20:12:33 +000098
99 /// \brief Emit target-specific EH funclet machinery.
100 void beginFunclet(const MachineBasicBlock &MBB, MCSymbol *Sym) override;
101 void endFunclet() override;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +0000102};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000103}
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +0000104
105#endif
106