| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | UnwindTable.cpp | 48 ObjectFile *object_file = m_module.GetObjectFile(); in Initialize() local 49 if (!object_file) in Initialize() 52 m_object_file_unwind_up = object_file->CreateCallFrameInfo(); in Initialize() 61 *object_file, sect, DWARFCallFrameInfo::EH); in Initialize() 67 *object_file, sect, DWARFCallFrameInfo::DWARF); in Initialize() 73 std::make_unique<CompactUnwindInfo>(*object_file, sect); in Initialize() 81 std::make_unique<ArmUnwindInfo>(*object_file, sect, sect_extab); in Initialize() 206 if (ObjectFile *object_file = m_module.GetObjectFile()) in GetAllowAssemblyEmulationUnwindPlans() local 207 return object_file->AllowAssemblyEmulationUnwindPlans(); in GetAllowAssemblyEmulationUnwindPlans()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/ |
| H A D | PECallFrameInfo.cpp | 37 UnwindCodesIterator(ObjectFilePECOFF &object_file, uint32_t unwind_info_rva); 62 UnwindCodesIterator::UnwindCodesIterator(ObjectFilePECOFF &object_file, in UnwindCodesIterator() argument 64 : m_object_file(object_file), in UnwindCodesIterator() 125 EHProgramBuilder(ObjectFilePECOFF &object_file, uint32_t unwind_info_rva); 146 EHProgramBuilder::EHProgramBuilder(ObjectFilePECOFF &object_file, in EHProgramBuilder() argument 148 : m_iterator(object_file, unwind_info_rva) {} in EHProgramBuilder() 435 PECallFrameInfo::PECallFrameInfo(ObjectFilePECOFF &object_file, in PECallFrameInfo() argument 438 : m_object_file(object_file), in PECallFrameInfo() 439 m_exception_dir(object_file.ReadImageDataByRVA(exception_dir_rva, in PECallFrameInfo()
|
| H A D | PECallFrameInfo.h | 27 explicit PECallFrameInfo(ObjectFilePECOFF &object_file,
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Static/ |
| H A D | DynamicLoaderStatic.cpp | 51 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()
|
| /llvm-project-15.0.7/lldb/unittests/ObjectFile/PECOFF/ |
| H A D | TestPECallFrameInfo.cpp | 196 ObjectFile *object_file = module_sp->GetObjectFile(); in GetUnwindPlan() local 197 ASSERT_NE(object_file, nullptr); in GetUnwindPlan() 199 std::unique_ptr<CallFrameInfo> cfi = object_file->CreateCallFrameInfo(); in GetUnwindPlan() 202 SectionList *sect_list = object_file->GetSectionList(); in GetUnwindPlan()
|
| /llvm-project-15.0.7/libcxx/utils/libcxx/ |
| H A D | compiler.py | 197 def compileLinkTwoSteps(self, source_file, out=None, object_file=None, argument 201 if object_file is None: 206 with_fn = lambda: libcxx.util.nullContext(object_file) 207 with with_fn() as object_file: 209 source_file, object_file, flags=flags, cwd=cwd) 214 object_file, exec_path=out, flags=flags, cwd=cwd)
|
| /llvm-project-15.0.7/llvm/bindings/python/llvm/ |
| H A D | object.py | 291 def __init__(self, ptr, object_file): argument 293 assert isinstance(object_file, ObjectFile) 298 self._object_file = object_file
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | link-open-file.test | 27 object_file = sys.argv[1] 58 subprocess.check_call(['ld.lld.exe', object_file, '-o', elf])
|
| /llvm-project-15.0.7/compiler-rt/cmake/Modules/ |
| H A D | CompilerRTCompile.cmake | 64 function(clang_compile object_file source) 104 OUTPUT ${object_file} 106 -o "${object_file}"
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderMacOS.cpp | 43 ObjectFile *object_file = exe_module->GetObjectFile(); in CreateInstance() local 44 if (object_file) { in CreateInstance() 45 create = (object_file->GetStrata() == ObjectFile::eStrataUser); in CreateInstance()
|
| H A D | DynamicLoaderMacOSXDYLD.cpp | 63 ObjectFile *object_file = exe_module->GetObjectFile(); in LLDB_PLUGIN_DEFINE() local 64 if (object_file) { in LLDB_PLUGIN_DEFINE() 65 create = (object_file->GetStrata() == ObjectFile::eStrataUser); in LLDB_PLUGIN_DEFINE()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SystemRuntime/MacOSX/ |
| H A D | SystemRuntimeMacOSX.cpp | 49 ObjectFile *object_file = exe_module->GetObjectFile(); in LLDB_PLUGIN_DEFINE() local 50 if (object_file) { in LLDB_PLUGIN_DEFINE() 51 create = (object_file->GetStrata() == ObjectFile::eStrataUser); in LLDB_PLUGIN_DEFINE()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/ |
| H A D | PlatformDarwin.cpp | 1019 ObjectFile *object_file = exe_module_sp->GetObjectFile(); in AddClangModuleCompilationOptionsForSDKType() local 1020 if (object_file) in AddClangModuleCompilationOptionsForSDKType() 1021 version = object_file->GetMinimumOSVersion(); in AddClangModuleCompilationOptionsForSDKType()
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
| H A D | DynamicLoaderDarwinKernel.cpp | 143 ObjectFile *object_file = exe_module->GetObjectFile(); in CreateInstance() local 144 if (object_file) { in CreateInstance() 145 if (object_file->GetStrata() != ObjectFile::eStrataKernel) { in CreateInstance()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | Module.cpp | 1570 ObjectFile *object_file = GetObjectFile(); in SetLoadAddress() local 1571 if (object_file != nullptr) { in SetLoadAddress() 1572 changed = object_file->SetLoadAddress(target, value, value_is_offset); in SetLoadAddress()
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntimeV2.cpp | 2514 ObjectFile *object_file = m_objc_module_sp->GetObjectFile(); in WarnIfNoExpandedSharedCache() local 2515 if (!object_file) in WarnIfNoExpandedSharedCache() 2518 if (!object_file->IsInMemory()) in WarnIfNoExpandedSharedCache()
|
| /llvm-project-15.0.7/libc/cmake/modules/ |
| H A D | LLVMLibCObjectRules.cmake | 283 get_target_property(object_file ${fq_dep_name} "OBJECT_FILE")
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 4162 ObjectFile *object_file = symbol_file->GetObjectFile(); in AddModuleSymbols() local 4163 if (object_file && object_file->GetFileSpec() == symbol_fspec) { in AddModuleSymbols()
|