blob: 509c9432bcbf93da33b0f6d4f5b234a94455e16f [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"
David Blaikie37c52312014-10-04 15:49:50 +000018#include "llvm/ADT/StringRef.h"
19#include "llvm/IR/DebugInfo.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000020#include "llvm/Support/Dwarf.h"
David Blaikie37c52312014-10-04 15:49:50 +000021
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.
Duncan P. N. Exon Smith4fb1f9c2015-06-25 23:46:41 +000034 DIE::value_iterator StmtListValue;
David Blaikie37c52312014-10-04 15:49:50 +000035
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 Blaikief4bdc312014-11-02 01:21:40 +000039 /// The start of the unit within its section.
40 MCSymbol *LabelBegin;
41
David Blaikie192b45c2014-11-02 06:16:39 +000042 /// GlobalNames - A map of globally visible named entities for this unit.
43 StringMap<const DIE *> GlobalNames;
44
45 /// GlobalTypes - A map of globally visible types for this unit.
46 StringMap<const DIE *> GlobalTypes;
47
David Blaikie89a26f02014-11-03 02:41:49 +000048 // List of range lists for a given compile unit, separate from the ranges for
49 // the CU itself.
50 SmallVector<RangeSpanList, 1> CURangeLists;
51
David Blaikiebc532b42014-11-03 16:40:43 +000052 // List of ranges for a given compile unit.
David Blaikie5b02a192014-11-03 23:10:59 +000053 SmallVector<RangeSpan, 2> CURanges;
David Blaikiebc532b42014-11-03 16:40:43 +000054
David Blaikiece343492014-11-03 21:15:30 +000055 // The base address of this unit, if any. Used for relative references in
56 // ranges/locs.
57 const MCSymbol *BaseAddress;
58
David Blaikieee7df552014-10-09 17:56:36 +000059 /// \brief Construct a DIE for the given DbgVariable without initializing the
60 /// DbgVariable's DIE reference.
Duncan P. N. Exon Smith827200c2015-06-25 23:52:10 +000061 DIE *constructVariableDIEImpl(const DbgVariable &DV, bool Abstract);
David Blaikieee7df552014-10-09 17:56:36 +000062
David Blaikiecafd9622014-11-02 08:51:37 +000063 bool isDwoUnit() const override;
64
David Blaikie3a443c22014-11-04 22:12:25 +000065 bool includeMinimalInlineScopes() const;
66
David Blaikie37c52312014-10-04 15:49:50 +000067public:
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000068 DwarfCompileUnit(unsigned UID, const DICompileUnit *Node, AsmPrinter *A,
David Blaikie37c52312014-10-04 15:49:50 +000069 DwarfDebug *DW, DwarfFile *DWU);
70
David Blaikiea33cd6a2014-11-01 00:50:34 +000071 DwarfCompileUnit *getSkeleton() const {
David Blaikiea5437b62014-11-01 19:26:05 +000072 return Skeleton;
David Blaikiea33cd6a2014-11-01 00:50:34 +000073 }
74
Rafael Espindola063d7252015-03-10 16:58:10 +000075 void initStmtList();
David Blaikie37c52312014-10-04 15:49:50 +000076
77 /// Apply the DW_AT_stmt_list from this compile unit to the specified DIE.
78 void applyStmtList(DIE &D);
79
David Blaikied51dea62015-07-01 18:07:16 +000080 /// getOrCreateGlobalVariableDIE - get or create global variable DIE.
81 DIE *getOrCreateGlobalVariableDIE(const DIGlobalVariable *GV);
David Blaikie37c52312014-10-04 15:49:50 +000082
83 /// addLabelAddress - Add a dwarf label attribute data and value using
84 /// either DW_FORM_addr or DW_FORM_GNU_addr_index.
85 void addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
86 const MCSymbol *Label);
87
88 /// addLocalLabelAddress - Add a dwarf label attribute data and value using
89 /// DW_FORM_addr only.
90 void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute,
91 const MCSymbol *Label);
92
David Blaikiee5feec52014-10-08 23:30:05 +000093 /// addSectionDelta - Add a label delta attribute data and value.
Duncan P. N. Exon Smith4fb1f9c2015-06-25 23:46:41 +000094 DIE::value_iterator addSectionDelta(DIE &Die, dwarf::Attribute Attribute,
95 const MCSymbol *Hi, const MCSymbol *Lo);
David Blaikiee5feec52014-10-08 23:30:05 +000096
David Blaikie37c52312014-10-04 15:49:50 +000097 DwarfCompileUnit &getCU() override { return *this; }
98
99 unsigned getOrCreateSourceID(StringRef FileName, StringRef DirName) override;
100
101 /// addRange - Add an address range to the list of ranges for this unit.
102 void addRange(RangeSpan Range);
David Blaikie14499a72014-10-04 15:58:47 +0000103
104 void attachLowHighPC(DIE &D, const MCSymbol *Begin, const MCSymbol *End);
David Blaikiecda2aa82014-10-04 16:24:00 +0000105
David Blaikie6c0ee4e2014-10-08 22:46:27 +0000106 /// addSectionLabel - Add a Dwarf section label attribute data and value.
107 ///
Duncan P. N. Exon Smith4fb1f9c2015-06-25 23:46:41 +0000108 DIE::value_iterator addSectionLabel(DIE &Die, dwarf::Attribute Attribute,
109 const MCSymbol *Label,
110 const MCSymbol *Sec);
David Blaikie6c0ee4e2014-10-08 22:46:27 +0000111
David Blaikiecda2aa82014-10-04 16:24:00 +0000112 /// \brief Find DIE for the given subprogram and attach appropriate
113 /// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global
114 /// variables in this scope then create and insert DIEs for these
115 /// variables.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000116 DIE &updateSubprogramScopeDIE(const DISubprogram *SP);
David Blaikie9c65b132014-10-08 22:20:02 +0000117
118 void constructScopeDIE(LexicalScope *Scope,
Duncan P. N. Exon Smith827200c2015-06-25 23:52:10 +0000119 SmallVectorImpl<DIE *> &FinalChildren);
David Blaikie52400202014-10-09 00:11:39 +0000120
121 /// \brief A helper function to construct a RangeSpanList for a given
122 /// lexical scope.
David Blaikie5b02a192014-11-03 23:10:59 +0000123 void addScopeRangeList(DIE &ScopeDIE, SmallVector<RangeSpan, 2> Range);
124
125 void attachRangesOrLowHighPC(DIE &D, SmallVector<RangeSpan, 2> Ranges);
David Blaikiede123752014-10-09 00:21:42 +0000126
127 void attachRangesOrLowHighPC(DIE &D,
128 const SmallVectorImpl<InsnRange> &Ranges);
David Blaikie01b48a82014-10-09 16:50:53 +0000129 /// \brief This scope represents inlined body of a function. Construct
130 /// DIE to represent this concrete inlined copy of the function.
Duncan P. N. Exon Smith827200c2015-06-25 23:52:10 +0000131 DIE *constructInlinedScopeDIE(LexicalScope *Scope);
David Blaikie0fbf8bd2014-10-09 17:08:42 +0000132
133 /// \brief Construct new DW_TAG_lexical_block for this scope and
134 /// attach DW_AT_low_pc/DW_AT_high_pc labels.
Duncan P. N. Exon Smith827200c2015-06-25 23:52:10 +0000135 DIE *constructLexicalScopeDIE(LexicalScope *Scope);
David Blaikieee7df552014-10-09 17:56:36 +0000136
137 /// constructVariableDIE - Construct a DIE for the given DbgVariable.
Duncan P. N. Exon Smith827200c2015-06-25 23:52:10 +0000138 DIE *constructVariableDIE(DbgVariable &DV, bool Abstract = false);
David Blaikie4a1a44e2014-10-09 17:56:39 +0000139
Duncan P. N. Exon Smith827200c2015-06-25 23:52:10 +0000140 DIE *constructVariableDIE(DbgVariable &DV, const LexicalScope &Scope,
141 DIE *&ObjectPointer);
David Blaikie8b2fdb82014-10-09 18:24:28 +0000142
143 /// A helper function to create children of a Scope DIE.
144 DIE *createScopeChildrenDIE(LexicalScope *Scope,
Duncan P. N. Exon Smith827200c2015-06-25 23:52:10 +0000145 SmallVectorImpl<DIE *> &Children,
David Blaikie8b2fdb82014-10-09 18:24:28 +0000146 unsigned *ChildScopeCount = nullptr);
David Blaikie1d072342014-10-09 20:21:36 +0000147
148 /// \brief Construct a DIE for this subprogram scope.
149 void constructSubprogramScopeDIE(LexicalScope *Scope);
David Blaikie78b65b62014-10-09 20:26:15 +0000150
151 DIE *createAndAddScopeChildren(LexicalScope *Scope, DIE &ScopeDIE);
David Blaikie58410f22014-10-10 06:39:26 +0000152
David Blaikie49be5b32014-10-31 21:57:02 +0000153 void constructAbstractSubprogramScopeDIE(LexicalScope *Scope);
David Blaikie4191cbc2014-10-10 06:39:29 +0000154
Frederic Riss987fe222014-10-24 21:31:09 +0000155 /// \brief Construct import_module DIE.
Duncan P. N. Exon Smith827200c2015-06-25 23:52:10 +0000156 DIE *constructImportedEntityDIE(const DIImportedEntity *Module);
Frederic Riss987fe222014-10-24 21:31:09 +0000157
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000158 void finishSubprogramDefinition(const DISubprogram *SP);
David Blaikie1d96cc22014-10-31 22:30:30 +0000159
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000160 void collectDeadVariables(const DISubprogram *SP);
David Blaikie7cbf58a2014-11-01 18:18:07 +0000161
David Blaikie7cbf58a2014-11-01 18:18:07 +0000162 /// Set the skeleton unit associated with this unit.
David Blaikiea5437b62014-11-01 19:26:05 +0000163 void setSkeleton(DwarfCompileUnit &Skel) { Skeleton = &Skel; }
David Blaikiea34568b2014-11-01 20:06:28 +0000164
Rafael Espindola063d7252015-03-10 16:58:10 +0000165 const MCSymbol *getSectionSym() const {
David Blaikiea34568b2014-11-01 20:06:28 +0000166 assert(Section);
Rafael Espindola063d7252015-03-10 16:58:10 +0000167 return Section->getBeginSymbol();
David Blaikiea34568b2014-11-01 20:06:28 +0000168 }
169
David Blaikie983bfea2014-11-01 23:07:14 +0000170 unsigned getLength() {
171 return sizeof(uint32_t) + // Length field
172 getHeaderSize() + UnitDie.getSize();
173 }
David Blaikieae57e662014-11-01 23:59:23 +0000174
Rafael Espindola063d7252015-03-10 16:58:10 +0000175 void emitHeader(bool UseOffsets) override;
David Blaikief4bdc312014-11-02 01:21:40 +0000176
177 MCSymbol *getLabelBegin() const {
178 assert(Section);
179 return LabelBegin;
180 }
David Blaikie192b45c2014-11-02 06:16:39 +0000181
182 /// Add a new global name to the compile unit.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000183 void addGlobalName(StringRef Name, DIE &Die, const DIScope *Context) override;
David Blaikie192b45c2014-11-02 06:16:39 +0000184
185 /// Add a new global type to the compile unit.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000186 void addGlobalType(const DIType *Ty, const DIE &Die,
187 const DIScope *Context) override;
David Blaikie192b45c2014-11-02 06:16:39 +0000188
189 const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; }
190 const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; }
David Blaikie7d48be22014-11-02 06:37:23 +0000191
192 /// Add DW_AT_location attribute for a DbgVariable based on provided
193 /// MachineLocation.
194 void addVariableAddress(const DbgVariable &DV, DIE &Die,
195 MachineLocation Location);
David Blaikief7435ee2014-11-02 06:46:40 +0000196 /// Add an address attribute to a die based on the location provided.
197 void addAddress(DIE &Die, dwarf::Attribute Attribute,
Adrian Prantl5883af32015-01-19 17:57:29 +0000198 const MachineLocation &Location);
David Blaikie77895fb2014-11-02 06:58:44 +0000199
200 /// Start with the address based on the location provided, and generate the
201 /// DWARF information necessary to find the actual variable (navigating the
202 /// extra location information encoded in the type) based on the starting
203 /// location. Add the DWARF information to the die.
204 void addComplexAddress(const DbgVariable &DV, DIE &Die,
205 dwarf::Attribute Attribute,
206 const MachineLocation &Location);
David Blaikie4bc08812014-11-02 07:03:19 +0000207
208 /// Add a Dwarf loclistptr attribute data and value.
209 void addLocationList(DIE &Die, dwarf::Attribute Attribute, unsigned Index);
David Blaikie02a63332014-11-02 07:06:51 +0000210 void applyVariableAttributes(const DbgVariable &Var, DIE &VariableDie);
David Blaikie97802082014-11-02 07:11:55 +0000211
212 /// Add a Dwarf expression attribute data and value.
213 void addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr);
David Blaikie3363a572014-11-02 08:09:09 +0000214
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000215 void applySubprogramAttributesToDefinition(const DISubprogram *SP,
Duncan P. N. Exon Smith2fbe1352015-04-20 22:10:08 +0000216 DIE &SPDie);
David Blaikie89a26f02014-11-03 02:41:49 +0000217
David Blaikie89a26f02014-11-03 02:41:49 +0000218 /// getRangeLists - Get the vector of range lists.
219 const SmallVectorImpl<RangeSpanList> &getRangeLists() const {
David Blaikie542616d2014-11-03 21:52:56 +0000220 return (Skeleton ? Skeleton : this)->CURangeLists;
David Blaikie89a26f02014-11-03 02:41:49 +0000221 }
David Blaikiebc532b42014-11-03 16:40:43 +0000222
223 /// getRanges - Get the list of ranges for this unit.
224 const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; }
David Blaikie5b02a192014-11-03 23:10:59 +0000225 SmallVector<RangeSpan, 2> takeRanges() { return std::move(CURanges); }
David Blaikiece343492014-11-03 21:15:30 +0000226
227 void setBaseAddress(const MCSymbol *Base) { BaseAddress = Base; }
228 const MCSymbol *getBaseAddress() const { return BaseAddress; }
David Blaikie37c52312014-10-04 15:49:50 +0000229};
230
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000231} // end llvm namespace
David Blaikie37c52312014-10-04 15:49:50 +0000232
233#endif