1 //===-- SymbolFileDWARFDebugMap.cpp -----------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 // C Includes 11 // C++ Includes 12 // Other libraries and framework includes 13 // Project includes 14 #include "SymbolFileDWARFDebugMap.h" 15 16 #include "DWARFDebugAranges.h" 17 18 #include "lldb/Core/Module.h" 19 #include "lldb/Core/ModuleList.h" 20 #include "lldb/Core/PluginManager.h" 21 #include "lldb/Core/RangeMap.h" 22 #include "lldb/Core/RegularExpression.h" 23 #include "lldb/Core/Section.h" 24 25 //#define DEBUG_OSO_DMAP // DO NOT CHECKIN WITH THIS NOT COMMENTED OUT 26 #if defined(DEBUG_OSO_DMAP) 27 #include "lldb/Core/StreamFile.h" 28 #endif 29 #include "lldb/Core/Timer.h" 30 31 #include "lldb/Symbol/CompileUnit.h" 32 #include "lldb/Symbol/LineTable.h" 33 #include "lldb/Symbol/ObjectFile.h" 34 #include "lldb/Symbol/SymbolVendor.h" 35 #include "lldb/Symbol/TypeMap.h" 36 #include "lldb/Symbol/VariableList.h" 37 38 #include "LogChannelDWARF.h" 39 #include "SymbolFileDWARF.h" 40 41 using namespace lldb; 42 using namespace lldb_private; 43 44 // Subclass lldb_private::Module so we can intercept the 45 // "Module::GetObjectFile()" 46 // (so we can fixup the object file sections) and also for 47 // "Module::GetSymbolVendor()" 48 // (so we can fixup the symbol file id. 49 50 const SymbolFileDWARFDebugMap::FileRangeMap & 51 SymbolFileDWARFDebugMap::CompileUnitInfo::GetFileRangeMap( 52 SymbolFileDWARFDebugMap *exe_symfile) { 53 if (file_range_map_valid) 54 return file_range_map; 55 56 file_range_map_valid = true; 57 58 Module *oso_module = exe_symfile->GetModuleByCompUnitInfo(this); 59 if (!oso_module) 60 return file_range_map; 61 62 ObjectFile *oso_objfile = oso_module->GetObjectFile(); 63 if (!oso_objfile) 64 return file_range_map; 65 66 Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_MAP)); 67 if (log) { 68 ConstString object_name(oso_module->GetObjectName()); 69 log->Printf( 70 "%p: SymbolFileDWARFDebugMap::CompileUnitInfo::GetFileRangeMap ('%s')", 71 static_cast<void *>(this), 72 oso_module->GetSpecificationDescription().c_str()); 73 } 74 75 std::vector<SymbolFileDWARFDebugMap::CompileUnitInfo *> cu_infos; 76 if (exe_symfile->GetCompUnitInfosForModule(oso_module, cu_infos)) { 77 for (auto comp_unit_info : cu_infos) { 78 Symtab *exe_symtab = exe_symfile->GetObjectFile()->GetSymtab(); 79 ModuleSP oso_module_sp(oso_objfile->GetModule()); 80 Symtab *oso_symtab = oso_objfile->GetSymtab(); 81 82 /// const uint32_t fun_resolve_flags = SymbolContext::Module | 83 /// eSymbolContextCompUnit | eSymbolContextFunction; 84 // SectionList *oso_sections = oso_objfile->Sections(); 85 // Now we need to make sections that map from zero based object 86 // file addresses to where things ended up in the main executable. 87 88 assert(comp_unit_info->first_symbol_index != UINT32_MAX); 89 // End index is one past the last valid symbol index 90 const uint32_t oso_end_idx = comp_unit_info->last_symbol_index + 1; 91 for (uint32_t idx = comp_unit_info->first_symbol_index + 92 2; // Skip the N_SO and N_OSO 93 idx < oso_end_idx; 94 ++idx) { 95 Symbol *exe_symbol = exe_symtab->SymbolAtIndex(idx); 96 if (exe_symbol) { 97 if (exe_symbol->IsDebug() == false) 98 continue; 99 100 switch (exe_symbol->GetType()) { 101 default: 102 break; 103 104 case eSymbolTypeCode: { 105 // For each N_FUN, or function that we run into in the debug map 106 // we make a new section that we add to the sections found in the 107 // .o file. This new section has the file address set to what the 108 // addresses are in the .o file, and the load address is adjusted 109 // to match where it ended up in the final executable! We do this 110 // before we parse any dwarf info so that when it goes get parsed 111 // all section/offset addresses that get registered will resolve 112 // correctly to the new addresses in the main executable. 113 114 // First we find the original symbol in the .o file's symbol table 115 Symbol *oso_fun_symbol = oso_symtab->FindFirstSymbolWithNameAndType( 116 exe_symbol->GetMangled().GetName(lldb::eLanguageTypeUnknown, 117 Mangled::ePreferMangled), 118 eSymbolTypeCode, Symtab::eDebugNo, Symtab::eVisibilityAny); 119 if (oso_fun_symbol) { 120 // Add the inverse OSO file address to debug map entry mapping 121 exe_symfile->AddOSOFileRange( 122 this, exe_symbol->GetAddressRef().GetFileAddress(), 123 exe_symbol->GetByteSize(), 124 oso_fun_symbol->GetAddressRef().GetFileAddress(), 125 oso_fun_symbol->GetByteSize()); 126 } 127 } break; 128 129 case eSymbolTypeData: { 130 // For each N_GSYM we remap the address for the global by making 131 // a new section that we add to the sections found in the .o file. 132 // This new section has the file address set to what the 133 // addresses are in the .o file, and the load address is adjusted 134 // to match where it ended up in the final executable! We do this 135 // before we parse any dwarf info so that when it goes get parsed 136 // all section/offset addresses that get registered will resolve 137 // correctly to the new addresses in the main executable. We 138 // initially set the section size to be 1 byte, but will need to 139 // fix up these addresses further after all globals have been 140 // parsed to span the gaps, or we can find the global variable 141 // sizes from the DWARF info as we are parsing. 142 143 // Next we find the non-stab entry that corresponds to the N_GSYM in 144 // the .o file 145 Symbol *oso_gsym_symbol = 146 oso_symtab->FindFirstSymbolWithNameAndType( 147 exe_symbol->GetMangled().GetName(lldb::eLanguageTypeUnknown, 148 Mangled::ePreferMangled), 149 eSymbolTypeData, Symtab::eDebugNo, Symtab::eVisibilityAny); 150 if (exe_symbol && oso_gsym_symbol && exe_symbol->ValueIsAddress() && 151 oso_gsym_symbol->ValueIsAddress()) { 152 // Add the inverse OSO file address to debug map entry mapping 153 exe_symfile->AddOSOFileRange( 154 this, exe_symbol->GetAddressRef().GetFileAddress(), 155 exe_symbol->GetByteSize(), 156 oso_gsym_symbol->GetAddressRef().GetFileAddress(), 157 oso_gsym_symbol->GetByteSize()); 158 } 159 } break; 160 } 161 } 162 } 163 164 exe_symfile->FinalizeOSOFileRanges(this); 165 // We don't need the symbols anymore for the .o files 166 oso_objfile->ClearSymtab(); 167 } 168 } 169 return file_range_map; 170 } 171 172 class DebugMapModule : public Module { 173 public: 174 DebugMapModule(const ModuleSP &exe_module_sp, uint32_t cu_idx, 175 const FileSpec &file_spec, const ArchSpec &arch, 176 const ConstString *object_name, off_t object_offset, 177 const TimeValue *object_mod_time_ptr) 178 : Module(file_spec, arch, object_name, object_offset, 179 object_mod_time_ptr), 180 m_exe_module_wp(exe_module_sp), m_cu_idx(cu_idx) {} 181 182 ~DebugMapModule() override = default; 183 184 SymbolVendor * 185 GetSymbolVendor(bool can_create = true, 186 lldb_private::Stream *feedback_strm = NULL) override { 187 // Scope for locker 188 if (m_symfile_ap.get() || can_create == false) 189 return m_symfile_ap.get(); 190 191 ModuleSP exe_module_sp(m_exe_module_wp.lock()); 192 if (exe_module_sp) { 193 // Now get the object file outside of a locking scope 194 ObjectFile *oso_objfile = GetObjectFile(); 195 if (oso_objfile) { 196 std::lock_guard<std::recursive_mutex> guard(m_mutex); 197 SymbolVendor *symbol_vendor = 198 Module::GetSymbolVendor(can_create, feedback_strm); 199 if (symbol_vendor) { 200 // Set a pointer to this class to set our OSO DWARF file know 201 // that the DWARF is being used along with a debug map and that 202 // it will have the remapped sections that we do below. 203 SymbolFileDWARF *oso_symfile = 204 SymbolFileDWARFDebugMap::GetSymbolFileAsSymbolFileDWARF( 205 symbol_vendor->GetSymbolFile()); 206 207 if (!oso_symfile) 208 return NULL; 209 210 ObjectFile *exe_objfile = exe_module_sp->GetObjectFile(); 211 SymbolVendor *exe_sym_vendor = exe_module_sp->GetSymbolVendor(); 212 213 if (exe_objfile && exe_sym_vendor) { 214 oso_symfile->SetDebugMapModule(exe_module_sp); 215 // Set the ID of the symbol file DWARF to the index of the OSO 216 // shifted left by 32 bits to provide a unique prefix for any 217 // UserID's that get created in the symbol file. 218 oso_symfile->SetID(((uint64_t)m_cu_idx + 1ull) << 32ull); 219 } 220 return symbol_vendor; 221 } 222 } 223 } 224 return NULL; 225 } 226 227 protected: 228 ModuleWP m_exe_module_wp; 229 const uint32_t m_cu_idx; 230 }; 231 232 void SymbolFileDWARFDebugMap::Initialize() { 233 PluginManager::RegisterPlugin(GetPluginNameStatic(), 234 GetPluginDescriptionStatic(), CreateInstance); 235 } 236 237 void SymbolFileDWARFDebugMap::Terminate() { 238 PluginManager::UnregisterPlugin(CreateInstance); 239 } 240 241 lldb_private::ConstString SymbolFileDWARFDebugMap::GetPluginNameStatic() { 242 static ConstString g_name("dwarf-debugmap"); 243 return g_name; 244 } 245 246 const char *SymbolFileDWARFDebugMap::GetPluginDescriptionStatic() { 247 return "DWARF and DWARF3 debug symbol file reader (debug map)."; 248 } 249 250 SymbolFile *SymbolFileDWARFDebugMap::CreateInstance(ObjectFile *obj_file) { 251 return new SymbolFileDWARFDebugMap(obj_file); 252 } 253 254 SymbolFileDWARFDebugMap::SymbolFileDWARFDebugMap(ObjectFile *ofile) 255 : SymbolFile(ofile), m_flags(), m_compile_unit_infos(), m_func_indexes(), 256 m_glob_indexes(), 257 m_supports_DW_AT_APPLE_objc_complete_type(eLazyBoolCalculate) {} 258 259 SymbolFileDWARFDebugMap::~SymbolFileDWARFDebugMap() {} 260 261 void SymbolFileDWARFDebugMap::InitializeObject() {} 262 263 void SymbolFileDWARFDebugMap::InitOSO() { 264 if (m_flags.test(kHaveInitializedOSOs)) 265 return; 266 267 m_flags.set(kHaveInitializedOSOs); 268 269 // If the object file has been stripped, there is no sense in looking further 270 // as all of the debug symbols for the debug map will not be available 271 if (m_obj_file->IsStripped()) 272 return; 273 274 // Also make sure the file type is some sort of executable. Core files, debug 275 // info files (dSYM), object files (.o files), and stub libraries all can 276 switch (m_obj_file->GetType()) { 277 case ObjectFile::eTypeInvalid: 278 case ObjectFile::eTypeCoreFile: 279 case ObjectFile::eTypeDebugInfo: 280 case ObjectFile::eTypeObjectFile: 281 case ObjectFile::eTypeStubLibrary: 282 case ObjectFile::eTypeUnknown: 283 case ObjectFile::eTypeJIT: 284 return; 285 286 case ObjectFile::eTypeExecutable: 287 case ObjectFile::eTypeDynamicLinker: 288 case ObjectFile::eTypeSharedLibrary: 289 break; 290 } 291 292 // In order to get the abilities of this plug-in, we look at the list of 293 // N_OSO entries (object files) from the symbol table and make sure that 294 // these files exist and also contain valid DWARF. If we get any of that 295 // then we return the abilities of the first N_OSO's DWARF. 296 297 Symtab *symtab = m_obj_file->GetSymtab(); 298 if (symtab) { 299 Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_MAP)); 300 301 std::vector<uint32_t> oso_indexes; 302 // When a mach-o symbol is encoded, the n_type field is encoded in bits 303 // 23:16, and the n_desc field is encoded in bits 15:0. 304 // 305 // To find all N_OSO entries that are part of the DWARF + debug map 306 // we find only object file symbols with the flags value as follows: 307 // bits 23:16 == 0x66 (N_OSO) 308 // bits 15: 0 == 0x0001 (specifies this is a debug map object file) 309 const uint32_t k_oso_symbol_flags_value = 0x660001u; 310 311 const uint32_t oso_index_count = 312 symtab->AppendSymbolIndexesWithTypeAndFlagsValue( 313 eSymbolTypeObjectFile, k_oso_symbol_flags_value, oso_indexes); 314 315 if (oso_index_count > 0) { 316 symtab->AppendSymbolIndexesWithType(eSymbolTypeCode, Symtab::eDebugYes, 317 Symtab::eVisibilityAny, 318 m_func_indexes); 319 symtab->AppendSymbolIndexesWithType(eSymbolTypeData, Symtab::eDebugYes, 320 Symtab::eVisibilityAny, 321 m_glob_indexes); 322 323 symtab->SortSymbolIndexesByValue(m_func_indexes, true); 324 symtab->SortSymbolIndexesByValue(m_glob_indexes, true); 325 326 for (uint32_t sym_idx : m_func_indexes) { 327 const Symbol *symbol = symtab->SymbolAtIndex(sym_idx); 328 lldb::addr_t file_addr = symbol->GetAddressRef().GetFileAddress(); 329 lldb::addr_t byte_size = symbol->GetByteSize(); 330 DebugMap::Entry debug_map_entry( 331 file_addr, byte_size, OSOEntry(sym_idx, LLDB_INVALID_ADDRESS)); 332 m_debug_map.Append(debug_map_entry); 333 } 334 for (uint32_t sym_idx : m_glob_indexes) { 335 const Symbol *symbol = symtab->SymbolAtIndex(sym_idx); 336 lldb::addr_t file_addr = symbol->GetAddressRef().GetFileAddress(); 337 lldb::addr_t byte_size = symbol->GetByteSize(); 338 DebugMap::Entry debug_map_entry( 339 file_addr, byte_size, OSOEntry(sym_idx, LLDB_INVALID_ADDRESS)); 340 m_debug_map.Append(debug_map_entry); 341 } 342 m_debug_map.Sort(); 343 344 m_compile_unit_infos.resize(oso_index_count); 345 346 for (uint32_t i = 0; i < oso_index_count; ++i) { 347 const uint32_t so_idx = oso_indexes[i] - 1; 348 const uint32_t oso_idx = oso_indexes[i]; 349 const Symbol *so_symbol = symtab->SymbolAtIndex(so_idx); 350 const Symbol *oso_symbol = symtab->SymbolAtIndex(oso_idx); 351 if (so_symbol && oso_symbol && 352 so_symbol->GetType() == eSymbolTypeSourceFile && 353 oso_symbol->GetType() == eSymbolTypeObjectFile) { 354 m_compile_unit_infos[i].so_file.SetFile( 355 so_symbol->GetName().AsCString(), false); 356 m_compile_unit_infos[i].oso_path = oso_symbol->GetName(); 357 TimeValue oso_mod_time; 358 oso_mod_time.OffsetWithSeconds(oso_symbol->GetIntegerValue(0)); 359 m_compile_unit_infos[i].oso_mod_time = oso_mod_time; 360 uint32_t sibling_idx = so_symbol->GetSiblingIndex(); 361 // The sibling index can't be less that or equal to the current index 362 // "i" 363 if (sibling_idx == UINT32_MAX) { 364 m_obj_file->GetModule()->ReportError( 365 "N_SO in symbol with UID %u has invalid sibling in debug map, " 366 "please file a bug and attach the binary listed in this error", 367 so_symbol->GetID()); 368 } else { 369 const Symbol *last_symbol = symtab->SymbolAtIndex(sibling_idx - 1); 370 m_compile_unit_infos[i].first_symbol_index = so_idx; 371 m_compile_unit_infos[i].last_symbol_index = sibling_idx - 1; 372 m_compile_unit_infos[i].first_symbol_id = so_symbol->GetID(); 373 m_compile_unit_infos[i].last_symbol_id = last_symbol->GetID(); 374 375 if (log) 376 log->Printf("Initialized OSO 0x%8.8x: file=%s", i, 377 oso_symbol->GetName().GetCString()); 378 } 379 } else { 380 if (oso_symbol == NULL) 381 m_obj_file->GetModule()->ReportError( 382 "N_OSO symbol[%u] can't be found, please file a bug and attach " 383 "the binary listed in this error", 384 oso_idx); 385 else if (so_symbol == NULL) 386 m_obj_file->GetModule()->ReportError( 387 "N_SO not found for N_OSO symbol[%u], please file a bug and " 388 "attach the binary listed in this error", 389 oso_idx); 390 else if (so_symbol->GetType() != eSymbolTypeSourceFile) 391 m_obj_file->GetModule()->ReportError( 392 "N_SO has incorrect symbol type (%u) for N_OSO symbol[%u], " 393 "please file a bug and attach the binary listed in this error", 394 so_symbol->GetType(), oso_idx); 395 else if (oso_symbol->GetType() != eSymbolTypeSourceFile) 396 m_obj_file->GetModule()->ReportError( 397 "N_OSO has incorrect symbol type (%u) for N_OSO symbol[%u], " 398 "please file a bug and attach the binary listed in this error", 399 oso_symbol->GetType(), oso_idx); 400 } 401 } 402 } 403 } 404 } 405 406 Module *SymbolFileDWARFDebugMap::GetModuleByOSOIndex(uint32_t oso_idx) { 407 const uint32_t cu_count = GetNumCompileUnits(); 408 if (oso_idx < cu_count) 409 return GetModuleByCompUnitInfo(&m_compile_unit_infos[oso_idx]); 410 return NULL; 411 } 412 413 Module *SymbolFileDWARFDebugMap::GetModuleByCompUnitInfo( 414 CompileUnitInfo *comp_unit_info) { 415 if (!comp_unit_info->oso_sp) { 416 auto pos = m_oso_map.find(comp_unit_info->oso_path); 417 if (pos != m_oso_map.end()) { 418 comp_unit_info->oso_sp = pos->second; 419 } else { 420 ObjectFile *obj_file = GetObjectFile(); 421 comp_unit_info->oso_sp.reset(new OSOInfo()); 422 m_oso_map[comp_unit_info->oso_path] = comp_unit_info->oso_sp; 423 const char *oso_path = comp_unit_info->oso_path.GetCString(); 424 FileSpec oso_file(oso_path, false); 425 ConstString oso_object; 426 if (oso_file.Exists()) { 427 TimeValue oso_mod_time(oso_file.GetModificationTime()); 428 if (oso_mod_time != comp_unit_info->oso_mod_time) { 429 obj_file->GetModule()->ReportError( 430 "debug map object file '%s' has changed (actual time is " 431 "0x%" PRIx64 ", debug map time is 0x%" PRIx64 432 ") since this executable was linked, file will be ignored", 433 oso_file.GetPath().c_str(), 434 oso_mod_time.GetAsSecondsSinceJan1_1970(), 435 comp_unit_info->oso_mod_time.GetAsSecondsSinceJan1_1970()); 436 return NULL; 437 } 438 439 } else { 440 const bool must_exist = true; 441 442 if (!ObjectFile::SplitArchivePathWithObject(oso_path, oso_file, 443 oso_object, must_exist)) { 444 return NULL; 445 } 446 } 447 // Always create a new module for .o files. Why? Because we 448 // use the debug map, to add new sections to each .o file and 449 // even though a .o file might not have changed, the sections 450 // that get added to the .o file can change. 451 ArchSpec oso_arch; 452 // Only adopt the architecture from the module (not the vendor or OS) 453 // since .o files for "i386-apple-ios" will historically show up as 454 // "i386-apple-macosx" 455 // due to the lack of a LC_VERSION_MIN_MACOSX or LC_VERSION_MIN_IPHONEOS 456 // load command... 457 oso_arch.SetTriple(m_obj_file->GetModule() 458 ->GetArchitecture() 459 .GetTriple() 460 .getArchName() 461 .str() 462 .c_str()); 463 comp_unit_info->oso_sp->module_sp.reset(new DebugMapModule( 464 obj_file->GetModule(), GetCompUnitInfoIndex(comp_unit_info), oso_file, 465 oso_arch, oso_object ? &oso_object : NULL, 0, 466 oso_object ? &comp_unit_info->oso_mod_time : NULL)); 467 } 468 } 469 if (comp_unit_info->oso_sp) 470 return comp_unit_info->oso_sp->module_sp.get(); 471 return NULL; 472 } 473 474 bool SymbolFileDWARFDebugMap::GetFileSpecForSO(uint32_t oso_idx, 475 FileSpec &file_spec) { 476 if (oso_idx < m_compile_unit_infos.size()) { 477 if (m_compile_unit_infos[oso_idx].so_file) { 478 file_spec = m_compile_unit_infos[oso_idx].so_file; 479 return true; 480 } 481 } 482 return false; 483 } 484 485 ObjectFile *SymbolFileDWARFDebugMap::GetObjectFileByOSOIndex(uint32_t oso_idx) { 486 Module *oso_module = GetModuleByOSOIndex(oso_idx); 487 if (oso_module) 488 return oso_module->GetObjectFile(); 489 return NULL; 490 } 491 492 SymbolFileDWARF * 493 SymbolFileDWARFDebugMap::GetSymbolFile(const SymbolContext &sc) { 494 CompileUnitInfo *comp_unit_info = GetCompUnitInfo(sc); 495 if (comp_unit_info) 496 return GetSymbolFileByCompUnitInfo(comp_unit_info); 497 return NULL; 498 } 499 500 ObjectFile *SymbolFileDWARFDebugMap::GetObjectFileByCompUnitInfo( 501 CompileUnitInfo *comp_unit_info) { 502 Module *oso_module = GetModuleByCompUnitInfo(comp_unit_info); 503 if (oso_module) 504 return oso_module->GetObjectFile(); 505 return NULL; 506 } 507 508 uint32_t SymbolFileDWARFDebugMap::GetCompUnitInfoIndex( 509 const CompileUnitInfo *comp_unit_info) { 510 if (!m_compile_unit_infos.empty()) { 511 const CompileUnitInfo *first_comp_unit_info = &m_compile_unit_infos.front(); 512 const CompileUnitInfo *last_comp_unit_info = &m_compile_unit_infos.back(); 513 if (first_comp_unit_info <= comp_unit_info && 514 comp_unit_info <= last_comp_unit_info) 515 return comp_unit_info - first_comp_unit_info; 516 } 517 return UINT32_MAX; 518 } 519 520 SymbolFileDWARF * 521 SymbolFileDWARFDebugMap::GetSymbolFileByOSOIndex(uint32_t oso_idx) { 522 if (oso_idx < m_compile_unit_infos.size()) 523 return GetSymbolFileByCompUnitInfo(&m_compile_unit_infos[oso_idx]); 524 return NULL; 525 } 526 527 SymbolFileDWARF * 528 SymbolFileDWARFDebugMap::GetSymbolFileAsSymbolFileDWARF(SymbolFile *sym_file) { 529 if (sym_file && 530 sym_file->GetPluginName() == SymbolFileDWARF::GetPluginNameStatic()) 531 return (SymbolFileDWARF *)sym_file; 532 return NULL; 533 } 534 535 SymbolFileDWARF *SymbolFileDWARFDebugMap::GetSymbolFileByCompUnitInfo( 536 CompileUnitInfo *comp_unit_info) { 537 Module *oso_module = GetModuleByCompUnitInfo(comp_unit_info); 538 if (oso_module) { 539 SymbolVendor *sym_vendor = oso_module->GetSymbolVendor(); 540 if (sym_vendor) 541 return GetSymbolFileAsSymbolFileDWARF(sym_vendor->GetSymbolFile()); 542 } 543 return NULL; 544 } 545 546 uint32_t SymbolFileDWARFDebugMap::CalculateAbilities() { 547 // In order to get the abilities of this plug-in, we look at the list of 548 // N_OSO entries (object files) from the symbol table and make sure that 549 // these files exist and also contain valid DWARF. If we get any of that 550 // then we return the abilities of the first N_OSO's DWARF. 551 552 const uint32_t oso_index_count = GetNumCompileUnits(); 553 if (oso_index_count > 0) { 554 InitOSO(); 555 if (!m_compile_unit_infos.empty()) { 556 return SymbolFile::CompileUnits | SymbolFile::Functions | 557 SymbolFile::Blocks | SymbolFile::GlobalVariables | 558 SymbolFile::LocalVariables | SymbolFile::VariableTypes | 559 SymbolFile::LineTables; 560 } 561 } 562 return 0; 563 } 564 565 uint32_t SymbolFileDWARFDebugMap::GetNumCompileUnits() { 566 InitOSO(); 567 return m_compile_unit_infos.size(); 568 } 569 570 CompUnitSP SymbolFileDWARFDebugMap::ParseCompileUnitAtIndex(uint32_t cu_idx) { 571 CompUnitSP comp_unit_sp; 572 const uint32_t cu_count = GetNumCompileUnits(); 573 574 if (cu_idx < cu_count) { 575 Module *oso_module = GetModuleByCompUnitInfo(&m_compile_unit_infos[cu_idx]); 576 if (oso_module) { 577 FileSpec so_file_spec; 578 if (GetFileSpecForSO(cu_idx, so_file_spec)) { 579 // User zero as the ID to match the compile unit at offset 580 // zero in each .o file since each .o file can only have 581 // one compile unit for now. 582 lldb::user_id_t cu_id = 0; 583 m_compile_unit_infos[cu_idx].compile_unit_sp.reset( 584 new CompileUnit(m_obj_file->GetModule(), NULL, so_file_spec, cu_id, 585 eLanguageTypeUnknown, eLazyBoolCalculate)); 586 587 if (m_compile_unit_infos[cu_idx].compile_unit_sp) { 588 // Let our symbol vendor know about this compile unit 589 m_obj_file->GetModule()->GetSymbolVendor()->SetCompileUnitAtIndex( 590 cu_idx, m_compile_unit_infos[cu_idx].compile_unit_sp); 591 } 592 } 593 } 594 comp_unit_sp = m_compile_unit_infos[cu_idx].compile_unit_sp; 595 } 596 597 return comp_unit_sp; 598 } 599 600 SymbolFileDWARFDebugMap::CompileUnitInfo * 601 SymbolFileDWARFDebugMap::GetCompUnitInfo(const SymbolContext &sc) { 602 const uint32_t cu_count = GetNumCompileUnits(); 603 for (uint32_t i = 0; i < cu_count; ++i) { 604 if (sc.comp_unit == m_compile_unit_infos[i].compile_unit_sp.get()) 605 return &m_compile_unit_infos[i]; 606 } 607 return NULL; 608 } 609 610 size_t SymbolFileDWARFDebugMap::GetCompUnitInfosForModule( 611 const lldb_private::Module *module, 612 std::vector<CompileUnitInfo *> &cu_infos) { 613 const uint32_t cu_count = GetNumCompileUnits(); 614 for (uint32_t i = 0; i < cu_count; ++i) { 615 if (module == GetModuleByCompUnitInfo(&m_compile_unit_infos[i])) 616 cu_infos.push_back(&m_compile_unit_infos[i]); 617 } 618 return cu_infos.size(); 619 } 620 621 lldb::LanguageType 622 SymbolFileDWARFDebugMap::ParseCompileUnitLanguage(const SymbolContext &sc) { 623 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc); 624 if (oso_dwarf) 625 return oso_dwarf->ParseCompileUnitLanguage(sc); 626 return eLanguageTypeUnknown; 627 } 628 629 size_t 630 SymbolFileDWARFDebugMap::ParseCompileUnitFunctions(const SymbolContext &sc) { 631 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc); 632 if (oso_dwarf) 633 return oso_dwarf->ParseCompileUnitFunctions(sc); 634 return 0; 635 } 636 637 bool SymbolFileDWARFDebugMap::ParseCompileUnitLineTable( 638 const SymbolContext &sc) { 639 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc); 640 if (oso_dwarf) 641 return oso_dwarf->ParseCompileUnitLineTable(sc); 642 return false; 643 } 644 645 bool SymbolFileDWARFDebugMap::ParseCompileUnitDebugMacros( 646 const SymbolContext &sc) { 647 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc); 648 if (oso_dwarf) 649 return oso_dwarf->ParseCompileUnitDebugMacros(sc); 650 return false; 651 } 652 653 bool SymbolFileDWARFDebugMap::ParseCompileUnitSupportFiles( 654 const SymbolContext &sc, FileSpecList &support_files) { 655 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc); 656 if (oso_dwarf) 657 return oso_dwarf->ParseCompileUnitSupportFiles(sc, support_files); 658 return false; 659 } 660 661 bool SymbolFileDWARFDebugMap::ParseCompileUnitIsOptimized( 662 const lldb_private::SymbolContext &sc) { 663 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc); 664 if (oso_dwarf) 665 return oso_dwarf->ParseCompileUnitIsOptimized(sc); 666 return false; 667 } 668 669 bool SymbolFileDWARFDebugMap::ParseImportedModules( 670 const SymbolContext &sc, std::vector<ConstString> &imported_modules) { 671 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc); 672 if (oso_dwarf) 673 return oso_dwarf->ParseImportedModules(sc, imported_modules); 674 return false; 675 } 676 677 size_t SymbolFileDWARFDebugMap::ParseFunctionBlocks(const SymbolContext &sc) { 678 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc); 679 if (oso_dwarf) 680 return oso_dwarf->ParseFunctionBlocks(sc); 681 return 0; 682 } 683 684 size_t SymbolFileDWARFDebugMap::ParseTypes(const SymbolContext &sc) { 685 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc); 686 if (oso_dwarf) 687 return oso_dwarf->ParseTypes(sc); 688 return 0; 689 } 690 691 size_t 692 SymbolFileDWARFDebugMap::ParseVariablesForContext(const SymbolContext &sc) { 693 SymbolFileDWARF *oso_dwarf = GetSymbolFile(sc); 694 if (oso_dwarf) 695 return oso_dwarf->ParseVariablesForContext(sc); 696 return 0; 697 } 698 699 Type *SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) { 700 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); 701 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(oso_idx); 702 if (oso_dwarf) 703 return oso_dwarf->ResolveTypeUID(type_uid); 704 return NULL; 705 } 706 707 bool SymbolFileDWARFDebugMap::CompleteType(CompilerType &compiler_type) { 708 bool success = false; 709 if (compiler_type) { 710 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 711 if (oso_dwarf->HasForwardDeclForClangType(compiler_type)) { 712 oso_dwarf->CompleteType(compiler_type); 713 success = true; 714 return true; 715 } 716 return false; 717 }); 718 } 719 return success; 720 } 721 722 uint32_t SymbolFileDWARFDebugMap::ResolveSymbolContext( 723 const Address &exe_so_addr, uint32_t resolve_scope, SymbolContext &sc) { 724 uint32_t resolved_flags = 0; 725 Symtab *symtab = m_obj_file->GetSymtab(); 726 if (symtab) { 727 const addr_t exe_file_addr = exe_so_addr.GetFileAddress(); 728 729 const DebugMap::Entry *debug_map_entry = 730 m_debug_map.FindEntryThatContains(exe_file_addr); 731 if (debug_map_entry) { 732 733 sc.symbol = 734 symtab->SymbolAtIndex(debug_map_entry->data.GetExeSymbolIndex()); 735 736 if (sc.symbol != NULL) { 737 resolved_flags |= eSymbolContextSymbol; 738 739 uint32_t oso_idx = 0; 740 CompileUnitInfo *comp_unit_info = 741 GetCompileUnitInfoForSymbolWithID(sc.symbol->GetID(), &oso_idx); 742 if (comp_unit_info) { 743 comp_unit_info->GetFileRangeMap(this); 744 Module *oso_module = GetModuleByCompUnitInfo(comp_unit_info); 745 if (oso_module) { 746 lldb::addr_t oso_file_addr = 747 exe_file_addr - debug_map_entry->GetRangeBase() + 748 debug_map_entry->data.GetOSOFileAddress(); 749 Address oso_so_addr; 750 if (oso_module->ResolveFileAddress(oso_file_addr, oso_so_addr)) { 751 resolved_flags |= 752 oso_module->GetSymbolVendor()->ResolveSymbolContext( 753 oso_so_addr, resolve_scope, sc); 754 } 755 } 756 } 757 } 758 } 759 } 760 return resolved_flags; 761 } 762 763 uint32_t SymbolFileDWARFDebugMap::ResolveSymbolContext( 764 const FileSpec &file_spec, uint32_t line, bool check_inlines, 765 uint32_t resolve_scope, SymbolContextList &sc_list) { 766 const uint32_t initial = sc_list.GetSize(); 767 const uint32_t cu_count = GetNumCompileUnits(); 768 769 for (uint32_t i = 0; i < cu_count; ++i) { 770 // If we are checking for inlines, then we need to look through all 771 // compile units no matter if "file_spec" matches. 772 bool resolve = check_inlines; 773 774 if (!resolve) { 775 FileSpec so_file_spec; 776 if (GetFileSpecForSO(i, so_file_spec)) { 777 // Match the full path if the incoming file_spec has a directory (not 778 // just a basename) 779 const bool full_match = (bool)file_spec.GetDirectory(); 780 resolve = FileSpec::Equal(file_spec, so_file_spec, full_match); 781 } 782 } 783 if (resolve) { 784 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(i); 785 if (oso_dwarf) 786 oso_dwarf->ResolveSymbolContext(file_spec, line, check_inlines, 787 resolve_scope, sc_list); 788 } 789 } 790 return sc_list.GetSize() - initial; 791 } 792 793 uint32_t SymbolFileDWARFDebugMap::PrivateFindGlobalVariables( 794 const ConstString &name, const CompilerDeclContext *parent_decl_ctx, 795 const std::vector<uint32_t> 796 &indexes, // Indexes into the symbol table that match "name" 797 uint32_t max_matches, 798 VariableList &variables) { 799 const uint32_t original_size = variables.GetSize(); 800 const size_t match_count = indexes.size(); 801 for (size_t i = 0; i < match_count; ++i) { 802 uint32_t oso_idx; 803 CompileUnitInfo *comp_unit_info = 804 GetCompileUnitInfoForSymbolWithIndex(indexes[i], &oso_idx); 805 if (comp_unit_info) { 806 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(oso_idx); 807 if (oso_dwarf) { 808 if (oso_dwarf->FindGlobalVariables(name, parent_decl_ctx, true, 809 max_matches, variables)) 810 if (variables.GetSize() > max_matches) 811 break; 812 } 813 } 814 } 815 return variables.GetSize() - original_size; 816 } 817 818 uint32_t SymbolFileDWARFDebugMap::FindGlobalVariables( 819 const ConstString &name, const CompilerDeclContext *parent_decl_ctx, 820 bool append, uint32_t max_matches, VariableList &variables) { 821 822 // If we aren't appending the results to this list, then clear the list 823 if (!append) 824 variables.Clear(); 825 826 // Remember how many variables are in the list before we search in case 827 // we are appending the results to a variable list. 828 const uint32_t original_size = variables.GetSize(); 829 830 uint32_t total_matches = 0; 831 832 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 833 const uint32_t oso_matches = oso_dwarf->FindGlobalVariables( 834 name, parent_decl_ctx, true, max_matches, variables); 835 if (oso_matches > 0) { 836 total_matches += oso_matches; 837 838 // Are we getting all matches? 839 if (max_matches == UINT32_MAX) 840 return false; // Yep, continue getting everything 841 842 // If we have found enough matches, lets get out 843 if (max_matches >= total_matches) 844 return true; 845 846 // Update the max matches for any subsequent calls to find globals 847 // in any other object files with DWARF 848 max_matches -= oso_matches; 849 } 850 851 return false; 852 }); 853 854 // Return the number of variable that were appended to the list 855 return variables.GetSize() - original_size; 856 } 857 858 uint32_t 859 SymbolFileDWARFDebugMap::FindGlobalVariables(const RegularExpression ®ex, 860 bool append, uint32_t max_matches, 861 VariableList &variables) { 862 // If we aren't appending the results to this list, then clear the list 863 if (!append) 864 variables.Clear(); 865 866 // Remember how many variables are in the list before we search in case 867 // we are appending the results to a variable list. 868 const uint32_t original_size = variables.GetSize(); 869 870 uint32_t total_matches = 0; 871 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 872 const uint32_t oso_matches = 873 oso_dwarf->FindGlobalVariables(regex, true, max_matches, variables); 874 if (oso_matches > 0) { 875 total_matches += oso_matches; 876 877 // Are we getting all matches? 878 if (max_matches == UINT32_MAX) 879 return false; // Yep, continue getting everything 880 881 // If we have found enough matches, lets get out 882 if (max_matches >= total_matches) 883 return true; 884 885 // Update the max matches for any subsequent calls to find globals 886 // in any other object files with DWARF 887 max_matches -= oso_matches; 888 } 889 890 return false; 891 }); 892 893 // Return the number of variable that were appended to the list 894 return variables.GetSize() - original_size; 895 } 896 897 int SymbolFileDWARFDebugMap::SymbolContainsSymbolWithIndex( 898 uint32_t *symbol_idx_ptr, const CompileUnitInfo *comp_unit_info) { 899 const uint32_t symbol_idx = *symbol_idx_ptr; 900 901 if (symbol_idx < comp_unit_info->first_symbol_index) 902 return -1; 903 904 if (symbol_idx <= comp_unit_info->last_symbol_index) 905 return 0; 906 907 return 1; 908 } 909 910 int SymbolFileDWARFDebugMap::SymbolContainsSymbolWithID( 911 user_id_t *symbol_idx_ptr, const CompileUnitInfo *comp_unit_info) { 912 const user_id_t symbol_id = *symbol_idx_ptr; 913 914 if (symbol_id < comp_unit_info->first_symbol_id) 915 return -1; 916 917 if (symbol_id <= comp_unit_info->last_symbol_id) 918 return 0; 919 920 return 1; 921 } 922 923 SymbolFileDWARFDebugMap::CompileUnitInfo * 924 SymbolFileDWARFDebugMap::GetCompileUnitInfoForSymbolWithIndex( 925 uint32_t symbol_idx, uint32_t *oso_idx_ptr) { 926 const uint32_t oso_index_count = m_compile_unit_infos.size(); 927 CompileUnitInfo *comp_unit_info = NULL; 928 if (oso_index_count) { 929 comp_unit_info = (CompileUnitInfo *)bsearch( 930 &symbol_idx, &m_compile_unit_infos[0], m_compile_unit_infos.size(), 931 sizeof(CompileUnitInfo), 932 (ComparisonFunction)SymbolContainsSymbolWithIndex); 933 } 934 935 if (oso_idx_ptr) { 936 if (comp_unit_info != NULL) 937 *oso_idx_ptr = comp_unit_info - &m_compile_unit_infos[0]; 938 else 939 *oso_idx_ptr = UINT32_MAX; 940 } 941 return comp_unit_info; 942 } 943 944 SymbolFileDWARFDebugMap::CompileUnitInfo * 945 SymbolFileDWARFDebugMap::GetCompileUnitInfoForSymbolWithID( 946 user_id_t symbol_id, uint32_t *oso_idx_ptr) { 947 const uint32_t oso_index_count = m_compile_unit_infos.size(); 948 CompileUnitInfo *comp_unit_info = NULL; 949 if (oso_index_count) { 950 comp_unit_info = (CompileUnitInfo *)::bsearch( 951 &symbol_id, &m_compile_unit_infos[0], m_compile_unit_infos.size(), 952 sizeof(CompileUnitInfo), 953 (ComparisonFunction)SymbolContainsSymbolWithID); 954 } 955 956 if (oso_idx_ptr) { 957 if (comp_unit_info != NULL) 958 *oso_idx_ptr = comp_unit_info - &m_compile_unit_infos[0]; 959 else 960 *oso_idx_ptr = UINT32_MAX; 961 } 962 return comp_unit_info; 963 } 964 965 static void RemoveFunctionsWithModuleNotEqualTo(const ModuleSP &module_sp, 966 SymbolContextList &sc_list, 967 uint32_t start_idx) { 968 // We found functions in .o files. Not all functions in the .o files 969 // will have made it into the final output file. The ones that did 970 // make it into the final output file will have a section whose module 971 // matches the module from the ObjectFile for this SymbolFile. When 972 // the modules don't match, then we have something that was in a 973 // .o file, but doesn't map to anything in the final executable. 974 uint32_t i = start_idx; 975 while (i < sc_list.GetSize()) { 976 SymbolContext sc; 977 sc_list.GetContextAtIndex(i, sc); 978 if (sc.function) { 979 const SectionSP section_sp( 980 sc.function->GetAddressRange().GetBaseAddress().GetSection()); 981 if (section_sp->GetModule() != module_sp) { 982 sc_list.RemoveContextAtIndex(i); 983 continue; 984 } 985 } 986 ++i; 987 } 988 } 989 990 uint32_t SymbolFileDWARFDebugMap::FindFunctions( 991 const ConstString &name, const CompilerDeclContext *parent_decl_ctx, 992 uint32_t name_type_mask, bool include_inlines, bool append, 993 SymbolContextList &sc_list) { 994 Timer scoped_timer(LLVM_PRETTY_FUNCTION, 995 "SymbolFileDWARFDebugMap::FindFunctions (name = %s)", 996 name.GetCString()); 997 998 uint32_t initial_size = 0; 999 if (append) 1000 initial_size = sc_list.GetSize(); 1001 else 1002 sc_list.Clear(); 1003 1004 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 1005 uint32_t sc_idx = sc_list.GetSize(); 1006 if (oso_dwarf->FindFunctions(name, parent_decl_ctx, name_type_mask, 1007 include_inlines, true, sc_list)) { 1008 RemoveFunctionsWithModuleNotEqualTo(m_obj_file->GetModule(), sc_list, 1009 sc_idx); 1010 } 1011 return false; 1012 }); 1013 1014 return sc_list.GetSize() - initial_size; 1015 } 1016 1017 uint32_t SymbolFileDWARFDebugMap::FindFunctions(const RegularExpression ®ex, 1018 bool include_inlines, 1019 bool append, 1020 SymbolContextList &sc_list) { 1021 Timer scoped_timer(LLVM_PRETTY_FUNCTION, 1022 "SymbolFileDWARFDebugMap::FindFunctions (regex = '%s')", 1023 regex.GetText().str().c_str()); 1024 1025 uint32_t initial_size = 0; 1026 if (append) 1027 initial_size = sc_list.GetSize(); 1028 else 1029 sc_list.Clear(); 1030 1031 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 1032 uint32_t sc_idx = sc_list.GetSize(); 1033 1034 if (oso_dwarf->FindFunctions(regex, include_inlines, true, sc_list)) { 1035 RemoveFunctionsWithModuleNotEqualTo(m_obj_file->GetModule(), sc_list, 1036 sc_idx); 1037 } 1038 return false; 1039 }); 1040 1041 return sc_list.GetSize() - initial_size; 1042 } 1043 1044 size_t SymbolFileDWARFDebugMap::GetTypes(SymbolContextScope *sc_scope, 1045 uint32_t type_mask, 1046 TypeList &type_list) { 1047 Timer scoped_timer(LLVM_PRETTY_FUNCTION, 1048 "SymbolFileDWARFDebugMap::GetTypes (type_mask = 0x%8.8x)", 1049 type_mask); 1050 1051 uint32_t initial_size = type_list.GetSize(); 1052 SymbolFileDWARF *oso_dwarf = NULL; 1053 if (sc_scope) { 1054 SymbolContext sc; 1055 sc_scope->CalculateSymbolContext(&sc); 1056 1057 CompileUnitInfo *cu_info = GetCompUnitInfo(sc); 1058 if (cu_info) { 1059 oso_dwarf = GetSymbolFileByCompUnitInfo(cu_info); 1060 if (oso_dwarf) 1061 oso_dwarf->GetTypes(sc_scope, type_mask, type_list); 1062 } 1063 } else { 1064 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 1065 oso_dwarf->GetTypes(sc_scope, type_mask, type_list); 1066 return false; 1067 }); 1068 } 1069 return type_list.GetSize() - initial_size; 1070 } 1071 1072 TypeSP SymbolFileDWARFDebugMap::FindDefinitionTypeForDWARFDeclContext( 1073 const DWARFDeclContext &die_decl_ctx) { 1074 TypeSP type_sp; 1075 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 1076 type_sp = oso_dwarf->FindDefinitionTypeForDWARFDeclContext(die_decl_ctx); 1077 return ((bool)type_sp); 1078 }); 1079 return type_sp; 1080 } 1081 1082 bool SymbolFileDWARFDebugMap::Supports_DW_AT_APPLE_objc_complete_type( 1083 SymbolFileDWARF *skip_dwarf_oso) { 1084 if (m_supports_DW_AT_APPLE_objc_complete_type == eLazyBoolCalculate) { 1085 m_supports_DW_AT_APPLE_objc_complete_type = eLazyBoolNo; 1086 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 1087 if (skip_dwarf_oso != oso_dwarf && 1088 oso_dwarf->Supports_DW_AT_APPLE_objc_complete_type(NULL)) { 1089 m_supports_DW_AT_APPLE_objc_complete_type = eLazyBoolYes; 1090 return true; 1091 } 1092 return false; 1093 }); 1094 } 1095 return m_supports_DW_AT_APPLE_objc_complete_type == eLazyBoolYes; 1096 } 1097 1098 TypeSP SymbolFileDWARFDebugMap::FindCompleteObjCDefinitionTypeForDIE( 1099 const DWARFDIE &die, const ConstString &type_name, 1100 bool must_be_implementation) { 1101 // If we have a debug map, we will have an Objective C symbol whose name is 1102 // the type name and whose type is eSymbolTypeObjCClass. If we can find that 1103 // symbol and find its containing parent, we can locate the .o file that will 1104 // contain the implementation definition since it will be scoped inside the 1105 // N_SO 1106 // and we can then locate the SymbolFileDWARF that corresponds to that N_SO. 1107 SymbolFileDWARF *oso_dwarf = NULL; 1108 TypeSP type_sp; 1109 ObjectFile *module_objfile = m_obj_file->GetModule()->GetObjectFile(); 1110 if (module_objfile) { 1111 Symtab *symtab = module_objfile->GetSymtab(); 1112 if (symtab) { 1113 Symbol *objc_class_symbol = symtab->FindFirstSymbolWithNameAndType( 1114 type_name, eSymbolTypeObjCClass, Symtab::eDebugAny, 1115 Symtab::eVisibilityAny); 1116 if (objc_class_symbol) { 1117 // Get the N_SO symbol that contains the objective C class symbol as 1118 // this 1119 // should be the .o file that contains the real definition... 1120 const Symbol *source_file_symbol = symtab->GetParent(objc_class_symbol); 1121 1122 if (source_file_symbol && 1123 source_file_symbol->GetType() == eSymbolTypeSourceFile) { 1124 const uint32_t source_file_symbol_idx = 1125 symtab->GetIndexForSymbol(source_file_symbol); 1126 if (source_file_symbol_idx != UINT32_MAX) { 1127 CompileUnitInfo *compile_unit_info = 1128 GetCompileUnitInfoForSymbolWithIndex(source_file_symbol_idx, 1129 NULL); 1130 if (compile_unit_info) { 1131 oso_dwarf = GetSymbolFileByCompUnitInfo(compile_unit_info); 1132 if (oso_dwarf) { 1133 TypeSP type_sp(oso_dwarf->FindCompleteObjCDefinitionTypeForDIE( 1134 die, type_name, must_be_implementation)); 1135 if (type_sp) { 1136 return type_sp; 1137 } 1138 } 1139 } 1140 } 1141 } 1142 } 1143 } 1144 } 1145 1146 // Only search all .o files for the definition if we don't need the 1147 // implementation 1148 // because otherwise, with a valid debug map we should have the ObjC class 1149 // symbol and 1150 // the code above should have found it. 1151 if (must_be_implementation == false) { 1152 TypeSP type_sp; 1153 1154 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 1155 type_sp = oso_dwarf->FindCompleteObjCDefinitionTypeForDIE( 1156 die, type_name, must_be_implementation); 1157 return (bool)type_sp; 1158 }); 1159 1160 return type_sp; 1161 } 1162 return TypeSP(); 1163 } 1164 1165 uint32_t SymbolFileDWARFDebugMap::FindTypes( 1166 const SymbolContext &sc, const ConstString &name, 1167 const CompilerDeclContext *parent_decl_ctx, bool append, 1168 uint32_t max_matches, 1169 llvm::DenseSet<lldb_private::SymbolFile *> &searched_symbol_files, 1170 TypeMap &types) { 1171 if (!append) 1172 types.Clear(); 1173 1174 const uint32_t initial_types_size = types.GetSize(); 1175 SymbolFileDWARF *oso_dwarf; 1176 1177 if (sc.comp_unit) { 1178 oso_dwarf = GetSymbolFile(sc); 1179 if (oso_dwarf) 1180 return oso_dwarf->FindTypes(sc, name, parent_decl_ctx, append, 1181 max_matches, searched_symbol_files, types); 1182 } else { 1183 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 1184 oso_dwarf->FindTypes(sc, name, parent_decl_ctx, append, max_matches, 1185 searched_symbol_files, types); 1186 if (types.GetSize() >= max_matches) 1187 return true; 1188 else 1189 return false; 1190 }); 1191 } 1192 1193 return types.GetSize() - initial_types_size; 1194 } 1195 1196 // 1197 // uint32_t 1198 // SymbolFileDWARFDebugMap::FindTypes (const SymbolContext& sc, const 1199 // RegularExpression& regex, bool append, uint32_t max_matches, Type::Encoding 1200 // encoding, lldb::user_id_t udt_uid, TypeList& types) 1201 //{ 1202 // SymbolFileDWARF *oso_dwarf = GetSymbolFile (sc); 1203 // if (oso_dwarf) 1204 // return oso_dwarf->FindTypes (sc, regex, append, max_matches, encoding, 1205 // udt_uid, types); 1206 // return 0; 1207 //} 1208 1209 CompilerDeclContext SymbolFileDWARFDebugMap::FindNamespace( 1210 const lldb_private::SymbolContext &sc, 1211 const lldb_private::ConstString &name, 1212 const CompilerDeclContext *parent_decl_ctx) { 1213 CompilerDeclContext matching_namespace; 1214 SymbolFileDWARF *oso_dwarf; 1215 1216 if (sc.comp_unit) { 1217 oso_dwarf = GetSymbolFile(sc); 1218 if (oso_dwarf) 1219 matching_namespace = oso_dwarf->FindNamespace(sc, name, parent_decl_ctx); 1220 } else { 1221 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 1222 matching_namespace = oso_dwarf->FindNamespace(sc, name, parent_decl_ctx); 1223 1224 return (bool)matching_namespace; 1225 }); 1226 } 1227 1228 return matching_namespace; 1229 } 1230 1231 //------------------------------------------------------------------ 1232 // PluginInterface protocol 1233 //------------------------------------------------------------------ 1234 lldb_private::ConstString SymbolFileDWARFDebugMap::GetPluginName() { 1235 return GetPluginNameStatic(); 1236 } 1237 1238 uint32_t SymbolFileDWARFDebugMap::GetPluginVersion() { return 1; } 1239 1240 lldb::CompUnitSP 1241 SymbolFileDWARFDebugMap::GetCompileUnit(SymbolFileDWARF *oso_dwarf) { 1242 if (oso_dwarf) { 1243 const uint32_t cu_count = GetNumCompileUnits(); 1244 for (uint32_t cu_idx = 0; cu_idx < cu_count; ++cu_idx) { 1245 SymbolFileDWARF *oso_symfile = 1246 GetSymbolFileByCompUnitInfo(&m_compile_unit_infos[cu_idx]); 1247 if (oso_symfile == oso_dwarf) { 1248 if (!m_compile_unit_infos[cu_idx].compile_unit_sp) 1249 m_compile_unit_infos[cu_idx].compile_unit_sp = 1250 ParseCompileUnitAtIndex(cu_idx); 1251 1252 return m_compile_unit_infos[cu_idx].compile_unit_sp; 1253 } 1254 } 1255 } 1256 assert(!"this shouldn't happen"); 1257 return lldb::CompUnitSP(); 1258 } 1259 1260 SymbolFileDWARFDebugMap::CompileUnitInfo * 1261 SymbolFileDWARFDebugMap::GetCompileUnitInfo(SymbolFileDWARF *oso_dwarf) { 1262 if (oso_dwarf) { 1263 const uint32_t cu_count = GetNumCompileUnits(); 1264 for (uint32_t cu_idx = 0; cu_idx < cu_count; ++cu_idx) { 1265 SymbolFileDWARF *oso_symfile = 1266 GetSymbolFileByCompUnitInfo(&m_compile_unit_infos[cu_idx]); 1267 if (oso_symfile == oso_dwarf) { 1268 return &m_compile_unit_infos[cu_idx]; 1269 } 1270 } 1271 } 1272 return NULL; 1273 } 1274 1275 void SymbolFileDWARFDebugMap::SetCompileUnit(SymbolFileDWARF *oso_dwarf, 1276 const CompUnitSP &cu_sp) { 1277 if (oso_dwarf) { 1278 const uint32_t cu_count = GetNumCompileUnits(); 1279 for (uint32_t cu_idx = 0; cu_idx < cu_count; ++cu_idx) { 1280 SymbolFileDWARF *oso_symfile = 1281 GetSymbolFileByCompUnitInfo(&m_compile_unit_infos[cu_idx]); 1282 if (oso_symfile == oso_dwarf) { 1283 if (m_compile_unit_infos[cu_idx].compile_unit_sp) { 1284 assert(m_compile_unit_infos[cu_idx].compile_unit_sp.get() == 1285 cu_sp.get()); 1286 } else { 1287 m_compile_unit_infos[cu_idx].compile_unit_sp = cu_sp; 1288 m_obj_file->GetModule()->GetSymbolVendor()->SetCompileUnitAtIndex( 1289 cu_idx, cu_sp); 1290 } 1291 } 1292 } 1293 } 1294 } 1295 1296 CompilerDeclContext 1297 SymbolFileDWARFDebugMap::GetDeclContextForUID(lldb::user_id_t type_uid) { 1298 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); 1299 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(oso_idx); 1300 if (oso_dwarf) 1301 return oso_dwarf->GetDeclContextForUID(type_uid); 1302 return CompilerDeclContext(); 1303 } 1304 1305 CompilerDeclContext 1306 SymbolFileDWARFDebugMap::GetDeclContextContainingUID(lldb::user_id_t type_uid) { 1307 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); 1308 SymbolFileDWARF *oso_dwarf = GetSymbolFileByOSOIndex(oso_idx); 1309 if (oso_dwarf) 1310 return oso_dwarf->GetDeclContextContainingUID(type_uid); 1311 return CompilerDeclContext(); 1312 } 1313 1314 void SymbolFileDWARFDebugMap::ParseDeclsForContext( 1315 lldb_private::CompilerDeclContext decl_ctx) { 1316 ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { 1317 oso_dwarf->ParseDeclsForContext(decl_ctx); 1318 return true; // Keep iterating 1319 }); 1320 } 1321 1322 bool SymbolFileDWARFDebugMap::AddOSOFileRange(CompileUnitInfo *cu_info, 1323 lldb::addr_t exe_file_addr, 1324 lldb::addr_t exe_byte_size, 1325 lldb::addr_t oso_file_addr, 1326 lldb::addr_t oso_byte_size) { 1327 const uint32_t debug_map_idx = 1328 m_debug_map.FindEntryIndexThatContains(exe_file_addr); 1329 if (debug_map_idx != UINT32_MAX) { 1330 DebugMap::Entry *debug_map_entry = 1331 m_debug_map.FindEntryThatContains(exe_file_addr); 1332 debug_map_entry->data.SetOSOFileAddress(oso_file_addr); 1333 addr_t range_size = std::min<addr_t>(exe_byte_size, oso_byte_size); 1334 if (range_size == 0) { 1335 range_size = std::max<addr_t>(exe_byte_size, oso_byte_size); 1336 if (range_size == 0) 1337 range_size = 1; 1338 } 1339 cu_info->file_range_map.Append( 1340 FileRangeMap::Entry(oso_file_addr, range_size, exe_file_addr)); 1341 return true; 1342 } 1343 return false; 1344 } 1345 1346 void SymbolFileDWARFDebugMap::FinalizeOSOFileRanges(CompileUnitInfo *cu_info) { 1347 cu_info->file_range_map.Sort(); 1348 #if defined(DEBUG_OSO_DMAP) 1349 const FileRangeMap &oso_file_range_map = cu_info->GetFileRangeMap(this); 1350 const size_t n = oso_file_range_map.GetSize(); 1351 printf("SymbolFileDWARFDebugMap::FinalizeOSOFileRanges (cu_info = %p) %s\n", 1352 cu_info, cu_info->oso_sp->module_sp->GetFileSpec().GetPath().c_str()); 1353 for (size_t i = 0; i < n; ++i) { 1354 const FileRangeMap::Entry &entry = oso_file_range_map.GetEntryRef(i); 1355 printf("oso [0x%16.16" PRIx64 " - 0x%16.16" PRIx64 1356 ") ==> exe [0x%16.16" PRIx64 " - 0x%16.16" PRIx64 ")\n", 1357 entry.GetRangeBase(), entry.GetRangeEnd(), entry.data, 1358 entry.data + entry.GetByteSize()); 1359 } 1360 #endif 1361 } 1362 1363 lldb::addr_t 1364 SymbolFileDWARFDebugMap::LinkOSOFileAddress(SymbolFileDWARF *oso_symfile, 1365 lldb::addr_t oso_file_addr) { 1366 CompileUnitInfo *cu_info = GetCompileUnitInfo(oso_symfile); 1367 if (cu_info) { 1368 const FileRangeMap::Entry *oso_range_entry = 1369 cu_info->GetFileRangeMap(this).FindEntryThatContains(oso_file_addr); 1370 if (oso_range_entry) { 1371 const DebugMap::Entry *debug_map_entry = 1372 m_debug_map.FindEntryThatContains(oso_range_entry->data); 1373 if (debug_map_entry) { 1374 const lldb::addr_t offset = 1375 oso_file_addr - oso_range_entry->GetRangeBase(); 1376 const lldb::addr_t exe_file_addr = 1377 debug_map_entry->GetRangeBase() + offset; 1378 return exe_file_addr; 1379 } 1380 } 1381 } 1382 return LLDB_INVALID_ADDRESS; 1383 } 1384 1385 bool SymbolFileDWARFDebugMap::LinkOSOAddress(Address &addr) { 1386 // Make sure this address hasn't been fixed already 1387 Module *exe_module = GetObjectFile()->GetModule().get(); 1388 Module *addr_module = addr.GetModule().get(); 1389 if (addr_module == exe_module) 1390 return true; // Address is already in terms of the main executable module 1391 1392 CompileUnitInfo *cu_info = GetCompileUnitInfo(GetSymbolFileAsSymbolFileDWARF( 1393 addr_module->GetSymbolVendor()->GetSymbolFile())); 1394 if (cu_info) { 1395 const lldb::addr_t oso_file_addr = addr.GetFileAddress(); 1396 const FileRangeMap::Entry *oso_range_entry = 1397 cu_info->GetFileRangeMap(this).FindEntryThatContains(oso_file_addr); 1398 if (oso_range_entry) { 1399 const DebugMap::Entry *debug_map_entry = 1400 m_debug_map.FindEntryThatContains(oso_range_entry->data); 1401 if (debug_map_entry) { 1402 const lldb::addr_t offset = 1403 oso_file_addr - oso_range_entry->GetRangeBase(); 1404 const lldb::addr_t exe_file_addr = 1405 debug_map_entry->GetRangeBase() + offset; 1406 return exe_module->ResolveFileAddress(exe_file_addr, addr); 1407 } 1408 } 1409 } 1410 return true; 1411 } 1412 1413 LineTable *SymbolFileDWARFDebugMap::LinkOSOLineTable(SymbolFileDWARF *oso_dwarf, 1414 LineTable *line_table) { 1415 CompileUnitInfo *cu_info = GetCompileUnitInfo(oso_dwarf); 1416 if (cu_info) 1417 return line_table->LinkLineTable(cu_info->GetFileRangeMap(this)); 1418 return NULL; 1419 } 1420 1421 size_t 1422 SymbolFileDWARFDebugMap::AddOSOARanges(SymbolFileDWARF *dwarf2Data, 1423 DWARFDebugAranges *debug_aranges) { 1424 size_t num_line_entries_added = 0; 1425 if (debug_aranges && dwarf2Data) { 1426 CompileUnitInfo *compile_unit_info = GetCompileUnitInfo(dwarf2Data); 1427 if (compile_unit_info) { 1428 const FileRangeMap &file_range_map = 1429 compile_unit_info->GetFileRangeMap(this); 1430 for (size_t idx = 0; idx < file_range_map.GetSize(); idx++) { 1431 const FileRangeMap::Entry *entry = file_range_map.GetEntryAtIndex(idx); 1432 if (entry) { 1433 debug_aranges->AppendRange(dwarf2Data->GetID(), entry->GetRangeBase(), 1434 entry->GetRangeEnd()); 1435 num_line_entries_added++; 1436 } 1437 } 1438 } 1439 } 1440 return num_line_entries_added; 1441 } 1442