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