Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindTable.cpp48 ObjectFile *object_file = m_module.GetObjectFile(); in Initialize() local
49 if (!object_file) in Initialize()
55 m_object_file_unwind_up = object_file->CreateCallFrameInfo(); in Initialize()
64 *object_file, sect, DWARFCallFrameInfo::EH); in Initialize()
69 *object_file, sect, DWARFCallFrameInfo::DWARF); in Initialize()
74 std::make_unique<CompactUnwindInfo>(*object_file, sect); in Initialize()
81 std::make_unique<ArmUnwindInfo>(*object_file, sect, sect_extab); in Initialize()
219 if (ObjectFile *object_file = m_module.GetObjectFile()) in GetAllowAssemblyEmulationUnwindPlans() local
220 return object_file->AllowAssemblyEmulationUnwindPlans(); in GetAllowAssemblyEmulationUnwindPlans()
H A DSymbolFile.cpp264 if (const ObjectFile *object_file = GetObjectFile()) in GetObjectName() local
265 return object_file->GetObjectName(); in GetObjectName()
/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.cpp231 if (const auto object_file = section_sp->GetObjectFile()) in GetDescription() local
232 file_name = object_file->GetFileSpec().GetFilename().AsCString(); in GetDescription()
H A DModule.cpp1490 ObjectFile *object_file = GetObjectFile(); in SetLoadAddress() local
1491 if (object_file != nullptr) { in SetLoadAddress()
1492 changed = object_file->SetLoadAddress(target, value, value_is_offset); in SetLoadAddress()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp2678 ObjectFile *object_file = m_objc_module_sp->GetObjectFile(); in WarnIfNoExpandedSharedCache() local
2679 if (!object_file) in WarnIfNoExpandedSharedCache()
2682 if (!object_file->IsInMemory()) in WarnIfNoExpandedSharedCache()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4377 ObjectFile *object_file = symbol_file->GetObjectFile(); in AddModuleSymbols() local
4378 if (object_file && object_file->GetFileSpec() == symbol_fspec) { in AddModuleSymbols()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp1902 auto *object_file = module.GetObjectFile(); in ModulesDidUnload() local
1904 if (!object_file) in ModulesDidUnload()
1907 auto type = object_file->GetType(); in ModulesDidUnload()