Home
last modified time | relevance | path

Searched refs:Dyld (Results 1 – 25 of 27) sorted by relevance

12

/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp57 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/
DRuntimeDyld.cpp985 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 …]
DRuntimeDyldCheckerImpl.h42 RuntimeDyldImpl &getRTDyld() const { return *RTDyld.Dyld; } in getRTDyld()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp1122 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 …]
DRuntimeDyldCheckerImpl.h42 RuntimeDyldImpl &getRTDyld() const { return *RTDyld.Dyld; } in getRTDyld()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp292 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/
Dllvm-rtdyld.cpp286 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/
Dllvm-rtdyld.cpp88 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/
DMCJIT.cpp60 : 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()
DMCJIT.h42 RuntimeDyld Dyld; variable
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp73 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 …]
DMCJIT.h184 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/
DMCJIT.cpp69 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 …]
DMCJIT.h184 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/
DRuntimeDyld.h229 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/
DOrcRemoteTargetClient.h162 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/
DRuntimeDyld.h270 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections()
296 std::unique_ptr<RuntimeDyldImpl> Dyld;
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
DRuntimeDyld.h55 RuntimeDyldImpl *Dyld; variable
/external/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h183 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/
DMCJITDesignAndImplementation.rst38 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/
DMCJITDesignAndImplementation.rst38 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/
Dpyconfig.h.in1147 Dyld is necessary to support frameworks. */
/external/python/cpython3/
Dpyconfig.h.in1458 Dyld is necessary to support frameworks. */
/external/llvm/tools/llvm-objdump/
DMachODump.cpp8933 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/
DMachODump.cpp9645 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local
9646 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()

12