| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/PECOFF/ |
| H A D | SymbolVendorPECOFF.cpp | 58 ObjectFilePECOFF *obj_file = in CreateInstance() local 60 if (!obj_file) in CreateInstance() 63 lldb_private::UUID uuid = obj_file->GetUUID(); in CreateInstance() 68 if (obj_file->GetSectionList()->FindSectionByType( in CreateInstance() 76 fspec = obj_file->GetDebugLink().value_or(FileSpec()); in CreateInstance() 83 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/ |
| H A D | SymbolVendorWasm.cpp | 60 ObjectFileWasm *obj_file = in CreateInstance() local 62 if (!obj_file) in CreateInstance() 66 if (obj_file->GetSectionList()->FindSectionByType( in CreateInstance() 74 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance() 76 module_spec.GetUUID() = obj_file->GetUUID(); in CreateInstance() 82 obj_file->GetExternalDebugInfoFileSpec(); in CreateInstance()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/ |
| H A D | SymbolVendorELF.cpp | 76 ObjectFileELF *obj_file = in CreateInstance() local 78 if (!obj_file) in CreateInstance() 81 lldb_private::UUID uuid = obj_file->GetUUID(); in CreateInstance() 86 if (obj_file->GetSectionList()->FindSectionByType( in CreateInstance() 94 fspec = obj_file->GetDebugLink().value_or(FileSpec()); in CreateInstance() 101 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Module.cpp | 351 ObjectFile *obj_file = GetObjectFile(); in GetUUID() local 353 if (obj_file != nullptr) { in GetUUID() 354 m_uuid = obj_file->GetUUID(); in GetUUID() 514 if (ObjectFile *obj_file = sc.module_sp->GetObjectFile()) in ResolveSymbolContextForAddress() local 516 obj_file->ResolveSymbolForAddress(so_addr, verify_unique); in ResolveSymbolContextForAddress() 988 ObjectFile *obj_file = GetObjectFile(); in GetSymbolFile() local 989 if (obj_file != nullptr) { in GetSymbolFile() 1219 ObjectFile *obj_file = GetObjectFile(); in GetSectionList() local 1220 if (obj_file != nullptr) in GetSectionList() 1221 obj_file->CreateSections(*GetUnifiedSectionList()); in GetSectionList() [all …]
|
| H A D | DynamicLoader.cpp | 149 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local 150 if (obj_file != nullptr) { in GetSectionListFromModule() 151 sections = obj_file->GetSectionList(); in GetSectionListFromModule()
|
| H A D | Section.cpp | 162 Section::Section(const ModuleSP &module_sp, ObjectFile *obj_file, in Section() argument 168 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section() 177 const ModuleSP &module_sp, ObjectFile *obj_file, in Section() argument 183 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
|
| H A D | Address.cpp | 1024 ObjectFile *obj_file = module_sp->GetObjectFile(); in GetAddressClass() local 1025 if (obj_file) { in GetAddressClass() 1029 return obj_file->GetAddressClass(GetFileAddress()); in GetAddressClass()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | ObjectFileJIT.h | 26 virtual void PopulateSymtab(lldb_private::ObjectFile *obj_file, 28 virtual void PopulateSectionList(lldb_private::ObjectFile *obj_file,
|
| H A D | IRExecutionUnit.h | 95 void PopulateSymtab(lldb_private::ObjectFile *obj_file, 98 void PopulateSectionList(lldb_private::ObjectFile *obj_file,
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | DynamicLoaderHexagonDYLD.cpp | 531 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local 532 if (obj_file) { in GetSectionListFromModule() 533 sections = obj_file->GetSectionList(); in GetSectionListFromModule()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Section.h | 132 Section(const lldb::ModuleSP &module_sp, ObjectFile *obj_file, 143 const lldb::ModuleSP &module_sp, ObjectFile *obj_file,
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBModule.cpp | 98 ObjectFile *obj_file = module_sp->GetObjectFile(); in IsFileBacked() local 99 if (!obj_file) in IsFileBacked() 102 return !obj_file->IsInMemory(); in IsFileBacked()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 413 ObjectFile *obj_file = GetObjectFile(); in GetModuleByCompUnitInfo() local 437 obj_file->GetModule()->ReportError( in GetModuleByCompUnitInfo() 470 obj_file->GetModule(), GetCompUnitInfoIndex(comp_unit_info), oso_file, in GetModuleByCompUnitInfo() 873 ObjectFile *obj_file = GetObjectFile(); in ResolveSymbolContext() local 877 obj_file ? obj_file->GetFileSpec() in ResolveSymbolContext()
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | IRExecutionUnit.cpp | 1197 void IRExecutionUnit::PopulateSymtab(lldb_private::ObjectFile *obj_file, in PopulateSymtab() argument 1203 lldb_private::ObjectFile *obj_file, in PopulateSectionList() argument 1208 obj_file->GetModule(), obj_file, record.m_section_id, in PopulateSectionList()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DYLDRendezvous.cpp | 84 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); in ResolveRendezvousAddress() 85 Address addr = obj_file->GetImageInfoAddress(target); in ResolveRendezvousAddress() 58 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); ResolveRendezvousAddress() local
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
| H A D | ProcessElfCore.cpp | 482 ObjectFile *obj_file = GetTarget().GetExecutableModule()->GetObjectFile(); in GetImageInfoAddress() local 483 Address addr = obj_file->GetImageInfoAddress(&GetTarget()); in GetImageInfoAddress()
|