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