blob: 478899b79da9219c39a49fce076ef4065895d12a [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//
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
19namespace llvm {
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000020class Function;
David Majnemercde33032015-03-30 22:58:10 +000021class GlobalValue;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000022class MachineFunction;
David Majnemercde33032015-03-30 22:58:10 +000023class MCExpr;
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000024struct WinEHFuncInfo;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000025
Reid Kleckner60b640b2015-05-28 22:47:01 +000026class WinException : public EHStreamer {
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000027 /// Per-function flag to indicate if personality info should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000028 bool shouldEmitPersonality = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000029
30 /// Per-function flag to indicate if the LSDA should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000031 bool shouldEmitLSDA = false;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000032
33 /// Per-function flag to indicate if frame moves info should be emitted.
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000034 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 Abdulrasool0fba7b52014-09-01 23:48:34 +000038
Reid Kleckner0a57f652015-01-14 01:05:27 +000039 void emitCSpecificHandlerTable();
40
David Majnemercde33032015-03-30 22:58:10 +000041 void emitCXXFrameHandler3Table(const MachineFunction *MF);
42
Reid Kleckner1d3d4ad2015-05-29 17:00:57 +000043 void extendIP2StateTable(const MachineFunction *MF, const Function *ParentF,
44 WinEHFuncInfo &FuncInfo);
45
46 const MCExpr *create32bitRef(const MCSymbol *Value);
47 const MCExpr *create32bitRef(const GlobalValue *GV);
Reid Kleckner0a57f652015-01-14 01:05:27 +000048
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000049public:
50 //===--------------------------------------------------------------------===//
51 // Main entry points.
52 //
Reid Kleckner60b640b2015-05-28 22:47:01 +000053 WinException(AsmPrinter *A);
54 ~WinException() override;
Saleem Abdulrasool0fba7b52014-09-01 23:48:34 +000055
56 /// Emit all exception information that should come after the content.
57 void endModule() override;
58
59 /// Gather pre-function exception information. Assumes being emitted
60 /// immediately after the function entry point.
61 void beginFunction(const MachineFunction *MF) override;
62
63 /// Gather and emit post-function exception information.
64 void endFunction(const MachineFunction *) override;
65};
66}
67
68#endif
69