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 | ee7df55 | 2014-10-09 17:56:36 +0000 | [diff] [blame] | 45 | /// \brief Construct a DIE for the given DbgVariable without initializing the |
| 46 | /// DbgVariable's DIE reference. |
| 47 | std::unique_ptr<DIE> constructVariableDIEImpl(const DbgVariable &DV, |
| 48 | bool Abstract); |
| 49 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 50 | public: |
| 51 | DwarfCompileUnit(unsigned UID, DICompileUnit Node, AsmPrinter *A, |
| 52 | DwarfDebug *DW, DwarfFile *DWU); |
| 53 | |
David Blaikie | a33cd6a | 2014-11-01 00:50:34 +0000 | [diff] [blame] | 54 | DwarfCompileUnit *getSkeleton() const { |
David Blaikie | a5437b6 | 2014-11-01 19:26:05 +0000 | [diff] [blame] | 55 | return Skeleton; |
David Blaikie | a33cd6a | 2014-11-01 00:50:34 +0000 | [diff] [blame] | 56 | } |
| 57 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 58 | void initStmtList(MCSymbol *DwarfLineSectionSym); |
| 59 | |
| 60 | /// Apply the DW_AT_stmt_list from this compile unit to the specified DIE. |
| 61 | void applyStmtList(DIE &D); |
| 62 | |
| 63 | /// getOrCreateGlobalVariableDIE - get or create global variable DIE. |
| 64 | DIE *getOrCreateGlobalVariableDIE(DIGlobalVariable GV); |
| 65 | |
| 66 | /// addLabelAddress - Add a dwarf label attribute data and value using |
| 67 | /// either DW_FORM_addr or DW_FORM_GNU_addr_index. |
| 68 | void addLabelAddress(DIE &Die, dwarf::Attribute Attribute, |
| 69 | const MCSymbol *Label); |
| 70 | |
| 71 | /// addLocalLabelAddress - Add a dwarf label attribute data and value using |
| 72 | /// DW_FORM_addr only. |
| 73 | void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute, |
| 74 | const MCSymbol *Label); |
| 75 | |
David Blaikie | e5feec5 | 2014-10-08 23:30:05 +0000 | [diff] [blame] | 76 | /// addSectionDelta - Add a label delta attribute data and value. |
| 77 | void addSectionDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi, |
| 78 | const MCSymbol *Lo); |
| 79 | |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 80 | DwarfCompileUnit &getCU() override { return *this; } |
| 81 | |
| 82 | unsigned getOrCreateSourceID(StringRef FileName, StringRef DirName) override; |
| 83 | |
| 84 | /// addRange - Add an address range to the list of ranges for this unit. |
| 85 | void addRange(RangeSpan Range); |
David Blaikie | 14499a7 | 2014-10-04 15:58:47 +0000 | [diff] [blame] | 86 | |
| 87 | void attachLowHighPC(DIE &D, const MCSymbol *Begin, const MCSymbol *End); |
David Blaikie | cda2aa8 | 2014-10-04 16:24:00 +0000 | [diff] [blame] | 88 | |
David Blaikie | 6c0ee4e | 2014-10-08 22:46:27 +0000 | [diff] [blame] | 89 | /// addSectionLabel - Add a Dwarf section label attribute data and value. |
| 90 | /// |
| 91 | void addSectionLabel(DIE &Die, dwarf::Attribute Attribute, |
| 92 | const MCSymbol *Label, const MCSymbol *Sec); |
| 93 | |
David Blaikie | cda2aa8 | 2014-10-04 16:24:00 +0000 | [diff] [blame] | 94 | /// \brief Find DIE for the given subprogram and attach appropriate |
| 95 | /// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global |
| 96 | /// variables in this scope then create and insert DIEs for these |
| 97 | /// variables. |
| 98 | DIE &updateSubprogramScopeDIE(DISubprogram SP); |
David Blaikie | 9c65b13 | 2014-10-08 22:20:02 +0000 | [diff] [blame] | 99 | |
| 100 | void constructScopeDIE(LexicalScope *Scope, |
| 101 | SmallVectorImpl<std::unique_ptr<DIE>> &FinalChildren); |
David Blaikie | 5240020 | 2014-10-09 00:11:39 +0000 | [diff] [blame] | 102 | |
| 103 | /// \brief A helper function to construct a RangeSpanList for a given |
| 104 | /// lexical scope. |
| 105 | void addScopeRangeList(DIE &ScopeDIE, |
| 106 | const SmallVectorImpl<InsnRange> &Range); |
David Blaikie | de12375 | 2014-10-09 00:21:42 +0000 | [diff] [blame] | 107 | |
| 108 | void attachRangesOrLowHighPC(DIE &D, |
| 109 | const SmallVectorImpl<InsnRange> &Ranges); |
David Blaikie | 01b48a8 | 2014-10-09 16:50:53 +0000 | [diff] [blame] | 110 | |
| 111 | /// \brief This scope represents inlined body of a function. Construct |
| 112 | /// DIE to represent this concrete inlined copy of the function. |
| 113 | std::unique_ptr<DIE> constructInlinedScopeDIE(LexicalScope *Scope); |
David Blaikie | 0fbf8bd | 2014-10-09 17:08:42 +0000 | [diff] [blame] | 114 | |
| 115 | /// \brief Construct new DW_TAG_lexical_block for this scope and |
| 116 | /// attach DW_AT_low_pc/DW_AT_high_pc labels. |
| 117 | std::unique_ptr<DIE> constructLexicalScopeDIE(LexicalScope *Scope); |
David Blaikie | ee7df55 | 2014-10-09 17:56:36 +0000 | [diff] [blame] | 118 | |
| 119 | /// constructVariableDIE - Construct a DIE for the given DbgVariable. |
| 120 | std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV, |
| 121 | bool Abstract = false); |
David Blaikie | 4a1a44e | 2014-10-09 17:56:39 +0000 | [diff] [blame] | 122 | |
| 123 | std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV, |
| 124 | const LexicalScope &Scope, |
| 125 | DIE *&ObjectPointer); |
David Blaikie | 8b2fdb8 | 2014-10-09 18:24:28 +0000 | [diff] [blame] | 126 | |
| 127 | /// A helper function to create children of a Scope DIE. |
| 128 | DIE *createScopeChildrenDIE(LexicalScope *Scope, |
| 129 | SmallVectorImpl<std::unique_ptr<DIE>> &Children, |
| 130 | unsigned *ChildScopeCount = nullptr); |
David Blaikie | 1d07234 | 2014-10-09 20:21:36 +0000 | [diff] [blame] | 131 | |
| 132 | /// \brief Construct a DIE for this subprogram scope. |
| 133 | void constructSubprogramScopeDIE(LexicalScope *Scope); |
David Blaikie | 78b65b6 | 2014-10-09 20:26:15 +0000 | [diff] [blame] | 134 | |
| 135 | DIE *createAndAddScopeChildren(LexicalScope *Scope, DIE &ScopeDIE); |
David Blaikie | 58410f2 | 2014-10-10 06:39:26 +0000 | [diff] [blame] | 136 | |
David Blaikie | 49be5b3 | 2014-10-31 21:57:02 +0000 | [diff] [blame] | 137 | void constructAbstractSubprogramScopeDIE(LexicalScope *Scope); |
David Blaikie | 4191cbc | 2014-10-10 06:39:29 +0000 | [diff] [blame] | 138 | |
Frederic Riss | 987fe22 | 2014-10-24 21:31:09 +0000 | [diff] [blame] | 139 | /// \brief Construct import_module DIE. |
| 140 | std::unique_ptr<DIE> |
| 141 | constructImportedEntityDIE(const DIImportedEntity &Module); |
| 142 | |
David Blaikie | 4191cbc | 2014-10-10 06:39:29 +0000 | [diff] [blame] | 143 | void finishSubprogramDefinition(DISubprogram SP); |
David Blaikie | 1d96cc2 | 2014-10-31 22:30:30 +0000 | [diff] [blame] | 144 | |
| 145 | void collectDeadVariables(DISubprogram SP); |
David Blaikie | 7cbf58a | 2014-11-01 18:18:07 +0000 | [diff] [blame] | 146 | |
David Blaikie | 7cbf58a | 2014-11-01 18:18:07 +0000 | [diff] [blame] | 147 | /// Set the skeleton unit associated with this unit. |
David Blaikie | a5437b6 | 2014-11-01 19:26:05 +0000 | [diff] [blame] | 148 | void setSkeleton(DwarfCompileUnit &Skel) { Skeleton = &Skel; } |
David Blaikie | a34568b | 2014-11-01 20:06:28 +0000 | [diff] [blame] | 149 | |
| 150 | MCSymbol *getSectionSym() const { |
| 151 | assert(Section); |
| 152 | return SectionSym; |
| 153 | } |
| 154 | |
| 155 | /// Pass in the SectionSym even though we could recreate it in every compile |
| 156 | /// unit (type units will have actually distinct symbols once they're in |
| 157 | /// comdat sections). |
| 158 | void initSection(const MCSection *Section, MCSymbol *SectionSym) { |
| 159 | DwarfUnit::initSection(Section); |
| 160 | this->SectionSym = SectionSym; |
David Blaikie | b6726a9 | 2014-11-02 02:26:24 +0000 | [diff] [blame] | 161 | |
| 162 | // Don't bother labeling the .dwo unit, as its offset isn't used. |
| 163 | if (!Skeleton) |
| 164 | LabelBegin = |
| 165 | Asm->GetTempSymbol(Section->getLabelBeginName(), getUniqueID()); |
David Blaikie | a34568b | 2014-11-01 20:06:28 +0000 | [diff] [blame] | 166 | } |
| 167 | |
David Blaikie | 983bfea | 2014-11-01 23:07:14 +0000 | [diff] [blame] | 168 | unsigned getLength() { |
| 169 | return sizeof(uint32_t) + // Length field |
| 170 | getHeaderSize() + UnitDie.getSize(); |
| 171 | } |
David Blaikie | ae57e66 | 2014-11-01 23:59:23 +0000 | [diff] [blame] | 172 | |
| 173 | void emitHeader(const MCSymbol *ASectionSym) const override; |
David Blaikie | f4bdc31 | 2014-11-02 01:21:40 +0000 | [diff] [blame] | 174 | |
| 175 | MCSymbol *getLabelBegin() const { |
| 176 | assert(Section); |
| 177 | return LabelBegin; |
| 178 | } |
David Blaikie | 37c5231 | 2014-10-04 15:49:50 +0000 | [diff] [blame] | 179 | }; |
| 180 | |
| 181 | } // end llvm namespace |
| 182 | |
| 183 | #endif |