Searched refs:Dyld (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/llvm/tools/llvm-rtdyld/ |
H A D | llvm-rtdyld.cpp | 421 RuntimeDyld Dyld(MemMgr, MemMgr); in printLineInfoForInput() local 449 Dyld.loadObject(Obj); in printLineInfoForInput() 451 if (Dyld.hasError()) in printLineInfoForInput() 452 ErrorAndExit(Dyld.getErrorString()); in printLineInfoForInput() 455 Dyld.resolveRelocations(); in printLineInfoForInput() 553 RuntimeDyld Dyld(MemMgr, MemMgr); in executeInput() local 580 Dyld.loadObject(Obj); in executeInput() 581 if (Dyld.hasError()) { in executeInput() 582 ErrorAndExit(Dyld.getErrorString()); in executeInput() 591 Dyld.resolveRelocations(); in executeInput() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyld.cpp | 1303 Dyld = nullptr; in RuntimeDyld() 1314 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local 1316 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF() 1317 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldCOFF() 1318 return Dyld; in createRuntimeDyldCOFF() 1325 std::unique_ptr<RuntimeDyldELF> Dyld = in createRuntimeDyldELF() local 1327 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF() 1328 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldELF() 1329 return Dyld; in createRuntimeDyldELF() 1338 std::unique_ptr<RuntimeDyldMachO> Dyld = in createRuntimeDyldMachO() local [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/ |
H A D | MCJIT.cpp | 71 Resolver(*this, std::move(Resolver)), Dyld(*this->MemMgr, this->Resolver), in MCJIT() 96 Dyld.deregisterEHFrames(); in ~MCJIT() 120 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj); in addObjectFile() 121 if (Dyld.hasError()) in addObjectFile() 122 report_fatal_error(Dyld.getErrorString()); in addObjectFile() 225 Dyld.loadObject(*LoadedObject.get()); in generateCodeForModule() 227 if (Dyld.hasError()) in generateCodeForModule() 228 report_fatal_error(Dyld.getErrorString()); in generateCodeForModule() 242 Dyld.resolveRelocations(); in finalizeLoadedModules() 245 if (Dyld.hasError()) in finalizeLoadedModules() [all …]
|
H A D | MCJIT.h | 175 RuntimeDyld Dyld; variable 228 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections() 274 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | EPCGenericRTDyldMemoryManager.cpp | 189 RuntimeDyld &Dyld, const object::ObjectFile &Obj) { in notifyObjectLoaded() argument 193 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.CodeAllocs, in notifyObjectLoaded() 195 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.RODataAllocs, in notifyObjectLoaded() 197 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.RWDataAllocs, in notifyObjectLoaded() 295 RuntimeDyld &Dyld, std::vector<SectionAlloc> &Allocs, in mapAllocsToRemoteAddrs() argument 303 Dyld.mapSectionAddress(reinterpret_cast<const void *>(alignAddr( in mapAllocsToRemoteAddrs()
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | Fuchsia.cpp | 110 std::string Dyld = D.DyldPrefix; in ConstructJob() local 112 Dyld += "asan/"; in ConstructJob() 114 Dyld += "hwasan/"; in ConstructJob() 116 Dyld += "tsan/"; in ConstructJob() 117 Dyld += "ld.so.1"; in ConstructJob() 119 CmdArgs.push_back(Args.MakeArgString(Dyld)); in ConstructJob()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | EPCGenericRTDyldMemoryManager.h | 73 void notifyObjectLoaded(RuntimeDyld &Dyld, 109 void mapAllocsToRemoteAddrs(RuntimeDyld &Dyld,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | RuntimeDyld.h | 263 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections() 300 std::unique_ptr<RuntimeDyldImpl> Dyld; variable
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 10138 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local 10139 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()
|