Debug info: Support variadic functions.
[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 CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
15 #define CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
16
17 #include "DIE.h"
18 #include "DwarfDebug.h"
19 #include "llvm/ADT/DenseMap.h"
20 #include "llvm/ADT/Optional.h"
21 #include "llvm/ADT/OwningPtr.h"
22 #include "llvm/ADT/StringMap.h"
23 #include "llvm/DebugInfo.h"
24 #include "llvm/MC/MCExpr.h"
25 #include "llvm/MC/MCSection.h"
26
27 namespace llvm {
28
29 class MachineLocation;
30 class MachineOperand;
31 class ConstantInt;
32 class ConstantFP;
33 class DbgVariable;
34 class DwarfCompileUnit;
35
36 // Data structure to hold a range for range lists.
37 class RangeSpan {
38 public:
39   RangeSpan(MCSymbol *S, MCSymbol *E) : Start(S), End(E) {}
40   const MCSymbol *getStart() const { return Start; }
41   const MCSymbol *getEnd() const { return End; }
42
43 private:
44   const MCSymbol *Start, *End;
45 };
46
47 class RangeSpanList {
48 private:
49   // Index for locating within the debug_range section this particular span.
50   MCSymbol *RangeSym;
51   // List of ranges.
52   SmallVector<RangeSpan, 2> Ranges;
53
54 public:
55   RangeSpanList(MCSymbol *Sym) : RangeSym(Sym) {}
56   MCSymbol *getSym() const { return RangeSym; }
57   const SmallVectorImpl<RangeSpan> &getRanges() const { return Ranges; }
58   void addRange(RangeSpan Range) { Ranges.push_back(Range); }
59 };
60
61 //===----------------------------------------------------------------------===//
62 /// Unit - This dwarf writer support class manages information associated
63 /// with a source file.
64 class DwarfUnit {
65 protected:
66   /// UniqueID - a numeric ID unique among all CUs in the module
67   unsigned UniqueID;
68
69   /// Node - MDNode for the compile unit.
70   DICompileUnit CUNode;
71
72   /// Unit debug information entry.
73   const OwningPtr<DIE> UnitDie;
74
75   /// Offset of the UnitDie from beginning of debug info section.
76   unsigned DebugInfoOffset;
77
78   /// Asm - Target of Dwarf emission.
79   AsmPrinter *Asm;
80
81   // Holders for some common dwarf information.
82   DwarfDebug *DD;
83   DwarfFile *DU;
84
85   /// IndexTyDie - An anonymous type for index type.  Owned by UnitDie.
86   DIE *IndexTyDie;
87
88   /// MDNodeToDieMap - Tracks the mapping of unit level debug information
89   /// variables to debug information entries.
90   DenseMap<const MDNode *, DIE *> MDNodeToDieMap;
91
92   /// MDNodeToDIEEntryMap - Tracks the mapping of unit level debug information
93   /// descriptors to debug information entries using a DIEEntry proxy.
94   DenseMap<const MDNode *, DIEEntry *> MDNodeToDIEEntryMap;
95
96   /// GlobalNames - A map of globally visible named entities for this unit.
97   StringMap<const DIE *> GlobalNames;
98
99   /// GlobalTypes - A map of globally visible types for this unit.
100   StringMap<const DIE *> GlobalTypes;
101
102   /// AccelNames - A map of names for the name accelerator table.
103   StringMap<std::vector<const DIE *> > AccelNames;
104
105   /// AccelObjC - A map of objc spec for the objc accelerator table.
106   StringMap<std::vector<const DIE *> > AccelObjC;
107
108   /// AccelNamespace - A map of names for the namespace accelerator table.
109   StringMap<std::vector<const DIE *> > AccelNamespace;
110
111   /// AccelTypes - A map of names for the type accelerator table.
112   StringMap<std::vector<std::pair<const DIE *, unsigned> > > AccelTypes;
113
114   /// DIEBlocks - A list of all the DIEBlocks in use.
115   std::vector<DIEBlock *> DIEBlocks;
116   
117   /// DIELocs - A list of all the DIELocs in use.
118   std::vector<DIELoc *> DIELocs;
119
120   /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that
121   /// need DW_AT_containing_type attribute. This attribute points to a DIE that
122   /// corresponds to the MDNode mapped with the subprogram DIE.
123   DenseMap<DIE *, const MDNode *> ContainingTypeMap;
124
125   // List of ranges for a given compile unit.
126   SmallVector<RangeSpan, 1> CURanges;
127
128   // List of range lists for a given compile unit, separate from the ranges for
129   // the CU itself.
130   SmallVector<RangeSpanList, 1> CURangeLists;
131
132   // DIEValueAllocator - All DIEValues are allocated through this allocator.
133   BumpPtrAllocator DIEValueAllocator;
134
135   // DIEIntegerOne - A preallocated DIEValue because 1 is used frequently.
136   DIEInteger *DIEIntegerOne;
137
138   /// The section this unit will be emitted in.
139   const MCSection *Section;
140
141   /// A label at the start of the non-dwo section related to this unit.
142   MCSymbol *SectionSym;
143
144   /// The start of the unit within its section.
145   MCSymbol *LabelBegin;
146
147   /// The end of the unit within its section.
148   MCSymbol *LabelEnd;
149
150   /// The label for the start of the range sets for the elements of this unit.
151   MCSymbol *LabelRange;
152
153   /// Skeleton unit associated with this unit.
154   DwarfUnit *Skeleton;
155
156   DwarfUnit(unsigned UID, DIE *D, DICompileUnit CU, AsmPrinter *A,
157             DwarfDebug *DW, DwarfFile *DWU);
158
159 public:
160   virtual ~DwarfUnit();
161
162   /// Set the skeleton unit associated with this unit.
163   void setSkeleton(DwarfUnit *Skel) { Skeleton = Skel; }
164
165   /// Get the skeleton unit associated with this unit.
166   DwarfUnit *getSkeleton() const { return Skeleton; }
167
168   /// Pass in the SectionSym even though we could recreate it in every compile
169   /// unit (type units will have actually distinct symbols once they're in
170   /// comdat sections).
171   void initSection(const MCSection *Section, MCSymbol *SectionSym) {
172     assert(!this->Section);
173     this->Section = Section;
174     this->SectionSym = SectionSym;
175     this->LabelBegin =
176         Asm->GetTempSymbol(Section->getLabelBeginName(), getUniqueID());
177     this->LabelEnd =
178         Asm->GetTempSymbol(Section->getLabelEndName(), getUniqueID());
179     this->LabelRange = Asm->GetTempSymbol("gnu_ranges", getUniqueID());
180   }
181
182   const MCSection *getSection() const {
183     assert(Section);
184     return Section;
185   }
186
187   /// If there's a skeleton then return the section symbol for the skeleton
188   /// unit, otherwise return the section symbol for this unit.
189   MCSymbol *getLocalSectionSym() const {
190     if (Skeleton)
191       return Skeleton->getSectionSym();
192     return getSectionSym();
193   }
194
195   MCSymbol *getSectionSym() const {
196     assert(Section);
197     return SectionSym;
198   }
199
200   /// If there's a skeleton then return the begin label for the skeleton unit,
201   /// otherwise return the local label for this unit.
202   MCSymbol *getLocalLabelBegin() const {
203     if (Skeleton)
204       return Skeleton->getLabelBegin();
205     return getLabelBegin();
206   }
207
208   MCSymbol *getLabelBegin() const {
209     assert(Section);
210     return LabelBegin;
211   }
212
213   MCSymbol *getLabelEnd() const {
214     assert(Section);
215     return LabelEnd;
216   }
217
218   MCSymbol *getLabelRange() const {
219     assert(Section);
220     return LabelRange;
221   }
222
223   // Accessors.
224   unsigned getUniqueID() const { return UniqueID; }
225   uint16_t getLanguage() const { return CUNode.getLanguage(); }
226   DICompileUnit getCUNode() const { return CUNode; }
227   DIE *getUnitDie() const { return UnitDie.get(); }
228   const StringMap<const DIE *> &getGlobalNames() const { return GlobalNames; }
229   const StringMap<const DIE *> &getGlobalTypes() const { return GlobalTypes; }
230
231   const StringMap<std::vector<const DIE *> > &getAccelNames() const {
232     return AccelNames;
233   }
234   const StringMap<std::vector<const DIE *> > &getAccelObjC() const {
235     return AccelObjC;
236   }
237   const StringMap<std::vector<const DIE *> > &getAccelNamespace() const {
238     return AccelNamespace;
239   }
240   const StringMap<std::vector<std::pair<const DIE *, unsigned> > > &
241   getAccelTypes() const {
242     return AccelTypes;
243   }
244
245   unsigned getDebugInfoOffset() const { return DebugInfoOffset; }
246   void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; }
247
248   /// hasContent - Return true if this compile unit has something to write out.
249   bool hasContent() const { return !UnitDie->getChildren().empty(); }
250
251   /// addRange - Add an address range to the list of ranges for this unit.
252   void addRange(RangeSpan Range) { CURanges.push_back(Range); }
253
254   /// getRanges - Get the list of ranges for this unit.
255   const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; }
256   SmallVectorImpl<RangeSpan> &getRanges() { return CURanges; }
257
258   /// addRangeList - Add an address range list to the list of range lists.
259   void addRangeList(RangeSpanList Ranges) { CURangeLists.push_back(Ranges); }
260
261   /// getRangeLists - Get the vector of range lists.
262   const SmallVectorImpl<RangeSpanList> &getRangeLists() const {
263     return CURangeLists;
264   }
265   SmallVectorImpl<RangeSpanList> &getRangeLists() { return CURangeLists; }
266
267   /// getParentContextString - Get a string containing the language specific
268   /// context for a global name.
269   std::string getParentContextString(DIScope Context) const;
270
271   /// addGlobalName - Add a new global entity to the compile unit.
272   ///
273   void addGlobalName(StringRef Name, DIE *Die, DIScope Context);
274
275   /// addAccelName - Add a new name to the name accelerator table.
276   void addAccelName(StringRef Name, const DIE *Die);
277
278   /// addAccelObjC - Add a new name to the ObjC accelerator table.
279   void addAccelObjC(StringRef Name, const DIE *Die);
280
281   /// addAccelNamespace - Add a new name to the namespace accelerator table.
282   void addAccelNamespace(StringRef Name, const DIE *Die);
283
284   /// addAccelType - Add a new type to the type accelerator table.
285   void addAccelType(StringRef Name, std::pair<const DIE *, unsigned> Die);
286
287   /// getDIE - Returns the debug information entry map slot for the
288   /// specified debug variable. We delegate the request to DwarfDebug
289   /// when the MDNode can be part of the type system, since DIEs for
290   /// the type system can be shared across CUs and the mappings are
291   /// kept in DwarfDebug.
292   DIE *getDIE(DIDescriptor D) const;
293
294   /// getDIELoc - Returns a fresh newly allocated DIELoc.
295   DIELoc *getDIELoc() { return new (DIEValueAllocator) DIELoc(); }
296
297   /// insertDIE - Insert DIE into the map. We delegate the request to DwarfDebug
298   /// when the MDNode can be part of the type system, since DIEs for
299   /// the type system can be shared across CUs and the mappings are
300   /// kept in DwarfDebug.
301   void insertDIE(DIDescriptor Desc, DIE *D);
302
303   /// addDie - Adds or interns the DIE to the compile unit.
304   ///
305   void addDie(DIE *Buffer) { UnitDie->addChild(Buffer); }
306
307   /// addFlag - Add a flag that is true to the DIE.
308   void addFlag(DIE *Die, dwarf::Attribute Attribute);
309
310   /// addUInt - Add an unsigned integer attribute data and value.
311   void addUInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
312                uint64_t Integer);
313
314   void addUInt(DIE *Block, dwarf::Form Form, uint64_t Integer);
315
316   /// addSInt - Add an signed integer attribute data and value.
317   void addSInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
318                int64_t Integer);
319
320   void addSInt(DIELoc *Die, Optional<dwarf::Form> Form, int64_t Integer);
321
322   /// addString - Add a string attribute data and value.
323   void addString(DIE *Die, dwarf::Attribute Attribute, const StringRef Str);
324
325   /// addLocalString - Add a string attribute data and value.
326   void addLocalString(DIE *Die, dwarf::Attribute Attribute,
327                       const StringRef Str);
328
329   /// addExpr - Add a Dwarf expression attribute data and value.
330   void addExpr(DIELoc *Die, dwarf::Form Form, const MCExpr *Expr);
331
332   /// addLabel - Add a Dwarf label attribute data and value.
333   void addLabel(DIE *Die, dwarf::Attribute Attribute, dwarf::Form Form,
334                 const MCSymbol *Label);
335
336   void addLabel(DIELoc *Die, dwarf::Form Form, const MCSymbol *Label);
337
338   /// addSectionLabel - Add a Dwarf section label attribute data and value.
339   ///
340   void addSectionLabel(DIE *Die, dwarf::Attribute Attribute,
341                        const MCSymbol *Label);
342
343   /// addSectionOffset - Add an offset into a section attribute data and value.
344   ///
345   void addSectionOffset(DIE *Die, dwarf::Attribute Attribute, uint64_t Integer);
346
347   /// addOpAddress - Add a dwarf op address data and value using the
348   /// form given and an op of either DW_FORM_addr or DW_FORM_GNU_addr_index.
349   void addOpAddress(DIELoc *Die, const MCSymbol *Label);
350
351   /// addSectionDelta - Add a label delta attribute data and value.
352   void addSectionDelta(DIE *Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
353                        const MCSymbol *Lo);
354
355   /// addDIEEntry - Add a DIE attribute data and value.
356   void addDIEEntry(DIE *Die, dwarf::Attribute Attribute, DIE *Entry);
357
358   /// addDIEEntry - Add a DIE attribute data and value.
359   void addDIEEntry(DIE *Die, dwarf::Attribute Attribute, DIEEntry *Entry);
360
361   void addDIETypeSignature(DIE *Die, const DwarfTypeUnit &Type);
362
363   /// addBlock - Add block data.
364   void addBlock(DIE *Die, dwarf::Attribute Attribute, DIELoc *Block);
365
366   /// addBlock - Add block data.
367   void addBlock(DIE *Die, dwarf::Attribute Attribute, DIEBlock *Block);
368
369   /// addSourceLine - Add location information to specified debug information
370   /// entry.
371   void addSourceLine(DIE *Die, unsigned Line, StringRef File,
372                      StringRef Directory);
373   void addSourceLine(DIE *Die, DIVariable V);
374   void addSourceLine(DIE *Die, DIGlobalVariable G);
375   void addSourceLine(DIE *Die, DISubprogram SP);
376   void addSourceLine(DIE *Die, DIType Ty);
377   void addSourceLine(DIE *Die, DINameSpace NS);
378   void addSourceLine(DIE *Die, DIObjCProperty Ty);
379
380   /// addAddress - Add an address attribute to a die based on the location
381   /// provided.
382   void addAddress(DIE *Die, dwarf::Attribute Attribute,
383                   const MachineLocation &Location, bool Indirect = false);
384
385   /// addConstantValue - Add constant value entry in variable DIE.
386   void addConstantValue(DIE *Die, const MachineOperand &MO, DIType Ty);
387   void addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned);
388   void addConstantValue(DIE *Die, const APInt &Val, bool Unsigned);
389
390   /// addConstantFPValue - Add constant value entry in variable DIE.
391   void addConstantFPValue(DIE *Die, const MachineOperand &MO);
392   void addConstantFPValue(DIE *Die, const ConstantFP *CFP);
393
394   /// addTemplateParams - Add template parameters in buffer.
395   void addTemplateParams(DIE &Buffer, DIArray TParams);
396
397   /// addRegisterOp - Add register operand.
398   void addRegisterOp(DIELoc *TheDie, unsigned Reg);
399
400   /// addRegisterOffset - Add register offset.
401   void addRegisterOffset(DIELoc *TheDie, unsigned Reg, int64_t Offset);
402
403   /// addComplexAddress - Start with the address based on the location provided,
404   /// and generate the DWARF information necessary to find the actual variable
405   /// (navigating the extra location information encoded in the type) based on
406   /// the starting location.  Add the DWARF information to the die.
407   void addComplexAddress(const DbgVariable &DV, DIE *Die,
408                          dwarf::Attribute Attribute,
409                          const MachineLocation &Location);
410
411   // FIXME: Should be reformulated in terms of addComplexAddress.
412   /// addBlockByrefAddress - Start with the address based on the location
413   /// provided, and generate the DWARF information necessary to find the
414   /// actual Block variable (navigating the Block struct) based on the
415   /// starting location.  Add the DWARF information to the die.  Obsolete,
416   /// please use addComplexAddress instead.
417   void addBlockByrefAddress(const DbgVariable &DV, DIE *Die,
418                             dwarf::Attribute Attribute,
419                             const MachineLocation &Location);
420
421   /// addVariableAddress - Add DW_AT_location attribute for a
422   /// DbgVariable based on provided MachineLocation.
423   void addVariableAddress(const DbgVariable &DV, DIE *Die,
424                           MachineLocation Location);
425
426   /// addType - Add a new type attribute to the specified entity. This takes
427   /// and attribute parameter because DW_AT_friend attributes are also
428   /// type references.
429   void addType(DIE *Entity, DIType Ty,
430                dwarf::Attribute Attribute = dwarf::DW_AT_type);
431
432   /// getOrCreateNameSpace - Create a DIE for DINameSpace.
433   DIE *getOrCreateNameSpace(DINameSpace NS);
434
435   /// getOrCreateSubprogramDIE - Create new DIE using SP.
436   DIE *getOrCreateSubprogramDIE(DISubprogram SP);
437
438   /// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
439   /// given DIType.
440   DIE *getOrCreateTypeDIE(const MDNode *N);
441
442   /// getOrCreateContextDIE - Get context owner's DIE.
443   DIE *createTypeDIE(DICompositeType Ty);
444
445   /// getOrCreateContextDIE - Get context owner's DIE.
446   DIE *getOrCreateContextDIE(DIScope Context);
447
448   /// constructContainingTypeDIEs - Construct DIEs for types that contain
449   /// vtables.
450   void constructContainingTypeDIEs();
451
452   /// constructVariableDIE - Construct a DIE for the given DbgVariable.
453   DIE *constructVariableDIE(DbgVariable &DV, bool isScopeAbstract);
454
455   /// Create a DIE with the given Tag, add the DIE to its parent, and
456   /// call insertDIE if MD is not null.
457   DIE *createAndAddDIE(unsigned Tag, DIE &Parent,
458                        DIDescriptor N = DIDescriptor());
459
460   /// Compute the size of a header for this unit, not including the initial
461   /// length field.
462   virtual unsigned getHeaderSize() const {
463     return sizeof(int16_t) + // DWARF version number
464            sizeof(int32_t) + // Offset Into Abbrev. Section
465            sizeof(int8_t);   // Pointer Size (in bytes)
466   }
467
468   /// Emit the header for this unit, not including the initial length field.
469   virtual void emitHeader(const MCSection *ASection,
470                           const MCSymbol *ASectionSym) const;
471
472   virtual DwarfCompileUnit &getCU() = 0;
473
474 protected:
475   /// getOrCreateStaticMemberDIE - Create new static data member DIE.
476   DIE *getOrCreateStaticMemberDIE(DIDerivedType DT);
477
478 private:
479   /// constructSubprogramArguments - Construct function argument DIEs.
480   void constructSubprogramArguments(DIE &Buffer, DIArray Args);
481
482   /// constructTypeDIE - Construct basic type die from DIBasicType.
483   void constructTypeDIE(DIE &Buffer, DIBasicType BTy);
484
485   /// constructTypeDIE - Construct derived type die from DIDerivedType.
486   void constructTypeDIE(DIE &Buffer, DIDerivedType DTy);
487
488   /// constructTypeDIE - Construct type DIE from DICompositeType.
489   void constructTypeDIE(DIE &Buffer, DICompositeType CTy);
490
491   /// constructSubrangeDIE - Construct subrange DIE from DISubrange.
492   void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy);
493
494   /// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
495   void constructArrayTypeDIE(DIE &Buffer, DICompositeType CTy);
496
497   /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
498   void constructEnumTypeDIE(DIE &Buffer, DICompositeType CTy);
499
500   /// constructMemberDIE - Construct member DIE from DIDerivedType.
501   void constructMemberDIE(DIE &Buffer, DIDerivedType DT);
502
503   /// constructTemplateTypeParameterDIE - Construct new DIE for the given
504   /// DITemplateTypeParameter.
505   void constructTemplateTypeParameterDIE(DIE &Buffer,
506                                          DITemplateTypeParameter TP);
507
508   /// constructTemplateValueParameterDIE - Construct new DIE for the given
509   /// DITemplateValueParameter.
510   void constructTemplateValueParameterDIE(DIE &Buffer,
511                                           DITemplateValueParameter TVP);
512
513   /// getLowerBoundDefault - Return the default lower bound for an array. If the
514   /// DWARF version doesn't handle the language, return -1.
515   int64_t getDefaultLowerBound() const;
516
517   /// getDIEEntry - Returns the debug information entry for the specified
518   /// debug variable.
519   DIEEntry *getDIEEntry(const MDNode *N) const {
520     return MDNodeToDIEEntryMap.lookup(N);
521   }
522
523   /// insertDIEEntry - Insert debug information entry into the map.
524   void insertDIEEntry(const MDNode *N, DIEEntry *E) {
525     MDNodeToDIEEntryMap.insert(std::make_pair(N, E));
526   }
527
528   // getIndexTyDie - Get an anonymous type for index type.
529   DIE *getIndexTyDie() { return IndexTyDie; }
530
531   // setIndexTyDie - Set D as anonymous type for index which can be reused
532   // later.
533   void setIndexTyDie(DIE *D) { IndexTyDie = D; }
534
535   /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
536   /// information entry.
537   DIEEntry *createDIEEntry(DIE *Entry);
538
539   /// resolve - Look in the DwarfDebug map for the MDNode that
540   /// corresponds to the reference.
541   template <typename T> T resolve(DIRef<T> Ref) const {
542     return DD->resolve(Ref);
543   }
544
545   /// If this is a named finished type then include it in the list of types for
546   /// the accelerator tables.
547   void updateAcceleratorTables(DIScope Context, DIType Ty, const DIE *TyDIE);
548 };
549
550 class DwarfCompileUnit : public DwarfUnit {
551   /// The attribute index of DW_AT_stmt_list in the compile unit DIE, avoiding
552   /// the need to search for it in applyStmtList.
553   unsigned stmtListIndex;
554
555 public:
556   DwarfCompileUnit(unsigned UID, DIE *D, DICompileUnit Node, AsmPrinter *A,
557                    DwarfDebug *DW, DwarfFile *DWU);
558
559   void initStmtList(MCSymbol *DwarfLineSectionSym);
560
561   /// Apply the DW_AT_stmt_list from this compile unit to the specified DIE.
562   void applyStmtList(DIE &D);
563
564   /// createGlobalVariableDIE - create global variable DIE.
565   void createGlobalVariableDIE(DIGlobalVariable GV);
566
567   /// addLabelAddress - Add a dwarf label attribute data and value using
568   /// either DW_FORM_addr or DW_FORM_GNU_addr_index.
569   void addLabelAddress(DIE *Die, dwarf::Attribute Attribute, MCSymbol *Label);
570
571   DwarfCompileUnit &getCU() LLVM_OVERRIDE { return *this; }
572 };
573
574 class DwarfTypeUnit : public DwarfUnit {
575 private:
576   uint64_t TypeSignature;
577   const DIE *Ty;
578   DwarfCompileUnit &CU;
579
580 public:
581   DwarfTypeUnit(unsigned UID, DIE *D, DwarfCompileUnit &CU, AsmPrinter *A,
582                 DwarfDebug *DW, DwarfFile *DWU);
583
584   void setTypeSignature(uint64_t Signature) { TypeSignature = Signature; }
585   uint64_t getTypeSignature() const { return TypeSignature; }
586   void setType(const DIE *Ty) { this->Ty = Ty; }
587
588   /// Emit the header for this unit, not including the initial length field.
589   void emitHeader(const MCSection *ASection, const MCSymbol *ASectionSym) const
590       LLVM_OVERRIDE;
591   unsigned getHeaderSize() const LLVM_OVERRIDE {
592     return DwarfUnit::getHeaderSize() + sizeof(uint64_t) + // Type Signature
593            sizeof(uint32_t);                               // Type DIE Offset
594   }
595   void initSection(const MCSection *Section);
596   DwarfCompileUnit &getCU() LLVM_OVERRIDE { return CU; }
597 };
598 } // end llvm namespace
599 #endif