Searched refs:Dyld (Results 1 - 7 of 7) sorted by relevance

/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp286 RuntimeDyld Dyld(MemMgr, MemMgr);
309 Dyld.loadObject(Obj);
311 if (Dyld.hasError())
312 return Error(Dyld.getErrorString());
315 Dyld.resolveRelocations();
389 RuntimeDyld Dyld(MemMgr, MemMgr);
409 Dyld.loadObject(Obj);
410 if (Dyld.hasError()) {
411 return Error(Dyld.getErrorString());
417 Dyld
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp880 Dyld = nullptr;
891 std::unique_ptr<RuntimeDyldCOFF> Dyld = local
893 Dyld->setProcessAllSections(ProcessAllSections);
894 Dyld->setRuntimeDyldChecker(Checker);
895 return Dyld;
902 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM, Resolver));
903 Dyld->setProcessAllSections(ProcessAllSections);
904 Dyld->setRuntimeDyldChecker(Checker);
905 return Dyld;
913 std::unique_ptr<RuntimeDyldMachO> Dyld local
[all...]
H A DRuntimeDyldCheckerImpl.h43 RuntimeDyldImpl &getRTDyld() const { return *RTDyld.Dyld; }
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp73 Resolver(*this, std::move(Resolver)), Dyld(*this->MemMgr, this->Resolver),
95 Dyld.deregisterEHFrames();
115 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj);
116 if (Dyld.hasError())
117 report_fatal_error(Dyld.getErrorString());
212 Dyld.loadObject(*LoadedObject.get());
214 if (Dyld.hasError())
215 report_fatal_error(Dyld.getErrorString());
229 Dyld.resolveRelocations();
234 Dyld
[all...]
H A DMCJIT.h185 RuntimeDyld Dyld; member in class:llvm::MCJIT
238 Dyld.setProcessAllSections(ProcessAllSections);
284 Dyld.mapSectionAddress(LocalAddress, TargetAddress);
/external/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyld.h240 assert(!Dyld && "setProcessAllSections must be called before loadObject.");
247 std::unique_ptr<RuntimeDyldImpl> Dyld; member in class:llvm::RuntimeDyld
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp8568 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); local
8569 PrintDyldLoadCommand(Dyld, Command.Ptr);

Completed in 126 milliseconds