Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/PECOFF/
H A DSymbolVendorPECOFF.cpp59 ObjectFilePECOFF *obj_file = in CreateInstance() local
61 if (!obj_file) in CreateInstance()
64 lldb_private::UUID uuid = obj_file->GetUUID(); in CreateInstance()
69 if (obj_file->GetSectionList()->FindSectionByType( in CreateInstance()
77 fspec = obj_file->GetDebugLink().value_or(FileSpec()); in CreateInstance()
84 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/wasm/
H A DSymbolVendorWasm.cpp60 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()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp59 ObjectFileELF *obj_file = in CreateInstance() local
61 if (!obj_file) in CreateInstance()
64 lldb_private::UUID uuid = obj_file->GetUUID(); in CreateInstance()
69 if (obj_file->GetSectionList()->FindSectionByType( in CreateInstance()
77 fspec = obj_file->GetDebugLink().value_or(FileSpec()); in CreateInstance()
84 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
/llvm-project-15.0.7/llvm/cmake/modules/
H A DTensorFlowCompile.cmake47 function(tf_compile model tag_set signature_def_key fname cpp_class hdr_file obj_file)
50 add_custom_command(OUTPUT ${obj_file} ${hdr_file}
63 set(GENERATED_OBJS ${GENERATED_OBJS} ${obj_file} PARENT_SCOPE)
64 set_source_files_properties(${obj_file} PROPERTIES
75 set(obj_file ${prefix}.o) variable
84 configure_file(${override_object} ${obj_file} COPYONLY)
85 message(STATUS "Using provided header " ${hdr_file} " and object " ${obj_file} "
87 set(GENERATED_OBJS ${GENERATED_OBJS} ${obj_file})
111 …_ML_MODELS_ABSOLUTE} ${tag_set} ${signature_def_key} ${fname} ${cpp_class} ${hdr_file} ${obj_file})
/llvm-project-15.0.7/lldb/source/Core/
H A DModule.cpp347 if (obj_file != nullptr) { in GetUUID()
348 m_uuid = obj_file->GetUUID(); in GetUUID()
1043 if (obj_file != nullptr) { in GetSymbolFile()
1296 if (obj_file != nullptr) in GetSectionList()
1303 ObjectFile *obj_file = GetObjectFile(); in SectionFileAddressesChanged() local
1304 if (obj_file) in SectionFileAddressesChanged()
1416 if (obj_file) { in SetSymbolFileFileSpec()
1427 obj_file->ClearSymtab(); in SetSymbolFileFileSpec()
1478 if (obj_file) { in IsLoadedInTarget()
1664 return obj_file->GetVersion(); in GetVersion()
[all …]
H A DDynamicLoader.cpp140 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local
141 if (obj_file != nullptr) { in GetSectionListFromModule()
142 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()
170 const ModuleSP &module_sp, ObjectFile *obj_file, in Section() argument
177 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
H A DAddress.cpp1029 ObjectFile *obj_file = module_sp->GetObjectFile(); in GetAddressClass() local
1030 if (obj_file) { in GetAddressClass()
1034 return obj_file->GetAddressClass(GetFileAddress()); in GetAddressClass()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp96 ObjectFile *obj_file = in CreateInstance() local
98 if (!obj_file) in CreateInstance()
126 FileSpec file_spec = obj_file->GetFileSpec(); in CreateInstance()
296 symbol_vendor->AddSymbolFileRepresentation(obj_file->shared_from_this()); in CreateInstance()
/llvm-project-15.0.7/clang/tools/scan-build-py/tests/functional/cases/
H A Dtest_from_cmd.py84 obj_file = os.path.join(target_dir, 'test.o')
86 command = ' '.join([compiler, '-c', src_file, '-o', obj_file])
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DSection.h108 Section(const lldb::ModuleSP &module_sp, ObjectFile *obj_file,
119 const lldb::ModuleSP &module_sp, ObjectFile *obj_file,
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.cpp537 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local
538 if (obj_file) { in GetSectionListFromModule()
539 sections = obj_file->GetSectionList(); in GetSectionListFromModule()
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h94 void PopulateSymtab(lldb_private::ObjectFile *obj_file,
97 void PopulateSectionList(lldb_private::ObjectFile *obj_file,
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DObjectFile.h38 virtual void PopulateSymtab(lldb_private::ObjectFile *obj_file,
41 virtual void PopulateSectionList(lldb_private::ObjectFile *obj_file,
/llvm-project-15.0.7/lldb/source/API/
H A DSBModule.cpp98 ObjectFile *obj_file = module_sp->GetObjectFile(); in IsFileBacked() local
99 if (!obj_file) in IsFileBacked()
102 return !obj_file->IsInMemory(); in IsFileBacked()
/llvm-project-15.0.7/lldb/source/Expression/
H A DIRExecutionUnit.cpp1156 void IRExecutionUnit::PopulateSymtab(lldb_private::ObjectFile *obj_file, in PopulateSymtab() argument
1162 lldb_private::ObjectFile *obj_file, in PopulateSectionList() argument
1167 obj_file->GetModule(), obj_file, record.m_section_id, in PopulateSectionList()
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp58 ObjectFile *obj_file = target->GetExecutableModule()->GetObjectFile(); in ResolveRendezvousAddress() local
59 Address addr = obj_file->GetImageInfoAddress(target); in ResolveRendezvousAddress()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp475 ObjectFile *obj_file = module_sp->GetObjectFile(); in ModuleIsExcludedForUnconstrainedSearches() local
476 if (!obj_file) in ModuleIsExcludedForUnconstrainedSearches()
479 ObjectFile::Type obj_type = obj_file->GetType(); in ModuleIsExcludedForUnconstrainedSearches()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindows.cpp616 ObjectFile *obj_file = target.GetExecutableModule()->GetObjectFile(); in GetImageInfoAddress() local
617 Address addr = obj_file->GetImageInfoAddress(&target); in GetImageInfoAddress()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp404 ObjectFile *obj_file = GetObjectFile(); in GetModuleByCompUnitInfo() local
421 obj_file->GetModule()->ReportError( in GetModuleByCompUnitInfo()
454 obj_file->GetModule(), GetCompUnitInfoIndex(comp_unit_info), oso_file, in GetModuleByCompUnitInfo()
/llvm-project-15.0.7/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp459 ObjectFile *obj_file = GetTarget().GetExecutableModule()->GetObjectFile(); in GetImageInfoAddress() local
460 Address addr = obj_file->GetImageInfoAddress(&GetTarget()); in GetImageInfoAddress()