Reid Kleckner | 60b640b | 2015-05-28 22:47:01 +0000 | [diff] [blame] | 1 | //===-- WinException.h - Windows Exception Handling ----------*- C++ -*--===// |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 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 { |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 20 | class Function; |
David Majnemer | cde3303 | 2015-03-30 22:58:10 +0000 | [diff] [blame] | 21 | class GlobalValue; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 22 | class MachineFunction; |
David Majnemer | cde3303 | 2015-03-30 22:58:10 +0000 | [diff] [blame] | 23 | class MCExpr; |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 24 | struct WinEHFuncInfo; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 25 | |
Reid Kleckner | 60b640b | 2015-05-28 22:47:01 +0000 | [diff] [blame] | 26 | class WinException : public EHStreamer { |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 27 | /// Per-function flag to indicate if personality info should be emitted. |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 28 | bool shouldEmitPersonality = false; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 29 | |
| 30 | /// Per-function flag to indicate if the LSDA should be emitted. |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 31 | bool shouldEmitLSDA = false; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 32 | |
| 33 | /// Per-function flag to indicate if frame moves info should be emitted. |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 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; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 38 | |
Reid Kleckner | 0a57f65 | 2015-01-14 01:05:27 +0000 | [diff] [blame] | 39 | void emitCSpecificHandlerTable(); |
| 40 | |
Reid Kleckner | f12c030 | 2015-06-09 21:42:19 +0000 | [diff] [blame] | 41 | /// Emit the EH table data for 32-bit and 64-bit functions using |
| 42 | /// the __CxxFrameHandler3 personality. |
David Majnemer | cde3303 | 2015-03-30 22:58:10 +0000 | [diff] [blame] | 43 | void emitCXXFrameHandler3Table(const MachineFunction *MF); |
| 44 | |
Reid Kleckner | f12c030 | 2015-06-09 21:42:19 +0000 | [diff] [blame] | 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 | |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 50 | void extendIP2StateTable(const MachineFunction *MF, const Function *ParentF, |
| 51 | WinEHFuncInfo &FuncInfo); |
| 52 | |
Reid Kleckner | 399a2fe | 2015-06-30 22:46:59 +0000 | [diff] [blame^] | 53 | /// Emits the label used with llvm.x86.seh.recoverfp, which is used by |
| 54 | /// outlined funclets. |
| 55 | void emitEHRegistrationOffsetLabel(const WinEHFuncInfo &FuncInfo, |
| 56 | StringRef FLinkageName); |
| 57 | |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 58 | const MCExpr *create32bitRef(const MCSymbol *Value); |
| 59 | const MCExpr *create32bitRef(const GlobalValue *GV); |
Reid Kleckner | 0a57f65 | 2015-01-14 01:05:27 +0000 | [diff] [blame] | 60 | |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 61 | public: |
| 62 | //===--------------------------------------------------------------------===// |
| 63 | // Main entry points. |
| 64 | // |
Reid Kleckner | 60b640b | 2015-05-28 22:47:01 +0000 | [diff] [blame] | 65 | WinException(AsmPrinter *A); |
| 66 | ~WinException() override; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 67 | |
| 68 | /// Emit all exception information that should come after the content. |
| 69 | void endModule() override; |
| 70 | |
| 71 | /// Gather pre-function exception information. Assumes being emitted |
| 72 | /// immediately after the function entry point. |
| 73 | void beginFunction(const MachineFunction *MF) override; |
| 74 | |
| 75 | /// Gather and emit post-function exception information. |
| 76 | void endFunction(const MachineFunction *) override; |
| 77 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 78 | } |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 79 | |
| 80 | #endif |
| 81 | |