Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/t/
H A D003-usage.t16 my ($source_file, $obj_file, $lib_file, $module);
47 $obj_file = $b->compile( source => $source_file );
48 ok $obj_file;
49 ok -e $obj_file, "Make sure $obj_file exists";
55 $lib_file = $b->link( objects => $obj_file, module_name => $module );
115 for ( $obj_file, $lib_file, $source_file) {
H A D002-more.t14 my ($source_file, $obj_file, $lib_file);
44 $obj_file = $b->compile( source => $source_file );
45 ok $obj_file, "ExtUtils::CBuilder::compile() returned true value";
46 ok -e $obj_file, "Make sure $obj_file exists";
53 $lib_file = $b->link( objects => $obj_file, module_name => $module );
129 for ( $obj_file, $lib_file, $source_file) {
H A D001-basic.t11 my ($source_file, $obj_file, $lib_file);
53 $obj_file = $b->compile( source => $source_file );
54 ok $obj_file, "ExtUtils::CBuilder::compile() returned true value";
55 ok -e $obj_file, "Make sure $obj_file exists";
62 $lib_file = $b->link( objects => $obj_file, module_name => $module );
136 for ( $obj_file, $lib_file, $source_file) {
179 for ( $obj_file, $lib_file, $source_file) {
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolVendor/wasm/
H A DSymbolVendorWasm.cpp61 ObjectFileWasm *obj_file = in CreateInstance() local
63 if (!obj_file) in CreateInstance()
67 if (obj_file->GetSectionList()->FindSectionByType( in CreateInstance()
75 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
77 module_spec.GetUUID() = obj_file->GetUUID(); in CreateInstance()
83 obj_file->GetExternalDebugInfoFileSpec(); in CreateInstance()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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})
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DModule.cpp347 ObjectFile *obj_file = GetObjectFile(); in GetUUID() local
349 if (obj_file != nullptr) { in GetUUID()
350 m_uuid = obj_file->GetUUID(); in GetUUID()
507 if (ObjectFile *obj_file = sc.module_sp->GetObjectFile()) in ResolveSymbolContextForAddress() local
509 obj_file->ResolveSymbolForAddress(so_addr, verify_unique); in ResolveSymbolContextForAddress()
1056 ObjectFile *obj_file = GetObjectFile(); in GetSymbolFile() local
1057 if (obj_file != nullptr) { in GetSymbolFile()
1274 ObjectFile *obj_file = GetObjectFile(); in GetSectionList() local
1275 if (obj_file != nullptr) in GetSectionList()
1276 obj_file->CreateSections(*GetUnifiedSectionList()); in GetSectionList()
[all …]
H A DDynamicLoader.cpp144 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local
145 if (obj_file != nullptr) { in GetSectionListFromModule()
146 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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp95 ObjectFile *obj_file = in CreateInstance() local
97 if (!obj_file) in CreateInstance()
125 FileSpec file_spec = obj_file->GetFileSpec(); in CreateInstance()
288 symbol_vendor->AddSymbolFileRepresentation(obj_file->shared_from_this()); in CreateInstance()
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/
H A DBase.pm218 my ($obj_file, @lib_files);
222 $obj_file = $self->compile('C++' => $is_cplusplus, source => $tmpfile);
223 @lib_files = $self->link(objects => $obj_file, module_name => 'compilet');
227 foreach (grep defined, $tmpfile, $obj_file, @lib_files) {
/openbsd-src/gnu/llvm/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])
/openbsd-src/gnu/llvm/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,
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h94 void PopulateSymtab(lldb_private::ObjectFile *obj_file,
97 void PopulateSectionList(lldb_private::ObjectFile *obj_file,
/openbsd-src/gnu/llvm/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,
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Expression/
H A DIRExecutionUnit.cpp1157 void IRExecutionUnit::PopulateSymtab(lldb_private::ObjectFile *obj_file, in PopulateSymtab() argument
1163 lldb_private::ObjectFile *obj_file, in PopulateSectionList() argument
1168 obj_file->GetModule(), obj_file, record.m_section_id, in PopulateSectionList()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp476 ObjectFile *obj_file = module_sp->GetObjectFile(); in ModuleIsExcludedForUnconstrainedSearches() local
477 if (!obj_file) in ModuleIsExcludedForUnconstrainedSearches()
480 ObjectFile::Type obj_type = obj_file->GetType(); in ModuleIsExcludedForUnconstrainedSearches()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp414 ObjectFile *obj_file = GetObjectFile(); in GetModuleByCompUnitInfo() local
437 obj_file->GetModule()->ReportError( in GetModuleByCompUnitInfo()
470 obj_file->GetModule(), GetCompUnitInfoIndex(comp_unit_info), oso_file, in GetModuleByCompUnitInfo()
/openbsd-src/gnu/llvm/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()

12