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