Home
last modified time | relevance | path

Searched refs:object_file (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindTable.cpp49 ObjectFile *object_file = m_module.GetObjectFile(); in Initialize() local
50 if (!object_file) in Initialize()
53 m_object_file_unwind_up = object_file->CreateCallFrameInfo(); in Initialize()
62 *object_file, sect, DWARFCallFrameInfo::EH); in Initialize()
68 *object_file, sect, DWARFCallFrameInfo::DWARF); in Initialize()
74 std::make_unique<CompactUnwindInfo>(*object_file, sect); in Initialize()
82 std::make_unique<ArmUnwindInfo>(*object_file, sect, sect_extab); in Initialize()
93 ObjectFile *object_file = m_module.GetObjectFile(); in Update() local
94 if (!object_file) in Update()
98 m_object_file_unwind_up = object_file->CreateCallFrameInfo(); in Update()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp51 ObjectFile *object_file = exe_module->GetObjectFile(); in LLDB_PLUGIN_DEFINE() local
52 if (object_file) { in LLDB_PLUGIN_DEFINE()
53 create = (object_file->GetStrata() == ObjectFile::eStrataRawImage); in LLDB_PLUGIN_DEFINE()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DAddressRange.cpp228 if (const auto object_file = section_sp->GetObjectFile()) in GetDescription() local
229 file_name = object_file->GetFileSpec().GetFilename().AsCString(); in GetDescription()
H A DModule.cpp1499 ObjectFile *object_file = GetObjectFile(); in SetLoadAddress() local
1500 if (object_file != nullptr) { in SetLoadAddress()
1501 changed = object_file->SetLoadAddress(target, value, value_is_offset); in SetLoadAddress()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp2662 ObjectFile *object_file = m_objc_module_sp->GetObjectFile(); in WarnIfNoExpandedSharedCache() local
2663 if (!object_file) in WarnIfNoExpandedSharedCache()
2666 if (!object_file->IsInMemory()) in WarnIfNoExpandedSharedCache()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp1744 auto *object_file = module.GetObjectFile(); in ModulesDidUnload() local
1746 if (!object_file) in ModulesDidUnload()
1749 auto type = object_file->GetType(); in ModulesDidUnload()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4364 ObjectFile *object_file = symbol_file->GetObjectFile(); in AddModuleSymbols() local
4365 if (object_file && object_file->GetFileSpec() == symbol_fspec) { in AddModuleSymbols()