diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:01:25 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:01:25 +0000 | 
| commit | d8e91e46262bc44006913e6796843909f1ac7bcd (patch) | |
| tree | 7d0c143d9b38190e0fa0180805389da22cd834c5 /lib/CodeGen/AsmPrinter/DwarfFile.h | |
| parent | b7eb8e35e481a74962664b63dfb09483b200209a (diff) | |
Notes
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfFile.h')
| -rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfFile.h | 69 | 
1 files changed, 64 insertions, 5 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfFile.h b/lib/CodeGen/AsmPrinter/DwarfFile.h index 8dfbc4e1c434..51acca8c1e53 100644 --- a/lib/CodeGen/AsmPrinter/DwarfFile.h +++ b/lib/CodeGen/AsmPrinter/DwarfFile.h @@ -24,12 +24,44 @@  namespace llvm {  class AsmPrinter; +class DbgEntity;  class DbgVariable; +class DbgLabel;  class DwarfCompileUnit;  class DwarfUnit;  class LexicalScope;  class MCSection; +// Data structure to hold a range for range lists. +class RangeSpan { +public: +  RangeSpan(MCSymbol *S, MCSymbol *E) : Start(S), End(E) {} +  const MCSymbol *getStart() const { return Start; } +  const MCSymbol *getEnd() const { return End; } +  void setEnd(const MCSymbol *E) { End = E; } + +private: +  const MCSymbol *Start, *End; +}; + +class RangeSpanList { +private: +  // Index for locating within the debug_range section this particular span. +  MCSymbol *RangeSym; +  const DwarfCompileUnit *CU; +  // List of ranges. +  SmallVector<RangeSpan, 2> Ranges; + +public: +  RangeSpanList(MCSymbol *Sym, const DwarfCompileUnit &CU, +                SmallVector<RangeSpan, 2> Ranges) +      : RangeSym(Sym), CU(&CU), Ranges(std::move(Ranges)) {} +  MCSymbol *getSym() const { return RangeSym; } +  const DwarfCompileUnit &getCU() const { return *CU; } +  const SmallVectorImpl<RangeSpan> &getRanges() const { return Ranges; } +  void addRange(RangeSpan Range) { Ranges.push_back(Range); } +}; +  class DwarfFile {    // Target of Dwarf emission, used for sizing of abbreviations.    AsmPrinter *Asm; @@ -44,6 +76,10 @@ class DwarfFile {    DwarfStringPool StrPool; +  // List of range lists for a given compile unit, separate from the ranges for +  // the CU itself. +  SmallVector<RangeSpanList, 1> CURangeLists; +    /// DWARF v5: The symbol that designates the start of the contribution to    /// the string offsets table. The contribution is shared by all units.    MCSymbol *StringOffsetsStartSym = nullptr; @@ -52,6 +88,10 @@ class DwarfFile {    /// The table is shared by all units.    MCSymbol *RnglistsTableBaseSym = nullptr; +  /// DWARF v5: The symbol that designates the base of the locations list table. +  /// The table is shared by all units. +  MCSymbol *LoclistsTableBaseSym = nullptr; +    /// The variables of a lexical scope.    struct ScopeVars {      /// We need to sort Args by ArgNo and check for duplicates. This could also @@ -62,9 +102,13 @@ class DwarfFile {    /// Collection of DbgVariables of each lexical scope.    DenseMap<LexicalScope *, ScopeVars> ScopeVariables; +  /// Collection of DbgLabels of each lexical scope. +  using LabelList = SmallVector<DbgLabel *, 4>; +  DenseMap<LexicalScope *, LabelList> ScopeLabels; +    // Collection of abstract subprogram DIEs.    DenseMap<const MDNode *, DIE *> AbstractSPDies; -  DenseMap<const MDNode *, std::unique_ptr<DbgVariable>> AbstractVariables; +  DenseMap<const DINode *, std::unique_ptr<DbgEntity>> AbstractEntities;    /// Maps MDNodes for type system with the corresponding DIEs. These DIEs can    /// be shared across CUs, that is why we keep the map here instead @@ -78,6 +122,14 @@ public:      return CUs;    } +  std::pair<uint32_t, RangeSpanList *> addRange(const DwarfCompileUnit &CU, +                                                SmallVector<RangeSpan, 2> R); + +  /// getRangeLists - Get the vector of range lists. +  const SmallVectorImpl<RangeSpanList> &getRangeLists() const { +    return CURangeLists; +  } +    /// Compute the size and offset of a DIE given an incoming Offset.    unsigned computeSizeAndOffset(DIE &Die, unsigned Offset); @@ -112,26 +164,33 @@ public:    DwarfStringPool &getStringPool() { return StrPool; }    MCSymbol *getStringOffsetsStartSym() const { return StringOffsetsStartSym; } -    void setStringOffsetsStartSym(MCSymbol *Sym) { StringOffsetsStartSym = Sym; }    MCSymbol *getRnglistsTableBaseSym() const { return RnglistsTableBaseSym; } -    void setRnglistsTableBaseSym(MCSymbol *Sym) { RnglistsTableBaseSym = Sym; } +  MCSymbol *getLoclistsTableBaseSym() const { return LoclistsTableBaseSym; } +  void setLoclistsTableBaseSym(MCSymbol *Sym) { LoclistsTableBaseSym = Sym; } +    /// \returns false if the variable was merged with a previous one.    bool addScopeVariable(LexicalScope *LS, DbgVariable *Var); +  void addScopeLabel(LexicalScope *LS, DbgLabel *Label); +    DenseMap<LexicalScope *, ScopeVars> &getScopeVariables() {      return ScopeVariables;    } +  DenseMap<LexicalScope *, LabelList> &getScopeLabels() { +    return ScopeLabels; +  } +    DenseMap<const MDNode *, DIE *> &getAbstractSPDies() {      return AbstractSPDies;    } -  DenseMap<const MDNode *, std::unique_ptr<DbgVariable>> &getAbstractVariables() { -    return AbstractVariables; +  DenseMap<const DINode *, std::unique_ptr<DbgEntity>> &getAbstractEntities() { +    return AbstractEntities;    }    void insertDIE(const MDNode *TypeMD, DIE *Die) {  | 
