blob: 5beae1e29c48101be43259b347b0524c10505695 [file] [log] [blame]
David Blaikie319a05f2013-12-02 19:33:10 +00001//===-- llvm/CodeGen/DwarfUnit.h - Dwarf Compile Unit ---*- C++ -*--===//
Devang Patel5eb43192011-04-12 17:40:32 +00002//
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 CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
15#define CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
16
17#include "DIE.h"
Eric Christopher9e429ae2013-10-05 00:27:02 +000018#include "DwarfDebug.h"
Devang Patel5eb43192011-04-12 17:40:32 +000019#include "llvm/ADT/DenseMap.h"
David Blaikief2443192013-10-21 17:28:37 +000020#include "llvm/ADT/Optional.h"
Chandler Carruth802d7552012-12-04 07:12:27 +000021#include "llvm/ADT/StringMap.h"
Adrian Prantl702bf5a2014-03-18 02:34:52 +000022#include "llvm/CodeGen/AsmPrinter.h"
Chandler Carruth12664a02014-03-06 00:22:06 +000023#include "llvm/IR/DIBuilder.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000024#include "llvm/IR/DebugInfo.h"
David Blaikief3cd7c52013-06-28 20:05:04 +000025#include "llvm/MC/MCExpr.h"
David Blaikie7d734602013-12-06 22:33:05 +000026#include "llvm/MC/MCSection.h"
David Blaikie4a2f95f2014-03-18 01:17:26 +000027#include "llvm/MC/MCDwarf.h"
Devang Patel5eb43192011-04-12 17:40:32 +000028
29namespace llvm {
30
Devang Patelf20c4f72011-04-12 22:53:02 +000031class MachineLocation;
32class MachineOperand;
33class ConstantInt;
David Blaikiea39a76e2013-01-20 01:18:01 +000034class ConstantFP;
Devang Patelf20c4f72011-04-12 22:53:02 +000035class DbgVariable;
David Blaikie15632ae2014-02-12 00:31:30 +000036class DwarfCompileUnit;
Devang Patelf20c4f72011-04-12 22:53:02 +000037
Eric Christopher0f63d062013-12-03 00:45:45 +000038// Data structure to hold a range for range lists.
39class RangeSpan {
40public:
41 RangeSpan(MCSymbol *S, MCSymbol *E) : Start(S), End(E) {}
Eric Christopher270ba4a2013-12-04 19:06:58 +000042 const MCSymbol *getStart() const { return Start; }
43 const MCSymbol *getEnd() const { return End; }
Eric Christopher384f3fe2014-03-20 19:16:16 +000044 void setEnd(const MCSymbol *E) { End = E; }
Eric Christopher0f63d062013-12-03 00:45:45 +000045
46private:
47 const MCSymbol *Start, *End;
48};
49
50class RangeSpanList {
51private:
52 // Index for locating within the debug_range section this particular span.
Eric Christopherf8790642013-12-04 22:04:50 +000053 MCSymbol *RangeSym;
Eric Christopher0f63d062013-12-03 00:45:45 +000054 // List of ranges.
55 SmallVector<RangeSpan, 2> Ranges;
56
57public:
Eric Christopherf8790642013-12-04 22:04:50 +000058 RangeSpanList(MCSymbol *Sym) : RangeSym(Sym) {}
59 MCSymbol *getSym() const { return RangeSym; }
Eric Christopher0f63d062013-12-03 00:45:45 +000060 const SmallVectorImpl<RangeSpan> &getRanges() const { return Ranges; }
61 void addRange(RangeSpan Range) { Ranges.push_back(Range); }
62};
63
David Blaikie44078b32014-04-30 22:41:33 +000064enum AbstractOrInlined { AOI_None, AOI_Inlined, AOI_Abstract };
65
Devang Patel5eb43192011-04-12 17:40:32 +000066//===----------------------------------------------------------------------===//
David Blaikie319a05f2013-12-02 19:33:10 +000067/// Unit - This dwarf writer support class manages information associated
Devang Patel5eb43192011-04-12 17:40:32 +000068/// with a source file.
Eric Christophera5a79422013-12-09 23:32:48 +000069class DwarfUnit {
David Blaikie319a05f2013-12-02 19:33:10 +000070protected:
Eli Benderskyb42d1462012-12-03 18:45:45 +000071 /// UniqueID - a numeric ID unique among all CUs in the module
Eli Benderskyb42d1462012-12-03 18:45:45 +000072 unsigned UniqueID;
Devang Patel5eb43192011-04-12 17:40:32 +000073
David Blaikie7480ae62014-01-09 03:03:27 +000074 /// Node - MDNode for the compile unit.
David Blaikief645f962014-01-09 03:23:41 +000075 DICompileUnit CUNode;
David Blaikie7480ae62014-01-09 03:03:27 +000076
David Blaikie2a80e442013-12-02 22:09:48 +000077 /// Unit debug information entry.
David Blaikiebd579052014-04-28 21:14:27 +000078 DIE UnitDie;
Devang Patel5eb43192011-04-12 17:40:32 +000079
David Blaikie2a80e442013-12-02 22:09:48 +000080 /// Offset of the UnitDie from beginning of debug info section.
Eric Christophera16725b2013-11-21 01:29:16 +000081 unsigned DebugInfoOffset;
82
Devang Patelf20c4f72011-04-12 22:53:02 +000083 /// Asm - Target of Dwarf emission.
84 AsmPrinter *Asm;
85
Eric Christophere698f532012-12-20 21:58:36 +000086 // Holders for some common dwarf information.
Devang Patelf20c4f72011-04-12 22:53:02 +000087 DwarfDebug *DD;
Eric Christopherf8194852013-12-05 18:06:10 +000088 DwarfFile *DU;
Devang Patelf20c4f72011-04-12 22:53:02 +000089
David Blaikie2a80e442013-12-02 22:09:48 +000090 /// IndexTyDie - An anonymous type for index type. Owned by UnitDie.
Devang Patel5eb43192011-04-12 17:40:32 +000091 DIE *IndexTyDie;
92
Eric Christopher61560112013-05-08 00:11:10 +000093 /// MDNodeToDieMap - Tracks the mapping of unit level debug information
Devang Patel5eb43192011-04-12 17:40:32 +000094 /// variables to debug information entries.
95 DenseMap<const MDNode *, DIE *> MDNodeToDieMap;
96
Eric Christopher61560112013-05-08 00:11:10 +000097 /// MDNodeToDIEEntryMap - Tracks the mapping of unit level debug information
Devang Patel5eb43192011-04-12 17:40:32 +000098 /// descriptors to debug information entries using a DIEEntry proxy.
99 DenseMap<const MDNode *, DIEEntry *> MDNodeToDIEEntryMap;
100
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +0000101 /// GlobalNames - A map of globally visible named entities for this unit.
Eric Christopher0fe676a2013-11-21 00:48:22 +0000102 StringMap<const DIE *> GlobalNames;
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +0000103
Devang Patel5eb43192011-04-12 17:40:32 +0000104 /// GlobalTypes - A map of globally visible types for this unit.
Eric Christopher0fe676a2013-11-21 00:48:22 +0000105 StringMap<const DIE *> GlobalTypes;
Devang Patel5eb43192011-04-12 17:40:32 +0000106
Devang Patelf20c4f72011-04-12 22:53:02 +0000107 /// DIEBlocks - A list of all the DIEBlocks in use.
108 std::vector<DIEBlock *> DIEBlocks;
Eric Christopher4a741042014-02-16 08:46:55 +0000109
110 /// DIELocs - A list of all the DIELocs in use.
111 std::vector<DIELoc *> DIELocs;
Devang Patelf20c4f72011-04-12 22:53:02 +0000112
Devang Patel89543712011-08-15 17:24:54 +0000113 /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that
114 /// need DW_AT_containing_type attribute. This attribute points to a DIE that
115 /// corresponds to the MDNode mapped with the subprogram DIE.
116 DenseMap<DIE *, const MDNode *> ContainingTypeMap;
117
Eric Christopher46e23432013-12-20 04:16:18 +0000118 // List of ranges for a given compile unit.
119 SmallVector<RangeSpan, 1> CURanges;
120
Eric Christopher0f63d062013-12-03 00:45:45 +0000121 // List of range lists for a given compile unit, separate from the ranges for
122 // the CU itself.
Eric Christopher270ba4a2013-12-04 19:06:58 +0000123 SmallVector<RangeSpanList, 1> CURangeLists;
Eric Christopher0f63d062013-12-03 00:45:45 +0000124
Eric Christopher3264a482013-10-05 00:39:55 +0000125 // DIEValueAllocator - All DIEValues are allocated through this allocator.
126 BumpPtrAllocator DIEValueAllocator;
127
128 // DIEIntegerOne - A preallocated DIEValue because 1 is used frequently.
129 DIEInteger *DIEIntegerOne;
130
David Blaikie03073f72013-12-06 22:14:48 +0000131 /// The section this unit will be emitted in.
132 const MCSection *Section;
133
134 /// A label at the start of the non-dwo section related to this unit.
135 MCSymbol *SectionSym;
136
David Blaikie7d734602013-12-06 22:33:05 +0000137 /// The start of the unit within its section.
138 MCSymbol *LabelBegin;
139
140 /// The end of the unit within its section.
141 MCSymbol *LabelEnd;
142
Eric Christopherd8667202013-12-30 17:22:27 +0000143 /// Skeleton unit associated with this unit.
144 DwarfUnit *Skeleton;
145
David Blaikiebd579052014-04-28 21:14:27 +0000146 DwarfUnit(unsigned UID, dwarf::Tag, DICompileUnit CU, AsmPrinter *A,
147 DwarfDebug *DW, DwarfFile *DWU);
David Blaikie319a05f2013-12-02 19:33:10 +0000148
Devang Patel5eb43192011-04-12 17:40:32 +0000149public:
Eric Christophera5a79422013-12-09 23:32:48 +0000150 virtual ~DwarfUnit();
Devang Patel5eb43192011-04-12 17:40:32 +0000151
Eric Christopherd8667202013-12-30 17:22:27 +0000152 /// Set the skeleton unit associated with this unit.
David Blaikief9b6a552014-04-22 22:39:41 +0000153 void setSkeleton(DwarfUnit &Skel) { Skeleton = &Skel; }
Eric Christopherd8667202013-12-30 17:22:27 +0000154
155 /// Get the skeleton unit associated with this unit.
156 DwarfUnit *getSkeleton() const { return Skeleton; }
157
David Blaikie03073f72013-12-06 22:14:48 +0000158 /// Pass in the SectionSym even though we could recreate it in every compile
159 /// unit (type units will have actually distinct symbols once they're in
160 /// comdat sections).
161 void initSection(const MCSection *Section, MCSymbol *SectionSym) {
162 assert(!this->Section);
163 this->Section = Section;
164 this->SectionSym = SectionSym;
David Blaikie7d734602013-12-06 22:33:05 +0000165 this->LabelBegin =
166 Asm->GetTempSymbol(Section->getLabelBeginName(), getUniqueID());
167 this->LabelEnd =
168 Asm->GetTempSymbol(Section->getLabelEndName(), getUniqueID());
David Blaikie03073f72013-12-06 22:14:48 +0000169 }
David Blaikie1ab7c2d2013-12-09 17:51:30 +0000170
David Blaikie03073f72013-12-06 22:14:48 +0000171 const MCSection *getSection() const {
172 assert(Section);
173 return Section;
174 }
175
Eric Christopherd8667202013-12-30 17:22:27 +0000176 /// If there's a skeleton then return the section symbol for the skeleton
177 /// unit, otherwise return the section symbol for this unit.
178 MCSymbol *getLocalSectionSym() const {
179 if (Skeleton)
180 return Skeleton->getSectionSym();
Eric Christopherd4368fd2014-01-02 21:03:28 +0000181 return getSectionSym();
Eric Christopherd8667202013-12-30 17:22:27 +0000182 }
183
David Blaikie7d734602013-12-06 22:33:05 +0000184 MCSymbol *getSectionSym() const {
David Blaikie03073f72013-12-06 22:14:48 +0000185 assert(Section);
186 return SectionSym;
187 }
188
Eric Christopherd8667202013-12-30 17:22:27 +0000189 /// If there's a skeleton then return the begin label for the skeleton unit,
190 /// otherwise return the local label for this unit.
191 MCSymbol *getLocalLabelBegin() const {
192 if (Skeleton)
193 return Skeleton->getLabelBegin();
Eric Christopherd4368fd2014-01-02 21:03:28 +0000194 return getLabelBegin();
Eric Christopherd8667202013-12-30 17:22:27 +0000195 }
196
David Blaikie7d734602013-12-06 22:33:05 +0000197 MCSymbol *getLabelBegin() const {
198 assert(Section);
199 return LabelBegin;
200 }
201
202 MCSymbol *getLabelEnd() const {
203 assert(Section);
204 return LabelEnd;
205 }
206
Devang Patel5eb43192011-04-12 17:40:32 +0000207 // Accessors.
Eric Christopherca68bbf2013-08-26 23:58:22 +0000208 unsigned getUniqueID() const { return UniqueID; }
David Blaikief645f962014-01-09 03:23:41 +0000209 uint16_t getLanguage() const { return CUNode.getLanguage(); }
210 DICompileUnit getCUNode() const { return CUNode; }
David Blaikiebd579052014-04-28 21:14:27 +0000211 DIE &getUnitDie() { return UnitDie; }
Eric Christopher0fe676a2013-11-21 00:48:22 +0000212 const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; }
213 const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; }
Devang Patel5eb43192011-04-12 17:40:32 +0000214
Manman Rence20d462013-10-29 22:57:10 +0000215 unsigned getDebugInfoOffset() const { return DebugInfoOffset; }
216 void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; }
217
Devang Patel5eb43192011-04-12 17:40:32 +0000218 /// hasContent - Return true if this compile unit has something to write out.
David Blaikiebd579052014-04-28 21:14:27 +0000219 bool hasContent() const { return !UnitDie.getChildren().empty(); }
Devang Patel5eb43192011-04-12 17:40:32 +0000220
Eric Christopher46e23432013-12-20 04:16:18 +0000221 /// addRange - Add an address range to the list of ranges for this unit.
Eric Christopher384f3fe2014-03-20 19:16:16 +0000222 void addRange(RangeSpan Range);
Eric Christopher46e23432013-12-20 04:16:18 +0000223
224 /// getRanges - Get the list of ranges for this unit.
225 const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; }
226 SmallVectorImpl<RangeSpan> &getRanges() { return CURanges; }
227
Eric Christopher0f63d062013-12-03 00:45:45 +0000228 /// addRangeList - Add an address range list to the list of range lists.
Eric Christopher270ba4a2013-12-04 19:06:58 +0000229 void addRangeList(RangeSpanList Ranges) { CURangeLists.push_back(Ranges); }
Eric Christopher0f63d062013-12-03 00:45:45 +0000230
231 /// getRangeLists - Get the vector of range lists.
Eric Christopher270ba4a2013-12-04 19:06:58 +0000232 const SmallVectorImpl<RangeSpanList> &getRangeLists() const {
Eric Christopher0f63d062013-12-03 00:45:45 +0000233 return CURangeLists;
234 }
Eric Christopher270ba4a2013-12-04 19:06:58 +0000235 SmallVectorImpl<RangeSpanList> &getRangeLists() { return CURangeLists; }
Eric Christopher0f63d062013-12-03 00:45:45 +0000236
Eric Christopher2c8b7902013-10-17 02:06:06 +0000237 /// getParentContextString - Get a string containing the language specific
238 /// context for a global name.
239 std::string getParentContextString(DIScope Context) const;
240
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +0000241 /// addGlobalName - Add a new global entity to the compile unit.
242 ///
David Blaikie65a74662014-04-25 18:26:14 +0000243 void addGlobalName(StringRef Name, DIE &Die, DIScope Context);
Krzysztof Parzyszek228daa62013-02-12 18:00:14 +0000244
Eric Christopher9cd26af2013-09-20 23:22:52 +0000245 /// addAccelNamespace - Add a new name to the namespace accelerator table.
David Blaikie65a74662014-04-25 18:26:14 +0000246 void addAccelNamespace(StringRef Name, const DIE &Die);
Eric Christopher9cd26af2013-09-20 23:22:52 +0000247
Devang Patel5eb43192011-04-12 17:40:32 +0000248 /// getDIE - Returns the debug information entry map slot for the
Manman Ren4dbdc902013-10-31 17:54:35 +0000249 /// specified debug variable. We delegate the request to DwarfDebug
250 /// when the MDNode can be part of the type system, since DIEs for
251 /// the type system can be shared across CUs and the mappings are
252 /// kept in DwarfDebug.
David Blaikie2ad00162013-11-15 23:09:13 +0000253 DIE *getDIE(DIDescriptor D) const;
Devang Patel5eb43192011-04-12 17:40:32 +0000254
Eric Christopher4a741042014-02-16 08:46:55 +0000255 /// getDIELoc - Returns a fresh newly allocated DIELoc.
256 DIELoc *getDIELoc() { return new (DIEValueAllocator) DIELoc(); }
Devang Patelf20c4f72011-04-12 22:53:02 +0000257
Manman Ren4dbdc902013-10-31 17:54:35 +0000258 /// insertDIE - Insert DIE into the map. We delegate the request to DwarfDebug
259 /// when the MDNode can be part of the type system, since DIEs for
260 /// the type system can be shared across CUs and the mappings are
261 /// kept in DwarfDebug.
David Blaikie2ad00162013-11-15 23:09:13 +0000262 void insertDIE(DIDescriptor Desc, DIE *D);
Devang Patel5eb43192011-04-12 17:40:32 +0000263
Eric Christopherbb69a272012-08-24 01:14:27 +0000264 /// addFlag - Add a flag that is true to the DIE.
David Blaikie65a74662014-04-25 18:26:14 +0000265 void addFlag(DIE &Die, dwarf::Attribute Attribute);
Eric Christopher48fef592012-12-20 21:58:40 +0000266
Devang Patelf20c4f72011-04-12 22:53:02 +0000267 /// addUInt - Add an unsigned integer attribute data and value.
David Blaikie65a74662014-04-25 18:26:14 +0000268 void addUInt(DIE &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
David Blaikief2443192013-10-21 17:28:37 +0000269 uint64_t Integer);
270
David Blaikie65a74662014-04-25 18:26:14 +0000271 void addUInt(DIE &Block, dwarf::Form Form, uint64_t Integer);
Devang Patelf20c4f72011-04-12 22:53:02 +0000272
273 /// addSInt - Add an signed integer attribute data and value.
David Blaikie65a74662014-04-25 18:26:14 +0000274 void addSInt(DIE &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
David Blaikief2443192013-10-21 17:28:37 +0000275 int64_t Integer);
276
David Blaikie65a74662014-04-25 18:26:14 +0000277 void addSInt(DIELoc &Die, Optional<dwarf::Form> Form, int64_t Integer);
Devang Patelf20c4f72011-04-12 22:53:02 +0000278
279 /// addString - Add a string attribute data and value.
David Blaikie65a74662014-04-25 18:26:14 +0000280 void addString(DIE &Die, dwarf::Attribute Attribute, const StringRef Str);
Devang Patelf20c4f72011-04-12 22:53:02 +0000281
Eric Christopher2cbd5762013-01-07 19:32:41 +0000282 /// addLocalString - Add a string attribute data and value.
David Blaikie65a74662014-04-25 18:26:14 +0000283 void addLocalString(DIE &Die, dwarf::Attribute Attribute,
Eric Christophera07e4f52013-11-19 09:28:34 +0000284 const StringRef Str);
Eric Christopher2cbd5762013-01-07 19:32:41 +0000285
Ulrich Weigand396ba8b2013-07-02 18:46:26 +0000286 /// addExpr - Add a Dwarf expression attribute data and value.
David Blaikie65a74662014-04-25 18:26:14 +0000287 void addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr);
Ulrich Weigand396ba8b2013-07-02 18:46:26 +0000288
Devang Patelf20c4f72011-04-12 22:53:02 +0000289 /// addLabel - Add a Dwarf label attribute data and value.
David Blaikie65a74662014-04-25 18:26:14 +0000290 void addLabel(DIE &Die, dwarf::Attribute Attribute, dwarf::Form Form,
Devang Patelf20c4f72011-04-12 22:53:02 +0000291 const MCSymbol *Label);
292
David Blaikie65a74662014-04-25 18:26:14 +0000293 void addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label);
David Blaikief2443192013-10-21 17:28:37 +0000294
Eric Christophera27220f2014-03-05 22:41:20 +0000295 /// addLocationList - Add a Dwarf loclistptr attribute data and value.
David Blaikie65a74662014-04-25 18:26:14 +0000296 void addLocationList(DIE &Die, dwarf::Attribute Attribute, unsigned Index);
Eric Christophera27220f2014-03-05 22:41:20 +0000297
Eric Christopher33ff6972013-11-21 23:46:41 +0000298 /// addSectionLabel - Add a Dwarf section label attribute data and value.
299 ///
David Blaikie65a74662014-04-25 18:26:14 +0000300 void addSectionLabel(DIE &Die, dwarf::Attribute Attribute,
Eric Christopherf52eddf2013-11-26 22:23:27 +0000301 const MCSymbol *Label);
Eric Christopher33ff6972013-11-21 23:46:41 +0000302
303 /// addSectionOffset - Add an offset into a section attribute data and value.
304 ///
David Blaikie65a74662014-04-25 18:26:14 +0000305 void addSectionOffset(DIE &Die, dwarf::Attribute Attribute, uint64_t Integer);
Eric Christopher33ff6972013-11-21 23:46:41 +0000306
Eric Christophere9ec2452013-01-18 22:11:33 +0000307 /// addOpAddress - Add a dwarf op address data and value using the
308 /// form given and an op of either DW_FORM_addr or DW_FORM_GNU_addr_index.
David Blaikie65a74662014-04-25 18:26:14 +0000309 void addOpAddress(DIELoc &Die, const MCSymbol *Label);
Eric Christophere9ec2452013-01-18 22:11:33 +0000310
Eric Christopher33ff6972013-11-21 23:46:41 +0000311 /// addSectionDelta - Add a label delta attribute data and value.
David Blaikie65a74662014-04-25 18:26:14 +0000312 void addSectionDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
Eric Christopher33ff6972013-11-21 23:46:41 +0000313 const MCSymbol *Lo);
Devang Patelf20c4f72011-04-12 22:53:02 +0000314
David Blaikie48b1bdc2014-03-07 01:30:55 +0000315 /// addLabelDelta - Add a label delta attribute data and value.
David Blaikie65a74662014-04-25 18:26:14 +0000316 void addLabelDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
David Blaikie48b1bdc2014-03-07 01:30:55 +0000317 const MCSymbol *Lo);
318
Devang Patelf20c4f72011-04-12 22:53:02 +0000319 /// addDIEEntry - Add a DIE attribute data and value.
David Blaikie8dbcc3f2014-04-25 19:33:43 +0000320 void addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIE &Entry);
Eric Christopher48fef592012-12-20 21:58:40 +0000321
Manman Ren4dbdc902013-10-31 17:54:35 +0000322 /// addDIEEntry - Add a DIE attribute data and value.
David Blaikie65a74662014-04-25 18:26:14 +0000323 void addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIEEntry *Entry);
Manman Ren4dbdc902013-10-31 17:54:35 +0000324
David Blaikie65a74662014-04-25 18:26:14 +0000325 void addDIETypeSignature(DIE &Die, const DwarfTypeUnit &Type);
David Blaikie47f615e2013-12-17 23:32:35 +0000326
Devang Patelf20c4f72011-04-12 22:53:02 +0000327 /// addBlock - Add block data.
David Blaikie65a74662014-04-25 18:26:14 +0000328 void addBlock(DIE &Die, dwarf::Attribute Attribute, DIELoc *Block);
Eric Christopher4a741042014-02-16 08:46:55 +0000329
330 /// addBlock - Add block data.
David Blaikie65a74662014-04-25 18:26:14 +0000331 void addBlock(DIE &Die, dwarf::Attribute Attribute, DIEBlock *Block);
Devang Patelf20c4f72011-04-12 22:53:02 +0000332
333 /// addSourceLine - Add location information to specified debug information
334 /// entry.
David Blaikie65a74662014-04-25 18:26:14 +0000335 void addSourceLine(DIE &Die, unsigned Line, StringRef File,
David Blaikie101613e2014-02-12 00:11:25 +0000336 StringRef Directory);
David Blaikie65a74662014-04-25 18:26:14 +0000337 void addSourceLine(DIE &Die, DIVariable V);
338 void addSourceLine(DIE &Die, DIGlobalVariable G);
339 void addSourceLine(DIE &Die, DISubprogram SP);
340 void addSourceLine(DIE &Die, DIType Ty);
341 void addSourceLine(DIE &Die, DINameSpace NS);
342 void addSourceLine(DIE &Die, DIObjCProperty Ty);
Devang Patelf20c4f72011-04-12 22:53:02 +0000343
344 /// addAddress - Add an address attribute to a die based on the location
345 /// provided.
David Blaikie65a74662014-04-25 18:26:14 +0000346 void addAddress(DIE &Die, dwarf::Attribute Attribute,
Eric Christophera07e4f52013-11-19 09:28:34 +0000347 const MachineLocation &Location, bool Indirect = false);
Devang Patelf20c4f72011-04-12 22:53:02 +0000348
Devang Patelf20c4f72011-04-12 22:53:02 +0000349 /// addConstantValue - Add constant value entry in variable DIE.
David Blaikie65a74662014-04-25 18:26:14 +0000350 void addConstantValue(DIE &Die, const MachineOperand &MO, DIType Ty);
351 void addConstantValue(DIE &Die, const ConstantInt *CI, bool Unsigned);
352 void addConstantValue(DIE &Die, const APInt &Val, bool Unsigned);
Devang Patelf20c4f72011-04-12 22:53:02 +0000353
354 /// addConstantFPValue - Add constant value entry in variable DIE.
David Blaikie65a74662014-04-25 18:26:14 +0000355 void addConstantFPValue(DIE &Die, const MachineOperand &MO);
356 void addConstantFPValue(DIE &Die, const ConstantFP *CFP);
Devang Patelf20c4f72011-04-12 22:53:02 +0000357
358 /// addTemplateParams - Add template parameters in buffer.
359 void addTemplateParams(DIE &Buffer, DIArray TParams);
360
Devang Patelba5fbf12011-04-26 19:06:18 +0000361 /// addRegisterOp - Add register operand.
David Blaikie65a74662014-04-25 18:26:14 +0000362 void addRegisterOp(DIELoc &TheDie, unsigned Reg);
Devang Patelba5fbf12011-04-26 19:06:18 +0000363
364 /// addRegisterOffset - Add register offset.
David Blaikie65a74662014-04-25 18:26:14 +0000365 void addRegisterOffset(DIELoc &TheDie, unsigned Reg, int64_t Offset);
Devang Patelba5fbf12011-04-26 19:06:18 +0000366
Devang Patelf20c4f72011-04-12 22:53:02 +0000367 /// addComplexAddress - Start with the address based on the location provided,
368 /// and generate the DWARF information necessary to find the actual variable
369 /// (navigating the extra location information encoded in the type) based on
370 /// the starting location. Add the DWARF information to the die.
David Blaikie65a74662014-04-25 18:26:14 +0000371 void addComplexAddress(const DbgVariable &DV, DIE &Die,
Eric Christophera07e4f52013-11-19 09:28:34 +0000372 dwarf::Attribute Attribute,
Devang Patelf20c4f72011-04-12 22:53:02 +0000373 const MachineLocation &Location);
374
375 // FIXME: Should be reformulated in terms of addComplexAddress.
376 /// addBlockByrefAddress - Start with the address based on the location
377 /// provided, and generate the DWARF information necessary to find the
378 /// actual Block variable (navigating the Block struct) based on the
379 /// starting location. Add the DWARF information to the die. Obsolete,
380 /// please use addComplexAddress instead.
David Blaikie65a74662014-04-25 18:26:14 +0000381 void addBlockByrefAddress(const DbgVariable &DV, DIE &Die,
Eric Christophera07e4f52013-11-19 09:28:34 +0000382 dwarf::Attribute Attribute,
Devang Patelf20c4f72011-04-12 22:53:02 +0000383 const MachineLocation &Location);
384
Eric Christopher48fef592012-12-20 21:58:40 +0000385 /// addVariableAddress - Add DW_AT_location attribute for a
Devang Patel77dc5412011-04-27 22:45:24 +0000386 /// DbgVariable based on provided MachineLocation.
David Blaikie65a74662014-04-25 18:26:14 +0000387 void addVariableAddress(const DbgVariable &DV, DIE &Die,
Eric Christopherbf2d23c2013-06-24 21:07:27 +0000388 MachineLocation Location);
Devang Patelf20c4f72011-04-12 22:53:02 +0000389
Eric Christopher7285c7d2012-03-28 07:34:31 +0000390 /// addType - Add a new type attribute to the specified entity. This takes
391 /// and attribute parameter because DW_AT_friend attributes are also
392 /// type references.
David Blaikie65a74662014-04-25 18:26:14 +0000393 void addType(DIE &Entity, DIType Ty,
Eric Christophera07e4f52013-11-19 09:28:34 +0000394 dwarf::Attribute Attribute = dwarf::DW_AT_type);
Devang Patelf20c4f72011-04-12 22:53:02 +0000395
396 /// getOrCreateNameSpace - Create a DIE for DINameSpace.
397 DIE *getOrCreateNameSpace(DINameSpace NS);
398
Devang Patel89543712011-08-15 17:24:54 +0000399 /// getOrCreateSubprogramDIE - Create new DIE using SP.
400 DIE *getOrCreateSubprogramDIE(DISubprogram SP);
401
Devang Patelf20c4f72011-04-12 22:53:02 +0000402 /// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
403 /// given DIType.
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000404 DIE *getOrCreateTypeDIE(const MDNode *N);
Devang Patelf20c4f72011-04-12 22:53:02 +0000405
Eric Christopherfa205ca2013-10-05 00:05:51 +0000406 /// getOrCreateContextDIE - Get context owner's DIE.
David Blaikie409dd9c2013-11-19 23:08:21 +0000407 DIE *createTypeDIE(DICompositeType Ty);
408
409 /// getOrCreateContextDIE - Get context owner's DIE.
Eric Christopherfa205ca2013-10-05 00:05:51 +0000410 DIE *getOrCreateContextDIE(DIScope Context);
Devang Patelf20c4f72011-04-12 22:53:02 +0000411
Eric Christopherfa205ca2013-10-05 00:05:51 +0000412 /// constructContainingTypeDIEs - Construct DIEs for types that contain
413 /// vtables.
414 void constructContainingTypeDIEs();
Devang Patelf20c4f72011-04-12 22:53:02 +0000415
Eric Christopherfa205ca2013-10-05 00:05:51 +0000416 /// constructVariableDIE - Construct a DIE for the given DbgVariable.
David Blaikie914046e2014-04-25 20:00:34 +0000417 std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV,
David Blaikie44078b32014-04-30 22:41:33 +0000418 AbstractOrInlined AbsIn = AOI_None);
Eric Christopherfa205ca2013-10-05 00:05:51 +0000419
Adrian Prantl69140d22014-02-25 22:27:14 +0000420 /// constructSubprogramArguments - Construct function argument DIEs.
David Blaikie3b2a53a2014-04-30 21:29:41 +0000421 DIE *constructSubprogramArguments(DIE &Buffer, DIArray Args);
Adrian Prantl69140d22014-02-25 22:27:14 +0000422
Manman Renb987e512013-10-29 00:53:03 +0000423 /// Create a DIE with the given Tag, add the DIE to its parent, and
424 /// call insertDIE if MD is not null.
David Blaikieb0b3fcf2014-04-25 18:52:29 +0000425 DIE &createAndAddDIE(unsigned Tag, DIE &Parent,
Eric Christophera07e4f52013-11-19 09:28:34 +0000426 DIDescriptor N = DIDescriptor());
Manman Renb987e512013-10-29 00:53:03 +0000427
David Blaikie6b288cf2013-10-30 20:42:41 +0000428 /// Compute the size of a header for this unit, not including the initial
429 /// length field.
David Blaikiebc563272013-12-13 21:33:40 +0000430 virtual unsigned getHeaderSize() const {
David Blaikie6b288cf2013-10-30 20:42:41 +0000431 return sizeof(int16_t) + // DWARF version number
432 sizeof(int32_t) + // Offset Into Abbrev. Section
433 sizeof(int8_t); // Pointer Size (in bytes)
434 }
435
436 /// Emit the header for this unit, not including the initial length field.
David Blaikied82b2372014-03-24 20:28:10 +0000437 virtual void emitHeader(const MCSymbol *ASectionSym) const;
David Blaikie6b288cf2013-10-30 20:42:41 +0000438
David Blaikie15632ae2014-02-12 00:31:30 +0000439 virtual DwarfCompileUnit &getCU() = 0;
David Blaikied696fac2014-02-12 00:32:05 +0000440
David Blaikiee12b49a2014-04-26 17:27:38 +0000441 /// constructTypeDIE - Construct type DIE from DICompositeType.
442 void constructTypeDIE(DIE &Buffer, DICompositeType CTy);
443
David Blaikie319a05f2013-12-02 19:33:10 +0000444protected:
445 /// getOrCreateStaticMemberDIE - Create new static data member DIE.
446 DIE *getOrCreateStaticMemberDIE(DIDerivedType DT);
447
David Blaikie4a2f95f2014-03-18 01:17:26 +0000448 /// Look up the source ID with the given directory and source file names. If
449 /// none currently exists, create a new ID and insert it in the line table.
450 virtual unsigned getOrCreateSourceID(StringRef File, StringRef Directory) = 0;
451
Eric Christopherfa205ca2013-10-05 00:05:51 +0000452private:
David Blaikiee071fc82014-04-25 17:32:19 +0000453 /// \brief Construct a DIE for the given DbgVariable without initializing the
454 /// DbgVariable's DIE reference.
David Blaikie914046e2014-04-25 20:00:34 +0000455 std::unique_ptr<DIE> constructVariableDIEImpl(const DbgVariable &DV,
David Blaikie44078b32014-04-30 22:41:33 +0000456 AbstractOrInlined AbsIn);
David Blaikiee071fc82014-04-25 17:32:19 +0000457
Devang Patelf20c4f72011-04-12 22:53:02 +0000458 /// constructTypeDIE - Construct basic type die from DIBasicType.
Eric Christopherf0388b72013-10-04 23:49:29 +0000459 void constructTypeDIE(DIE &Buffer, DIBasicType BTy);
Devang Patelf20c4f72011-04-12 22:53:02 +0000460
461 /// constructTypeDIE - Construct derived type die from DIDerivedType.
Eric Christopherf0388b72013-10-04 23:49:29 +0000462 void constructTypeDIE(DIE &Buffer, DIDerivedType DTy);
Devang Patelf20c4f72011-04-12 22:53:02 +0000463
Devang Patelf20c4f72011-04-12 22:53:02 +0000464 /// constructSubrangeDIE - Construct subrange DIE from DISubrange.
465 void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy);
466
467 /// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
Eric Christopherdf9955d2013-11-11 18:52:31 +0000468 void constructArrayTypeDIE(DIE &Buffer, DICompositeType CTy);
Devang Patelf20c4f72011-04-12 22:53:02 +0000469
470 /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
Eric Christopheraeb105f2013-11-11 18:52:39 +0000471 void constructEnumTypeDIE(DIE &Buffer, DICompositeType CTy);
Devang Patelf20c4f72011-04-12 22:53:02 +0000472
Manman Ren230ec862013-10-23 23:00:44 +0000473 /// constructMemberDIE - Construct member DIE from DIDerivedType.
474 void constructMemberDIE(DIE &Buffer, DIDerivedType DT);
Manman Ren7cc62702013-10-18 21:14:19 +0000475
Manman Renffc9a712013-10-23 23:05:28 +0000476 /// constructTemplateTypeParameterDIE - Construct new DIE for the given
477 /// DITemplateTypeParameter.
478 void constructTemplateTypeParameterDIE(DIE &Buffer,
479 DITemplateTypeParameter TP);
Manman Ren7cc62702013-10-18 21:14:19 +0000480
Manman Renffc9a712013-10-23 23:05:28 +0000481 /// constructTemplateValueParameterDIE - Construct new DIE for the given
482 /// DITemplateValueParameter.
483 void constructTemplateValueParameterDIE(DIE &Buffer,
484 DITemplateValueParameter TVP);
Devang Patelf20c4f72011-04-12 22:53:02 +0000485
Eric Christopherfa205ca2013-10-05 00:05:51 +0000486 /// getLowerBoundDefault - Return the default lower bound for an array. If the
487 /// DWARF version doesn't handle the language, return -1.
488 int64_t getDefaultLowerBound() const;
489
490 /// getDIEEntry - Returns the debug information entry for the specified
491 /// debug variable.
492 DIEEntry *getDIEEntry(const MDNode *N) const {
493 return MDNodeToDIEEntryMap.lookup(N);
494 }
495
496 /// insertDIEEntry - Insert debug information entry into the map.
497 void insertDIEEntry(const MDNode *N, DIEEntry *E) {
498 MDNodeToDIEEntryMap.insert(std::make_pair(N, E));
499 }
500
501 // getIndexTyDie - Get an anonymous type for index type.
502 DIE *getIndexTyDie() { return IndexTyDie; }
503
504 // setIndexTyDie - Set D as anonymous type for index which can be reused
505 // later.
506 void setIndexTyDie(DIE *D) { IndexTyDie = D; }
507
508 /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
509 /// information entry.
David Blaikie8dbcc3f2014-04-25 19:33:43 +0000510 DIEEntry *createDIEEntry(DIE &Entry);
David Blaikie684fc532013-05-06 23:33:07 +0000511
Eric Christopher9e429ae2013-10-05 00:27:02 +0000512 /// resolve - Look in the DwarfDebug map for the MDNode that
Eric Christopher87b9c492013-10-05 00:32:34 +0000513 /// corresponds to the reference.
Eric Christopher9e429ae2013-10-05 00:27:02 +0000514 template <typename T> T resolve(DIRef<T> Ref) const {
515 return DD->resolve(Ref);
516 }
David Blaikie2ea848b2013-11-19 22:51:04 +0000517
518 /// If this is a named finished type then include it in the list of types for
519 /// the accelerator tables.
David Blaikieb0b3fcf2014-04-25 18:52:29 +0000520 void updateAcceleratorTables(DIScope Context, DIType Ty, const DIE &TyDIE);
Devang Patel5eb43192011-04-12 17:40:32 +0000521};
522
Eric Christopher4287a492013-12-09 23:57:44 +0000523class DwarfCompileUnit : public DwarfUnit {
David Blaikie60e63862014-02-14 23:58:13 +0000524 /// The attribute index of DW_AT_stmt_list in the compile unit DIE, avoiding
525 /// the need to search for it in applyStmtList.
526 unsigned stmtListIndex;
527
David Blaikie319a05f2013-12-02 19:33:10 +0000528public:
David Blaikiebd579052014-04-28 21:14:27 +0000529 DwarfCompileUnit(unsigned UID, DICompileUnit Node, AsmPrinter *A,
530 DwarfDebug *DW, DwarfFile *DWU);
David Blaikie319a05f2013-12-02 19:33:10 +0000531
David Blaikie2494fdb2014-02-14 22:41:51 +0000532 void initStmtList(MCSymbol *DwarfLineSectionSym);
533
David Blaikie60e63862014-02-14 23:58:13 +0000534 /// Apply the DW_AT_stmt_list from this compile unit to the specified DIE.
535 void applyStmtList(DIE &D);
536
David Blaikie319a05f2013-12-02 19:33:10 +0000537 /// createGlobalVariableDIE - create global variable DIE.
538 void createGlobalVariableDIE(DIGlobalVariable GV);
539
540 /// addLabelAddress - Add a dwarf label attribute data and value using
541 /// either DW_FORM_addr or DW_FORM_GNU_addr_index.
David Blaikie65a74662014-04-25 18:26:14 +0000542 void addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
Eric Christopher384f3fe2014-03-20 19:16:16 +0000543 const MCSymbol *Label);
544
545 /// addLocalLabelAddress - Add a dwarf label attribute data and value using
546 /// DW_FORM_addr only.
David Blaikie65a74662014-04-25 18:26:14 +0000547 void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute,
Eric Christopher384f3fe2014-03-20 19:16:16 +0000548 const MCSymbol *Label);
David Blaikie15632ae2014-02-12 00:31:30 +0000549
Craig Topper73156022014-03-02 09:09:27 +0000550 DwarfCompileUnit &getCU() override { return *this; }
David Blaikie0e8d4012014-03-17 23:53:25 +0000551
David Blaikie4a2f95f2014-03-18 01:17:26 +0000552 unsigned getOrCreateSourceID(StringRef FileName, StringRef DirName) override;
David Blaikie319a05f2013-12-02 19:33:10 +0000553};
554
Eric Christopher4287a492013-12-09 23:57:44 +0000555class DwarfTypeUnit : public DwarfUnit {
David Blaikie319a05f2013-12-02 19:33:10 +0000556private:
David Blaikiebc563272013-12-13 21:33:40 +0000557 uint64_t TypeSignature;
558 const DIE *Ty;
David Blaikie15632ae2014-02-12 00:31:30 +0000559 DwarfCompileUnit &CU;
David Blaikie8287aff2014-03-18 02:13:23 +0000560 MCDwarfDwoLineTable *SplitLineTable;
David Blaikie319a05f2013-12-02 19:33:10 +0000561
562public:
David Blaikiebd579052014-04-28 21:14:27 +0000563 DwarfTypeUnit(unsigned UID, DwarfCompileUnit &CU, AsmPrinter *A,
564 DwarfDebug *DW, DwarfFile *DWU,
David Blaikie8287aff2014-03-18 02:13:23 +0000565 MCDwarfDwoLineTable *SplitLineTable = nullptr);
David Blaikie319a05f2013-12-02 19:33:10 +0000566
David Blaikiebc563272013-12-13 21:33:40 +0000567 void setTypeSignature(uint64_t Signature) { TypeSignature = Signature; }
David Blaikie47f615e2013-12-17 23:32:35 +0000568 uint64_t getTypeSignature() const { return TypeSignature; }
David Blaikiebc563272013-12-13 21:33:40 +0000569 void setType(const DIE *Ty) { this->Ty = Ty; }
570
David Blaikiebc563272013-12-13 21:33:40 +0000571 /// Emit the header for this unit, not including the initial length field.
David Blaikied82b2372014-03-24 20:28:10 +0000572 void emitHeader(const MCSymbol *ASectionSym) const override;
Craig Topper73156022014-03-02 09:09:27 +0000573 unsigned getHeaderSize() const override {
David Blaikiebc563272013-12-13 21:33:40 +0000574 return DwarfUnit::getHeaderSize() + sizeof(uint64_t) + // Type Signature
575 sizeof(uint32_t); // Type DIE Offset
576 }
577 void initSection(const MCSection *Section);
Craig Topper73156022014-03-02 09:09:27 +0000578 DwarfCompileUnit &getCU() override { return CU; }
David Blaikie4a2f95f2014-03-18 01:17:26 +0000579
580protected:
581 unsigned getOrCreateSourceID(StringRef File, StringRef Directory) override;
David Blaikie319a05f2013-12-02 19:33:10 +0000582};
Devang Patel5eb43192011-04-12 17:40:32 +0000583} // end llvm namespace
584#endif