blob: 82b52b18838dc3c430e64d309234efca6d983cf9 [file] [log] [blame]
David Blaikie37c52312014-10-04 15:49:50 +00001//===-- 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
22namespace llvm {
23
24class AsmPrinter;
25class DIE;
26class DwarfDebug;
27class DwarfFile;
28class MCSymbol;
David Blaikie9c65b132014-10-08 22:20:02 +000029class LexicalScope;
David Blaikie37c52312014-10-04 15:49:50 +000030
31class 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 Blaikie7cbf58a2014-11-01 18:18:07 +000036 /// Skeleton unit associated with this unit.
David Blaikiea5437b62014-11-01 19:26:05 +000037 DwarfCompileUnit *Skeleton;
David Blaikie7cbf58a2014-11-01 18:18:07 +000038
David Blaikiea34568b2014-11-01 20:06:28 +000039 /// A label at the start of the non-dwo section related to this unit.
40 MCSymbol *SectionSym;
41
David Blaikief4bdc312014-11-02 01:21:40 +000042 /// The start of the unit within its section.
43 MCSymbol *LabelBegin;
44
David Blaikie192b45c2014-11-02 06:16:39 +000045 /// 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 Blaikieee7df552014-10-09 17:56:36 +000051 /// \brief Construct a DIE for the given DbgVariable without initializing the
52 /// DbgVariable's DIE reference.
53 std::unique_ptr<DIE> constructVariableDIEImpl(const DbgVariable &DV,
54 bool Abstract);
55
David Blaikie37c52312014-10-04 15:49:50 +000056public:
57 DwarfCompileUnit(unsigned UID, DICompileUnit Node, AsmPrinter *A,
58 DwarfDebug *DW, DwarfFile *DWU);
59
David Blaikiea33cd6a2014-11-01 00:50:34 +000060 DwarfCompileUnit *getSkeleton() const {
David Blaikiea5437b62014-11-01 19:26:05 +000061 return Skeleton;
David Blaikiea33cd6a2014-11-01 00:50:34 +000062 }
63
David Blaikie37c52312014-10-04 15:49:50 +000064 void initStmtList(MCSymbol *DwarfLineSectionSym);
65
66 /// Apply the DW_AT_stmt_list from this compile unit to the specified DIE.
67 void applyStmtList(DIE &D);
68
69 /// getOrCreateGlobalVariableDIE - get or create global variable DIE.
70 DIE *getOrCreateGlobalVariableDIE(DIGlobalVariable GV);
71
72 /// addLabelAddress - Add a dwarf label attribute data and value using
73 /// either DW_FORM_addr or DW_FORM_GNU_addr_index.
74 void addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
75 const MCSymbol *Label);
76
77 /// addLocalLabelAddress - Add a dwarf label attribute data and value using
78 /// DW_FORM_addr only.
79 void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute,
80 const MCSymbol *Label);
81
David Blaikiee5feec52014-10-08 23:30:05 +000082 /// addSectionDelta - Add a label delta attribute data and value.
83 void addSectionDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
84 const MCSymbol *Lo);
85
David Blaikie37c52312014-10-04 15:49:50 +000086 DwarfCompileUnit &getCU() override { return *this; }
87
88 unsigned getOrCreateSourceID(StringRef FileName, StringRef DirName) override;
89
90 /// addRange - Add an address range to the list of ranges for this unit.
91 void addRange(RangeSpan Range);
David Blaikie14499a72014-10-04 15:58:47 +000092
93 void attachLowHighPC(DIE &D, const MCSymbol *Begin, const MCSymbol *End);
David Blaikiecda2aa82014-10-04 16:24:00 +000094
David Blaikie6c0ee4e2014-10-08 22:46:27 +000095 /// addSectionLabel - Add a Dwarf section label attribute data and value.
96 ///
97 void addSectionLabel(DIE &Die, dwarf::Attribute Attribute,
98 const MCSymbol *Label, const MCSymbol *Sec);
99
David Blaikiecda2aa82014-10-04 16:24:00 +0000100 /// \brief Find DIE for the given subprogram and attach appropriate
101 /// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global
102 /// variables in this scope then create and insert DIEs for these
103 /// variables.
104 DIE &updateSubprogramScopeDIE(DISubprogram SP);
David Blaikie9c65b132014-10-08 22:20:02 +0000105
106 void constructScopeDIE(LexicalScope *Scope,
107 SmallVectorImpl<std::unique_ptr<DIE>> &FinalChildren);
David Blaikie52400202014-10-09 00:11:39 +0000108
109 /// \brief A helper function to construct a RangeSpanList for a given
110 /// lexical scope.
111 void addScopeRangeList(DIE &ScopeDIE,
112 const SmallVectorImpl<InsnRange> &Range);
David Blaikiede123752014-10-09 00:21:42 +0000113
114 void attachRangesOrLowHighPC(DIE &D,
115 const SmallVectorImpl<InsnRange> &Ranges);
David Blaikie01b48a82014-10-09 16:50:53 +0000116
117 /// \brief This scope represents inlined body of a function. Construct
118 /// DIE to represent this concrete inlined copy of the function.
119 std::unique_ptr<DIE> constructInlinedScopeDIE(LexicalScope *Scope);
David Blaikie0fbf8bd2014-10-09 17:08:42 +0000120
121 /// \brief Construct new DW_TAG_lexical_block for this scope and
122 /// attach DW_AT_low_pc/DW_AT_high_pc labels.
123 std::unique_ptr<DIE> constructLexicalScopeDIE(LexicalScope *Scope);
David Blaikieee7df552014-10-09 17:56:36 +0000124
125 /// constructVariableDIE - Construct a DIE for the given DbgVariable.
126 std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV,
127 bool Abstract = false);
David Blaikie4a1a44e2014-10-09 17:56:39 +0000128
129 std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV,
130 const LexicalScope &Scope,
131 DIE *&ObjectPointer);
David Blaikie8b2fdb82014-10-09 18:24:28 +0000132
133 /// A helper function to create children of a Scope DIE.
134 DIE *createScopeChildrenDIE(LexicalScope *Scope,
135 SmallVectorImpl<std::unique_ptr<DIE>> &Children,
136 unsigned *ChildScopeCount = nullptr);
David Blaikie1d072342014-10-09 20:21:36 +0000137
138 /// \brief Construct a DIE for this subprogram scope.
139 void constructSubprogramScopeDIE(LexicalScope *Scope);
David Blaikie78b65b62014-10-09 20:26:15 +0000140
141 DIE *createAndAddScopeChildren(LexicalScope *Scope, DIE &ScopeDIE);
David Blaikie58410f22014-10-10 06:39:26 +0000142
David Blaikie49be5b32014-10-31 21:57:02 +0000143 void constructAbstractSubprogramScopeDIE(LexicalScope *Scope);
David Blaikie4191cbc2014-10-10 06:39:29 +0000144
Frederic Riss987fe222014-10-24 21:31:09 +0000145 /// \brief Construct import_module DIE.
146 std::unique_ptr<DIE>
147 constructImportedEntityDIE(const DIImportedEntity &Module);
148
David Blaikie4191cbc2014-10-10 06:39:29 +0000149 void finishSubprogramDefinition(DISubprogram SP);
David Blaikie1d96cc22014-10-31 22:30:30 +0000150
151 void collectDeadVariables(DISubprogram SP);
David Blaikie7cbf58a2014-11-01 18:18:07 +0000152
David Blaikie7cbf58a2014-11-01 18:18:07 +0000153 /// Set the skeleton unit associated with this unit.
David Blaikiea5437b62014-11-01 19:26:05 +0000154 void setSkeleton(DwarfCompileUnit &Skel) { Skeleton = &Skel; }
David Blaikiea34568b2014-11-01 20:06:28 +0000155
156 MCSymbol *getSectionSym() const {
157 assert(Section);
158 return SectionSym;
159 }
160
161 /// Pass in the SectionSym even though we could recreate it in every compile
162 /// unit (type units will have actually distinct symbols once they're in
163 /// comdat sections).
164 void initSection(const MCSection *Section, MCSymbol *SectionSym) {
165 DwarfUnit::initSection(Section);
166 this->SectionSym = SectionSym;
David Blaikieb6726a92014-11-02 02:26:24 +0000167
168 // Don't bother labeling the .dwo unit, as its offset isn't used.
169 if (!Skeleton)
170 LabelBegin =
171 Asm->GetTempSymbol(Section->getLabelBeginName(), getUniqueID());
David Blaikiea34568b2014-11-01 20:06:28 +0000172 }
173
David Blaikie983bfea2014-11-01 23:07:14 +0000174 unsigned getLength() {
175 return sizeof(uint32_t) + // Length field
176 getHeaderSize() + UnitDie.getSize();
177 }
David Blaikieae57e662014-11-01 23:59:23 +0000178
179 void emitHeader(const MCSymbol *ASectionSym) const override;
David Blaikief4bdc312014-11-02 01:21:40 +0000180
181 MCSymbol *getLabelBegin() const {
182 assert(Section);
183 return LabelBegin;
184 }
David Blaikie192b45c2014-11-02 06:16:39 +0000185
186 /// Add a new global name to the compile unit.
187 void addGlobalName(StringRef Name, DIE &Die, DIScope Context) override;
188
189 /// Add a new global type to the compile unit.
190 void addGlobalType(DIType Ty, const DIE &Die, DIScope Context) override;
191
192 const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; }
193 const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; }
David Blaikie7d48be22014-11-02 06:37:23 +0000194
195 /// Add DW_AT_location attribute for a DbgVariable based on provided
196 /// MachineLocation.
197 void addVariableAddress(const DbgVariable &DV, DIE &Die,
198 MachineLocation Location);
David Blaikief7435ee2014-11-02 06:46:40 +0000199 /// Add an address attribute to a die based on the location provided.
200 void addAddress(DIE &Die, dwarf::Attribute Attribute,
201 const MachineLocation &Location, bool Indirect = false);
David Blaikie37c52312014-10-04 15:49:50 +0000202};
203
204} // end llvm namespace
205
206#endif