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 return true; 250 default: 251 break; 252 } 253 return false; 254 } 255 256 /// isTemplateTypeParameter - Return true if the specified tag is 257 /// DW_TAG_template_type_parameter. 258 bool DIDescriptor::isTemplateTypeParameter() const { 259 return DbgNode && getTag() == dwarf::DW_TAG_template_type_parameter; 260 } 261 262 /// isTemplateValueParameter - Return true if the specified tag is 263 /// DW_TAG_template_value_parameter. 264 bool DIDescriptor::isTemplateValueParameter() const { 265 return DbgNode && (getTag() == dwarf::DW_TAG_template_value_parameter || 266 getTag() == dwarf::DW_TAG_GNU_template_template_param || 267 getTag() == dwarf::DW_TAG_GNU_template_parameter_pack); 268 } 269 270 /// isCompileUnit - Return true if the specified tag is DW_TAG_compile_unit. 271 bool DIDescriptor::isCompileUnit() const { 272 return DbgNode && getTag() == dwarf::DW_TAG_compile_unit; 273 } 274 275 /// isFile - Return true if the specified tag is DW_TAG_file_type. 276 bool DIDescriptor::isFile() const { 277 return DbgNode && getTag() == dwarf::DW_TAG_file_type; 278 } 279 280 /// isNameSpace - Return true if the specified tag is DW_TAG_namespace. 281 bool DIDescriptor::isNameSpace() const { 282 return DbgNode && getTag() == dwarf::DW_TAG_namespace; 283 } 284 285 /// isLexicalBlockFile - Return true if the specified descriptor is a 286 /// lexical block with an extra file. 287 bool DIDescriptor::isLexicalBlockFile() const { 288 return DbgNode && getTag() == dwarf::DW_TAG_lexical_block && 289 (DbgNode->getNumOperands() == 3); 290 } 291 292 /// isLexicalBlock - Return true if the specified tag is DW_TAG_lexical_block. 293 bool DIDescriptor::isLexicalBlock() const { 294 return DbgNode && getTag() == dwarf::DW_TAG_lexical_block && 295 (DbgNode->getNumOperands() > 3); 296 } 297 298 /// isSubrange - Return true if the specified tag is DW_TAG_subrange_type. 299 bool DIDescriptor::isSubrange() const { 300 return DbgNode && getTag() == dwarf::DW_TAG_subrange_type; 301 } 302 303 /// isEnumerator - Return true if the specified tag is DW_TAG_enumerator. 304 bool DIDescriptor::isEnumerator() const { 305 return DbgNode && getTag() == dwarf::DW_TAG_enumerator; 306 } 307 308 /// isObjCProperty - Return true if the specified tag is DW_TAG_APPLE_property. 309 bool DIDescriptor::isObjCProperty() const { 310 return DbgNode && getTag() == dwarf::DW_TAG_APPLE_property; 311 } 312 313 /// \brief Return true if the specified tag is DW_TAG_imported_module or 314 /// DW_TAG_imported_declaration. 315 bool DIDescriptor::isImportedEntity() const { 316 return DbgNode && (getTag() == dwarf::DW_TAG_imported_module || 317 getTag() == dwarf::DW_TAG_imported_declaration); 318 } 319 320 //===----------------------------------------------------------------------===// 321 // Simple Descriptor Constructors and other Methods 322 //===----------------------------------------------------------------------===// 323 324 unsigned DIArray::getNumElements() const { 325 if (!DbgNode) 326 return 0; 327 return DbgNode->getNumOperands(); 328 } 329 330 /// replaceAllUsesWith - Replace all uses of the MDNode used by this 331 /// type with the one in the passed descriptor. 332 void DIType::replaceAllUsesWith(DIDescriptor &D) { 333 334 assert(DbgNode && "Trying to replace an unverified type!"); 335 336 // Since we use a TrackingVH for the node, its easy for clients to manufacture 337 // legitimate situations where they want to replaceAllUsesWith() on something 338 // which, due to uniquing, has merged with the source. We shield clients from 339 // this detail by allowing a value to be replaced with replaceAllUsesWith() 340 // itself. 341 if (DbgNode != D) { 342 MDNode *Node = const_cast<MDNode*>(DbgNode); 343 const MDNode *DN = D; 344 const Value *V = cast_or_null<Value>(DN); 345 Node->replaceAllUsesWith(const_cast<Value*>(V)); 346 MDNode::deleteTemporary(Node); 347 } 348 } 349 350 /// replaceAllUsesWith - Replace all uses of the MDNode used by this 351 /// type with the one in D. 352 void DIType::replaceAllUsesWith(MDNode *D) { 353 354 assert(DbgNode && "Trying to replace an unverified type!"); 355 356 // Since we use a TrackingVH for the node, its easy for clients to manufacture 357 // legitimate situations where they want to replaceAllUsesWith() on something 358 // which, due to uniquing, has merged with the source. We shield clients from 359 // this detail by allowing a value to be replaced with replaceAllUsesWith() 360 // itself. 361 if (DbgNode != D) { 362 MDNode *Node = const_cast<MDNode*>(DbgNode); 363 const MDNode *DN = D; 364 const Value *V = cast_or_null<Value>(DN); 365 Node->replaceAllUsesWith(const_cast<Value*>(V)); 366 MDNode::deleteTemporary(Node); 367 } 368 } 369 370 /// isUnsignedDIType - Return true if type encoding is unsigned. 371 bool DIType::isUnsignedDIType() { 372 DIDerivedType DTy(DbgNode); 373 if (DTy.Verify()) 374 return DTy.getTypeDerivedFrom().isUnsignedDIType(); 375 376 DIBasicType BTy(DbgNode); 377 if (BTy.Verify()) { 378 unsigned Encoding = BTy.getEncoding(); 379 if (Encoding == dwarf::DW_ATE_unsigned || 380 Encoding == dwarf::DW_ATE_unsigned_char || 381 Encoding == dwarf::DW_ATE_boolean) 382 return true; 383 } 384 return false; 385 } 386 387 /// Verify - Verify that a compile unit is well formed. 388 bool DICompileUnit::Verify() const { 389 if (!isCompileUnit()) 390 return false; 391 392 // Don't bother verifying the compilation directory or producer string 393 // as those could be empty. 394 if (getFilename().empty()) 395 return false; 396 397 return DbgNode->getNumOperands() == 13; 398 } 399 400 /// Verify - Verify that an ObjC property is well formed. 401 bool DIObjCProperty::Verify() const { 402 if (!isObjCProperty()) 403 return false; 404 405 // Don't worry about the rest of the strings for now. 406 return DbgNode->getNumOperands() == 8; 407 } 408 409 /// Check if a field at position Elt of a MDNode is a MDNode. 410 /// We currently allow an empty string and an integer. 411 /// But we don't allow a non-empty string in a MDNode field. 412 static bool fieldIsMDNode(const MDNode *DbgNode, unsigned Elt) { 413 // FIXME: This function should return true, if the field is null or the field 414 // is indeed a MDNode: return !Fld || isa<MDNode>(Fld). 415 Value *Fld = getField(DbgNode, Elt); 416 if (Fld && isa<MDString>(Fld) && 417 !cast<MDString>(Fld)->getString().empty()) 418 return false; 419 return true; 420 } 421 422 /// Verify - Verify that a type descriptor is well formed. 423 bool DIType::Verify() const { 424 if (!isType()) 425 return false; 426 // Make sure Context @ field 2 is MDNode. 427 if (!fieldIsMDNode(DbgNode, 2)) 428 return false; 429 430 // FIXME: Sink this into the various subclass verifies. 431 uint16_t Tag = getTag(); 432 if (!isBasicType() && Tag != dwarf::DW_TAG_const_type && 433 Tag != dwarf::DW_TAG_volatile_type && Tag != dwarf::DW_TAG_pointer_type && 434 Tag != dwarf::DW_TAG_ptr_to_member_type && 435 Tag != dwarf::DW_TAG_reference_type && 436 Tag != dwarf::DW_TAG_rvalue_reference_type && 437 Tag != dwarf::DW_TAG_restrict_type && Tag != dwarf::DW_TAG_array_type && 438 Tag != dwarf::DW_TAG_enumeration_type && 439 Tag != dwarf::DW_TAG_subroutine_type && 440 Tag != dwarf::DW_TAG_inheritance && Tag != dwarf::DW_TAG_friend && 441 getFilename().empty()) 442 return false; 443 // DIType is abstract, it should be a BasicType, a DerivedType or 444 // a CompositeType. 445 if (isBasicType()) 446 DIBasicType(DbgNode).Verify(); 447 else if (isCompositeType()) 448 DICompositeType(DbgNode).Verify(); 449 else if (isDerivedType()) 450 DIDerivedType(DbgNode).Verify(); 451 else 452 return false; 453 return true; 454 } 455 456 /// Verify - Verify that a basic type descriptor is well formed. 457 bool DIBasicType::Verify() const { 458 return isBasicType() && DbgNode->getNumOperands() == 10; 459 } 460 461 /// Verify - Verify that a derived type descriptor is well formed. 462 bool DIDerivedType::Verify() const { 463 // Make sure DerivedFrom @ field 9 is MDNode. 464 if (!fieldIsMDNode(DbgNode, 9)) 465 return false; 466 if (getTag() == dwarf::DW_TAG_ptr_to_member_type) 467 // Make sure ClassType @ field 10 is MDNode. 468 if (!fieldIsMDNode(DbgNode, 10)) 469 return false; 470 471 return isDerivedType() && DbgNode->getNumOperands() >= 10 && 472 DbgNode->getNumOperands() <= 14; 473 } 474 475 /// Verify - Verify that a composite type descriptor is well formed. 476 bool DICompositeType::Verify() const { 477 if (!isCompositeType()) 478 return false; 479 480 // Make sure DerivedFrom @ field 9 and ContainingType @ field 12 are MDNodes. 481 if (!fieldIsMDNode(DbgNode, 9)) 482 return false; 483 if (!fieldIsMDNode(DbgNode, 12)) 484 return false; 485 486 // If this is an array type verify that we have a DIType in the derived type 487 // field as that's the type of our element. 488 if (getTag() == dwarf::DW_TAG_array_type) 489 if (!DIType(getTypeDerivedFrom())) 490 return false; 491 492 return DbgNode->getNumOperands() >= 10 && DbgNode->getNumOperands() <= 14; 493 } 494 495 /// Verify - Verify that a subprogram descriptor is well formed. 496 bool DISubprogram::Verify() const { 497 if (!isSubprogram()) 498 return false; 499 500 // Make sure context @ field 2 and type @ field 7 are MDNodes. 501 if (!fieldIsMDNode(DbgNode, 2)) 502 return false; 503 if (!fieldIsMDNode(DbgNode, 7)) 504 return false; 505 // Containing type @ field 12. 506 if (!fieldIsMDNode(DbgNode, 12)) 507 return false; 508 return DbgNode->getNumOperands() == 20; 509 } 510 511 /// Verify - Verify that a global variable descriptor is well formed. 512 bool DIGlobalVariable::Verify() const { 513 if (!isGlobalVariable()) 514 return false; 515 516 if (getDisplayName().empty()) 517 return false; 518 // Make sure context @ field 2 and type @ field 8 are MDNodes. 519 if (!fieldIsMDNode(DbgNode, 2)) 520 return false; 521 if (!fieldIsMDNode(DbgNode, 8)) 522 return false; 523 // Make sure StaticDataMemberDeclaration @ field 12 is MDNode. 524 if (!fieldIsMDNode(DbgNode, 12)) 525 return false; 526 527 return DbgNode->getNumOperands() == 13; 528 } 529 530 /// Verify - Verify that a variable descriptor is well formed. 531 bool DIVariable::Verify() const { 532 if (!isVariable()) 533 return false; 534 535 // Make sure context @ field 1 and type @ field 5 are MDNodes. 536 if (!fieldIsMDNode(DbgNode, 1)) 537 return false; 538 if (!fieldIsMDNode(DbgNode, 5)) 539 return false; 540 return DbgNode->getNumOperands() >= 8; 541 } 542 543 /// Verify - Verify that a location descriptor is well formed. 544 bool DILocation::Verify() const { 545 if (!DbgNode) 546 return false; 547 548 return DbgNode->getNumOperands() == 4; 549 } 550 551 /// Verify - Verify that a namespace descriptor is well formed. 552 bool DINameSpace::Verify() const { 553 if (!isNameSpace()) 554 return false; 555 return DbgNode->getNumOperands() == 5; 556 } 557 558 /// \brief Retrieve the MDNode for the directory/file pair. 559 MDNode *DIFile::getFileNode() const { 560 return getNodeField(DbgNode, 1); 561 } 562 563 /// \brief Verify that the file descriptor is well formed. 564 bool DIFile::Verify() const { 565 return isFile() && DbgNode->getNumOperands() == 2; 566 } 567 568 /// \brief Verify that the enumerator descriptor is well formed. 569 bool DIEnumerator::Verify() const { 570 return isEnumerator() && DbgNode->getNumOperands() == 3; 571 } 572 573 /// \brief Verify that the subrange descriptor is well formed. 574 bool DISubrange::Verify() const { 575 return isSubrange() && DbgNode->getNumOperands() == 3; 576 } 577 578 /// \brief Verify that the lexical block descriptor is well formed. 579 bool DILexicalBlock::Verify() const { 580 return isLexicalBlock() && DbgNode->getNumOperands() == 6; 581 } 582 583 /// \brief Verify that the file-scoped lexical block descriptor is well formed. 584 bool DILexicalBlockFile::Verify() const { 585 return isLexicalBlockFile() && DbgNode->getNumOperands() == 3; 586 } 587 588 /// \brief Verify that the template type parameter descriptor is well formed. 589 bool DITemplateTypeParameter::Verify() const { 590 return isTemplateTypeParameter() && DbgNode->getNumOperands() == 7; 591 } 592 593 /// \brief Verify that the template value parameter descriptor is well formed. 594 bool DITemplateValueParameter::Verify() const { 595 return isTemplateValueParameter() && DbgNode->getNumOperands() == 8; 596 } 597 598 /// \brief Verify that the imported module descriptor is well formed. 599 bool DIImportedEntity::Verify() const { 600 return isImportedEntity() && 601 (DbgNode->getNumOperands() == 4 || DbgNode->getNumOperands() == 5); 602 } 603 604 /// getOriginalTypeSize - If this type is derived from a base type then 605 /// return base type size. 606 uint64_t DIDerivedType::getOriginalTypeSize() const { 607 uint16_t Tag = getTag(); 608 609 if (Tag != dwarf::DW_TAG_member && Tag != dwarf::DW_TAG_typedef && 610 Tag != dwarf::DW_TAG_const_type && Tag != dwarf::DW_TAG_volatile_type && 611 Tag != dwarf::DW_TAG_restrict_type) 612 return getSizeInBits(); 613 614 DIType BaseType = getTypeDerivedFrom(); 615 616 // If this type is not derived from any type then take conservative approach. 617 if (!BaseType.isValid()) 618 return getSizeInBits(); 619 620 // If this is a derived type, go ahead and get the base type, unless it's a 621 // reference then it's just the size of the field. Pointer types have no need 622 // of this since they're a different type of qualification on the type. 623 if (BaseType.getTag() == dwarf::DW_TAG_reference_type || 624 BaseType.getTag() == dwarf::DW_TAG_rvalue_reference_type) 625 return getSizeInBits(); 626 627 if (BaseType.isDerivedType()) 628 return DIDerivedType(BaseType).getOriginalTypeSize(); 629 630 return BaseType.getSizeInBits(); 631 } 632 633 /// getObjCProperty - Return property node, if this ivar is associated with one. 634 MDNode *DIDerivedType::getObjCProperty() const { 635 return getNodeField(DbgNode, 10); 636 } 637 638 /// \brief Set the array of member DITypes. 639 void DICompositeType::setTypeArray(DIArray Elements, DIArray TParams) { 640 assert((!TParams || DbgNode->getNumOperands() == 14) && 641 "If you're setting the template parameters this should include a slot " 642 "for that!"); 643 TrackingVH<MDNode> N(*this); 644 N->replaceOperandWith(10, Elements); 645 if (TParams) 646 N->replaceOperandWith(13, TParams); 647 DbgNode = N; 648 } 649 650 void DICompositeType::addMember(DIDescriptor D) { 651 SmallVector<llvm::Value *, 16> M; 652 DIArray OrigM = getTypeArray(); 653 unsigned Elements = OrigM.getNumElements(); 654 if (Elements == 1 && !OrigM.getElement(0)) 655 Elements = 0; 656 M.reserve(Elements + 1); 657 for (unsigned i = 0; i != Elements; ++i) 658 M.push_back(OrigM.getElement(i)); 659 M.push_back(D); 660 setTypeArray(DIArray(MDNode::get(DbgNode->getContext(), M))); 661 } 662 663 /// \brief Set the containing type. 664 void DICompositeType::setContainingType(DICompositeType ContainingType) { 665 TrackingVH<MDNode> N(*this); 666 N->replaceOperandWith(12, ContainingType); 667 DbgNode = N; 668 } 669 670 /// isInlinedFnArgument - Return true if this variable provides debugging 671 /// information for an inlined function arguments. 672 bool DIVariable::isInlinedFnArgument(const Function *CurFn) { 673 assert(CurFn && "Invalid function"); 674 if (!getContext().isSubprogram()) 675 return false; 676 // This variable is not inlined function argument if its scope 677 // does not describe current function. 678 return !DISubprogram(getContext()).describes(CurFn); 679 } 680 681 /// describes - Return true if this subprogram provides debugging 682 /// information for the function F. 683 bool DISubprogram::describes(const Function *F) { 684 assert(F && "Invalid function"); 685 if (F == getFunction()) 686 return true; 687 StringRef Name = getLinkageName(); 688 if (Name.empty()) 689 Name = getName(); 690 if (F->getName() == Name) 691 return true; 692 return false; 693 } 694 695 unsigned DISubprogram::isOptimized() const { 696 assert (DbgNode && "Invalid subprogram descriptor!"); 697 if (DbgNode->getNumOperands() == 15) 698 return getUnsignedField(14); 699 return 0; 700 } 701 702 MDNode *DISubprogram::getVariablesNodes() const { 703 return getNodeField(DbgNode, 18); 704 } 705 706 DIArray DISubprogram::getVariables() const { 707 return DIArray(getNodeField(DbgNode, 18)); 708 } 709 710 Value *DITemplateValueParameter::getValue() const { 711 return getField(DbgNode, 4); 712 } 713 714 // If the current node has a parent scope then return that, 715 // else return an empty scope. 716 DIScope DIScope::getContext() const { 717 718 if (isType()) 719 return DIType(DbgNode).getContext(); 720 721 if (isSubprogram()) 722 return DISubprogram(DbgNode).getContext(); 723 724 if (isLexicalBlock()) 725 return DILexicalBlock(DbgNode).getContext(); 726 727 if (isLexicalBlockFile()) 728 return DILexicalBlockFile(DbgNode).getContext(); 729 730 if (isNameSpace()) 731 return DINameSpace(DbgNode).getContext(); 732 733 assert((isFile() || isCompileUnit()) && "Unhandled type of scope."); 734 return DIScope(); 735 } 736 737 StringRef DIScope::getFilename() const { 738 if (!DbgNode) 739 return StringRef(); 740 return ::getStringField(getNodeField(DbgNode, 1), 0); 741 } 742 743 StringRef DIScope::getDirectory() const { 744 if (!DbgNode) 745 return StringRef(); 746 return ::getStringField(getNodeField(DbgNode, 1), 1); 747 } 748 749 DIArray DICompileUnit::getEnumTypes() const { 750 if (!DbgNode || DbgNode->getNumOperands() < 13) 751 return DIArray(); 752 753 return DIArray(getNodeField(DbgNode, 7)); 754 } 755 756 DIArray DICompileUnit::getRetainedTypes() const { 757 if (!DbgNode || DbgNode->getNumOperands() < 13) 758 return DIArray(); 759 760 return DIArray(getNodeField(DbgNode, 8)); 761 } 762 763 DIArray DICompileUnit::getSubprograms() const { 764 if (!DbgNode || DbgNode->getNumOperands() < 13) 765 return DIArray(); 766 767 return DIArray(getNodeField(DbgNode, 9)); 768 } 769 770 771 DIArray DICompileUnit::getGlobalVariables() const { 772 if (!DbgNode || DbgNode->getNumOperands() < 13) 773 return DIArray(); 774 775 return DIArray(getNodeField(DbgNode, 10)); 776 } 777 778 DIArray DICompileUnit::getImportedEntities() const { 779 if (!DbgNode || DbgNode->getNumOperands() < 13) 780 return DIArray(); 781 782 return DIArray(getNodeField(DbgNode, 11)); 783 } 784 785 /// fixupSubprogramName - Replace contains special characters used 786 /// in a typical Objective-C names with '.' in a given string. 787 static void fixupSubprogramName(DISubprogram Fn, SmallVectorImpl<char> &Out) { 788 StringRef FName = 789 Fn.getFunction() ? Fn.getFunction()->getName() : Fn.getName(); 790 FName = Function::getRealLinkageName(FName); 791 792 StringRef Prefix("llvm.dbg.lv."); 793 Out.reserve(FName.size() + Prefix.size()); 794 Out.append(Prefix.begin(), Prefix.end()); 795 796 bool isObjCLike = false; 797 for (size_t i = 0, e = FName.size(); i < e; ++i) { 798 char C = FName[i]; 799 if (C == '[') 800 isObjCLike = true; 801 802 if (isObjCLike && (C == '[' || C == ']' || C == ' ' || C == ':' || 803 C == '+' || C == '(' || C == ')')) 804 Out.push_back('.'); 805 else 806 Out.push_back(C); 807 } 808 } 809 810 /// getFnSpecificMDNode - Return a NameMDNode, if available, that is 811 /// suitable to hold function specific information. 812 NamedMDNode *llvm::getFnSpecificMDNode(const Module &M, DISubprogram Fn) { 813 SmallString<32> Name; 814 fixupSubprogramName(Fn, Name); 815 return M.getNamedMetadata(Name.str()); 816 } 817 818 /// getOrInsertFnSpecificMDNode - Return a NameMDNode that is suitable 819 /// to hold function specific information. 820 NamedMDNode *llvm::getOrInsertFnSpecificMDNode(Module &M, DISubprogram Fn) { 821 SmallString<32> Name; 822 fixupSubprogramName(Fn, Name); 823 return M.getOrInsertNamedMetadata(Name.str()); 824 } 825 826 /// createInlinedVariable - Create a new inlined variable based on current 827 /// variable. 828 /// @param DV Current Variable. 829 /// @param InlinedScope Location at current variable is inlined. 830 DIVariable llvm::createInlinedVariable(MDNode *DV, MDNode *InlinedScope, 831 LLVMContext &VMContext) { 832 SmallVector<Value *, 16> Elts; 833 // Insert inlined scope as 7th element. 834 for (unsigned i = 0, e = DV->getNumOperands(); i != e; ++i) 835 i == 7 ? Elts.push_back(InlinedScope) : 836 Elts.push_back(DV->getOperand(i)); 837 return DIVariable(MDNode::get(VMContext, Elts)); 838 } 839 840 /// cleanseInlinedVariable - Remove inlined scope from the variable. 841 DIVariable llvm::cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext) { 842 SmallVector<Value *, 16> Elts; 843 // Insert inlined scope as 7th element. 844 for (unsigned i = 0, e = DV->getNumOperands(); i != e; ++i) 845 i == 7 ? 846 Elts.push_back(Constant::getNullValue(Type::getInt32Ty(VMContext))): 847 Elts.push_back(DV->getOperand(i)); 848 return DIVariable(MDNode::get(VMContext, Elts)); 849 } 850 851 /// getDISubprogram - Find subprogram that is enclosing this scope. 852 DISubprogram llvm::getDISubprogram(const MDNode *Scope) { 853 DIDescriptor D(Scope); 854 if (D.isSubprogram()) 855 return DISubprogram(Scope); 856 857 if (D.isLexicalBlockFile()) 858 return getDISubprogram(DILexicalBlockFile(Scope).getContext()); 859 860 if (D.isLexicalBlock()) 861 return getDISubprogram(DILexicalBlock(Scope).getContext()); 862 863 return DISubprogram(); 864 } 865 866 /// getDICompositeType - Find underlying composite type. 867 DICompositeType llvm::getDICompositeType(DIType T) { 868 if (T.isCompositeType()) 869 return DICompositeType(T); 870 871 if (T.isDerivedType()) 872 return getDICompositeType(DIDerivedType(T).getTypeDerivedFrom()); 873 874 return DICompositeType(); 875 } 876 877 /// isSubprogramContext - Return true if Context is either a subprogram 878 /// or another context nested inside a subprogram. 879 bool llvm::isSubprogramContext(const MDNode *Context) { 880 if (!Context) 881 return false; 882 DIDescriptor D(Context); 883 if (D.isSubprogram()) 884 return true; 885 if (D.isType()) 886 return isSubprogramContext(DIType(Context).getContext()); 887 return false; 888 } 889 890 //===----------------------------------------------------------------------===// 891 // DebugInfoFinder implementations. 892 //===----------------------------------------------------------------------===// 893 894 void DebugInfoFinder::reset() { 895 CUs.clear(); 896 SPs.clear(); 897 GVs.clear(); 898 TYs.clear(); 899 Scopes.clear(); 900 NodesSeen.clear(); 901 } 902 903 /// processModule - Process entire module and collect debug info. 904 void DebugInfoFinder::processModule(const Module &M) { 905 if (NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu")) { 906 for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) { 907 DICompileUnit CU(CU_Nodes->getOperand(i)); 908 addCompileUnit(CU); 909 DIArray GVs = CU.getGlobalVariables(); 910 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) { 911 DIGlobalVariable DIG(GVs.getElement(i)); 912 if (addGlobalVariable(DIG)) { 913 processScope(DIG.getContext()); 914 processType(DIG.getType()); 915 } 916 } 917 DIArray SPs = CU.getSubprograms(); 918 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i) 919 processSubprogram(DISubprogram(SPs.getElement(i))); 920 DIArray EnumTypes = CU.getEnumTypes(); 921 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i) 922 processType(DIType(EnumTypes.getElement(i))); 923 DIArray RetainedTypes = CU.getRetainedTypes(); 924 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i) 925 processType(DIType(RetainedTypes.getElement(i))); 926 // FIXME: We really shouldn't be bailing out after visiting just one CU 927 return; 928 } 929 } 930 } 931 932 /// processLocation - Process DILocation. 933 void DebugInfoFinder::processLocation(DILocation Loc) { 934 if (!Loc) return; 935 processScope(Loc.getScope()); 936 processLocation(Loc.getOrigLocation()); 937 } 938 939 /// processType - Process DIType. 940 void DebugInfoFinder::processType(DIType DT) { 941 if (!addType(DT)) 942 return; 943 processScope(DT.getContext()); 944 if (DT.isCompositeType()) { 945 DICompositeType DCT(DT); 946 processType(DCT.getTypeDerivedFrom()); 947 DIArray DA = DCT.getTypeArray(); 948 for (unsigned i = 0, e = DA.getNumElements(); i != e; ++i) { 949 DIDescriptor D = DA.getElement(i); 950 if (D.isType()) 951 processType(DIType(D)); 952 else if (D.isSubprogram()) 953 processSubprogram(DISubprogram(D)); 954 } 955 } else if (DT.isDerivedType()) { 956 DIDerivedType DDT(DT); 957 processType(DDT.getTypeDerivedFrom()); 958 } 959 } 960 961 void DebugInfoFinder::processScope(DIScope Scope) { 962 if (Scope.isType()) { 963 DIType Ty(Scope); 964 processType(Ty); 965 return; 966 } 967 if (Scope.isCompileUnit()) { 968 addCompileUnit(DICompileUnit(Scope)); 969 return; 970 } 971 if (Scope.isSubprogram()) { 972 processSubprogram(DISubprogram(Scope)); 973 return; 974 } 975 if (!addScope(Scope)) 976 return; 977 if (Scope.isLexicalBlock()) { 978 DILexicalBlock LB(Scope); 979 processScope(LB.getContext()); 980 } else if (Scope.isLexicalBlockFile()) { 981 DILexicalBlockFile LBF = DILexicalBlockFile(Scope); 982 processScope(LBF.getScope()); 983 } else if (Scope.isNameSpace()) { 984 DINameSpace NS(Scope); 985 processScope(NS.getContext()); 986 } 987 } 988 989 /// processLexicalBlock 990 void DebugInfoFinder::processLexicalBlock(DILexicalBlock LB) { 991 DIScope Context = LB.getContext(); 992 if (Context.isLexicalBlock()) 993 return processLexicalBlock(DILexicalBlock(Context)); 994 else if (Context.isLexicalBlockFile()) { 995 DILexicalBlockFile DBF = DILexicalBlockFile(Context); 996 return processLexicalBlock(DILexicalBlock(DBF.getScope())); 997 } 998 else 999 return processSubprogram(DISubprogram(Context)); 1000 } 1001 1002 /// processSubprogram - Process DISubprogram. 1003 void DebugInfoFinder::processSubprogram(DISubprogram SP) { 1004 if (!addSubprogram(SP)) 1005 return; 1006 processScope(SP.getContext()); 1007 processType(SP.getType()); 1008 } 1009 1010 /// processDeclare - Process DbgDeclareInst. 1011 void DebugInfoFinder::processDeclare(const DbgDeclareInst *DDI) { 1012 MDNode *N = dyn_cast<MDNode>(DDI->getVariable()); 1013 if (!N) return; 1014 1015 DIDescriptor DV(N); 1016 if (!DV.isVariable()) 1017 return; 1018 1019 if (!NodesSeen.insert(DV)) 1020 return; 1021 processScope(DIVariable(N).getContext()); 1022 processType(DIVariable(N).getType()); 1023 } 1024 1025 void DebugInfoFinder::processValue(const DbgValueInst *DVI) { 1026 MDNode *N = dyn_cast<MDNode>(DVI->getVariable()); 1027 if (!N) return; 1028 1029 DIDescriptor DV(N); 1030 if (!DV.isVariable()) 1031 return; 1032 1033 if (!NodesSeen.insert(DV)) 1034 return; 1035 processScope(DIVariable(N).getContext()); 1036 processType(DIVariable(N).getType()); 1037 } 1038 1039 /// addType - Add type into Tys. 1040 bool DebugInfoFinder::addType(DIType DT) { 1041 if (!DT) 1042 return false; 1043 1044 if (!NodesSeen.insert(DT)) 1045 return false; 1046 1047 TYs.push_back(DT); 1048 return true; 1049 } 1050 1051 /// addCompileUnit - Add compile unit into CUs. 1052 bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) { 1053 if (!CU) 1054 return false; 1055 if (!NodesSeen.insert(CU)) 1056 return false; 1057 1058 CUs.push_back(CU); 1059 return true; 1060 } 1061 1062 /// addGlobalVariable - Add global variable into GVs. 1063 bool DebugInfoFinder::addGlobalVariable(DIGlobalVariable DIG) { 1064 if (!DIG) 1065 return false; 1066 1067 if (!NodesSeen.insert(DIG)) 1068 return false; 1069 1070 GVs.push_back(DIG); 1071 return true; 1072 } 1073 1074 // addSubprogram - Add subprgoram into SPs. 1075 bool DebugInfoFinder::addSubprogram(DISubprogram SP) { 1076 if (!SP) 1077 return false; 1078 1079 if (!NodesSeen.insert(SP)) 1080 return false; 1081 1082 SPs.push_back(SP); 1083 return true; 1084 } 1085 1086 bool DebugInfoFinder::addScope(DIScope Scope) { 1087 if (!Scope) 1088 return false; 1089 // FIXME: Ocaml binding generates a scope with no content, we treat it 1090 // as null for now. 1091 if (Scope->getNumOperands() == 0) 1092 return false; 1093 if (!NodesSeen.insert(Scope)) 1094 return false; 1095 Scopes.push_back(Scope); 1096 return true; 1097 } 1098 1099 //===----------------------------------------------------------------------===// 1100 // DIDescriptor: dump routines for all descriptors. 1101 //===----------------------------------------------------------------------===// 1102 1103 /// dump - Print descriptor to dbgs() with a newline. 1104 void DIDescriptor::dump() const { 1105 print(dbgs()); dbgs() << '\n'; 1106 } 1107 1108 /// print - Print descriptor. 1109 void DIDescriptor::print(raw_ostream &OS) const { 1110 if (!DbgNode) return; 1111 1112 if (const char *Tag = dwarf::TagString(getTag())) 1113 OS << "[ " << Tag << " ]"; 1114 1115 if (this->isSubrange()) { 1116 DISubrange(DbgNode).printInternal(OS); 1117 } else if (this->isCompileUnit()) { 1118 DICompileUnit(DbgNode).printInternal(OS); 1119 } else if (this->isFile()) { 1120 DIFile(DbgNode).printInternal(OS); 1121 } else if (this->isEnumerator()) { 1122 DIEnumerator(DbgNode).printInternal(OS); 1123 } else if (this->isBasicType()) { 1124 DIType(DbgNode).printInternal(OS); 1125 } else if (this->isDerivedType()) { 1126 DIDerivedType(DbgNode).printInternal(OS); 1127 } else if (this->isCompositeType()) { 1128 DICompositeType(DbgNode).printInternal(OS); 1129 } else if (this->isSubprogram()) { 1130 DISubprogram(DbgNode).printInternal(OS); 1131 } else if (this->isGlobalVariable()) { 1132 DIGlobalVariable(DbgNode).printInternal(OS); 1133 } else if (this->isVariable()) { 1134 DIVariable(DbgNode).printInternal(OS); 1135 } else if (this->isObjCProperty()) { 1136 DIObjCProperty(DbgNode).printInternal(OS); 1137 } else if (this->isNameSpace()) { 1138 DINameSpace(DbgNode).printInternal(OS); 1139 } else if (this->isScope()) { 1140 DIScope(DbgNode).printInternal(OS); 1141 } 1142 } 1143 1144 void DISubrange::printInternal(raw_ostream &OS) const { 1145 int64_t Count = getCount(); 1146 if (Count != -1) 1147 OS << " [" << getLo() << ", " << Count - 1 << ']'; 1148 else 1149 OS << " [unbounded]"; 1150 } 1151 1152 void DIScope::printInternal(raw_ostream &OS) const { 1153 OS << " [" << getDirectory() << "/" << getFilename() << ']'; 1154 } 1155 1156 void DICompileUnit::printInternal(raw_ostream &OS) const { 1157 DIScope::printInternal(OS); 1158 OS << " ["; 1159 unsigned Lang = getLanguage(); 1160 if (const char *LangStr = dwarf::LanguageString(Lang)) 1161 OS << LangStr; 1162 else 1163 (OS << "lang 0x").write_hex(Lang); 1164 OS << ']'; 1165 } 1166 1167 void DIEnumerator::printInternal(raw_ostream &OS) const { 1168 OS << " [" << getName() << " :: " << getEnumValue() << ']'; 1169 } 1170 1171 void DIType::printInternal(raw_ostream &OS) const { 1172 if (!DbgNode) return; 1173 1174 StringRef Res = getName(); 1175 if (!Res.empty()) 1176 OS << " [" << Res << "]"; 1177 1178 // TODO: Print context? 1179 1180 OS << " [line " << getLineNumber() 1181 << ", size " << getSizeInBits() 1182 << ", align " << getAlignInBits() 1183 << ", offset " << getOffsetInBits(); 1184 if (isBasicType()) 1185 if (const char *Enc = 1186 dwarf::AttributeEncodingString(DIBasicType(DbgNode).getEncoding())) 1187 OS << ", enc " << Enc; 1188 OS << "]"; 1189 1190 if (isPrivate()) 1191 OS << " [private]"; 1192 else if (isProtected()) 1193 OS << " [protected]"; 1194 1195 if (isArtificial()) 1196 OS << " [artificial]"; 1197 1198 if (isForwardDecl()) 1199 OS << " [decl]"; 1200 else if (getTag() == dwarf::DW_TAG_structure_type || 1201 getTag() == dwarf::DW_TAG_union_type || 1202 getTag() == dwarf::DW_TAG_enumeration_type || 1203 getTag() == dwarf::DW_TAG_class_type) 1204 OS << " [def]"; 1205 if (isVector()) 1206 OS << " [vector]"; 1207 if (isStaticMember()) 1208 OS << " [static]"; 1209 } 1210 1211 void DIDerivedType::printInternal(raw_ostream &OS) const { 1212 DIType::printInternal(OS); 1213 OS << " [from " << getTypeDerivedFrom().getName() << ']'; 1214 } 1215 1216 void DICompositeType::printInternal(raw_ostream &OS) const { 1217 DIType::printInternal(OS); 1218 DIArray A = getTypeArray(); 1219 OS << " [" << A.getNumElements() << " elements]"; 1220 } 1221 1222 void DINameSpace::printInternal(raw_ostream &OS) const { 1223 StringRef Name = getName(); 1224 if (!Name.empty()) 1225 OS << " [" << Name << ']'; 1226 1227 OS << " [line " << getLineNumber() << ']'; 1228 } 1229 1230 void DISubprogram::printInternal(raw_ostream &OS) const { 1231 // TODO : Print context 1232 OS << " [line " << getLineNumber() << ']'; 1233 1234 if (isLocalToUnit()) 1235 OS << " [local]"; 1236 1237 if (isDefinition()) 1238 OS << " [def]"; 1239 1240 if (getScopeLineNumber() != getLineNumber()) 1241 OS << " [scope " << getScopeLineNumber() << "]"; 1242 1243 if (isPrivate()) 1244 OS << " [private]"; 1245 else if (isProtected()) 1246 OS << " [protected]"; 1247 1248 StringRef Res = getName(); 1249 if (!Res.empty()) 1250 OS << " [" << Res << ']'; 1251 } 1252 1253 void DIGlobalVariable::printInternal(raw_ostream &OS) const { 1254 StringRef Res = getName(); 1255 if (!Res.empty()) 1256 OS << " [" << Res << ']'; 1257 1258 OS << " [line " << getLineNumber() << ']'; 1259 1260 // TODO : Print context 1261 1262 if (isLocalToUnit()) 1263 OS << " [local]"; 1264 1265 if (isDefinition()) 1266 OS << " [def]"; 1267 } 1268 1269 void DIVariable::printInternal(raw_ostream &OS) const { 1270 StringRef Res = getName(); 1271 if (!Res.empty()) 1272 OS << " [" << Res << ']'; 1273 1274 OS << " [line " << getLineNumber() << ']'; 1275 } 1276 1277 void DIObjCProperty::printInternal(raw_ostream &OS) const { 1278 StringRef Name = getObjCPropertyName(); 1279 if (!Name.empty()) 1280 OS << " [" << Name << ']'; 1281 1282 OS << " [line " << getLineNumber() 1283 << ", properties " << getUnsignedField(6) << ']'; 1284 } 1285 1286 static void printDebugLoc(DebugLoc DL, raw_ostream &CommentOS, 1287 const LLVMContext &Ctx) { 1288 if (!DL.isUnknown()) { // Print source line info. 1289 DIScope Scope(DL.getScope(Ctx)); 1290 assert(Scope.isScope() && 1291 "Scope of a DebugLoc should be a DIScope."); 1292 // Omit the directory, because it's likely to be long and uninteresting. 1293 CommentOS << Scope.getFilename(); 1294 CommentOS << ':' << DL.getLine(); 1295 if (DL.getCol() != 0) 1296 CommentOS << ':' << DL.getCol(); 1297 DebugLoc InlinedAtDL = DebugLoc::getFromDILocation(DL.getInlinedAt(Ctx)); 1298 if (!InlinedAtDL.isUnknown()) { 1299 CommentOS << " @[ "; 1300 printDebugLoc(InlinedAtDL, CommentOS, Ctx); 1301 CommentOS << " ]"; 1302 } 1303 } 1304 } 1305 1306 void DIVariable::printExtendedName(raw_ostream &OS) const { 1307 const LLVMContext &Ctx = DbgNode->getContext(); 1308 StringRef Res = getName(); 1309 if (!Res.empty()) 1310 OS << Res << "," << getLineNumber(); 1311 if (MDNode *InlinedAt = getInlinedAt()) { 1312 DebugLoc InlinedAtDL = DebugLoc::getFromDILocation(InlinedAt); 1313 if (!InlinedAtDL.isUnknown()) { 1314 OS << " @["; 1315 printDebugLoc(InlinedAtDL, OS, Ctx); 1316 OS << "]"; 1317 } 1318 } 1319 } 1320