1 //===-- DWARFASTParserClang.cpp -------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include <stdlib.h> 10 11 #include "DWARFASTParserClang.h" 12 #include "DWARFDebugInfo.h" 13 #include "DWARFDeclContext.h" 14 #include "DWARFDefines.h" 15 #include "SymbolFileDWARF.h" 16 #include "SymbolFileDWARFDebugMap.h" 17 #include "SymbolFileDWARFDwo.h" 18 #include "UniqueDWARFASTType.h" 19 20 #include "Plugins/ExpressionParser/Clang/ClangASTImporter.h" 21 #include "Plugins/ExpressionParser/Clang/ClangASTMetadata.h" 22 #include "Plugins/ExpressionParser/Clang/ClangUtil.h" 23 #include "Plugins/Language/ObjC/ObjCLanguage.h" 24 #include "lldb/Core/Module.h" 25 #include "lldb/Core/Value.h" 26 #include "lldb/Host/Host.h" 27 #include "lldb/Symbol/CompileUnit.h" 28 #include "lldb/Symbol/Function.h" 29 #include "lldb/Symbol/ObjectFile.h" 30 #include "lldb/Symbol/SymbolFile.h" 31 #include "lldb/Symbol/TypeList.h" 32 #include "lldb/Symbol/TypeMap.h" 33 #include "lldb/Target/Language.h" 34 #include "lldb/Utility/LLDBAssert.h" 35 #include "lldb/Utility/Log.h" 36 #include "lldb/Utility/StreamString.h" 37 38 #include "llvm/Demangle/Demangle.h" 39 40 #include "clang/AST/CXXInheritance.h" 41 #include "clang/AST/DeclCXX.h" 42 #include "clang/AST/DeclObjC.h" 43 #include "clang/AST/DeclTemplate.h" 44 45 #include <map> 46 #include <memory> 47 #include <vector> 48 49 //#define ENABLE_DEBUG_PRINTF // COMMENT OUT THIS LINE PRIOR TO CHECKIN 50 51 #ifdef ENABLE_DEBUG_PRINTF 52 #include <stdio.h> 53 #define DEBUG_PRINTF(fmt, ...) printf(fmt, __VA_ARGS__) 54 #else 55 #define DEBUG_PRINTF(fmt, ...) 56 #endif 57 58 using namespace lldb; 59 using namespace lldb_private; 60 DWARFASTParserClang::DWARFASTParserClang(TypeSystemClang &ast) 61 : m_ast(ast), m_die_to_decl_ctx(), m_decl_ctx_to_die() {} 62 63 DWARFASTParserClang::~DWARFASTParserClang() {} 64 65 static AccessType DW_ACCESS_to_AccessType(uint32_t dwarf_accessibility) { 66 switch (dwarf_accessibility) { 67 case DW_ACCESS_public: 68 return eAccessPublic; 69 case DW_ACCESS_private: 70 return eAccessPrivate; 71 case DW_ACCESS_protected: 72 return eAccessProtected; 73 default: 74 break; 75 } 76 return eAccessNone; 77 } 78 79 static bool DeclKindIsCXXClass(clang::Decl::Kind decl_kind) { 80 switch (decl_kind) { 81 case clang::Decl::CXXRecord: 82 case clang::Decl::ClassTemplateSpecialization: 83 return true; 84 default: 85 break; 86 } 87 return false; 88 } 89 90 91 ClangASTImporter &DWARFASTParserClang::GetClangASTImporter() { 92 if (!m_clang_ast_importer_up) { 93 m_clang_ast_importer_up = std::make_unique<ClangASTImporter>(); 94 } 95 return *m_clang_ast_importer_up; 96 } 97 98 /// Detect a forward declaration that is nested in a DW_TAG_module. 99 static bool IsClangModuleFwdDecl(const DWARFDIE &Die) { 100 if (!Die.GetAttributeValueAsUnsigned(DW_AT_declaration, 0)) 101 return false; 102 auto Parent = Die.GetParent(); 103 while (Parent.IsValid()) { 104 if (Parent.Tag() == DW_TAG_module) 105 return true; 106 Parent = Parent.GetParent(); 107 } 108 return false; 109 } 110 111 static DWARFDIE GetContainingClangModuleDIE(const DWARFDIE &die) { 112 if (die.IsValid()) { 113 DWARFDIE top_module_die; 114 // Now make sure this DIE is scoped in a DW_TAG_module tag and return true 115 // if so 116 for (DWARFDIE parent = die.GetParent(); parent.IsValid(); 117 parent = parent.GetParent()) { 118 const dw_tag_t tag = parent.Tag(); 119 if (tag == DW_TAG_module) 120 top_module_die = parent; 121 else if (tag == DW_TAG_compile_unit || tag == DW_TAG_partial_unit) 122 break; 123 } 124 125 return top_module_die; 126 } 127 return DWARFDIE(); 128 } 129 130 static lldb::ModuleSP GetContainingClangModule(const DWARFDIE &die) { 131 if (die.IsValid()) { 132 DWARFDIE clang_module_die = GetContainingClangModuleDIE(die); 133 134 if (clang_module_die) { 135 const char *module_name = clang_module_die.GetName(); 136 if (module_name) 137 return die.GetDWARF()->GetExternalModule( 138 lldb_private::ConstString(module_name)); 139 } 140 } 141 return lldb::ModuleSP(); 142 } 143 144 TypeSP DWARFASTParserClang::ParseTypeFromClangModule(const SymbolContext &sc, 145 const DWARFDIE &die, 146 Log *log) { 147 ModuleSP clang_module_sp = GetContainingClangModule(die); 148 if (!clang_module_sp) 149 return TypeSP(); 150 151 // If this type comes from a Clang module, recursively look in the 152 // DWARF section of the .pcm file in the module cache. Clang 153 // generates DWO skeleton units as breadcrumbs to find them. 154 llvm::SmallVector<CompilerContext, 4> decl_context; 155 die.GetDeclContext(decl_context); 156 TypeMap pcm_types; 157 158 // The type in the Clang module must have the same language as the current CU. 159 LanguageSet languages; 160 languages.Insert(SymbolFileDWARF::GetLanguage(*die.GetCU())); 161 llvm::DenseSet<SymbolFile *> searched_symbol_files; 162 clang_module_sp->GetSymbolFile()->FindTypes(decl_context, languages, 163 searched_symbol_files, pcm_types); 164 if (pcm_types.Empty()) { 165 // Since this type is defined in one of the Clang modules imported 166 // by this symbol file, search all of them. Instead of calling 167 // sym_file->FindTypes(), which would return this again, go straight 168 // to the imported modules. 169 auto &sym_file = die.GetCU()->GetSymbolFileDWARF(); 170 171 // Well-formed clang modules never form cycles; guard against corrupted 172 // ones by inserting the current file. 173 searched_symbol_files.insert(&sym_file); 174 sym_file.ForEachExternalModule( 175 *sc.comp_unit, searched_symbol_files, [&](Module &module) { 176 module.GetSymbolFile()->FindTypes(decl_context, languages, 177 searched_symbol_files, pcm_types); 178 return pcm_types.GetSize(); 179 }); 180 } 181 182 if (!pcm_types.GetSize()) 183 return TypeSP(); 184 185 // We found a real definition for this type in the Clang module, so lets use 186 // it and cache the fact that we found a complete type for this die. 187 TypeSP pcm_type_sp = pcm_types.GetTypeAtIndex(0); 188 if (!pcm_type_sp) 189 return TypeSP(); 190 191 lldb_private::CompilerType pcm_type = pcm_type_sp->GetForwardCompilerType(); 192 lldb_private::CompilerType type = 193 GetClangASTImporter().CopyType(m_ast, pcm_type); 194 195 if (!type) 196 return TypeSP(); 197 198 // Under normal operation pcm_type is a shallow forward declaration 199 // that gets completed later. This is necessary to support cyclic 200 // data structures. If, however, pcm_type is already complete (for 201 // example, because it was loaded for a different target before), 202 // the definition needs to be imported right away, too. 203 // Type::ResolveClangType() effectively ignores the ResolveState 204 // inside type_sp and only looks at IsDefined(), so it never calls 205 // ClangASTImporter::ASTImporterDelegate::ImportDefinitionTo(), 206 // which does extra work for Objective-C classes. This would result 207 // in only the forward declaration to be visible. 208 if (pcm_type.IsDefined()) 209 GetClangASTImporter().RequireCompleteType(ClangUtil::GetQualType(type)); 210 211 SymbolFileDWARF *dwarf = die.GetDWARF(); 212 TypeSP type_sp(new Type( 213 die.GetID(), dwarf, pcm_type_sp->GetName(), pcm_type_sp->GetByteSize(), 214 nullptr, LLDB_INVALID_UID, Type::eEncodingInvalid, 215 &pcm_type_sp->GetDeclaration(), type, Type::ResolveState::Forward, 216 TypePayloadClang(GetOwningClangModule(die)))); 217 218 dwarf->GetTypeList().Insert(type_sp); 219 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); 220 clang::TagDecl *tag_decl = TypeSystemClang::GetAsTagDecl(type); 221 if (tag_decl) { 222 LinkDeclContextToDIE(tag_decl, die); 223 } else { 224 clang::DeclContext *defn_decl_ctx = GetCachedClangDeclContextForDIE(die); 225 if (defn_decl_ctx) 226 LinkDeclContextToDIE(defn_decl_ctx, die); 227 } 228 229 return type_sp; 230 } 231 232 static void CompleteExternalTagDeclType(TypeSystemClang &ast, 233 ClangASTImporter &ast_importer, 234 clang::DeclContext *decl_ctx, 235 DWARFDIE die, 236 const char *type_name_cstr) { 237 auto *tag_decl_ctx = clang::dyn_cast<clang::TagDecl>(decl_ctx); 238 if (!tag_decl_ctx) 239 return; 240 241 // If this type was not imported from an external AST, there's nothing to do. 242 CompilerType type = ast.GetTypeForDecl(tag_decl_ctx); 243 if (!type || !ast_importer.CanImport(type)) 244 return; 245 246 auto qual_type = ClangUtil::GetQualType(type); 247 if (!ast_importer.RequireCompleteType(qual_type)) { 248 die.GetDWARF()->GetObjectFile()->GetModule()->ReportError( 249 "Unable to complete the Decl context for DIE '%s' at offset " 250 "0x%8.8x.\nPlease file a bug report.", 251 type_name_cstr ? type_name_cstr : "", die.GetOffset()); 252 // We need to make the type look complete otherwise, we might crash in 253 // Clang when adding children. 254 if (TypeSystemClang::StartTagDeclarationDefinition(type)) 255 TypeSystemClang::CompleteTagDeclarationDefinition(type); 256 } 257 } 258 259 ParsedDWARFTypeAttributes::ParsedDWARFTypeAttributes(const DWARFDIE &die) { 260 DWARFAttributes attributes; 261 size_t num_attributes = die.GetAttributes(attributes); 262 for (size_t i = 0; i < num_attributes; ++i) { 263 dw_attr_t attr = attributes.AttributeAtIndex(i); 264 DWARFFormValue form_value; 265 if (!attributes.ExtractFormValueAtIndex(i, form_value)) 266 continue; 267 switch (attr) { 268 case DW_AT_abstract_origin: 269 abstract_origin = form_value; 270 break; 271 272 case DW_AT_accessibility: 273 accessibility = DW_ACCESS_to_AccessType(form_value.Unsigned()); 274 break; 275 276 case DW_AT_artificial: 277 is_artificial = form_value.Boolean(); 278 break; 279 280 case DW_AT_bit_stride: 281 bit_stride = form_value.Unsigned(); 282 break; 283 284 case DW_AT_byte_size: 285 byte_size = form_value.Unsigned(); 286 break; 287 288 case DW_AT_byte_stride: 289 byte_stride = form_value.Unsigned(); 290 break; 291 292 case DW_AT_calling_convention: 293 calling_convention = form_value.Unsigned(); 294 break; 295 296 case DW_AT_containing_type: 297 containing_type = form_value; 298 break; 299 300 case DW_AT_decl_file: 301 decl.SetFile(die.GetCU()->GetFile(form_value.Unsigned())); 302 break; 303 case DW_AT_decl_line: 304 decl.SetLine(form_value.Unsigned()); 305 break; 306 case DW_AT_decl_column: 307 decl.SetColumn(form_value.Unsigned()); 308 break; 309 310 case DW_AT_declaration: 311 is_forward_declaration = form_value.Boolean(); 312 break; 313 314 case DW_AT_encoding: 315 encoding = form_value.Unsigned(); 316 break; 317 318 case DW_AT_enum_class: 319 is_scoped_enum = form_value.Boolean(); 320 break; 321 322 case DW_AT_explicit: 323 is_explicit = form_value.Boolean(); 324 break; 325 326 case DW_AT_external: 327 if (form_value.Unsigned()) 328 storage = clang::SC_Extern; 329 break; 330 331 case DW_AT_inline: 332 is_inline = form_value.Boolean(); 333 break; 334 335 case DW_AT_linkage_name: 336 case DW_AT_MIPS_linkage_name: 337 mangled_name = form_value.AsCString(); 338 break; 339 340 case DW_AT_name: 341 name.SetCString(form_value.AsCString()); 342 break; 343 344 case DW_AT_object_pointer: 345 object_pointer = form_value.Reference(); 346 break; 347 348 case DW_AT_signature: 349 signature = form_value; 350 break; 351 352 case DW_AT_specification: 353 specification = form_value; 354 break; 355 356 case DW_AT_type: 357 type = form_value; 358 break; 359 360 case DW_AT_virtuality: 361 is_virtual = form_value.Boolean(); 362 break; 363 364 case DW_AT_APPLE_objc_complete_type: 365 is_complete_objc_class = form_value.Signed(); 366 break; 367 368 case DW_AT_APPLE_objc_direct: 369 is_objc_direct_call = true; 370 break; 371 372 case DW_AT_APPLE_runtime_class: 373 class_language = (LanguageType)form_value.Signed(); 374 break; 375 376 case DW_AT_GNU_vector: 377 is_vector = form_value.Boolean(); 378 break; 379 case DW_AT_export_symbols: 380 exports_symbols = form_value.Boolean(); 381 break; 382 } 383 } 384 } 385 386 static std::string GetUnitName(const DWARFDIE &die) { 387 if (DWARFUnit *unit = die.GetCU()) 388 return unit->GetAbsolutePath().GetPath(); 389 return "<missing DWARF unit path>"; 390 } 391 392 TypeSP DWARFASTParserClang::ParseTypeFromDWARF(const SymbolContext &sc, 393 const DWARFDIE &die, 394 bool *type_is_new_ptr) { 395 if (type_is_new_ptr) 396 *type_is_new_ptr = false; 397 398 if (!die) 399 return nullptr; 400 401 Log *log(LogChannelDWARF::GetLogIfAny(DWARF_LOG_TYPE_COMPLETION | 402 DWARF_LOG_LOOKUPS)); 403 404 SymbolFileDWARF *dwarf = die.GetDWARF(); 405 if (log) { 406 DWARFDIE context_die; 407 clang::DeclContext *context = 408 GetClangDeclContextContainingDIE(die, &context_die); 409 410 dwarf->GetObjectFile()->GetModule()->LogMessage( 411 log, 412 "DWARFASTParserClang::ParseTypeFromDWARF " 413 "(die = 0x%8.8x, decl_ctx = %p (die 0x%8.8x)) %s name = '%s')", 414 die.GetOffset(), static_cast<void *>(context), context_die.GetOffset(), 415 die.GetTagAsCString(), die.GetName()); 416 } 417 418 Type *type_ptr = dwarf->GetDIEToType().lookup(die.GetDIE()); 419 if (type_ptr == DIE_IS_BEING_PARSED) 420 return nullptr; 421 if (type_ptr) 422 return type_ptr->shared_from_this(); 423 // Set a bit that lets us know that we are currently parsing this 424 dwarf->GetDIEToType()[die.GetDIE()] = DIE_IS_BEING_PARSED; 425 426 ParsedDWARFTypeAttributes attrs(die); 427 428 if (DWARFDIE signature_die = attrs.signature.Reference()) { 429 if (TypeSP type_sp = 430 ParseTypeFromDWARF(sc, signature_die, type_is_new_ptr)) { 431 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); 432 if (clang::DeclContext *decl_ctx = 433 GetCachedClangDeclContextForDIE(signature_die)) 434 LinkDeclContextToDIE(decl_ctx, die); 435 return type_sp; 436 } 437 return nullptr; 438 } 439 440 if (type_is_new_ptr) 441 *type_is_new_ptr = true; 442 443 const dw_tag_t tag = die.Tag(); 444 445 TypeSP type_sp; 446 447 switch (tag) { 448 case DW_TAG_typedef: 449 case DW_TAG_base_type: 450 case DW_TAG_pointer_type: 451 case DW_TAG_reference_type: 452 case DW_TAG_rvalue_reference_type: 453 case DW_TAG_const_type: 454 case DW_TAG_restrict_type: 455 case DW_TAG_volatile_type: 456 case DW_TAG_atomic_type: 457 case DW_TAG_unspecified_type: { 458 type_sp = ParseTypeModifier(sc, die, attrs); 459 break; 460 } 461 462 case DW_TAG_structure_type: 463 case DW_TAG_union_type: 464 case DW_TAG_class_type: { 465 type_sp = ParseStructureLikeDIE(sc, die, attrs); 466 break; 467 } 468 469 case DW_TAG_enumeration_type: { 470 type_sp = ParseEnum(sc, die, attrs); 471 break; 472 } 473 474 case DW_TAG_inlined_subroutine: 475 case DW_TAG_subprogram: 476 case DW_TAG_subroutine_type: { 477 type_sp = ParseSubroutine(die, attrs); 478 break; 479 } 480 case DW_TAG_array_type: { 481 type_sp = ParseArrayType(die, attrs); 482 break; 483 } 484 case DW_TAG_ptr_to_member_type: { 485 type_sp = ParsePointerToMemberType(die, attrs); 486 break; 487 } 488 default: 489 dwarf->GetObjectFile()->GetModule()->ReportError( 490 "{0x%8.8x}: unhandled type tag 0x%4.4x (%s), please file a bug and " 491 "attach the file at the start of this error message", 492 die.GetOffset(), tag, DW_TAG_value_to_name(tag)); 493 break; 494 } 495 496 // TODO: We should consider making the switch above exhaustive to simplify 497 // control flow in ParseTypeFromDWARF. Then, we could simply replace this 498 // return statement with a call to llvm_unreachable. 499 return UpdateSymbolContextScopeForType(sc, die, type_sp); 500 } 501 502 lldb::TypeSP 503 DWARFASTParserClang::ParseTypeModifier(const SymbolContext &sc, 504 const DWARFDIE &die, 505 ParsedDWARFTypeAttributes &attrs) { 506 Log *log(LogChannelDWARF::GetLogIfAny(DWARF_LOG_TYPE_COMPLETION | 507 DWARF_LOG_LOOKUPS)); 508 SymbolFileDWARF *dwarf = die.GetDWARF(); 509 const dw_tag_t tag = die.Tag(); 510 LanguageType cu_language = SymbolFileDWARF::GetLanguage(*die.GetCU()); 511 Type::ResolveState resolve_state = Type::ResolveState::Unresolved; 512 Type::EncodingDataType encoding_data_type = Type::eEncodingIsUID; 513 TypeSP type_sp; 514 CompilerType clang_type; 515 516 if (tag == DW_TAG_typedef && attrs.type.IsValid()) { 517 // Try to parse a typedef from the (DWARF embedded in the) Clang 518 // module file first as modules can contain typedef'ed 519 // structures that have no names like: 520 // 521 // typedef struct { int a; } Foo; 522 // 523 // In this case we will have a structure with no name and a 524 // typedef named "Foo" that points to this unnamed 525 // structure. The name in the typedef is the only identifier for 526 // the struct, so always try to get typedefs from Clang modules 527 // if possible. 528 // 529 // The type_sp returned will be empty if the typedef doesn't 530 // exist in a module file, so it is cheap to call this function 531 // just to check. 532 // 533 // If we don't do this we end up creating a TypeSP that says 534 // this is a typedef to type 0x123 (the DW_AT_type value would 535 // be 0x123 in the DW_TAG_typedef), and this is the unnamed 536 // structure type. We will have a hard time tracking down an 537 // unnammed structure type in the module debug info, so we make 538 // sure we don't get into this situation by always resolving 539 // typedefs from the module. 540 const DWARFDIE encoding_die = attrs.type.Reference(); 541 542 // First make sure that the die that this is typedef'ed to _is_ 543 // just a declaration (DW_AT_declaration == 1), not a full 544 // definition since template types can't be represented in 545 // modules since only concrete instances of templates are ever 546 // emitted and modules won't contain those 547 if (encoding_die && 548 encoding_die.GetAttributeValueAsUnsigned(DW_AT_declaration, 0) == 1) { 549 type_sp = ParseTypeFromClangModule(sc, die, log); 550 if (type_sp) 551 return type_sp; 552 } 553 } 554 555 DEBUG_PRINTF("0x%8.8" PRIx64 ": %s (\"%s\") type => 0x%8.8lx\n", die.GetID(), 556 DW_TAG_value_to_name(tag), type_name_cstr, 557 encoding_uid.Reference()); 558 559 switch (tag) { 560 default: 561 break; 562 563 case DW_TAG_unspecified_type: 564 if (attrs.name == "nullptr_t" || attrs.name == "decltype(nullptr)") { 565 resolve_state = Type::ResolveState::Full; 566 clang_type = m_ast.GetBasicType(eBasicTypeNullPtr); 567 break; 568 } 569 // Fall through to base type below in case we can handle the type 570 // there... 571 LLVM_FALLTHROUGH; 572 573 case DW_TAG_base_type: 574 resolve_state = Type::ResolveState::Full; 575 clang_type = m_ast.GetBuiltinTypeForDWARFEncodingAndBitSize( 576 attrs.name.GetStringRef(), attrs.encoding, 577 attrs.byte_size.getValueOr(0) * 8); 578 break; 579 580 case DW_TAG_pointer_type: 581 encoding_data_type = Type::eEncodingIsPointerUID; 582 break; 583 case DW_TAG_reference_type: 584 encoding_data_type = Type::eEncodingIsLValueReferenceUID; 585 break; 586 case DW_TAG_rvalue_reference_type: 587 encoding_data_type = Type::eEncodingIsRValueReferenceUID; 588 break; 589 case DW_TAG_typedef: 590 encoding_data_type = Type::eEncodingIsTypedefUID; 591 break; 592 case DW_TAG_const_type: 593 encoding_data_type = Type::eEncodingIsConstUID; 594 break; 595 case DW_TAG_restrict_type: 596 encoding_data_type = Type::eEncodingIsRestrictUID; 597 break; 598 case DW_TAG_volatile_type: 599 encoding_data_type = Type::eEncodingIsVolatileUID; 600 break; 601 case DW_TAG_atomic_type: 602 encoding_data_type = Type::eEncodingIsAtomicUID; 603 break; 604 } 605 606 if (!clang_type && (encoding_data_type == Type::eEncodingIsPointerUID || 607 encoding_data_type == Type::eEncodingIsTypedefUID)) { 608 if (tag == DW_TAG_pointer_type) { 609 DWARFDIE target_die = die.GetReferencedDIE(DW_AT_type); 610 611 if (target_die.GetAttributeValueAsUnsigned(DW_AT_APPLE_block, 0)) { 612 // Blocks have a __FuncPtr inside them which is a pointer to a 613 // function of the proper type. 614 615 for (DWARFDIE child_die = target_die.GetFirstChild(); 616 child_die.IsValid(); child_die = child_die.GetSibling()) { 617 if (!strcmp(child_die.GetAttributeValueAsString(DW_AT_name, ""), 618 "__FuncPtr")) { 619 DWARFDIE function_pointer_type = 620 child_die.GetReferencedDIE(DW_AT_type); 621 622 if (function_pointer_type) { 623 DWARFDIE function_type = 624 function_pointer_type.GetReferencedDIE(DW_AT_type); 625 626 bool function_type_is_new_pointer; 627 TypeSP lldb_function_type_sp = ParseTypeFromDWARF( 628 sc, function_type, &function_type_is_new_pointer); 629 630 if (lldb_function_type_sp) { 631 clang_type = m_ast.CreateBlockPointerType( 632 lldb_function_type_sp->GetForwardCompilerType()); 633 encoding_data_type = Type::eEncodingIsUID; 634 attrs.type.Clear(); 635 resolve_state = Type::ResolveState::Full; 636 } 637 } 638 639 break; 640 } 641 } 642 } 643 } 644 645 if (cu_language == eLanguageTypeObjC || 646 cu_language == eLanguageTypeObjC_plus_plus) { 647 if (attrs.name) { 648 if (attrs.name == "id") { 649 if (log) 650 dwarf->GetObjectFile()->GetModule()->LogMessage( 651 log, 652 "SymbolFileDWARF::ParseType (die = 0x%8.8x) %s '%s' " 653 "is Objective-C 'id' built-in type.", 654 die.GetOffset(), die.GetTagAsCString(), die.GetName()); 655 clang_type = m_ast.GetBasicType(eBasicTypeObjCID); 656 encoding_data_type = Type::eEncodingIsUID; 657 attrs.type.Clear(); 658 resolve_state = Type::ResolveState::Full; 659 } else if (attrs.name == "Class") { 660 if (log) 661 dwarf->GetObjectFile()->GetModule()->LogMessage( 662 log, 663 "SymbolFileDWARF::ParseType (die = 0x%8.8x) %s '%s' " 664 "is Objective-C 'Class' built-in type.", 665 die.GetOffset(), die.GetTagAsCString(), die.GetName()); 666 clang_type = m_ast.GetBasicType(eBasicTypeObjCClass); 667 encoding_data_type = Type::eEncodingIsUID; 668 attrs.type.Clear(); 669 resolve_state = Type::ResolveState::Full; 670 } else if (attrs.name == "SEL") { 671 if (log) 672 dwarf->GetObjectFile()->GetModule()->LogMessage( 673 log, 674 "SymbolFileDWARF::ParseType (die = 0x%8.8x) %s '%s' " 675 "is Objective-C 'selector' built-in type.", 676 die.GetOffset(), die.GetTagAsCString(), die.GetName()); 677 clang_type = m_ast.GetBasicType(eBasicTypeObjCSel); 678 encoding_data_type = Type::eEncodingIsUID; 679 attrs.type.Clear(); 680 resolve_state = Type::ResolveState::Full; 681 } 682 } else if (encoding_data_type == Type::eEncodingIsPointerUID && 683 attrs.type.IsValid()) { 684 // Clang sometimes erroneously emits id as objc_object*. In that 685 // case we fix up the type to "id". 686 687 const DWARFDIE encoding_die = attrs.type.Reference(); 688 689 if (encoding_die && encoding_die.Tag() == DW_TAG_structure_type) { 690 llvm::StringRef struct_name = encoding_die.GetName(); 691 if (struct_name == "objc_object") { 692 if (log) 693 dwarf->GetObjectFile()->GetModule()->LogMessage( 694 log, 695 "SymbolFileDWARF::ParseType (die = 0x%8.8x) %s " 696 "'%s' is 'objc_object*', which we overrode to " 697 "'id'.", 698 die.GetOffset(), die.GetTagAsCString(), die.GetName()); 699 clang_type = m_ast.GetBasicType(eBasicTypeObjCID); 700 encoding_data_type = Type::eEncodingIsUID; 701 attrs.type.Clear(); 702 resolve_state = Type::ResolveState::Full; 703 } 704 } 705 } 706 } 707 } 708 709 type_sp = std::make_shared<Type>( 710 die.GetID(), dwarf, attrs.name, attrs.byte_size, nullptr, 711 dwarf->GetUID(attrs.type.Reference()), encoding_data_type, &attrs.decl, 712 clang_type, resolve_state, TypePayloadClang(GetOwningClangModule(die))); 713 714 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); 715 return type_sp; 716 } 717 718 TypeSP DWARFASTParserClang::ParseEnum(const SymbolContext &sc, 719 const DWARFDIE &die, 720 ParsedDWARFTypeAttributes &attrs) { 721 Log *log(LogChannelDWARF::GetLogIfAny(DWARF_LOG_TYPE_COMPLETION | 722 DWARF_LOG_LOOKUPS)); 723 SymbolFileDWARF *dwarf = die.GetDWARF(); 724 const dw_tag_t tag = die.Tag(); 725 TypeSP type_sp; 726 727 if (attrs.is_forward_declaration) { 728 type_sp = ParseTypeFromClangModule(sc, die, log); 729 if (type_sp) 730 return type_sp; 731 732 DWARFDeclContext die_decl_ctx = SymbolFileDWARF::GetDWARFDeclContext(die); 733 734 type_sp = dwarf->FindDefinitionTypeForDWARFDeclContext(die_decl_ctx); 735 736 if (!type_sp) { 737 SymbolFileDWARFDebugMap *debug_map_symfile = dwarf->GetDebugMapSymfile(); 738 if (debug_map_symfile) { 739 // We weren't able to find a full declaration in this DWARF, 740 // see if we have a declaration anywhere else... 741 type_sp = debug_map_symfile->FindDefinitionTypeForDWARFDeclContext( 742 die_decl_ctx); 743 } 744 } 745 746 if (type_sp) { 747 if (log) { 748 dwarf->GetObjectFile()->GetModule()->LogMessage( 749 log, 750 "SymbolFileDWARF(%p) - 0x%8.8x: %s type \"%s\" is a " 751 "forward declaration, complete type is 0x%8.8" PRIx64, 752 static_cast<void *>(this), die.GetOffset(), 753 DW_TAG_value_to_name(tag), attrs.name.GetCString(), 754 type_sp->GetID()); 755 } 756 757 // We found a real definition for this type elsewhere so lets use 758 // it and cache the fact that we found a complete type for this 759 // die 760 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); 761 clang::DeclContext *defn_decl_ctx = 762 GetCachedClangDeclContextForDIE(dwarf->GetDIE(type_sp->GetID())); 763 if (defn_decl_ctx) 764 LinkDeclContextToDIE(defn_decl_ctx, die); 765 return type_sp; 766 } 767 } 768 DEBUG_PRINTF("0x%8.8" PRIx64 ": %s (\"%s\")\n", die.GetID(), 769 DW_TAG_value_to_name(tag), type_name_cstr); 770 771 CompilerType enumerator_clang_type; 772 CompilerType clang_type; 773 clang_type.SetCompilerType( 774 &m_ast, dwarf->GetForwardDeclDieToClangType().lookup(die.GetDIE())); 775 if (!clang_type) { 776 if (attrs.type.IsValid()) { 777 Type *enumerator_type = 778 dwarf->ResolveTypeUID(attrs.type.Reference(), true); 779 if (enumerator_type) 780 enumerator_clang_type = enumerator_type->GetFullCompilerType(); 781 } 782 783 if (!enumerator_clang_type) { 784 if (attrs.byte_size) { 785 enumerator_clang_type = m_ast.GetBuiltinTypeForDWARFEncodingAndBitSize( 786 "", DW_ATE_signed, *attrs.byte_size * 8); 787 } else { 788 enumerator_clang_type = m_ast.GetBasicType(eBasicTypeInt); 789 } 790 } 791 792 clang_type = m_ast.CreateEnumerationType( 793 attrs.name.GetCString(), GetClangDeclContextContainingDIE(die, nullptr), 794 GetOwningClangModule(die), attrs.decl, enumerator_clang_type, 795 attrs.is_scoped_enum); 796 } else { 797 enumerator_clang_type = m_ast.GetEnumerationIntegerType(clang_type); 798 } 799 800 LinkDeclContextToDIE(TypeSystemClang::GetDeclContextForType(clang_type), die); 801 802 type_sp = std::make_shared<Type>( 803 die.GetID(), dwarf, attrs.name, attrs.byte_size, nullptr, 804 dwarf->GetUID(attrs.type.Reference()), Type::eEncodingIsUID, &attrs.decl, 805 clang_type, Type::ResolveState::Forward, 806 TypePayloadClang(GetOwningClangModule(die))); 807 808 if (TypeSystemClang::StartTagDeclarationDefinition(clang_type)) { 809 if (die.HasChildren()) { 810 bool is_signed = false; 811 enumerator_clang_type.IsIntegerType(is_signed); 812 ParseChildEnumerators(clang_type, is_signed, 813 type_sp->GetByteSize().getValueOr(0), die); 814 } 815 TypeSystemClang::CompleteTagDeclarationDefinition(clang_type); 816 } else { 817 dwarf->GetObjectFile()->GetModule()->ReportError( 818 "DWARF DIE at 0x%8.8x named \"%s\" was not able to start its " 819 "definition.\nPlease file a bug and attach the file at the " 820 "start of this error message", 821 die.GetOffset(), attrs.name.GetCString()); 822 } 823 return type_sp; 824 } 825 826 TypeSP DWARFASTParserClang::ParseSubroutine(const DWARFDIE &die, 827 ParsedDWARFTypeAttributes &attrs) { 828 Log *log(LogChannelDWARF::GetLogIfAny(DWARF_LOG_TYPE_COMPLETION | 829 DWARF_LOG_LOOKUPS)); 830 831 SymbolFileDWARF *dwarf = die.GetDWARF(); 832 const dw_tag_t tag = die.Tag(); 833 834 bool is_variadic = false; 835 bool is_static = false; 836 bool has_template_params = false; 837 838 unsigned type_quals = 0; 839 840 std::string object_pointer_name; 841 if (attrs.object_pointer) { 842 const char *object_pointer_name_cstr = attrs.object_pointer.GetName(); 843 if (object_pointer_name_cstr) 844 object_pointer_name = object_pointer_name_cstr; 845 } 846 847 DEBUG_PRINTF("0x%8.8" PRIx64 ": %s (\"%s\")\n", die.GetID(), 848 DW_TAG_value_to_name(tag), type_name_cstr); 849 850 CompilerType return_clang_type; 851 Type *func_type = NULL; 852 853 if (attrs.type.IsValid()) 854 func_type = dwarf->ResolveTypeUID(attrs.type.Reference(), true); 855 856 if (func_type) 857 return_clang_type = func_type->GetForwardCompilerType(); 858 else 859 return_clang_type = m_ast.GetBasicType(eBasicTypeVoid); 860 861 std::vector<CompilerType> function_param_types; 862 std::vector<clang::ParmVarDecl *> function_param_decls; 863 864 // Parse the function children for the parameters 865 866 DWARFDIE decl_ctx_die; 867 clang::DeclContext *containing_decl_ctx = 868 GetClangDeclContextContainingDIE(die, &decl_ctx_die); 869 const clang::Decl::Kind containing_decl_kind = 870 containing_decl_ctx->getDeclKind(); 871 872 bool is_cxx_method = DeclKindIsCXXClass(containing_decl_kind); 873 // Start off static. This will be set to false in 874 // ParseChildParameters(...) if we find a "this" parameters as the 875 // first parameter 876 if (is_cxx_method) { 877 is_static = true; 878 } 879 880 if (die.HasChildren()) { 881 bool skip_artificial = true; 882 ParseChildParameters(containing_decl_ctx, die, skip_artificial, is_static, 883 is_variadic, has_template_params, 884 function_param_types, function_param_decls, 885 type_quals); 886 } 887 888 bool ignore_containing_context = false; 889 // Check for templatized class member functions. If we had any 890 // DW_TAG_template_type_parameter or DW_TAG_template_value_parameter 891 // the DW_TAG_subprogram DIE, then we can't let this become a method in 892 // a class. Why? Because templatized functions are only emitted if one 893 // of the templatized methods is used in the current compile unit and 894 // we will end up with classes that may or may not include these member 895 // functions and this means one class won't match another class 896 // definition and it affects our ability to use a class in the clang 897 // expression parser. So for the greater good, we currently must not 898 // allow any template member functions in a class definition. 899 if (is_cxx_method && has_template_params) { 900 ignore_containing_context = true; 901 is_cxx_method = false; 902 } 903 904 // clang_type will get the function prototype clang type after this 905 // call 906 CompilerType clang_type = m_ast.CreateFunctionType( 907 return_clang_type, function_param_types.data(), 908 function_param_types.size(), is_variadic, type_quals); 909 910 if (attrs.name) { 911 bool type_handled = false; 912 if (tag == DW_TAG_subprogram || tag == DW_TAG_inlined_subroutine) { 913 ObjCLanguage::MethodName objc_method(attrs.name.GetStringRef(), true); 914 if (objc_method.IsValid(true)) { 915 CompilerType class_opaque_type; 916 ConstString class_name(objc_method.GetClassName()); 917 if (class_name) { 918 TypeSP complete_objc_class_type_sp( 919 dwarf->FindCompleteObjCDefinitionTypeForDIE(DWARFDIE(), 920 class_name, false)); 921 922 if (complete_objc_class_type_sp) { 923 CompilerType type_clang_forward_type = 924 complete_objc_class_type_sp->GetForwardCompilerType(); 925 if (TypeSystemClang::IsObjCObjectOrInterfaceType( 926 type_clang_forward_type)) 927 class_opaque_type = type_clang_forward_type; 928 } 929 } 930 931 if (class_opaque_type) { 932 // If accessibility isn't set to anything valid, assume public 933 // for now... 934 if (attrs.accessibility == eAccessNone) 935 attrs.accessibility = eAccessPublic; 936 937 clang::ObjCMethodDecl *objc_method_decl = 938 m_ast.AddMethodToObjCObjectType( 939 class_opaque_type, attrs.name.GetCString(), clang_type, 940 attrs.accessibility, attrs.is_artificial, is_variadic, 941 attrs.is_objc_direct_call); 942 type_handled = objc_method_decl != NULL; 943 if (type_handled) { 944 LinkDeclContextToDIE(objc_method_decl, die); 945 m_ast.SetMetadataAsUserID(objc_method_decl, die.GetID()); 946 } else { 947 dwarf->GetObjectFile()->GetModule()->ReportError( 948 "{0x%8.8x}: invalid Objective-C method 0x%4.4x (%s), " 949 "please file a bug and attach the file at the start of " 950 "this error message", 951 die.GetOffset(), tag, DW_TAG_value_to_name(tag)); 952 } 953 } 954 } else if (is_cxx_method) { 955 // Look at the parent of this DIE and see if is is a class or 956 // struct and see if this is actually a C++ method 957 Type *class_type = dwarf->ResolveType(decl_ctx_die); 958 if (class_type) { 959 bool alternate_defn = false; 960 if (class_type->GetID() != decl_ctx_die.GetID() || 961 IsClangModuleFwdDecl(decl_ctx_die)) { 962 alternate_defn = true; 963 964 // We uniqued the parent class of this function to another 965 // class so we now need to associate all dies under 966 // "decl_ctx_die" to DIEs in the DIE for "class_type"... 967 DWARFDIE class_type_die = dwarf->GetDIE(class_type->GetID()); 968 969 if (class_type_die) { 970 std::vector<DWARFDIE> failures; 971 972 CopyUniqueClassMethodTypes(decl_ctx_die, class_type_die, 973 class_type, failures); 974 975 // FIXME do something with these failures that's 976 // smarter than just dropping them on the ground. 977 // Unfortunately classes don't like having stuff added 978 // to them after their definitions are complete... 979 980 Type *type_ptr = dwarf->GetDIEToType()[die.GetDIE()]; 981 if (type_ptr && type_ptr != DIE_IS_BEING_PARSED) { 982 return type_ptr->shared_from_this(); 983 } 984 } 985 } 986 987 if (attrs.specification.IsValid()) { 988 // We have a specification which we are going to base our 989 // function prototype off of, so we need this type to be 990 // completed so that the m_die_to_decl_ctx for the method in 991 // the specification has a valid clang decl context. 992 class_type->GetForwardCompilerType(); 993 // If we have a specification, then the function type should 994 // have been made with the specification and not with this 995 // die. 996 DWARFDIE spec_die = attrs.specification.Reference(); 997 clang::DeclContext *spec_clang_decl_ctx = 998 GetClangDeclContextForDIE(spec_die); 999 if (spec_clang_decl_ctx) { 1000 LinkDeclContextToDIE(spec_clang_decl_ctx, die); 1001 } else { 1002 dwarf->GetObjectFile()->GetModule()->ReportWarning( 1003 "0x%8.8" PRIx64 ": DW_AT_specification(0x%8.8x" 1004 ") has no decl\n", 1005 die.GetID(), spec_die.GetOffset()); 1006 } 1007 type_handled = true; 1008 } else if (attrs.abstract_origin.IsValid()) { 1009 // We have a specification which we are going to base our 1010 // function prototype off of, so we need this type to be 1011 // completed so that the m_die_to_decl_ctx for the method in 1012 // the abstract origin has a valid clang decl context. 1013 class_type->GetForwardCompilerType(); 1014 1015 DWARFDIE abs_die = attrs.abstract_origin.Reference(); 1016 clang::DeclContext *abs_clang_decl_ctx = 1017 GetClangDeclContextForDIE(abs_die); 1018 if (abs_clang_decl_ctx) { 1019 LinkDeclContextToDIE(abs_clang_decl_ctx, die); 1020 } else { 1021 dwarf->GetObjectFile()->GetModule()->ReportWarning( 1022 "0x%8.8" PRIx64 ": DW_AT_abstract_origin(0x%8.8x" 1023 ") has no decl\n", 1024 die.GetID(), abs_die.GetOffset()); 1025 } 1026 type_handled = true; 1027 } else { 1028 CompilerType class_opaque_type = 1029 class_type->GetForwardCompilerType(); 1030 if (TypeSystemClang::IsCXXClassType(class_opaque_type)) { 1031 if (class_opaque_type.IsBeingDefined() || alternate_defn) { 1032 if (!is_static && !die.HasChildren()) { 1033 // We have a C++ member function with no children (this 1034 // pointer!) and clang will get mad if we try and make 1035 // a function that isn't well formed in the DWARF, so 1036 // we will just skip it... 1037 type_handled = true; 1038 } else { 1039 bool add_method = true; 1040 if (alternate_defn) { 1041 // If an alternate definition for the class exists, 1042 // then add the method only if an equivalent is not 1043 // already present. 1044 clang::CXXRecordDecl *record_decl = 1045 m_ast.GetAsCXXRecordDecl( 1046 class_opaque_type.GetOpaqueQualType()); 1047 if (record_decl) { 1048 for (auto method_iter = record_decl->method_begin(); 1049 method_iter != record_decl->method_end(); 1050 method_iter++) { 1051 clang::CXXMethodDecl *method_decl = *method_iter; 1052 if (method_decl->getNameInfo().getAsString() == 1053 attrs.name.GetStringRef()) { 1054 if (method_decl->getType() == 1055 ClangUtil::GetQualType(clang_type)) { 1056 add_method = false; 1057 LinkDeclContextToDIE(method_decl, die); 1058 type_handled = true; 1059 1060 break; 1061 } 1062 } 1063 } 1064 } 1065 } 1066 1067 if (add_method) { 1068 llvm::PrettyStackTraceFormat stack_trace( 1069 "SymbolFileDWARF::ParseType() is adding a method " 1070 "%s to class %s in DIE 0x%8.8" PRIx64 " from %s", 1071 attrs.name.GetCString(), 1072 class_type->GetName().GetCString(), die.GetID(), 1073 dwarf->GetObjectFile() 1074 ->GetFileSpec() 1075 .GetPath() 1076 .c_str()); 1077 1078 const bool is_attr_used = false; 1079 // Neither GCC 4.2 nor clang++ currently set a valid 1080 // accessibility in the DWARF for C++ methods... 1081 // Default to public for now... 1082 if (attrs.accessibility == eAccessNone) 1083 attrs.accessibility = eAccessPublic; 1084 1085 clang::CXXMethodDecl *cxx_method_decl = 1086 m_ast.AddMethodToCXXRecordType( 1087 class_opaque_type.GetOpaqueQualType(), 1088 attrs.name.GetCString(), attrs.mangled_name, 1089 clang_type, attrs.accessibility, attrs.is_virtual, 1090 is_static, attrs.is_inline, attrs.is_explicit, 1091 is_attr_used, attrs.is_artificial); 1092 1093 type_handled = cxx_method_decl != NULL; 1094 // Artificial methods are always handled even when we 1095 // don't create a new declaration for them. 1096 type_handled |= attrs.is_artificial; 1097 1098 if (cxx_method_decl) { 1099 LinkDeclContextToDIE(cxx_method_decl, die); 1100 1101 ClangASTMetadata metadata; 1102 metadata.SetUserID(die.GetID()); 1103 1104 if (!object_pointer_name.empty()) { 1105 metadata.SetObjectPtrName( 1106 object_pointer_name.c_str()); 1107 LLDB_LOGF(log, 1108 "Setting object pointer name: %s on method " 1109 "object %p.\n", 1110 object_pointer_name.c_str(), 1111 static_cast<void *>(cxx_method_decl)); 1112 } 1113 m_ast.SetMetadata(cxx_method_decl, metadata); 1114 } else { 1115 ignore_containing_context = true; 1116 } 1117 } 1118 } 1119 } else { 1120 // We were asked to parse the type for a method in a 1121 // class, yet the class hasn't been asked to complete 1122 // itself through the clang::ExternalASTSource protocol, 1123 // so we need to just have the class complete itself and 1124 // do things the right way, then our 1125 // DIE should then have an entry in the 1126 // dwarf->GetDIEToType() map. First 1127 // we need to modify the dwarf->GetDIEToType() so it 1128 // doesn't think we are trying to parse this DIE 1129 // anymore... 1130 dwarf->GetDIEToType()[die.GetDIE()] = NULL; 1131 1132 // Now we get the full type to force our class type to 1133 // complete itself using the clang::ExternalASTSource 1134 // protocol which will parse all base classes and all 1135 // methods (including the method for this DIE). 1136 class_type->GetFullCompilerType(); 1137 1138 // The type for this DIE should have been filled in the 1139 // function call above 1140 Type *type_ptr = dwarf->GetDIEToType()[die.GetDIE()]; 1141 if (type_ptr && type_ptr != DIE_IS_BEING_PARSED) { 1142 return type_ptr->shared_from_this(); 1143 } 1144 1145 // FIXME This is fixing some even uglier behavior but we 1146 // really need to 1147 // uniq the methods of each class as well as the class 1148 // itself. <rdar://problem/11240464> 1149 type_handled = true; 1150 } 1151 } 1152 } 1153 } 1154 } 1155 } 1156 1157 if (!type_handled) { 1158 clang::FunctionDecl *function_decl = nullptr; 1159 clang::FunctionDecl *template_function_decl = nullptr; 1160 1161 if (attrs.abstract_origin.IsValid()) { 1162 DWARFDIE abs_die = attrs.abstract_origin.Reference(); 1163 1164 if (dwarf->ResolveType(abs_die)) { 1165 function_decl = llvm::dyn_cast_or_null<clang::FunctionDecl>( 1166 GetCachedClangDeclContextForDIE(abs_die)); 1167 1168 if (function_decl) { 1169 LinkDeclContextToDIE(function_decl, die); 1170 } 1171 } 1172 } 1173 1174 if (!function_decl) { 1175 const char *name = attrs.name.GetCString(); 1176 1177 // We currently generate function templates with template parameters in 1178 // their name. In order to get closer to the AST that clang generates 1179 // we want to strip these from the name when creating the AST. 1180 if (attrs.mangled_name) { 1181 llvm::ItaniumPartialDemangler D; 1182 if (!D.partialDemangle(attrs.mangled_name)) 1183 name = D.getFunctionBaseName(nullptr, nullptr); 1184 } 1185 1186 // We just have a function that isn't part of a class 1187 function_decl = m_ast.CreateFunctionDeclaration( 1188 ignore_containing_context ? m_ast.GetTranslationUnitDecl() 1189 : containing_decl_ctx, 1190 GetOwningClangModule(die), name, clang_type, attrs.storage, 1191 attrs.is_inline); 1192 1193 if (has_template_params) { 1194 TypeSystemClang::TemplateParameterInfos template_param_infos; 1195 ParseTemplateParameterInfos(die, template_param_infos); 1196 template_function_decl = m_ast.CreateFunctionDeclaration( 1197 ignore_containing_context ? m_ast.GetTranslationUnitDecl() 1198 : containing_decl_ctx, 1199 GetOwningClangModule(die), attrs.name.GetCString(), clang_type, 1200 attrs.storage, attrs.is_inline); 1201 clang::FunctionTemplateDecl *func_template_decl = 1202 m_ast.CreateFunctionTemplateDecl( 1203 containing_decl_ctx, GetOwningClangModule(die), 1204 template_function_decl, name, template_param_infos); 1205 m_ast.CreateFunctionTemplateSpecializationInfo( 1206 template_function_decl, func_template_decl, template_param_infos); 1207 } 1208 1209 lldbassert(function_decl); 1210 1211 if (function_decl) { 1212 LinkDeclContextToDIE(function_decl, die); 1213 1214 if (!function_param_decls.empty()) { 1215 m_ast.SetFunctionParameters(function_decl, 1216 &function_param_decls.front(), 1217 function_param_decls.size()); 1218 if (template_function_decl) 1219 m_ast.SetFunctionParameters(template_function_decl, 1220 &function_param_decls.front(), 1221 function_param_decls.size()); 1222 } 1223 1224 ClangASTMetadata metadata; 1225 metadata.SetUserID(die.GetID()); 1226 1227 if (!object_pointer_name.empty()) { 1228 metadata.SetObjectPtrName(object_pointer_name.c_str()); 1229 LLDB_LOGF(log, 1230 "Setting object pointer name: %s on function " 1231 "object %p.", 1232 object_pointer_name.c_str(), 1233 static_cast<void *>(function_decl)); 1234 } 1235 m_ast.SetMetadata(function_decl, metadata); 1236 } 1237 } 1238 } 1239 } 1240 return std::make_shared<Type>( 1241 die.GetID(), dwarf, attrs.name, llvm::None, nullptr, LLDB_INVALID_UID, 1242 Type::eEncodingIsUID, &attrs.decl, clang_type, Type::ResolveState::Full); 1243 } 1244 1245 TypeSP DWARFASTParserClang::ParseArrayType(const DWARFDIE &die, 1246 ParsedDWARFTypeAttributes &attrs) { 1247 SymbolFileDWARF *dwarf = die.GetDWARF(); 1248 1249 DEBUG_PRINTF("0x%8.8" PRIx64 ": %s (\"%s\")\n", die.GetID(), 1250 DW_TAG_value_to_name(tag), type_name_cstr); 1251 1252 DWARFDIE type_die = attrs.type.Reference(); 1253 Type *element_type = dwarf->ResolveTypeUID(type_die, true); 1254 1255 if (!element_type) 1256 return nullptr; 1257 1258 llvm::Optional<SymbolFile::ArrayInfo> array_info = ParseChildArrayInfo(die); 1259 if (array_info) { 1260 attrs.byte_stride = array_info->byte_stride; 1261 attrs.bit_stride = array_info->bit_stride; 1262 } 1263 if (attrs.byte_stride == 0 && attrs.bit_stride == 0) 1264 attrs.byte_stride = element_type->GetByteSize().getValueOr(0); 1265 CompilerType array_element_type = element_type->GetForwardCompilerType(); 1266 CompleteType(array_element_type); 1267 1268 uint64_t array_element_bit_stride = 1269 attrs.byte_stride * 8 + attrs.bit_stride; 1270 CompilerType clang_type; 1271 if (array_info && array_info->element_orders.size() > 0) { 1272 uint64_t num_elements = 0; 1273 auto end = array_info->element_orders.rend(); 1274 for (auto pos = array_info->element_orders.rbegin(); pos != end; ++pos) { 1275 num_elements = *pos; 1276 clang_type = m_ast.CreateArrayType(array_element_type, num_elements, 1277 attrs.is_vector); 1278 array_element_type = clang_type; 1279 array_element_bit_stride = num_elements 1280 ? array_element_bit_stride * num_elements 1281 : array_element_bit_stride; 1282 } 1283 } else { 1284 clang_type = 1285 m_ast.CreateArrayType(array_element_type, 0, attrs.is_vector); 1286 } 1287 ConstString empty_name; 1288 TypeSP type_sp = std::make_shared<Type>( 1289 die.GetID(), dwarf, empty_name, array_element_bit_stride / 8, nullptr, 1290 dwarf->GetUID(type_die), Type::eEncodingIsUID, &attrs.decl, clang_type, 1291 Type::ResolveState::Full); 1292 type_sp->SetEncodingType(element_type); 1293 const clang::Type *type = ClangUtil::GetQualType(clang_type).getTypePtr(); 1294 m_ast.SetMetadataAsUserID(type, die.GetID()); 1295 return type_sp; 1296 } 1297 1298 TypeSP DWARFASTParserClang::ParsePointerToMemberType( 1299 const DWARFDIE &die, const ParsedDWARFTypeAttributes &attrs) { 1300 SymbolFileDWARF *dwarf = die.GetDWARF(); 1301 Type *pointee_type = dwarf->ResolveTypeUID(attrs.type.Reference(), true); 1302 Type *class_type = 1303 dwarf->ResolveTypeUID(attrs.containing_type.Reference(), true); 1304 1305 CompilerType pointee_clang_type = pointee_type->GetForwardCompilerType(); 1306 CompilerType class_clang_type = class_type->GetLayoutCompilerType(); 1307 1308 CompilerType clang_type = TypeSystemClang::CreateMemberPointerType( 1309 class_clang_type, pointee_clang_type); 1310 1311 if (llvm::Optional<uint64_t> clang_type_size = 1312 clang_type.GetByteSize(nullptr)) { 1313 return std::make_shared<Type>(die.GetID(), dwarf, attrs.name, 1314 *clang_type_size, nullptr, LLDB_INVALID_UID, 1315 Type::eEncodingIsUID, nullptr, clang_type, 1316 Type::ResolveState::Forward); 1317 } 1318 return nullptr; 1319 } 1320 1321 void DWARFASTParserClang::CompleteType(CompilerType type) { 1322 // Technically, enums can be incomplete too, but we don't handle those as they 1323 // are emitted even under -flimit-debug-info. 1324 if (!TypeSystemClang::IsCXXClassType(type)) 1325 return; 1326 1327 if (type.GetCompleteType()) 1328 return; 1329 1330 // No complete definition in this module. Mark the class as complete to 1331 // satisfy local ast invariants, but make a note of the fact that 1332 // it is not _really_ complete so we can later search for a definition in a 1333 // different module. 1334 // Since we provide layout assistance, layouts of types containing this class 1335 // will be correct even if we are not able to find the definition elsewhere. 1336 bool started = TypeSystemClang::StartTagDeclarationDefinition(type); 1337 lldbassert(started && "Unable to start a class type definition."); 1338 TypeSystemClang::CompleteTagDeclarationDefinition(type); 1339 const clang::TagDecl *td = ClangUtil::GetAsTagDecl(type); 1340 m_ast.GetMetadata(td)->SetIsForcefullyCompleted(); 1341 } 1342 1343 TypeSP DWARFASTParserClang::UpdateSymbolContextScopeForType( 1344 const SymbolContext &sc, const DWARFDIE &die, TypeSP type_sp) { 1345 if (!type_sp) 1346 return type_sp; 1347 1348 SymbolFileDWARF *dwarf = die.GetDWARF(); 1349 TypeList &type_list = dwarf->GetTypeList(); 1350 DWARFDIE sc_parent_die = SymbolFileDWARF::GetParentSymbolContextDIE(die); 1351 dw_tag_t sc_parent_tag = sc_parent_die.Tag(); 1352 1353 SymbolContextScope *symbol_context_scope = nullptr; 1354 if (sc_parent_tag == DW_TAG_compile_unit || 1355 sc_parent_tag == DW_TAG_partial_unit) { 1356 symbol_context_scope = sc.comp_unit; 1357 } else if (sc.function != nullptr && sc_parent_die) { 1358 symbol_context_scope = 1359 sc.function->GetBlock(true).FindBlockByID(sc_parent_die.GetID()); 1360 if (symbol_context_scope == nullptr) 1361 symbol_context_scope = sc.function; 1362 } else { 1363 symbol_context_scope = sc.module_sp.get(); 1364 } 1365 1366 if (symbol_context_scope != nullptr) 1367 type_sp->SetSymbolContextScope(symbol_context_scope); 1368 1369 // We are ready to put this type into the uniqued list up at the module 1370 // level. 1371 type_list.Insert(type_sp); 1372 1373 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); 1374 return type_sp; 1375 } 1376 1377 TypeSP 1378 DWARFASTParserClang::ParseStructureLikeDIE(const SymbolContext &sc, 1379 const DWARFDIE &die, 1380 ParsedDWARFTypeAttributes &attrs) { 1381 TypeSP type_sp; 1382 CompilerType clang_type; 1383 const dw_tag_t tag = die.Tag(); 1384 SymbolFileDWARF *dwarf = die.GetDWARF(); 1385 LanguageType cu_language = SymbolFileDWARF::GetLanguage(*die.GetCU()); 1386 Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_TYPE_COMPLETION | 1387 DWARF_LOG_LOOKUPS); 1388 1389 // UniqueDWARFASTType is large, so don't create a local variables on the 1390 // stack, put it on the heap. This function is often called recursively and 1391 // clang isn't good at sharing the stack space for variables in different 1392 // blocks. 1393 auto unique_ast_entry_up = std::make_unique<UniqueDWARFASTType>(); 1394 1395 ConstString unique_typename(attrs.name); 1396 Declaration unique_decl(attrs.decl); 1397 1398 if (attrs.name) { 1399 if (Language::LanguageIsCPlusPlus(cu_language)) { 1400 // For C++, we rely solely upon the one definition rule that says 1401 // only one thing can exist at a given decl context. We ignore the 1402 // file and line that things are declared on. 1403 std::string qualified_name; 1404 if (die.GetQualifiedName(qualified_name)) 1405 unique_typename = ConstString(qualified_name); 1406 unique_decl.Clear(); 1407 } 1408 1409 if (dwarf->GetUniqueDWARFASTTypeMap().Find( 1410 unique_typename, die, unique_decl, attrs.byte_size.getValueOr(-1), 1411 *unique_ast_entry_up)) { 1412 type_sp = unique_ast_entry_up->m_type_sp; 1413 if (type_sp) { 1414 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); 1415 LinkDeclContextToDIE( 1416 GetCachedClangDeclContextForDIE(unique_ast_entry_up->m_die), die); 1417 return type_sp; 1418 } 1419 } 1420 } 1421 1422 DEBUG_PRINTF("0x%8.8" PRIx64 ": %s (\"%s\")\n", die.GetID(), 1423 DW_TAG_value_to_name(tag), type_name_cstr); 1424 1425 int tag_decl_kind = -1; 1426 AccessType default_accessibility = eAccessNone; 1427 if (tag == DW_TAG_structure_type) { 1428 tag_decl_kind = clang::TTK_Struct; 1429 default_accessibility = eAccessPublic; 1430 } else if (tag == DW_TAG_union_type) { 1431 tag_decl_kind = clang::TTK_Union; 1432 default_accessibility = eAccessPublic; 1433 } else if (tag == DW_TAG_class_type) { 1434 tag_decl_kind = clang::TTK_Class; 1435 default_accessibility = eAccessPrivate; 1436 } 1437 1438 if (attrs.byte_size && *attrs.byte_size == 0 && attrs.name && 1439 !die.HasChildren() && cu_language == eLanguageTypeObjC) { 1440 // Work around an issue with clang at the moment where forward 1441 // declarations for objective C classes are emitted as: 1442 // DW_TAG_structure_type [2] 1443 // DW_AT_name( "ForwardObjcClass" ) 1444 // DW_AT_byte_size( 0x00 ) 1445 // DW_AT_decl_file( "..." ) 1446 // DW_AT_decl_line( 1 ) 1447 // 1448 // Note that there is no DW_AT_declaration and there are no children, 1449 // and the byte size is zero. 1450 attrs.is_forward_declaration = true; 1451 } 1452 1453 if (attrs.class_language == eLanguageTypeObjC || 1454 attrs.class_language == eLanguageTypeObjC_plus_plus) { 1455 if (!attrs.is_complete_objc_class && 1456 die.Supports_DW_AT_APPLE_objc_complete_type()) { 1457 // We have a valid eSymbolTypeObjCClass class symbol whose name 1458 // matches the current objective C class that we are trying to find 1459 // and this DIE isn't the complete definition (we checked 1460 // is_complete_objc_class above and know it is false), so the real 1461 // definition is in here somewhere 1462 type_sp = 1463 dwarf->FindCompleteObjCDefinitionTypeForDIE(die, attrs.name, true); 1464 1465 if (!type_sp) { 1466 SymbolFileDWARFDebugMap *debug_map_symfile = 1467 dwarf->GetDebugMapSymfile(); 1468 if (debug_map_symfile) { 1469 // We weren't able to find a full declaration in this DWARF, 1470 // see if we have a declaration anywhere else... 1471 type_sp = debug_map_symfile->FindCompleteObjCDefinitionTypeForDIE( 1472 die, attrs.name, true); 1473 } 1474 } 1475 1476 if (type_sp) { 1477 if (log) { 1478 dwarf->GetObjectFile()->GetModule()->LogMessage( 1479 log, 1480 "SymbolFileDWARF(%p) - 0x%8.8x: %s type \"%s\" is an " 1481 "incomplete objc type, complete type is 0x%8.8" PRIx64, 1482 static_cast<void *>(this), die.GetOffset(), 1483 DW_TAG_value_to_name(tag), attrs.name.GetCString(), 1484 type_sp->GetID()); 1485 } 1486 1487 // We found a real definition for this type elsewhere so lets use 1488 // it and cache the fact that we found a complete type for this 1489 // die 1490 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); 1491 return type_sp; 1492 } 1493 } 1494 } 1495 1496 if (attrs.is_forward_declaration) { 1497 // We have a forward declaration to a type and we need to try and 1498 // find a full declaration. We look in the current type index just in 1499 // case we have a forward declaration followed by an actual 1500 // declarations in the DWARF. If this fails, we need to look 1501 // elsewhere... 1502 if (log) { 1503 dwarf->GetObjectFile()->GetModule()->LogMessage( 1504 log, 1505 "SymbolFileDWARF(%p) - 0x%8.8x: %s type \"%s\" is a " 1506 "forward declaration, trying to find complete type", 1507 static_cast<void *>(this), die.GetOffset(), DW_TAG_value_to_name(tag), 1508 attrs.name.GetCString()); 1509 } 1510 1511 // See if the type comes from a Clang module and if so, track down 1512 // that type. 1513 type_sp = ParseTypeFromClangModule(sc, die, log); 1514 if (type_sp) 1515 return type_sp; 1516 1517 DWARFDeclContext die_decl_ctx = SymbolFileDWARF::GetDWARFDeclContext(die); 1518 1519 // type_sp = FindDefinitionTypeForDIE (dwarf_cu, die, 1520 // type_name_const_str); 1521 type_sp = dwarf->FindDefinitionTypeForDWARFDeclContext(die_decl_ctx); 1522 1523 if (!type_sp) { 1524 SymbolFileDWARFDebugMap *debug_map_symfile = dwarf->GetDebugMapSymfile(); 1525 if (debug_map_symfile) { 1526 // We weren't able to find a full declaration in this DWARF, see 1527 // if we have a declaration anywhere else... 1528 type_sp = debug_map_symfile->FindDefinitionTypeForDWARFDeclContext( 1529 die_decl_ctx); 1530 } 1531 } 1532 1533 if (type_sp) { 1534 if (log) { 1535 dwarf->GetObjectFile()->GetModule()->LogMessage( 1536 log, 1537 "SymbolFileDWARF(%p) - 0x%8.8x: %s type \"%s\" is a " 1538 "forward declaration, complete type is 0x%8.8" PRIx64, 1539 static_cast<void *>(this), die.GetOffset(), 1540 DW_TAG_value_to_name(tag), attrs.name.GetCString(), 1541 type_sp->GetID()); 1542 } 1543 1544 // We found a real definition for this type elsewhere so lets use 1545 // it and cache the fact that we found a complete type for this die 1546 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); 1547 clang::DeclContext *defn_decl_ctx = 1548 GetCachedClangDeclContextForDIE(dwarf->GetDIE(type_sp->GetID())); 1549 if (defn_decl_ctx) 1550 LinkDeclContextToDIE(defn_decl_ctx, die); 1551 return type_sp; 1552 } 1553 } 1554 assert(tag_decl_kind != -1); 1555 bool clang_type_was_created = false; 1556 clang_type.SetCompilerType( 1557 &m_ast, dwarf->GetForwardDeclDieToClangType().lookup(die.GetDIE())); 1558 if (!clang_type) { 1559 clang::DeclContext *decl_ctx = 1560 GetClangDeclContextContainingDIE(die, nullptr); 1561 1562 // If your decl context is a record that was imported from another 1563 // AST context (in the gmodules case), we need to make sure the type 1564 // backing the Decl is complete before adding children to it. This is 1565 // not an issue in the non-gmodules case because the debug info will 1566 // always contain a full definition of parent types in that case. 1567 CompleteExternalTagDeclType(m_ast, GetClangASTImporter(), decl_ctx, die, 1568 attrs.name.GetCString()); 1569 1570 if (attrs.accessibility == eAccessNone && decl_ctx) { 1571 // Check the decl context that contains this class/struct/union. If 1572 // it is a class we must give it an accessibility. 1573 const clang::Decl::Kind containing_decl_kind = decl_ctx->getDeclKind(); 1574 if (DeclKindIsCXXClass(containing_decl_kind)) 1575 attrs.accessibility = default_accessibility; 1576 } 1577 1578 ClangASTMetadata metadata; 1579 metadata.SetUserID(die.GetID()); 1580 metadata.SetIsDynamicCXXType(dwarf->ClassOrStructIsVirtual(die)); 1581 1582 if (attrs.name.GetStringRef().contains('<')) { 1583 TypeSystemClang::TemplateParameterInfos template_param_infos; 1584 if (ParseTemplateParameterInfos(die, template_param_infos)) { 1585 clang::ClassTemplateDecl *class_template_decl = 1586 m_ast.ParseClassTemplateDecl( 1587 decl_ctx, GetOwningClangModule(die), attrs.accessibility, 1588 attrs.name.GetCString(), tag_decl_kind, template_param_infos); 1589 if (!class_template_decl) { 1590 if (log) { 1591 dwarf->GetObjectFile()->GetModule()->LogMessage( 1592 log, 1593 "SymbolFileDWARF(%p) - 0x%8.8x: %s type \"%s\" " 1594 "clang::ClassTemplateDecl failed to return a decl.", 1595 static_cast<void *>(this), die.GetOffset(), 1596 DW_TAG_value_to_name(tag), attrs.name.GetCString()); 1597 } 1598 return TypeSP(); 1599 } 1600 1601 clang::ClassTemplateSpecializationDecl *class_specialization_decl = 1602 m_ast.CreateClassTemplateSpecializationDecl( 1603 decl_ctx, GetOwningClangModule(die), class_template_decl, 1604 tag_decl_kind, template_param_infos); 1605 clang_type = m_ast.CreateClassTemplateSpecializationType( 1606 class_specialization_decl); 1607 clang_type_was_created = true; 1608 1609 m_ast.SetMetadata(class_template_decl, metadata); 1610 m_ast.SetMetadata(class_specialization_decl, metadata); 1611 } 1612 } 1613 1614 if (!clang_type_was_created) { 1615 clang_type_was_created = true; 1616 clang_type = m_ast.CreateRecordType( 1617 decl_ctx, GetOwningClangModule(die), attrs.accessibility, 1618 attrs.name.GetCString(), tag_decl_kind, attrs.class_language, 1619 &metadata, attrs.exports_symbols); 1620 } 1621 } 1622 1623 // Store a forward declaration to this class type in case any 1624 // parameters in any class methods need it for the clang types for 1625 // function prototypes. 1626 LinkDeclContextToDIE(m_ast.GetDeclContextForType(clang_type), die); 1627 type_sp = std::make_shared<Type>( 1628 die.GetID(), dwarf, attrs.name, attrs.byte_size, nullptr, 1629 LLDB_INVALID_UID, Type::eEncodingIsUID, &attrs.decl, clang_type, 1630 Type::ResolveState::Forward, 1631 TypePayloadClang(OptionalClangModuleID(), attrs.is_complete_objc_class)); 1632 1633 // Add our type to the unique type map so we don't end up creating many 1634 // copies of the same type over and over in the ASTContext for our 1635 // module 1636 unique_ast_entry_up->m_type_sp = type_sp; 1637 unique_ast_entry_up->m_die = die; 1638 unique_ast_entry_up->m_declaration = unique_decl; 1639 unique_ast_entry_up->m_byte_size = attrs.byte_size.getValueOr(0); 1640 dwarf->GetUniqueDWARFASTTypeMap().Insert(unique_typename, 1641 *unique_ast_entry_up); 1642 1643 if (attrs.is_forward_declaration && die.HasChildren()) { 1644 // Check to see if the DIE actually has a definition, some version of 1645 // GCC will 1646 // emit DIEs with DW_AT_declaration set to true, but yet still have 1647 // subprogram, members, or inheritance, so we can't trust it 1648 DWARFDIE child_die = die.GetFirstChild(); 1649 while (child_die) { 1650 switch (child_die.Tag()) { 1651 case DW_TAG_inheritance: 1652 case DW_TAG_subprogram: 1653 case DW_TAG_member: 1654 case DW_TAG_APPLE_property: 1655 case DW_TAG_class_type: 1656 case DW_TAG_structure_type: 1657 case DW_TAG_enumeration_type: 1658 case DW_TAG_typedef: 1659 case DW_TAG_union_type: 1660 child_die.Clear(); 1661 attrs.is_forward_declaration = false; 1662 break; 1663 default: 1664 child_die = child_die.GetSibling(); 1665 break; 1666 } 1667 } 1668 } 1669 1670 if (!attrs.is_forward_declaration) { 1671 // Always start the definition for a class type so that if the class 1672 // has child classes or types that require the class to be created 1673 // for use as their decl contexts the class will be ready to accept 1674 // these child definitions. 1675 if (!die.HasChildren()) { 1676 // No children for this struct/union/class, lets finish it 1677 if (TypeSystemClang::StartTagDeclarationDefinition(clang_type)) { 1678 TypeSystemClang::CompleteTagDeclarationDefinition(clang_type); 1679 } else { 1680 dwarf->GetObjectFile()->GetModule()->ReportError( 1681 "DWARF DIE at 0x%8.8x named \"%s\" was not able to start its " 1682 "definition.\nPlease file a bug and attach the file at the " 1683 "start of this error message", 1684 die.GetOffset(), attrs.name.GetCString()); 1685 } 1686 1687 if (tag == DW_TAG_structure_type) // this only applies in C 1688 { 1689 clang::RecordDecl *record_decl = 1690 TypeSystemClang::GetAsRecordDecl(clang_type); 1691 1692 if (record_decl) { 1693 GetClangASTImporter().SetRecordLayout( 1694 record_decl, ClangASTImporter::LayoutInfo()); 1695 } 1696 } 1697 } else if (clang_type_was_created) { 1698 // Start the definition if the class is not objective C since the 1699 // underlying decls respond to isCompleteDefinition(). Objective 1700 // C decls don't respond to isCompleteDefinition() so we can't 1701 // start the declaration definition right away. For C++ 1702 // class/union/structs we want to start the definition in case the 1703 // class is needed as the declaration context for a contained class 1704 // or type without the need to complete that type.. 1705 1706 if (attrs.class_language != eLanguageTypeObjC && 1707 attrs.class_language != eLanguageTypeObjC_plus_plus) 1708 TypeSystemClang::StartTagDeclarationDefinition(clang_type); 1709 1710 // Leave this as a forward declaration until we need to know the 1711 // details of the type. lldb_private::Type will automatically call 1712 // the SymbolFile virtual function 1713 // "SymbolFileDWARF::CompleteType(Type *)" When the definition 1714 // needs to be defined. 1715 assert(!dwarf->GetForwardDeclClangTypeToDie().count( 1716 ClangUtil::RemoveFastQualifiers(clang_type) 1717 .GetOpaqueQualType()) && 1718 "Type already in the forward declaration map!"); 1719 // Can't assume m_ast.GetSymbolFile() is actually a 1720 // SymbolFileDWARF, it can be a SymbolFileDWARFDebugMap for Apple 1721 // binaries. 1722 dwarf->GetForwardDeclDieToClangType()[die.GetDIE()] = 1723 clang_type.GetOpaqueQualType(); 1724 dwarf->GetForwardDeclClangTypeToDie().try_emplace( 1725 ClangUtil::RemoveFastQualifiers(clang_type).GetOpaqueQualType(), 1726 *die.GetDIERef()); 1727 m_ast.SetHasExternalStorage(clang_type.GetOpaqueQualType(), true); 1728 } 1729 } 1730 1731 // If we made a clang type, set the trivial abi if applicable: We only 1732 // do this for pass by value - which implies the Trivial ABI. There 1733 // isn't a way to assert that something that would normally be pass by 1734 // value is pass by reference, so we ignore that attribute if set. 1735 if (attrs.calling_convention == llvm::dwarf::DW_CC_pass_by_value) { 1736 clang::CXXRecordDecl *record_decl = 1737 m_ast.GetAsCXXRecordDecl(clang_type.GetOpaqueQualType()); 1738 if (record_decl && record_decl->getDefinition()) { 1739 record_decl->setHasTrivialSpecialMemberForCall(); 1740 } 1741 } 1742 1743 if (attrs.calling_convention == llvm::dwarf::DW_CC_pass_by_reference) { 1744 clang::CXXRecordDecl *record_decl = 1745 m_ast.GetAsCXXRecordDecl(clang_type.GetOpaqueQualType()); 1746 if (record_decl) 1747 record_decl->setArgPassingRestrictions( 1748 clang::RecordDecl::APK_CannotPassInRegs); 1749 } 1750 return type_sp; 1751 } 1752 1753 // DWARF parsing functions 1754 1755 class DWARFASTParserClang::DelayedAddObjCClassProperty { 1756 public: 1757 DelayedAddObjCClassProperty( 1758 const CompilerType &class_opaque_type, const char *property_name, 1759 const CompilerType &property_opaque_type, // The property type is only 1760 // required if you don't have an 1761 // ivar decl 1762 clang::ObjCIvarDecl *ivar_decl, const char *property_setter_name, 1763 const char *property_getter_name, uint32_t property_attributes, 1764 const ClangASTMetadata *metadata) 1765 : m_class_opaque_type(class_opaque_type), m_property_name(property_name), 1766 m_property_opaque_type(property_opaque_type), m_ivar_decl(ivar_decl), 1767 m_property_setter_name(property_setter_name), 1768 m_property_getter_name(property_getter_name), 1769 m_property_attributes(property_attributes) { 1770 if (metadata != nullptr) { 1771 m_metadata_up = std::make_unique<ClangASTMetadata>(); 1772 *m_metadata_up = *metadata; 1773 } 1774 } 1775 1776 DelayedAddObjCClassProperty(const DelayedAddObjCClassProperty &rhs) { 1777 *this = rhs; 1778 } 1779 1780 DelayedAddObjCClassProperty & 1781 operator=(const DelayedAddObjCClassProperty &rhs) { 1782 m_class_opaque_type = rhs.m_class_opaque_type; 1783 m_property_name = rhs.m_property_name; 1784 m_property_opaque_type = rhs.m_property_opaque_type; 1785 m_ivar_decl = rhs.m_ivar_decl; 1786 m_property_setter_name = rhs.m_property_setter_name; 1787 m_property_getter_name = rhs.m_property_getter_name; 1788 m_property_attributes = rhs.m_property_attributes; 1789 1790 if (rhs.m_metadata_up) { 1791 m_metadata_up = std::make_unique<ClangASTMetadata>(); 1792 *m_metadata_up = *rhs.m_metadata_up; 1793 } 1794 return *this; 1795 } 1796 1797 bool Finalize() { 1798 return TypeSystemClang::AddObjCClassProperty( 1799 m_class_opaque_type, m_property_name, m_property_opaque_type, 1800 m_ivar_decl, m_property_setter_name, m_property_getter_name, 1801 m_property_attributes, m_metadata_up.get()); 1802 } 1803 1804 private: 1805 CompilerType m_class_opaque_type; 1806 const char *m_property_name; 1807 CompilerType m_property_opaque_type; 1808 clang::ObjCIvarDecl *m_ivar_decl; 1809 const char *m_property_setter_name; 1810 const char *m_property_getter_name; 1811 uint32_t m_property_attributes; 1812 std::unique_ptr<ClangASTMetadata> m_metadata_up; 1813 }; 1814 1815 bool DWARFASTParserClang::ParseTemplateDIE( 1816 const DWARFDIE &die, 1817 TypeSystemClang::TemplateParameterInfos &template_param_infos) { 1818 const dw_tag_t tag = die.Tag(); 1819 bool is_template_template_argument = false; 1820 1821 switch (tag) { 1822 case DW_TAG_GNU_template_parameter_pack: { 1823 template_param_infos.packed_args = 1824 std::make_unique<TypeSystemClang::TemplateParameterInfos>(); 1825 for (DWARFDIE child_die = die.GetFirstChild(); child_die.IsValid(); 1826 child_die = child_die.GetSibling()) { 1827 if (!ParseTemplateDIE(child_die, *template_param_infos.packed_args)) 1828 return false; 1829 } 1830 if (const char *name = die.GetName()) { 1831 template_param_infos.pack_name = name; 1832 } 1833 return true; 1834 } 1835 case DW_TAG_GNU_template_template_param: 1836 is_template_template_argument = true; 1837 LLVM_FALLTHROUGH; 1838 case DW_TAG_template_type_parameter: 1839 case DW_TAG_template_value_parameter: { 1840 DWARFAttributes attributes; 1841 const size_t num_attributes = die.GetAttributes(attributes); 1842 const char *name = nullptr; 1843 const char *template_name = nullptr; 1844 CompilerType clang_type; 1845 uint64_t uval64 = 0; 1846 bool uval64_valid = false; 1847 if (num_attributes > 0) { 1848 DWARFFormValue form_value; 1849 for (size_t i = 0; i < num_attributes; ++i) { 1850 const dw_attr_t attr = attributes.AttributeAtIndex(i); 1851 1852 switch (attr) { 1853 case DW_AT_name: 1854 if (attributes.ExtractFormValueAtIndex(i, form_value)) 1855 name = form_value.AsCString(); 1856 break; 1857 1858 case DW_AT_GNU_template_name: 1859 if (attributes.ExtractFormValueAtIndex(i, form_value)) 1860 template_name = form_value.AsCString(); 1861 break; 1862 1863 case DW_AT_type: 1864 if (attributes.ExtractFormValueAtIndex(i, form_value)) { 1865 Type *lldb_type = die.ResolveTypeUID(form_value.Reference()); 1866 if (lldb_type) 1867 clang_type = lldb_type->GetForwardCompilerType(); 1868 } 1869 break; 1870 1871 case DW_AT_const_value: 1872 if (attributes.ExtractFormValueAtIndex(i, form_value)) { 1873 uval64_valid = true; 1874 uval64 = form_value.Unsigned(); 1875 } 1876 break; 1877 default: 1878 break; 1879 } 1880 } 1881 1882 clang::ASTContext &ast = m_ast.getASTContext(); 1883 if (!clang_type) 1884 clang_type = m_ast.GetBasicType(eBasicTypeVoid); 1885 1886 if (!is_template_template_argument) { 1887 bool is_signed = false; 1888 if (name && name[0]) 1889 template_param_infos.names.push_back(name); 1890 else 1891 template_param_infos.names.push_back(NULL); 1892 1893 // Get the signed value for any integer or enumeration if available 1894 clang_type.IsIntegerOrEnumerationType(is_signed); 1895 1896 if (tag == DW_TAG_template_value_parameter && uval64_valid) { 1897 llvm::Optional<uint64_t> size = clang_type.GetBitSize(nullptr); 1898 if (!size) 1899 return false; 1900 llvm::APInt apint(*size, uval64, is_signed); 1901 template_param_infos.args.push_back( 1902 clang::TemplateArgument(ast, llvm::APSInt(apint, !is_signed), 1903 ClangUtil::GetQualType(clang_type))); 1904 } else { 1905 template_param_infos.args.push_back( 1906 clang::TemplateArgument(ClangUtil::GetQualType(clang_type))); 1907 } 1908 } else { 1909 auto *tplt_type = m_ast.CreateTemplateTemplateParmDecl(template_name); 1910 template_param_infos.names.push_back(name); 1911 template_param_infos.args.push_back( 1912 clang::TemplateArgument(clang::TemplateName(tplt_type))); 1913 } 1914 } 1915 } 1916 return true; 1917 1918 default: 1919 break; 1920 } 1921 return false; 1922 } 1923 1924 bool DWARFASTParserClang::ParseTemplateParameterInfos( 1925 const DWARFDIE &parent_die, 1926 TypeSystemClang::TemplateParameterInfos &template_param_infos) { 1927 1928 if (!parent_die) 1929 return false; 1930 1931 for (DWARFDIE die = parent_die.GetFirstChild(); die.IsValid(); 1932 die = die.GetSibling()) { 1933 const dw_tag_t tag = die.Tag(); 1934 1935 switch (tag) { 1936 case DW_TAG_template_type_parameter: 1937 case DW_TAG_template_value_parameter: 1938 case DW_TAG_GNU_template_parameter_pack: 1939 case DW_TAG_GNU_template_template_param: 1940 ParseTemplateDIE(die, template_param_infos); 1941 break; 1942 1943 default: 1944 break; 1945 } 1946 } 1947 if (template_param_infos.args.empty()) 1948 return false; 1949 return template_param_infos.args.size() == template_param_infos.names.size(); 1950 } 1951 1952 bool DWARFASTParserClang::CompleteRecordType(const DWARFDIE &die, 1953 lldb_private::Type *type, 1954 CompilerType &clang_type) { 1955 const dw_tag_t tag = die.Tag(); 1956 SymbolFileDWARF *dwarf = die.GetDWARF(); 1957 1958 ClangASTImporter::LayoutInfo layout_info; 1959 1960 if (die.HasChildren()) { 1961 LanguageType class_language = eLanguageTypeUnknown; 1962 if (TypeSystemClang::IsObjCObjectOrInterfaceType(clang_type)) { 1963 class_language = eLanguageTypeObjC; 1964 // For objective C we don't start the definition when the class is 1965 // created. 1966 TypeSystemClang::StartTagDeclarationDefinition(clang_type); 1967 } 1968 1969 int tag_decl_kind = -1; 1970 AccessType default_accessibility = eAccessNone; 1971 if (tag == DW_TAG_structure_type) { 1972 tag_decl_kind = clang::TTK_Struct; 1973 default_accessibility = eAccessPublic; 1974 } else if (tag == DW_TAG_union_type) { 1975 tag_decl_kind = clang::TTK_Union; 1976 default_accessibility = eAccessPublic; 1977 } else if (tag == DW_TAG_class_type) { 1978 tag_decl_kind = clang::TTK_Class; 1979 default_accessibility = eAccessPrivate; 1980 } 1981 1982 std::vector<std::unique_ptr<clang::CXXBaseSpecifier>> bases; 1983 std::vector<int> member_accessibilities; 1984 bool is_a_class = false; 1985 // Parse members and base classes first 1986 std::vector<DWARFDIE> member_function_dies; 1987 1988 DelayedPropertyList delayed_properties; 1989 ParseChildMembers(die, clang_type, class_language, bases, 1990 member_accessibilities, member_function_dies, 1991 delayed_properties, default_accessibility, is_a_class, 1992 layout_info); 1993 1994 // Now parse any methods if there were any... 1995 for (const DWARFDIE &die : member_function_dies) 1996 dwarf->ResolveType(die); 1997 1998 if (class_language == eLanguageTypeObjC) { 1999 ConstString class_name(clang_type.GetTypeName()); 2000 if (class_name) { 2001 dwarf->GetObjCMethods(class_name, [&](DWARFDIE method_die) { 2002 method_die.ResolveType(); 2003 return true; 2004 }); 2005 2006 for (DelayedPropertyList::iterator pi = delayed_properties.begin(), 2007 pe = delayed_properties.end(); 2008 pi != pe; ++pi) 2009 pi->Finalize(); 2010 } 2011 } 2012 2013 // If we have a DW_TAG_structure_type instead of a DW_TAG_class_type we 2014 // need to tell the clang type it is actually a class. 2015 if (class_language != eLanguageTypeObjC) { 2016 if (is_a_class && tag_decl_kind != clang::TTK_Class) 2017 m_ast.SetTagTypeKind(ClangUtil::GetQualType(clang_type), 2018 clang::TTK_Class); 2019 } 2020 2021 // Since DW_TAG_structure_type gets used for both classes and 2022 // structures, we may need to set any DW_TAG_member fields to have a 2023 // "private" access if none was specified. When we parsed the child 2024 // members we tracked that actual accessibility value for each 2025 // DW_TAG_member in the "member_accessibilities" array. If the value 2026 // for the member is zero, then it was set to the 2027 // "default_accessibility" which for structs was "public". Below we 2028 // correct this by setting any fields to "private" that weren't 2029 // correctly set. 2030 if (is_a_class && !member_accessibilities.empty()) { 2031 // This is a class and all members that didn't have their access 2032 // specified are private. 2033 m_ast.SetDefaultAccessForRecordFields( 2034 m_ast.GetAsRecordDecl(clang_type), eAccessPrivate, 2035 &member_accessibilities.front(), member_accessibilities.size()); 2036 } 2037 2038 if (!bases.empty()) { 2039 // Make sure all base classes refer to complete types and not forward 2040 // declarations. If we don't do this, clang will crash with an 2041 // assertion in the call to clang_type.TransferBaseClasses() 2042 for (const auto &base_class : bases) { 2043 clang::TypeSourceInfo *type_source_info = 2044 base_class->getTypeSourceInfo(); 2045 if (type_source_info) 2046 CompleteType(m_ast.GetType(type_source_info->getType())); 2047 } 2048 2049 m_ast.TransferBaseClasses(clang_type.GetOpaqueQualType(), 2050 std::move(bases)); 2051 } 2052 } 2053 2054 m_ast.AddMethodOverridesForCXXRecordType(clang_type.GetOpaqueQualType()); 2055 TypeSystemClang::BuildIndirectFields(clang_type); 2056 TypeSystemClang::CompleteTagDeclarationDefinition(clang_type); 2057 2058 if (!layout_info.field_offsets.empty() || !layout_info.base_offsets.empty() || 2059 !layout_info.vbase_offsets.empty()) { 2060 if (type) 2061 layout_info.bit_size = type->GetByteSize().getValueOr(0) * 8; 2062 if (layout_info.bit_size == 0) 2063 layout_info.bit_size = 2064 die.GetAttributeValueAsUnsigned(DW_AT_byte_size, 0) * 8; 2065 2066 clang::CXXRecordDecl *record_decl = 2067 m_ast.GetAsCXXRecordDecl(clang_type.GetOpaqueQualType()); 2068 if (record_decl) 2069 GetClangASTImporter().SetRecordLayout(record_decl, layout_info); 2070 } 2071 2072 return (bool)clang_type; 2073 } 2074 2075 bool DWARFASTParserClang::CompleteEnumType(const DWARFDIE &die, 2076 lldb_private::Type *type, 2077 CompilerType &clang_type) { 2078 if (TypeSystemClang::StartTagDeclarationDefinition(clang_type)) { 2079 if (die.HasChildren()) { 2080 bool is_signed = false; 2081 clang_type.IsIntegerType(is_signed); 2082 ParseChildEnumerators(clang_type, is_signed, 2083 type->GetByteSize().getValueOr(0), die); 2084 } 2085 TypeSystemClang::CompleteTagDeclarationDefinition(clang_type); 2086 } 2087 return (bool)clang_type; 2088 } 2089 2090 bool DWARFASTParserClang::CompleteTypeFromDWARF(const DWARFDIE &die, 2091 lldb_private::Type *type, 2092 CompilerType &clang_type) { 2093 SymbolFileDWARF *dwarf = die.GetDWARF(); 2094 2095 std::lock_guard<std::recursive_mutex> guard( 2096 dwarf->GetObjectFile()->GetModule()->GetMutex()); 2097 2098 // Disable external storage for this type so we don't get anymore 2099 // clang::ExternalASTSource queries for this type. 2100 m_ast.SetHasExternalStorage(clang_type.GetOpaqueQualType(), false); 2101 2102 if (!die) 2103 return false; 2104 2105 const dw_tag_t tag = die.Tag(); 2106 2107 Log *log = 2108 nullptr; // (LogChannelDWARF::GetLogIfAny(DWARF_LOG_DEBUG_INFO|DWARF_LOG_TYPE_COMPLETION)); 2109 if (log) 2110 dwarf->GetObjectFile()->GetModule()->LogMessageVerboseBacktrace( 2111 log, "0x%8.8" PRIx64 ": %s '%s' resolving forward declaration...", 2112 die.GetID(), die.GetTagAsCString(), type->GetName().AsCString()); 2113 assert(clang_type); 2114 DWARFAttributes attributes; 2115 switch (tag) { 2116 case DW_TAG_structure_type: 2117 case DW_TAG_union_type: 2118 case DW_TAG_class_type: 2119 return CompleteRecordType(die, type, clang_type); 2120 case DW_TAG_enumeration_type: 2121 return CompleteEnumType(die, type, clang_type); 2122 default: 2123 assert(false && "not a forward clang type decl!"); 2124 break; 2125 } 2126 2127 return false; 2128 } 2129 2130 void DWARFASTParserClang::EnsureAllDIEsInDeclContextHaveBeenParsed( 2131 lldb_private::CompilerDeclContext decl_context) { 2132 auto opaque_decl_ctx = 2133 (clang::DeclContext *)decl_context.GetOpaqueDeclContext(); 2134 for (auto it = m_decl_ctx_to_die.find(opaque_decl_ctx); 2135 it != m_decl_ctx_to_die.end() && it->first == opaque_decl_ctx; 2136 it = m_decl_ctx_to_die.erase(it)) 2137 for (DWARFDIE decl = it->second.GetFirstChild(); decl; 2138 decl = decl.GetSibling()) 2139 GetClangDeclForDIE(decl); 2140 } 2141 2142 CompilerDecl DWARFASTParserClang::GetDeclForUIDFromDWARF(const DWARFDIE &die) { 2143 clang::Decl *clang_decl = GetClangDeclForDIE(die); 2144 if (clang_decl != nullptr) 2145 return m_ast.GetCompilerDecl(clang_decl); 2146 return CompilerDecl(); 2147 } 2148 2149 CompilerDeclContext 2150 DWARFASTParserClang::GetDeclContextForUIDFromDWARF(const DWARFDIE &die) { 2151 clang::DeclContext *clang_decl_ctx = GetClangDeclContextForDIE(die); 2152 if (clang_decl_ctx) 2153 return m_ast.CreateDeclContext(clang_decl_ctx); 2154 return CompilerDeclContext(); 2155 } 2156 2157 CompilerDeclContext 2158 DWARFASTParserClang::GetDeclContextContainingUIDFromDWARF(const DWARFDIE &die) { 2159 clang::DeclContext *clang_decl_ctx = 2160 GetClangDeclContextContainingDIE(die, nullptr); 2161 if (clang_decl_ctx) 2162 return m_ast.CreateDeclContext(clang_decl_ctx); 2163 return CompilerDeclContext(); 2164 } 2165 2166 size_t DWARFASTParserClang::ParseChildEnumerators( 2167 lldb_private::CompilerType &clang_type, bool is_signed, 2168 uint32_t enumerator_byte_size, const DWARFDIE &parent_die) { 2169 if (!parent_die) 2170 return 0; 2171 2172 size_t enumerators_added = 0; 2173 2174 for (DWARFDIE die = parent_die.GetFirstChild(); die.IsValid(); 2175 die = die.GetSibling()) { 2176 const dw_tag_t tag = die.Tag(); 2177 if (tag == DW_TAG_enumerator) { 2178 DWARFAttributes attributes; 2179 const size_t num_child_attributes = die.GetAttributes(attributes); 2180 if (num_child_attributes > 0) { 2181 const char *name = nullptr; 2182 bool got_value = false; 2183 int64_t enum_value = 0; 2184 Declaration decl; 2185 2186 uint32_t i; 2187 for (i = 0; i < num_child_attributes; ++i) { 2188 const dw_attr_t attr = attributes.AttributeAtIndex(i); 2189 DWARFFormValue form_value; 2190 if (attributes.ExtractFormValueAtIndex(i, form_value)) { 2191 switch (attr) { 2192 case DW_AT_const_value: 2193 got_value = true; 2194 if (is_signed) 2195 enum_value = form_value.Signed(); 2196 else 2197 enum_value = form_value.Unsigned(); 2198 break; 2199 2200 case DW_AT_name: 2201 name = form_value.AsCString(); 2202 break; 2203 2204 case DW_AT_description: 2205 default: 2206 case DW_AT_decl_file: 2207 decl.SetFile(die.GetCU()->GetFile(form_value.Unsigned())); 2208 break; 2209 case DW_AT_decl_line: 2210 decl.SetLine(form_value.Unsigned()); 2211 break; 2212 case DW_AT_decl_column: 2213 decl.SetColumn(form_value.Unsigned()); 2214 break; 2215 case DW_AT_sibling: 2216 break; 2217 } 2218 } 2219 } 2220 2221 if (name && name[0] && got_value) { 2222 m_ast.AddEnumerationValueToEnumerationType( 2223 clang_type, decl, name, enum_value, enumerator_byte_size * 8); 2224 ++enumerators_added; 2225 } 2226 } 2227 } 2228 } 2229 return enumerators_added; 2230 } 2231 2232 Function *DWARFASTParserClang::ParseFunctionFromDWARF(CompileUnit &comp_unit, 2233 const DWARFDIE &die) { 2234 DWARFRangeList func_ranges; 2235 const char *name = nullptr; 2236 const char *mangled = nullptr; 2237 int decl_file = 0; 2238 int decl_line = 0; 2239 int decl_column = 0; 2240 int call_file = 0; 2241 int call_line = 0; 2242 int call_column = 0; 2243 DWARFExpression frame_base; 2244 2245 const dw_tag_t tag = die.Tag(); 2246 2247 if (tag != DW_TAG_subprogram) 2248 return nullptr; 2249 2250 if (die.GetDIENamesAndRanges(name, mangled, func_ranges, decl_file, decl_line, 2251 decl_column, call_file, call_line, call_column, 2252 &frame_base)) { 2253 2254 // Union of all ranges in the function DIE (if the function is 2255 // discontiguous) 2256 AddressRange func_range; 2257 lldb::addr_t lowest_func_addr = func_ranges.GetMinRangeBase(0); 2258 lldb::addr_t highest_func_addr = func_ranges.GetMaxRangeEnd(0); 2259 if (lowest_func_addr != LLDB_INVALID_ADDRESS && 2260 lowest_func_addr <= highest_func_addr) { 2261 ModuleSP module_sp(die.GetModule()); 2262 func_range.GetBaseAddress().ResolveAddressUsingFileSections( 2263 lowest_func_addr, module_sp->GetSectionList()); 2264 if (func_range.GetBaseAddress().IsValid()) 2265 func_range.SetByteSize(highest_func_addr - lowest_func_addr); 2266 } 2267 2268 if (func_range.GetBaseAddress().IsValid()) { 2269 Mangled func_name; 2270 if (mangled) 2271 func_name.SetValue(ConstString(mangled), true); 2272 else if ((die.GetParent().Tag() == DW_TAG_compile_unit || 2273 die.GetParent().Tag() == DW_TAG_partial_unit) && 2274 Language::LanguageIsCPlusPlus( 2275 SymbolFileDWARF::GetLanguage(*die.GetCU())) && 2276 !Language::LanguageIsObjC( 2277 SymbolFileDWARF::GetLanguage(*die.GetCU())) && 2278 name && strcmp(name, "main") != 0) { 2279 // If the mangled name is not present in the DWARF, generate the 2280 // demangled name using the decl context. We skip if the function is 2281 // "main" as its name is never mangled. 2282 bool is_static = false; 2283 bool is_variadic = false; 2284 bool has_template_params = false; 2285 unsigned type_quals = 0; 2286 std::vector<CompilerType> param_types; 2287 std::vector<clang::ParmVarDecl *> param_decls; 2288 StreamString sstr; 2289 2290 DWARFDeclContext decl_ctx = SymbolFileDWARF::GetDWARFDeclContext(die); 2291 sstr << decl_ctx.GetQualifiedName(); 2292 2293 clang::DeclContext *containing_decl_ctx = 2294 GetClangDeclContextContainingDIE(die, nullptr); 2295 ParseChildParameters(containing_decl_ctx, die, true, is_static, 2296 is_variadic, has_template_params, param_types, 2297 param_decls, type_quals); 2298 sstr << "("; 2299 for (size_t i = 0; i < param_types.size(); i++) { 2300 if (i > 0) 2301 sstr << ", "; 2302 sstr << param_types[i].GetTypeName(); 2303 } 2304 if (is_variadic) 2305 sstr << ", ..."; 2306 sstr << ")"; 2307 if (type_quals & clang::Qualifiers::Const) 2308 sstr << " const"; 2309 2310 func_name.SetValue(ConstString(sstr.GetString()), false); 2311 } else 2312 func_name.SetValue(ConstString(name), false); 2313 2314 FunctionSP func_sp; 2315 std::unique_ptr<Declaration> decl_up; 2316 if (decl_file != 0 || decl_line != 0 || decl_column != 0) 2317 decl_up = std::make_unique<Declaration>(die.GetCU()->GetFile(decl_file), 2318 decl_line, decl_column); 2319 2320 SymbolFileDWARF *dwarf = die.GetDWARF(); 2321 // Supply the type _only_ if it has already been parsed 2322 Type *func_type = dwarf->GetDIEToType().lookup(die.GetDIE()); 2323 2324 assert(func_type == nullptr || func_type != DIE_IS_BEING_PARSED); 2325 2326 if (dwarf->FixupAddress(func_range.GetBaseAddress())) { 2327 const user_id_t func_user_id = die.GetID(); 2328 func_sp = 2329 std::make_shared<Function>(&comp_unit, 2330 func_user_id, // UserID is the DIE offset 2331 func_user_id, func_name, func_type, 2332 func_range); // first address range 2333 2334 if (func_sp.get() != nullptr) { 2335 if (frame_base.IsValid()) 2336 func_sp->GetFrameBaseExpression() = frame_base; 2337 comp_unit.AddFunction(func_sp); 2338 return func_sp.get(); 2339 } 2340 } 2341 } 2342 } 2343 return nullptr; 2344 } 2345 2346 void DWARFASTParserClang::ParseSingleMember( 2347 const DWARFDIE &die, const DWARFDIE &parent_die, 2348 const lldb_private::CompilerType &class_clang_type, 2349 const lldb::LanguageType class_language, 2350 std::vector<int> &member_accessibilities, 2351 lldb::AccessType default_accessibility, 2352 DelayedPropertyList &delayed_properties, 2353 lldb_private::ClangASTImporter::LayoutInfo &layout_info, 2354 FieldInfo &last_field_info) { 2355 ModuleSP module_sp = parent_die.GetDWARF()->GetObjectFile()->GetModule(); 2356 const dw_tag_t tag = die.Tag(); 2357 // Get the parent byte size so we can verify any members will fit 2358 const uint64_t parent_byte_size = 2359 parent_die.GetAttributeValueAsUnsigned(DW_AT_byte_size, UINT64_MAX); 2360 const uint64_t parent_bit_size = 2361 parent_byte_size == UINT64_MAX ? UINT64_MAX : parent_byte_size * 8; 2362 2363 DWARFAttributes attributes; 2364 const size_t num_attributes = die.GetAttributes(attributes); 2365 if (num_attributes > 0) { 2366 const char *name = nullptr; 2367 const char *prop_name = nullptr; 2368 const char *prop_getter_name = nullptr; 2369 const char *prop_setter_name = nullptr; 2370 uint32_t prop_attributes = 0; 2371 2372 bool is_artificial = false; 2373 DWARFFormValue encoding_form; 2374 AccessType accessibility = eAccessNone; 2375 uint32_t member_byte_offset = 2376 (parent_die.Tag() == DW_TAG_union_type) ? 0 : UINT32_MAX; 2377 llvm::Optional<uint64_t> byte_size; 2378 int64_t bit_offset = 0; 2379 uint64_t data_bit_offset = UINT64_MAX; 2380 size_t bit_size = 0; 2381 bool is_external = 2382 false; // On DW_TAG_members, this means the member is static 2383 uint32_t i; 2384 for (i = 0; i < num_attributes && !is_artificial; ++i) { 2385 const dw_attr_t attr = attributes.AttributeAtIndex(i); 2386 DWARFFormValue form_value; 2387 if (attributes.ExtractFormValueAtIndex(i, form_value)) { 2388 // DW_AT_data_member_location indicates the byte offset of the 2389 // word from the base address of the structure. 2390 // 2391 // DW_AT_bit_offset indicates how many bits into the word 2392 // (according to the host endianness) the low-order bit of the 2393 // field starts. AT_bit_offset can be negative. 2394 // 2395 // DW_AT_bit_size indicates the size of the field in bits. 2396 switch (attr) { 2397 case DW_AT_name: 2398 name = form_value.AsCString(); 2399 break; 2400 case DW_AT_type: 2401 encoding_form = form_value; 2402 break; 2403 case DW_AT_bit_offset: 2404 bit_offset = form_value.Signed(); 2405 break; 2406 case DW_AT_bit_size: 2407 bit_size = form_value.Unsigned(); 2408 break; 2409 case DW_AT_byte_size: 2410 byte_size = form_value.Unsigned(); 2411 break; 2412 case DW_AT_data_bit_offset: 2413 data_bit_offset = form_value.Unsigned(); 2414 break; 2415 case DW_AT_data_member_location: 2416 if (form_value.BlockData()) { 2417 Value initialValue(0); 2418 Value memberOffset(0); 2419 const DWARFDataExtractor &debug_info_data = die.GetData(); 2420 uint32_t block_length = form_value.Unsigned(); 2421 uint32_t block_offset = 2422 form_value.BlockData() - debug_info_data.GetDataStart(); 2423 if (DWARFExpression::Evaluate( 2424 nullptr, // ExecutionContext * 2425 nullptr, // RegisterContext * 2426 module_sp, 2427 DataExtractor(debug_info_data, block_offset, block_length), 2428 die.GetCU(), eRegisterKindDWARF, &initialValue, nullptr, 2429 memberOffset, nullptr)) { 2430 member_byte_offset = memberOffset.ResolveValue(nullptr).UInt(); 2431 } 2432 } else { 2433 // With DWARF 3 and later, if the value is an integer constant, 2434 // this form value is the offset in bytes from the beginning of 2435 // the containing entity. 2436 member_byte_offset = form_value.Unsigned(); 2437 } 2438 break; 2439 2440 case DW_AT_accessibility: 2441 accessibility = DW_ACCESS_to_AccessType(form_value.Unsigned()); 2442 break; 2443 case DW_AT_artificial: 2444 is_artificial = form_value.Boolean(); 2445 break; 2446 case DW_AT_APPLE_property_name: 2447 prop_name = form_value.AsCString(); 2448 break; 2449 case DW_AT_APPLE_property_getter: 2450 prop_getter_name = form_value.AsCString(); 2451 break; 2452 case DW_AT_APPLE_property_setter: 2453 prop_setter_name = form_value.AsCString(); 2454 break; 2455 case DW_AT_APPLE_property_attribute: 2456 prop_attributes = form_value.Unsigned(); 2457 break; 2458 case DW_AT_external: 2459 is_external = form_value.Boolean(); 2460 break; 2461 2462 default: 2463 case DW_AT_declaration: 2464 case DW_AT_description: 2465 case DW_AT_mutable: 2466 case DW_AT_visibility: 2467 case DW_AT_sibling: 2468 break; 2469 } 2470 } 2471 } 2472 2473 if (prop_name) { 2474 ConstString fixed_setter; 2475 2476 // Check if the property getter/setter were provided as full names. 2477 // We want basenames, so we extract them. 2478 2479 if (prop_getter_name && prop_getter_name[0] == '-') { 2480 ObjCLanguage::MethodName prop_getter_method(prop_getter_name, true); 2481 prop_getter_name = prop_getter_method.GetSelector().GetCString(); 2482 } 2483 2484 if (prop_setter_name && prop_setter_name[0] == '-') { 2485 ObjCLanguage::MethodName prop_setter_method(prop_setter_name, true); 2486 prop_setter_name = prop_setter_method.GetSelector().GetCString(); 2487 } 2488 2489 // If the names haven't been provided, they need to be filled in. 2490 2491 if (!prop_getter_name) { 2492 prop_getter_name = prop_name; 2493 } 2494 if (!prop_setter_name && prop_name[0] && 2495 !(prop_attributes & DW_APPLE_PROPERTY_readonly)) { 2496 StreamString ss; 2497 2498 ss.Printf("set%c%s:", toupper(prop_name[0]), &prop_name[1]); 2499 2500 fixed_setter.SetString(ss.GetString()); 2501 prop_setter_name = fixed_setter.GetCString(); 2502 } 2503 } 2504 2505 // Clang has a DWARF generation bug where sometimes it represents 2506 // fields that are references with bad byte size and bit size/offset 2507 // information such as: 2508 // 2509 // DW_AT_byte_size( 0x00 ) 2510 // DW_AT_bit_size( 0x40 ) 2511 // DW_AT_bit_offset( 0xffffffffffffffc0 ) 2512 // 2513 // So check the bit offset to make sure it is sane, and if the values 2514 // are not sane, remove them. If we don't do this then we will end up 2515 // with a crash if we try to use this type in an expression when clang 2516 // becomes unhappy with its recycled debug info. 2517 2518 if (byte_size.getValueOr(0) == 0 && bit_offset < 0) { 2519 bit_size = 0; 2520 bit_offset = 0; 2521 } 2522 2523 // FIXME: Make Clang ignore Objective-C accessibility for expressions 2524 if (class_language == eLanguageTypeObjC || 2525 class_language == eLanguageTypeObjC_plus_plus) 2526 accessibility = eAccessNone; 2527 2528 // Handle static members 2529 if (is_external && member_byte_offset == UINT32_MAX) { 2530 Type *var_type = die.ResolveTypeUID(encoding_form.Reference()); 2531 2532 if (var_type) { 2533 if (accessibility == eAccessNone) 2534 accessibility = eAccessPublic; 2535 TypeSystemClang::AddVariableToRecordType( 2536 class_clang_type, name, var_type->GetLayoutCompilerType(), 2537 accessibility); 2538 } 2539 return; 2540 } 2541 2542 if (!is_artificial) { 2543 Type *member_type = die.ResolveTypeUID(encoding_form.Reference()); 2544 2545 clang::FieldDecl *field_decl = nullptr; 2546 const uint64_t character_width = 8; 2547 const uint64_t word_width = 32; 2548 if (tag == DW_TAG_member) { 2549 if (member_type) { 2550 CompilerType member_clang_type = member_type->GetLayoutCompilerType(); 2551 2552 if (accessibility == eAccessNone) 2553 accessibility = default_accessibility; 2554 member_accessibilities.push_back(accessibility); 2555 2556 uint64_t field_bit_offset = 2557 (member_byte_offset == UINT32_MAX ? 0 : (member_byte_offset * 8)); 2558 2559 if (bit_size > 0) { 2560 FieldInfo this_field_info; 2561 this_field_info.bit_offset = field_bit_offset; 2562 this_field_info.bit_size = bit_size; 2563 2564 if (data_bit_offset != UINT64_MAX) { 2565 this_field_info.bit_offset = data_bit_offset; 2566 } else { 2567 if (!byte_size) 2568 byte_size = member_type->GetByteSize(); 2569 2570 ObjectFile *objfile = die.GetDWARF()->GetObjectFile(); 2571 if (objfile->GetByteOrder() == eByteOrderLittle) { 2572 this_field_info.bit_offset += byte_size.getValueOr(0) * 8; 2573 this_field_info.bit_offset -= (bit_offset + bit_size); 2574 } else { 2575 this_field_info.bit_offset += bit_offset; 2576 } 2577 } 2578 2579 if ((this_field_info.bit_offset >= parent_bit_size) || 2580 (last_field_info.IsBitfield() && 2581 !last_field_info.NextBitfieldOffsetIsValid( 2582 this_field_info.bit_offset))) { 2583 ObjectFile *objfile = die.GetDWARF()->GetObjectFile(); 2584 objfile->GetModule()->ReportWarning( 2585 "0x%8.8" PRIx64 ": %s bitfield named \"%s\" has invalid " 2586 "bit offset (0x%8.8" PRIx64 2587 ") member will be ignored. Please file a bug against the " 2588 "compiler and include the preprocessed output for %s\n", 2589 die.GetID(), DW_TAG_value_to_name(tag), name, 2590 this_field_info.bit_offset, GetUnitName(parent_die).c_str()); 2591 return; 2592 } 2593 2594 // Update the field bit offset we will report for layout 2595 field_bit_offset = this_field_info.bit_offset; 2596 2597 // Objective-C has invalid DW_AT_bit_offset values in older 2598 // versions of clang, so we have to be careful and only insert 2599 // unnamed bitfields if we have a new enough clang. 2600 bool detect_unnamed_bitfields = true; 2601 2602 if (class_language == eLanguageTypeObjC || 2603 class_language == eLanguageTypeObjC_plus_plus) 2604 detect_unnamed_bitfields = 2605 die.GetCU()->Supports_unnamed_objc_bitfields(); 2606 2607 if (detect_unnamed_bitfields) { 2608 clang::Optional<FieldInfo> unnamed_field_info; 2609 uint64_t last_field_end = 0; 2610 2611 last_field_end = 2612 last_field_info.bit_offset + last_field_info.bit_size; 2613 2614 if (!last_field_info.IsBitfield()) { 2615 // The last field was not a bit-field... 2616 // but if it did take up the entire word then we need to extend 2617 // last_field_end so the bit-field does not step into the last 2618 // fields padding. 2619 if (last_field_end != 0 && ((last_field_end % word_width) != 0)) 2620 last_field_end += word_width - (last_field_end % word_width); 2621 } 2622 2623 // If we have a gap between the last_field_end and the current 2624 // field we have an unnamed bit-field. 2625 // If we have a base class, we assume there is no unnamed 2626 // bit-field if this is the first field since the gap can be 2627 // attributed to the members from the base class. This assumption 2628 // is not correct if the first field of the derived class is 2629 // indeed an unnamed bit-field. We currently do not have the 2630 // machinary to track the offset of the last field of classes we 2631 // have seen before, so we are not handling this case. 2632 if (this_field_info.bit_offset != last_field_end && 2633 this_field_info.bit_offset > last_field_end && 2634 !(last_field_info.bit_offset == 0 && 2635 last_field_info.bit_size == 0 && 2636 layout_info.base_offsets.size() != 0)) { 2637 unnamed_field_info = FieldInfo{}; 2638 unnamed_field_info->bit_size = 2639 this_field_info.bit_offset - last_field_end; 2640 unnamed_field_info->bit_offset = last_field_end; 2641 } 2642 2643 if (unnamed_field_info) { 2644 clang::FieldDecl *unnamed_bitfield_decl = 2645 TypeSystemClang::AddFieldToRecordType( 2646 class_clang_type, llvm::StringRef(), 2647 m_ast.GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 2648 word_width), 2649 accessibility, unnamed_field_info->bit_size); 2650 2651 layout_info.field_offsets.insert(std::make_pair( 2652 unnamed_bitfield_decl, unnamed_field_info->bit_offset)); 2653 } 2654 } 2655 2656 last_field_info = this_field_info; 2657 last_field_info.SetIsBitfield(true); 2658 } else { 2659 last_field_info.bit_offset = field_bit_offset; 2660 2661 if (llvm::Optional<uint64_t> clang_type_size = 2662 member_clang_type.GetByteSize(nullptr)) { 2663 last_field_info.bit_size = *clang_type_size * character_width; 2664 } 2665 2666 last_field_info.SetIsBitfield(false); 2667 } 2668 2669 if (!member_clang_type.IsCompleteType()) 2670 member_clang_type.GetCompleteType(); 2671 2672 { 2673 // Older versions of clang emit array[0] and array[1] in the 2674 // same way (<rdar://problem/12566646>). If the current field 2675 // is at the end of the structure, then there is definitely no 2676 // room for extra elements and we override the type to 2677 // array[0]. 2678 2679 CompilerType member_array_element_type; 2680 uint64_t member_array_size; 2681 bool member_array_is_incomplete; 2682 2683 if (member_clang_type.IsArrayType(&member_array_element_type, 2684 &member_array_size, 2685 &member_array_is_incomplete) && 2686 !member_array_is_incomplete) { 2687 uint64_t parent_byte_size = 2688 parent_die.GetAttributeValueAsUnsigned(DW_AT_byte_size, 2689 UINT64_MAX); 2690 2691 if (member_byte_offset >= parent_byte_size) { 2692 if (member_array_size != 1 && 2693 (member_array_size != 0 || 2694 member_byte_offset > parent_byte_size)) { 2695 module_sp->ReportError( 2696 "0x%8.8" PRIx64 2697 ": DW_TAG_member '%s' refers to type 0x%8.8x" 2698 " which extends beyond the bounds of 0x%8.8" PRIx64, 2699 die.GetID(), name, encoding_form.Reference().GetOffset(), 2700 parent_die.GetID()); 2701 } 2702 2703 member_clang_type = 2704 m_ast.CreateArrayType(member_array_element_type, 0, false); 2705 } 2706 } 2707 } 2708 2709 CompleteType(member_clang_type); 2710 2711 field_decl = TypeSystemClang::AddFieldToRecordType( 2712 class_clang_type, name, member_clang_type, accessibility, 2713 bit_size); 2714 2715 m_ast.SetMetadataAsUserID(field_decl, die.GetID()); 2716 2717 layout_info.field_offsets.insert( 2718 std::make_pair(field_decl, field_bit_offset)); 2719 } else { 2720 if (name) 2721 module_sp->ReportError( 2722 "0x%8.8" PRIx64 ": DW_TAG_member '%s' refers to type 0x%8.8x" 2723 " which was unable to be parsed", 2724 die.GetID(), name, encoding_form.Reference().GetOffset()); 2725 else 2726 module_sp->ReportError( 2727 "0x%8.8" PRIx64 ": DW_TAG_member refers to type 0x%8.8x" 2728 " which was unable to be parsed", 2729 die.GetID(), encoding_form.Reference().GetOffset()); 2730 } 2731 } 2732 2733 if (prop_name != nullptr && member_type) { 2734 clang::ObjCIvarDecl *ivar_decl = nullptr; 2735 2736 if (field_decl) { 2737 ivar_decl = clang::dyn_cast<clang::ObjCIvarDecl>(field_decl); 2738 assert(ivar_decl != nullptr); 2739 } 2740 2741 ClangASTMetadata metadata; 2742 metadata.SetUserID(die.GetID()); 2743 delayed_properties.push_back(DelayedAddObjCClassProperty( 2744 class_clang_type, prop_name, member_type->GetLayoutCompilerType(), 2745 ivar_decl, prop_setter_name, prop_getter_name, prop_attributes, 2746 &metadata)); 2747 2748 if (ivar_decl) 2749 m_ast.SetMetadataAsUserID(ivar_decl, die.GetID()); 2750 } 2751 } 2752 } 2753 } 2754 2755 bool DWARFASTParserClang::ParseChildMembers( 2756 const DWARFDIE &parent_die, CompilerType &class_clang_type, 2757 const LanguageType class_language, 2758 std::vector<std::unique_ptr<clang::CXXBaseSpecifier>> &base_classes, 2759 std::vector<int> &member_accessibilities, 2760 std::vector<DWARFDIE> &member_function_dies, 2761 DelayedPropertyList &delayed_properties, AccessType &default_accessibility, 2762 bool &is_a_class, ClangASTImporter::LayoutInfo &layout_info) { 2763 if (!parent_die) 2764 return false; 2765 2766 FieldInfo last_field_info; 2767 2768 ModuleSP module_sp = parent_die.GetDWARF()->GetObjectFile()->GetModule(); 2769 TypeSystemClang *ast = 2770 llvm::dyn_cast_or_null<TypeSystemClang>(class_clang_type.GetTypeSystem()); 2771 if (ast == nullptr) 2772 return false; 2773 2774 for (DWARFDIE die = parent_die.GetFirstChild(); die.IsValid(); 2775 die = die.GetSibling()) { 2776 dw_tag_t tag = die.Tag(); 2777 2778 switch (tag) { 2779 case DW_TAG_member: 2780 case DW_TAG_APPLE_property: 2781 ParseSingleMember(die, parent_die, class_clang_type, class_language, 2782 member_accessibilities, default_accessibility, 2783 delayed_properties, layout_info, last_field_info); 2784 break; 2785 2786 case DW_TAG_subprogram: 2787 // Let the type parsing code handle this one for us. 2788 member_function_dies.push_back(die); 2789 break; 2790 2791 case DW_TAG_inheritance: { 2792 is_a_class = true; 2793 if (default_accessibility == eAccessNone) 2794 default_accessibility = eAccessPrivate; 2795 // TODO: implement DW_TAG_inheritance type parsing 2796 DWARFAttributes attributes; 2797 const size_t num_attributes = die.GetAttributes(attributes); 2798 if (num_attributes > 0) { 2799 DWARFFormValue encoding_form; 2800 AccessType accessibility = default_accessibility; 2801 bool is_virtual = false; 2802 bool is_base_of_class = true; 2803 off_t member_byte_offset = 0; 2804 uint32_t i; 2805 for (i = 0; i < num_attributes; ++i) { 2806 const dw_attr_t attr = attributes.AttributeAtIndex(i); 2807 DWARFFormValue form_value; 2808 if (attributes.ExtractFormValueAtIndex(i, form_value)) { 2809 switch (attr) { 2810 case DW_AT_type: 2811 encoding_form = form_value; 2812 break; 2813 case DW_AT_data_member_location: 2814 if (form_value.BlockData()) { 2815 Value initialValue(0); 2816 Value memberOffset(0); 2817 const DWARFDataExtractor &debug_info_data = die.GetData(); 2818 uint32_t block_length = form_value.Unsigned(); 2819 uint32_t block_offset = 2820 form_value.BlockData() - debug_info_data.GetDataStart(); 2821 if (DWARFExpression::Evaluate( 2822 nullptr, nullptr, module_sp, 2823 DataExtractor(debug_info_data, block_offset, 2824 block_length), 2825 die.GetCU(), eRegisterKindDWARF, &initialValue, nullptr, 2826 memberOffset, nullptr)) { 2827 member_byte_offset = 2828 memberOffset.ResolveValue(nullptr).UInt(); 2829 } 2830 } else { 2831 // With DWARF 3 and later, if the value is an integer constant, 2832 // this form value is the offset in bytes from the beginning of 2833 // the containing entity. 2834 member_byte_offset = form_value.Unsigned(); 2835 } 2836 break; 2837 2838 case DW_AT_accessibility: 2839 accessibility = DW_ACCESS_to_AccessType(form_value.Unsigned()); 2840 break; 2841 2842 case DW_AT_virtuality: 2843 is_virtual = form_value.Boolean(); 2844 break; 2845 2846 case DW_AT_sibling: 2847 break; 2848 2849 default: 2850 break; 2851 } 2852 } 2853 } 2854 2855 Type *base_class_type = die.ResolveTypeUID(encoding_form.Reference()); 2856 if (base_class_type == nullptr) { 2857 module_sp->ReportError("0x%8.8x: DW_TAG_inheritance failed to " 2858 "resolve the base class at 0x%8.8x" 2859 " from enclosing type 0x%8.8x. \nPlease file " 2860 "a bug and attach the file at the start of " 2861 "this error message", 2862 die.GetOffset(), 2863 encoding_form.Reference().GetOffset(), 2864 parent_die.GetOffset()); 2865 break; 2866 } 2867 2868 CompilerType base_class_clang_type = 2869 base_class_type->GetFullCompilerType(); 2870 assert(base_class_clang_type); 2871 if (class_language == eLanguageTypeObjC) { 2872 ast->SetObjCSuperClass(class_clang_type, base_class_clang_type); 2873 } else { 2874 std::unique_ptr<clang::CXXBaseSpecifier> result = 2875 ast->CreateBaseClassSpecifier( 2876 base_class_clang_type.GetOpaqueQualType(), accessibility, 2877 is_virtual, is_base_of_class); 2878 if (!result) 2879 break; 2880 2881 base_classes.push_back(std::move(result)); 2882 2883 if (is_virtual) { 2884 // Do not specify any offset for virtual inheritance. The DWARF 2885 // produced by clang doesn't give us a constant offset, but gives 2886 // us a DWARF expressions that requires an actual object in memory. 2887 // the DW_AT_data_member_location for a virtual base class looks 2888 // like: 2889 // DW_AT_data_member_location( DW_OP_dup, DW_OP_deref, 2890 // DW_OP_constu(0x00000018), DW_OP_minus, DW_OP_deref, 2891 // DW_OP_plus ) 2892 // Given this, there is really no valid response we can give to 2893 // clang for virtual base class offsets, and this should eventually 2894 // be removed from LayoutRecordType() in the external 2895 // AST source in clang. 2896 } else { 2897 layout_info.base_offsets.insert(std::make_pair( 2898 ast->GetAsCXXRecordDecl( 2899 base_class_clang_type.GetOpaqueQualType()), 2900 clang::CharUnits::fromQuantity(member_byte_offset))); 2901 } 2902 } 2903 } 2904 } break; 2905 2906 default: 2907 break; 2908 } 2909 } 2910 2911 return true; 2912 } 2913 2914 size_t DWARFASTParserClang::ParseChildParameters( 2915 clang::DeclContext *containing_decl_ctx, const DWARFDIE &parent_die, 2916 bool skip_artificial, bool &is_static, bool &is_variadic, 2917 bool &has_template_params, std::vector<CompilerType> &function_param_types, 2918 std::vector<clang::ParmVarDecl *> &function_param_decls, 2919 unsigned &type_quals) { 2920 if (!parent_die) 2921 return 0; 2922 2923 size_t arg_idx = 0; 2924 for (DWARFDIE die = parent_die.GetFirstChild(); die.IsValid(); 2925 die = die.GetSibling()) { 2926 const dw_tag_t tag = die.Tag(); 2927 switch (tag) { 2928 case DW_TAG_formal_parameter: { 2929 DWARFAttributes attributes; 2930 const size_t num_attributes = die.GetAttributes(attributes); 2931 if (num_attributes > 0) { 2932 const char *name = nullptr; 2933 DWARFFormValue param_type_die_form; 2934 bool is_artificial = false; 2935 // one of None, Auto, Register, Extern, Static, PrivateExtern 2936 2937 clang::StorageClass storage = clang::SC_None; 2938 uint32_t i; 2939 for (i = 0; i < num_attributes; ++i) { 2940 const dw_attr_t attr = attributes.AttributeAtIndex(i); 2941 DWARFFormValue form_value; 2942 if (attributes.ExtractFormValueAtIndex(i, form_value)) { 2943 switch (attr) { 2944 case DW_AT_name: 2945 name = form_value.AsCString(); 2946 break; 2947 case DW_AT_type: 2948 param_type_die_form = form_value; 2949 break; 2950 case DW_AT_artificial: 2951 is_artificial = form_value.Boolean(); 2952 break; 2953 case DW_AT_location: 2954 case DW_AT_const_value: 2955 case DW_AT_default_value: 2956 case DW_AT_description: 2957 case DW_AT_endianity: 2958 case DW_AT_is_optional: 2959 case DW_AT_segment: 2960 case DW_AT_variable_parameter: 2961 default: 2962 case DW_AT_abstract_origin: 2963 case DW_AT_sibling: 2964 break; 2965 } 2966 } 2967 } 2968 2969 bool skip = false; 2970 if (skip_artificial && is_artificial) { 2971 // In order to determine if a C++ member function is "const" we 2972 // have to look at the const-ness of "this"... 2973 if (arg_idx == 0 && 2974 DeclKindIsCXXClass(containing_decl_ctx->getDeclKind()) && 2975 // Often times compilers omit the "this" name for the 2976 // specification DIEs, so we can't rely upon the name being in 2977 // the formal parameter DIE... 2978 (name == nullptr || ::strcmp(name, "this") == 0)) { 2979 Type *this_type = 2980 die.ResolveTypeUID(param_type_die_form.Reference()); 2981 if (this_type) { 2982 uint32_t encoding_mask = this_type->GetEncodingMask(); 2983 if (encoding_mask & Type::eEncodingIsPointerUID) { 2984 is_static = false; 2985 2986 if (encoding_mask & (1u << Type::eEncodingIsConstUID)) 2987 type_quals |= clang::Qualifiers::Const; 2988 if (encoding_mask & (1u << Type::eEncodingIsVolatileUID)) 2989 type_quals |= clang::Qualifiers::Volatile; 2990 } 2991 } 2992 } 2993 skip = true; 2994 } 2995 2996 if (!skip) { 2997 Type *type = die.ResolveTypeUID(param_type_die_form.Reference()); 2998 if (type) { 2999 function_param_types.push_back(type->GetForwardCompilerType()); 3000 3001 clang::ParmVarDecl *param_var_decl = 3002 m_ast.CreateParameterDeclaration( 3003 containing_decl_ctx, GetOwningClangModule(die), name, 3004 type->GetForwardCompilerType(), storage); 3005 assert(param_var_decl); 3006 function_param_decls.push_back(param_var_decl); 3007 3008 m_ast.SetMetadataAsUserID(param_var_decl, die.GetID()); 3009 } 3010 } 3011 } 3012 arg_idx++; 3013 } break; 3014 3015 case DW_TAG_unspecified_parameters: 3016 is_variadic = true; 3017 break; 3018 3019 case DW_TAG_template_type_parameter: 3020 case DW_TAG_template_value_parameter: 3021 case DW_TAG_GNU_template_parameter_pack: 3022 // The one caller of this was never using the template_param_infos, and 3023 // the local variable was taking up a large amount of stack space in 3024 // SymbolFileDWARF::ParseType() so this was removed. If we ever need the 3025 // template params back, we can add them back. 3026 // ParseTemplateDIE (dwarf_cu, die, template_param_infos); 3027 has_template_params = true; 3028 break; 3029 3030 default: 3031 break; 3032 } 3033 } 3034 return arg_idx; 3035 } 3036 3037 llvm::Optional<SymbolFile::ArrayInfo> 3038 DWARFASTParser::ParseChildArrayInfo(const DWARFDIE &parent_die, 3039 const ExecutionContext *exe_ctx) { 3040 SymbolFile::ArrayInfo array_info; 3041 if (!parent_die) 3042 return llvm::None; 3043 3044 for (DWARFDIE die = parent_die.GetFirstChild(); die.IsValid(); 3045 die = die.GetSibling()) { 3046 const dw_tag_t tag = die.Tag(); 3047 switch (tag) { 3048 case DW_TAG_subrange_type: { 3049 DWARFAttributes attributes; 3050 const size_t num_child_attributes = die.GetAttributes(attributes); 3051 if (num_child_attributes > 0) { 3052 uint64_t num_elements = 0; 3053 uint64_t lower_bound = 0; 3054 uint64_t upper_bound = 0; 3055 bool upper_bound_valid = false; 3056 uint32_t i; 3057 for (i = 0; i < num_child_attributes; ++i) { 3058 const dw_attr_t attr = attributes.AttributeAtIndex(i); 3059 DWARFFormValue form_value; 3060 if (attributes.ExtractFormValueAtIndex(i, form_value)) { 3061 switch (attr) { 3062 case DW_AT_name: 3063 break; 3064 3065 case DW_AT_count: 3066 if (DWARFDIE var_die = die.GetReferencedDIE(DW_AT_count)) { 3067 if (var_die.Tag() == DW_TAG_variable) 3068 if (exe_ctx) { 3069 if (auto frame = exe_ctx->GetFrameSP()) { 3070 Status error; 3071 lldb::VariableSP var_sp; 3072 auto valobj_sp = frame->GetValueForVariableExpressionPath( 3073 var_die.GetName(), eNoDynamicValues, 0, var_sp, 3074 error); 3075 if (valobj_sp) { 3076 num_elements = valobj_sp->GetValueAsUnsigned(0); 3077 break; 3078 } 3079 } 3080 } 3081 } else 3082 num_elements = form_value.Unsigned(); 3083 break; 3084 3085 case DW_AT_bit_stride: 3086 array_info.bit_stride = form_value.Unsigned(); 3087 break; 3088 3089 case DW_AT_byte_stride: 3090 array_info.byte_stride = form_value.Unsigned(); 3091 break; 3092 3093 case DW_AT_lower_bound: 3094 lower_bound = form_value.Unsigned(); 3095 break; 3096 3097 case DW_AT_upper_bound: 3098 upper_bound_valid = true; 3099 upper_bound = form_value.Unsigned(); 3100 break; 3101 3102 default: 3103 case DW_AT_abstract_origin: 3104 case DW_AT_accessibility: 3105 case DW_AT_allocated: 3106 case DW_AT_associated: 3107 case DW_AT_data_location: 3108 case DW_AT_declaration: 3109 case DW_AT_description: 3110 case DW_AT_sibling: 3111 case DW_AT_threads_scaled: 3112 case DW_AT_type: 3113 case DW_AT_visibility: 3114 break; 3115 } 3116 } 3117 } 3118 3119 if (num_elements == 0) { 3120 if (upper_bound_valid && upper_bound >= lower_bound) 3121 num_elements = upper_bound - lower_bound + 1; 3122 } 3123 3124 array_info.element_orders.push_back(num_elements); 3125 } 3126 } break; 3127 default: 3128 break; 3129 } 3130 } 3131 return array_info; 3132 } 3133 3134 Type *DWARFASTParserClang::GetTypeForDIE(const DWARFDIE &die) { 3135 if (die) { 3136 SymbolFileDWARF *dwarf = die.GetDWARF(); 3137 DWARFAttributes attributes; 3138 const size_t num_attributes = die.GetAttributes(attributes); 3139 if (num_attributes > 0) { 3140 DWARFFormValue type_die_form; 3141 for (size_t i = 0; i < num_attributes; ++i) { 3142 dw_attr_t attr = attributes.AttributeAtIndex(i); 3143 DWARFFormValue form_value; 3144 3145 if (attr == DW_AT_type && 3146 attributes.ExtractFormValueAtIndex(i, form_value)) 3147 return dwarf->ResolveTypeUID(form_value.Reference(), true); 3148 } 3149 } 3150 } 3151 3152 return nullptr; 3153 } 3154 3155 clang::Decl *DWARFASTParserClang::GetClangDeclForDIE(const DWARFDIE &die) { 3156 if (!die) 3157 return nullptr; 3158 3159 switch (die.Tag()) { 3160 case DW_TAG_variable: 3161 case DW_TAG_constant: 3162 case DW_TAG_formal_parameter: 3163 case DW_TAG_imported_declaration: 3164 case DW_TAG_imported_module: 3165 break; 3166 default: 3167 return nullptr; 3168 } 3169 3170 DIEToDeclMap::iterator cache_pos = m_die_to_decl.find(die.GetDIE()); 3171 if (cache_pos != m_die_to_decl.end()) 3172 return cache_pos->second; 3173 3174 if (DWARFDIE spec_die = die.GetReferencedDIE(DW_AT_specification)) { 3175 clang::Decl *decl = GetClangDeclForDIE(spec_die); 3176 m_die_to_decl[die.GetDIE()] = decl; 3177 m_decl_to_die[decl].insert(die.GetDIE()); 3178 return decl; 3179 } 3180 3181 if (DWARFDIE abstract_origin_die = 3182 die.GetReferencedDIE(DW_AT_abstract_origin)) { 3183 clang::Decl *decl = GetClangDeclForDIE(abstract_origin_die); 3184 m_die_to_decl[die.GetDIE()] = decl; 3185 m_decl_to_die[decl].insert(die.GetDIE()); 3186 return decl; 3187 } 3188 3189 clang::Decl *decl = nullptr; 3190 switch (die.Tag()) { 3191 case DW_TAG_variable: 3192 case DW_TAG_constant: 3193 case DW_TAG_formal_parameter: { 3194 SymbolFileDWARF *dwarf = die.GetDWARF(); 3195 Type *type = GetTypeForDIE(die); 3196 if (dwarf && type) { 3197 const char *name = die.GetName(); 3198 clang::DeclContext *decl_context = 3199 TypeSystemClang::DeclContextGetAsDeclContext( 3200 dwarf->GetDeclContextContainingUID(die.GetID())); 3201 decl = m_ast.CreateVariableDeclaration( 3202 decl_context, GetOwningClangModule(die), name, 3203 ClangUtil::GetQualType(type->GetForwardCompilerType())); 3204 } 3205 break; 3206 } 3207 case DW_TAG_imported_declaration: { 3208 SymbolFileDWARF *dwarf = die.GetDWARF(); 3209 DWARFDIE imported_uid = die.GetAttributeValueAsReferenceDIE(DW_AT_import); 3210 if (imported_uid) { 3211 CompilerDecl imported_decl = SymbolFileDWARF::GetDecl(imported_uid); 3212 if (imported_decl) { 3213 clang::DeclContext *decl_context = 3214 TypeSystemClang::DeclContextGetAsDeclContext( 3215 dwarf->GetDeclContextContainingUID(die.GetID())); 3216 if (clang::NamedDecl *clang_imported_decl = 3217 llvm::dyn_cast<clang::NamedDecl>( 3218 (clang::Decl *)imported_decl.GetOpaqueDecl())) 3219 decl = m_ast.CreateUsingDeclaration( 3220 decl_context, OptionalClangModuleID(), clang_imported_decl); 3221 } 3222 } 3223 break; 3224 } 3225 case DW_TAG_imported_module: { 3226 SymbolFileDWARF *dwarf = die.GetDWARF(); 3227 DWARFDIE imported_uid = die.GetAttributeValueAsReferenceDIE(DW_AT_import); 3228 3229 if (imported_uid) { 3230 CompilerDeclContext imported_decl_ctx = 3231 SymbolFileDWARF::GetDeclContext(imported_uid); 3232 if (imported_decl_ctx) { 3233 clang::DeclContext *decl_context = 3234 TypeSystemClang::DeclContextGetAsDeclContext( 3235 dwarf->GetDeclContextContainingUID(die.GetID())); 3236 if (clang::NamespaceDecl *ns_decl = 3237 TypeSystemClang::DeclContextGetAsNamespaceDecl( 3238 imported_decl_ctx)) 3239 decl = m_ast.CreateUsingDirectiveDeclaration( 3240 decl_context, OptionalClangModuleID(), ns_decl); 3241 } 3242 } 3243 break; 3244 } 3245 default: 3246 break; 3247 } 3248 3249 m_die_to_decl[die.GetDIE()] = decl; 3250 m_decl_to_die[decl].insert(die.GetDIE()); 3251 3252 return decl; 3253 } 3254 3255 clang::DeclContext * 3256 DWARFASTParserClang::GetClangDeclContextForDIE(const DWARFDIE &die) { 3257 if (die) { 3258 clang::DeclContext *decl_ctx = GetCachedClangDeclContextForDIE(die); 3259 if (decl_ctx) 3260 return decl_ctx; 3261 3262 bool try_parsing_type = true; 3263 switch (die.Tag()) { 3264 case DW_TAG_compile_unit: 3265 case DW_TAG_partial_unit: 3266 decl_ctx = m_ast.GetTranslationUnitDecl(); 3267 try_parsing_type = false; 3268 break; 3269 3270 case DW_TAG_namespace: 3271 decl_ctx = ResolveNamespaceDIE(die); 3272 try_parsing_type = false; 3273 break; 3274 3275 case DW_TAG_lexical_block: 3276 decl_ctx = GetDeclContextForBlock(die); 3277 try_parsing_type = false; 3278 break; 3279 3280 default: 3281 break; 3282 } 3283 3284 if (decl_ctx == nullptr && try_parsing_type) { 3285 Type *type = die.GetDWARF()->ResolveType(die); 3286 if (type) 3287 decl_ctx = GetCachedClangDeclContextForDIE(die); 3288 } 3289 3290 if (decl_ctx) { 3291 LinkDeclContextToDIE(decl_ctx, die); 3292 return decl_ctx; 3293 } 3294 } 3295 return nullptr; 3296 } 3297 3298 OptionalClangModuleID 3299 DWARFASTParserClang::GetOwningClangModule(const DWARFDIE &die) { 3300 if (!die.IsValid()) 3301 return {}; 3302 3303 for (DWARFDIE parent = die.GetParent(); parent.IsValid(); 3304 parent = parent.GetParent()) { 3305 const dw_tag_t tag = parent.Tag(); 3306 if (tag == DW_TAG_module) { 3307 DWARFDIE module_die = parent; 3308 auto it = m_die_to_module.find(module_die.GetDIE()); 3309 if (it != m_die_to_module.end()) 3310 return it->second; 3311 const char *name = module_die.GetAttributeValueAsString(DW_AT_name, 0); 3312 if (!name) 3313 return {}; 3314 3315 OptionalClangModuleID id = 3316 m_ast.GetOrCreateClangModule(name, GetOwningClangModule(module_die)); 3317 m_die_to_module.insert({module_die.GetDIE(), id}); 3318 return id; 3319 } 3320 } 3321 return {}; 3322 } 3323 3324 static bool IsSubroutine(const DWARFDIE &die) { 3325 switch (die.Tag()) { 3326 case DW_TAG_subprogram: 3327 case DW_TAG_inlined_subroutine: 3328 return true; 3329 default: 3330 return false; 3331 } 3332 } 3333 3334 static DWARFDIE GetContainingFunctionWithAbstractOrigin(const DWARFDIE &die) { 3335 for (DWARFDIE candidate = die; candidate; candidate = candidate.GetParent()) { 3336 if (IsSubroutine(candidate)) { 3337 if (candidate.GetReferencedDIE(DW_AT_abstract_origin)) { 3338 return candidate; 3339 } else { 3340 return DWARFDIE(); 3341 } 3342 } 3343 } 3344 assert(0 && "Shouldn't call GetContainingFunctionWithAbstractOrigin on " 3345 "something not in a function"); 3346 return DWARFDIE(); 3347 } 3348 3349 static DWARFDIE FindAnyChildWithAbstractOrigin(const DWARFDIE &context) { 3350 for (DWARFDIE candidate = context.GetFirstChild(); candidate.IsValid(); 3351 candidate = candidate.GetSibling()) { 3352 if (candidate.GetReferencedDIE(DW_AT_abstract_origin)) { 3353 return candidate; 3354 } 3355 } 3356 return DWARFDIE(); 3357 } 3358 3359 static DWARFDIE FindFirstChildWithAbstractOrigin(const DWARFDIE &block, 3360 const DWARFDIE &function) { 3361 assert(IsSubroutine(function)); 3362 for (DWARFDIE context = block; context != function.GetParent(); 3363 context = context.GetParent()) { 3364 assert(!IsSubroutine(context) || context == function); 3365 if (DWARFDIE child = FindAnyChildWithAbstractOrigin(context)) { 3366 return child; 3367 } 3368 } 3369 return DWARFDIE(); 3370 } 3371 3372 clang::DeclContext * 3373 DWARFASTParserClang::GetDeclContextForBlock(const DWARFDIE &die) { 3374 assert(die.Tag() == DW_TAG_lexical_block); 3375 DWARFDIE containing_function_with_abstract_origin = 3376 GetContainingFunctionWithAbstractOrigin(die); 3377 if (!containing_function_with_abstract_origin) { 3378 return (clang::DeclContext *)ResolveBlockDIE(die); 3379 } 3380 DWARFDIE child = FindFirstChildWithAbstractOrigin( 3381 die, containing_function_with_abstract_origin); 3382 CompilerDeclContext decl_context = 3383 GetDeclContextContainingUIDFromDWARF(child); 3384 return (clang::DeclContext *)decl_context.GetOpaqueDeclContext(); 3385 } 3386 3387 clang::BlockDecl *DWARFASTParserClang::ResolveBlockDIE(const DWARFDIE &die) { 3388 if (die && die.Tag() == DW_TAG_lexical_block) { 3389 clang::BlockDecl *decl = 3390 llvm::cast_or_null<clang::BlockDecl>(m_die_to_decl_ctx[die.GetDIE()]); 3391 3392 if (!decl) { 3393 DWARFDIE decl_context_die; 3394 clang::DeclContext *decl_context = 3395 GetClangDeclContextContainingDIE(die, &decl_context_die); 3396 decl = 3397 m_ast.CreateBlockDeclaration(decl_context, GetOwningClangModule(die)); 3398 3399 if (decl) 3400 LinkDeclContextToDIE((clang::DeclContext *)decl, die); 3401 } 3402 3403 return decl; 3404 } 3405 return nullptr; 3406 } 3407 3408 clang::NamespaceDecl * 3409 DWARFASTParserClang::ResolveNamespaceDIE(const DWARFDIE &die) { 3410 if (die && die.Tag() == DW_TAG_namespace) { 3411 // See if we already parsed this namespace DIE and associated it with a 3412 // uniqued namespace declaration 3413 clang::NamespaceDecl *namespace_decl = 3414 static_cast<clang::NamespaceDecl *>(m_die_to_decl_ctx[die.GetDIE()]); 3415 if (namespace_decl) 3416 return namespace_decl; 3417 else { 3418 const char *namespace_name = die.GetName(); 3419 clang::DeclContext *containing_decl_ctx = 3420 GetClangDeclContextContainingDIE(die, nullptr); 3421 bool is_inline = 3422 die.GetAttributeValueAsUnsigned(DW_AT_export_symbols, 0) != 0; 3423 3424 namespace_decl = m_ast.GetUniqueNamespaceDeclaration( 3425 namespace_name, containing_decl_ctx, GetOwningClangModule(die), 3426 is_inline); 3427 Log *log = 3428 nullptr; // (LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO)); 3429 if (log) { 3430 SymbolFileDWARF *dwarf = die.GetDWARF(); 3431 if (namespace_name) { 3432 dwarf->GetObjectFile()->GetModule()->LogMessage( 3433 log, 3434 "ASTContext => %p: 0x%8.8" PRIx64 3435 ": DW_TAG_namespace with DW_AT_name(\"%s\") => " 3436 "clang::NamespaceDecl *%p (original = %p)", 3437 static_cast<void *>(&m_ast.getASTContext()), die.GetID(), 3438 namespace_name, static_cast<void *>(namespace_decl), 3439 static_cast<void *>(namespace_decl->getOriginalNamespace())); 3440 } else { 3441 dwarf->GetObjectFile()->GetModule()->LogMessage( 3442 log, 3443 "ASTContext => %p: 0x%8.8" PRIx64 3444 ": DW_TAG_namespace (anonymous) => clang::NamespaceDecl *%p " 3445 "(original = %p)", 3446 static_cast<void *>(&m_ast.getASTContext()), die.GetID(), 3447 static_cast<void *>(namespace_decl), 3448 static_cast<void *>(namespace_decl->getOriginalNamespace())); 3449 } 3450 } 3451 3452 if (namespace_decl) 3453 LinkDeclContextToDIE((clang::DeclContext *)namespace_decl, die); 3454 return namespace_decl; 3455 } 3456 } 3457 return nullptr; 3458 } 3459 3460 clang::DeclContext *DWARFASTParserClang::GetClangDeclContextContainingDIE( 3461 const DWARFDIE &die, DWARFDIE *decl_ctx_die_copy) { 3462 SymbolFileDWARF *dwarf = die.GetDWARF(); 3463 3464 DWARFDIE decl_ctx_die = dwarf->GetDeclContextDIEContainingDIE(die); 3465 3466 if (decl_ctx_die_copy) 3467 *decl_ctx_die_copy = decl_ctx_die; 3468 3469 if (decl_ctx_die) { 3470 clang::DeclContext *clang_decl_ctx = 3471 GetClangDeclContextForDIE(decl_ctx_die); 3472 if (clang_decl_ctx) 3473 return clang_decl_ctx; 3474 } 3475 return m_ast.GetTranslationUnitDecl(); 3476 } 3477 3478 clang::DeclContext * 3479 DWARFASTParserClang::GetCachedClangDeclContextForDIE(const DWARFDIE &die) { 3480 if (die) { 3481 DIEToDeclContextMap::iterator pos = m_die_to_decl_ctx.find(die.GetDIE()); 3482 if (pos != m_die_to_decl_ctx.end()) 3483 return pos->second; 3484 } 3485 return nullptr; 3486 } 3487 3488 void DWARFASTParserClang::LinkDeclContextToDIE(clang::DeclContext *decl_ctx, 3489 const DWARFDIE &die) { 3490 m_die_to_decl_ctx[die.GetDIE()] = decl_ctx; 3491 // There can be many DIEs for a single decl context 3492 // m_decl_ctx_to_die[decl_ctx].insert(die.GetDIE()); 3493 m_decl_ctx_to_die.insert(std::make_pair(decl_ctx, die)); 3494 } 3495 3496 bool DWARFASTParserClang::CopyUniqueClassMethodTypes( 3497 const DWARFDIE &src_class_die, const DWARFDIE &dst_class_die, 3498 lldb_private::Type *class_type, std::vector<DWARFDIE> &failures) { 3499 if (!class_type || !src_class_die || !dst_class_die) 3500 return false; 3501 if (src_class_die.Tag() != dst_class_die.Tag()) 3502 return false; 3503 3504 // We need to complete the class type so we can get all of the method types 3505 // parsed so we can then unique those types to their equivalent counterparts 3506 // in "dst_cu" and "dst_class_die" 3507 class_type->GetFullCompilerType(); 3508 3509 DWARFDIE src_die; 3510 DWARFDIE dst_die; 3511 UniqueCStringMap<DWARFDIE> src_name_to_die; 3512 UniqueCStringMap<DWARFDIE> dst_name_to_die; 3513 UniqueCStringMap<DWARFDIE> src_name_to_die_artificial; 3514 UniqueCStringMap<DWARFDIE> dst_name_to_die_artificial; 3515 for (src_die = src_class_die.GetFirstChild(); src_die.IsValid(); 3516 src_die = src_die.GetSibling()) { 3517 if (src_die.Tag() == DW_TAG_subprogram) { 3518 // Make sure this is a declaration and not a concrete instance by looking 3519 // for DW_AT_declaration set to 1. Sometimes concrete function instances 3520 // are placed inside the class definitions and shouldn't be included in 3521 // the list of things are are tracking here. 3522 if (src_die.GetAttributeValueAsUnsigned(DW_AT_declaration, 0) == 1) { 3523 const char *src_name = src_die.GetMangledName(); 3524 if (src_name) { 3525 ConstString src_const_name(src_name); 3526 if (src_die.GetAttributeValueAsUnsigned(DW_AT_artificial, 0)) 3527 src_name_to_die_artificial.Append(src_const_name, src_die); 3528 else 3529 src_name_to_die.Append(src_const_name, src_die); 3530 } 3531 } 3532 } 3533 } 3534 for (dst_die = dst_class_die.GetFirstChild(); dst_die.IsValid(); 3535 dst_die = dst_die.GetSibling()) { 3536 if (dst_die.Tag() == DW_TAG_subprogram) { 3537 // Make sure this is a declaration and not a concrete instance by looking 3538 // for DW_AT_declaration set to 1. Sometimes concrete function instances 3539 // are placed inside the class definitions and shouldn't be included in 3540 // the list of things are are tracking here. 3541 if (dst_die.GetAttributeValueAsUnsigned(DW_AT_declaration, 0) == 1) { 3542 const char *dst_name = dst_die.GetMangledName(); 3543 if (dst_name) { 3544 ConstString dst_const_name(dst_name); 3545 if (dst_die.GetAttributeValueAsUnsigned(DW_AT_artificial, 0)) 3546 dst_name_to_die_artificial.Append(dst_const_name, dst_die); 3547 else 3548 dst_name_to_die.Append(dst_const_name, dst_die); 3549 } 3550 } 3551 } 3552 } 3553 const uint32_t src_size = src_name_to_die.GetSize(); 3554 const uint32_t dst_size = dst_name_to_die.GetSize(); 3555 Log *log = nullptr; // (LogChannelDWARF::GetLogIfAny(DWARF_LOG_DEBUG_INFO | 3556 // DWARF_LOG_TYPE_COMPLETION)); 3557 3558 // Is everything kosher so we can go through the members at top speed? 3559 bool fast_path = true; 3560 3561 if (src_size != dst_size) { 3562 if (src_size != 0 && dst_size != 0) { 3563 LLDB_LOGF(log, 3564 "warning: trying to unique class DIE 0x%8.8x to 0x%8.8x, " 3565 "but they didn't have the same size (src=%d, dst=%d)", 3566 src_class_die.GetOffset(), dst_class_die.GetOffset(), src_size, 3567 dst_size); 3568 } 3569 3570 fast_path = false; 3571 } 3572 3573 uint32_t idx; 3574 3575 if (fast_path) { 3576 for (idx = 0; idx < src_size; ++idx) { 3577 src_die = src_name_to_die.GetValueAtIndexUnchecked(idx); 3578 dst_die = dst_name_to_die.GetValueAtIndexUnchecked(idx); 3579 3580 if (src_die.Tag() != dst_die.Tag()) { 3581 LLDB_LOGF(log, 3582 "warning: tried to unique class DIE 0x%8.8x to 0x%8.8x, " 3583 "but 0x%8.8x (%s) tags didn't match 0x%8.8x (%s)", 3584 src_class_die.GetOffset(), dst_class_die.GetOffset(), 3585 src_die.GetOffset(), src_die.GetTagAsCString(), 3586 dst_die.GetOffset(), dst_die.GetTagAsCString()); 3587 fast_path = false; 3588 } 3589 3590 const char *src_name = src_die.GetMangledName(); 3591 const char *dst_name = dst_die.GetMangledName(); 3592 3593 // Make sure the names match 3594 if (src_name == dst_name || (strcmp(src_name, dst_name) == 0)) 3595 continue; 3596 3597 LLDB_LOGF(log, 3598 "warning: tried to unique class DIE 0x%8.8x to 0x%8.8x, " 3599 "but 0x%8.8x (%s) names didn't match 0x%8.8x (%s)", 3600 src_class_die.GetOffset(), dst_class_die.GetOffset(), 3601 src_die.GetOffset(), src_name, dst_die.GetOffset(), dst_name); 3602 3603 fast_path = false; 3604 } 3605 } 3606 3607 DWARFASTParserClang *src_dwarf_ast_parser = 3608 static_cast<DWARFASTParserClang *>( 3609 SymbolFileDWARF::GetDWARFParser(*src_die.GetCU())); 3610 DWARFASTParserClang *dst_dwarf_ast_parser = 3611 static_cast<DWARFASTParserClang *>( 3612 SymbolFileDWARF::GetDWARFParser(*dst_die.GetCU())); 3613 3614 // Now do the work of linking the DeclContexts and Types. 3615 if (fast_path) { 3616 // We can do this quickly. Just run across the tables index-for-index 3617 // since we know each node has matching names and tags. 3618 for (idx = 0; idx < src_size; ++idx) { 3619 src_die = src_name_to_die.GetValueAtIndexUnchecked(idx); 3620 dst_die = dst_name_to_die.GetValueAtIndexUnchecked(idx); 3621 3622 clang::DeclContext *src_decl_ctx = 3623 src_dwarf_ast_parser->m_die_to_decl_ctx[src_die.GetDIE()]; 3624 if (src_decl_ctx) { 3625 LLDB_LOGF(log, "uniquing decl context %p from 0x%8.8x for 0x%8.8x", 3626 static_cast<void *>(src_decl_ctx), src_die.GetOffset(), 3627 dst_die.GetOffset()); 3628 dst_dwarf_ast_parser->LinkDeclContextToDIE(src_decl_ctx, dst_die); 3629 } else { 3630 LLDB_LOGF(log, 3631 "warning: tried to unique decl context from 0x%8.8x for " 3632 "0x%8.8x, but none was found", 3633 src_die.GetOffset(), dst_die.GetOffset()); 3634 } 3635 3636 Type *src_child_type = 3637 dst_die.GetDWARF()->GetDIEToType()[src_die.GetDIE()]; 3638 if (src_child_type) { 3639 LLDB_LOGF(log, 3640 "uniquing type %p (uid=0x%" PRIx64 3641 ") from 0x%8.8x for 0x%8.8x", 3642 static_cast<void *>(src_child_type), src_child_type->GetID(), 3643 src_die.GetOffset(), dst_die.GetOffset()); 3644 dst_die.GetDWARF()->GetDIEToType()[dst_die.GetDIE()] = src_child_type; 3645 } else { 3646 LLDB_LOGF(log, 3647 "warning: tried to unique lldb_private::Type from " 3648 "0x%8.8x for 0x%8.8x, but none was found", 3649 src_die.GetOffset(), dst_die.GetOffset()); 3650 } 3651 } 3652 } else { 3653 // We must do this slowly. For each member of the destination, look up a 3654 // member in the source with the same name, check its tag, and unique them 3655 // if everything matches up. Report failures. 3656 3657 if (!src_name_to_die.IsEmpty() && !dst_name_to_die.IsEmpty()) { 3658 src_name_to_die.Sort(); 3659 3660 for (idx = 0; idx < dst_size; ++idx) { 3661 ConstString dst_name = dst_name_to_die.GetCStringAtIndex(idx); 3662 dst_die = dst_name_to_die.GetValueAtIndexUnchecked(idx); 3663 src_die = src_name_to_die.Find(dst_name, DWARFDIE()); 3664 3665 if (src_die && (src_die.Tag() == dst_die.Tag())) { 3666 clang::DeclContext *src_decl_ctx = 3667 src_dwarf_ast_parser->m_die_to_decl_ctx[src_die.GetDIE()]; 3668 if (src_decl_ctx) { 3669 LLDB_LOGF(log, "uniquing decl context %p from 0x%8.8x for 0x%8.8x", 3670 static_cast<void *>(src_decl_ctx), src_die.GetOffset(), 3671 dst_die.GetOffset()); 3672 dst_dwarf_ast_parser->LinkDeclContextToDIE(src_decl_ctx, dst_die); 3673 } else { 3674 LLDB_LOGF(log, 3675 "warning: tried to unique decl context from 0x%8.8x " 3676 "for 0x%8.8x, but none was found", 3677 src_die.GetOffset(), dst_die.GetOffset()); 3678 } 3679 3680 Type *src_child_type = 3681 dst_die.GetDWARF()->GetDIEToType()[src_die.GetDIE()]; 3682 if (src_child_type) { 3683 LLDB_LOGF( 3684 log, 3685 "uniquing type %p (uid=0x%" PRIx64 ") from 0x%8.8x for 0x%8.8x", 3686 static_cast<void *>(src_child_type), src_child_type->GetID(), 3687 src_die.GetOffset(), dst_die.GetOffset()); 3688 dst_die.GetDWARF()->GetDIEToType()[dst_die.GetDIE()] = 3689 src_child_type; 3690 } else { 3691 LLDB_LOGF(log, 3692 "warning: tried to unique lldb_private::Type from " 3693 "0x%8.8x for 0x%8.8x, but none was found", 3694 src_die.GetOffset(), dst_die.GetOffset()); 3695 } 3696 } else { 3697 LLDB_LOGF(log, "warning: couldn't find a match for 0x%8.8x", 3698 dst_die.GetOffset()); 3699 3700 failures.push_back(dst_die); 3701 } 3702 } 3703 } 3704 } 3705 3706 const uint32_t src_size_artificial = src_name_to_die_artificial.GetSize(); 3707 const uint32_t dst_size_artificial = dst_name_to_die_artificial.GetSize(); 3708 3709 if (src_size_artificial && dst_size_artificial) { 3710 dst_name_to_die_artificial.Sort(); 3711 3712 for (idx = 0; idx < src_size_artificial; ++idx) { 3713 ConstString src_name_artificial = 3714 src_name_to_die_artificial.GetCStringAtIndex(idx); 3715 src_die = src_name_to_die_artificial.GetValueAtIndexUnchecked(idx); 3716 dst_die = 3717 dst_name_to_die_artificial.Find(src_name_artificial, DWARFDIE()); 3718 3719 if (dst_die) { 3720 // Both classes have the artificial types, link them 3721 clang::DeclContext *src_decl_ctx = 3722 src_dwarf_ast_parser->m_die_to_decl_ctx[src_die.GetDIE()]; 3723 if (src_decl_ctx) { 3724 LLDB_LOGF(log, "uniquing decl context %p from 0x%8.8x for 0x%8.8x", 3725 static_cast<void *>(src_decl_ctx), src_die.GetOffset(), 3726 dst_die.GetOffset()); 3727 dst_dwarf_ast_parser->LinkDeclContextToDIE(src_decl_ctx, dst_die); 3728 } else { 3729 LLDB_LOGF(log, 3730 "warning: tried to unique decl context from 0x%8.8x " 3731 "for 0x%8.8x, but none was found", 3732 src_die.GetOffset(), dst_die.GetOffset()); 3733 } 3734 3735 Type *src_child_type = 3736 dst_die.GetDWARF()->GetDIEToType()[src_die.GetDIE()]; 3737 if (src_child_type) { 3738 LLDB_LOGF( 3739 log, 3740 "uniquing type %p (uid=0x%" PRIx64 ") from 0x%8.8x for 0x%8.8x", 3741 static_cast<void *>(src_child_type), src_child_type->GetID(), 3742 src_die.GetOffset(), dst_die.GetOffset()); 3743 dst_die.GetDWARF()->GetDIEToType()[dst_die.GetDIE()] = src_child_type; 3744 } else { 3745 LLDB_LOGF(log, 3746 "warning: tried to unique lldb_private::Type from " 3747 "0x%8.8x for 0x%8.8x, but none was found", 3748 src_die.GetOffset(), dst_die.GetOffset()); 3749 } 3750 } 3751 } 3752 } 3753 3754 if (dst_size_artificial) { 3755 for (idx = 0; idx < dst_size_artificial; ++idx) { 3756 ConstString dst_name_artificial = 3757 dst_name_to_die_artificial.GetCStringAtIndex(idx); 3758 dst_die = dst_name_to_die_artificial.GetValueAtIndexUnchecked(idx); 3759 LLDB_LOGF(log, 3760 "warning: need to create artificial method for 0x%8.8x for " 3761 "method '%s'", 3762 dst_die.GetOffset(), dst_name_artificial.GetCString()); 3763 3764 failures.push_back(dst_die); 3765 } 3766 } 3767 3768 return !failures.empty(); 3769 } 3770