Timur Iskhodzhanov | 1cd1444 | 2013-12-03 15:10:23 +0000 | [diff] [blame] | 1 | //===-- lib/CodeGen/AsmPrinter/AsmPrinterHandler.h -------------*- 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 a generic interface for AsmPrinter handlers, |
| 11 | // like debug and EH info emitters. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 15 | #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_ASMPRINTERHANDLER_H |
| 16 | #define LLVM_LIB_CODEGEN_ASMPRINTER_ASMPRINTERHANDLER_H |
Timur Iskhodzhanov | 1cd1444 | 2013-12-03 15:10:23 +0000 | [diff] [blame] | 17 | |
| 18 | #include "llvm/Support/DataTypes.h" |
| 19 | |
| 20 | namespace llvm { |
| 21 | |
Amaury Sechet | 7067ad3 | 2016-02-26 20:30:37 +0000 | [diff] [blame] | 22 | class AsmPrinter; |
David Majnemer | a80c151 | 2015-09-29 20:12:33 +0000 | [diff] [blame] | 23 | class MachineBasicBlock; |
Timur Iskhodzhanov | 1cd1444 | 2013-12-03 15:10:23 +0000 | [diff] [blame] | 24 | class MachineFunction; |
| 25 | class MachineInstr; |
| 26 | class MCSymbol; |
| 27 | |
Amaury Sechet | 7067ad3 | 2016-02-26 20:30:37 +0000 | [diff] [blame] | 28 | typedef MCSymbol *ExceptionSymbolProvider(AsmPrinter *Asm); |
| 29 | |
Timur Iskhodzhanov | 1cd1444 | 2013-12-03 15:10:23 +0000 | [diff] [blame] | 30 | /// \brief Collects and handles AsmPrinter objects required to build debug |
| 31 | /// or EH information. |
| 32 | class AsmPrinterHandler { |
| 33 | public: |
Juergen Ributzka | db9ee00 | 2013-12-14 12:23:14 +0000 | [diff] [blame] | 34 | virtual ~AsmPrinterHandler(); |
Timur Iskhodzhanov | 1cd1444 | 2013-12-03 15:10:23 +0000 | [diff] [blame] | 35 | |
| 36 | /// \brief For symbols that have a size designated (e.g. common symbols), |
| 37 | /// this tracks that size. |
| 38 | virtual void setSymbolSize(const MCSymbol *Sym, uint64_t Size) = 0; |
| 39 | |
| 40 | /// \brief Emit all sections that should come after the content. |
| 41 | virtual void endModule() = 0; |
| 42 | |
| 43 | /// \brief Gather pre-function debug information. |
Eric Christopher | 4df1160 | 2013-12-10 00:26:06 +0000 | [diff] [blame] | 44 | /// Every beginFunction(MF) call should be followed by an endFunction(MF) |
| 45 | /// call. |
Timur Iskhodzhanov | 1cd1444 | 2013-12-03 15:10:23 +0000 | [diff] [blame] | 46 | virtual void beginFunction(const MachineFunction *MF) = 0; |
| 47 | |
Rafael Espindola | a600179 | 2015-03-09 18:29:12 +0000 | [diff] [blame] | 48 | // \brief Emit any of function marker (like .cfi_endproc). This is called |
| 49 | // before endFunction and cannot switch sections. |
| 50 | virtual void markFunctionEnd(); |
| 51 | |
Timur Iskhodzhanov | 1cd1444 | 2013-12-03 15:10:23 +0000 | [diff] [blame] | 52 | /// \brief Gather post-function debug information. |
Timur Iskhodzhanov | c05ef04 | 2013-12-03 18:57:43 +0000 | [diff] [blame] | 53 | /// Please note that some AsmPrinter implementations may not call |
Timur Iskhodzhanov | 1cd1444 | 2013-12-03 15:10:23 +0000 | [diff] [blame] | 54 | /// beginFunction at all. |
| 55 | virtual void endFunction(const MachineFunction *MF) = 0; |
| 56 | |
Amaury Sechet | 7067ad3 | 2016-02-26 20:30:37 +0000 | [diff] [blame] | 57 | virtual void beginFragment(const MachineBasicBlock *MBB, |
| 58 | ExceptionSymbolProvider ESP) {} |
| 59 | virtual void endFragment() {} |
| 60 | |
David Majnemer | a80c151 | 2015-09-29 20:12:33 +0000 | [diff] [blame] | 61 | /// \brief Emit target-specific EH funclet machinery. |
| 62 | virtual void beginFunclet(const MachineBasicBlock &MBB, |
| 63 | MCSymbol *Sym = nullptr) {} |
| 64 | virtual void endFunclet() {} |
| 65 | |
Timur Iskhodzhanov | 1cd1444 | 2013-12-03 15:10:23 +0000 | [diff] [blame] | 66 | /// \brief Process beginning of an instruction. |
| 67 | virtual void beginInstruction(const MachineInstr *MI) = 0; |
| 68 | |
| 69 | /// \brief Process end of an instruction. |
| 70 | virtual void endInstruction() = 0; |
| 71 | }; |
| 72 | } // End of namespace llvm |
| 73 | |
| 74 | #endif |