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" |
| 18 | #include "llvm/Support/Dwarf.h" |
| 19 | #include "llvm/ADT/StringRef.h" |
| 20 | #include "llvm/IR/DebugInfo.h" |
| 21 | |
| 22 | namespace llvm { |
| 23 | |
| 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 | |
| 31 | class DwarfCompileUnit : public DwarfUnit { |
| 32 | /// The attribute index of DW_AT_stmt_list in the compile unit DIE, avoiding |
| 33 | /// the need to search for it in applyStmtList. |
| 34 | unsigned stmtListIndex; |
| 35 | |
David Blaikie | 7cbf58a | 2014-11-01 18:18:07 +0000 | [diff] [blame] | 36 | /// Skeleton unit associated with this unit. |
David Blaikie | a5437b6 | 2014-11-01 19:26:05 +0000 | [diff] [blame] | 37 | DwarfCompileUnit *Skeleton; |
David Blaikie | 7cbf58a | 2014-11-01 18:18:07 +0000 | [diff] [blame] | 38 | |
David Blaikie | a34568b | 2014-11-01 20:06:28 +0000 | [diff] [blame] | 39 | /// A label at the start of the non-dwo section related to this unit. |
| 40 | MCSymbol *SectionSym; |
| 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 | |
David Blaikie | 192b45c | 2014-11-02 06:16:39 +0000 | [diff] [blame] | 45 | /// GlobalNames - A map of globally visible named entities for this unit. |
| 46 | StringMap<const DIE *> GlobalNames; |
| 47 | |
| 48 | /// GlobalTypes - A map of globally visible types for this unit. |
| 49 | StringMap<const DIE *> GlobalTypes; |
| 50 | |
David Blaikie | 89a26f0 | 2014-11-03 02:41:49 +0000 | [diff] [blame] | 51 | // List of range lists for a given compile unit, separate from the ranges for |
| 52 | // the CU itself. |
| 53 | SmallVector<RangeSpanList, 1> CURangeLists; |
| 54 | |
David Blaikie | bc532b4 | 2014-11-03 16:40:43 +0000 | [diff] [blame] | 55 | // List of ranges for a given compile unit. |
David Blaikie | 5b02a19 | 2014-11-03 23:10:59 +0000 | [diff] [blame^] | 56 | SmallVector<RangeSpan, 2> CURanges; |
David Blaikie | bc532b4 | 2014-11-03 16:40:43 +0000 | [diff] [blame] | 57 | |
David Blaikie | ce34349 | 2014-11-03 21:15:30 +0000 | [diff] [blame] | 58 | // The base address of this unit, if any. Used for relative references in |
| 59 | // ranges/locs. |
| 60 | const MCSymbol *BaseAddress; |
| 61 | |
David Blaikie | ee7df55 | 2014-10-09 17:56:36 +0000 | [diff] [blame] | 62 | /// \brief Construct a DIE for the given DbgVariable without initializing the |
| 63 | /// DbgVariable's DIE reference. |
| 64 | std::unique_ptr<DIE> constructVariableDIEImpl(const DbgVariable &DV, |
| 65 | bool Abstract); |
| 66 | |
David Blaikie | cafd962 | 2014-11-02 08:51:37 +0000 | [diff] [blame] | 67 | bool isDwoUnit() const override; |
| 68 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 69 | public: |
| 70 | DwarfCompileUnit(unsigned UID, DICompileUnit Node, AsmPrinter *A, |
| 71 | DwarfDebug *DW, DwarfFile *DWU); |
| 72 | |
David Blaikie | a33cd6a | 2014-11-01 00:50:34 +0000 | [diff] [blame] | 73 | DwarfCompileUnit *getSkeleton() const { |
David Blaikie | a5437b6 | 2014-11-01 19:26:05 +0000 | [diff] [blame] | 74 | return Skeleton; |
David Blaikie | a33cd6a | 2014-11-01 00:50:34 +0000 | [diff] [blame] | 75 | } |
| 76 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 77 | void initStmtList(MCSymbol *DwarfLineSectionSym); |
| 78 | |
| 79 | /// Apply the DW_AT_stmt_list from this compile unit to the specified DIE. |
| 80 | void applyStmtList(DIE &D); |
| 81 | |
| 82 | /// getOrCreateGlobalVariableDIE - get or create global variable DIE. |
| 83 | DIE *getOrCreateGlobalVariableDIE(DIGlobalVariable GV); |
| 84 | |
| 85 | /// addLabelAddress - Add a dwarf label attribute data and value using |
| 86 | /// either DW_FORM_addr or DW_FORM_GNU_addr_index. |
| 87 | void addLabelAddress(DIE &Die, dwarf::Attribute Attribute, |
| 88 | const MCSymbol *Label); |
| 89 | |
| 90 | /// addLocalLabelAddress - Add a dwarf label attribute data and value using |
| 91 | /// DW_FORM_addr only. |
| 92 | void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute, |
| 93 | const MCSymbol *Label); |
| 94 | |
David Blaikie | e5feec5 | 2014-10-08 23:30:05 +0000 | [diff] [blame] | 95 | /// addSectionDelta - Add a label delta attribute data and value. |
| 96 | void addSectionDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi, |
| 97 | const MCSymbol *Lo); |
| 98 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 99 | DwarfCompileUnit &getCU() override { return *this; } |
| 100 | |
| 101 | unsigned getOrCreateSourceID(StringRef FileName, StringRef DirName) override; |
| 102 | |
| 103 | /// addRange - Add an address range to the list of ranges for this unit. |
| 104 | void addRange(RangeSpan Range); |
David Blaikie | 14499a7 | 2014-10-04 15:58:47 +0000 | [diff] [blame] | 105 | |
| 106 | void attachLowHighPC(DIE &D, const MCSymbol *Begin, const MCSymbol *End); |
David Blaikie | cda2aa8 | 2014-10-04 16:24:00 +0000 | [diff] [blame] | 107 | |
David Blaikie | 6c0ee4e | 2014-10-08 22:46:27 +0000 | [diff] [blame] | 108 | /// addSectionLabel - Add a Dwarf section label attribute data and value. |
| 109 | /// |
| 110 | void addSectionLabel(DIE &Die, dwarf::Attribute Attribute, |
| 111 | const MCSymbol *Label, const MCSymbol *Sec); |
| 112 | |
David Blaikie | cda2aa8 | 2014-10-04 16:24:00 +0000 | [diff] [blame] | 113 | /// \brief Find DIE for the given subprogram and attach appropriate |
| 114 | /// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global |
| 115 | /// variables in this scope then create and insert DIEs for these |
| 116 | /// variables. |
| 117 | DIE &updateSubprogramScopeDIE(DISubprogram SP); |
David Blaikie | 9c65b13 | 2014-10-08 22:20:02 +0000 | [diff] [blame] | 118 | |
| 119 | void constructScopeDIE(LexicalScope *Scope, |
| 120 | SmallVectorImpl<std::unique_ptr<DIE>> &FinalChildren); |
David Blaikie | 5240020 | 2014-10-09 00:11:39 +0000 | [diff] [blame] | 121 | |
| 122 | /// \brief A helper function to construct a RangeSpanList for a given |
| 123 | /// lexical scope. |
David Blaikie | 5b02a19 | 2014-11-03 23:10:59 +0000 | [diff] [blame^] | 124 | void addScopeRangeList(DIE &ScopeDIE, SmallVector<RangeSpan, 2> Range); |
| 125 | |
| 126 | void attachRangesOrLowHighPC(DIE &D, SmallVector<RangeSpan, 2> Ranges); |
David Blaikie | de12375 | 2014-10-09 00:21:42 +0000 | [diff] [blame] | 127 | |
| 128 | void attachRangesOrLowHighPC(DIE &D, |
| 129 | const SmallVectorImpl<InsnRange> &Ranges); |
David Blaikie | 01b48a8 | 2014-10-09 16:50:53 +0000 | [diff] [blame] | 130 | /// \brief This scope represents inlined body of a function. Construct |
| 131 | /// DIE to represent this concrete inlined copy of the function. |
| 132 | std::unique_ptr<DIE> constructInlinedScopeDIE(LexicalScope *Scope); |
David Blaikie | 0fbf8bd | 2014-10-09 17:08:42 +0000 | [diff] [blame] | 133 | |
| 134 | /// \brief Construct new DW_TAG_lexical_block for this scope and |
| 135 | /// attach DW_AT_low_pc/DW_AT_high_pc labels. |
| 136 | std::unique_ptr<DIE> constructLexicalScopeDIE(LexicalScope *Scope); |
David Blaikie | ee7df55 | 2014-10-09 17:56:36 +0000 | [diff] [blame] | 137 | |
| 138 | /// constructVariableDIE - Construct a DIE for the given DbgVariable. |
| 139 | std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV, |
| 140 | bool Abstract = false); |
David Blaikie | 4a1a44e | 2014-10-09 17:56:39 +0000 | [diff] [blame] | 141 | |
| 142 | std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV, |
| 143 | const LexicalScope &Scope, |
| 144 | DIE *&ObjectPointer); |
David Blaikie | 8b2fdb8 | 2014-10-09 18:24:28 +0000 | [diff] [blame] | 145 | |
| 146 | /// A helper function to create children of a Scope DIE. |
| 147 | DIE *createScopeChildrenDIE(LexicalScope *Scope, |
| 148 | SmallVectorImpl<std::unique_ptr<DIE>> &Children, |
| 149 | unsigned *ChildScopeCount = nullptr); |
David Blaikie | 1d07234 | 2014-10-09 20:21:36 +0000 | [diff] [blame] | 150 | |
| 151 | /// \brief Construct a DIE for this subprogram scope. |
| 152 | void constructSubprogramScopeDIE(LexicalScope *Scope); |
David Blaikie | 78b65b6 | 2014-10-09 20:26:15 +0000 | [diff] [blame] | 153 | |
| 154 | DIE *createAndAddScopeChildren(LexicalScope *Scope, DIE &ScopeDIE); |
David Blaikie | 58410f2 | 2014-10-10 06:39:26 +0000 | [diff] [blame] | 155 | |
David Blaikie | 49be5b3 | 2014-10-31 21:57:02 +0000 | [diff] [blame] | 156 | void constructAbstractSubprogramScopeDIE(LexicalScope *Scope); |
David Blaikie | 4191cbc | 2014-10-10 06:39:29 +0000 | [diff] [blame] | 157 | |
Frederic Riss | 987fe22 | 2014-10-24 21:31:09 +0000 | [diff] [blame] | 158 | /// \brief Construct import_module DIE. |
| 159 | std::unique_ptr<DIE> |
| 160 | constructImportedEntityDIE(const DIImportedEntity &Module); |
| 161 | |
David Blaikie | 4191cbc | 2014-10-10 06:39:29 +0000 | [diff] [blame] | 162 | void finishSubprogramDefinition(DISubprogram SP); |
David Blaikie | 1d96cc2 | 2014-10-31 22:30:30 +0000 | [diff] [blame] | 163 | |
| 164 | void collectDeadVariables(DISubprogram SP); |
David Blaikie | 7cbf58a | 2014-11-01 18:18:07 +0000 | [diff] [blame] | 165 | |
David Blaikie | 7cbf58a | 2014-11-01 18:18:07 +0000 | [diff] [blame] | 166 | /// Set the skeleton unit associated with this unit. |
David Blaikie | a5437b6 | 2014-11-01 19:26:05 +0000 | [diff] [blame] | 167 | void setSkeleton(DwarfCompileUnit &Skel) { Skeleton = &Skel; } |
David Blaikie | a34568b | 2014-11-01 20:06:28 +0000 | [diff] [blame] | 168 | |
| 169 | MCSymbol *getSectionSym() const { |
| 170 | assert(Section); |
| 171 | return SectionSym; |
| 172 | } |
| 173 | |
| 174 | /// Pass in the SectionSym even though we could recreate it in every compile |
| 175 | /// unit (type units will have actually distinct symbols once they're in |
| 176 | /// comdat sections). |
| 177 | void initSection(const MCSection *Section, MCSymbol *SectionSym) { |
| 178 | DwarfUnit::initSection(Section); |
| 179 | this->SectionSym = SectionSym; |
David Blaikie | b6726a9 | 2014-11-02 02:26:24 +0000 | [diff] [blame] | 180 | |
| 181 | // Don't bother labeling the .dwo unit, as its offset isn't used. |
| 182 | if (!Skeleton) |
| 183 | LabelBegin = |
| 184 | Asm->GetTempSymbol(Section->getLabelBeginName(), getUniqueID()); |
David Blaikie | a34568b | 2014-11-01 20:06:28 +0000 | [diff] [blame] | 185 | } |
| 186 | |
David Blaikie | 983bfea | 2014-11-01 23:07:14 +0000 | [diff] [blame] | 187 | unsigned getLength() { |
| 188 | return sizeof(uint32_t) + // Length field |
| 189 | getHeaderSize() + UnitDie.getSize(); |
| 190 | } |
David Blaikie | ae57e66 | 2014-11-01 23:59:23 +0000 | [diff] [blame] | 191 | |
| 192 | void emitHeader(const MCSymbol *ASectionSym) const override; |
David Blaikie | f4bdc31 | 2014-11-02 01:21:40 +0000 | [diff] [blame] | 193 | |
| 194 | MCSymbol *getLabelBegin() const { |
| 195 | assert(Section); |
| 196 | return LabelBegin; |
| 197 | } |
David Blaikie | 192b45c | 2014-11-02 06:16:39 +0000 | [diff] [blame] | 198 | |
| 199 | /// Add a new global name to the compile unit. |
| 200 | void addGlobalName(StringRef Name, DIE &Die, DIScope Context) override; |
| 201 | |
| 202 | /// Add a new global type to the compile unit. |
| 203 | void addGlobalType(DIType Ty, const DIE &Die, DIScope Context) override; |
| 204 | |
| 205 | const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; } |
| 206 | const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; } |
David Blaikie | 7d48be2 | 2014-11-02 06:37:23 +0000 | [diff] [blame] | 207 | |
| 208 | /// Add DW_AT_location attribute for a DbgVariable based on provided |
| 209 | /// MachineLocation. |
| 210 | void addVariableAddress(const DbgVariable &DV, DIE &Die, |
| 211 | MachineLocation Location); |
David Blaikie | f7435ee | 2014-11-02 06:46:40 +0000 | [diff] [blame] | 212 | /// Add an address attribute to a die based on the location provided. |
| 213 | void addAddress(DIE &Die, dwarf::Attribute Attribute, |
| 214 | const MachineLocation &Location, bool Indirect = false); |
David Blaikie | 77895fb | 2014-11-02 06:58:44 +0000 | [diff] [blame] | 215 | |
| 216 | /// Start with the address based on the location provided, and generate the |
| 217 | /// DWARF information necessary to find the actual variable (navigating the |
| 218 | /// extra location information encoded in the type) based on the starting |
| 219 | /// location. Add the DWARF information to the die. |
| 220 | void addComplexAddress(const DbgVariable &DV, DIE &Die, |
| 221 | dwarf::Attribute Attribute, |
| 222 | const MachineLocation &Location); |
David Blaikie | 4bc0881 | 2014-11-02 07:03:19 +0000 | [diff] [blame] | 223 | |
| 224 | /// Add a Dwarf loclistptr attribute data and value. |
| 225 | void addLocationList(DIE &Die, dwarf::Attribute Attribute, unsigned Index); |
David Blaikie | 02a6333 | 2014-11-02 07:06:51 +0000 | [diff] [blame] | 226 | void applyVariableAttributes(const DbgVariable &Var, DIE &VariableDie); |
David Blaikie | 9780208 | 2014-11-02 07:11:55 +0000 | [diff] [blame] | 227 | |
| 228 | /// Add a Dwarf expression attribute data and value. |
| 229 | void addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr); |
David Blaikie | 3363a57 | 2014-11-02 08:09:09 +0000 | [diff] [blame] | 230 | |
| 231 | void applySubprogramAttributesToDefinition(DISubprogram SP, DIE &SPDie); |
David Blaikie | 89a26f0 | 2014-11-03 02:41:49 +0000 | [diff] [blame] | 232 | |
David Blaikie | 89a26f0 | 2014-11-03 02:41:49 +0000 | [diff] [blame] | 233 | /// getRangeLists - Get the vector of range lists. |
| 234 | const SmallVectorImpl<RangeSpanList> &getRangeLists() const { |
David Blaikie | 542616d | 2014-11-03 21:52:56 +0000 | [diff] [blame] | 235 | return (Skeleton ? Skeleton : this)->CURangeLists; |
David Blaikie | 89a26f0 | 2014-11-03 02:41:49 +0000 | [diff] [blame] | 236 | } |
David Blaikie | bc532b4 | 2014-11-03 16:40:43 +0000 | [diff] [blame] | 237 | |
| 238 | /// getRanges - Get the list of ranges for this unit. |
| 239 | const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; } |
David Blaikie | 5b02a19 | 2014-11-03 23:10:59 +0000 | [diff] [blame^] | 240 | SmallVector<RangeSpan, 2> takeRanges() { return std::move(CURanges); } |
David Blaikie | ce34349 | 2014-11-03 21:15:30 +0000 | [diff] [blame] | 241 | |
| 242 | void setBaseAddress(const MCSymbol *Base) { BaseAddress = Base; } |
| 243 | const MCSymbol *getBaseAddress() const { return BaseAddress; } |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 244 | }; |
| 245 | |
| 246 | } // end llvm namespace |
| 247 | |
| 248 | #endif |