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 { |
David Majnemer | cde3303 | 2015-03-30 22:58:10 +0000 | [diff] [blame] | 20 | class GlobalValue; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 21 | class MachineFunction; |
David Majnemer | cde3303 | 2015-03-30 22:58:10 +0000 | [diff] [blame] | 22 | class MCExpr; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 23 | |
Reid Kleckner | 60b640b | 2015-05-28 22:47:01 +0000 | [diff] [blame] | 24 | class WinException : public EHStreamer { |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 25 | /// Per-function flag to indicate if personality info should be emitted. |
| 26 | bool shouldEmitPersonality; |
| 27 | |
| 28 | /// Per-function flag to indicate if the LSDA should be emitted. |
| 29 | bool shouldEmitLSDA; |
| 30 | |
| 31 | /// Per-function flag to indicate if frame moves info should be emitted. |
| 32 | bool shouldEmitMoves; |
| 33 | |
Reid Kleckner | 0a57f65 | 2015-01-14 01:05:27 +0000 | [diff] [blame] | 34 | void emitCSpecificHandlerTable(); |
| 35 | |
David Majnemer | cde3303 | 2015-03-30 22:58:10 +0000 | [diff] [blame] | 36 | void emitCXXFrameHandler3Table(const MachineFunction *MF); |
| 37 | |
| 38 | const MCExpr *createImageRel32(const MCSymbol *Value); |
| 39 | const MCExpr *createImageRel32(const GlobalValue *GV); |
Reid Kleckner | 0a57f65 | 2015-01-14 01:05:27 +0000 | [diff] [blame] | 40 | |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 41 | public: |
| 42 | //===--------------------------------------------------------------------===// |
| 43 | // Main entry points. |
| 44 | // |
Reid Kleckner | 60b640b | 2015-05-28 22:47:01 +0000 | [diff] [blame] | 45 | WinException(AsmPrinter *A); |
| 46 | ~WinException() override; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 47 | |
| 48 | /// Emit all exception information that should come after the content. |
| 49 | void endModule() override; |
| 50 | |
| 51 | /// Gather pre-function exception information. Assumes being emitted |
| 52 | /// immediately after the function entry point. |
| 53 | void beginFunction(const MachineFunction *MF) override; |
| 54 | |
| 55 | /// Gather and emit post-function exception information. |
| 56 | void endFunction(const MachineFunction *) override; |
| 57 | }; |
| 58 | } |
| 59 | |
| 60 | #endif |
| 61 | |