Home
last modified time | relevance | path

Searched refs:obj_file (Results 1 – 14 of 14) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/
H A DSymbolVendorWasm.cpp65 ObjectFileWasm *obj_file = in CreateInstance() local
67 if (!obj_file) in CreateInstance()
71 if (obj_file->GetSectionList()->FindSectionByType( in CreateInstance()
79 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
81 module_spec.GetUUID() = obj_file->GetUUID(); in CreateInstance()
87 obj_file->GetExternalDebugInfoFileSpec(); in CreateInstance()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp64 ObjectFileELF *obj_file = in CreateInstance() local
66 if (!obj_file) in CreateInstance()
69 lldb_private::UUID uuid = obj_file->GetUUID(); in CreateInstance()
74 if (obj_file->GetSectionList()->FindSectionByType( in CreateInstance()
82 fspec = obj_file->GetDebugLink().getValueOr(FileSpec()); in CreateInstance()
89 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp351 if (obj_file != nullptr) { in GetUUID()
352 m_uuid = obj_file->GetUUID(); in GetUUID()
1040 if (obj_file != nullptr) { in GetSymbolFile()
1281 if (obj_file != nullptr) in GetSectionList()
1288 ObjectFile *obj_file = GetObjectFile(); in SectionFileAddressesChanged() local
1289 if (obj_file) in SectionFileAddressesChanged()
1403 if (obj_file) { in SetSymbolFileFileSpec()
1414 obj_file->ClearSymtab(); in SetSymbolFileFileSpec()
1465 if (obj_file) { in IsLoadedInTarget()
1650 return obj_file->GetVersion(); in GetVersion()
[all …]
H A DDynamicLoader.cpp142 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local
143 if (obj_file != nullptr) { in GetSectionListFromModule()
144 sections = obj_file->GetSectionList(); in GetSectionListFromModule()
H A DSection.cpp154 Section::Section(const ModuleSP &module_sp, ObjectFile *obj_file, in Section() argument
161 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
176 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 DAddress.cpp999 ObjectFile *obj_file = module_sp->GetObjectFile(); in GetAddressClass() local
1000 if (obj_file) { in GetAddressClass()
1004 return obj_file->GetAddressClass(GetFileAddress()); in GetAddressClass()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DSection.h102 Section(const lldb::ModuleSP &module_sp, ObjectFile *obj_file,
113 const lldb::ModuleSP &module_sp, ObjectFile *obj_file,
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h94 void PopulateSymtab(lldb_private::ObjectFile *obj_file,
97 void PopulateSectionList(lldb_private::ObjectFile *obj_file,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.cpp547 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local
548 if (obj_file) { in GetSectionListFromModule()
549 sections = obj_file->GetSectionList(); in GetSectionListFromModule()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h36 virtual void PopulateSymtab(lldb_private::ObjectFile *obj_file,
39 virtual void PopulateSectionList(lldb_private::ObjectFile *obj_file,
/freebsd-13.1/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp1241 void IRExecutionUnit::PopulateSymtab(lldb_private::ObjectFile *obj_file, in PopulateSymtab() argument
1247 lldb_private::ObjectFile *obj_file, in PopulateSectionList() argument
1252 obj_file->GetModule(), obj_file, record.m_section_id, in PopulateSectionList()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp50 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); in ResolveRendezvousAddress() local
51 Address addr = obj_file->GetImageInfoAddress(target); in ResolveRendezvousAddress()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp411 ObjectFile *obj_file = GetObjectFile(); in GetModuleByCompUnitInfo() local
429 obj_file->GetModule()->ReportError( in GetModuleByCompUnitInfo()
462 obj_file->GetModule(), GetCompUnitInfoIndex(comp_unit_info), oso_file, in GetModuleByCompUnitInfo()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp396 ObjectFile *obj_file = GetTarget().GetExecutableModule()->GetObjectFile(); in GetImageInfoAddress() local
397 Address addr = obj_file->GetImageInfoAddress(&GetTarget()); in GetImageInfoAddress()