Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp880 Dyld = nullptr; in RuntimeDyld()
891 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local
893 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF()
894 Dyld->setRuntimeDyldChecker(Checker); in createRuntimeDyldCOFF()
895 return Dyld; in createRuntimeDyldCOFF()
902 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM, Resolver)); in createRuntimeDyldELF() local
903 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF()
904 Dyld->setRuntimeDyldChecker(Checker); in createRuntimeDyldELF()
905 return Dyld; in createRuntimeDyldELF()
913 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.cpp286 RuntimeDyld Dyld(MemMgr, MemMgr); in printLineInfoForInput() local
309 Dyld.loadObject(Obj); in printLineInfoForInput()
311 if (Dyld.hasError()) in printLineInfoForInput()
312 return Error(Dyld.getErrorString()); in printLineInfoForInput()
315 Dyld.resolveRelocations(); in printLineInfoForInput()
389 RuntimeDyld Dyld(MemMgr, MemMgr); in executeInput() local
409 Dyld.loadObject(Obj); in executeInput()
410 if (Dyld.hasError()) { in executeInput()
411 return Error(Dyld.getErrorString()); in executeInput()
417 Dyld.resolveRelocations(); in executeInput()
[all …]
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp73 Resolver(*this, std::move(Resolver)), Dyld(*this->MemMgr, this->Resolver), 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()
212 Dyld.loadObject(*LoadedObject.get()); in generateCodeForModule()
214 if (Dyld.hasError()) in generateCodeForModule()
215 report_fatal_error(Dyld.getErrorString()); in generateCodeForModule()
229 Dyld.resolveRelocations(); in finalizeLoadedModules()
234 Dyld.registerEHFrames(); in finalizeLoadedModules()
[all …]
DMCJIT.h185 RuntimeDyld Dyld; variable
238 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections()
284 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
/external/llvm/include/llvm/ExecutionEngine/
DRuntimeDyld.h240 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections()
247 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.cpp8568 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local
8569 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()