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