Fix unused variable warning in non-debug builds.
[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   void emitCSpecificHandlerTable(const MachineFunction *MF);
40
41   /// Emit the EH table data for 32-bit and 64-bit functions using
42   /// the __CxxFrameHandler3 personality.
43   void emitCXXFrameHandler3Table(const MachineFunction *MF);
44
45   /// Emit the EH table data for _except_handler3 and _except_handler4
46   /// personality functions. These are only used on 32-bit and do not use CFI
47   /// tables.
48   void emitExceptHandlerTable(const MachineFunction *MF);
49
50   void extendIP2StateTable(const MachineFunction *MF, WinEHFuncInfo &FuncInfo);
51
52   /// Emits the label used with llvm.x86.seh.recoverfp, which is used by
53   /// outlined funclets.
54   void emitEHRegistrationOffsetLabel(const WinEHFuncInfo &FuncInfo,
55                                      StringRef FLinkageName);
56
57   const MCExpr *create32bitRef(const MCSymbol *Value);
58   const MCExpr *create32bitRef(const Value *V);
59
60 public:
61   //===--------------------------------------------------------------------===//
62   // Main entry points.
63   //
64   WinException(AsmPrinter *A);
65   ~WinException() override;
66
67   /// Emit all exception information that should come after the content.
68   void endModule() override;
69
70   /// Gather pre-function exception information.  Assumes being emitted
71   /// immediately after the function entry point.
72   void beginFunction(const MachineFunction *MF) override;
73
74   /// Gather and emit post-function exception information.
75   void endFunction(const MachineFunction *) override;
76 };
77 }
78
79 #endif
80