Grammar.
[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 DIEAbbrev;
41 class DIE;
42 class DIEBlock;
43 class DIEEntry;
44
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) {}
55
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 };
62
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;
69
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;
78
79   union {
80     int64_t Int;
81     const ConstantFP *CFP;
82     const ConstantInt *CIP;
83   } Constants;
84
85   // The location in the machine frame.
86   MachineLocation Loc;
87
88   // The variable to which this location entry corresponds.
89   const MDNode *Variable;
90
91   // Whether this location has been merged.
92   bool Merged;
93
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   }
120
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 };
143
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) {}
159
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;
176
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   }
187
188   bool isObjectPointer()             const {
189     if (Var.isObjectPointer())
190       return true;
191     if (getType().isObjectPointer())
192       return true;
193     return false;
194   }
195
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;
212
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 };
218
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;
224
225   // Used to uniquely define abbreviations.
226   FoldingSet<DIEAbbrev> *AbbreviationsSet;
227
228   // A list of all the unique abbreviations in use.
229   std::vector<DIEAbbrev *> *Abbreviations;
230
231   // A pointer to all units in the section.
232   SmallVector<CompileUnit *, 1> CUs;
233
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;
242
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;
249
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) {}
257
258   /// \brief Compute the size and offset of a DIE given an incoming Offset.
259   unsigned computeSizeAndOffset(DIE *Die, unsigned Offset);
260
261   /// \brief Compute the size and offset of all the DIEs.
262   void computeSizeAndOffsets();
263
264   /// \brief Define a unique number for the abbreviation.
265   void assignAbbrevNumber(DIEAbbrev &Abbrev);
266
267   /// \brief Add a unit to the list of CUs.
268   void addUnit(CompileUnit *CU) { CUs.push_back(CU); }
269
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);
274
275   /// \brief Emit all of the strings to the section given.
276   void emitStrings(const MCSection *StrSection, const MCSection *OffsetSection,
277                    const MCSymbol *StrSecSym);
278
279   /// \brief Emit all of the addresses to the section given.
280   void emitAddresses(const MCSection *AddrSection);
281
282   /// \brief Returns the entry into the start of the pool.
283   MCSymbol *getStringPoolSym();
284
285   /// \brief Returns an entry into the string pool with the given
286   /// string text.
287   MCSymbol *getStringPoolEntry(StringRef Str);
288
289   /// \brief Returns the index into the string pool with the given
290   /// string text.
291   unsigned getStringPoolIndex(StringRef Str);
292
293   /// \brief Returns the string pool.
294   StrPool *getStringPool() { return &StringPool; }
295
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);
300
301   /// \brief Returns the address pool.
302   AddrPool *getAddrPool() { return &AddressPool; }
303 };
304
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 };
311
312 /// \brief Collects and handles dwarf debug information.
313 class DwarfDebug {
314   // Target of Dwarf emission.
315   AsmPrinter *Asm;
316
317   // Collected machine module information.
318   MachineModuleInfo *MMI;
319
320   // All DIEValues are allocated through this allocator.
321   BumpPtrAllocator DIEValueAllocator;
322
323   // Handle to the a compile unit used for the inline extension handling.
324   CompileUnit *FirstCU;
325
326   // Maps MDNode with its corresponding CompileUnit.
327   DenseMap <const MDNode *, CompileUnit *> CUMap;
328
329   // Maps subprogram MDNode with its corresponding CompileUnit.
330   DenseMap <const MDNode *, CompileUnit *> SPMap;
331
332   // Used to uniquely define abbreviations.
333   FoldingSet<DIEAbbrev> AbbreviationsSet;
334
335   // A list of all the unique abbreviations in use.
336   std::vector<DIEAbbrev *> Abbreviations;
337
338   // Stores the current file ID for a given compile unit.
339   DenseMap <unsigned, unsigned> FileIDCUMap;
340   // Source id map, i.e. CUID, source filename and directory,
341   // separated by a zero byte, mapped to a unique id.
342   StringMap<unsigned, BumpPtrAllocator&> SourceIdMap;
343
344   // List of all labels used in aranges generation.
345   std::vector<SymbolCU> ArangeLabels;
346
347   // Size of each symbol emitted (for those symbols that have a specific size).
348   DenseMap <const MCSymbol *, uint64_t> SymSize;
349
350   // Provides a unique id per text section.
351   typedef DenseMap<const MCSection *, SmallVector<SymbolCU, 8> > SectionMapType;
352   SectionMapType SectionMap;
353
354   // List of arguments for current function.
355   SmallVector<DbgVariable *, 8> CurrentFnArguments;
356
357   LexicalScopes LScopes;
358
359   // Collection of abstract subprogram DIEs.
360   DenseMap<const MDNode *, DIE *> AbstractSPDies;
361
362   // Collection of dbg variables of a scope.
363   typedef DenseMap<LexicalScope *,
364                    SmallVector<DbgVariable *, 8> > ScopeVariablesMap;
365   ScopeVariablesMap ScopeVariables;
366
367   // Collection of abstract variables.
368   DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
369
370   // Collection of DotDebugLocEntry.
371   SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries;
372
373   // Collection of subprogram DIEs that are marked (at the end of the module)
374   // as DW_AT_inline.
375   SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
376
377   // This is a collection of subprogram MDNodes that are processed to
378   // create DIEs.
379   SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
380
381   // Maps instruction with label emitted before instruction.
382   DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
383
384   // Maps instruction with label emitted after instruction.
385   DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
386
387   // Every user variable mentioned by a DBG_VALUE instruction in order of
388   // appearance.
389   SmallVector<const MDNode*, 8> UserVariables;
390
391   // For each user variable, keep a list of DBG_VALUE instructions in order.
392   // The list can also contain normal instructions that clobber the previous
393   // DBG_VALUE.
394   typedef DenseMap<const MDNode*, SmallVector<const MachineInstr*, 4> >
395     DbgValueHistoryMap;
396   DbgValueHistoryMap DbgValues;
397
398   SmallVector<const MCSymbol *, 8> DebugRangeSymbols;
399
400   // Previous instruction's location information. This is used to determine
401   // label location to indicate scope boundries in dwarf debug info.
402   DebugLoc PrevInstLoc;
403   MCSymbol *PrevLabel;
404
405   // This location indicates end of function prologue and beginning of function
406   // body.
407   DebugLoc PrologEndLoc;
408
409   // Section Symbols: these are assembler temporary labels that are emitted at
410   // the beginning of each supported dwarf section.  These are used to form
411   // section offsets and are created by EmitSectionLabels.
412   MCSymbol *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
413   MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
414   MCSymbol *DwarfDebugLocSectionSym, *DwarfLineSectionSym, *DwarfAddrSectionSym;
415   MCSymbol *FunctionBeginSym, *FunctionEndSym;
416   MCSymbol *DwarfAbbrevDWOSectionSym, *DwarfStrDWOSectionSym;
417   MCSymbol *DwarfGnuPubNamesSectionSym, *DwarfGnuPubTypesSectionSym;
418
419   // As an optimization, there is no need to emit an entry in the directory
420   // table for the same directory as DW_AT_comp_dir.
421   StringRef CompilationDir;
422
423   // Counter for assigning globally unique IDs for CUs.
424   unsigned GlobalCUIndexCount;
425
426   // Holder for the file specific debug information.
427   DwarfUnits InfoHolder;
428
429   // Holders for the various debug information flags that we might need to
430   // have exposed. See accessor functions below for description.
431
432   // Holder for imported entities.
433   typedef SmallVector<std::pair<const MDNode *, const MDNode *>, 32>
434     ImportedEntityMap;
435   ImportedEntityMap ScopesWithImportedEntities;
436
437   // Holder for types that are going to be extracted out into a type unit.
438   std::vector<DIE *> TypeUnits;
439
440   // Whether to emit the pubnames/pubtypes sections.
441   bool HasDwarfPubSections;
442
443   // Version of dwarf we're emitting.
444   unsigned DwarfVersion;
445
446   // DWARF5 Experimental Options
447   bool HasDwarfAccelTables;
448   bool HasSplitDwarf;
449
450   // Separated Dwarf Variables
451   // In general these will all be for bits that are left in the
452   // original object file, rather than things that are meant
453   // to be in the .dwo sections.
454
455   // The CUs left in the original object file for separated debug info.
456   SmallVector<CompileUnit *, 1> SkeletonCUs;
457
458   // Used to uniquely define abbreviations for the skeleton emission.
459   FoldingSet<DIEAbbrev> SkeletonAbbrevSet;
460
461   // A list of all the unique abbreviations in use.
462   std::vector<DIEAbbrev *> SkeletonAbbrevs;
463
464   // Holder for the skeleton information.
465   DwarfUnits SkeletonHolder;
466
467   // Maps from a type identifier to the actual MDNode.
468   DITypeIdentifierMap TypeIdentifierMap;
469
470 private:
471
472   void addScopeVariable(LexicalScope *LS, DbgVariable *Var);
473
474   /// \brief Find abstract variable associated with Var.
475   DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
476
477   /// \brief Find DIE for the given subprogram and attach appropriate
478   /// DW_AT_low_pc and DW_AT_high_pc attributes. If there are global
479   /// variables in this scope then create and insert DIEs for these
480   /// variables.
481   DIE *updateSubprogramScopeDIE(CompileUnit *SPCU, const MDNode *SPNode);
482
483   /// \brief Construct new DW_TAG_lexical_block for this scope and
484   /// attach DW_AT_low_pc/DW_AT_high_pc labels.
485   DIE *constructLexicalScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
486   /// A helper function to check whether the DIE for a given Scope is going
487   /// to be null.
488   bool isLexicalScopeDIENull(LexicalScope *Scope);
489
490   /// \brief This scope represents inlined body of a function. Construct
491   /// DIE to represent this concrete inlined copy of the function.
492   DIE *constructInlinedScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
493
494   /// \brief Construct a DIE for this scope.
495   DIE *constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
496   /// A helper function to create children of a Scope DIE.
497   DIE *createScopeChildrenDIE(CompileUnit *TheCU, LexicalScope *Scope,
498                               SmallVectorImpl<DIE*> &Children);
499
500   /// \brief Emit initial Dwarf sections with a label at the start of each one.
501   void emitSectionLabels();
502
503   /// \brief Compute the size and offset of a DIE given an incoming Offset.
504   unsigned computeSizeAndOffset(DIE *Die, unsigned Offset);
505
506   /// \brief Compute the size and offset of all the DIEs.
507   void computeSizeAndOffsets();
508
509   /// \brief Attach DW_AT_inline attribute with inlined subprogram DIEs.
510   void computeInlinedDIEs();
511
512   /// \brief Collect info for variables that were optimized out.
513   void collectDeadVariables();
514
515   /// \brief Finish off debug information after all functions have been
516   /// processed.
517   void finalizeModuleInfo();
518
519   /// \brief Emit labels to close any remaining sections that have been left
520   /// open.
521   void endSections();
522
523   /// \brief Emit a set of abbreviations to the specific section.
524   void emitAbbrevs(const MCSection *, std::vector<DIEAbbrev*> *);
525
526   /// \brief Emit the debug info section.
527   void emitDebugInfo();
528
529   /// \brief Emit the abbreviation section.
530   void emitAbbreviations();
531
532   /// \brief Emit the last address of the section and the end of
533   /// the line matrix.
534   void emitEndOfLineMatrix(unsigned SectionEnd);
535
536   /// \brief Emit visible names into a hashed accelerator table section.
537   void emitAccelNames();
538
539   /// \brief Emit objective C classes and categories into a hashed
540   /// accelerator table section.
541   void emitAccelObjC();
542
543   /// \brief Emit namespace dies into a hashed accelerator table.
544   void emitAccelNamespaces();
545
546   /// \brief Emit type dies into a hashed accelerator table.
547   void emitAccelTypes();
548
549   /// \brief Emit visible names into a debug pubnames section.
550   /// \param GnuStyle determines whether or not we want to emit
551   /// additional information into the table ala newer gcc for gdb
552   /// index.
553   void emitDebugPubNames(bool GnuStyle = false);
554
555   /// \brief Emit visible types into a debug pubtypes section.
556   /// \param GnuStyle determines whether or not we want to emit
557   /// additional information into the table ala newer gcc for gdb
558   /// index.
559   void emitDebugPubTypes(bool GnuStyle = false);
560
561   /// \brief Emit visible names into a debug str section.
562   void emitDebugStr();
563
564   /// \brief Emit visible names into a debug loc section.
565   void emitDebugLoc();
566
567   /// \brief Emit visible names into a debug aranges section.
568   void emitDebugARanges();
569
570   /// \brief Emit visible names into a debug ranges section.
571   void emitDebugRanges();
572
573   /// \brief Emit visible names into a debug macinfo section.
574   void emitDebugMacInfo();
575
576   /// \brief Emit inline info using custom format.
577   void emitDebugInlineInfo();
578
579   /// DWARF 5 Experimental Split Dwarf Emitters
580
581   /// \brief Construct the split debug info compile unit for the debug info
582   /// section.
583   CompileUnit *constructSkeletonCU(const CompileUnit *CU);
584
585   /// \brief Emit the local split abbreviations.
586   void emitSkeletonAbbrevs(const MCSection *);
587
588   /// \brief Emit the debug info dwo section.
589   void emitDebugInfoDWO();
590
591   /// \brief Emit the debug abbrev dwo section.
592   void emitDebugAbbrevDWO();
593
594   /// \brief Emit the debug str dwo section.
595   void emitDebugStrDWO();
596
597   /// \brief Create new CompileUnit for the given metadata node with tag
598   /// DW_TAG_compile_unit.
599   CompileUnit *constructCompileUnit(const MDNode *N);
600
601   /// \brief Construct subprogram DIE.
602   void constructSubprogramDIE(CompileUnit *TheCU, const MDNode *N);
603
604   /// \brief Construct imported_module or imported_declaration DIE.
605   void constructImportedEntityDIE(CompileUnit *TheCU, const MDNode *N);
606
607   /// \brief Construct import_module DIE.
608   void constructImportedEntityDIE(CompileUnit *TheCU, const MDNode *N,
609                                   DIE *Context);
610
611   /// \brief Construct import_module DIE.
612   void constructImportedEntityDIE(CompileUnit *TheCU,
613                                   const DIImportedEntity &Module,
614                                   DIE *Context);
615
616   /// \brief Register a source line with debug info. Returns the unique
617   /// label that was emitted and which provides correspondence to the
618   /// source line list.
619   void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
620                         unsigned Flags);
621
622   /// \brief Indentify instructions that are marking the beginning of or
623   /// ending of a scope.
624   void identifyScopeMarkers();
625
626   /// \brief If Var is an current function argument that add it in
627   /// CurrentFnArguments list.
628   bool addCurrentFnArgument(const MachineFunction *MF,
629                             DbgVariable *Var, LexicalScope *Scope);
630
631   /// \brief Populate LexicalScope entries with variables' info.
632   void collectVariableInfo(const MachineFunction *,
633                            SmallPtrSet<const MDNode *, 16> &ProcessedVars);
634
635   /// \brief Collect variable information from the side table maintained
636   /// by MMI.
637   void collectVariableInfoFromMMITable(const MachineFunction * MF,
638                                        SmallPtrSet<const MDNode *, 16> &P);
639
640   /// \brief Ensure that a label will be emitted before MI.
641   void requestLabelBeforeInsn(const MachineInstr *MI) {
642     LabelsBeforeInsn.insert(std::make_pair(MI, (MCSymbol*)0));
643   }
644
645   /// \brief Return Label preceding the instruction.
646   MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
647
648   /// \brief Ensure that a label will be emitted after MI.
649   void requestLabelAfterInsn(const MachineInstr *MI) {
650     LabelsAfterInsn.insert(std::make_pair(MI, (MCSymbol*)0));
651   }
652
653   /// \brief Return Label immediately following the instruction.
654   MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
655
656 public:
657   //===--------------------------------------------------------------------===//
658   // Main entry points.
659   //
660   DwarfDebug(AsmPrinter *A, Module *M);
661
662   /// \brief Emit all Dwarf sections that should come prior to the
663   /// content.
664   void beginModule();
665
666   /// \brief Emit all Dwarf sections that should come after the content.
667   void endModule();
668
669   /// \brief Gather pre-function debug information.
670   void beginFunction(const MachineFunction *MF);
671
672   /// \brief Gather and emit post-function debug information.
673   void endFunction(const MachineFunction *MF);
674
675   /// \brief Process beginning of an instruction.
676   void beginInstruction(const MachineInstr *MI);
677
678   /// \brief Process end of an instruction.
679   void endInstruction(const MachineInstr *MI);
680
681   /// \brief Add a DIE to the set of types that we're going to pull into
682   /// type units.
683   void addTypeUnitType(DIE *Die) { TypeUnits.push_back(Die); }
684
685   /// \brief Add a label so that arange data can be generated for it.
686   void addArangeLabel(SymbolCU SCU) { ArangeLabels.push_back(SCU); }
687
688   /// \brief For symbols that have a size designated (e.g. common symbols),
689   /// this tracks that size.
690   void setSymbolSize(const MCSymbol *Sym, uint64_t Size) { SymSize[Sym] = Size;}
691
692   /// \brief Look up the source id with the given directory and source file
693   /// names. If none currently exists, create a new id and insert it in the
694   /// SourceIds map.
695   unsigned getOrCreateSourceID(StringRef DirName, StringRef FullName,
696                                unsigned CUID);
697
698   /// \brief Recursively Emits a debug information entry.
699   void emitDIE(DIE *Die, std::vector<DIEAbbrev *> *Abbrevs);
700
701   // Experimental DWARF5 features.
702
703   /// \brief Returns whether or not to emit tables that dwarf consumers can
704   /// use to accelerate lookup.
705   bool useDwarfAccelTables() { return HasDwarfAccelTables; }
706
707   /// \brief Returns whether or not to change the current debug info for the
708   /// split dwarf proposal support.
709   bool useSplitDwarf() { return HasSplitDwarf; }
710
711   /// Returns the Dwarf Version.
712   unsigned getDwarfVersion() const { return DwarfVersion; }
713
714   /// Find the MDNode for the given reference.
715   template <typename T> T resolve(DIRef<T> Ref) const {
716     return Ref.resolve(TypeIdentifierMap);
717   }
718
719   /// isSubprogramContext - Return true if Context is either a subprogram
720   /// or another context nested inside a subprogram.
721   bool isSubprogramContext(const MDNode *Context);
722
723 };
724 } // End of namespace llvm
725
726 #endif