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 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file contains support for writing windows exception info into asm files. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_WIN64EXCEPTION_H |
| 14 | #define LLVM_LIB_CODEGEN_ASMPRINTER_WIN64EXCEPTION_H |
| 15 | |
| 16 | #include "EHStreamer.h" |
| 17 | |
| 18 | namespace llvm { |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 19 | class Function; |
Joseph Tremoulet | 3d0fbf1 | 2015-10-23 15:06:05 +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; |
Reid Kleckner | 9264736 | 2016-12-28 19:05:12 +0000 | [diff] [blame] | 23 | class MCSection; |
David Majnemer | 0ad363e | 2015-08-18 19:07:12 +0000 | [diff] [blame] | 24 | class Value; |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 25 | struct WinEHFuncInfo; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 26 | |
Benjamin Kramer | 286d466 | 2015-07-01 16:18:16 +0000 | [diff] [blame] | 27 | class LLVM_LIBRARY_VISIBILITY WinException : public EHStreamer { |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 28 | /// Per-function flag to indicate if personality info should be emitted. |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 29 | bool shouldEmitPersonality = false; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 30 | |
| 31 | /// Per-function flag to indicate if the LSDA should be emitted. |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 32 | bool shouldEmitLSDA = false; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 33 | |
| 34 | /// Per-function flag to indicate if frame moves info should be emitted. |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 35 | 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 Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 39 | |
Sanjin Sijaric | 96f2ea3 | 2018-10-27 06:13:06 +0000 | [diff] [blame] | 40 | /// True if we are generating exception handling on Windows for ARM64. |
| 41 | bool isAArch64 = false; |
| 42 | |
David Majnemer | a80c151 | 2015-09-29 20:12:33 +0000 | [diff] [blame] | 43 | /// Pointer to the current funclet entry BB. |
| 44 | const MachineBasicBlock *CurrentFuncletEntry = nullptr; |
| 45 | |
Reid Kleckner | 9264736 | 2016-12-28 19:05:12 +0000 | [diff] [blame] | 46 | /// The section of the last funclet start. |
| 47 | MCSection *CurrentFuncletTextSection = nullptr; |
| 48 | |
Reid Kleckner | 94b704c | 2015-09-09 21:10:03 +0000 | [diff] [blame] | 49 | void emitCSpecificHandlerTable(const MachineFunction *MF); |
Reid Kleckner | 0a57f65 | 2015-01-14 01:05:27 +0000 | [diff] [blame] | 50 | |
Reid Kleckner | c20276d | 2015-11-17 21:10:25 +0000 | [diff] [blame] | 51 | void emitSEHActionsForRange(const WinEHFuncInfo &FuncInfo, |
Joseph Tremoulet | 1e2f062 | 2015-10-13 16:44:30 +0000 | [diff] [blame] | 52 | const MCSymbol *BeginLabel, |
| 53 | const MCSymbol *EndLabel, int State); |
Reid Kleckner | d880dc7 | 2015-10-09 20:39:39 +0000 | [diff] [blame] | 54 | |
Reid Kleckner | f12c030 | 2015-06-09 21:42:19 +0000 | [diff] [blame] | 55 | /// Emit the EH table data for 32-bit and 64-bit functions using |
| 56 | /// the __CxxFrameHandler3 personality. |
David Majnemer | cde3303 | 2015-03-30 22:58:10 +0000 | [diff] [blame] | 57 | void emitCXXFrameHandler3Table(const MachineFunction *MF); |
| 58 | |
Reid Kleckner | f12c030 | 2015-06-09 21:42:19 +0000 | [diff] [blame] | 59 | /// Emit the EH table data for _except_handler3 and _except_handler4 |
| 60 | /// personality functions. These are only used on 32-bit and do not use CFI |
| 61 | /// tables. |
| 62 | void emitExceptHandlerTable(const MachineFunction *MF); |
| 63 | |
Joseph Tremoulet | 28c89bb | 2015-10-13 20:18:27 +0000 | [diff] [blame] | 64 | void emitCLRExceptionTable(const MachineFunction *MF); |
| 65 | |
Reid Kleckner | c71d627 | 2015-09-28 23:56:30 +0000 | [diff] [blame] | 66 | void computeIP2StateTable( |
Reid Kleckner | c20276d | 2015-11-17 21:10:25 +0000 | [diff] [blame] | 67 | const MachineFunction *MF, const WinEHFuncInfo &FuncInfo, |
Reid Kleckner | c71d627 | 2015-09-28 23:56:30 +0000 | [diff] [blame] | 68 | SmallVectorImpl<std::pair<const MCExpr *, int>> &IPToStateTable); |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 69 | |
Mandeep Singh Grang | 436735c | 2019-01-16 00:37:13 +0000 | [diff] [blame] | 70 | /// Emits the label used with llvm.eh.recoverfp, which is used by |
Reid Kleckner | 399a2fe | 2015-06-30 22:46:59 +0000 | [diff] [blame] | 71 | /// outlined funclets. |
| 72 | void emitEHRegistrationOffsetLabel(const WinEHFuncInfo &FuncInfo, |
| 73 | StringRef FLinkageName); |
| 74 | |
Reid Kleckner | 1d3d4ad | 2015-05-29 17:00:57 +0000 | [diff] [blame] | 75 | const MCExpr *create32bitRef(const MCSymbol *Value); |
Joseph Tremoulet | 3d0fbf1 | 2015-10-23 15:06:05 +0000 | [diff] [blame] | 76 | const MCExpr *create32bitRef(const GlobalValue *GV); |
Sanjin Sijaric | 96f2ea3 | 2018-10-27 06:13:06 +0000 | [diff] [blame] | 77 | const MCExpr *getLabel(const MCSymbol *Label); |
Joseph Tremoulet | 28c89bb | 2015-10-13 20:18:27 +0000 | [diff] [blame] | 78 | const MCExpr *getOffset(const MCSymbol *OffsetOf, const MCSymbol *OffsetFrom); |
| 79 | const MCExpr *getOffsetPlusOne(const MCSymbol *OffsetOf, |
| 80 | const MCSymbol *OffsetFrom); |
Reid Kleckner | 0a57f65 | 2015-01-14 01:05:27 +0000 | [diff] [blame] | 81 | |
Reid Kleckner | 70bf6bb | 2015-10-07 21:13:15 +0000 | [diff] [blame] | 82 | /// Gets the offset that we should use in a table for a stack object with the |
| 83 | /// given index. For targets using CFI (Win64, etc), this is relative to the |
| 84 | /// established SP at the end of the prologue. For targets without CFI (Win32 |
| 85 | /// only), it is relative to the frame pointer. |
Reid Kleckner | c20276d | 2015-11-17 21:10:25 +0000 | [diff] [blame] | 86 | int getFrameIndexOffset(int FrameIndex, const WinEHFuncInfo &FuncInfo); |
Reid Kleckner | 70bf6bb | 2015-10-07 21:13:15 +0000 | [diff] [blame] | 87 | |
Eli Friedman | 0b61d22 | 2019-05-03 00:10:45 +0000 | [diff] [blame] | 88 | void endFuncletImpl(); |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 89 | public: |
| 90 | //===--------------------------------------------------------------------===// |
| 91 | // Main entry points. |
| 92 | // |
Reid Kleckner | 60b640b | 2015-05-28 22:47:01 +0000 | [diff] [blame] | 93 | WinException(AsmPrinter *A); |
| 94 | ~WinException() override; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 95 | |
| 96 | /// Emit all exception information that should come after the content. |
| 97 | void endModule() override; |
| 98 | |
| 99 | /// Gather pre-function exception information. Assumes being emitted |
| 100 | /// immediately after the function entry point. |
| 101 | void beginFunction(const MachineFunction *MF) override; |
| 102 | |
Eli Friedman | 0b61d22 | 2019-05-03 00:10:45 +0000 | [diff] [blame] | 103 | void markFunctionEnd() override; |
| 104 | |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 105 | /// Gather and emit post-function exception information. |
| 106 | void endFunction(const MachineFunction *) override; |
David Majnemer | a80c151 | 2015-09-29 20:12:33 +0000 | [diff] [blame] | 107 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 108 | /// Emit target-specific EH funclet machinery. |
David Majnemer | a80c151 | 2015-09-29 20:12:33 +0000 | [diff] [blame] | 109 | void beginFunclet(const MachineBasicBlock &MBB, MCSymbol *Sym) override; |
| 110 | void endFunclet() override; |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 111 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 112 | } |
Saleem Abdulrasool | 0fba7b5 | 2014-09-01 23:48:34 +0000 | [diff] [blame] | 113 | |
| 114 | #endif |
| 115 | |