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

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp371 RuntimeDyld Dyld(MemMgr, MemMgr);
399 Dyld.loadObject(Obj);
401 if (Dyld.hasError())
402 ErrorAndExit(Dyld.getErrorString());
405 Dyld.resolveRelocations();
502 RuntimeDyld Dyld(MemMgr, MemMgr);
529 Dyld.loadObject(Obj);
530 if (Dyld.hasError()) {
531 ErrorAndExit(Dyld.getErrorString());
540 Dyld
597 applySpecificSectionMappings(RuntimeDyld &Dyld, const FileToSectionIDMap &FileToSecIDMap) argument
637 remapSectionsAndSymbols(const llvm::Triple &TargetTriple, RuntimeDyld &Dyld, TrivialMemoryManager &MemMgr) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp1283 Dyld = nullptr;
1294 std::unique_ptr<RuntimeDyldCOFF> Dyld = local
1296 Dyld->setProcessAllSections(ProcessAllSections);
1297 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted));
1298 return Dyld;
1305 std::unique_ptr<RuntimeDyldELF> Dyld = local
1307 Dyld->setProcessAllSections(ProcessAllSections);
1308 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted));
1309 return Dyld;
1318 std::unique_ptr<RuntimeDyldMachO> Dyld local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp70 Resolver(*this, std::move(Resolver)), Dyld(*this->MemMgr, this->Resolver),
95 Dyld.deregisterEHFrames();
119 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj);
120 if (Dyld.hasError())
121 report_fatal_error(Dyld.getErrorString());
225 Dyld.loadObject(*LoadedObject.get());
227 if (Dyld.hasError())
228 report_fatal_error(Dyld.getErrorString());
242 Dyld.resolveRelocations();
244 // Check for Dyld erro
[all...]
H A DMCJIT.h182 RuntimeDyld Dyld; member in class:llvm::MCJIT
235 Dyld.setProcessAllSections(ProcessAllSections);
281 Dyld.mapSectionAddress(LocalAddress, TargetAddress);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DFuchsia.cpp95 std::string Dyld = D.DyldPrefix; local
97 Dyld += "asan/";
98 Dyld += "ld.so.1";
100 CmdArgs.push_back(Args.MakeArgString(Dyld));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyld.h246 assert(!Dyld && "setProcessAllSections must be called before loadObject.");
283 std::unique_ptr<RuntimeDyldImpl> Dyld; member in class:llvm::RuntimeDyld
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetClient.h164 void notifyObjectLoaded(RuntimeDyld &Dyld,
168 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.CodeAllocs,
170 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.RODataAllocs,
172 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.RWDataAllocs,
269 void mapAllocsToRemoteAddrs(RuntimeDyld &Dyld, std::vector<Alloc> &Allocs, argument
273 Dyld.mapSectionAddress(Alloc.getLocalAddress(), NextAddr);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp10104 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); local
10105 PrintDyldLoadCommand(Dyld, Command.Ptr);

Completed in 208 milliseconds