blob: 8bd5d1bc6d2a28a4e2b22dde661052a95bb7e6a5 [file] [log] [blame]
Reid Kleckner60b640b2015-05-28 22:47:01 +00001//===-- WinException.h - Windows Exception Handling ----------*- C++ -*--===//
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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 Abdulrasool0fba7b52014-09-01 23:48:34 +00006//
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
18namespace llvm {
Joseph Tremoulet3d0fbf12015-10-23 15:06:05 +000019class GlobalValue;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000020class MachineFunction;
David Majnemercde33032015-03-30 22:58:10 +000021class MCExpr;
Reid Kleckner92647362016-12-28 19:05:12 +000022class MCSection;
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000023struct WinEHFuncInfo;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000024
Benjamin Kramer286d4662015-07-01 16:18:16 +000025class LLVM_LIBRARY_VISIBILITY WinException : public EHStreamer {
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000026 /// Per-function flag to indicate if personality info should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000027 bool shouldEmitPersonality = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000028
29 /// Per-function flag to indicate if the LSDA should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000030 bool shouldEmitLSDA = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000031
32 /// Per-function flag to indicate if frame moves info should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000033 bool shouldEmitMoves = false;
34
35 /// True if this is a 64-bit target and we should use image relative offsets.
36 bool useImageRel32 = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000037
Sanjin Sijaric96f2ea32018-10-27 06:13:06 +000038 /// True if we are generating exception handling on Windows for ARM64.
39 bool isAArch64 = false;
40
David Majnemera80c1512015-09-29 20:12:33 +000041 /// Pointer to the current funclet entry BB.
42 const MachineBasicBlock *CurrentFuncletEntry = nullptr;
43
Reid Kleckner92647362016-12-28 19:05:12 +000044 /// The section of the last funclet start.
45 MCSection *CurrentFuncletTextSection = nullptr;
46
Reid Kleckner94b704c2015-09-09 21:10:03 +000047 void emitCSpecificHandlerTable(const MachineFunction *MF);
Reid Kleckner0a57f652015-01-14 01:05:27 +000048
Reid Klecknerc20276d2015-11-17 21:10:25 +000049 void emitSEHActionsForRange(const WinEHFuncInfo &FuncInfo,
Joseph Tremoulet1e2f0622015-10-13 16:44:30 +000050 const MCSymbol *BeginLabel,
51 const MCSymbol *EndLabel, int State);
Reid Klecknerd880dc72015-10-09 20:39:39 +000052
Reid Klecknerf12c0302015-06-09 21:42:19 +000053 /// Emit the EH table data for 32-bit and 64-bit functions using
54 /// the __CxxFrameHandler3 personality.
David Majnemercde33032015-03-30 22:58:10 +000055 void emitCXXFrameHandler3Table(const MachineFunction *MF);
56
Reid Klecknerf12c0302015-06-09 21:42:19 +000057 /// Emit the EH table data for _except_handler3 and _except_handler4
58 /// personality functions. These are only used on 32-bit and do not use CFI
59 /// tables.
60 void emitExceptHandlerTable(const MachineFunction *MF);
61
Joseph Tremoulet28c89bb2015-10-13 20:18:27 +000062 void emitCLRExceptionTable(const MachineFunction *MF);
63
Reid Klecknerc71d6272015-09-28 23:56:30 +000064 void computeIP2StateTable(
Reid Klecknerc20276d2015-11-17 21:10:25 +000065 const MachineFunction *MF, const WinEHFuncInfo &FuncInfo,
Reid Klecknerc71d6272015-09-28 23:56:30 +000066 SmallVectorImpl<std::pair<const MCExpr *, int>> &IPToStateTable);
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000067
Mandeep Singh Grang436735c2019-01-16 00:37:13 +000068 /// Emits the label used with llvm.eh.recoverfp, which is used by
Reid Kleckner399a2fe2015-06-30 22:46:59 +000069 /// outlined funclets.
70 void emitEHRegistrationOffsetLabel(const WinEHFuncInfo &FuncInfo,
71 StringRef FLinkageName);
72
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000073 const MCExpr *create32bitRef(const MCSymbol *Value);
Joseph Tremoulet3d0fbf12015-10-23 15:06:05 +000074 const MCExpr *create32bitRef(const GlobalValue *GV);
Sanjin Sijaric96f2ea32018-10-27 06:13:06 +000075 const MCExpr *getLabel(const MCSymbol *Label);
Joseph Tremoulet28c89bb2015-10-13 20:18:27 +000076 const MCExpr *getOffset(const MCSymbol *OffsetOf, const MCSymbol *OffsetFrom);
77 const MCExpr *getOffsetPlusOne(const MCSymbol *OffsetOf,
78 const MCSymbol *OffsetFrom);
Reid Kleckner0a57f652015-01-14 01:05:27 +000079
Reid Kleckner70bf6bb2015-10-07 21:13:15 +000080 /// Gets the offset that we should use in a table for a stack object with the
81 /// given index. For targets using CFI (Win64, etc), this is relative to the
82 /// established SP at the end of the prologue. For targets without CFI (Win32
83 /// only), it is relative to the frame pointer.
Reid Klecknerc20276d2015-11-17 21:10:25 +000084 int getFrameIndexOffset(int FrameIndex, const WinEHFuncInfo &FuncInfo);
Reid Kleckner70bf6bb2015-10-07 21:13:15 +000085
Eli Friedman0b61d222019-05-03 00:10:45 +000086 void endFuncletImpl();
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000087public:
88 //===--------------------------------------------------------------------===//
89 // Main entry points.
90 //
Reid Kleckner60b640b2015-05-28 22:47:01 +000091 WinException(AsmPrinter *A);
92 ~WinException() override;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000093
94 /// Emit all exception information that should come after the content.
95 void endModule() override;
96
97 /// Gather pre-function exception information. Assumes being emitted
98 /// immediately after the function entry point.
99 void beginFunction(const MachineFunction *MF) override;
100
Eli Friedman0b61d222019-05-03 00:10:45 +0000101 void markFunctionEnd() override;
102
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +0000103 /// Gather and emit post-function exception information.
104 void endFunction(const MachineFunction *) override;
David Majnemera80c1512015-09-29 20:12:33 +0000105
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000106 /// Emit target-specific EH funclet machinery.
David Majnemera80c1512015-09-29 20:12:33 +0000107 void beginFunclet(const MachineBasicBlock &MBB, MCSymbol *Sym) override;
108 void endFunclet() override;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +0000109};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000110}
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +0000111
112#endif
113