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

/freebsd-12-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-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp1265 Dyld = nullptr;
1276 std::unique_ptr<RuntimeDyldCOFF> Dyld = local
1278 Dyld->setProcessAllSections(ProcessAllSections);
1279 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted));
1280 return Dyld;
1287 std::unique_ptr<RuntimeDyldELF> Dyld = local
1289 Dyld->setProcessAllSections(ProcessAllSections);
1290 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted));
1291 return Dyld;
1300 std::unique_ptr<RuntimeDyldMachO> Dyld local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp68 Resolver(*this, std::move(Resolver)), Dyld(*this->MemMgr, this->Resolver),
93 Dyld.deregisterEHFrames();
117 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj);
118 if (Dyld.hasError())
119 report_fatal_error(Dyld.getErrorString());
223 Dyld.loadObject(*LoadedObject.get());
225 if (Dyld.hasError())
226 report_fatal_error(Dyld.getErrorString());
240 Dyld.resolveRelocations();
245 Dyld
[all...]
H A DMCJIT.h183 RuntimeDyld Dyld; member in class:llvm::MCJIT
236 Dyld.setProcessAllSections(ProcessAllSections);
282 Dyld.mapSectionAddress(LocalAddress, TargetAddress);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyld.h246 assert(!Dyld && "setProcessAllSections must be called before loadObject.");
282 std::unique_ptr<RuntimeDyldImpl> Dyld; member in class:llvm::RuntimeDyld
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DFuchsia.cpp90 std::string Dyld = D.DyldPrefix; local
92 Dyld += "asan/";
93 Dyld += "ld.so.1";
95 CmdArgs.push_back(Args.MakeArgString(Dyld));
/freebsd-12-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-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp10103 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); local
10104 PrintDyldLoadCommand(Dyld, Command.Ptr);

Completed in 209 milliseconds