Derive DIType from DIScope. This simplifies getContext() where for members the contex...
[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 "DwarfPrinter.h"
19 #include "llvm/CodeGen/AsmPrinter.h"
20 #include "llvm/CodeGen/MachineLocation.h"
21 #include "llvm/Analysis/DebugInfo.h"
22 #include "llvm/Support/raw_ostream.h"
23 #include "llvm/ADT/DenseMap.h"
24 #include "llvm/ADT/FoldingSet.h"
25 #include "llvm/ADT/SmallSet.h"
26 #include "llvm/ADT/StringMap.h"
27 #include "llvm/ADT/UniqueVector.h"
28 #include <string>
29
30 namespace llvm {
31
32 class CompileUnit;
33 class DbgConcreteScope;
34 class DbgScope;
35 class DbgVariable;
36 class MachineFrameInfo;
37 class MachineModuleInfo;
38 class MCAsmInfo;
39 class Timer;
40
41 //===----------------------------------------------------------------------===//
42 /// SrcLineInfo - This class is used to record source line correspondence.
43 ///
44 class SrcLineInfo {
45   unsigned Line;                     // Source line number.
46   unsigned Column;                   // Source column.
47   unsigned SourceID;                 // Source ID number.
48   unsigned LabelID;                  // Label in code ID number.
49 public:
50   SrcLineInfo(unsigned L, unsigned C, unsigned S, unsigned I)
51     : Line(L), Column(C), SourceID(S), LabelID(I) {}
52
53   // Accessors
54   unsigned getLine() const { return Line; }
55   unsigned getColumn() const { return Column; }
56   unsigned getSourceID() const { return SourceID; }
57   unsigned getLabelID() const { return LabelID; }
58 };
59
60 class DwarfDebug : public DwarfPrinter {
61   //===--------------------------------------------------------------------===//
62   // Attributes used to construct specific Dwarf sections.
63   //
64
65   /// ModuleCU - All DIEs are inserted in ModuleCU.
66   CompileUnit *ModuleCU;
67
68   /// AbbreviationsSet - Used to uniquely define abbreviations.
69   ///
70   FoldingSet<DIEAbbrev> AbbreviationsSet;
71
72   /// Abbreviations - A list of all the unique abbreviations in use.
73   ///
74   std::vector<DIEAbbrev *> Abbreviations;
75
76   /// DirectoryIdMap - Directory name to directory id map.
77   ///
78   StringMap<unsigned> DirectoryIdMap;
79
80   /// DirectoryNames - A list of directory names.
81   SmallVector<std::string, 8> DirectoryNames;
82
83   /// SourceFileIdMap - Source file name to source file id map.
84   ///
85   StringMap<unsigned> SourceFileIdMap;
86
87   /// SourceFileNames - A list of source file names.
88   SmallVector<std::string, 8> SourceFileNames;
89
90   /// SourceIdMap - Source id map, i.e. pair of directory id and source file
91   /// id mapped to a unique id.
92   DenseMap<std::pair<unsigned, unsigned>, unsigned> SourceIdMap;
93
94   /// SourceIds - Reverse map from source id to directory id + file id pair.
95   ///
96   SmallVector<std::pair<unsigned, unsigned>, 8> SourceIds;
97
98   /// Lines - List of source line correspondence.
99   std::vector<SrcLineInfo> Lines;
100
101   /// DIEValues - A list of all the unique values in use.
102   ///
103   std::vector<DIEValue *> DIEValues;
104
105   /// StringPool - A UniqueVector of strings used by indirect references.
106   ///
107   UniqueVector<std::string> StringPool;
108
109   /// SectionMap - Provides a unique id per text section.
110   ///
111   UniqueVector<const MCSection*> SectionMap;
112
113   /// SectionSourceLines - Tracks line numbers per text section.
114   ///
115   std::vector<std::vector<SrcLineInfo> > SectionSourceLines;
116
117   /// didInitial - Flag to indicate if initial emission has been done.
118   ///
119   bool didInitial;
120
121   /// shouldEmit - Flag to indicate if debug information should be emitted.
122   ///
123   bool shouldEmit;
124
125   // CurrentFnDbgScope - Top level scope for the current function.
126   //
127   DbgScope *CurrentFnDbgScope;
128   
129   /// DbgScopeMap - Tracks the scopes in the current function.
130   ///
131   DenseMap<MDNode *, DbgScope *> DbgScopeMap;
132
133   /// ConcreteScopes - Tracks the concrete scopees in the current function.
134   /// These scopes are also included in DbgScopeMap.
135   DenseMap<MDNode *, DbgScope *> ConcreteScopes;
136
137   /// AbstractScopes - Tracks the abstract scopes a module. These scopes are
138   /// not included DbgScopeMap.
139   DenseMap<MDNode *, DbgScope *> AbstractScopes;
140   SmallVector<DbgScope *, 4>AbstractScopesList;
141
142   /// AbstractVariables - Collection on abstract variables.
143   DenseMap<MDNode *, DbgVariable *> AbstractVariables;
144
145   /// InliendSubprogramDIEs - Collection of subprgram DIEs that are marked
146   /// (at the end of the module) as DW_AT_inline.
147   SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs;
148
149   DenseMap<DIE *, MDNode *> ContainingTypeMap;
150
151   /// AbstractSubprogramDIEs - Collection of abstruct subprogram DIEs.
152   SmallPtrSet<DIE *, 4> AbstractSubprogramDIEs;
153
154   /// TopLevelDIEs - Collection of top level DIEs. 
155   SmallPtrSet<DIE *, 4> TopLevelDIEs;
156   SmallVector<DIE *, 4> TopLevelDIEsVector;
157
158   typedef SmallVector<DbgScope *, 2> ScopeVector;
159   typedef DenseMap<const MachineInstr *, ScopeVector>
160     InsnToDbgScopeMapTy;
161
162   /// DbgScopeBeginMap - Maps instruction with a list of DbgScopes it starts.
163   InsnToDbgScopeMapTy DbgScopeBeginMap;
164
165   /// DbgScopeEndMap - Maps instruction with a list DbgScopes it ends.
166   InsnToDbgScopeMapTy DbgScopeEndMap;
167
168   /// InlineInfo - Keep track of inlined functions and their location.  This
169   /// information is used to populate debug_inlined section.
170   typedef std::pair<unsigned, DIE *> InlineInfoLabels;
171   DenseMap<MDNode *, SmallVector<InlineInfoLabels, 4> > InlineInfo;
172   SmallVector<MDNode *, 4> InlinedSPNodes;
173
174   /// CompileUnitOffsets - A vector of the offsets of the compile units. This is
175   /// used when calculating the "origin" of a concrete instance of an inlined
176   /// function.
177   DenseMap<CompileUnit *, unsigned> CompileUnitOffsets;
178
179   /// DebugTimer - Timer for the Dwarf debug writer.
180   Timer *DebugTimer;
181   
182   struct FunctionDebugFrameInfo {
183     unsigned Number;
184     std::vector<MachineMove> Moves;
185
186     FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M)
187       : Number(Num), Moves(M) {}
188   };
189
190   std::vector<FunctionDebugFrameInfo> DebugFrames;
191
192   /// getSourceDirectoryAndFileIds - Return the directory and file ids that
193   /// maps to the source id. Source id starts at 1.
194   std::pair<unsigned, unsigned>
195   getSourceDirectoryAndFileIds(unsigned SId) const {
196     return SourceIds[SId-1];
197   }
198
199   /// getNumSourceDirectories - Return the number of source directories in the
200   /// debug info.
201   unsigned getNumSourceDirectories() const {
202     return DirectoryNames.size();
203   }
204
205   /// getSourceDirectoryName - Return the name of the directory corresponding
206   /// to the id.
207   const std::string &getSourceDirectoryName(unsigned Id) const {
208     return DirectoryNames[Id - 1];
209   }
210
211   /// getSourceFileName - Return the name of the source file corresponding
212   /// to the id.
213   const std::string &getSourceFileName(unsigned Id) const {
214     return SourceFileNames[Id - 1];
215   }
216
217   /// getNumSourceIds - Return the number of unique source ids.
218   unsigned getNumSourceIds() const {
219     return SourceIds.size();
220   }
221
222   /// assignAbbrevNumber - Define a unique number for the abbreviation.
223   ///
224   void assignAbbrevNumber(DIEAbbrev &Abbrev);
225
226   /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug
227   /// information entry.
228   DIEEntry *createDIEEntry(DIE *Entry = NULL);
229
230   /// addUInt - Add an unsigned integer attribute data and value.
231   ///
232   void addUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer);
233
234   /// addSInt - Add an signed integer attribute data and value.
235   ///
236   void addSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer);
237
238   /// addString - Add a string attribute data and value.
239   ///
240   void addString(DIE *Die, unsigned Attribute, unsigned Form,
241                  const StringRef Str);
242
243   /// addLabel - Add a Dwarf label attribute data and value.
244   ///
245   void addLabel(DIE *Die, unsigned Attribute, unsigned Form,
246                 const DWLabel &Label);
247
248   /// addObjectLabel - Add an non-Dwarf label attribute data and value.
249   ///
250   void addObjectLabel(DIE *Die, unsigned Attribute, unsigned Form,
251                       const MCSymbol *Sym);
252
253   /// addSectionOffset - Add a section offset label attribute data and value.
254   ///
255   void addSectionOffset(DIE *Die, unsigned Attribute, unsigned Form,
256                         const DWLabel &Label, const DWLabel &Section,
257                         bool isEH = false, bool useSet = true);
258
259   /// addDelta - Add a label delta attribute data and value.
260   ///
261   void addDelta(DIE *Die, unsigned Attribute, unsigned Form,
262                 const DWLabel &Hi, const DWLabel &Lo);
263
264   /// addDIEEntry - Add a DIE attribute data and value.
265   ///
266   void addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry) {
267     Die->addValue(Attribute, Form, createDIEEntry(Entry));
268   }
269
270   /// addBlock - Add block data.
271   ///
272   void addBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block);
273
274   /// addSourceLine - Add location information to specified debug information
275   /// entry.
276   void addSourceLine(DIE *Die, const DIVariable *V);
277   void addSourceLine(DIE *Die, const DIGlobal *G);
278   void addSourceLine(DIE *Die, const DISubprogram *SP);
279   void addSourceLine(DIE *Die, const DIType *Ty);
280   void addSourceLine(DIE *Die, const DINameSpace *NS);
281
282   /// addAddress - Add an address attribute to a die based on the location
283   /// provided.
284   void addAddress(DIE *Die, unsigned Attribute,
285                   const MachineLocation &Location);
286
287   /// addComplexAddress - Start with the address based on the location provided,
288   /// and generate the DWARF information necessary to find the actual variable
289   /// (navigating the extra location information encoded in the type) based on
290   /// the starting location.  Add the DWARF information to the die.
291   ///
292   void addComplexAddress(DbgVariable *&DV, DIE *Die, unsigned Attribute,
293                          const MachineLocation &Location);
294
295   // FIXME: Should be reformulated in terms of addComplexAddress.
296   /// addBlockByrefAddress - Start with the address based on the location
297   /// provided, and generate the DWARF information necessary to find the
298   /// actual Block variable (navigating the Block struct) based on the
299   /// starting location.  Add the DWARF information to the die.  Obsolete,
300   /// please use addComplexAddress instead.
301   ///
302   void addBlockByrefAddress(DbgVariable *&DV, DIE *Die, unsigned Attribute,
303                             const MachineLocation &Location);
304
305   /// addToContextOwner - Add Die into the list of its context owner's children.
306   void addToContextOwner(DIE *Die, DIDescriptor Context);
307
308   /// addType - Add a new type attribute to the specified entity.
309   void addType(DIE *Entity, DIType Ty);
310
311  
312   /// getOrCreateNameSpace - Create a DIE for DINameSpace.
313   DIE *getOrCreateNameSpace(DINameSpace NS);
314
315   /// getOrCreateTypeDIE - Find existing DIE or create new DIE for the
316   /// given DIType.
317   DIE *getOrCreateTypeDIE(DIType Ty);
318
319   void addPubTypes(DISubprogram SP);
320
321   /// constructTypeDIE - Construct basic type die from DIBasicType.
322   void constructTypeDIE(DIE &Buffer,
323                         DIBasicType BTy);
324
325   /// constructTypeDIE - Construct derived type die from DIDerivedType.
326   void constructTypeDIE(DIE &Buffer,
327                         DIDerivedType DTy);
328
329   /// constructTypeDIE - Construct type DIE from DICompositeType.
330   void constructTypeDIE(DIE &Buffer,
331                         DICompositeType CTy);
332
333   /// constructSubrangeDIE - Construct subrange DIE from DISubrange.
334   void constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy);
335
336   /// constructArrayTypeDIE - Construct array type DIE from DICompositeType.
337   void constructArrayTypeDIE(DIE &Buffer, 
338                              DICompositeType *CTy);
339
340   /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator.
341   DIE *constructEnumTypeDIE(DIEnumerator ETy);
342
343   /// createGlobalVariableDIE - Create new DIE using GV.
344   DIE *createGlobalVariableDIE(const DIGlobalVariable &GV);
345
346   /// createMemberDIE - Create new member DIE.
347   DIE *createMemberDIE(const DIDerivedType &DT);
348
349   /// createSubprogramDIE - Create new DIE using SP.
350   DIE *createSubprogramDIE(const DISubprogram &SP, bool MakeDecl = false);
351
352   /// getUpdatedDbgScope - Find or create DbgScope assicated with 
353   /// the instruction. Initialize scope and update scope hierarchy.
354   DbgScope *getUpdatedDbgScope(MDNode *N, const MachineInstr *MI, MDNode *InlinedAt);
355
356   /// createDbgScope - Create DbgScope for the scope.
357   void createDbgScope(MDNode *Scope, MDNode *InlinedAt);
358
359   DbgScope *getOrCreateAbstractScope(MDNode *N);
360
361   /// findAbstractVariable - Find abstract variable associated with Var.
362   DbgVariable *findAbstractVariable(DIVariable &Var, unsigned FrameIdx, 
363                                     DILocation &Loc);
364
365   /// updateSubprogramScopeDIE - Find DIE for the given subprogram and 
366   /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes.
367   /// If there are global variables in this scope then create and insert
368   /// DIEs for these variables.
369   DIE *updateSubprogramScopeDIE(MDNode *SPNode);
370
371   /// constructLexicalScope - Construct new DW_TAG_lexical_block 
372   /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
373   DIE *constructLexicalScopeDIE(DbgScope *Scope);
374
375   /// constructInlinedScopeDIE - This scope represents inlined body of
376   /// a function. Construct DIE to represent this concrete inlined copy
377   /// of the function.
378   DIE *constructInlinedScopeDIE(DbgScope *Scope);
379
380   /// constructVariableDIE - Construct a DIE for the given DbgVariable.
381   DIE *constructVariableDIE(DbgVariable *DV, DbgScope *S);
382
383   /// constructScopeDIE - Construct a DIE for this scope.
384   DIE *constructScopeDIE(DbgScope *Scope);
385
386   /// emitInitial - Emit initial Dwarf declarations.  This is necessary for cc
387   /// tools to recognize the object file contains Dwarf information.
388   void emitInitial();
389
390   /// emitDIE - Recusively Emits a debug information entry.
391   ///
392   void emitDIE(DIE *Die);
393
394   /// computeSizeAndOffset - Compute the size and offset of a DIE.
395   ///
396   unsigned computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last);
397
398   /// computeSizeAndOffsets - Compute the size and offset of all the DIEs.
399   ///
400   void computeSizeAndOffsets();
401
402   /// EmitDebugInfo - Emit the debug info section.
403   ///
404   void emitDebugInfo();
405
406   /// emitAbbreviations - Emit the abbreviation section.
407   ///
408   void emitAbbreviations() const;
409
410   /// emitEndOfLineMatrix - Emit the last address of the section and the end of
411   /// the line matrix.
412   ///
413   void emitEndOfLineMatrix(unsigned SectionEnd);
414
415   /// emitDebugLines - Emit source line information.
416   ///
417   void emitDebugLines();
418
419   /// emitCommonDebugFrame - Emit common frame info into a debug frame section.
420   ///
421   void emitCommonDebugFrame();
422
423   /// emitFunctionDebugFrame - Emit per function frame info into a debug frame
424   /// section.
425   void emitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo);
426
427   /// emitDebugPubNames - Emit visible names into a debug pubnames section.
428   ///
429   void emitDebugPubNames();
430
431   /// emitDebugPubTypes - Emit visible types into a debug pubtypes section.
432   ///
433   void emitDebugPubTypes();
434
435   /// emitDebugStr - Emit visible names into a debug str section.
436   ///
437   void emitDebugStr();
438
439   /// emitDebugLoc - Emit visible names into a debug loc section.
440   ///
441   void emitDebugLoc();
442
443   /// EmitDebugARanges - Emit visible names into a debug aranges section.
444   ///
445   void EmitDebugARanges();
446
447   /// emitDebugRanges - Emit visible names into a debug ranges section.
448   ///
449   void emitDebugRanges();
450
451   /// emitDebugMacInfo - Emit visible names into a debug macinfo section.
452   ///
453   void emitDebugMacInfo();
454
455   /// emitDebugInlineInfo - Emit inline info using following format.
456   /// Section Header:
457   /// 1. length of section
458   /// 2. Dwarf version number
459   /// 3. address size.
460   ///
461   /// Entries (one "entry" for each function that was inlined):
462   ///
463   /// 1. offset into __debug_str section for MIPS linkage name, if exists; 
464   ///   otherwise offset into __debug_str for regular function name.
465   /// 2. offset into __debug_str section for regular function name.
466   /// 3. an unsigned LEB128 number indicating the number of distinct inlining 
467   /// instances for the function.
468   /// 
469   /// The rest of the entry consists of a {die_offset, low_pc}  pair for each 
470   /// inlined instance; the die_offset points to the inlined_subroutine die in
471   /// the __debug_info section, and the low_pc is the starting address  for the
472   ///  inlining instance.
473   void emitDebugInlineInfo();
474
475   /// GetOrCreateSourceID - Look up the source id with the given directory and
476   /// source file names. If none currently exists, create a new id and insert it
477   /// in the SourceIds map. This can update DirectoryNames and SourceFileNames maps
478   /// as well.
479   unsigned GetOrCreateSourceID(StringRef DirName, StringRef FileName);
480
481   CompileUnit *constructCompileUnit(MDNode *N);
482
483   void constructGlobalVariableDIE(MDNode *N);
484
485   void constructSubprogramDIE(MDNode *N);
486
487   // FIXME: This should go away in favor of complex addresses.
488   /// Find the type the programmer originally declared the variable to be
489   /// and return that type.  Obsolete, use GetComplexAddrType instead.
490   ///
491   DIType getBlockByrefType(DIType Ty, std::string Name);
492
493 public:
494   //===--------------------------------------------------------------------===//
495   // Main entry points.
496   //
497   DwarfDebug(raw_ostream &OS, AsmPrinter *A, const MCAsmInfo *T);
498   virtual ~DwarfDebug();
499
500   /// ShouldEmitDwarfDebug - Returns true if Dwarf debugging declarations should
501   /// be emitted.
502   bool ShouldEmitDwarfDebug() const { return shouldEmit; }
503
504   /// beginModule - Emit all Dwarf sections that should come prior to the
505   /// content.
506   void beginModule(Module *M, MachineModuleInfo *MMI);
507
508   /// endModule - Emit all Dwarf sections that should come after the content.
509   ///
510   void endModule();
511
512   /// beginFunction - Gather pre-function debug information.  Assumes being
513   /// emitted immediately after the function entry point.
514   void beginFunction(const MachineFunction *MF);
515
516   /// endFunction - Gather and emit post-function debug information.
517   ///
518   void endFunction(const MachineFunction *MF);
519
520   /// recordSourceLine - Records location information and associates it with a 
521   /// label. Returns a unique label ID used to generate a label and provide
522   /// correspondence to the source line list.
523   unsigned recordSourceLine(unsigned Line, unsigned Col, MDNode *Scope);
524
525   /// getSourceLineCount - Return the number of source lines in the debug
526   /// info.
527   unsigned getSourceLineCount() const {
528     return Lines.size();
529   }
530                             
531   /// getOrCreateSourceID - Public version of GetOrCreateSourceID. This can be
532   /// timed. Look up the source id with the given directory and source file
533   /// names. If none currently exists, create a new id and insert it in the
534   /// SourceIds map. This can update DirectoryNames and SourceFileNames maps as
535   /// well.
536   unsigned getOrCreateSourceID(const std::string &DirName,
537                                const std::string &FileName);
538
539   /// extractScopeInformation - Scan machine instructions in this function
540   /// and collect DbgScopes. Return true, if atleast one scope was found.
541   bool extractScopeInformation();
542
543   /// collectVariableInfo - Populate DbgScope entries with variables' info.
544   void collectVariableInfo();
545
546   /// beginScope - Process beginning of a scope starting at Label.
547   void beginScope(const MachineInstr *MI, unsigned Label);
548
549   /// endScope - Prcess end of a scope.
550   void endScope(const MachineInstr *MI);
551 };
552 } // End of namespace llvm
553
554 #endif