/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/ |
D | RTDyldObjectLinkingLayer.cpp | 95 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/llvm/lib/Object/ |
D | ModuleSummaryIndexObjectFile.cpp | 59 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()
|
D | IRObjectFile.cpp | 299 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/swiftshader/third_party/llvm-7.0/llvm/lib/XRay/ |
D | InstrumentationMap.cpp | 50 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/lib/Object/ |
D | IRObjectFile.cpp | 98 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-7.0/llvm/test/DebugInfo/PDB/ |
D | pdbdump-debug-subsections.test | 6 YAML-NEXT: ObjFile: Foo.obj 15 YAML-NEXT: ObjFile: Bar.obj 28 YAML-NEXT: ObjFile: 'd:\src\llvm\test\DebugInfo\PDB\Inputs\empty.obj'
|
D | pdb-yaml-symbols.test | 28 YAML: ObjFile: 'd:\src\llvm\test\DebugInfo\PDB\Inputs\empty.obj' 77 YAML: ObjFile: ''
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 132 std::unique_ptr<object::ObjectFile> ObjFile; in addObjectFile() local 134 std::tie(ObjFile, MemBuf) = Obj.takeBinary(); in addObjectFile() 135 addObjectFile(std::move(ObjFile)); in addObjectFile()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 128 std::unique_ptr<object::ObjectFile> ObjFile; in addObjectFile() local 130 std::tie(ObjFile, MemBuf) = Obj.takeBinary(); in addObjectFile() 131 addObjectFile(std::move(ObjFile)); in addObjectFile()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/sancov/ |
D | sancov.cpp | 898 static void printCovPoints(const std::string &ObjFile, raw_ostream &OS) { in printCovPoints() argument 899 for (uint64_t Addr : findCoveragePointAddrs(ObjFile)) { in printCovPoints() 1225 for (const std::string &ObjFile : ClInputFiles) { in main() local 1226 printCovPoints(ObjFile, outs()); in main()
|
/external/llvm/tools/sancov/ |
D | sancov.cc | 474 static void printCovPoints(const std::string &ObjFile, raw_ostream &OS) { in printCovPoints() argument 475 for (uint64_t Addr : getCoveragePoints(ObjFile)) { in printCovPoints() 1224 for (const std::string &ObjFile : ClInputFiles) { in main() local 1225 printCovPoints(ObjFile, outs()); in main()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 316 const auto *ObjFile = DObj->getFile(); in dump() local 318 dumpUUID(OS, *ObjFile); in dump()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 2119 StringRef ObjFile = DMO.getObjectFilename(); in loadClangModule() local 2121 bool isArchive = ObjFile.endswith(")"); in loadClangModule()
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 3302 StringRef ObjFile = CurrentDebugObject->getObjectFilename(); in loadClangModule() local 3304 bool isArchive = ObjFile.endswith(")"); in loadClangModule()
|