DwarfDebug.h revision 2be084a25b1f79f17520d824d0feb8c7854b5f31
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 "llvm/CodeGen/AsmPrinter.h"
18#include "llvm/CodeGen/LexicalScopes.h"
19#include "llvm/MC/MachineLocation.h"
20#include "llvm/Analysis/DebugInfo.h"
21#include "DIE.h"
22#include "llvm/ADT/DenseMap.h"
23#include "llvm/ADT/FoldingSet.h"
24#include "llvm/ADT/SmallPtrSet.h"
25#include "llvm/ADT/StringMap.h"
26#include "llvm/ADT/UniqueVector.h"
27#include "llvm/Support/Allocator.h"
28#include "llvm/Support/DebugLoc.h"
29#include <map>
30
31namespace llvm {
32
33class CompileUnit;
34class DbgVariable;
35class MachineFrameInfo;
36class MachineModuleInfo;
37class MachineOperand;
38class MCAsmInfo;
39class DIEAbbrev;
40class DIE;
41class DIEBlock;
42class DIEEntry;
43
44//===----------------------------------------------------------------------===//
45/// SrcLineInfo - This class is used to record source line correspondence.
46///
47class 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.
52public:
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/// DotDebugLocEntry - This struct describes location entries emitted in
64/// .debug_loc section.
65typedef struct DotDebugLocEntry {
66  const MCSymbol *Begin;
67  const MCSymbol *End;
68  MachineLocation Loc;
69  const MDNode *Variable;
70  bool Merged;
71  bool Constant;
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  DotDebugLocEntry()
86    : Begin(0), End(0), Variable(0), Merged(false),
87      Constant(false) { Constants.Int = 0;}
88  DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, MachineLocation &L,
89                   const MDNode *V)
90    : Begin(B), End(E), Loc(L), Variable(V), Merged(false),
91      Constant(false) { Constants.Int = 0; EntryKind = E_Location; }
92  DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, int64_t i)
93    : Begin(B), End(E), Variable(0), Merged(false),
94      Constant(true) { Constants.Int = i; EntryKind = E_Integer; }
95  DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantFP *FPtr)
96    : Begin(B), End(E), Variable(0), Merged(false),
97      Constant(true) { Constants.CFP = FPtr; EntryKind = E_ConstantFP; }
98  DotDebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantInt *IPtr)
99    : Begin(B), End(E), Variable(0), Merged(false),
100      Constant(true) { Constants.CIP = IPtr; EntryKind = E_ConstantInt; }
101
102  /// Empty entries are also used as a trigger to emit temp label. Such
103  /// labels are referenced is used to find debug_loc offset for a given DIE.
104  bool isEmpty() { return Begin == 0 && End == 0; }
105  bool isMerged() { return Merged; }
106  void Merge(DotDebugLocEntry *Next) {
107    if (!(Begin && Loc == Next->Loc && End == Next->Begin))
108      return;
109    Next->Begin = Begin;
110    Merged = true;
111  }
112  bool isLocation() const    { return EntryKind == E_Location; }
113  bool isInt() const         { return EntryKind == E_Integer; }
114  bool isConstantFP() const  { return EntryKind == E_ConstantFP; }
115  bool isConstantInt() const { return EntryKind == E_ConstantInt; }
116  int64_t getInt()                    { return Constants.Int; }
117  const ConstantFP *getConstantFP()   { return Constants.CFP; }
118  const ConstantInt *getConstantInt() { return Constants.CIP; }
119} DotDebugLocEntry;
120
121//===----------------------------------------------------------------------===//
122/// DbgVariable - This class is used to track local variable information.
123///
124class DbgVariable {
125  DIVariable Var;                    // Variable Descriptor.
126  DIE *TheDIE;                       // Variable DIE.
127  unsigned DotDebugLocOffset;        // Offset in DotDebugLocEntries.
128  DbgVariable *AbsVar;               // Corresponding Abstract variable, if any.
129  const MachineInstr *MInsn;         // DBG_VALUE instruction of the variable.
130  int FrameIndex;
131public:
132  // AbsVar may be NULL.
133  DbgVariable(DIVariable V, DbgVariable *AV)
134    : Var(V), TheDIE(0), DotDebugLocOffset(~0U), AbsVar(AV), MInsn(0),
135      FrameIndex(~0) {}
136
137  // Accessors.
138  DIVariable getVariable()           const { return Var; }
139  void setDIE(DIE *D)                      { TheDIE = D; }
140  DIE *getDIE()                      const { return TheDIE; }
141  void setDotDebugLocOffset(unsigned O)    { DotDebugLocOffset = O; }
142  unsigned getDotDebugLocOffset()    const { return DotDebugLocOffset; }
143  StringRef getName()                const { return Var.getName(); }
144  DbgVariable *getAbstractVariable() const { return AbsVar; }
145  const MachineInstr *getMInsn()     const { return MInsn; }
146  void setMInsn(const MachineInstr *M)     { MInsn = M; }
147  int getFrameIndex()                const { return FrameIndex; }
148  void setFrameIndex(int FI)               { FrameIndex = FI; }
149  // Translate tag to proper Dwarf tag.
150  unsigned getTag()                  const {
151    if (Var.getTag() == dwarf::DW_TAG_arg_variable)
152      return dwarf::DW_TAG_formal_parameter;
153
154    return dwarf::DW_TAG_variable;
155  }
156  /// isArtificial - Return true if DbgVariable is artificial.
157  bool isArtificial()                const {
158    if (Var.isArtificial())
159      return true;
160    if (Var.getTag() == dwarf::DW_TAG_arg_variable
161        && getType().isArtificial())
162      return true;
163    return false;
164  }
165  bool variableHasComplexAddress()   const {
166    assert(Var.Verify() && "Invalid complex DbgVariable!");
167    return Var.hasComplexAddress();
168  }
169  bool isBlockByrefVariable()        const {
170    assert(Var.Verify() && "Invalid complex DbgVariable!");
171    return Var.isBlockByrefVariable();
172  }
173  unsigned getNumAddrElements()      const {
174    assert(Var.Verify() && "Invalid complex DbgVariable!");
175    return Var.getNumAddrElements();
176  }
177  uint64_t getAddrElement(unsigned i) const {
178    return Var.getAddrElement(i);
179  }
180  DIType getType() const;
181};
182
183class DwarfDebug {
184  /// Asm - Target of Dwarf emission.
185  AsmPrinter *Asm;
186
187  /// MMI - Collected machine module information.
188  MachineModuleInfo *MMI;
189
190  //===--------------------------------------------------------------------===//
191  // Attributes used to construct specific Dwarf sections.
192  //
193
194  CompileUnit *FirstCU;
195
196  /// Maps MDNode with its corresponding CompileUnit.
197  DenseMap <const MDNode *, CompileUnit *> CUMap;
198
199  /// Maps subprogram MDNode with its corresponding CompileUnit.
200  DenseMap <const MDNode *, CompileUnit *> SPMap;
201
202  /// AbbreviationsSet - Used to uniquely define abbreviations.
203  ///
204  FoldingSet<DIEAbbrev> AbbreviationsSet;
205
206  /// Abbreviations - A list of all the unique abbreviations in use.
207  ///
208  std::vector<DIEAbbrev *> Abbreviations;
209
210  /// SourceIdMap - Source id map, i.e. pair of source filename and directory
211  /// mapped to a unique id.
212  std::map<std::pair<std::string, std::string>, unsigned> SourceIdMap;
213
214  /// StringPool - A String->Symbol mapping of strings used by indirect
215  /// references.
216  StringMap<std::pair<MCSymbol*, unsigned> > StringPool;
217  unsigned NextStringPoolNumber;
218
219  /// SectionMap - Provides a unique id per text section.
220  ///
221  UniqueVector<const MCSection*> SectionMap;
222
223  /// CurrentFnArguments - List of Arguments (DbgValues) for current function.
224  SmallVector<DbgVariable *, 8> CurrentFnArguments;
225
226  LexicalScopes LScopes;
227
228  /// AbstractSPDies - Collection of abstract subprogram DIEs.
229  DenseMap<const MDNode *, DIE *> AbstractSPDies;
230
231  /// ScopeVariables - Collection of dbg variables of a scope.
232  DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> > ScopeVariables;
233
234  /// AbstractVariables - Collection on abstract variables.
235  DenseMap<const MDNode *, DbgVariable *> AbstractVariables;
236
237  /// DotDebugLocEntries - Collection of DotDebugLocEntry.
238  SmallVector<DotDebugLocEntry, 4> DotDebugLocEntries;
239
240  /// InlinedSubprogramDIEs - Collection of subprogram DIEs that are marked
241  /// (at the end of the module) as DW_AT_inline.
242  SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
243
244  /// InlineInfo - Keep track of inlined functions and their location.  This
245  /// information is used to populate debug_inlined section.
246  typedef std::pair<const MCSymbol *, DIE *> InlineInfoLabels;
247  DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> > InlineInfo;
248  SmallVector<const MDNode *, 4> InlinedSPNodes;
249
250  // ProcessedSPNodes - This is a collection of subprogram MDNodes that
251  // are processed to create DIEs.
252  SmallPtrSet<const MDNode *, 16> ProcessedSPNodes;
253
254  /// LabelsBeforeInsn - Maps instruction with label emitted before
255  /// instruction.
256  DenseMap<const MachineInstr *, MCSymbol *> LabelsBeforeInsn;
257
258  /// LabelsAfterInsn - Maps instruction with label emitted after
259  /// instruction.
260  DenseMap<const MachineInstr *, MCSymbol *> LabelsAfterInsn;
261
262  /// UserVariables - Every user variable mentioned by a DBG_VALUE instruction
263  /// in order of appearance.
264  SmallVector<const MDNode*, 8> UserVariables;
265
266  /// DbgValues - For each user variable, keep a list of DBG_VALUE
267  /// instructions in order. The list can also contain normal instructions that
268  /// clobber the previous DBG_VALUE.
269  typedef DenseMap<const MDNode*, SmallVector<const MachineInstr*, 4> >
270    DbgValueHistoryMap;
271  DbgValueHistoryMap DbgValues;
272
273  SmallVector<const MCSymbol *, 8> DebugRangeSymbols;
274
275  /// Previous instruction's location information. This is used to determine
276  /// label location to indicate scope boundries in dwarf debug info.
277  DebugLoc PrevInstLoc;
278  MCSymbol *PrevLabel;
279
280  /// PrologEndLoc - This location indicates end of function prologue and
281  /// beginning of function body.
282  DebugLoc PrologEndLoc;
283
284  struct FunctionDebugFrameInfo {
285    unsigned Number;
286    std::vector<MachineMove> Moves;
287
288    FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
289      : Number(Num), Moves(M) {}
290  };
291
292  std::vector<FunctionDebugFrameInfo> DebugFrames;
293
294  // DIEValueAllocator - All DIEValues are allocated through this allocator.
295  BumpPtrAllocator DIEValueAllocator;
296
297  // Section Symbols: these are assembler temporary labels that are emitted at
298  // the beginning of each supported dwarf section.  These are used to form
299  // section offsets and are created by EmitSectionLabels.
300  MCSymbol *DwarfInfoSectionSym, *DwarfAbbrevSectionSym;
301  MCSymbol *DwarfStrSectionSym, *TextSectionSym, *DwarfDebugRangeSectionSym;
302  MCSymbol *DwarfDebugLocSectionSym;
303  MCSymbol *FunctionBeginSym, *FunctionEndSym;
304
305private:
306
307  /// assignAbbrevNumber - Define a unique number for the abbreviation.
308  ///
309  void assignAbbrevNumber(DIEAbbrev &Abbrev);
310
311  void addScopeVariable(LexicalScope *LS, DbgVariable *Var);
312
313  /// findAbstractVariable - Find abstract variable associated with Var.
314  DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
315
316  /// updateSubprogramScopeDIE - Find DIE for the given subprogram and
317  /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
318  /// If there are global variables in this scope then create and insert
319  /// DIEs for these variables.
320  DIE *updateSubprogramScopeDIE(CompileUnit *SPCU, const MDNode *SPNode);
321
322  /// constructLexicalScope - Construct new DW_TAG_lexical_block
323  /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
324  DIE *constructLexicalScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
325
326  /// constructInlinedScopeDIE - This scope represents inlined body of
327  /// a function. Construct DIE to represent this concrete inlined copy
328  /// of the function.
329  DIE *constructInlinedScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
330
331  /// constructVariableDIE - Construct a DIE for the given DbgVariable.
332  DIE *constructVariableDIE(DbgVariable *DV, LexicalScope *S);
333
334  /// constructScopeDIE - Construct a DIE for this scope.
335  DIE *constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
336
337  /// EmitSectionLabels - Emit initial Dwarf sections with a label at
338  /// the start of each one.
339  void EmitSectionLabels();
340
341  /// emitDIE - Recursively Emits a debug information entry.
342  ///
343  void emitDIE(DIE *Die);
344
345  /// computeSizeAndOffset - Compute the size and offset of a DIE.
346  ///
347  unsigned computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last);
348
349  /// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
350  ///
351  void computeSizeAndOffsets();
352
353  /// EmitDebugInfo - Emit the debug info section.
354  ///
355  void emitDebugInfo();
356
357  /// emitAbbreviations - Emit the abbreviation section.
358  ///
359  void emitAbbreviations() const;
360
361  /// emitEndOfLineMatrix - Emit the last address of the section and the end of
362  /// the line matrix.
363  ///
364  void emitEndOfLineMatrix(unsigned SectionEnd);
365
366  /// emitDebugPubNames - Emit visible names into a debug pubnames section.
367  ///
368  void emitDebugPubNames();
369
370  /// emitDebugPubTypes - Emit visible types into a debug pubtypes section.
371  ///
372  void emitDebugPubTypes();
373
374  /// emitDebugStr - Emit visible names into a debug str section.
375  ///
376  void emitDebugStr();
377
378  /// emitDebugLoc - Emit visible names into a debug loc section.
379  ///
380  void emitDebugLoc();
381
382  /// EmitDebugARanges - Emit visible names into a debug aranges section.
383  ///
384  void EmitDebugARanges();
385
386  /// emitDebugRanges - Emit visible names into a debug ranges section.
387  ///
388  void emitDebugRanges();
389
390  /// emitDebugMacInfo - Emit visible names into a debug macinfo section.
391  ///
392  void emitDebugMacInfo();
393
394  /// emitDebugInlineInfo - Emit inline info using following format.
395  /// Section Header:
396  /// 1. length of section
397  /// 2. Dwarf version number
398  /// 3. address size.
399  ///
400  /// Entries (one "entry" for each function that was inlined):
401  ///
402  /// 1. offset into __debug_str section for MIPS linkage name, if exists;
403  ///   otherwise offset into __debug_str for regular function name.
404  /// 2. offset into __debug_str section for regular function name.
405  /// 3. an unsigned LEB128 number indicating the number of distinct inlining
406  /// instances for the function.
407  ///
408  /// The rest of the entry consists of a {die_offset, low_pc} pair for each
409  /// inlined instance; the die_offset points to the inlined_subroutine die in
410  /// the __debug_info section, and the low_pc is the starting address for the
411  /// inlining instance.
412  void emitDebugInlineInfo();
413
414  /// constructCompileUnit - Create new CompileUnit for the given
415  /// metadata node with tag DW_TAG_compile_unit.
416  CompileUnit *constructCompileUnit(const MDNode *N);
417
418  /// construct SubprogramDIE - Construct subprogram DIE.
419  void constructSubprogramDIE(CompileUnit *TheCU, const MDNode *N);
420
421  /// recordSourceLine - Register a source line with debug info. Returns the
422  /// unique label that was emitted and which provides correspondence to
423  /// the source line list.
424  void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
425                        unsigned Flags);
426
427  /// identifyScopeMarkers() - Indentify instructions that are marking the
428  /// beginning of or ending of a scope.
429  void identifyScopeMarkers();
430
431  /// addCurrentFnArgument - If Var is an current function argument that add
432  /// it in CurrentFnArguments list.
433  bool addCurrentFnArgument(const MachineFunction *MF,
434                            DbgVariable *Var, LexicalScope *Scope);
435
436  /// collectVariableInfo - Populate LexicalScope entries with variables' info.
437  void collectVariableInfo(const MachineFunction *,
438                           SmallPtrSet<const MDNode *, 16> &ProcessedVars);
439
440  /// collectVariableInfoFromMMITable - Collect variable information from
441  /// side table maintained by MMI.
442  void collectVariableInfoFromMMITable(const MachineFunction * MF,
443                                       SmallPtrSet<const MDNode *, 16> &P);
444
445  /// requestLabelBeforeInsn - Ensure that a label will be emitted before MI.
446  void requestLabelBeforeInsn(const MachineInstr *MI) {
447    LabelsBeforeInsn.insert(std::make_pair(MI, (MCSymbol*)0));
448  }
449
450  /// getLabelBeforeInsn - Return Label preceding the instruction.
451  const MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
452
453  /// requestLabelAfterInsn - Ensure that a label will be emitted after MI.
454  void requestLabelAfterInsn(const MachineInstr *MI) {
455    LabelsAfterInsn.insert(std::make_pair(MI, (MCSymbol*)0));
456  }
457
458  /// getLabelAfterInsn - Return Label immediately following the instruction.
459  const MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
460
461public:
462  //===--------------------------------------------------------------------===//
463  // Main entry points.
464  //
465  DwarfDebug(AsmPrinter *A, Module *M);
466  ~DwarfDebug();
467
468  /// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such
469  /// as llvm.dbg.enum and llvm.dbg.ty
470  void collectInfoFromNamedMDNodes(Module *M);
471
472  /// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder.
473  /// FIXME - Remove this when DragonEgg switches to DIBuilder.
474  bool collectLegacyDebugInfo(Module *M);
475
476  /// beginModule - Emit all Dwarf sections that should come prior to the
477  /// content.
478  void beginModule(Module *M);
479
480  /// endModule - Emit all Dwarf sections that should come after the content.
481  ///
482  void endModule();
483
484  /// beginFunction - Gather pre-function debug information.  Assumes being
485  /// emitted immediately after the function entry point.
486  void beginFunction(const MachineFunction *MF);
487
488  /// endFunction - Gather and emit post-function debug information.
489  ///
490  void endFunction(const MachineFunction *MF);
491
492  /// beginInstruction - Process beginning of an instruction.
493  void beginInstruction(const MachineInstr *MI);
494
495  /// endInstruction - Prcess end of an instruction.
496  void endInstruction(const MachineInstr *MI);
497
498  /// GetOrCreateSourceID - Look up the source id with the given directory and
499  /// source file names. If none currently exists, create a new id and insert it
500  /// in the SourceIds map.
501  unsigned GetOrCreateSourceID(StringRef DirName, StringRef FullName);
502
503  /// createSubprogramDIE - Create new DIE using SP.
504  DIE *createSubprogramDIE(DISubprogram SP);
505
506  /// getStringPool - returns the entry into the start of the pool.
507  MCSymbol *getStringPool();
508
509  /// getStringPoolEntry - returns an entry into the string pool with the given
510  /// string text.
511  MCSymbol *getStringPoolEntry(StringRef Str);
512};
513} // End of namespace llvm
514
515#endif
516