06a5fb438496cac171d69a05bbd435bc2795cfc6
[oota-llvm.git] / lib / CodeGen / AsmPrinter / WinException.h
1 //===-- WinException.h - Windows Exception Handling ----------*- C++ -*--===//
2 //
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
19 namespace llvm {
20 class Function;
21 class MachineFunction;
22 class MCExpr;
23 class Value;
24 struct WinEHFuncInfo;
25
26 class LLVM_LIBRARY_VISIBILITY WinException : public EHStreamer {
27   /// Per-function flag to indicate if personality info should be emitted.
28   bool shouldEmitPersonality = false;
29
30   /// Per-function flag to indicate if the LSDA should be emitted.
31   bool shouldEmitLSDA = false;
32
33   /// Per-function flag to indicate if frame moves info should be emitted.
34   bool shouldEmitMoves = false;
35
36   /// True if this is a 64-bit target and we should use image relative offsets.
37   bool useImageRel32 = false;
38
39   /// Pointer to the current funclet entry BB.
40   const MachineBasicBlock *CurrentFuncletEntry = nullptr;
41
42   void emitCSpecificHandlerTable(const MachineFunction *MF);
43
44   void emitSEHActionsForRange(WinEHFuncInfo &FuncInfo,
45                               const MCSymbol *BeginLabel,
46                               const MCSymbol *EndLabel, int State);
47
48   /// Emit the EH table data for 32-bit and 64-bit functions using
49   /// the __CxxFrameHandler3 personality.
50   void emitCXXFrameHandler3Table(const MachineFunction *MF);
51
52   /// Emit the EH table data for _except_handler3 and _except_handler4
53   /// personality functions. These are only used on 32-bit and do not use CFI
54   /// tables.
55   void emitExceptHandlerTable(const MachineFunction *MF);
56
57   void computeIP2StateTable(
58       const MachineFunction *MF, WinEHFuncInfo &FuncInfo,
59       SmallVectorImpl<std::pair<const MCExpr *, int>> &IPToStateTable);
60
61   /// Emits the label used with llvm.x86.seh.recoverfp, which is used by
62   /// outlined funclets.
63   void emitEHRegistrationOffsetLabel(const WinEHFuncInfo &FuncInfo,
64                                      StringRef FLinkageName);
65
66   const MCExpr *create32bitRef(const MCSymbol *Value);
67   const MCExpr *create32bitRef(const Value *V);
68   const MCExpr *getLabelPlusOne(const MCSymbol *Label);
69
70   /// Gets the offset that we should use in a table for a stack object with the
71   /// given index. For targets using CFI (Win64, etc), this is relative to the
72   /// established SP at the end of the prologue. For targets without CFI (Win32
73   /// only), it is relative to the frame pointer.
74   int getFrameIndexOffset(int FrameIndex);
75
76 public:
77   //===--------------------------------------------------------------------===//
78   // Main entry points.
79   //
80   WinException(AsmPrinter *A);
81   ~WinException() override;
82
83   /// Emit all exception information that should come after the content.
84   void endModule() override;
85
86   /// Gather pre-function exception information.  Assumes being emitted
87   /// immediately after the function entry point.
88   void beginFunction(const MachineFunction *MF) override;
89
90   /// Gather and emit post-function exception information.
91   void endFunction(const MachineFunction *) override;
92
93   /// \brief Emit target-specific EH funclet machinery.
94   void beginFunclet(const MachineBasicBlock &MBB, MCSymbol *Sym) override;
95   void endFunclet() override;
96 };
97 }
98
99 #endif
100