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