blob: 28f119e359661f4d2ca89eaeddb9c716d2164f0f [file] [log] [blame]
Adrian McCarthydb2736d2018-01-09 23:49:30 +00001//===-- WinCFGuard.h - Windows Control Flow Guard Handling ----*- C++ -*--===//
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_WINCFGUARD_H
15#define LLVM_LIB_CODEGEN_ASMPRINTER_WINCFGUARD_H
16
Yonghong Song61b189e2018-12-18 23:10:17 +000017#include "llvm/CodeGen/AsmPrinterHandler.h"
Adrian McCarthydb2736d2018-01-09 23:49:30 +000018#include "llvm/Support/Compiler.h"
19
20namespace llvm {
21
22class LLVM_LIBRARY_VISIBILITY WinCFGuard : public AsmPrinterHandler {
23 /// Target of directive emission.
24 AsmPrinter *Asm;
25
26public:
27 WinCFGuard(AsmPrinter *A);
28 ~WinCFGuard() override;
29
30 void setSymbolSize(const MCSymbol *Sym, uint64_t Size) override {}
31
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000032 /// Emit the Control Flow Guard function ID table
Adrian McCarthydb2736d2018-01-09 23:49:30 +000033 void endModule() override;
34
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000035 /// Gather pre-function debug information.
Adrian McCarthydb2736d2018-01-09 23:49:30 +000036 /// Every beginFunction(MF) call should be followed by an endFunction(MF)
37 /// call.
38 void beginFunction(const MachineFunction *MF) override {}
39
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000040 /// Gather post-function debug information.
Adrian McCarthydb2736d2018-01-09 23:49:30 +000041 /// Please note that some AsmPrinter implementations may not call
42 /// beginFunction at all.
43 void endFunction(const MachineFunction *MF) override {}
44
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000045 /// Process beginning of an instruction.
Adrian McCarthydb2736d2018-01-09 23:49:30 +000046 void beginInstruction(const MachineInstr *MI) override {}
47
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000048 /// Process end of an instruction.
Adrian McCarthydb2736d2018-01-09 23:49:30 +000049 void endInstruction() override {}
50};
51
52} // namespace llvm
53
54#endif