/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/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/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/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()
|