c89e9dae7737e1ba4fb9f41fcd6b1ea476ae06e9
[oota-llvm.git] / lib / CodeGen / AsmPrinter / DwarfDebug.h
1 //===-- llvm/CodeGen/DwarfDebug.h - Dwarf Debug Framework ------*- 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 debug info into asm files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef CODEGEN_ASMPRINTER_DWARFDEBUG_H__
15 #define CODEGEN_ASMPRINTER_DWARFDEBUG_H__
16
17 #include "DIE.h"
18 #include "llvm/ADT/DenseMap.h"
19 #include "llvm/ADT/FoldingSet.h"
20 #include "llvm/ADT/SetVector.h"
21 #include "llvm/ADT/SmallPtrSet.h"
22 #include "llvm/ADT/StringMap.h"
23 #include "llvm/CodeGen/AsmPrinter.h"
24 #include "llvm/CodeGen/LexicalScopes.h"
25 #include "llvm/DebugInfo.h"
26 #include "llvm/MC/MachineLocation.h"
27 #include "llvm/Support/Allocator.h"
28 #include "llvm/Support/DebugLoc.h"
29
30 namespace llvm {
31
32 class CompileUnit;
33 class ConstantInt;
34 class ConstantFP;
35 class DbgVariable;
36 class MachineFrameInfo;
37 class MachineModuleInfo;
38 class MachineOperand;
39 class MCAsmInfo;
40 class MCObjectFileInfo;
41 class DIEAbbrev;
42 class DIE;
43 class DIEBlock;
44 class DIEEntry;
45
46 //===----------------------------------------------------------------------===//
47 /// \brief This class is used to record source line correspondence.
48 class SrcLineInfo {
49   unsigned Line;                     // Source line number.
50   unsigned Column;                   // Source column.
51   unsigned SourceID;                 // Source ID number.
52   MCSymbol *Label;                   // Label in code ID number.
53 public:
54   SrcLineInfo(unsigned L, unsigned C, unsigned S, MCSymbol *label)
55     : Line(L), Column(C), SourceID(S), Label(label) {}
56
57   // Accessors
58   unsigned getLine() const { return Line; }
59   unsigned getColumn() const { return Column; }
60   unsigned getSourceID() const { return SourceID; }
61   MCSymbol *getLabel() const { return Label; }
62 };
63
64 /// \brief This struct describes location entries emitted in the .debug_loc
65 /// section.
66 class DotDebugLocEntry {
67   // Begin and end symbols for the address range that this location is valid.
68   const MCSymbol *Begin;
69   const MCSymbol *End;
70
71   // Type of entry that this represents.
72   enum EntryType {
73     E_Location,
74     E_Integer,
75     E_ConstantFP,
76     E_ConstantInt
77   };
78   enum EntryType EntryKind;
79
80   union {
81     int64_t Int;
82     const ConstantFP *CFP;
83     const ConstantInt *CIP;
84   } Constants;
85
86   // The location in the machine frame.
87   MachineLocation Loc;
88
89   // The variable to which this location entry corresponds.
90   const MDNode *Variable;
91
92   // Whether this location has been merged.
93   bool Merged;
94
95 public:
96   DotDebugLocEntry() : Begin(0), End(0), Variable(0), Merged(false) {
97     Constants.Int = 0;
98   }
99   DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, MachineLocation &L,
100                    const MDNode *V)
101       : Begin(B), End(E), Loc(L), Variable(V), Merged(false) {
102     Constants.Int = 0;
103     EntryKind = E_Location;
104   }
105   DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, int64_t i)
106       : Begin(B), End(E), Variable(0), Merged(false) {
107     Constants.Int = i;
108     EntryKind = E_Integer;
109   }
110   DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantFP *FPtr)
111       : Begin(B), End(E), Variable(0), Merged(false) {
112     Constants.CFP = FPtr;
113     EntryKind = E_ConstantFP;
114   }
115   DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E,
116                    const ConstantInt *IPtr)
117       : Begin(B), End(E), Variable(0), Merged(false) {
118     Constants.CIP = IPtr;
119     EntryKind = E_ConstantInt;
120   }
121
122   /// \brief Empty entries are also used as a trigger to emit temp label. Such
123   /// labels are referenced is used to find debug_loc offset for a given DIE.
124   bool isEmpty() { return Begin == 0 && End == 0; }
125   bool isMerged() { return Merged; }
126   void Merge(DotDebugLocEntry *Next) {
127     if (!(Begin && Loc == Next->Loc && End == Next->Begin))
128       return;
129     Next->Begin = Begin;
130     Merged = true;
131   }
132   bool isLocation() const    { return EntryKind == E_Location; }
133   bool isInt() const         { return EntryKind == E_Integer; }
134   bool isConstantFP() const  { return EntryKind == E_ConstantFP; }
135   bool isConstantInt() const { return EntryKind == E_ConstantInt; }
136   int64_t getInt() const                    { return Constants.Int; }
137   const ConstantFP *getConstantFP() const   { return Constants.CFP; }
138   const ConstantInt *getConstantInt() const { return Constants.CIP; }
139   const MDNode *getVariable() const { return Variable; }
140   const MCSymbol *getBeginSym() const { return Begin; }
141   const MCSymbol *getEndSym() const { return End; }
142   MachineLocation getLoc() const { return Loc; }
143 };
144
145 //===----------------------------------------------------------------------===//
146 /// \brief This class is used to track local variable information.
147 class DbgVariable {
148   DIVariable Var;                    // Variable Descriptor.
149   DIE *TheDIE;                       // Variable DIE.
150   unsigned DotDebugLocOffset;        // Offset in DotDebugLocEntries.
151   DbgVariable *AbsVar;               // Corresponding Abstract variable, if any.
152   const MachineInstr *MInsn;         // DBG_VALUE instruction of the variable.
153   int FrameIndex;
154   DwarfDebug *DD;
155 public:
156   // AbsVar may be NULL.
157   DbgVariable(DIVariable V, DbgVariable *AV, DwarfDebug *DD)
158     : Var(V), TheDIE(0), DotDebugLocOffset(~0U), AbsVar(AV), MInsn(0),
159       FrameIndex(~0), DD(DD) {}
160
161   // Accessors.
162   DIVariable getVariable()           const { return Var; }
163   void setDIE(DIE *D)                      { TheDIE = D; }
164   DIE *getDIE()                      const { return TheDIE; }
165   void setDotDebugLocOffset(unsigned O)    { DotDebugLocOffset = O; }
166   unsigned getDotDebugLocOffset()    const { return DotDebugLocOffset; }
167   StringRef getName()                const { return Var.getName(); }
168   DbgVariable *getAbstractVariable() const { return AbsVar; }
169   const MachineInstr *getMInsn()     const { return MInsn; }
170   void setMInsn(const MachineInstr *M)     { MInsn = M; }
171   int getFrameIndex()                const { return FrameIndex; }
172   void setFrameIndex(int FI)               { FrameIndex = FI; }
173   // Translate tag to proper Dwarf tag.
174   uint16_t getTag()                  const {
175     if (Var.getTag() == dwarf::DW_TAG_arg_variable)
176       return dwarf::DW_TAG_formal_parameter;
177
178     return dwarf::DW_TAG_variable;
179   }
180   /// \brief Return true if DbgVariable is artificial.
181   bool isArtificial()                const {
182     if (Var.isArtificial())
183       return true;
184     if (getType().isArtificial())
185       return true;
186     return false;
187   }
188
189   bool isObjectPointer()             const {
190     if (Var.isObjectPointer())
191       return true;
192     if (getType().isObjectPointer())
193       return true;
194     return false;
195   }
196
197   bool variableHasComplexAddress()   const {
198     assert(Var.isVariable() && "Invalid complex DbgVariable!");
199     return Var.hasComplexAddress();
200   }
201   bool isBlockByrefVariable()        const {
202     assert(Var.isVariable() && "Invalid complex DbgVariable!");
203     return Var.isBlockByrefVariable();
204   }
205   unsigned getNumAddrElements()      const {
206     assert(Var.isVariable() && "Invalid complex DbgVariable!");
207     return Var.getNumAddrElements();
208   }
209   uint64_t getAddrElement(unsigned i) const {
210     return Var.getAddrElement(i);
211   }
212   DIType getType() const;
213
214 private:
215   /// resolve - Look in the DwarfDebug map for the MDNode that
216   /// corresponds to the reference.
217   template <typename T> T resolve(DIRef<T> Ref) const;
218 };
219
220 /// \brief Collects and handles information specific to a particular
221 /// collection of units.
222 class DwarfUnits {
223   // Target of Dwarf emission, used for sizing of abbreviations.
224   AsmPrinter *Asm;
225
226   // Used to uniquely define abbreviations.
227   FoldingSet<DIEAbbrev> *AbbreviationsSet;
228
229   // A list of all the unique abbreviations in use.
230   std::vector<DIEAbbrev *> &Abbreviations;
231
232   // A pointer to all units in the section.
233   SmallVector<CompileUnit *, 1> CUs;
234
235   // Collection of strings for this unit and assorted symbols.
236   // A String->Symbol mapping of strings used by indirect
237   // references.
238   typedef StringMap<std::pair<MCSymbol*, unsigned>,
239                     BumpPtrAllocator&> StrPool;
240   StrPool StringPool;
241   unsigned NextStringPoolNumber;
242   std::string StringPref;
243
244   // Collection of addresses for this unit and assorted labels.
245   // A Symbol->unsigned mapping of addresses used by indirect
246   // references.
247   typedef DenseMap<const MCExpr *, unsigned> AddrPool;
248   AddrPool AddressPool;
249   unsigned NextAddrPoolNumber;
250
251 public:
252   DwarfUnits(AsmPrinter *AP, FoldingSet<DIEAbbrev> *AS,
253              std::vector<DIEAbbrev *> &A, const char *Pref,
254              BumpPtrAllocator &DA)
255       : Asm(AP), AbbreviationsSet(AS), Abbreviations(A), StringPool(DA),
256         NextStringPoolNumber(0), StringPref(Pref), AddressPool(),
257         NextAddrPoolNumber(0) {}
258
259   ~DwarfUnits();
260
261   const SmallVectorImpl<CompileUnit *> &getUnits() { return CUs; }
262
263   /// \brief Compute the size and offset of a DIE given an incoming Offset.
264   unsigned computeSizeAndOffset(DIE *Die, unsigned Offset);
265
266   /// \brief Compute the size and offset of all the DIEs.
267   void computeSizeAndOffsets();
268
269   /// \brief Define a unique number for the abbreviation.
270   void assignAbbrevNumber(DIEAbbrev &Abbrev);
271
272   /// \brief Add a unit to the list of CUs.
273   void addUnit(CompileUnit *CU) { CUs.push_back(CU); }
274
275   /// \brief Emit all of the units to the section listed with the given
276   /// abbreviation section.
277   void emitUnits(DwarfDebug *DD, const MCSection *USection,
278                  const MCSection *ASection, const MCSymbol *ASectionSym);
279
280   /// \brief Emit all of the strings to the section given.
281   void emitStrings(const MCSection *StrSection, const MCSection *OffsetSection,
282                    const MCSymbol *StrSecSym);
283
284   /// \brief Emit all of the addresses to the section given.
285   void emitAddresses(const MCSection *AddrSection);
286
287   /// \brief Returns the entry into the start of the pool.
288   MCSymbol *getStringPoolSym();
289
290   /// \brief Returns an entry into the string pool with the given
291   /// string text.
292   MCSymbol *getStringPoolEntry(StringRef Str);
293
294   /// \brief Returns the index into the string pool with the given
295   /// string text.
296   unsigned getStringPoolIndex(StringRef Str);
297
298   /// \brief Returns the string pool.
299   StrPool *getStringPool() { return &StringPool; }
300
301   /// \brief Returns the index into the address pool with the given
302   /// label/symbol.
303   unsigned getAddrPoolIndex(const MCExpr *Sym);
304   unsigned getAddrPoolIndex(const MCSymbol *Sym);
305
306   /// \brief Returns the address pool.
307   AddrPool *getAddrPool() { return &AddressPool; }
308 };
309
310 /// \brief Helper used to pair up a symbol and its DWARF compile unit.
311 struct SymbolCU {
312   SymbolCU(CompileUnit *CU, const MCSymbol *Sym) : Sym(Sym), CU(CU) {}
313   const MCSymbol *Sym;
314   CompileUnit *CU;
315 };
316
317 /// \brief Collects and handles dwarf debug information.
318 class DwarfDebug {
319   // Target of Dwarf emission.
320   AsmPrinter *Asm;
321
322   // Collected machine module information.
323   MachineModuleInfo *MMI;
324
325   // All DIEValues are allocated through this allocator.
326   BumpPtrAllocator DIEValueAllocator;
327
328   // Handle to the a compile unit used for the inline extension handling.
329   CompileUnit *FirstCU;
330
331   // Maps MDNode with its corresponding CompileUnit.
332   DenseMap <const MDNode *, CompileUnit *> CUMap;
333
334   // Maps subprogram MDNode with its corresponding CompileUnit.
335   DenseMap <const MDNode *, CompileUnit *> SPMap;
336
337   // Maps a CU DIE with its corresponding CompileUnit.
338   DenseMap <const DIE *, CompileUnit *> CUDieMap;
339
340   /// Maps MDNodes for type sysstem with the corresponding DIEs. These DIEs can
341   /// be shared across CUs, that is why we keep the map here instead
342   /// of in CompileUnit.
343   DenseMap<const MDNode *, DIE *> MDTypeNodeToDieMap;
344
345   // Used to uniquely define abbreviations.
346   FoldingSet<DIEAbbrev> AbbreviationsSet;
347
348   // A list of all the unique abbreviations in use.
349   std::vector<DIEAbbrev *> Abbreviations;
350
351   // Stores the current file ID for a given compile unit.
352   DenseMap <unsigned, unsigned> FileIDCUMap;
353   // Source id map, i.e. CUID, source filename and directory,
354   // separated by a zero byte, mapped to a unique id.
355   StringMap<unsigned, BumpPtrAllocator&> SourceIdMap;
356
357   // List of all labels used in aranges generation.
358   std::vector<SymbolCU> ArangeLabels;
359
360   // Size of each symbol emitted (for those symbols that have a specific size).
361   DenseMap <const MCSymbol *, uint64_t> SymSize;
362
363   // Provides a unique id per text section.
364   typedef DenseMap<const MCSection *, SmallVector<SymbolCU, 8> > SectionMapType;
365   SectionMapType SectionMap;
366
367   // List of arguments for current function.
368   SmallVector<DbgVariable *, 8> CurrentFnArguments;
369
370   LexicalScopes LScopes;
371
372   // Collection of abstract subprogram DIEs.
373   DenseMap<const MDNode *, DIE *> AbstractSPDies;
374
375   // Collection of dbg variables of a scope.
376   typedef DenseMap<LexicalScope *,
377                    SmallVector<DbgVariable *, 8> > ScopeVariablesMap;
378   ScopeVariablesMap ScopeVariables;
379
380   // Collection of abstract variables.
381   DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
382
383   // Collection of DotDebugLocEntry.
384   SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries;
385
386   // Collection of subprogram DIEs that are marked (at the end of the module)
387   // as DW_AT_inline.
388   SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
389
390   // This is a collection of subprogram MDNodes that are processed to
391   // create DIEs.
392   SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
393
394   // Maps instruction with label emitted before instruction.
395   DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
396
397   // Maps instruction with label emitted after instruction.
398   DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
399
400   // Every user variable mentioned by a DBG_VALUE instruction in order of
401   // appearance.
402   SmallVector<const MDNode*, 8> UserVariables;
403
404   // For each user variable, keep a list of DBG_VALUE instructions in order.
405   // The list can also contain normal instructions that clobber the previous
406   // DBG_VALUE.
407   typedef DenseMap<const MDNode*, SmallVector<const MachineInstr*, 4> >
408     DbgValueHistoryMap;
409   DbgValueHistoryMap DbgValues;
410
411   SmallVector<const MCSymbol *, 8> DebugRangeSymbols;
412
413   // Previous instruction's location information. This is used to determine
414   // label location to indicate scope boundries in dwarf debug info.
415   DebugLoc PrevInstLoc;
416   MCSymbol *PrevLabel;
417
418   // This location indicates end of function prologue and beginning of function
419   // body.
420   DebugLoc PrologEndLoc;
421
422   // Section Symbols: these are assembler temporary labels that are emitted at
423   // the beginning of each supported dwarf section.  These are used to form
424   // section offsets and are created by EmitSectionLabels.
425   MCSymbol *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
426   MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
427   MCSymbol *DwarfDebugLocSectionSym, *DwarfLineSectionSym, *DwarfAddrSectionSym;
428   MCSymbol *FunctionBeginSym, *FunctionEndSym;
429   MCSymbol *DwarfAbbrevDWOSectionSym, *DwarfStrDWOSectionSym;
430   MCSymbol *DwarfGnuPubNamesSectionSym, *DwarfGnuPubTypesSectionSym;
431
432   // As an optimization, there is no need to emit an entry in the directory
433   // table for the same directory as DW_AT_comp_dir.
434   StringRef CompilationDir;
435
436   // Counter for assigning globally unique IDs for CUs.
437   unsigned GlobalCUIndexCount;
438
439   // Holder for the file specific debug information.
440   DwarfUnits InfoHolder;
441
442   // Holders for the various debug information flags that we might need to
443   // have exposed. See accessor functions below for description.
444
445   // Holder for imported entities.
446   typedef SmallVector<std::pair<const MDNode *, const MDNode *>, 32>
447     ImportedEntityMap;
448   ImportedEntityMap ScopesWithImportedEntities;
449
450   // Map from type MDNodes to a pair used as a union. If the pointer is
451   // non-null, proxy DIEs in CUs meant to reference this type should be stored
452   // in the vector. The hash will be added to these DIEs once it is computed. If
453   // the pointer is null, the hash is immediately available in the uint64_t and
454   // should be directly used for proxy DIEs.
455   DenseMap<const MDNode *, std::pair<uint64_t, SmallVectorImpl<DIE*>* > > TypeUnits;
456
457   // Whether to emit the pubnames/pubtypes sections.
458   bool HasDwarfPubSections;
459
460   // Version of dwarf we're emitting.
461   unsigned DwarfVersion;
462
463   // Maps from a type identifier to the actual MDNode.
464   DITypeIdentifierMap TypeIdentifierMap;
465
466   // DWARF5 Experimental Options
467   bool HasDwarfAccelTables;
468   bool HasSplitDwarf;
469
470   // Separated Dwarf Variables
471   // In general these will all be for bits that are left in the
472   // original object file, rather than things that are meant
473   // to be in the .dwo sections.
474
475   // Used to uniquely define abbreviations for the skeleton emission.
476   FoldingSet<DIEAbbrev> SkeletonAbbrevSet;
477
478   // A list of all the unique abbreviations in use.
479   std::vector<DIEAbbrev *> SkeletonAbbrevs;
480
481   // Holder for the skeleton information.
482   DwarfUnits SkeletonHolder;
483
484   void addScopeVariable(LexicalScope *LS, DbgVariable *Var);
485
486   const SmallVectorImpl<CompileUnit *> &getUnits() {
487     return InfoHolder.getUnits();
488   }
489
490   /// \brief Find abstract variable associated with Var.
491   DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
492
493   /// \brief Find DIE for the given subprogram and attach appropriate
494   /// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global
495   /// variables in this scope then create and insert DIEs for these
496   /// variables.
497   DIE *updateSubprogramScopeDIE(CompileUnit *SPCU, DISubprogram SP);
498
499   /// \brief Construct new DW_TAG_lexical_block for this scope and
500   /// attach DW_AT_low_pc/DW_AT_high_pc labels.
501   DIE *constructLexicalScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
502   /// A helper function to check whether the DIE for a given Scope is going
503   /// to be null.
504   bool isLexicalScopeDIENull(LexicalScope *Scope);
505
506   /// \brief This scope represents inlined body of a function. Construct
507   /// DIE to represent this concrete inlined copy of the function.
508   DIE *constructInlinedScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
509
510   /// \brief Construct a DIE for this scope.
511   DIE *constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
512   /// A helper function to create children of a Scope DIE.
513   DIE *createScopeChildrenDIE(CompileUnit *TheCU, LexicalScope *Scope,
514                               SmallVectorImpl<DIE*> &Children);
515
516   /// \brief Emit initial Dwarf sections with a label at the start of each one.
517   void emitSectionLabels();
518
519   /// \brief Compute the size and offset of a DIE given an incoming Offset.
520   unsigned computeSizeAndOffset(DIE *Die, unsigned Offset);
521
522   /// \brief Compute the size and offset of all the DIEs.
523   void computeSizeAndOffsets();
524
525   /// \brief Attach DW_AT_inline attribute with inlined subprogram DIEs.
526   void computeInlinedDIEs();
527
528   /// \brief Collect info for variables that were optimized out.
529   void collectDeadVariables();
530
531   /// \brief Finish off debug information after all functions have been
532   /// processed.
533   void finalizeModuleInfo();
534
535   /// \brief Emit labels to close any remaining sections that have been left
536   /// open.
537   void endSections();
538
539   /// \brief Emit a set of abbreviations to the specific section.
540   void emitAbbrevs(const MCSection *, std::vector<DIEAbbrev*> *);
541
542   /// \brief Emit the debug info section.
543   void emitDebugInfo();
544
545   /// \brief Emit the abbreviation section.
546   void emitAbbreviations();
547
548   /// \brief Emit the last address of the section and the end of
549   /// the line matrix.
550   void emitEndOfLineMatrix(unsigned SectionEnd);
551
552   /// \brief Emit visible names into a hashed accelerator table section.
553   void emitAccelNames();
554
555   /// \brief Emit objective C classes and categories into a hashed
556   /// accelerator table section.
557   void emitAccelObjC();
558
559   /// \brief Emit namespace dies into a hashed accelerator table.
560   void emitAccelNamespaces();
561
562   /// \brief Emit type dies into a hashed accelerator table.
563   void emitAccelTypes();
564
565   /// \brief Emit visible names into a debug pubnames section.
566   /// \param GnuStyle determines whether or not we want to emit
567   /// additional information into the table ala newer gcc for gdb
568   /// index.
569   void emitDebugPubNames(bool GnuStyle = false);
570
571   /// \brief Emit visible types into a debug pubtypes section.
572   /// \param GnuStyle determines whether or not we want to emit
573   /// additional information into the table ala newer gcc for gdb
574   /// index.
575   void emitDebugPubTypes(bool GnuStyle = false);
576
577   /// \brief Emit visible names into a debug str section.
578   void emitDebugStr();
579
580   /// \brief Emit visible names into a debug loc section.
581   void emitDebugLoc();
582
583   /// \brief Emit visible names into a debug aranges section.
584   void emitDebugARanges();
585
586   /// \brief Emit visible names into a debug ranges section.
587   void emitDebugRanges();
588
589   /// \brief Emit visible names into a debug macinfo section.
590   void emitDebugMacInfo();
591
592   /// \brief Emit inline info using custom format.
593   void emitDebugInlineInfo();
594
595   /// DWARF 5 Experimental Split Dwarf Emitters
596
597   /// \brief Construct the split debug info compile unit for the debug info
598   /// section.
599   CompileUnit *constructSkeletonCU(const CompileUnit *CU);
600
601   /// \brief Emit the local split abbreviations.
602   void emitSkeletonAbbrevs(const MCSection *);
603
604   /// \brief Emit the debug info dwo section.
605   void emitDebugInfoDWO();
606
607   /// \brief Emit the debug abbrev dwo section.
608   void emitDebugAbbrevDWO();
609
610   /// \brief Emit the debug str dwo section.
611   void emitDebugStrDWO();
612
613   /// \brief Create new CompileUnit for the given metadata node with tag
614   /// DW_TAG_compile_unit.
615   CompileUnit *constructCompileUnit(DICompileUnit DIUnit);
616
617   /// \brief Construct subprogram DIE.
618   void constructSubprogramDIE(CompileUnit *TheCU, const MDNode *N);
619
620   /// \brief Construct imported_module or imported_declaration DIE.
621   void constructImportedEntityDIE(CompileUnit *TheCU, const MDNode *N);
622
623   /// \brief Construct import_module DIE.
624   void constructImportedEntityDIE(CompileUnit *TheCU, const MDNode *N,
625                                   DIE *Context);
626
627   /// \brief Construct import_module DIE.
628   void constructImportedEntityDIE(CompileUnit *TheCU,
629                                   const DIImportedEntity &Module,
630                                   DIE *Context);
631
632   /// \brief Register a source line with debug info. Returns the unique
633   /// label that was emitted and which provides correspondence to the
634   /// source line list.
635   void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
636                         unsigned Flags);
637
638   /// \brief Indentify instructions that are marking the beginning of or
639   /// ending of a scope.
640   void identifyScopeMarkers();
641
642   /// \brief If Var is an current function argument that add it in
643   /// CurrentFnArguments list.
644   bool addCurrentFnArgument(const MachineFunction *MF,
645                             DbgVariable *Var, LexicalScope *Scope);
646
647   /// \brief Populate LexicalScope entries with variables' info.
648   void collectVariableInfo(const MachineFunction *,
649                            SmallPtrSet<const MDNode *, 16> &ProcessedVars);
650
651   /// \brief Collect variable information from the side table maintained
652   /// by MMI.
653   void collectVariableInfoFromMMITable(const MachineFunction * MF,
654                                        SmallPtrSet<const MDNode *, 16> &P);
655
656   /// \brief Ensure that a label will be emitted before MI.
657   void requestLabelBeforeInsn(const MachineInstr *MI) {
658     LabelsBeforeInsn.insert(std::make_pair(MI, (MCSymbol*)0));
659   }
660
661   /// \brief Return Label preceding the instruction.
662   MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
663
664   /// \brief Ensure that a label will be emitted after MI.
665   void requestLabelAfterInsn(const MachineInstr *MI) {
666     LabelsAfterInsn.insert(std::make_pair(MI, (MCSymbol*)0));
667   }
668
669   /// \brief Return Label immediately following the instruction.
670   MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
671
672 public:
673   //===--------------------------------------------------------------------===//
674   // Main entry points.
675   //
676   DwarfDebug(AsmPrinter *A, Module *M);
677
678   void insertDIE(const MDNode *TypeMD, DIE *Die) {
679     MDTypeNodeToDieMap.insert(std::make_pair(TypeMD, Die));
680   }
681   DIE *getDIE(const MDNode *TypeMD) {
682     return MDTypeNodeToDieMap.lookup(TypeMD);
683   }
684
685   /// \brief Emit all Dwarf sections that should come prior to the
686   /// content.
687   void beginModule();
688
689   /// \brief Emit all Dwarf sections that should come after the content.
690   void endModule();
691
692   /// \brief Gather pre-function debug information.
693   void beginFunction(const MachineFunction *MF);
694
695   /// \brief Gather and emit post-function debug information.
696   void endFunction(const MachineFunction *MF);
697
698   /// \brief Process beginning of an instruction.
699   void beginInstruction(const MachineInstr *MI);
700
701   /// \brief Process end of an instruction.
702   void endInstruction(const MachineInstr *MI);
703
704   /// \brief Add a DIE to the set of types that we're going to pull into
705   /// type units.
706   void addTypeUnitType(DIE *Die, DICompositeType CTy);
707
708   /// \brief Add a label so that arange data can be generated for it.
709   void addArangeLabel(SymbolCU SCU) { ArangeLabels.push_back(SCU); }
710
711   /// \brief For symbols that have a size designated (e.g. common symbols),
712   /// this tracks that size.
713   void setSymbolSize(const MCSymbol *Sym, uint64_t Size) { SymSize[Sym] = Size;}
714
715   /// \brief Look up the source id with the given directory and source file
716   /// names. If none currently exists, create a new id and insert it in the
717   /// SourceIds map.
718   unsigned getOrCreateSourceID(StringRef DirName, StringRef FullName,
719                                unsigned CUID);
720
721   /// \brief Recursively Emits a debug information entry.
722   void emitDIE(DIE *Die, ArrayRef<DIEAbbrev *> Abbrevs);
723
724   // Experimental DWARF5 features.
725
726   /// \brief Returns whether or not to emit tables that dwarf consumers can
727   /// use to accelerate lookup.
728   bool useDwarfAccelTables() { return HasDwarfAccelTables; }
729
730   /// \brief Returns whether or not to change the current debug info for the
731   /// split dwarf proposal support.
732   bool useSplitDwarf() { return HasSplitDwarf; }
733
734   /// Returns the Dwarf Version.
735   unsigned getDwarfVersion() const { return DwarfVersion; }
736
737   /// Find the MDNode for the given reference.
738   template <typename T> T resolve(DIRef<T> Ref) const {
739     return Ref.resolve(TypeIdentifierMap);
740   }
741
742   /// isSubprogramContext - Return true if Context is either a subprogram
743   /// or another context nested inside a subprogram.
744   bool isSubprogramContext(const MDNode *Context);
745
746 };
747 } // End of namespace llvm
748
749 #endif