| /openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/t/ |
| H A D | 03-cplusplus.t | 17 my ($source_file, $object_file, $lib_file); 41 $object_file = $b->object_file($source_file); 44 is $object_file, $b->compile(source => $source_file, 'C++' => 1); 46 $lib_file = $b->lib_file($object_file, module_name => 'cplust'); 49 my ($lib, @temps) = $b->link(objects => $object_file, 55 for ($source_file, $object_file, $lib_file) {
|
| H A D | 01-basic.t | 17 my ($source_file, $object_file, $lib_file); 42 $object_file = $b->object_file($source_file); 45 is $object_file, $b->compile(source => $source_file); 47 $lib_file = $b->lib_file($object_file, module_name => 'basict'); 50 my ($lib, @temps) = $b->link(objects => $object_file, 56 for ($source_file, $object_file, $lib_file) {
|
| H A D | 02-link.t | 17 my ($source_file, $object_file, $exe_file); 43 eval { $object_file = $b->compile(source => $source_file) }; 45 ok -e $object_file, "found object file"; 50 unless -e $object_file; 53 eval { ($exe_file, @temps) = $b->link_executable(objects => $object_file) }; 74 for ($source_file, $object_file, $exe_file) {
|
| H A D | 04-base.t | 20 my ( $source_file, $object_file, $lib_file ); 140 is( $base->object_file($source_file), 383 for ($source_file, $object_file, $lib_file) {
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | UnwindTable.cpp | 49 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() 207 if (ObjectFile *object_file = m_module.GetObjectFile()) in GetAllowAssemblyEmulationUnwindPlans() local 208 return object_file->AllowAssemblyEmulationUnwindPlans(); in GetAllowAssemblyEmulationUnwindPlans()
|
| /openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/ |
| H A D | Base.pm | 111 sub object_file { subroutine 152 my $object_file = $args{object_file} 153 ? $args{object_file} 154 : $self->object_file($args{source}); 180 $self->arg_object_file($object_file), 185 or die "error building $object_file from '$args{source}'"; 187 return $object_file;
|
| /openbsd-src/gnu/llvm/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,
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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
|
| /openbsd-src/gnu/llvm/compiler-rt/cmake/Modules/ |
| H A D | CompilerRTCompile.cmake | 64 function(clang_compile object_file source) 104 OUTPUT ${object_file} 106 -o "${object_file}"
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/ |
| H A D | Windows.pm | 123 output => $args{object_file} || File::Spec->catfile($srcdir, $basename) . $cf->{obj_ext},
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/ |
| H A D | PlatformDarwin.cpp | 1051 ObjectFile *object_file = exe_module_sp->GetObjectFile(); in AddClangModuleCompilationOptionsForSDKType() local 1052 if (object_file) in AddClangModuleCompilationOptionsForSDKType() 1053 version = object_file->GetMinimumOSVersion(); in AddClangModuleCompilationOptionsForSDKType()
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | Module.cpp | 1552 ObjectFile *object_file = GetObjectFile(); in SetLoadAddress() local 1553 if (object_file != nullptr) { in SetLoadAddress() 1554 changed = object_file->SetLoadAddress(target, value, value_is_offset); in SetLoadAddress()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntimeV2.cpp | 2531 ObjectFile *object_file = m_objc_module_sp->GetObjectFile(); in WarnIfNoExpandedSharedCache() local 2532 if (!object_file) in WarnIfNoExpandedSharedCache() 2535 if (!object_file->IsInMemory()) in WarnIfNoExpandedSharedCache()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Target.cpp | 1697 auto *object_file = module.GetObjectFile(); in ModulesDidUnload() local 1699 if (!object_file) in ModulesDidUnload() 1702 auto type = object_file->GetType(); in ModulesDidUnload()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 4177 ObjectFile *object_file = symbol_file->GetObjectFile(); in AddModuleSymbols() local 4178 if (object_file && object_file->GetFileSpec() == symbol_fspec) { in AddModuleSymbols()
|