Home
last modified time | relevance | path

Searched refs:objfile (Results 1 – 25 of 45) sorted by relevance

12

/external/python/cpython2/Modules/
Dld_so_aix.in110 shift; objfile=$1
114 objfile=`echo $1 | sed "s/-o//"`
135 if test "$objfile" = "libpython@VERSION@.so"; then
148 if test -z "$objfile"; then
149 objfile=shr.o
152 filename=`basename $objfile | sed "s/\.[^.]*$//"`
178 CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -Wl,-brtl -Wl,-bnortllib -lm -o $objfile"
184 $makexp $expfile "$objfile" $objs
/external/python/cpython3/Modules/
Dld_so_aix.in110 shift; objfile=$1
114 objfile=`echo $1 | sed "s/-o//"`
135 if test "$objfile" = "libpython@VERSION@@ABIFLAGS@.so"; then
148 if test -z "$objfile"; then
149 objfile=shr.o
152 filename=`basename $objfile | sed "s/\.[^.]*$//"`
178 CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -Wl,-brtl -Wl,-bnortllib -lm -o $objfile"
184 $makexp $expfile "$objfile" $objs
/external/clang/utils/check_cfc/
Dobj_diff.py19 def disassemble(objfile): argument
21 p = subprocess.Popen([disassembler, '-d', objfile],
26 print("Disassemble failed: {}".format(objfile))
30 def dump_debug(objfile): argument
32 …p = subprocess.Popen([disassembler, '-WliaprmfsoRt', objfile], stdout=subprocess.PIPE, stderr=subp…
35 print("Dump debug failed: {}".format(objfile))
/external/llvm-project/clang/utils/check_cfc/
Dobj_diff.py19 def disassemble(objfile): argument
21 p = subprocess.Popen([disassembler, '-d', objfile],
26 print("Disassemble failed: {}".format(objfile))
30 def dump_debug(objfile): argument
32 …p = subprocess.Popen([disassembler, '-WliaprmfsoRt', objfile], stdout=subprocess.PIPE, stderr=subp…
35 print("Dump debug failed: {}".format(objfile))
/external/pdfium/third_party/yasm/
Drun_yasm.py31 objfile = options.objfile variable
32 depfile = objfile + '.d'
/external/llvm-project/libc/loader/linux/
DCMakeLists.txt40 set(objfile ${LIBC_BUILD_DIR}/lib/${name}.o) variable
42 OUTPUT ${objfile}
43 COMMAND cp $<TARGET_OBJECTS:${fq_target_name}.__objects__> ${objfile}
48 DEPENDS ${objfile}
/external/llvm-project/lldb/source/API/
DSBSection.cpp163 ObjectFile *objfile = module_sp->GetObjectFile(); in GetFileOffset() local
164 if (objfile) in GetFileOffset()
165 return objfile->GetFileOffset() + section_sp->GetFileOffset(); in GetFileOffset()
197 ObjectFile *objfile = module_sp->GetObjectFile(); in GetSectionData() local
198 if (objfile) { in GetSectionData()
200 objfile->GetFileOffset() + section_sp->GetFileOffset(); in GetSectionData()
211 objfile->GetFileSpec().GetPath(), file_size, file_offset); in GetSectionData()
214 new DataExtractor(data_buffer_sp, objfile->GetByteOrder(), in GetSectionData()
215 objfile->GetAddressByteSize())); in GetSectionData()
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformMacOSX.cpp111 ObjectFile *objfile = exe_module_sp->GetObjectFile(); in GetSDKDirectory() local
112 if (!objfile) in GetSDKDirectory()
115 llvm::VersionTuple version = objfile->GetSDKVersion(); in GetSDKDirectory()
188 ObjectFile *objfile = module_sp->GetObjectFile(); in GetSharedModule() local
189 if (objfile == nullptr) { in GetSharedModule()
/external/google-breakpad/src/common/mac/
Dmacho_reader.cc106 struct fat_arch objfile; in Read() local
109 cursor >> objfile.cputype in Read()
110 >> objfile.cpusubtype in Read()
111 >> objfile.offset in Read()
112 >> objfile.size in Read()
113 >> objfile.align; in Read()
115 SuperFatArch super_fat_arch(objfile); in Read()
124 if (objfile.offset > fat_size || in Read()
125 objfile.size > fat_size - objfile.offset) { in Read()
/external/llvm-project/libc/cmake/modules/
DLLVMLibCLibraryRules.cmake46 get_target_property(objfile ${entrypoint_target} "OBJECT_FILE")
47 if(objfile)
48 set(${result} ${objfile} PARENT_SCOPE)
60 get_entrypoint_object_file(${aliasee} objfile)
61 set(${result} ${objfile} PARENT_SCOPE)
99 get_entrypoint_object_file(${dep} objfile)
100 list(APPEND obj_list ${objfile})
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARFDwo.cpp27 ObjectFileSP objfile, uint32_t id) in SymbolFileDWARFDwo() argument
28 : SymbolFileDWARF(objfile, objfile->GetSectionList( in SymbolFileDWARFDwo()
DSymbolFileDWARFDwo.h28 lldb::ObjectFileSP objfile, uint32_t id);
/external/llvm-project/llvm/utils/
DGenLibDeps.pl115 my $objfile = $libpath.$2;
116 $objdefs{$1} = $objfile;
117 $objdeps{$objfile} = {};
118 $libobjs{$lib}{$objfile}=1;
/external/llvm/utils/
DGenLibDeps.pl113 my $objfile = $libpath.$2;
114 $objdefs{$1} = $objfile;
115 $objdeps{$objfile} = {};
116 $libobjs{$lib}{$objfile}=1;
/external/llvm-project/lldb/test/Shell/Minidump/Windows/
Dfind-module.test7 RUN: -c %T/find-module.dmp -o "image dump objfile" -o exit | FileCheck %s
9 CHECK-LABEL: image dump objfile
/external/llvm-project/lldb/source/Symbol/
DArmUnwindInfo.cpp48 ArmUnwindInfo::ArmUnwindInfo(ObjectFile &objfile, SectionSP &arm_exidx, in ArmUnwindInfo() argument
50 : m_byte_order(objfile.GetByteOrder()), m_arm_exidx_sp(arm_exidx), in ArmUnwindInfo()
52 objfile.ReadSectionData(arm_exidx.get(), m_arm_exidx_data); in ArmUnwindInfo()
53 objfile.ReadSectionData(arm_extab.get(), m_arm_extab_data); in ArmUnwindInfo()
DSymbolContext.cpp494 ObjectFile *objfile = nullptr; in GetParentOfInlinedScope() local
497 objfile = symbol_file->GetObjectFile(); in GetParentOfInlinedScope()
499 if (objfile) { in GetParentOfInlinedScope()
506 objfile->GetFileSpec().GetPath().c_str()); in GetParentOfInlinedScope()
/external/llvm-project/lldb/test/Shell/Minidump/
Dbreakpad-symbols.test25 image dump objfile /tmp/test/linux-x86_64
26 # CHECK-LABEL: image dump objfile /tmp/test/linux-x86_64
/external/llvm-project/lldb/source/Core/
DValue.cpp395 ObjectFile *objfile = module->GetObjectFile(); in GetValueAsData() local
396 if (objfile) { in GetValueAsData()
397 Address so_addr(address, objfile->GetSectionList()); in GetValueAsData()
420 data.SetByteOrder(objfile->GetByteOrder()); in GetValueAsData()
421 data.SetAddressByteSize(objfile->GetAddressByteSize()); in GetValueAsData()
/external/llvm-project/lldb/include/lldb/Symbol/
DArmUnwindInfo.h32 ArmUnwindInfo(ObjectFile &objfile, lldb::SectionSP &arm_exidx,
DDWARFCallFrameInfo.h37 DWARFCallFrameInfo(ObjectFile &objfile, lldb::SectionSP &section, Type type);
DCompactUnwindInfo.h38 CompactUnwindInfo(ObjectFile &objfile, lldb::SectionSP &section);
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderDarwin.cpp656 ObjectFile *objfile = image_module_sp->GetObjectFile(); in AddModulesUsingImageInfos() local
657 if (objfile) { in AddModulesUsingImageInfos()
658 SectionList *sections = objfile->GetSectionList(); in AddModulesUsingImageInfos()
664 ModuleSpec module_spec(objfile->GetFileSpec(), in AddModulesUsingImageInfos()
670 module_spec.SetObjectOffset(objfile->GetFileOffset() + in AddModulesUsingImageInfos()
672 module_spec.SetObjectSize(objfile->GetByteSize()); in AddModulesUsingImageInfos()
/external/llvm-project/lldb/source/Plugins/Process/minidump/
DProcessMinidump.cpp586 auto *objfile = module_sp->GetObjectFile(); in ReadModuleList() local
587 if (objfile && objfile->GetPluginName() == in ReadModuleList()
589 if (((PlaceholderObjectFile *)objfile)->GetBaseImageAddress() != in ReadModuleList()
/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/
Dcore_reloc.c190 #define BITFIELDS_CASE_COMMON(objfile, test_name_prefix, name) \ argument
192 .bpf_obj_file = objfile, \

12