c700b2a10b878412b8b3d44a87698afcb0623947
[oota-llvm.git] / lib / CodeGen / AsmPrinter / DwarfUnit.h
1 //===-- llvm/CodeGen/DwarfUnit.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_DWARFUNIT_H
15 #define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFUNIT_H
16
17 #include "DwarfDebug.h"
18 #include "llvm/ADT/DenseMap.h"
19 #include "llvm/ADT/Optional.h"
20 #include "llvm/ADT/StringMap.h"
21 #include "llvm/CodeGen/AsmPrinter.h"
22 #include "llvm/CodeGen/DIE.h"
23 #include "llvm/IR/DIBuilder.h"
24 #include "llvm/IR/DebugInfo.h"
25 #include "llvm/MC/MCDwarf.h"
26 #include "llvm/MC/MCExpr.h"
27 #include "llvm/MC/MCSection.h"
28
29 namespace llvm {
30
31 class MachineLocation;
32 class MachineOperand;
33 class ConstantInt;
34 class ConstantFP;
35 class DbgVariable;
36 class DwarfCompileUnit;
37
38 // Data structure to hold a range for range lists.
39 class RangeSpan {
40 public:
41   RangeSpan(MCSymbol *S, MCSymbol *E) : Start(S), End(E) {}
42   const MCSymbol *getStart() const { return Start; }
43   const MCSymbol *getEnd() const { return End; }
44   void setEnd(const MCSymbol *E) { End = E; }
45
46 private:
47   const MCSymbol *Start, *End;
48 };
49
50 class RangeSpanList {
51 private:
52   // Index for locating within the debug_range section this particular span.
53   MCSymbol *RangeSym;
54   // List of ranges.
55   SmallVector<RangeSpan, 2> Ranges;
56
57 public:
58   RangeSpanList(MCSymbol *Sym, SmallVector<RangeSpan, 2> Ranges)
59       : RangeSym(Sym), Ranges(std::move(Ranges)) {}
60   MCSymbol *getSym() const { return RangeSym; }
61   const SmallVectorImpl<RangeSpan> &getRanges() const { return Ranges; }
62   void addRange(RangeSpan Range) { Ranges.push_back(Range); }
63 };
64
65 //===----------------------------------------------------------------------===//
66 /// Unit - This dwarf writer support class manages information associated
67 /// with a source file.
68 class DwarfUnit {
69 protected:
70   /// UniqueID - a numeric ID unique among all CUs in the module
71   unsigned UniqueID;
72
73   /// Node - MDNode for the compile unit.
74   DICompileUnit CUNode;
75
76   /// Unit debug information entry.
77   DIE UnitDie;
78
79   /// Offset of the UnitDie from beginning of debug info section.
80   unsigned DebugInfoOffset;
81
82   /// Asm - Target of Dwarf emission.
83   AsmPrinter *Asm;
84
85   // Holders for some common dwarf information.
86   DwarfDebug *DD;
87   DwarfFile *DU;
88
89   /// IndexTyDie - An anonymous type for index type.  Owned by UnitDie.
90   DIE *IndexTyDie;
91
92   /// MDNodeToDieMap - Tracks the mapping of unit level debug information
93   /// variables to debug information entries.
94   DenseMap<const MDNode *, DIE *> MDNodeToDieMap;
95
96   /// MDNodeToDIEEntryMap - Tracks the mapping of unit level debug information
97   /// descriptors to debug information entries using a DIEEntry proxy.
98   DenseMap<const MDNode *, DIEEntry *> MDNodeToDIEEntryMap;
99
100   /// DIEBlocks - A list of all the DIEBlocks in use.
101   std::vector<DIEBlock *> DIEBlocks;
102   
103   /// DIELocs - A list of all the DIELocs in use.
104   std::vector<DIELoc *> DIELocs;
105
106   /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that
107   /// need DW_AT_containing_type attribute. This attribute points to a DIE that
108   /// corresponds to the MDNode mapped with the subprogram DIE.
109   DenseMap<DIE *, const MDNode *> ContainingTypeMap;
110
111   // DIEValueAllocator - All DIEValues are allocated through this allocator.
112   BumpPtrAllocator DIEValueAllocator;
113
114   // DIEIntegerOne - A preallocated DIEValue because 1 is used frequently.
115   DIEInteger *DIEIntegerOne;
116
117   /// The section this unit will be emitted in.
118   const MCSection *Section;
119
120   DwarfUnit(unsigned UID, dwarf::Tag, DICompileUnit CU, AsmPrinter *A,
121             DwarfDebug *DW, DwarfFile *DWU);
122
123
124   /// Add a string attribute data and value.
125   void addLocalString(DIE &Die, dwarf::Attribute Attribute, StringRef Str);
126
127   void addIndexedString(DIE &Die, dwarf::Attribute Attribute, StringRef Str);
128
129   bool applySubprogramDefinitionAttributes(DISubprogram SP, DIE &SPDie);
130
131 public:
132   virtual ~DwarfUnit();
133
134   void initSection(const MCSection *Section);
135
136   const MCSection *getSection() const {
137     assert(Section);
138     return Section;
139   }
140
141   // Accessors.
142   AsmPrinter* getAsmPrinter() const { return Asm; }
143   unsigned getUniqueID() const { return UniqueID; }
144   uint16_t getLanguage() const { return CUNode.getLanguage(); }
145   DICompileUnit getCUNode() const { return CUNode; }
146   DIE &getUnitDie() { return UnitDie; }
147
148   unsigned getDebugInfoOffset() const { return DebugInfoOffset; }
149   void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; }
150
151   /// hasContent - Return true if this compile unit has something to write out.
152   bool hasContent() const { return !UnitDie.getChildren().empty(); }
153
154   /// getParentContextString - Get a string containing the language specific
155   /// context for a global name.
156   std::string getParentContextString(DIScope Context) const;
157
158   /// Add a new global name to the compile unit.
159   virtual void addGlobalName(StringRef Name, DIE &Die, DIScope Context) {}
160
161   /// Add a new global type to the compile unit.
162   virtual void addGlobalType(DIType Ty, const DIE &Die, DIScope Context) {}
163
164   /// addAccelNamespace - Add a new name to the namespace accelerator table.
165   void addAccelNamespace(StringRef Name, const DIE &Die);
166
167   /// getDIE - Returns the debug information entry map slot for the
168   /// specified debug variable. We delegate the request to DwarfDebug
169   /// when the MDNode can be part of the type system, since DIEs for
170   /// the type system can be shared across CUs and the mappings are
171   /// kept in DwarfDebug.
172   DIE *getDIE(DIDescriptor D) const;
173
174   /// getDIELoc - Returns a fresh newly allocated DIELoc.
175   DIELoc *getDIELoc() { return new (DIEValueAllocator) DIELoc(); }
176
177   /// insertDIE - Insert DIE into the map. We delegate the request to DwarfDebug
178   /// when the MDNode can be part of the type system, since DIEs for
179   /// the type system can be shared across CUs and the mappings are
180   /// kept in DwarfDebug.
181   void insertDIE(DIDescriptor Desc, DIE *D);
182
183   /// addFlag - Add a flag that is true to the DIE.
184   void addFlag(DIE &Die, dwarf::Attribute Attribute);
185
186   /// addUInt - Add an unsigned integer attribute data and value.
187   void addUInt(DIE &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
188                uint64_t Integer);
189
190   void addUInt(DIE &Block, dwarf::Form Form, uint64_t Integer);
191
192   /// addSInt - Add an signed integer attribute data and value.
193   void addSInt(DIE &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
194                int64_t Integer);
195
196   void addSInt(DIELoc &Die, Optional<dwarf::Form> Form, int64_t Integer);
197
198   /// addString - Add a string attribute data and value.
199   void addString(DIE &Die, dwarf::Attribute Attribute, StringRef Str);
200
201   /// addLabel - Add a Dwarf label attribute data and value.
202   void addLabel(DIE &Die, dwarf::Attribute Attribute, dwarf::Form Form,
203                 const MCSymbol *Label);
204
205   void addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label);
206
207   /// addSectionOffset - Add an offset into a section attribute data and value.
208   ///
209   void addSectionOffset(DIE &Die, dwarf::Attribute Attribute, uint64_t Integer);
210
211   /// addOpAddress - Add a dwarf op address data and value using the
212   /// form given and an op of either DW_FORM_addr or DW_FORM_GNU_addr_index.
213   void addOpAddress(DIELoc &Die, const MCSymbol *Label);
214
215   /// addLabelDelta - Add a label delta attribute data and value.
216   void addLabelDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
217                      const MCSymbol *Lo);
218
219   /// addDIEEntry - Add a DIE attribute data and value.
220   void addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIE &Entry);
221
222   /// addDIEEntry - Add a DIE attribute data and value.
223   void addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIEEntry *Entry);
224
225   void addDIETypeSignature(DIE &Die, const DwarfTypeUnit &Type);
226
227   /// addBlock - Add block data.
228   void addBlock(DIE &Die, dwarf::Attribute Attribute, DIELoc *Block);
229
230   /// addBlock - Add block data.
231   void addBlock(DIE &Die, dwarf::Attribute Attribute, DIEBlock *Block);
232
233   /// addSourceLine - Add location information to specified debug information
234   /// entry.
235   void addSourceLine(DIE &Die, unsigned Line, StringRef File,
236                      StringRef Directory);
237   void addSourceLine(DIE &Die, DIVariable V);
238   void addSourceLine(DIE &Die, DIGlobalVariable G);
239   void addSourceLine(DIE &Die, DISubprogram SP);
240   void addSourceLine(DIE &Die, DIType Ty);
241   void addSourceLine(DIE &Die, DINameSpace NS);
242   void addSourceLine(DIE &Die, DIObjCProperty Ty);
243
244   /// addConstantValue - Add constant value entry in variable DIE.
245   void addConstantValue(DIE &Die, const MachineOperand &MO, DIType Ty);
246   void addConstantValue(DIE &Die, const ConstantInt *CI, DIType Ty);
247   void addConstantValue(DIE &Die, const APInt &Val, DIType Ty);
248   void addConstantValue(DIE &Die, const APInt &Val, bool Unsigned);
249   void addConstantValue(DIE &Die, bool Unsigned, uint64_t Val);
250
251   /// addConstantFPValue - Add constant value entry in variable DIE.
252   void addConstantFPValue(DIE &Die, const MachineOperand &MO);
253   void addConstantFPValue(DIE &Die, const ConstantFP *CFP);
254
255   /// addTemplateParams - Add template parameters in buffer.
256   void addTemplateParams(DIE &Buffer, DIArray TParams);
257
258   /// \brief Add register operand.
259   /// \returns false if the register does not exist, e.g., because it was never
260   /// materialized.
261   bool addRegisterOpPiece(DIELoc &TheDie, unsigned Reg,
262                           unsigned SizeInBits = 0, unsigned OffsetInBits = 0);
263
264   /// \brief Add register offset.
265   /// \returns false if the register does not exist, e.g., because it was never
266   /// materialized.
267   bool addRegisterOffset(DIELoc &TheDie, unsigned Reg, int64_t Offset);
268
269   // FIXME: Should be reformulated in terms of addComplexAddress.
270   /// addBlockByrefAddress - Start with the address based on the location
271   /// provided, and generate the DWARF information necessary to find the
272   /// actual Block variable (navigating the Block struct) based on the
273   /// starting location.  Add the DWARF information to the die.  Obsolete,
274   /// please use addComplexAddress instead.
275   void addBlockByrefAddress(const DbgVariable &DV, DIE &Die,
276                             dwarf::Attribute Attribute,
277                             const MachineLocation &Location);
278
279   /// addType - Add a new type attribute to the specified entity. This takes
280   /// and attribute parameter because DW_AT_friend attributes are also
281   /// type references.
282   void addType(DIE &Entity, DIType Ty,
283                dwarf::Attribute Attribute = dwarf::DW_AT_type);
284
285   /// getOrCreateNameSpace - Create a DIE for DINameSpace.
286   DIE *getOrCreateNameSpace(DINameSpace NS);
287
288   /// getOrCreateSubprogramDIE - Create new DIE using SP.
289   DIE *getOrCreateSubprogramDIE(DISubprogram SP, bool Minimal = false);
290
291   void applySubprogramAttributes(DISubprogram SP, DIE &SPDie,
292                                  bool Minimal = false);
293
294   /// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
295   /// given DIType.
296   DIE *getOrCreateTypeDIE(const MDNode *N);
297
298   /// getOrCreateContextDIE - Get context owner's DIE.
299   DIE *createTypeDIE(DICompositeType Ty);
300
301   /// getOrCreateContextDIE - Get context owner's DIE.
302   DIE *getOrCreateContextDIE(DIScope Context);
303
304   /// constructContainingTypeDIEs - Construct DIEs for types that contain
305   /// vtables.
306   void constructContainingTypeDIEs();
307
308   /// constructSubprogramArguments - Construct function argument DIEs.
309   void constructSubprogramArguments(DIE &Buffer, DITypeArray Args);
310
311   /// Create a DIE with the given Tag, add the DIE to its parent, and
312   /// call insertDIE if MD is not null.
313   DIE &createAndAddDIE(unsigned Tag, DIE &Parent,
314                        DIDescriptor N = DIDescriptor());
315
316   /// Compute the size of a header for this unit, not including the initial
317   /// length field.
318   virtual unsigned getHeaderSize() const {
319     return sizeof(int16_t) + // DWARF version number
320            sizeof(int32_t) + // Offset Into Abbrev. Section
321            sizeof(int8_t);   // Pointer Size (in bytes)
322   }
323
324   /// Emit the header for this unit, not including the initial length field.
325   virtual void emitHeader(bool UseOffsets);
326
327   virtual DwarfCompileUnit &getCU() = 0;
328
329   /// constructTypeDIE - Construct type DIE from DICompositeType.
330   void constructTypeDIE(DIE &Buffer, DICompositeType CTy);
331
332 protected:
333   /// getOrCreateStaticMemberDIE - Create new static data member DIE.
334   DIE *getOrCreateStaticMemberDIE(DIDerivedType DT);
335
336   /// Look up the source ID with the given directory and source file names. If
337   /// none currently exists, create a new ID and insert it in the line table.
338   virtual unsigned getOrCreateSourceID(StringRef File, StringRef Directory) = 0;
339
340   /// resolve - Look in the DwarfDebug map for the MDNode that
341   /// corresponds to the reference.
342   template <typename T> T resolve(DIRef<T> Ref) const {
343     return DD->resolve(Ref);
344   }
345
346 private:
347   /// constructTypeDIE - Construct basic type die from DIBasicType.
348   void constructTypeDIE(DIE &Buffer, DIBasicType BTy);
349
350   /// constructTypeDIE - Construct derived type die from DIDerivedType.
351   void constructTypeDIE(DIE &Buffer, DIDerivedType DTy);
352
353   /// constructSubrangeDIE - Construct subrange DIE from DISubrange.
354   void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy);
355
356   /// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
357   void constructArrayTypeDIE(DIE &Buffer, DICompositeType CTy);
358
359   /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
360   void constructEnumTypeDIE(DIE &Buffer, DICompositeType CTy);
361
362   /// constructMemberDIE - Construct member DIE from DIDerivedType.
363   void constructMemberDIE(DIE &Buffer, DIDerivedType DT);
364
365   /// constructTemplateTypeParameterDIE - Construct new DIE for the given
366   /// DITemplateTypeParameter.
367   void constructTemplateTypeParameterDIE(DIE &Buffer,
368                                          DITemplateTypeParameter TP);
369
370   /// constructTemplateValueParameterDIE - Construct new DIE for the given
371   /// DITemplateValueParameter.
372   void constructTemplateValueParameterDIE(DIE &Buffer,
373                                           DITemplateValueParameter TVP);
374
375   /// getLowerBoundDefault - Return the default lower bound for an array. If the
376   /// DWARF version doesn't handle the language, return -1.
377   int64_t getDefaultLowerBound() const;
378
379   /// getDIEEntry - Returns the debug information entry for the specified
380   /// debug variable.
381   DIEEntry *getDIEEntry(const MDNode *N) const {
382     return MDNodeToDIEEntryMap.lookup(N);
383   }
384
385   /// insertDIEEntry - Insert debug information entry into the map.
386   void insertDIEEntry(const MDNode *N, DIEEntry *E) {
387     MDNodeToDIEEntryMap.insert(std::make_pair(N, E));
388   }
389
390   // getIndexTyDie - Get an anonymous type for index type.
391   DIE *getIndexTyDie();
392
393   // setIndexTyDie - Set D as anonymous type for index which can be reused
394   // later.
395   void setIndexTyDie(DIE *D) { IndexTyDie = D; }
396
397   /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
398   /// information entry.
399   DIEEntry *createDIEEntry(DIE &Entry);
400
401   /// If this is a named finished type then include it in the list of types for
402   /// the accelerator tables.
403   void updateAcceleratorTables(DIScope Context, DIType Ty, const DIE &TyDIE);
404
405   virtual bool isDwoUnit() const = 0;
406 };
407
408 class DwarfTypeUnit : public DwarfUnit {
409   uint64_t TypeSignature;
410   const DIE *Ty;
411   DwarfCompileUnit &CU;
412   MCDwarfDwoLineTable *SplitLineTable;
413
414   unsigned getOrCreateSourceID(StringRef File, StringRef Directory) override;
415   bool isDwoUnit() const override;
416
417 public:
418   DwarfTypeUnit(unsigned UID, DwarfCompileUnit &CU, AsmPrinter *A,
419                 DwarfDebug *DW, DwarfFile *DWU,
420                 MCDwarfDwoLineTable *SplitLineTable = nullptr);
421
422   void setTypeSignature(uint64_t Signature) { TypeSignature = Signature; }
423   uint64_t getTypeSignature() const { return TypeSignature; }
424   void setType(const DIE *Ty) { this->Ty = Ty; }
425
426   /// Emit the header for this unit, not including the initial length field.
427   void emitHeader(bool UseOffsets) override;
428   unsigned getHeaderSize() const override {
429     return DwarfUnit::getHeaderSize() + sizeof(uint64_t) + // Type Signature
430            sizeof(uint32_t);                               // Type DIE Offset
431   }
432   DwarfCompileUnit &getCU() override { return CU; }
433 };
434 } // end llvm namespace
435 #endif