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