80-column.
[oota-llvm.git] / include / llvm / DebugInfo.h
1 //===--- llvm/Analysis/DebugInfo.h - Debug Information Helpers --*- 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 defines a bunch of datatypes that are useful for creating and
11 // walking debug info in LLVM IR form. They essentially provide wrappers around
12 // the information in the global variables that's needed when constructing the
13 // DWARF information.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef LLVM_DEBUGINFO_H
18 #define LLVM_DEBUGINFO_H
19
20 #include "llvm/ADT/SmallPtrSet.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/ADT/StringRef.h"
23 #include "llvm/Support/Dwarf.h"
24
25 namespace llvm {
26   class BasicBlock;
27   class Constant;
28   class Function;
29   class GlobalVariable;
30   class Module;
31   class Type;
32   class Value;
33   class DbgDeclareInst;
34   class DbgValueInst;
35   class Instruction;
36   class MDNode;
37   class NamedMDNode;
38   class LLVMContext;
39   class raw_ostream;
40
41   class DIFile;
42   class DISubprogram;
43   class DILexicalBlock;
44   class DILexicalBlockFile;
45   class DIVariable;
46   class DIType;
47   class DIObjCProperty;
48
49   /// DIDescriptor - A thin wraper around MDNode to access encoded debug info.
50   /// This should not be stored in a container, because the underlying MDNode
51   /// may change in certain situations.
52   class DIDescriptor {
53   public:
54     enum {
55       FlagPrivate            = 1 << 0,
56       FlagProtected          = 1 << 1,
57       FlagFwdDecl            = 1 << 2,
58       FlagAppleBlock         = 1 << 3,
59       FlagBlockByrefStruct   = 1 << 4,
60       FlagVirtual            = 1 << 5,
61       FlagArtificial         = 1 << 6,
62       FlagExplicit           = 1 << 7,
63       FlagPrototyped         = 1 << 8,
64       FlagObjcClassComplete  = 1 << 9,
65       FlagObjectPointer      = 1 << 10,
66       FlagVector             = 1 << 11,
67       FlagStaticMember       = 1 << 12,
68       FlagIndirectVariable   = 1 << 13
69     };
70   protected:
71     const MDNode *DbgNode;
72
73     StringRef getStringField(unsigned Elt) const;
74     unsigned getUnsignedField(unsigned Elt) const {
75       return (unsigned)getUInt64Field(Elt);
76     }
77     uint64_t getUInt64Field(unsigned Elt) const;
78     int64_t getInt64Field(unsigned Elt) const;
79     DIDescriptor getDescriptorField(unsigned Elt) const;
80
81     template <typename DescTy>
82     DescTy getFieldAs(unsigned Elt) const {
83       return DescTy(getDescriptorField(Elt));
84     }
85
86     GlobalVariable *getGlobalVariableField(unsigned Elt) const;
87     Constant *getConstantField(unsigned Elt) const;
88     Function *getFunctionField(unsigned Elt) const;
89     void replaceFunctionField(unsigned Elt, Function *F);
90
91   public:
92     explicit DIDescriptor() : DbgNode(0) {}
93     explicit DIDescriptor(const MDNode *N) : DbgNode(N) {}
94     explicit DIDescriptor(const DIFile F);
95     explicit DIDescriptor(const DISubprogram F);
96     explicit DIDescriptor(const DILexicalBlockFile F);
97     explicit DIDescriptor(const DILexicalBlock F);
98     explicit DIDescriptor(const DIVariable F);
99     explicit DIDescriptor(const DIType F);
100
101     bool Verify() const;
102
103     operator MDNode *() const { return const_cast<MDNode*>(DbgNode); }
104     MDNode *operator ->() const { return const_cast<MDNode*>(DbgNode); }
105
106     // An explicit operator bool so that we can do testing of DI values
107     // easily.
108     // FIXME: This operator bool isn't actually protecting anything at the
109     // moment due to the conversion operator above making DIDescriptor nodes
110     // implicitly convertable to bool.
111     LLVM_EXPLICIT operator bool() const { return DbgNode != 0; }
112
113     bool operator==(DIDescriptor Other) const {
114       return DbgNode == Other.DbgNode;
115     }
116     bool operator!=(DIDescriptor Other) const {
117       return !operator==(Other);
118     }
119
120     unsigned getTag() const {
121       return getUnsignedField(0) & ~LLVMDebugVersionMask;
122     }
123
124     bool isDerivedType() const;
125     bool isCompositeType() const;
126     bool isBasicType() const;
127     bool isVariable() const;
128     bool isSubprogram() const;
129     bool isGlobalVariable() const;
130     bool isScope() const;
131     bool isFile() const;
132     bool isCompileUnit() const;
133     bool isNameSpace() const;
134     bool isLexicalBlockFile() const;
135     bool isLexicalBlock() const;
136     bool isSubrange() const;
137     bool isEnumerator() const;
138     bool isType() const;
139     bool isGlobal() const;
140     bool isUnspecifiedParameter() const;
141     bool isTemplateTypeParameter() const;
142     bool isTemplateValueParameter() const;
143     bool isObjCProperty() const;
144     bool isImportedEntity() const;
145
146     /// print - print descriptor.
147     void print(raw_ostream &OS) const;
148
149     /// dump - print descriptor to dbgs() with a newline.
150     void dump() const;
151   };
152
153   /// DISubrange - This is used to represent ranges, for array bounds.
154   class DISubrange : public DIDescriptor {
155     friend class DIDescriptor;
156     void printInternal(raw_ostream &OS) const;
157   public:
158     explicit DISubrange(const MDNode *N = 0) : DIDescriptor(N) {}
159
160     int64_t getLo() const { return getInt64Field(1); }
161     int64_t  getCount() const { return getInt64Field(2); }
162     bool Verify() const;
163   };
164
165   /// DIArray - This descriptor holds an array of descriptors.
166   class DIArray : public DIDescriptor {
167   public:
168     explicit DIArray(const MDNode *N = 0)
169       : DIDescriptor(N) {}
170
171     unsigned getNumElements() const;
172     DIDescriptor getElement(unsigned Idx) const {
173       return getDescriptorField(Idx);
174     }
175   };
176
177   /// DIScope - A base class for various scopes.
178   class DIScope : public DIDescriptor {
179   protected:
180     friend class DIDescriptor;
181     void printInternal(raw_ostream &OS) const;
182   public:
183     explicit DIScope(const MDNode *N = 0) : DIDescriptor (N) {}
184
185     /// Set the filename by allocating a new string MDNode for
186     /// it and attaching it to the underlying node.
187     void setFilename(StringRef Name, LLVMContext &Context);
188     StringRef getFilename() const;
189     StringRef getDirectory() const;
190   };
191
192   /// DIFile - This is a wrapper for a file.
193   class DIFile : public DIScope {
194     friend class DIDescriptor;
195   public:
196     explicit DIFile(const MDNode *N = 0) : DIScope(N) {
197       if (DbgNode && !isFile())
198         DbgNode = 0;
199     }
200     MDNode *getFileNode() const;
201     bool Verify() const;
202   };
203
204   /// DICompileUnit - A wrapper for a compile unit.
205   class DICompileUnit : public DIScope {
206     friend class DIDescriptor;
207     void printInternal(raw_ostream &OS) const;
208   public:
209     explicit DICompileUnit(const MDNode *N = 0) : DIScope(N) {}
210
211     unsigned getLanguage() const { return getUnsignedField(2); }
212     StringRef getProducer() const { return getStringField(3); }
213
214     bool isOptimized() const { return getUnsignedField(4) != 0; }
215     StringRef getFlags() const { return getStringField(5); }
216     unsigned getRunTimeVersion() const { return getUnsignedField(6); }
217
218     DIArray getEnumTypes() const;
219     DIArray getRetainedTypes() const;
220     DIArray getSubprograms() const;
221     DIArray getGlobalVariables() const;
222     DIArray getImportedEntities() const;
223
224     StringRef getSplitDebugFilename() const { return getStringField(12); }
225
226     /// Verify - Verify that a compile unit is well formed.
227     bool Verify() const;
228   };
229
230   /// DIEnumerator - A wrapper for an enumerator (e.g. X and Y in 'enum {X,Y}').
231   /// FIXME: it seems strange that this doesn't have either a reference to the
232   /// type/precision or a file/line pair for location info.
233   class DIEnumerator : public DIDescriptor {
234     friend class DIDescriptor;
235     void printInternal(raw_ostream &OS) const;
236   public:
237     explicit DIEnumerator(const MDNode *N = 0) : DIDescriptor(N) {}
238
239     StringRef getName() const        { return getStringField(1); }
240     int64_t getEnumValue() const      { return getInt64Field(2); }
241     bool Verify() const;
242   };
243
244   /// DIType - This is a wrapper for a type.
245   /// FIXME: Types should be factored much better so that CV qualifiers and
246   /// others do not require a huge and empty descriptor full of zeros.
247   class DIType : public DIScope {
248   protected:
249     friend class DIDescriptor;
250     void printInternal(raw_ostream &OS) const;
251     // This ctor is used when the Tag has already been validated by a derived
252     // ctor.
253     DIType(const MDNode *N, bool, bool) : DIScope(N) {}
254   public:
255     /// Verify - Verify that a type descriptor is well formed.
256     bool Verify() const;
257     explicit DIType(const MDNode *N);
258     explicit DIType() {}
259
260     DIScope getContext() const          { return getFieldAs<DIScope>(2); }
261     StringRef getName() const           { return getStringField(3);     }
262     unsigned getLineNumber() const      { return getUnsignedField(4); }
263     uint64_t getSizeInBits() const      { return getUInt64Field(5); }
264     uint64_t getAlignInBits() const     { return getUInt64Field(6); }
265     // FIXME: Offset is only used for DW_TAG_member nodes.  Making every type
266     // carry this is just plain insane.
267     uint64_t getOffsetInBits() const    { return getUInt64Field(7); }
268     unsigned getFlags() const           { return getUnsignedField(8); }
269     bool isPrivate() const {
270       return (getFlags() & FlagPrivate) != 0;
271     }
272     bool isProtected() const {
273       return (getFlags() & FlagProtected) != 0;
274     }
275     bool isForwardDecl() const {
276       return (getFlags() & FlagFwdDecl) != 0;
277     }
278     // isAppleBlock - Return true if this is the Apple Blocks extension.
279     bool isAppleBlockExtension() const {
280       return (getFlags() & FlagAppleBlock) != 0;
281     }
282     bool isBlockByrefStruct() const {
283       return (getFlags() & FlagBlockByrefStruct) != 0;
284     }
285     bool isVirtual() const {
286       return (getFlags() & FlagVirtual) != 0;
287     }
288     bool isArtificial() const {
289       return (getFlags() & FlagArtificial) != 0;
290     }
291     bool isObjectPointer() const {
292       return (getFlags() & FlagObjectPointer) != 0;
293     }
294     bool isObjcClassComplete() const {
295       return (getFlags() & FlagObjcClassComplete) != 0;
296     }
297     bool isVector() const {
298       return (getFlags() & FlagVector) != 0;
299     }
300     bool isStaticMember() const {
301       return (getFlags() & FlagStaticMember) != 0;
302     }
303     bool isValid() const {
304       return DbgNode && isType();
305     }
306
307     /// isUnsignedDIType - Return true if type encoding is unsigned.
308     bool isUnsignedDIType();
309
310     /// replaceAllUsesWith - Replace all uses of debug info referenced by
311     /// this descriptor.
312     void replaceAllUsesWith(DIDescriptor &D);
313     void replaceAllUsesWith(MDNode *D);
314   };
315
316   /// DIBasicType - A basic type, like 'int' or 'float'.
317   class DIBasicType : public DIType {
318   public:
319     explicit DIBasicType(const MDNode *N = 0) : DIType(N) {}
320
321     unsigned getEncoding() const { return getUnsignedField(9); }
322
323     /// Verify - Verify that a basic type descriptor is well formed.
324     bool Verify() const;
325   };
326
327   /// DIDerivedType - A simple derived type, like a const qualified type,
328   /// a typedef, a pointer or reference, et cetera.  Or, a data member of
329   /// a class/struct/union.
330   class DIDerivedType : public DIType {
331     friend class DIDescriptor;
332     void printInternal(raw_ostream &OS) const;
333   protected:
334     explicit DIDerivedType(const MDNode *N, bool, bool)
335       : DIType(N, true, true) {}
336   public:
337     explicit DIDerivedType(const MDNode *N = 0)
338       : DIType(N, true, true) {}
339
340     DIType getTypeDerivedFrom() const { return getFieldAs<DIType>(9); }
341
342     /// getOriginalTypeSize - If this type is derived from a base type then
343     /// return base type size.
344     uint64_t getOriginalTypeSize() const;
345
346     /// getObjCProperty - Return property node, if this ivar is
347     /// associated with one.
348     MDNode *getObjCProperty() const;
349
350     DIType getClassType() const {
351       assert(getTag() == dwarf::DW_TAG_ptr_to_member_type);
352       return getFieldAs<DIType>(10);
353     }
354
355     Constant *getConstant() const {
356       assert((getTag() == dwarf::DW_TAG_member) && isStaticMember());
357       return getConstantField(10);
358     }
359
360     /// Verify - Verify that a derived type descriptor is well formed.
361     bool Verify() const;
362   };
363
364   /// DICompositeType - This descriptor holds a type that can refer to multiple
365   /// other types, like a function or struct.
366   /// DICompositeType is derived from DIDerivedType because some
367   /// composite types (such as enums) can be derived from basic types
368   // FIXME: Make this derive from DIType directly & just store the
369   // base type in a single DIType field.
370   class DICompositeType : public DIDerivedType {
371     friend class DIDescriptor;
372     void printInternal(raw_ostream &OS) const;
373   public:
374     explicit DICompositeType(const MDNode *N = 0)
375       : DIDerivedType(N, true, true) {
376       if (N && !isCompositeType())
377         DbgNode = 0;
378     }
379
380     DIArray getTypeArray() const { return getFieldAs<DIArray>(10); }
381     void setTypeArray(DIArray Elements, DIArray TParams = DIArray());
382     unsigned getRunTimeLang() const { return getUnsignedField(11); }
383     DICompositeType getContainingType() const {
384       return getFieldAs<DICompositeType>(12);
385     }
386     void setContainingType(DICompositeType ContainingType);
387     DIArray getTemplateParams() const { return getFieldAs<DIArray>(13); }
388
389     /// Verify - Verify that a composite type descriptor is well formed.
390     bool Verify() const;
391   };
392
393   /// DITemplateTypeParameter - This is a wrapper for template type parameter.
394   class DITemplateTypeParameter : public DIDescriptor {
395   public:
396     explicit DITemplateTypeParameter(const MDNode *N = 0) : DIDescriptor(N) {}
397
398     DIScope getContext() const       { return getFieldAs<DIScope>(1); }
399     StringRef getName() const        { return getStringField(2); }
400     DIType getType() const           { return getFieldAs<DIType>(3); }
401     StringRef getFilename() const    {
402       return getFieldAs<DIFile>(4).getFilename();
403     }
404     StringRef getDirectory() const   {
405       return getFieldAs<DIFile>(4).getDirectory();
406     }
407     unsigned getLineNumber() const   { return getUnsignedField(5); }
408     unsigned getColumnNumber() const { return getUnsignedField(6); }
409     bool Verify() const;
410   };
411
412   /// DITemplateValueParameter - This is a wrapper for template value parameter.
413   class DITemplateValueParameter : public DIDescriptor {
414   public:
415     explicit DITemplateValueParameter(const MDNode *N = 0) : DIDescriptor(N) {}
416
417     DIScope getContext() const       { return getFieldAs<DIScope>(1); }
418     StringRef getName() const        { return getStringField(2); }
419     DIType getType() const           { return getFieldAs<DIType>(3); }
420     Value *getValue() const;
421     StringRef getFilename() const    {
422       return getFieldAs<DIFile>(5).getFilename();
423     }
424     StringRef getDirectory() const   {
425       return getFieldAs<DIFile>(5).getDirectory();
426     }
427     unsigned getLineNumber() const   { return getUnsignedField(6); }
428     unsigned getColumnNumber() const { return getUnsignedField(7); }
429     bool Verify() const;
430   };
431
432   /// DISubprogram - This is a wrapper for a subprogram (e.g. a function).
433   class DISubprogram : public DIScope {
434     friend class DIDescriptor;
435     void printInternal(raw_ostream &OS) const;
436   public:
437     explicit DISubprogram(const MDNode *N = 0) : DIScope(N) {}
438
439     DIScope getContext() const          { return getFieldAs<DIScope>(2); }
440     StringRef getName() const         { return getStringField(3); }
441     StringRef getDisplayName() const  { return getStringField(4); }
442     StringRef getLinkageName() const  { return getStringField(5); }
443     unsigned getLineNumber() const      { return getUnsignedField(6); }
444     DICompositeType getType() const { return getFieldAs<DICompositeType>(7); }
445
446     /// isLocalToUnit - Return true if this subprogram is local to the current
447     /// compile unit, like 'static' in C.
448     unsigned isLocalToUnit() const     { return getUnsignedField(8); }
449     unsigned isDefinition() const      { return getUnsignedField(9); }
450
451     unsigned getVirtuality() const { return getUnsignedField(10); }
452     unsigned getVirtualIndex() const { return getUnsignedField(11); }
453
454     DICompositeType getContainingType() const {
455       return getFieldAs<DICompositeType>(12);
456     }
457
458     unsigned getFlags() const {
459       return getUnsignedField(13);
460     }
461
462     unsigned isArtificial() const    {
463       return (getUnsignedField(13) & FlagArtificial) != 0;
464     }
465     /// isPrivate - Return true if this subprogram has "private"
466     /// access specifier.
467     bool isPrivate() const    {
468       return (getUnsignedField(13) & FlagPrivate) != 0;
469     }
470     /// isProtected - Return true if this subprogram has "protected"
471     /// access specifier.
472     bool isProtected() const    {
473       return (getUnsignedField(13) & FlagProtected) != 0;
474     }
475     /// isExplicit - Return true if this subprogram is marked as explicit.
476     bool isExplicit() const    {
477       return (getUnsignedField(13) & FlagExplicit) != 0;
478     }
479     /// isPrototyped - Return true if this subprogram is prototyped.
480     bool isPrototyped() const    {
481       return (getUnsignedField(13) & FlagPrototyped) != 0;
482     }
483
484     unsigned isOptimized() const;
485
486     /// Verify - Verify that a subprogram descriptor is well formed.
487     bool Verify() const;
488
489     /// describes - Return true if this subprogram provides debugging
490     /// information for the function F.
491     bool describes(const Function *F);
492
493     Function *getFunction() const { return getFunctionField(15); }
494     void replaceFunction(Function *F) { replaceFunctionField(15, F); }
495     DIArray getTemplateParams() const { return getFieldAs<DIArray>(16); }
496     DISubprogram getFunctionDeclaration() const {
497       return getFieldAs<DISubprogram>(17);
498     }
499     MDNode *getVariablesNodes() const;
500     DIArray getVariables() const;
501
502     /// getScopeLineNumber - Get the beginning of the scope of the
503     /// function, not necessarily where the name of the program
504     /// starts.
505     unsigned getScopeLineNumber() const { return getUnsignedField(19); }
506   };
507
508   /// DIGlobalVariable - This is a wrapper for a global variable.
509   class DIGlobalVariable : public DIDescriptor {
510     friend class DIDescriptor;
511     void printInternal(raw_ostream &OS) const;
512   public:
513     explicit DIGlobalVariable(const MDNode *N = 0) : DIDescriptor(N) {}
514
515     DIScope getContext() const          { return getFieldAs<DIScope>(2); }
516     StringRef getName() const         { return getStringField(3); }
517     StringRef getDisplayName() const  { return getStringField(4); }
518     StringRef getLinkageName() const  { return getStringField(5); }
519     StringRef getFilename() const {
520       return getFieldAs<DIFile>(6).getFilename();
521     }
522     StringRef getDirectory() const {
523       return getFieldAs<DIFile>(6).getDirectory();
524
525     }
526
527     unsigned getLineNumber() const      { return getUnsignedField(7); }
528     DIType getType() const              { return getFieldAs<DIType>(8); }
529     unsigned isLocalToUnit() const      { return getUnsignedField(9); }
530     unsigned isDefinition() const       { return getUnsignedField(10); }
531
532     GlobalVariable *getGlobal() const { return getGlobalVariableField(11); }
533     Constant *getConstant() const   { return getConstantField(11); }
534     DIDerivedType getStaticDataMemberDeclaration() const {
535       return getFieldAs<DIDerivedType>(12);
536     }
537
538     /// Verify - Verify that a global variable descriptor is well formed.
539     bool Verify() const;
540   };
541
542   /// DIVariable - This is a wrapper for a variable (e.g. parameter, local,
543   /// global etc).
544   class DIVariable : public DIDescriptor {
545     friend class DIDescriptor;
546     void printInternal(raw_ostream &OS) const;
547   public:
548     explicit DIVariable(const MDNode *N = 0)
549       : DIDescriptor(N) {}
550
551     DIScope getContext() const          { return getFieldAs<DIScope>(1); }
552     StringRef getName() const           { return getStringField(2);     }
553     DIFile getFile() const              { return getFieldAs<DIFile>(3); }
554     unsigned getLineNumber() const      {
555       return (getUnsignedField(4) << 8) >> 8;
556     }
557     unsigned getArgNumber() const       {
558       unsigned L = getUnsignedField(4);
559       return L >> 24;
560     }
561     DIType getType() const              { return getFieldAs<DIType>(5); }
562
563     /// isArtificial - Return true if this variable is marked as "artificial".
564     bool isArtificial() const    {
565       return (getUnsignedField(6) & FlagArtificial) != 0;
566     }
567
568     bool isObjectPointer() const {
569       return (getUnsignedField(6) & FlagObjectPointer) != 0;
570     }
571
572     /// \brief Return true if this variable is represented as a pointer.
573     bool isIndirect() const {
574       return (getUnsignedField(6) & FlagIndirectVariable) != 0;
575     }
576
577     /// getInlinedAt - If this variable is inlined then return inline location.
578     MDNode *getInlinedAt() const;
579
580     /// Verify - Verify that a variable descriptor is well formed.
581     bool Verify() const;
582
583     /// HasComplexAddr - Return true if the variable has a complex address.
584     bool hasComplexAddress() const {
585       return getNumAddrElements() > 0;
586     }
587
588     unsigned getNumAddrElements() const;
589
590     uint64_t getAddrElement(unsigned Idx) const {
591       return getUInt64Field(Idx+8);
592     }
593
594     /// isBlockByrefVariable - Return true if the variable was declared as
595     /// a "__block" variable (Apple Blocks).
596     bool isBlockByrefVariable() const {
597       return getType().isBlockByrefStruct();
598     }
599
600     /// isInlinedFnArgument - Return true if this variable provides debugging
601     /// information for an inlined function arguments.
602     bool isInlinedFnArgument(const Function *CurFn);
603
604     void printExtendedName(raw_ostream &OS) const;
605   };
606
607   /// DILexicalBlock - This is a wrapper for a lexical block.
608   class DILexicalBlock : public DIScope {
609   public:
610     explicit DILexicalBlock(const MDNode *N = 0) : DIScope(N) {}
611     DIScope getContext() const       { return getFieldAs<DIScope>(2);      }
612     unsigned getLineNumber() const   { return getUnsignedField(3);         }
613     unsigned getColumnNumber() const { return getUnsignedField(4);         }
614     bool Verify() const;
615   };
616
617   /// DILexicalBlockFile - This is a wrapper for a lexical block with
618   /// a filename change.
619   class DILexicalBlockFile : public DIScope {
620   public:
621     explicit DILexicalBlockFile(const MDNode *N = 0) : DIScope(N) {}
622     DIScope getContext() const {
623       if (getScope().isSubprogram())
624         return getScope();
625       return getScope().getContext();
626     }
627     unsigned getLineNumber() const { return getScope().getLineNumber(); }
628     unsigned getColumnNumber() const { return getScope().getColumnNumber(); }
629     DILexicalBlock getScope() const { return getFieldAs<DILexicalBlock>(2); }
630     bool Verify() const;
631   };
632
633   /// DINameSpace - A wrapper for a C++ style name space.
634   class DINameSpace : public DIScope {
635     friend class DIDescriptor;
636     void printInternal(raw_ostream &OS) const;
637   public:
638     explicit DINameSpace(const MDNode *N = 0) : DIScope(N) {}
639     DIScope getContext() const     { return getFieldAs<DIScope>(2);      }
640     StringRef getName() const      { return getStringField(3);           }
641     unsigned getLineNumber() const { return getUnsignedField(4);         }
642     bool Verify() const;
643   };
644
645   /// DILocation - This object holds location information. This object
646   /// is not associated with any DWARF tag.
647   class DILocation : public DIDescriptor {
648   public:
649     explicit DILocation(const MDNode *N) : DIDescriptor(N) { }
650
651     unsigned getLineNumber() const     { return getUnsignedField(0); }
652     unsigned getColumnNumber() const   { return getUnsignedField(1); }
653     DIScope  getScope() const          { return getFieldAs<DIScope>(2); }
654     DILocation getOrigLocation() const { return getFieldAs<DILocation>(3); }
655     StringRef getFilename() const    { return getScope().getFilename(); }
656     StringRef getDirectory() const   { return getScope().getDirectory(); }
657     bool Verify() const;
658   };
659
660   class DIObjCProperty : public DIDescriptor {
661     friend class DIDescriptor;
662     void printInternal(raw_ostream &OS) const;
663   public:
664     explicit DIObjCProperty(const MDNode *N) : DIDescriptor(N) { }
665
666     StringRef getObjCPropertyName() const { return getStringField(1); }
667     DIFile getFile() const { return getFieldAs<DIFile>(2); }
668     unsigned getLineNumber() const { return getUnsignedField(3); }
669
670     StringRef getObjCPropertyGetterName() const {
671       return getStringField(4);
672     }
673     StringRef getObjCPropertySetterName() const {
674       return getStringField(5);
675     }
676     bool isReadOnlyObjCProperty() const {
677       return (getUnsignedField(6) & dwarf::DW_APPLE_PROPERTY_readonly) != 0;
678     }
679     bool isReadWriteObjCProperty() const {
680       return (getUnsignedField(6) & dwarf::DW_APPLE_PROPERTY_readwrite) != 0;
681     }
682     bool isAssignObjCProperty() const {
683       return (getUnsignedField(6) & dwarf::DW_APPLE_PROPERTY_assign) != 0;
684     }
685     bool isRetainObjCProperty() const {
686       return (getUnsignedField(6) & dwarf::DW_APPLE_PROPERTY_retain) != 0;
687     }
688     bool isCopyObjCProperty() const {
689       return (getUnsignedField(6) & dwarf::DW_APPLE_PROPERTY_copy) != 0;
690     }
691     bool isNonAtomicObjCProperty() const {
692       return (getUnsignedField(6) & dwarf::DW_APPLE_PROPERTY_nonatomic) != 0;
693     }
694
695     DIType getType() const { return getFieldAs<DIType>(7); }
696
697     /// Verify - Verify that a derived type descriptor is well formed.
698     bool Verify() const;
699   };
700
701   /// \brief An imported module (C++ using directive or similar).
702   class DIImportedEntity : public DIDescriptor {
703     friend class DIDescriptor;
704     void printInternal(raw_ostream &OS) const;
705   public:
706     explicit DIImportedEntity(const MDNode *N) : DIDescriptor(N) { }
707     DIScope getContext() const { return getFieldAs<DIScope>(1); }
708     DIDescriptor getEntity() const { return getFieldAs<DIDescriptor>(2); }
709     unsigned getLineNumber() const { return getUnsignedField(3); }
710     StringRef getName() const { return getStringField(4); }
711     bool Verify() const;
712   };
713
714   /// getDISubprogram - Find subprogram that is enclosing this scope.
715   DISubprogram getDISubprogram(const MDNode *Scope);
716
717   /// getDICompositeType - Find underlying composite type.
718   DICompositeType getDICompositeType(DIType T);
719
720   /// isSubprogramContext - Return true if Context is either a subprogram
721   /// or another context nested inside a subprogram.
722   bool isSubprogramContext(const MDNode *Context);
723
724   /// getOrInsertFnSpecificMDNode - Return a NameMDNode that is suitable
725   /// to hold function specific information.
726   NamedMDNode *getOrInsertFnSpecificMDNode(Module &M, DISubprogram SP);
727
728   /// getFnSpecificMDNode - Return a NameMDNode, if available, that is
729   /// suitable to hold function specific information.
730   NamedMDNode *getFnSpecificMDNode(const Module &M, DISubprogram SP);
731
732   /// createInlinedVariable - Create a new inlined variable based on current
733   /// variable.
734   /// @param DV            Current Variable.
735   /// @param InlinedScope  Location at current variable is inlined.
736   DIVariable createInlinedVariable(MDNode *DV, MDNode *InlinedScope,
737                                    LLVMContext &VMContext);
738
739   /// cleanseInlinedVariable - Remove inlined scope from the variable.
740   DIVariable cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext);
741
742   /// DebugInfoFinder tries to list all debug info MDNodes in a module. To
743   /// list debug info MDNodes used by an instruction, DebugInfoFinder uses
744   /// processDeclare and processValue. processModule will go through
745   /// all DICompileUnits and list debug info MDNodes used by the CUs.
746   class DebugInfoFinder {
747   public:
748     /// processModule - Process entire module and collect debug info
749     /// anchors.
750     void processModule(const Module &M);
751
752     /// processDeclare - Process DbgDeclareInst.
753     void processDeclare(const DbgDeclareInst *DDI);
754     /// Process DbgValueInst.
755     void processValue(const DbgValueInst *DVI);
756
757     /// Clear all lists.
758     void reset();
759   private:
760     /// processType - Process DIType.
761     void processType(DIType DT);
762
763     /// processLexicalBlock - Process DILexicalBlock.
764     void processLexicalBlock(DILexicalBlock LB);
765
766     /// processSubprogram - Process DISubprogram.
767     void processSubprogram(DISubprogram SP);
768
769     /// processLocation - Process DILocation.
770     void processLocation(DILocation Loc);
771
772     void processScope(DIScope Scope);
773
774     /// addCompileUnit - Add compile unit into CUs.
775     bool addCompileUnit(DICompileUnit CU);
776
777     /// addGlobalVariable - Add global variable into GVs.
778     bool addGlobalVariable(DIGlobalVariable DIG);
779
780     // addSubprogram - Add subprogram into SPs.
781     bool addSubprogram(DISubprogram SP);
782
783     /// addType - Add type into Tys.
784     bool addType(DIType DT);
785
786     bool addScope(DIScope Scope);
787
788   public:
789     typedef SmallVectorImpl<MDNode *>::const_iterator iterator;
790     iterator compile_unit_begin()    const { return CUs.begin(); }
791     iterator compile_unit_end()      const { return CUs.end(); }
792     iterator subprogram_begin()      const { return SPs.begin(); }
793     iterator subprogram_end()        const { return SPs.end(); }
794     iterator global_variable_begin() const { return GVs.begin(); }
795     iterator global_variable_end()   const { return GVs.end(); }
796     iterator type_begin()            const { return TYs.begin(); }
797     iterator type_end()              const { return TYs.end(); }
798     iterator scope_begin()           const { return Scopes.begin(); }
799     iterator scope_end()             const { return Scopes.end(); }
800
801     unsigned compile_unit_count()    const { return CUs.size(); }
802     unsigned global_variable_count() const { return GVs.size(); }
803     unsigned subprogram_count()      const { return SPs.size(); }
804     unsigned type_count()            const { return TYs.size(); }
805     unsigned scope_count()           const { return Scopes.size(); }
806
807   private:
808     SmallVector<MDNode *, 8> CUs;  // Compile Units
809     SmallVector<MDNode *, 8> SPs;  // Subprograms
810     SmallVector<MDNode *, 8> GVs;  // Global Variables;
811     SmallVector<MDNode *, 8> TYs;  // Types
812     SmallVector<MDNode *, 8> Scopes; // Scopes
813     SmallPtrSet<MDNode *, 64> NodesSeen;
814   };
815 } // end namespace llvm
816
817 #endif