Searched refs:Dyld (Results 1 – 8 of 8) sorted by relevance
853 Dyld = nullptr; in RuntimeDyld()864 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local866 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() local876 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 …]
43 RuntimeDyldImpl &getRTDyld() const { return *RTDyld.Dyld; } in getRTDyld()
200 RuntimeDyld Dyld(MemMgr, MemMgr); in printLineInfoForInput() local219 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() local294 Dyld.loadObject(Obj); in executeInput()295 if (Dyld.hasError()) { in executeInput()296 return Error(Dyld.getErrorString()); in executeInput()301 Dyld.resolveRelocations(); in executeInput()[all …]
73 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 …]
185 RuntimeDyld Dyld; variable227 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections()273 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
218 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections()225 std::unique_ptr<RuntimeDyldImpl> Dyld;
38 The MCJIT class has a member variable, Dyld, which contains an instance of136 RuntimeDyldImpl (via its Dyld member). RuntimeDyldImpl stores the new
8414 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local8415 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()