LCOV - code coverage report
Current view: top level - lib/CodeGen/AsmPrinter - DbgValueHistoryCalculator.h (source / functions) Hit Total Coverage
Test: llvm-toolchain.info Lines: 1 1 100.0 %
Date: 2018-07-13 00:08:38 Functions: 0 0 -
Legend: Lines: hit not hit

          Line data    Source code
       1             : //===- llvm/CodeGen/AsmPrinter/DbgValueHistoryCalculator.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             : #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DBGVALUEHISTORYCALCULATOR_H
      11             : #define LLVM_LIB_CODEGEN_ASMPRINTER_DBGVALUEHISTORYCALCULATOR_H
      12             : 
      13             : #include "llvm/ADT/MapVector.h"
      14             : #include "llvm/ADT/SmallVector.h"
      15             : #include "llvm/IR/DebugInfoMetadata.h"
      16             : #include <utility>
      17             : 
      18             : namespace llvm {
      19             : 
      20             : class DILocalVariable;
      21             : class MachineFunction;
      22             : class MachineInstr;
      23             : class TargetRegisterInfo;
      24             : 
      25             : // For each user variable, keep a list of instruction ranges where this variable
      26             : // is accessible. The variables are listed in order of appearance.
      27       21808 : class DbgValueHistoryMap {
      28             :   // Each instruction range starts with a DBG_VALUE instruction, specifying the
      29             :   // location of a variable, which is assumed to be valid until the end of the
      30             :   // range. If end is not specified, location is valid until the start
      31             :   // instruction of the next instruction range, or until the end of the
      32             :   // function.
      33             : public:
      34             :   using InstrRange = std::pair<const MachineInstr *, const MachineInstr *>;
      35             :   using InstrRanges = SmallVector<InstrRange, 4>;
      36             :   using InlinedVariable =
      37             :       std::pair<const DILocalVariable *, const DILocation *>;
      38             :   using InstrRangesMap = MapVector<InlinedVariable, InstrRanges>;
      39             : 
      40             : private:
      41             :   InstrRangesMap VarInstrRanges;
      42             : 
      43             : public:
      44             :   void startInstrRange(InlinedVariable Var, const MachineInstr &MI);
      45             :   void endInstrRange(InlinedVariable Var, const MachineInstr &MI);
      46             : 
      47             :   // Returns register currently describing @Var. If @Var is currently
      48             :   // unaccessible or is not described by a register, returns 0.
      49             :   unsigned getRegisterForVar(InlinedVariable Var) const;
      50             : 
      51             :   bool empty() const { return VarInstrRanges.empty(); }
      52             :   void clear() { VarInstrRanges.clear(); }
      53             :   InstrRangesMap::const_iterator begin() const { return VarInstrRanges.begin(); }
      54             :   InstrRangesMap::const_iterator end() const { return VarInstrRanges.end(); }
      55             : 
      56             : #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
      57             :   LLVM_DUMP_METHOD void dump() const;
      58             : #endif
      59             : };
      60             : 
      61             : void calculateDbgValueHistory(const MachineFunction *MF,
      62             :                               const TargetRegisterInfo *TRI,
      63             :                               DbgValueHistoryMap &Result);
      64             : 
      65             : } // end namespace llvm
      66             : 
      67             : #endif // LLVM_LIB_CODEGEN_ASMPRINTER_DBGVALUEHISTORYCALCULATOR_H

Generated by: LCOV version 1.13