/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 57 Dyld = 0; in RuntimeDyld() 62 delete Dyld; in ~RuntimeDyld() 66 if (!Dyld) { in loadObject() 68 Dyld = new RuntimeDyldMachO(MM); in loadObject() 72 if(!Dyld->isCompatibleFormat(InputBuffer)) in loadObject() 76 return Dyld->loadObject(InputBuffer); in loadObject() 80 return Dyld->getSymbolAddress(Name); in getSymbolAddress() 84 Dyld->resolveRelocations(); in resolveRelocations() 88 Dyld->reassignSymbolAddress(Name, Addr); in reassignSymbolAddress() 92 return Dyld->getErrorString(); in getErrorString()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 985 Dyld = nullptr; in RuntimeDyld() 996 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local 998 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF() 999 Dyld->setRuntimeDyldChecker(Checker); in createRuntimeDyldCOFF() 1000 return Dyld; in createRuntimeDyldCOFF() 1007 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM, Resolver)); in createRuntimeDyldELF() local 1008 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF() 1009 Dyld->setRuntimeDyldChecker(Checker); in createRuntimeDyldELF() 1010 return Dyld; in createRuntimeDyldELF() 1018 std::unique_ptr<RuntimeDyldMachO> Dyld = in createRuntimeDyldMachO() local [all …]
|
D | RuntimeDyldCheckerImpl.h | 42 RuntimeDyldImpl &getRTDyld() const { return *RTDyld.Dyld; } in getRTDyld()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 1122 Dyld = nullptr; in RuntimeDyld() 1133 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local 1135 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF() 1136 Dyld->setRuntimeDyldChecker(Checker); in createRuntimeDyldCOFF() 1137 return Dyld; in createRuntimeDyldCOFF() 1144 std::unique_ptr<RuntimeDyldELF> Dyld = in createRuntimeDyldELF() local 1146 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF() 1147 Dyld->setRuntimeDyldChecker(Checker); in createRuntimeDyldELF() 1148 return Dyld; in createRuntimeDyldELF() 1156 std::unique_ptr<RuntimeDyldMachO> Dyld = in createRuntimeDyldMachO() local [all …]
|
D | RuntimeDyldCheckerImpl.h | 42 RuntimeDyldImpl &getRTDyld() const { return *RTDyld.Dyld; } in getRTDyld()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 292 RuntimeDyld Dyld(MemMgr, MemMgr); in printLineInfoForInput() local 320 Dyld.loadObject(Obj); in printLineInfoForInput() 322 if (Dyld.hasError()) in printLineInfoForInput() 323 ErrorAndExit(Dyld.getErrorString()); in printLineInfoForInput() 326 Dyld.resolveRelocations(); in printLineInfoForInput() 419 RuntimeDyld Dyld(MemMgr, MemMgr); in executeInput() local 444 Dyld.loadObject(Obj); in executeInput() 445 if (Dyld.hasError()) { in executeInput() 446 ErrorAndExit(Dyld.getErrorString()); in executeInput() 452 Dyld.resolveRelocations(); in executeInput() [all …]
|
/external/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 286 RuntimeDyld Dyld(MemMgr, MemMgr); in printLineInfoForInput() local 314 Dyld.loadObject(Obj); in printLineInfoForInput() 316 if (Dyld.hasError()) in printLineInfoForInput() 317 ErrorAndExit(Dyld.getErrorString()); in printLineInfoForInput() 320 Dyld.resolveRelocations(); in printLineInfoForInput() 413 RuntimeDyld Dyld(MemMgr, MemMgr); in executeInput() local 438 Dyld.loadObject(Obj); in executeInput() 439 if (Dyld.hasError()) { in executeInput() 440 ErrorAndExit(Dyld.getErrorString()); in executeInput() 446 Dyld.resolveRelocations(); in executeInput() [all …]
|
/external/swiftshader/third_party/LLVM/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 88 RuntimeDyld Dyld(MemMgr); in executeInput() local 101 if (Dyld.loadObject(InputBuffer.take())) { in executeInput() 102 return Error(Dyld.getErrorString()); in executeInput() 107 Dyld.resolveRelocations(); in executeInput() 112 void *MainAddress = Dyld.getSymbolAddress(EntryPoint); in executeInput()
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 60 : ExecutionEngine(m), TM(tm), MemMgr(MM), M(m), OS(Buffer), Dyld(MM) { in MCJIT() 83 if (Dyld.loadObject(MB)) in MCJIT() 84 report_fatal_error(Dyld.getErrorString()); in MCJIT() 86 Dyld.resolveRelocations(); in MCJIT() 109 return (void*)Dyld.getSymbolAddress(BaseName.substr(1)); in getPointerToFunction() 110 return (void*)Dyld.getSymbolAddress((TM->getMCAsmInfo()->getGlobalPrefix() in getPointerToFunction()
|
D | MCJIT.h | 42 RuntimeDyld Dyld; variable
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 73 Resolver(*this, std::move(Resolver)), Dyld(*this->MemMgr, this->Resolver), in MCJIT() 98 Dyld.deregisterEHFrames(); in ~MCJIT() 122 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj); in addObjectFile() 123 if (Dyld.hasError()) in addObjectFile() 124 report_fatal_error(Dyld.getErrorString()); in addObjectFile() 222 Dyld.loadObject(*LoadedObject.get()); in generateCodeForModule() 224 if (Dyld.hasError()) in generateCodeForModule() 225 report_fatal_error(Dyld.getErrorString()); in generateCodeForModule() 239 Dyld.resolveRelocations(); in finalizeLoadedModules() 244 Dyld.registerEHFrames(); in finalizeLoadedModules() [all …]
|
D | MCJIT.h | 184 RuntimeDyld Dyld; variable 237 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections() 283 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 69 Resolver(*this, std::move(Resolver)), Dyld(*this->MemMgr, this->Resolver), in MCJIT() 94 Dyld.deregisterEHFrames(); in ~MCJIT() 118 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj); in addObjectFile() 119 if (Dyld.hasError()) in addObjectFile() 120 report_fatal_error(Dyld.getErrorString()); in addObjectFile() 224 Dyld.loadObject(*LoadedObject.get()); in generateCodeForModule() 226 if (Dyld.hasError()) in generateCodeForModule() 227 report_fatal_error(Dyld.getErrorString()); in generateCodeForModule() 241 Dyld.resolveRelocations(); in finalizeLoadedModules() 246 Dyld.registerEHFrames(); in finalizeLoadedModules() [all …]
|
D | MCJIT.h | 184 RuntimeDyld Dyld; variable 237 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections() 283 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/ |
D | RuntimeDyld.h | 229 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections() 255 std::unique_ptr<RuntimeDyldImpl> Dyld;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | OrcRemoteTargetClient.h | 162 void notifyObjectLoaded(RuntimeDyld &Dyld, in notifyObjectLoaded() argument 166 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.CodeAllocs, in notifyObjectLoaded() 168 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.RODataAllocs, in notifyObjectLoaded() 170 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.RWDataAllocs, in notifyObjectLoaded() 267 void mapAllocsToRemoteAddrs(RuntimeDyld &Dyld, std::vector<Alloc> &Allocs, in mapAllocsToRemoteAddrs() argument 271 Dyld.mapSectionAddress(Alloc.getLocalAddress(), NextAddr); in mapAllocsToRemoteAddrs()
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | RuntimeDyld.h | 270 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections() 296 std::unique_ptr<RuntimeDyldImpl> Dyld;
|
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/ |
D | RuntimeDyld.h | 55 RuntimeDyldImpl *Dyld; variable
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | OrcRemoteTargetClient.h | 183 void notifyObjectLoaded(RuntimeDyld &Dyld, in notifyObjectLoaded() argument 191 Dyld.mapSectionAddress(Alloc.getLocalAddress(), NextCodeAddr); in notifyObjectLoaded() 203 Dyld.mapSectionAddress(Alloc.getLocalAddress(), NextRODataAddr); in notifyObjectLoaded() 216 Dyld.mapSectionAddress(Alloc.getLocalAddress(), NextRWDataAddr); in notifyObjectLoaded()
|
/external/llvm/docs/ |
D | MCJITDesignAndImplementation.rst | 38 The MCJIT class has a member variable, Dyld, which contains an instance of 136 RuntimeDyldImpl (via its Dyld member). RuntimeDyldImpl stores the new
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | MCJITDesignAndImplementation.rst | 38 The MCJIT class has a member variable, Dyld, which contains an instance of 136 RuntimeDyldImpl (via its Dyld member). RuntimeDyldImpl stores the new
|
/external/python/cpython2/ |
D | pyconfig.h.in | 1147 Dyld is necessary to support frameworks. */
|
/external/python/cpython3/ |
D | pyconfig.h.in | 1458 Dyld is necessary to support frameworks. */
|
/external/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 8933 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local 8934 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 9645 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local 9646 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()
|