David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/DwarfCompileUnit.h - Dwarf Compile Unit ---*- 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 dwarf compile unit. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H |
| 15 | #define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H |
| 16 | |
| 17 | #include "DwarfUnit.h" |
Zachary Turner | 264b5d9 | 2017-06-07 03:48:56 +0000 | [diff] [blame^] | 18 | #include "llvm/BinaryFormat/Dwarf.h" |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 19 | #include "llvm/IR/DebugInfo.h" |
| 20 | |
| 21 | namespace llvm { |
| 22 | |
Mehdi Amini | b550cb1 | 2016-04-18 09:17:29 +0000 | [diff] [blame] | 23 | class StringRef; |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 24 | class AsmPrinter; |
| 25 | class DIE; |
| 26 | class DwarfDebug; |
| 27 | class DwarfFile; |
| 28 | class MCSymbol; |
David Blaikie | 9c65b13 | 2014-10-08 22:20:02 +0000 | [diff] [blame] | 29 | class LexicalScope; |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 30 | |
David Blaikie | c0bb21f | 2017-04-22 02:18:00 +0000 | [diff] [blame] | 31 | class DwarfCompileUnit final : public DwarfUnit { |
Peter Collingbourne | 7c384cc | 2016-02-11 19:57:46 +0000 | [diff] [blame] | 32 | /// A numeric ID unique among all CUs in the module |
| 33 | unsigned UniqueID; |
| 34 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 35 | /// The attribute index of DW_AT_stmt_list in the compile unit DIE, avoiding |
| 36 | /// the need to search for it in applyStmtList. |
Duncan P. N. Exon Smith | 4fb1f9c | 2015-06-25 23:46:41 +0000 | [diff] [blame] | 37 | DIE::value_iterator StmtListValue; |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 38 | |
David Blaikie | 7cbf58a | 2014-11-01 18:18:07 +0000 | [diff] [blame] | 39 | /// Skeleton unit associated with this unit. |
David Blaikie | a5437b6 | 2014-11-01 19:26:05 +0000 | [diff] [blame] | 40 | DwarfCompileUnit *Skeleton; |
David Blaikie | 7cbf58a | 2014-11-01 18:18:07 +0000 | [diff] [blame] | 41 | |
David Blaikie | f4bdc31 | 2014-11-02 01:21:40 +0000 | [diff] [blame] | 42 | /// The start of the unit within its section. |
| 43 | MCSymbol *LabelBegin; |
| 44 | |
Amjad Aboud | 8bbce8a | 2016-02-01 14:09:41 +0000 | [diff] [blame] | 45 | /// The start of the unit macro info within macro section. |
| 46 | MCSymbol *MacroLabelBegin; |
| 47 | |
Amjad Aboud | 72da939 | 2016-04-30 01:44:07 +0000 | [diff] [blame] | 48 | typedef llvm::SmallVector<const MDNode *, 8> ImportedEntityList; |
| 49 | typedef llvm::DenseMap<const MDNode *, ImportedEntityList> |
| 50 | ImportedEntityMap; |
Ivan Krasin | 298639a | 2015-10-26 21:36:35 +0000 | [diff] [blame] | 51 | |
Amjad Aboud | 72da939 | 2016-04-30 01:44:07 +0000 | [diff] [blame] | 52 | ImportedEntityMap ImportedEntities; |
Ivan Krasin | 298639a | 2015-10-26 21:36:35 +0000 | [diff] [blame] | 53 | |
David Blaikie | 192b45c | 2014-11-02 06:16:39 +0000 | [diff] [blame] | 54 | /// GlobalNames - A map of globally visible named entities for this unit. |
| 55 | StringMap<const DIE *> GlobalNames; |
| 56 | |
| 57 | /// GlobalTypes - A map of globally visible types for this unit. |
| 58 | StringMap<const DIE *> GlobalTypes; |
| 59 | |
David Blaikie | 89a26f0 | 2014-11-03 02:41:49 +0000 | [diff] [blame] | 60 | // List of range lists for a given compile unit, separate from the ranges for |
| 61 | // the CU itself. |
| 62 | SmallVector<RangeSpanList, 1> CURangeLists; |
| 63 | |
David Blaikie | bc532b4 | 2014-11-03 16:40:43 +0000 | [diff] [blame] | 64 | // List of ranges for a given compile unit. |
David Blaikie | 5b02a19 | 2014-11-03 23:10:59 +0000 | [diff] [blame] | 65 | SmallVector<RangeSpan, 2> CURanges; |
David Blaikie | bc532b4 | 2014-11-03 16:40:43 +0000 | [diff] [blame] | 66 | |
David Blaikie | ce34349 | 2014-11-03 21:15:30 +0000 | [diff] [blame] | 67 | // The base address of this unit, if any. Used for relative references in |
| 68 | // ranges/locs. |
| 69 | const MCSymbol *BaseAddress; |
| 70 | |
David Blaikie | 488393f | 2017-05-12 01:13:45 +0000 | [diff] [blame] | 71 | DenseMap<const MDNode *, DIE *> AbstractSPDies; |
| 72 | DenseMap<const MDNode *, std::unique_ptr<DbgVariable>> AbstractVariables; |
| 73 | |
David Blaikie | ee7df55 | 2014-10-09 17:56:36 +0000 | [diff] [blame] | 74 | /// \brief Construct a DIE for the given DbgVariable without initializing the |
| 75 | /// DbgVariable's DIE reference. |
Duncan P. N. Exon Smith | 827200c | 2015-06-25 23:52:10 +0000 | [diff] [blame] | 76 | DIE *constructVariableDIEImpl(const DbgVariable &DV, bool Abstract); |
David Blaikie | ee7df55 | 2014-10-09 17:56:36 +0000 | [diff] [blame] | 77 | |
David Blaikie | cafd962 | 2014-11-02 08:51:37 +0000 | [diff] [blame] | 78 | bool isDwoUnit() const override; |
| 79 | |
David Blaikie | 488393f | 2017-05-12 01:13:45 +0000 | [diff] [blame] | 80 | DenseMap<const MDNode *, DIE *> &getAbstractSPDies() { |
| 81 | if (isDwoUnit() && !DD->shareAcrossDWOCUs()) |
| 82 | return AbstractSPDies; |
| 83 | return DU->getAbstractSPDies(); |
| 84 | } |
| 85 | |
| 86 | DenseMap<const MDNode *, std::unique_ptr<DbgVariable>> &getAbstractVariables() { |
| 87 | if (isDwoUnit() && !DD->shareAcrossDWOCUs()) |
| 88 | return AbstractVariables; |
| 89 | return DU->getAbstractVariables(); |
| 90 | } |
| 91 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 92 | public: |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 93 | DwarfCompileUnit(unsigned UID, const DICompileUnit *Node, AsmPrinter *A, |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 94 | DwarfDebug *DW, DwarfFile *DWU); |
| 95 | |
Peter Collingbourne | 7c384cc | 2016-02-11 19:57:46 +0000 | [diff] [blame] | 96 | unsigned getUniqueID() const { return UniqueID; } |
Peter Collingbourne | 7c384cc | 2016-02-11 19:57:46 +0000 | [diff] [blame] | 97 | |
David Blaikie | a33cd6a | 2014-11-01 00:50:34 +0000 | [diff] [blame] | 98 | DwarfCompileUnit *getSkeleton() const { |
David Blaikie | a5437b6 | 2014-11-01 19:26:05 +0000 | [diff] [blame] | 99 | return Skeleton; |
David Blaikie | a33cd6a | 2014-11-01 00:50:34 +0000 | [diff] [blame] | 100 | } |
| 101 | |
David Blaikie | b3cee2f | 2017-05-25 18:50:28 +0000 | [diff] [blame] | 102 | bool includeMinimalInlineScopes() const; |
| 103 | |
Rafael Espindola | 063d725 | 2015-03-10 16:58:10 +0000 | [diff] [blame] | 104 | void initStmtList(); |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 105 | |
| 106 | /// Apply the DW_AT_stmt_list from this compile unit to the specified DIE. |
| 107 | void applyStmtList(DIE &D); |
| 108 | |
Adrian Prantl | bceaaa9 | 2016-12-20 02:09:43 +0000 | [diff] [blame] | 109 | /// A pair of GlobalVariable and DIExpression. |
| 110 | struct GlobalExpr { |
| 111 | const GlobalVariable *Var; |
| 112 | const DIExpression *Expr; |
| 113 | }; |
| 114 | |
| 115 | /// Get or create global variable DIE. |
| 116 | DIE * |
| 117 | getOrCreateGlobalVariableDIE(const DIGlobalVariable *GV, |
| 118 | ArrayRef<GlobalExpr> GlobalExprs); |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 119 | |
| 120 | /// addLabelAddress - Add a dwarf label attribute data and value using |
| 121 | /// either DW_FORM_addr or DW_FORM_GNU_addr_index. |
| 122 | void addLabelAddress(DIE &Die, dwarf::Attribute Attribute, |
| 123 | const MCSymbol *Label); |
| 124 | |
| 125 | /// addLocalLabelAddress - Add a dwarf label attribute data and value using |
| 126 | /// DW_FORM_addr only. |
| 127 | void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute, |
| 128 | const MCSymbol *Label); |
| 129 | |
David Blaikie | e5feec5 | 2014-10-08 23:30:05 +0000 | [diff] [blame] | 130 | /// addSectionDelta - Add a label delta attribute data and value. |
Duncan P. N. Exon Smith | 4fb1f9c | 2015-06-25 23:46:41 +0000 | [diff] [blame] | 131 | DIE::value_iterator addSectionDelta(DIE &Die, dwarf::Attribute Attribute, |
| 132 | const MCSymbol *Hi, const MCSymbol *Lo); |
David Blaikie | e5feec5 | 2014-10-08 23:30:05 +0000 | [diff] [blame] | 133 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 134 | DwarfCompileUnit &getCU() override { return *this; } |
| 135 | |
| 136 | unsigned getOrCreateSourceID(StringRef FileName, StringRef DirName) override; |
| 137 | |
Amjad Aboud | 72da939 | 2016-04-30 01:44:07 +0000 | [diff] [blame] | 138 | void addImportedEntity(const DIImportedEntity* IE) { |
| 139 | DIScope *Scope = IE->getScope(); |
Amjad Aboud | a5ba991 | 2016-04-21 16:58:49 +0000 | [diff] [blame] | 140 | assert(Scope && "Invalid Scope encoding!"); |
| 141 | if (!isa<DILocalScope>(Scope)) |
| 142 | // No need to add imported enities that are not local declaration. |
| 143 | return; |
| 144 | |
| 145 | auto *LocalScope = cast<DILocalScope>(Scope)->getNonLexicalBlockFileScope(); |
Amjad Aboud | 72da939 | 2016-04-30 01:44:07 +0000 | [diff] [blame] | 146 | ImportedEntities[LocalScope].push_back(IE); |
Ivan Krasin | 298639a | 2015-10-26 21:36:35 +0000 | [diff] [blame] | 147 | } |
| 148 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 149 | /// addRange - Add an address range to the list of ranges for this unit. |
| 150 | void addRange(RangeSpan Range); |
David Blaikie | 14499a7 | 2014-10-04 15:58:47 +0000 | [diff] [blame] | 151 | |
| 152 | void attachLowHighPC(DIE &D, const MCSymbol *Begin, const MCSymbol *End); |
David Blaikie | cda2aa8 | 2014-10-04 16:24:00 +0000 | [diff] [blame] | 153 | |
David Blaikie | 6c0ee4e | 2014-10-08 22:46:27 +0000 | [diff] [blame] | 154 | /// addSectionLabel - Add a Dwarf section label attribute data and value. |
| 155 | /// |
Duncan P. N. Exon Smith | 4fb1f9c | 2015-06-25 23:46:41 +0000 | [diff] [blame] | 156 | DIE::value_iterator addSectionLabel(DIE &Die, dwarf::Attribute Attribute, |
| 157 | const MCSymbol *Label, |
| 158 | const MCSymbol *Sec); |
David Blaikie | 6c0ee4e | 2014-10-08 22:46:27 +0000 | [diff] [blame] | 159 | |
David Blaikie | cda2aa8 | 2014-10-04 16:24:00 +0000 | [diff] [blame] | 160 | /// \brief Find DIE for the given subprogram and attach appropriate |
| 161 | /// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global |
| 162 | /// variables in this scope then create and insert DIEs for these |
| 163 | /// variables. |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 164 | DIE &updateSubprogramScopeDIE(const DISubprogram *SP); |
David Blaikie | 9c65b13 | 2014-10-08 22:20:02 +0000 | [diff] [blame] | 165 | |
| 166 | void constructScopeDIE(LexicalScope *Scope, |
Duncan P. N. Exon Smith | 827200c | 2015-06-25 23:52:10 +0000 | [diff] [blame] | 167 | SmallVectorImpl<DIE *> &FinalChildren); |
David Blaikie | 5240020 | 2014-10-09 00:11:39 +0000 | [diff] [blame] | 168 | |
| 169 | /// \brief A helper function to construct a RangeSpanList for a given |
| 170 | /// lexical scope. |
David Blaikie | 5b02a19 | 2014-11-03 23:10:59 +0000 | [diff] [blame] | 171 | void addScopeRangeList(DIE &ScopeDIE, SmallVector<RangeSpan, 2> Range); |
| 172 | |
| 173 | void attachRangesOrLowHighPC(DIE &D, SmallVector<RangeSpan, 2> Ranges); |
David Blaikie | de12375 | 2014-10-09 00:21:42 +0000 | [diff] [blame] | 174 | |
| 175 | void attachRangesOrLowHighPC(DIE &D, |
| 176 | const SmallVectorImpl<InsnRange> &Ranges); |
David Blaikie | 01b48a8 | 2014-10-09 16:50:53 +0000 | [diff] [blame] | 177 | /// \brief This scope represents inlined body of a function. Construct |
| 178 | /// DIE to represent this concrete inlined copy of the function. |
Duncan P. N. Exon Smith | 827200c | 2015-06-25 23:52:10 +0000 | [diff] [blame] | 179 | DIE *constructInlinedScopeDIE(LexicalScope *Scope); |
David Blaikie | 0fbf8bd | 2014-10-09 17:08:42 +0000 | [diff] [blame] | 180 | |
| 181 | /// \brief Construct new DW_TAG_lexical_block for this scope and |
| 182 | /// attach DW_AT_low_pc/DW_AT_high_pc labels. |
Duncan P. N. Exon Smith | 827200c | 2015-06-25 23:52:10 +0000 | [diff] [blame] | 183 | DIE *constructLexicalScopeDIE(LexicalScope *Scope); |
David Blaikie | ee7df55 | 2014-10-09 17:56:36 +0000 | [diff] [blame] | 184 | |
| 185 | /// constructVariableDIE - Construct a DIE for the given DbgVariable. |
Duncan P. N. Exon Smith | 827200c | 2015-06-25 23:52:10 +0000 | [diff] [blame] | 186 | DIE *constructVariableDIE(DbgVariable &DV, bool Abstract = false); |
David Blaikie | 4a1a44e | 2014-10-09 17:56:39 +0000 | [diff] [blame] | 187 | |
Duncan P. N. Exon Smith | 827200c | 2015-06-25 23:52:10 +0000 | [diff] [blame] | 188 | DIE *constructVariableDIE(DbgVariable &DV, const LexicalScope &Scope, |
| 189 | DIE *&ObjectPointer); |
David Blaikie | 8b2fdb8 | 2014-10-09 18:24:28 +0000 | [diff] [blame] | 190 | |
| 191 | /// A helper function to create children of a Scope DIE. |
| 192 | DIE *createScopeChildrenDIE(LexicalScope *Scope, |
Duncan P. N. Exon Smith | 827200c | 2015-06-25 23:52:10 +0000 | [diff] [blame] | 193 | SmallVectorImpl<DIE *> &Children, |
Amjad Aboud | 72da939 | 2016-04-30 01:44:07 +0000 | [diff] [blame] | 194 | unsigned *ChildScopeCount = nullptr); |
David Blaikie | 1d07234 | 2014-10-09 20:21:36 +0000 | [diff] [blame] | 195 | |
| 196 | /// \brief Construct a DIE for this subprogram scope. |
David Blaikie | 3e3eb33 | 2016-12-15 23:17:52 +0000 | [diff] [blame] | 197 | void constructSubprogramScopeDIE(const DISubprogram *Sub, LexicalScope *Scope); |
David Blaikie | 78b65b6 | 2014-10-09 20:26:15 +0000 | [diff] [blame] | 198 | |
| 199 | DIE *createAndAddScopeChildren(LexicalScope *Scope, DIE &ScopeDIE); |
David Blaikie | 58410f2 | 2014-10-10 06:39:26 +0000 | [diff] [blame] | 200 | |
David Blaikie | 49be5b3 | 2014-10-31 21:57:02 +0000 | [diff] [blame] | 201 | void constructAbstractSubprogramScopeDIE(LexicalScope *Scope); |
David Blaikie | 4191cbc | 2014-10-10 06:39:29 +0000 | [diff] [blame] | 202 | |
Frederic Riss | 987fe22 | 2014-10-24 21:31:09 +0000 | [diff] [blame] | 203 | /// \brief Construct import_module DIE. |
Duncan P. N. Exon Smith | 827200c | 2015-06-25 23:52:10 +0000 | [diff] [blame] | 204 | DIE *constructImportedEntityDIE(const DIImportedEntity *Module); |
Frederic Riss | 987fe22 | 2014-10-24 21:31:09 +0000 | [diff] [blame] | 205 | |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 206 | void finishSubprogramDefinition(const DISubprogram *SP); |
David Blaikie | 488393f | 2017-05-12 01:13:45 +0000 | [diff] [blame] | 207 | void finishVariableDefinition(const DbgVariable &Var); |
| 208 | /// Find abstract variable associated with Var. |
| 209 | typedef DbgValueHistoryMap::InlinedVariable InlinedVariable; |
| 210 | DbgVariable *getExistingAbstractVariable(InlinedVariable IV, |
| 211 | const DILocalVariable *&Cleansed); |
| 212 | DbgVariable *getExistingAbstractVariable(InlinedVariable IV); |
| 213 | void createAbstractVariable(const DILocalVariable *DV, LexicalScope *Scope); |
David Blaikie | 1d96cc2 | 2014-10-31 22:30:30 +0000 | [diff] [blame] | 214 | |
David Blaikie | 7cbf58a | 2014-11-01 18:18:07 +0000 | [diff] [blame] | 215 | /// Set the skeleton unit associated with this unit. |
David Blaikie | a5437b6 | 2014-11-01 19:26:05 +0000 | [diff] [blame] | 216 | void setSkeleton(DwarfCompileUnit &Skel) { Skeleton = &Skel; } |
David Blaikie | a34568b | 2014-11-01 20:06:28 +0000 | [diff] [blame] | 217 | |
David Blaikie | 983bfea | 2014-11-01 23:07:14 +0000 | [diff] [blame] | 218 | unsigned getLength() { |
| 219 | return sizeof(uint32_t) + // Length field |
Greg Clayton | 35630c3 | 2016-12-01 18:56:29 +0000 | [diff] [blame] | 220 | getHeaderSize() + getUnitDie().getSize(); |
David Blaikie | 983bfea | 2014-11-01 23:07:14 +0000 | [diff] [blame] | 221 | } |
David Blaikie | ae57e66 | 2014-11-01 23:59:23 +0000 | [diff] [blame] | 222 | |
Rafael Espindola | 063d725 | 2015-03-10 16:58:10 +0000 | [diff] [blame] | 223 | void emitHeader(bool UseOffsets) override; |
David Blaikie | f4bdc31 | 2014-11-02 01:21:40 +0000 | [diff] [blame] | 224 | |
| 225 | MCSymbol *getLabelBegin() const { |
David Blaikie | e40caae | 2016-12-01 21:59:09 +0000 | [diff] [blame] | 226 | assert(getSection()); |
David Blaikie | f4bdc31 | 2014-11-02 01:21:40 +0000 | [diff] [blame] | 227 | return LabelBegin; |
| 228 | } |
David Blaikie | 192b45c | 2014-11-02 06:16:39 +0000 | [diff] [blame] | 229 | |
Amjad Aboud | 8bbce8a | 2016-02-01 14:09:41 +0000 | [diff] [blame] | 230 | MCSymbol *getMacroLabelBegin() const { |
| 231 | return MacroLabelBegin; |
| 232 | } |
| 233 | |
David Blaikie | 192b45c | 2014-11-02 06:16:39 +0000 | [diff] [blame] | 234 | /// Add a new global name to the compile unit. |
David Blaikie | a0e3c75 | 2017-02-03 00:44:18 +0000 | [diff] [blame] | 235 | void addGlobalName(StringRef Name, const DIE &Die, |
| 236 | const DIScope *Context) override; |
| 237 | |
| 238 | /// Add a new global name present in a type unit to this compile unit. |
| 239 | void addGlobalNameForTypeUnit(StringRef Name, const DIScope *Context); |
David Blaikie | 192b45c | 2014-11-02 06:16:39 +0000 | [diff] [blame] | 240 | |
| 241 | /// Add a new global type to the compile unit. |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 242 | void addGlobalType(const DIType *Ty, const DIE &Die, |
| 243 | const DIScope *Context) override; |
David Blaikie | 192b45c | 2014-11-02 06:16:39 +0000 | [diff] [blame] | 244 | |
David Blaikie | a0e3c75 | 2017-02-03 00:44:18 +0000 | [diff] [blame] | 245 | /// Add a new global type present in a type unit to this compile unit. |
| 246 | void addGlobalTypeUnitType(const DIType *Ty, const DIScope *Context); |
| 247 | |
David Blaikie | 192b45c | 2014-11-02 06:16:39 +0000 | [diff] [blame] | 248 | const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; } |
| 249 | const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; } |
David Blaikie | 7d48be2 | 2014-11-02 06:37:23 +0000 | [diff] [blame] | 250 | |
| 251 | /// Add DW_AT_location attribute for a DbgVariable based on provided |
| 252 | /// MachineLocation. |
| 253 | void addVariableAddress(const DbgVariable &DV, DIE &Die, |
| 254 | MachineLocation Location); |
David Blaikie | f7435ee | 2014-11-02 06:46:40 +0000 | [diff] [blame] | 255 | /// Add an address attribute to a die based on the location provided. |
| 256 | void addAddress(DIE &Die, dwarf::Attribute Attribute, |
Adrian Prantl | 5883af3 | 2015-01-19 17:57:29 +0000 | [diff] [blame] | 257 | const MachineLocation &Location); |
David Blaikie | 77895fb | 2014-11-02 06:58:44 +0000 | [diff] [blame] | 258 | |
| 259 | /// Start with the address based on the location provided, and generate the |
| 260 | /// DWARF information necessary to find the actual variable (navigating the |
| 261 | /// extra location information encoded in the type) based on the starting |
| 262 | /// location. Add the DWARF information to the die. |
| 263 | void addComplexAddress(const DbgVariable &DV, DIE &Die, |
| 264 | dwarf::Attribute Attribute, |
| 265 | const MachineLocation &Location); |
David Blaikie | 4bc0881 | 2014-11-02 07:03:19 +0000 | [diff] [blame] | 266 | |
| 267 | /// Add a Dwarf loclistptr attribute data and value. |
| 268 | void addLocationList(DIE &Die, dwarf::Attribute Attribute, unsigned Index); |
David Blaikie | 02a6333 | 2014-11-02 07:06:51 +0000 | [diff] [blame] | 269 | void applyVariableAttributes(const DbgVariable &Var, DIE &VariableDie); |
David Blaikie | 9780208 | 2014-11-02 07:11:55 +0000 | [diff] [blame] | 270 | |
| 271 | /// Add a Dwarf expression attribute data and value. |
| 272 | void addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr); |
David Blaikie | 3363a57 | 2014-11-02 08:09:09 +0000 | [diff] [blame] | 273 | |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 274 | void applySubprogramAttributesToDefinition(const DISubprogram *SP, |
Duncan P. N. Exon Smith | 2fbe135 | 2015-04-20 22:10:08 +0000 | [diff] [blame] | 275 | DIE &SPDie); |
David Blaikie | 89a26f0 | 2014-11-03 02:41:49 +0000 | [diff] [blame] | 276 | |
David Blaikie | 89a26f0 | 2014-11-03 02:41:49 +0000 | [diff] [blame] | 277 | /// getRangeLists - Get the vector of range lists. |
| 278 | const SmallVectorImpl<RangeSpanList> &getRangeLists() const { |
David Blaikie | 542616d | 2014-11-03 21:52:56 +0000 | [diff] [blame] | 279 | return (Skeleton ? Skeleton : this)->CURangeLists; |
David Blaikie | 89a26f0 | 2014-11-03 02:41:49 +0000 | [diff] [blame] | 280 | } |
David Blaikie | bc532b4 | 2014-11-03 16:40:43 +0000 | [diff] [blame] | 281 | |
| 282 | /// getRanges - Get the list of ranges for this unit. |
| 283 | const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; } |
David Blaikie | 5b02a19 | 2014-11-03 23:10:59 +0000 | [diff] [blame] | 284 | SmallVector<RangeSpan, 2> takeRanges() { return std::move(CURanges); } |
David Blaikie | ce34349 | 2014-11-03 21:15:30 +0000 | [diff] [blame] | 285 | |
| 286 | void setBaseAddress(const MCSymbol *Base) { BaseAddress = Base; } |
| 287 | const MCSymbol *getBaseAddress() const { return BaseAddress; } |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 288 | }; |
| 289 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 290 | } // end llvm namespace |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 291 | |
| 292 | #endif |