LCOV - code coverage report
Current view: top level - lib/CodeGen/AsmPrinter - AsmPrinterHandler.h (source / functions) Hit Total Coverage
Test: llvm-toolchain.info Lines: 4 7 57.1 %
Date: 2018-10-20 13:21:21 Functions: 3 6 50.0 %
Legend: Lines: hit not hit

          Line data    Source code
       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             : 
      15             : #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_ASMPRINTERHANDLER_H
      16             : #define LLVM_LIB_CODEGEN_ASMPRINTER_ASMPRINTERHANDLER_H
      17             : 
      18             : #include "llvm/Support/DataTypes.h"
      19             : 
      20             : namespace llvm {
      21             : 
      22             : class AsmPrinter;
      23             : class MachineBasicBlock;
      24             : class MachineFunction;
      25             : class MachineInstr;
      26             : class MCSymbol;
      27             : 
      28             : typedef MCSymbol *ExceptionSymbolProvider(AsmPrinter *Asm);
      29             : 
      30             : /// Collects and handles AsmPrinter objects required to build debug
      31             : /// or EH information.
      32       51142 : class AsmPrinterHandler {
      33             : public:
      34             :   virtual ~AsmPrinterHandler();
      35             : 
      36             :   /// 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             :   /// Emit all sections that should come after the content.
      41             :   virtual void endModule() = 0;
      42             : 
      43             :   /// Gather pre-function debug information.
      44             :   /// Every beginFunction(MF) call should be followed by an endFunction(MF)
      45             :   /// call.
      46             :   virtual void beginFunction(const MachineFunction *MF) = 0;
      47             : 
      48             :   // Emit any of function marker (like .cfi_endproc). This is called
      49             :   // before endFunction and cannot switch sections.
      50             :   virtual void markFunctionEnd();
      51             : 
      52             :   /// Gather post-function debug information.
      53             :   /// Please note that some AsmPrinter implementations may not call
      54             :   /// beginFunction at all.
      55             :   virtual void endFunction(const MachineFunction *MF) = 0;
      56             : 
      57           0 :   virtual void beginFragment(const MachineBasicBlock *MBB,
      58           0 :                              ExceptionSymbolProvider ESP) {}
      59           0 :   virtual void endFragment() {}
      60             : 
      61             :   /// Emit target-specific EH funclet machinery.
      62         118 :   virtual void beginFunclet(const MachineBasicBlock &MBB,
      63         118 :                             MCSymbol *Sym = nullptr) {}
      64         118 :   virtual void endFunclet() {}
      65             : 
      66             :   /// Process beginning of an instruction.
      67             :   virtual void beginInstruction(const MachineInstr *MI) = 0;
      68             : 
      69             :   /// Process end of an instruction.
      70             :   virtual void endInstruction() = 0;
      71             : };
      72             : } // End of namespace llvm
      73             : 
      74             : #endif

Generated by: LCOV version 1.13