| /freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/ |
| H A D | SymbolVendorELF.cpp | 58 ObjectFileELF *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-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | Module.cpp | 346 if (obj_file != nullptr) { in GetUUID() 347 m_uuid = obj_file->GetUUID(); in GetUUID() 1007 if (obj_file != nullptr) { in GetSymbolFile() 1226 if (obj_file != nullptr) in GetSectionList() 1233 ObjectFile *obj_file = GetObjectFile(); in SectionFileAddressesChanged() local 1234 if (obj_file) in SectionFileAddressesChanged() 1349 if (obj_file) { in SetSymbolFileFileSpec() 1360 obj_file->ClearSymtab(); in SetSymbolFileFileSpec() 1411 if (obj_file) { in IsLoadedInTarget() 1603 return obj_file->GetVersion(); in GetVersion() [all …]
|
| H A D | DynamicLoader.cpp | 144 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local 145 if (obj_file != nullptr) { in GetSectionListFromModule() 146 sections = obj_file->GetSectionList(); in GetSectionListFromModule()
|
| H A D | Section.cpp | 158 Section::Section(const ModuleSP &module_sp, ObjectFile *obj_file, in Section() argument 165 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section() 174 const ModuleSP &module_sp, ObjectFile *obj_file, in Section() argument 181 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
|
| H A D | Address.cpp | 1035 ObjectFile *obj_file = module_sp->GetObjectFile(); in GetAddressClass() local 1036 if (obj_file) { in GetAddressClass() 1040 return obj_file->GetAddressClass(GetFileAddress()); in GetAddressClass()
|
| /freebsd-14.2/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 | 94 void PopulateSymtab(lldb_private::ObjectFile *obj_file, 97 void PopulateSectionList(lldb_private::ObjectFile *obj_file,
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Section.h | 116 Section(const lldb::ModuleSP &module_sp, ObjectFile *obj_file, 127 const lldb::ModuleSP &module_sp, ObjectFile *obj_file,
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | DynamicLoaderHexagonDYLD.cpp | 533 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local 534 if (obj_file) { in GetSectionListFromModule() 535 sections = obj_file->GetSectionList(); in GetSectionListFromModule()
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Expression/ |
| H A D | IRExecutionUnit.cpp | 1157 void IRExecutionUnit::PopulateSymtab(lldb_private::ObjectFile *obj_file, in PopulateSymtab() argument 1163 lldb_private::ObjectFile *obj_file, in PopulateSectionList() argument 1168 obj_file->GetModule(), obj_file, record.m_section_id, in PopulateSectionList()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DYLDRendezvous.cpp | 84 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); in ResolveRendezvousAddress() local 85 Address addr = obj_file->GetImageInfoAddress(target); in ResolveRendezvousAddress()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 411 ObjectFile *obj_file = GetObjectFile(); in GetModuleByCompUnitInfo() local 434 obj_file->GetModule()->ReportError( in GetModuleByCompUnitInfo() 467 obj_file->GetModule(), GetCompUnitInfoIndex(comp_unit_info), oso_file, in GetModuleByCompUnitInfo()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
| H A D | ProcessElfCore.cpp | 459 ObjectFile *obj_file = GetTarget().GetExecutableModule()->GetObjectFile(); in GetImageInfoAddress() local 460 Address addr = obj_file->GetImageInfoAddress(&GetTarget()); in GetImageInfoAddress()
|