Debug Info: Use DIScopeRef for DIType::getContext.
[oota-llvm.git] / lib / IR / DebugInfo.cpp
1 //===--- DebugInfo.cpp - Debug Information Helper Classes -----------------===//
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 implements the helper classes used to build and interpret debug
11 // information in LLVM IR form.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/DebugInfo.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/ADT/SmallPtrSet.h"
18 #include "llvm/ADT/SmallString.h"
19 #include "llvm/Analysis/ValueTracking.h"
20 #include "llvm/IR/Constants.h"
21 #include "llvm/IR/DerivedTypes.h"
22 #include "llvm/IR/Instructions.h"
23 #include "llvm/IR/IntrinsicInst.h"
24 #include "llvm/IR/Intrinsics.h"
25 #include "llvm/IR/Module.h"
26 #include "llvm/Support/Debug.h"
27 #include "llvm/Support/Dwarf.h"
28 #include "llvm/Support/ValueHandle.h"
29 #include "llvm/Support/raw_ostream.h"
30 using namespace llvm;
31 using namespace llvm::dwarf;
32
33 //===----------------------------------------------------------------------===//
34 // DIDescriptor
35 //===----------------------------------------------------------------------===//
36
37 bool DIDescriptor::Verify() const {
38   return DbgNode &&
39          (DIDerivedType(DbgNode).Verify() ||
40           DICompositeType(DbgNode).Verify() || DIBasicType(DbgNode).Verify() ||
41           DIVariable(DbgNode).Verify() || DISubprogram(DbgNode).Verify() ||
42           DIGlobalVariable(DbgNode).Verify() || DIFile(DbgNode).Verify() ||
43           DICompileUnit(DbgNode).Verify() || DINameSpace(DbgNode).Verify() ||
44           DILexicalBlock(DbgNode).Verify() ||
45           DILexicalBlockFile(DbgNode).Verify() ||
46           DISubrange(DbgNode).Verify() || DIEnumerator(DbgNode).Verify() ||
47           DIObjCProperty(DbgNode).Verify() ||
48           DITemplateTypeParameter(DbgNode).Verify() ||
49           DITemplateValueParameter(DbgNode).Verify() ||
50           DIImportedEntity(DbgNode).Verify());
51 }
52
53 static Value *getField(const MDNode *DbgNode, unsigned Elt) {
54   if (DbgNode == 0 || Elt >= DbgNode->getNumOperands())
55     return 0;
56   return DbgNode->getOperand(Elt);
57 }
58
59 static MDNode *getNodeField(const MDNode *DbgNode, unsigned Elt) {
60   return dyn_cast_or_null<MDNode>(getField(DbgNode, Elt));
61 }
62
63 static StringRef getStringField(const MDNode *DbgNode, unsigned Elt) {
64   if (MDString *MDS = dyn_cast_or_null<MDString>(getField(DbgNode, Elt)))
65     return MDS->getString();
66   return StringRef();
67 }
68
69 StringRef DIDescriptor::getStringField(unsigned Elt) const {
70   return ::getStringField(DbgNode, Elt);
71 }
72
73 uint64_t DIDescriptor::getUInt64Field(unsigned Elt) const {
74   if (DbgNode == 0)
75     return 0;
76
77   if (Elt < DbgNode->getNumOperands())
78     if (ConstantInt *CI
79         = dyn_cast_or_null<ConstantInt>(DbgNode->getOperand(Elt)))
80       return CI->getZExtValue();
81
82   return 0;
83 }
84
85 int64_t DIDescriptor::getInt64Field(unsigned Elt) const {
86   if (DbgNode == 0)
87     return 0;
88
89   if (Elt < DbgNode->getNumOperands())
90     if (ConstantInt *CI
91         = dyn_cast_or_null<ConstantInt>(DbgNode->getOperand(Elt)))
92       return CI->getSExtValue();
93
94   return 0;
95 }
96
97 DIDescriptor DIDescriptor::getDescriptorField(unsigned Elt) const {
98   MDNode *Field = getNodeField(DbgNode, Elt);
99   return DIDescriptor(Field);
100 }
101
102 GlobalVariable *DIDescriptor::getGlobalVariableField(unsigned Elt) const {
103   if (DbgNode == 0)
104     return 0;
105
106   if (Elt < DbgNode->getNumOperands())
107       return dyn_cast_or_null<GlobalVariable>(DbgNode->getOperand(Elt));
108   return 0;
109 }
110
111 Constant *DIDescriptor::getConstantField(unsigned Elt) const {
112   if (DbgNode == 0)
113     return 0;
114
115   if (Elt < DbgNode->getNumOperands())
116       return dyn_cast_or_null<Constant>(DbgNode->getOperand(Elt));
117   return 0;
118 }
119
120 Function *DIDescriptor::getFunctionField(unsigned Elt) const {
121   if (DbgNode == 0)
122     return 0;
123
124   if (Elt < DbgNode->getNumOperands())
125       return dyn_cast_or_null<Function>(DbgNode->getOperand(Elt));
126   return 0;
127 }
128
129 void DIDescriptor::replaceFunctionField(unsigned Elt, Function *F) {
130   if (DbgNode == 0)
131     return;
132
133   if (Elt < DbgNode->getNumOperands()) {
134     MDNode *Node = const_cast<MDNode*>(DbgNode);
135     Node->replaceOperandWith(Elt, F);
136   }
137 }
138
139 unsigned DIVariable::getNumAddrElements() const {
140   return DbgNode->getNumOperands()-8;
141 }
142
143 /// getInlinedAt - If this variable is inlined then return inline location.
144 MDNode *DIVariable::getInlinedAt() const {
145   return getNodeField(DbgNode, 7);
146 }
147
148 //===----------------------------------------------------------------------===//
149 // Predicates
150 //===----------------------------------------------------------------------===//
151
152 /// isBasicType - Return true if the specified tag is legal for
153 /// DIBasicType.
154 bool DIDescriptor::isBasicType() const {
155   if (!DbgNode) return false;
156   switch (getTag()) {
157   case dwarf::DW_TAG_base_type:
158   case dwarf::DW_TAG_unspecified_type:
159     return true;
160   default:
161     return false;
162   }
163 }
164
165 /// isDerivedType - Return true if the specified tag is legal for DIDerivedType.
166 bool DIDescriptor::isDerivedType() const {
167   if (!DbgNode) return false;
168   switch (getTag()) {
169   case dwarf::DW_TAG_typedef:
170   case dwarf::DW_TAG_pointer_type:
171   case dwarf::DW_TAG_ptr_to_member_type:
172   case dwarf::DW_TAG_reference_type:
173   case dwarf::DW_TAG_rvalue_reference_type:
174   case dwarf::DW_TAG_const_type:
175   case dwarf::DW_TAG_volatile_type:
176   case dwarf::DW_TAG_restrict_type:
177   case dwarf::DW_TAG_member:
178   case dwarf::DW_TAG_inheritance:
179   case dwarf::DW_TAG_friend:
180     return true;
181   default:
182     // CompositeTypes are currently modelled as DerivedTypes.
183     return isCompositeType();
184   }
185 }
186
187 /// isCompositeType - Return true if the specified tag is legal for
188 /// DICompositeType.
189 bool DIDescriptor::isCompositeType() const {
190   if (!DbgNode) return false;
191   switch (getTag()) {
192   case dwarf::DW_TAG_array_type:
193   case dwarf::DW_TAG_structure_type:
194   case dwarf::DW_TAG_union_type:
195   case dwarf::DW_TAG_enumeration_type:
196   case dwarf::DW_TAG_subroutine_type:
197   case dwarf::DW_TAG_class_type:
198     return true;
199   default:
200     return false;
201   }
202 }
203
204 /// isVariable - Return true if the specified tag is legal for DIVariable.
205 bool DIDescriptor::isVariable() const {
206   if (!DbgNode) return false;
207   switch (getTag()) {
208   case dwarf::DW_TAG_auto_variable:
209   case dwarf::DW_TAG_arg_variable:
210     return true;
211   default:
212     return false;
213   }
214 }
215
216 /// isType - Return true if the specified tag is legal for DIType.
217 bool DIDescriptor::isType() const {
218   return isBasicType() || isCompositeType() || isDerivedType();
219 }
220
221 /// isSubprogram - Return true if the specified tag is legal for
222 /// DISubprogram.
223 bool DIDescriptor::isSubprogram() const {
224   return DbgNode && getTag() == dwarf::DW_TAG_subprogram;
225 }
226
227 /// isGlobalVariable - Return true if the specified tag is legal for
228 /// DIGlobalVariable.
229 bool DIDescriptor::isGlobalVariable() const {
230   return DbgNode && (getTag() == dwarf::DW_TAG_variable ||
231                      getTag() == dwarf::DW_TAG_constant);
232 }
233
234 /// isUnspecifiedParmeter - Return true if the specified tag is
235 /// DW_TAG_unspecified_parameters.
236 bool DIDescriptor::isUnspecifiedParameter() const {
237   return DbgNode && getTag() == dwarf::DW_TAG_unspecified_parameters;
238 }
239
240 /// isScope - Return true if the specified tag is one of the scope
241 /// related tag.
242 bool DIDescriptor::isScope() const {
243   if (!DbgNode) return false;
244   switch (getTag()) {
245   case dwarf::DW_TAG_compile_unit:
246   case dwarf::DW_TAG_lexical_block:
247   case dwarf::DW_TAG_subprogram:
248   case dwarf::DW_TAG_namespace:
249   case dwarf::DW_TAG_file_type:
250     return true;
251   default:
252     break;
253   }
254   return isType();
255 }
256
257 /// isTemplateTypeParameter - Return true if the specified tag is
258 /// DW_TAG_template_type_parameter.
259 bool DIDescriptor::isTemplateTypeParameter() const {
260   return DbgNode && getTag() == dwarf::DW_TAG_template_type_parameter;
261 }
262
263 /// isTemplateValueParameter - Return true if the specified tag is
264 /// DW_TAG_template_value_parameter.
265 bool DIDescriptor::isTemplateValueParameter() const {
266   return DbgNode && (getTag() == dwarf::DW_TAG_template_value_parameter ||
267                      getTag() == dwarf::DW_TAG_GNU_template_template_param ||
268                      getTag() == dwarf::DW_TAG_GNU_template_parameter_pack);
269 }
270
271 /// isCompileUnit - Return true if the specified tag is DW_TAG_compile_unit.
272 bool DIDescriptor::isCompileUnit() const {
273   return DbgNode && getTag() == dwarf::DW_TAG_compile_unit;
274 }
275
276 /// isFile - Return true if the specified tag is DW_TAG_file_type.
277 bool DIDescriptor::isFile() const {
278   return DbgNode && getTag() == dwarf::DW_TAG_file_type;
279 }
280
281 /// isNameSpace - Return true if the specified tag is DW_TAG_namespace.
282 bool DIDescriptor::isNameSpace() const {
283   return DbgNode && getTag() == dwarf::DW_TAG_namespace;
284 }
285
286 /// isLexicalBlockFile - Return true if the specified descriptor is a
287 /// lexical block with an extra file.
288 bool DIDescriptor::isLexicalBlockFile() const {
289   return DbgNode && getTag() == dwarf::DW_TAG_lexical_block &&
290     (DbgNode->getNumOperands() == 3);
291 }
292
293 /// isLexicalBlock - Return true if the specified tag is DW_TAG_lexical_block.
294 bool DIDescriptor::isLexicalBlock() const {
295   return DbgNode && getTag() == dwarf::DW_TAG_lexical_block &&
296     (DbgNode->getNumOperands() > 3);
297 }
298
299 /// isSubrange - Return true if the specified tag is DW_TAG_subrange_type.
300 bool DIDescriptor::isSubrange() const {
301   return DbgNode && getTag() == dwarf::DW_TAG_subrange_type;
302 }
303
304 /// isEnumerator - Return true if the specified tag is DW_TAG_enumerator.
305 bool DIDescriptor::isEnumerator() const {
306   return DbgNode && getTag() == dwarf::DW_TAG_enumerator;
307 }
308
309 /// isObjCProperty - Return true if the specified tag is DW_TAG_APPLE_property.
310 bool DIDescriptor::isObjCProperty() const {
311   return DbgNode && getTag() == dwarf::DW_TAG_APPLE_property;
312 }
313
314 /// \brief Return true if the specified tag is DW_TAG_imported_module or
315 /// DW_TAG_imported_declaration.
316 bool DIDescriptor::isImportedEntity() const {
317   return DbgNode && (getTag() == dwarf::DW_TAG_imported_module ||
318                      getTag() == dwarf::DW_TAG_imported_declaration);
319 }
320
321 //===----------------------------------------------------------------------===//
322 // Simple Descriptor Constructors and other Methods
323 //===----------------------------------------------------------------------===//
324
325 unsigned DIArray::getNumElements() const {
326   if (!DbgNode)
327     return 0;
328   return DbgNode->getNumOperands();
329 }
330
331 /// replaceAllUsesWith - Replace all uses of the MDNode used by this
332 /// type with the one in the passed descriptor.
333 void DIType::replaceAllUsesWith(DIDescriptor &D) {
334
335   assert(DbgNode && "Trying to replace an unverified type!");
336
337   // Since we use a TrackingVH for the node, its easy for clients to manufacture
338   // legitimate situations where they want to replaceAllUsesWith() on something
339   // which, due to uniquing, has merged with the source. We shield clients from
340   // this detail by allowing a value to be replaced with replaceAllUsesWith()
341   // itself.
342   if (DbgNode != D) {
343     MDNode *Node = const_cast<MDNode*>(DbgNode);
344     const MDNode *DN = D;
345     const Value *V = cast_or_null<Value>(DN);
346     Node->replaceAllUsesWith(const_cast<Value*>(V));
347     MDNode::deleteTemporary(Node);
348   }
349 }
350
351 /// replaceAllUsesWith - Replace all uses of the MDNode used by this
352 /// type with the one in D.
353 void DIType::replaceAllUsesWith(MDNode *D) {
354
355   assert(DbgNode && "Trying to replace an unverified type!");
356
357   // Since we use a TrackingVH for the node, its easy for clients to manufacture
358   // legitimate situations where they want to replaceAllUsesWith() on something
359   // which, due to uniquing, has merged with the source. We shield clients from
360   // this detail by allowing a value to be replaced with replaceAllUsesWith()
361   // itself.
362   if (DbgNode != D) {
363     MDNode *Node = const_cast<MDNode*>(DbgNode);
364     const MDNode *DN = D;
365     const Value *V = cast_or_null<Value>(DN);
366     Node->replaceAllUsesWith(const_cast<Value*>(V));
367     MDNode::deleteTemporary(Node);
368   }
369 }
370
371 /// isUnsignedDIType - Return true if type encoding is unsigned.
372 bool DIType::isUnsignedDIType() {
373   DIDerivedType DTy(DbgNode);
374   if (DTy.Verify())
375     return DTy.getTypeDerivedFrom().isUnsignedDIType();
376
377   DIBasicType BTy(DbgNode);
378   if (BTy.Verify()) {
379     unsigned Encoding = BTy.getEncoding();
380     if (Encoding == dwarf::DW_ATE_unsigned ||
381         Encoding == dwarf::DW_ATE_unsigned_char ||
382         Encoding == dwarf::DW_ATE_boolean)
383       return true;
384   }
385   return false;
386 }
387
388 /// Verify - Verify that a compile unit is well formed.
389 bool DICompileUnit::Verify() const {
390   if (!isCompileUnit())
391     return false;
392
393   // Don't bother verifying the compilation directory or producer string
394   // as those could be empty.
395   if (getFilename().empty())
396     return false;
397
398   return DbgNode->getNumOperands() == 13;
399 }
400
401 /// Verify - Verify that an ObjC property is well formed.
402 bool DIObjCProperty::Verify() const {
403   if (!isObjCProperty())
404     return false;
405
406   // Don't worry about the rest of the strings for now.
407   return DbgNode->getNumOperands() == 8;
408 }
409
410 /// Check if a field at position Elt of a MDNode is a MDNode.
411 /// We currently allow an empty string and an integer.
412 /// But we don't allow a non-empty string in a MDNode field.
413 static bool fieldIsMDNode(const MDNode *DbgNode, unsigned Elt) {
414   // FIXME: This function should return true, if the field is null or the field
415   // is indeed a MDNode: return !Fld || isa<MDNode>(Fld).
416   Value *Fld = getField(DbgNode, Elt);
417   if (Fld && isa<MDString>(Fld) &&
418       !cast<MDString>(Fld)->getString().empty())
419     return false;
420   return true;
421 }
422
423 /// Check if a field at position Elt of a MDNode is a MDString.
424 static bool fieldIsMDString(const MDNode *DbgNode, unsigned Elt) {
425   Value *Fld = getField(DbgNode, Elt);
426   return !Fld || isa<MDString>(Fld);
427 }
428
429 /// Check if a value can be a reference to a type.
430 static bool isTypeRef(const Value *Val) {
431   return !Val ||
432          (isa<MDString>(Val) && !cast<MDString>(Val)->getString().empty()) ||
433          (isa<MDNode>(Val) && DIType(cast<MDNode>(Val)).isType());
434 }
435
436 /// Check if a field at position Elt of a MDNode can be a reference to a type.
437 static bool fieldIsTypeRef(const MDNode *DbgNode, unsigned Elt) {
438   Value *Fld = getField(DbgNode, Elt);
439   return isTypeRef(Fld);
440 }
441
442 /// Check if a value can be a ScopeRef.
443 static bool isScopeRef(const Value *Val) {
444   return !Val ||
445          (isa<MDString>(Val) && !cast<MDString>(Val)->getString().empty()) ||
446          (isa<MDNode>(Val) && DIScope(cast<MDNode>(Val)).isScope());
447 }
448
449 /// Check if a field at position Elt of a MDNode can be a ScopeRef.
450 static bool fieldIsScopeRef(const MDNode *DbgNode, unsigned Elt) {
451   Value *Fld = getField(DbgNode, Elt);
452   return isScopeRef(Fld);
453 }
454
455 /// Verify - Verify that a type descriptor is well formed.
456 bool DIType::Verify() const {
457   if (!isType())
458     return false;
459   // Make sure Context @ field 2 is MDNode.
460   if (!fieldIsScopeRef(DbgNode, 2))
461     return false;
462
463   // FIXME: Sink this into the various subclass verifies.
464   uint16_t Tag = getTag();
465   if (!isBasicType() && Tag != dwarf::DW_TAG_const_type &&
466       Tag != dwarf::DW_TAG_volatile_type && Tag != dwarf::DW_TAG_pointer_type &&
467       Tag != dwarf::DW_TAG_ptr_to_member_type &&
468       Tag != dwarf::DW_TAG_reference_type &&
469       Tag != dwarf::DW_TAG_rvalue_reference_type &&
470       Tag != dwarf::DW_TAG_restrict_type && Tag != dwarf::DW_TAG_array_type &&
471       Tag != dwarf::DW_TAG_enumeration_type &&
472       Tag != dwarf::DW_TAG_subroutine_type &&
473       Tag != dwarf::DW_TAG_inheritance && Tag != dwarf::DW_TAG_friend &&
474       getFilename().empty())
475     return false;
476   // DIType is abstract, it should be a BasicType, a DerivedType or
477   // a CompositeType.
478   if (isBasicType())
479     DIBasicType(DbgNode).Verify();
480   else if (isCompositeType())
481     DICompositeType(DbgNode).Verify();
482   else if (isDerivedType())
483     DIDerivedType(DbgNode).Verify();
484   else
485     return false;
486   return true;
487 }
488
489 /// Verify - Verify that a basic type descriptor is well formed.
490 bool DIBasicType::Verify() const {
491   return isBasicType() && DbgNode->getNumOperands() == 10;
492 }
493
494 /// Verify - Verify that a derived type descriptor is well formed.
495 bool DIDerivedType::Verify() const {
496   // Make sure DerivedFrom @ field 9 is MDNode.
497   if (!fieldIsMDNode(DbgNode, 9))
498     return false;
499   if (getTag() == dwarf::DW_TAG_ptr_to_member_type)
500     // Make sure ClassType @ field 10 is a TypeRef.
501     if (!fieldIsTypeRef(DbgNode, 10))
502       return false;
503
504   return isDerivedType() && DbgNode->getNumOperands() >= 10 &&
505          DbgNode->getNumOperands() <= 14;
506 }
507
508 /// Verify - Verify that a composite type descriptor is well formed.
509 bool DICompositeType::Verify() const {
510   if (!isCompositeType())
511     return false;
512
513   // Make sure DerivedFrom @ field 9 and ContainingType @ field 12 are MDNodes.
514   if (!fieldIsMDNode(DbgNode, 9))
515     return false;
516   if (!fieldIsTypeRef(DbgNode, 12))
517     return false;
518
519   // Make sure the type identifier at field 14 is MDString, it can be null.
520   if (!fieldIsMDString(DbgNode, 14))
521     return false;
522
523   // If this is an array type verify that we have a DIType in the derived type
524   // field as that's the type of our element.
525   if (getTag() == dwarf::DW_TAG_array_type)
526     if (!DIType(getTypeDerivedFrom()))
527       return false;
528
529   return DbgNode->getNumOperands() == 15;
530 }
531
532 /// Verify - Verify that a subprogram descriptor is well formed.
533 bool DISubprogram::Verify() const {
534   if (!isSubprogram())
535     return false;
536
537   // Make sure context @ field 2 and type @ field 7 are MDNodes.
538   if (!fieldIsMDNode(DbgNode, 2))
539     return false;
540   if (!fieldIsMDNode(DbgNode, 7))
541     return false;
542   // Containing type @ field 12.
543   if (!fieldIsTypeRef(DbgNode, 12))
544     return false;
545   return DbgNode->getNumOperands() == 20;
546 }
547
548 /// Verify - Verify that a global variable descriptor is well formed.
549 bool DIGlobalVariable::Verify() const {
550   if (!isGlobalVariable())
551     return false;
552
553   if (getDisplayName().empty())
554     return false;
555   // Make sure context @ field 2 and type @ field 8 are MDNodes.
556   if (!fieldIsMDNode(DbgNode, 2))
557     return false;
558   if (!fieldIsMDNode(DbgNode, 8))
559     return false;
560   // Make sure StaticDataMemberDeclaration @ field 12 is MDNode.
561   if (!fieldIsMDNode(DbgNode, 12))
562     return false;
563
564   return DbgNode->getNumOperands() == 13;
565 }
566
567 /// Verify - Verify that a variable descriptor is well formed.
568 bool DIVariable::Verify() const {
569   if (!isVariable())
570     return false;
571
572   // Make sure context @ field 1 and type @ field 5 are MDNodes.
573   if (!fieldIsMDNode(DbgNode, 1))
574     return false;
575   if (!fieldIsMDNode(DbgNode, 5))
576     return false;
577   return DbgNode->getNumOperands() >= 8;
578 }
579
580 /// Verify - Verify that a location descriptor is well formed.
581 bool DILocation::Verify() const {
582   if (!DbgNode)
583     return false;
584
585   return DbgNode->getNumOperands() == 4;
586 }
587
588 /// Verify - Verify that a namespace descriptor is well formed.
589 bool DINameSpace::Verify() const {
590   if (!isNameSpace())
591     return false;
592   return DbgNode->getNumOperands() == 5;
593 }
594
595 /// \brief Retrieve the MDNode for the directory/file pair.
596 MDNode *DIFile::getFileNode() const {
597   return getNodeField(DbgNode, 1);
598 }
599
600 /// \brief Verify that the file descriptor is well formed.
601 bool DIFile::Verify() const {
602   return isFile() && DbgNode->getNumOperands() == 2;
603 }
604
605 /// \brief Verify that the enumerator descriptor is well formed.
606 bool DIEnumerator::Verify() const {
607   return isEnumerator() && DbgNode->getNumOperands() == 3;
608 }
609
610 /// \brief Verify that the subrange descriptor is well formed.
611 bool DISubrange::Verify() const {
612   return isSubrange() && DbgNode->getNumOperands() == 3;
613 }
614
615 /// \brief Verify that the lexical block descriptor is well formed.
616 bool DILexicalBlock::Verify() const {
617   return isLexicalBlock() && DbgNode->getNumOperands() == 6;
618 }
619
620 /// \brief Verify that the file-scoped lexical block descriptor is well formed.
621 bool DILexicalBlockFile::Verify() const {
622   return isLexicalBlockFile() && DbgNode->getNumOperands() == 3;
623 }
624
625 /// \brief Verify that the template type parameter descriptor is well formed.
626 bool DITemplateTypeParameter::Verify() const {
627   return isTemplateTypeParameter() && DbgNode->getNumOperands() == 7;
628 }
629
630 /// \brief Verify that the template value parameter descriptor is well formed.
631 bool DITemplateValueParameter::Verify() const {
632   return isTemplateValueParameter() && DbgNode->getNumOperands() == 8;
633 }
634
635 /// \brief Verify that the imported module descriptor is well formed.
636 bool DIImportedEntity::Verify() const {
637   return isImportedEntity() &&
638          (DbgNode->getNumOperands() == 4 || DbgNode->getNumOperands() == 5);
639 }
640
641 /// getOriginalTypeSize - If this type is derived from a base type then
642 /// return base type size.
643 uint64_t DIDerivedType::getOriginalTypeSize() const {
644   uint16_t Tag = getTag();
645
646   if (Tag != dwarf::DW_TAG_member && Tag != dwarf::DW_TAG_typedef &&
647       Tag != dwarf::DW_TAG_const_type && Tag != dwarf::DW_TAG_volatile_type &&
648       Tag != dwarf::DW_TAG_restrict_type)
649     return getSizeInBits();
650
651   DIType BaseType = getTypeDerivedFrom();
652
653   // If this type is not derived from any type then take conservative approach.
654   if (!BaseType.isValid())
655     return getSizeInBits();
656
657   // If this is a derived type, go ahead and get the base type, unless it's a
658   // reference then it's just the size of the field. Pointer types have no need
659   // of this since they're a different type of qualification on the type.
660   if (BaseType.getTag() == dwarf::DW_TAG_reference_type ||
661       BaseType.getTag() == dwarf::DW_TAG_rvalue_reference_type)
662     return getSizeInBits();
663
664   if (BaseType.isDerivedType())
665     return DIDerivedType(BaseType).getOriginalTypeSize();
666
667   return BaseType.getSizeInBits();
668 }
669
670 /// getObjCProperty - Return property node, if this ivar is associated with one.
671 MDNode *DIDerivedType::getObjCProperty() const {
672   return getNodeField(DbgNode, 10);
673 }
674
675 MDString *DICompositeType::getIdentifier() const {
676   return cast_or_null<MDString>(getField(DbgNode, 14));
677 }
678
679 #ifndef NDEBUG
680 static void VerifySubsetOf(const MDNode *LHS, const MDNode *RHS) {
681   for (unsigned i = 0; i != LHS->getNumOperands(); ++i) {
682     // Skip the 'empty' list (that's a single i32 0, rather than truly empty).
683     if (i == 0 && isa<ConstantInt>(LHS->getOperand(i)))
684       continue;
685     const MDNode *E = cast<MDNode>(LHS->getOperand(i));
686     bool found = false;
687     for (unsigned j = 0; !found && j != RHS->getNumOperands(); ++j)
688       found = E == RHS->getOperand(j);
689     assert(found && "Losing a member during member list replacement");
690   }
691 }
692 #endif
693
694 /// \brief Set the array of member DITypes.
695 void DICompositeType::setTypeArray(DIArray Elements, DIArray TParams) {
696   assert((!TParams || DbgNode->getNumOperands() == 15) &&
697          "If you're setting the template parameters this should include a slot "
698          "for that!");
699   TrackingVH<MDNode> N(*this);
700   if (Elements) {
701 #ifndef NDEBUG
702     // Check that the new list of members contains all the old members as well.
703     if (const MDNode *El = cast_or_null<MDNode>(N->getOperand(10)))
704       VerifySubsetOf(El, Elements);
705 #endif
706     N->replaceOperandWith(10, Elements);
707   }
708   if (TParams)
709     N->replaceOperandWith(13, TParams);
710   DbgNode = N;
711 }
712
713 void DICompositeType::addMember(DIDescriptor D) {
714   SmallVector<llvm::Value *, 16> M;
715   DIArray OrigM = getTypeArray();
716   unsigned Elements = OrigM.getNumElements();
717   if (Elements == 1 && !OrigM.getElement(0))
718     Elements = 0;
719   M.reserve(Elements + 1);
720   for (unsigned i = 0; i != Elements; ++i)
721     M.push_back(OrigM.getElement(i));
722   M.push_back(D);
723   setTypeArray(DIArray(MDNode::get(DbgNode->getContext(), M)));
724 }
725
726 /// Generate a reference to this DIType. Uses the type identifier instead
727 /// of the actual MDNode if possible, to help type uniquing.
728 Value *DIScope::generateRef() {
729   if (!isCompositeType())
730     return *this;
731   DICompositeType DTy(DbgNode);
732   if (!DTy.getIdentifier())
733     return *this;
734   return DTy.getIdentifier();
735 }
736
737 /// \brief Set the containing type.
738 void DICompositeType::setContainingType(DICompositeType ContainingType) {
739   TrackingVH<MDNode> N(*this);
740   N->replaceOperandWith(12, ContainingType.generateRef());
741   DbgNode = N;
742 }
743
744 /// isInlinedFnArgument - Return true if this variable provides debugging
745 /// information for an inlined function arguments.
746 bool DIVariable::isInlinedFnArgument(const Function *CurFn) {
747   assert(CurFn && "Invalid function");
748   if (!getContext().isSubprogram())
749     return false;
750   // This variable is not inlined function argument if its scope
751   // does not describe current function.
752   return !DISubprogram(getContext()).describes(CurFn);
753 }
754
755 /// describes - Return true if this subprogram provides debugging
756 /// information for the function F.
757 bool DISubprogram::describes(const Function *F) {
758   assert(F && "Invalid function");
759   if (F == getFunction())
760     return true;
761   StringRef Name = getLinkageName();
762   if (Name.empty())
763     Name = getName();
764   if (F->getName() == Name)
765     return true;
766   return false;
767 }
768
769 unsigned DISubprogram::isOptimized() const {
770   assert (DbgNode && "Invalid subprogram descriptor!");
771   if (DbgNode->getNumOperands() == 15)
772     return getUnsignedField(14);
773   return 0;
774 }
775
776 MDNode *DISubprogram::getVariablesNodes() const {
777   return getNodeField(DbgNode, 18);
778 }
779
780 DIArray DISubprogram::getVariables() const {
781   return DIArray(getNodeField(DbgNode, 18));
782 }
783
784 Value *DITemplateValueParameter::getValue() const {
785   return getField(DbgNode, 4);
786 }
787
788 StringRef DIScope::getFilename() const {
789   if (!DbgNode)
790     return StringRef();
791   return ::getStringField(getNodeField(DbgNode, 1), 0);
792 }
793
794 StringRef DIScope::getDirectory() const {
795   if (!DbgNode)
796     return StringRef();
797   return ::getStringField(getNodeField(DbgNode, 1), 1);
798 }
799
800 DIArray DICompileUnit::getEnumTypes() const {
801   if (!DbgNode || DbgNode->getNumOperands() < 13)
802     return DIArray();
803
804   return DIArray(getNodeField(DbgNode, 7));
805 }
806
807 DIArray DICompileUnit::getRetainedTypes() const {
808   if (!DbgNode || DbgNode->getNumOperands() < 13)
809     return DIArray();
810
811   return DIArray(getNodeField(DbgNode, 8));
812 }
813
814 DIArray DICompileUnit::getSubprograms() const {
815   if (!DbgNode || DbgNode->getNumOperands() < 13)
816     return DIArray();
817
818   return DIArray(getNodeField(DbgNode, 9));
819 }
820
821
822 DIArray DICompileUnit::getGlobalVariables() const {
823   if (!DbgNode || DbgNode->getNumOperands() < 13)
824     return DIArray();
825
826   return DIArray(getNodeField(DbgNode, 10));
827 }
828
829 DIArray DICompileUnit::getImportedEntities() const {
830   if (!DbgNode || DbgNode->getNumOperands() < 13)
831     return DIArray();
832
833   return DIArray(getNodeField(DbgNode, 11));
834 }
835
836 /// fixupSubprogramName - Replace contains special characters used
837 /// in a typical Objective-C names with '.' in a given string.
838 static void fixupSubprogramName(DISubprogram Fn, SmallVectorImpl<char> &Out) {
839   StringRef FName =
840       Fn.getFunction() ? Fn.getFunction()->getName() : Fn.getName();
841   FName = Function::getRealLinkageName(FName);
842
843   StringRef Prefix("llvm.dbg.lv.");
844   Out.reserve(FName.size() + Prefix.size());
845   Out.append(Prefix.begin(), Prefix.end());
846
847   bool isObjCLike = false;
848   for (size_t i = 0, e = FName.size(); i < e; ++i) {
849     char C = FName[i];
850     if (C == '[')
851       isObjCLike = true;
852
853     if (isObjCLike && (C == '[' || C == ']' || C == ' ' || C == ':' ||
854                        C == '+' || C == '(' || C == ')'))
855       Out.push_back('.');
856     else
857       Out.push_back(C);
858   }
859 }
860
861 /// getFnSpecificMDNode - Return a NameMDNode, if available, that is
862 /// suitable to hold function specific information.
863 NamedMDNode *llvm::getFnSpecificMDNode(const Module &M, DISubprogram Fn) {
864   SmallString<32> Name;
865   fixupSubprogramName(Fn, Name);
866   return M.getNamedMetadata(Name.str());
867 }
868
869 /// getOrInsertFnSpecificMDNode - Return a NameMDNode that is suitable
870 /// to hold function specific information.
871 NamedMDNode *llvm::getOrInsertFnSpecificMDNode(Module &M, DISubprogram Fn) {
872   SmallString<32> Name;
873   fixupSubprogramName(Fn, Name);
874   return M.getOrInsertNamedMetadata(Name.str());
875 }
876
877 /// createInlinedVariable - Create a new inlined variable based on current
878 /// variable.
879 /// @param DV            Current Variable.
880 /// @param InlinedScope  Location at current variable is inlined.
881 DIVariable llvm::createInlinedVariable(MDNode *DV, MDNode *InlinedScope,
882                                        LLVMContext &VMContext) {
883   SmallVector<Value *, 16> Elts;
884   // Insert inlined scope as 7th element.
885   for (unsigned i = 0, e = DV->getNumOperands(); i != e; ++i)
886     i == 7 ? Elts.push_back(InlinedScope) :
887              Elts.push_back(DV->getOperand(i));
888   return DIVariable(MDNode::get(VMContext, Elts));
889 }
890
891 /// cleanseInlinedVariable - Remove inlined scope from the variable.
892 DIVariable llvm::cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext) {
893   SmallVector<Value *, 16> Elts;
894   // Insert inlined scope as 7th element.
895   for (unsigned i = 0, e = DV->getNumOperands(); i != e; ++i)
896     i == 7 ?
897       Elts.push_back(Constant::getNullValue(Type::getInt32Ty(VMContext))):
898       Elts.push_back(DV->getOperand(i));
899   return DIVariable(MDNode::get(VMContext, Elts));
900 }
901
902 /// getDISubprogram - Find subprogram that is enclosing this scope.
903 DISubprogram llvm::getDISubprogram(const MDNode *Scope) {
904   DIDescriptor D(Scope);
905   if (D.isSubprogram())
906     return DISubprogram(Scope);
907
908   if (D.isLexicalBlockFile())
909     return getDISubprogram(DILexicalBlockFile(Scope).getContext());
910
911   if (D.isLexicalBlock())
912     return getDISubprogram(DILexicalBlock(Scope).getContext());
913
914   return DISubprogram();
915 }
916
917 /// getDICompositeType - Find underlying composite type.
918 DICompositeType llvm::getDICompositeType(DIType T) {
919   if (T.isCompositeType())
920     return DICompositeType(T);
921
922   if (T.isDerivedType())
923     return getDICompositeType(DIDerivedType(T).getTypeDerivedFrom());
924
925   return DICompositeType();
926 }
927
928 /// Update DITypeIdentifierMap by going through retained types of each CU.
929 DITypeIdentifierMap llvm::generateDITypeIdentifierMap(
930                               const NamedMDNode *CU_Nodes) {
931   DITypeIdentifierMap Map;
932   for (unsigned CUi = 0, CUe = CU_Nodes->getNumOperands(); CUi != CUe; ++CUi) {
933     DICompileUnit CU(CU_Nodes->getOperand(CUi));
934     DIArray Retain = CU.getRetainedTypes();
935     for (unsigned Ti = 0, Te = Retain.getNumElements(); Ti != Te; ++Ti) {
936       if (!Retain.getElement(Ti).isCompositeType())
937         continue;
938       DICompositeType Ty(Retain.getElement(Ti));
939       if (MDString *TypeId = Ty.getIdentifier()) {
940         // Definition has priority over declaration.
941         // Try to insert (TypeId, Ty) to Map.
942         std::pair<DITypeIdentifierMap::iterator, bool> P =
943             Map.insert(std::make_pair(TypeId, Ty));
944         // If TypeId already exists in Map and this is a definition, replace
945         // whatever we had (declaration or definition) with the definition.
946         if (!P.second && !Ty.isForwardDecl())
947           P.first->second = Ty;
948       }
949     }
950   }
951   return Map;
952 }
953
954 //===----------------------------------------------------------------------===//
955 // DebugInfoFinder implementations.
956 //===----------------------------------------------------------------------===//
957
958 void DebugInfoFinder::reset() {
959   CUs.clear();
960   SPs.clear();
961   GVs.clear();
962   TYs.clear();
963   Scopes.clear();
964   NodesSeen.clear();
965   TypeIdentifierMap.clear();
966 }
967
968 /// processModule - Process entire module and collect debug info.
969 void DebugInfoFinder::processModule(const Module &M) {
970   if (NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu")) {
971     TypeIdentifierMap = generateDITypeIdentifierMap(CU_Nodes);
972     for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
973       DICompileUnit CU(CU_Nodes->getOperand(i));
974       addCompileUnit(CU);
975       DIArray GVs = CU.getGlobalVariables();
976       for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) {
977         DIGlobalVariable DIG(GVs.getElement(i));
978         if (addGlobalVariable(DIG)) {
979           processScope(DIG.getContext());
980           processType(DIG.getType());
981         }
982       }
983       DIArray SPs = CU.getSubprograms();
984       for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
985         processSubprogram(DISubprogram(SPs.getElement(i)));
986       DIArray EnumTypes = CU.getEnumTypes();
987       for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
988         processType(DIType(EnumTypes.getElement(i)));
989       DIArray RetainedTypes = CU.getRetainedTypes();
990       for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
991         processType(DIType(RetainedTypes.getElement(i)));
992       DIArray Imports = CU.getImportedEntities();
993       for (unsigned i = 0, e = Imports.getNumElements(); i != e; ++i) {
994         DIImportedEntity Import = DIImportedEntity(
995                                     Imports.getElement(i));
996         DIDescriptor Entity = Import.getEntity();
997         if (Entity.isType())
998           processType(DIType(Entity));
999         else if (Entity.isSubprogram())
1000           processSubprogram(DISubprogram(Entity));
1001         else if (Entity.isNameSpace())
1002           processScope(DINameSpace(Entity).getContext());
1003       }
1004       // FIXME: We really shouldn't be bailing out after visiting just one CU
1005       return;
1006     }
1007   }
1008 }
1009
1010 /// processLocation - Process DILocation.
1011 void DebugInfoFinder::processLocation(DILocation Loc) {
1012   if (!Loc) return;
1013   processScope(Loc.getScope());
1014   processLocation(Loc.getOrigLocation());
1015 }
1016
1017 /// processType - Process DIType.
1018 void DebugInfoFinder::processType(DIType DT) {
1019   if (!addType(DT))
1020     return;
1021   processScope(DT.getContext().resolve(TypeIdentifierMap));
1022   if (DT.isCompositeType()) {
1023     DICompositeType DCT(DT);
1024     processType(DCT.getTypeDerivedFrom());
1025     DIArray DA = DCT.getTypeArray();
1026     for (unsigned i = 0, e = DA.getNumElements(); i != e; ++i) {
1027       DIDescriptor D = DA.getElement(i);
1028       if (D.isType())
1029         processType(DIType(D));
1030       else if (D.isSubprogram())
1031         processSubprogram(DISubprogram(D));
1032     }
1033   } else if (DT.isDerivedType()) {
1034     DIDerivedType DDT(DT);
1035     processType(DDT.getTypeDerivedFrom());
1036   }
1037 }
1038
1039 void DebugInfoFinder::processScope(DIScope Scope) {
1040   if (Scope.isType()) {
1041     DIType Ty(Scope);
1042     processType(Ty);
1043     return;
1044   }
1045   if (Scope.isCompileUnit()) {
1046     addCompileUnit(DICompileUnit(Scope));
1047     return;
1048   }
1049   if (Scope.isSubprogram()) {
1050     processSubprogram(DISubprogram(Scope));
1051     return;
1052   }
1053   if (!addScope(Scope))
1054     return;
1055   if (Scope.isLexicalBlock()) {
1056     DILexicalBlock LB(Scope);
1057     processScope(LB.getContext());
1058   } else if (Scope.isLexicalBlockFile()) {
1059     DILexicalBlockFile LBF = DILexicalBlockFile(Scope);
1060     processScope(LBF.getScope());
1061   } else if (Scope.isNameSpace()) {
1062     DINameSpace NS(Scope);
1063     processScope(NS.getContext());
1064   }
1065 }
1066
1067 /// processLexicalBlock
1068 void DebugInfoFinder::processLexicalBlock(DILexicalBlock LB) {
1069   DIScope Context = LB.getContext();
1070   if (Context.isLexicalBlock())
1071     return processLexicalBlock(DILexicalBlock(Context));
1072   else if (Context.isLexicalBlockFile()) {
1073     DILexicalBlockFile DBF = DILexicalBlockFile(Context);
1074     return processLexicalBlock(DILexicalBlock(DBF.getScope()));
1075   }
1076   else
1077     return processSubprogram(DISubprogram(Context));
1078 }
1079
1080 /// processSubprogram - Process DISubprogram.
1081 void DebugInfoFinder::processSubprogram(DISubprogram SP) {
1082   if (!addSubprogram(SP))
1083     return;
1084   processScope(SP.getContext());
1085   processType(SP.getType());
1086   DIArray TParams = SP.getTemplateParams();
1087   for (unsigned I = 0, E = TParams.getNumElements(); I != E; ++I) {
1088     DIDescriptor Element = TParams.getElement(I);
1089     if (Element.isTemplateTypeParameter()) {
1090       DITemplateTypeParameter TType(Element);
1091       processScope(TType.getContext());
1092       processType(TType.getType());
1093     } else if (Element.isTemplateValueParameter()) {
1094       DITemplateValueParameter TVal(Element);
1095       processScope(TVal.getContext());
1096       processType(TVal.getType());
1097     }
1098   }
1099 }
1100
1101 /// processDeclare - Process DbgDeclareInst.
1102 void DebugInfoFinder::processDeclare(const DbgDeclareInst *DDI) {
1103   MDNode *N = dyn_cast<MDNode>(DDI->getVariable());
1104   if (!N) return;
1105
1106   DIDescriptor DV(N);
1107   if (!DV.isVariable())
1108     return;
1109
1110   if (!NodesSeen.insert(DV))
1111     return;
1112   processScope(DIVariable(N).getContext());
1113   processType(DIVariable(N).getType());
1114 }
1115
1116 void DebugInfoFinder::processValue(const DbgValueInst *DVI) {
1117   MDNode *N = dyn_cast<MDNode>(DVI->getVariable());
1118   if (!N) return;
1119
1120   DIDescriptor DV(N);
1121   if (!DV.isVariable())
1122     return;
1123
1124   if (!NodesSeen.insert(DV))
1125     return;
1126   processScope(DIVariable(N).getContext());
1127   processType(DIVariable(N).getType());
1128 }
1129
1130 /// addType - Add type into Tys.
1131 bool DebugInfoFinder::addType(DIType DT) {
1132   if (!DT)
1133     return false;
1134
1135   if (!NodesSeen.insert(DT))
1136     return false;
1137
1138   TYs.push_back(DT);
1139   return true;
1140 }
1141
1142 /// addCompileUnit - Add compile unit into CUs.
1143 bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) {
1144   if (!CU)
1145     return false;
1146   if (!NodesSeen.insert(CU))
1147     return false;
1148
1149   CUs.push_back(CU);
1150   return true;
1151 }
1152
1153 /// addGlobalVariable - Add global variable into GVs.
1154 bool DebugInfoFinder::addGlobalVariable(DIGlobalVariable DIG) {
1155   if (!DIG)
1156     return false;
1157
1158   if (!NodesSeen.insert(DIG))
1159     return false;
1160
1161   GVs.push_back(DIG);
1162   return true;
1163 }
1164
1165 // addSubprogram - Add subprgoram into SPs.
1166 bool DebugInfoFinder::addSubprogram(DISubprogram SP) {
1167   if (!SP)
1168     return false;
1169
1170   if (!NodesSeen.insert(SP))
1171     return false;
1172
1173   SPs.push_back(SP);
1174   return true;
1175 }
1176
1177 bool DebugInfoFinder::addScope(DIScope Scope) {
1178   if (!Scope)
1179     return false;
1180   // FIXME: Ocaml binding generates a scope with no content, we treat it
1181   // as null for now.
1182   if (Scope->getNumOperands() == 0)
1183     return false;
1184   if (!NodesSeen.insert(Scope))
1185     return false;
1186   Scopes.push_back(Scope);
1187   return true;
1188 }
1189
1190 //===----------------------------------------------------------------------===//
1191 // DIDescriptor: dump routines for all descriptors.
1192 //===----------------------------------------------------------------------===//
1193
1194 /// dump - Print descriptor to dbgs() with a newline.
1195 void DIDescriptor::dump() const {
1196   print(dbgs()); dbgs() << '\n';
1197 }
1198
1199 /// print - Print descriptor.
1200 void DIDescriptor::print(raw_ostream &OS) const {
1201   if (!DbgNode) return;
1202
1203   if (const char *Tag = dwarf::TagString(getTag()))
1204     OS << "[ " << Tag << " ]";
1205
1206   if (this->isSubrange()) {
1207     DISubrange(DbgNode).printInternal(OS);
1208   } else if (this->isCompileUnit()) {
1209     DICompileUnit(DbgNode).printInternal(OS);
1210   } else if (this->isFile()) {
1211     DIFile(DbgNode).printInternal(OS);
1212   } else if (this->isEnumerator()) {
1213     DIEnumerator(DbgNode).printInternal(OS);
1214   } else if (this->isBasicType()) {
1215     DIType(DbgNode).printInternal(OS);
1216   } else if (this->isDerivedType()) {
1217     DIDerivedType(DbgNode).printInternal(OS);
1218   } else if (this->isCompositeType()) {
1219     DICompositeType(DbgNode).printInternal(OS);
1220   } else if (this->isSubprogram()) {
1221     DISubprogram(DbgNode).printInternal(OS);
1222   } else if (this->isGlobalVariable()) {
1223     DIGlobalVariable(DbgNode).printInternal(OS);
1224   } else if (this->isVariable()) {
1225     DIVariable(DbgNode).printInternal(OS);
1226   } else if (this->isObjCProperty()) {
1227     DIObjCProperty(DbgNode).printInternal(OS);
1228   } else if (this->isNameSpace()) {
1229     DINameSpace(DbgNode).printInternal(OS);
1230   } else if (this->isScope()) {
1231     DIScope(DbgNode).printInternal(OS);
1232   }
1233 }
1234
1235 void DISubrange::printInternal(raw_ostream &OS) const {
1236   int64_t Count = getCount();
1237   if (Count != -1)
1238     OS << " [" << getLo() << ", " << Count - 1 << ']';
1239   else
1240     OS << " [unbounded]";
1241 }
1242
1243 void DIScope::printInternal(raw_ostream &OS) const {
1244   OS << " [" << getDirectory() << "/" << getFilename() << ']';
1245 }
1246
1247 void DICompileUnit::printInternal(raw_ostream &OS) const {
1248   DIScope::printInternal(OS);
1249   OS << " [";
1250   unsigned Lang = getLanguage();
1251   if (const char *LangStr = dwarf::LanguageString(Lang))
1252     OS << LangStr;
1253   else
1254     (OS << "lang 0x").write_hex(Lang);
1255   OS << ']';
1256 }
1257
1258 void DIEnumerator::printInternal(raw_ostream &OS) const {
1259   OS << " [" << getName() << " :: " << getEnumValue() << ']';
1260 }
1261
1262 void DIType::printInternal(raw_ostream &OS) const {
1263   if (!DbgNode) return;
1264
1265   StringRef Res = getName();
1266   if (!Res.empty())
1267     OS << " [" << Res << "]";
1268
1269   // TODO: Print context?
1270
1271   OS << " [line " << getLineNumber()
1272      << ", size " << getSizeInBits()
1273      << ", align " << getAlignInBits()
1274      << ", offset " << getOffsetInBits();
1275   if (isBasicType())
1276     if (const char *Enc =
1277         dwarf::AttributeEncodingString(DIBasicType(DbgNode).getEncoding()))
1278       OS << ", enc " << Enc;
1279   OS << "]";
1280
1281   if (isPrivate())
1282     OS << " [private]";
1283   else if (isProtected())
1284     OS << " [protected]";
1285
1286   if (isArtificial())
1287     OS << " [artificial]";
1288
1289   if (isForwardDecl())
1290     OS << " [decl]";
1291   else if (getTag() == dwarf::DW_TAG_structure_type ||
1292            getTag() == dwarf::DW_TAG_union_type ||
1293            getTag() == dwarf::DW_TAG_enumeration_type ||
1294            getTag() == dwarf::DW_TAG_class_type)
1295     OS << " [def]";
1296   if (isVector())
1297     OS << " [vector]";
1298   if (isStaticMember())
1299     OS << " [static]";
1300 }
1301
1302 void DIDerivedType::printInternal(raw_ostream &OS) const {
1303   DIType::printInternal(OS);
1304   OS << " [from " << getTypeDerivedFrom().getName() << ']';
1305 }
1306
1307 void DICompositeType::printInternal(raw_ostream &OS) const {
1308   DIType::printInternal(OS);
1309   DIArray A = getTypeArray();
1310   OS << " [" << A.getNumElements() << " elements]";
1311 }
1312
1313 void DINameSpace::printInternal(raw_ostream &OS) const {
1314   StringRef Name = getName();
1315   if (!Name.empty())
1316     OS << " [" << Name << ']';
1317
1318   OS << " [line " << getLineNumber() << ']';
1319 }
1320
1321 void DISubprogram::printInternal(raw_ostream &OS) const {
1322   // TODO : Print context
1323   OS << " [line " << getLineNumber() << ']';
1324
1325   if (isLocalToUnit())
1326     OS << " [local]";
1327
1328   if (isDefinition())
1329     OS << " [def]";
1330
1331   if (getScopeLineNumber() != getLineNumber())
1332     OS << " [scope " << getScopeLineNumber() << "]";
1333
1334   if (isPrivate())
1335     OS << " [private]";
1336   else if (isProtected())
1337     OS << " [protected]";
1338
1339   StringRef Res = getName();
1340   if (!Res.empty())
1341     OS << " [" << Res << ']';
1342 }
1343
1344 void DIGlobalVariable::printInternal(raw_ostream &OS) const {
1345   StringRef Res = getName();
1346   if (!Res.empty())
1347     OS << " [" << Res << ']';
1348
1349   OS << " [line " << getLineNumber() << ']';
1350
1351   // TODO : Print context
1352
1353   if (isLocalToUnit())
1354     OS << " [local]";
1355
1356   if (isDefinition())
1357     OS << " [def]";
1358 }
1359
1360 void DIVariable::printInternal(raw_ostream &OS) const {
1361   StringRef Res = getName();
1362   if (!Res.empty())
1363     OS << " [" << Res << ']';
1364
1365   OS << " [line " << getLineNumber() << ']';
1366 }
1367
1368 void DIObjCProperty::printInternal(raw_ostream &OS) const {
1369   StringRef Name = getObjCPropertyName();
1370   if (!Name.empty())
1371     OS << " [" << Name << ']';
1372
1373   OS << " [line " << getLineNumber()
1374      << ", properties " << getUnsignedField(6) << ']';
1375 }
1376
1377 static void printDebugLoc(DebugLoc DL, raw_ostream &CommentOS,
1378                           const LLVMContext &Ctx) {
1379   if (!DL.isUnknown()) {          // Print source line info.
1380     DIScope Scope(DL.getScope(Ctx));
1381     assert(Scope.isScope() &&
1382       "Scope of a DebugLoc should be a DIScope.");
1383     // Omit the directory, because it's likely to be long and uninteresting.
1384     CommentOS << Scope.getFilename();
1385     CommentOS << ':' << DL.getLine();
1386     if (DL.getCol() != 0)
1387       CommentOS << ':' << DL.getCol();
1388     DebugLoc InlinedAtDL = DebugLoc::getFromDILocation(DL.getInlinedAt(Ctx));
1389     if (!InlinedAtDL.isUnknown()) {
1390       CommentOS << " @[ ";
1391       printDebugLoc(InlinedAtDL, CommentOS, Ctx);
1392       CommentOS << " ]";
1393     }
1394   }
1395 }
1396
1397 void DIVariable::printExtendedName(raw_ostream &OS) const {
1398   const LLVMContext &Ctx = DbgNode->getContext();
1399   StringRef Res = getName();
1400   if (!Res.empty())
1401     OS << Res << "," << getLineNumber();
1402   if (MDNode *InlinedAt = getInlinedAt()) {
1403     DebugLoc InlinedAtDL = DebugLoc::getFromDILocation(InlinedAt);
1404     if (!InlinedAtDL.isUnknown()) {
1405       OS << " @[";
1406       printDebugLoc(InlinedAtDL, OS, Ctx);
1407       OS << "]";
1408     }
1409   }
1410 }
1411
1412 DIScopeRef::DIScopeRef(const Value *V) : Val(V) {
1413   assert(isScopeRef(V) && "DIScopeRef should be a MDString or MDNode");
1414 }
1415
1416 /// Given a DITypeIdentifierMap, tries to find the corresponding
1417 /// DIScope for a DIScopeRef.
1418 DIScope DIScopeRef::resolve(const DITypeIdentifierMap &Map) const {
1419   if (!Val)
1420     return DIScope();
1421
1422   if (const MDNode *MD = dyn_cast<MDNode>(Val))
1423     return DIScope(MD);
1424
1425   const MDString *MS = cast<MDString>(Val);
1426   // Find the corresponding MDNode.
1427   DITypeIdentifierMap::const_iterator Iter = Map.find(MS);
1428   assert(Iter != Map.end() && "Identifier not in the type map?");
1429   assert(DIType(Iter->second).isType() &&
1430          "MDNode in DITypeIdentifierMap should be a DIType.");
1431   return DIScope(Iter->second);
1432 }
1433
1434 /// Specialize getFieldAs to handle fields that are references to DIScopes.
1435 template <>
1436 DIScopeRef DIDescriptor::getFieldAs<DIScopeRef>(unsigned Elt) const {
1437   return DIScopeRef(getField(DbgNode, Elt));
1438 }