Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp853 Dyld = nullptr; in RuntimeDyld()
864 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local
866 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF()
867 Dyld->setRuntimeDyldChecker(Checker); in createRuntimeDyldCOFF()
868 return Dyld; in createRuntimeDyldCOFF()
875 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM, Resolver)); in createRuntimeDyldELF() local
876 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF()
877 Dyld->setRuntimeDyldChecker(Checker); in createRuntimeDyldELF()
878 return Dyld; in createRuntimeDyldELF()
886 std::unique_ptr<RuntimeDyldMachO> Dyld = in createRuntimeDyldMachO() local
[all …]
DRuntimeDyldCheckerImpl.h43 RuntimeDyldImpl &getRTDyld() const { return *RTDyld.Dyld; } in getRTDyld()
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp200 RuntimeDyld Dyld(MemMgr, MemMgr); in printLineInfoForInput() local
219 Dyld.loadObject(Obj); in printLineInfoForInput()
221 if (Dyld.hasError()) in printLineInfoForInput()
222 return Error(Dyld.getErrorString()); in printLineInfoForInput()
225 Dyld.resolveRelocations(); in printLineInfoForInput()
268 RuntimeDyld Dyld(MemMgr, MemMgr); in executeInput() local
294 Dyld.loadObject(Obj); in executeInput()
295 if (Dyld.hasError()) { in executeInput()
296 return Error(Dyld.getErrorString()); in executeInput()
301 Dyld.resolveRelocations(); in executeInput()
[all …]
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp73 Dyld(*this->MemMgr, this->Resolver), ObjCache(nullptr) { in MCJIT()
95 Dyld.deregisterEHFrames(); in ~MCJIT()
115 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj); in addObjectFile()
116 if (Dyld.hasError()) in addObjectFile()
117 report_fatal_error(Dyld.getErrorString()); in addObjectFile()
209 Dyld.loadObject(*LoadedObject.get()); in generateCodeForModule()
211 if (Dyld.hasError()) in generateCodeForModule()
212 report_fatal_error(Dyld.getErrorString()); in generateCodeForModule()
226 Dyld.resolveRelocations(); in finalizeLoadedModules()
231 Dyld.registerEHFrames(); in finalizeLoadedModules()
[all …]
DMCJIT.h185 RuntimeDyld Dyld; variable
227 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections()
273 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
/external/llvm/include/llvm/ExecutionEngine/
DRuntimeDyld.h218 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections()
225 std::unique_ptr<RuntimeDyldImpl> Dyld;
/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/llvm/tools/llvm-objdump/
DMachODump.cpp8414 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local
8415 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()