Home
last modified time | relevance | path

Searched full:objfile (Results 1 – 25 of 38) sorted by relevance

12

/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/\.[^.]*$//"`
166 #echo " -> output file : $objfile"
178 CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -Wl,-brtl -Wl,-bnortllib -lm -o $objfile"
183 #echo $makexp $expfile "$objfile" $objs
184 $makexp $expfile "$objfile" $objs
/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/\.[^.]*$//"`
166 #echo " -> output file : $objfile"
178 CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -Wl,-brtl -Wl,-bnortllib -lm -o $objfile"
183 #echo $makexp $expfile "$objfile" $objs
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/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/
DRTDyldObjectLinkingLayer.cpp95 auto ObjFile = object::ObjectFile::createObjectFile(*O); in emit() local
96 if (!ObjFile) { in emit()
97 getExecutionSession().reportError(ObjFile.takeError()); in emit()
119 auto Info = RTDyld->loadObject(**ObjFile); in emit()
123 for (auto &Sym : (*ObjFile)->symbols()) { in emit()
144 NotifyLoaded(K, **ObjFile, *Info); in emit()
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/PDB/Inputs/
Ddebug-subsections.yaml4 ObjFile: 'Foo.obj'
13 ObjFile: 'Bar.obj'
26 ObjFile: 'd:\src\llvm\test\DebugInfo\PDB\Inputs\empty.obj'
68 ObjFile: 'ObjFileSubsections'
Dsource-names-2.yaml5 ObjFile: 'C:\src\test.obj'
Dsource-names-1.yaml5 ObjFile: 'C:\src\test.obj'
/external/pdfium/third_party/yasm/
Drun_yasm.py27 parser.add_argument("-o", dest="objfile")
30 objfile = options.objfile variable
31 depfile = objfile + '.d'
/external/syzkaller/pkg/report/
Dakaros.go20 objfile string member
26 objfile: filepath.Join(kernelObj, "akaros-kernel-64b"),
51 line = ctx.symbolizeLine(symb.Symbolize, ctx.objfile, line)
60 objfile string, line []byte) []byte {
69 frames, err := symbFunc(objfile, addr-1)
/external/llvm/lib/Object/
DModuleSummaryIndexObjectFile.cpp59 Expected<std::unique_ptr<ObjectFile>> ObjFile = in findBitcodeInMemBuffer() local
61 if (!ObjFile) in findBitcodeInMemBuffer()
62 return errorToErrorCode(ObjFile.takeError()); in findBitcodeInMemBuffer()
63 return findBitcodeInObject(*ObjFile->get()); in findBitcodeInMemBuffer()
DIRObjectFile.cpp299 Expected<std::unique_ptr<ObjectFile>> ObjFile = in findBitcodeInMemBuffer() local
301 if (!ObjFile) in findBitcodeInMemBuffer()
302 return errorToErrorCode(ObjFile.takeError()); in findBitcodeInMemBuffer()
303 return findBitcodeInObject(*ObjFile->get()); in findBitcodeInMemBuffer()
/external/google-breakpad/src/common/mac/
Dmacho_reader.cc104 struct fat_arch *objfile = &object_files_[i]; in Read() local
107 cursor >> objfile->cputype in Read()
108 >> objfile->cpusubtype in Read()
109 >> objfile->offset in Read()
110 >> objfile->size in Read()
111 >> objfile->align; in Read()
118 if (objfile->offset > fat_size || in Read()
119 objfile->size > fat_size - objfile->offset) { in Read()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/XRay/
DInstrumentationMap.cpp50 loadELF64(StringRef Filename, object::OwningBinary<object::ObjectFile> &ObjFile, in loadELF64() argument
57 if (!ObjFile.getBinary()->isELF() || in loadELF64()
58 !(ObjFile.getBinary()->getArch() == Triple::x86_64 || in loadELF64()
59 ObjFile.getBinary()->getArch() == Triple::ppc64le)) in loadELF64()
65 const auto &Sections = ObjFile.getBinary()->sections(); in loadELF64()
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/PDB/
Dpdbdump-debug-subsections.test6 YAML-NEXT: ObjFile: Foo.obj
15 YAML-NEXT: ObjFile: Bar.obj
28 YAML-NEXT: ObjFile: 'd:\src\llvm\test\DebugInfo\PDB\Inputs\empty.obj'
Dpdbdump-objfilename.yaml8 # CHECK-NEXT: ObjFile:{{ *}}'C:\src\test.obj'
13 ObjFile: 'C:\src\test.obj'
Dpdb-yaml-symbols.test28 YAML: ObjFile: 'd:\src\llvm\test\DebugInfo\PDB\Inputs\empty.obj'
77 YAML: ObjFile: ''
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DIRObjectFile.cpp98 Expected<std::unique_ptr<ObjectFile>> ObjFile = in findBitcodeInMemBuffer() local
100 if (!ObjFile) in findBitcodeInMemBuffer()
101 return ObjFile.takeError(); in findBitcodeInMemBuffer()
102 return findBitcodeInObject(*ObjFile->get()); in findBitcodeInMemBuffer()
/external/swiftshader/third_party/LLVM/tools/lto/
DLTOCodeGenerator.cpp194 tool_output_file objFile(uniqueObjPath.c_str(), errMsg); in compile_to_file() local
197 genResult = this->generateObjectFile(objFile.os(), errMsg); in compile_to_file()
198 objFile.os().close(); in compile_to_file()
199 if (objFile.os().has_error()) { in compile_to_file()
200 objFile.os().clear_error(); in compile_to_file()
203 objFile.keep(); in compile_to_file()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/
DLTOCodeGenerator.cpp254 ToolOutputFile objFile(Filename, FD); in compileOptimizedToFile() local
256 bool genResult = compileOptimized(&objFile.os()); in compileOptimizedToFile()
257 objFile.os().close(); in compileOptimizedToFile()
258 if (objFile.os().has_error()) { in compileOptimizedToFile()
260 objFile.os().error().message()) in compileOptimizedToFile()
262 objFile.os().clear_error(); in compileOptimizedToFile()
267 objFile.keep(); in compileOptimizedToFile()
/external/llvm/utils/
DGenLibDeps.pl113 my $objfile = $libpath.$2;
114 $objdefs{$1} = $objfile;
115 $objdeps{$objfile} = {};
116 $libobjs{$lib}{$objfile}=1;
117 # my $p = "../llvm/".$objfile;
/external/swiftshader/third_party/LLVM/utils/
DGenLibDeps.pl115 my $objfile = $libpath.$2;
116 $objdefs{$1} = $objfile;
117 $objdeps{$objfile} = {};
118 $libobjs{$lib}{$objfile}=1;
119 # my $p = "../llvm/".$objfile;
/external/swiftshader/third_party/llvm-7.0/llvm/utils/
DGenLibDeps.pl113 my $objfile = $libpath.$2;
114 $objdefs{$1} = $objfile;
115 $objdeps{$objfile} = {};
116 $libobjs{$lib}{$objfile}=1;
117 # my $p = "../llvm/".$objfile;
/external/llvm/lib/LTO/
DLTOCodeGenerator.cpp253 tool_output_file objFile(Filename.c_str(), FD); in compileOptimizedToFile() local
255 bool genResult = compileOptimized(&objFile.os()); in compileOptimizedToFile()
256 objFile.os().close(); in compileOptimizedToFile()
257 if (objFile.os().has_error()) { in compileOptimizedToFile()
258 objFile.os().clear_error(); in compileOptimizedToFile()
263 objFile.keep(); in compileOptimizedToFile()
/external/curl/packages/vms/
Dbuild_vms.com957 $ objfile = f$parse("''objdir'.OBJ;", file)
958 $ obj = f$search(objfile, 2)
969 $ librarian /object 'p3' 'objfile'
971 $ 'vo_o' "%CURL-I-OBJUTD, ", objfile, " is up to date"
981 $ librarian /object 'p3' 'objfile'
/external/iproute2/bash-completion/
Dtc220 local fword objfile section_list
223 objfile=${words[fword+1]}
227 section_list=$( objdump -h $objfile 2>/dev/null | \

12