Home
last modified time | relevance | path

Searched refs:Dyld (Results 1 – 25 of 27) sorted by relevance

12

/external/llvm-project/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp371 RuntimeDyld Dyld(MemMgr, MemMgr); in printLineInfoForInput() local
399 Dyld.loadObject(Obj); in printLineInfoForInput()
401 if (Dyld.hasError()) in printLineInfoForInput()
402 ErrorAndExit(Dyld.getErrorString()); in printLineInfoForInput()
405 Dyld.resolveRelocations(); in printLineInfoForInput()
502 RuntimeDyld Dyld(MemMgr, MemMgr); in executeInput() local
529 Dyld.loadObject(Obj); in executeInput()
530 if (Dyld.hasError()) { in executeInput()
531 ErrorAndExit(Dyld.getErrorString()); in executeInput()
540 Dyld.resolveRelocations(); in executeInput()
[all …]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp985 Dyld = nullptr; in RuntimeDyld()
996 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local
998 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF()
999 Dyld->setRuntimeDyldChecker(Checker); in createRuntimeDyldCOFF()
1000 return Dyld; in createRuntimeDyldCOFF()
1007 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM, Resolver)); in createRuntimeDyldELF() local
1008 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF()
1009 Dyld->setRuntimeDyldChecker(Checker); in createRuntimeDyldELF()
1010 return Dyld; in createRuntimeDyldELF()
1018 std::unique_ptr<RuntimeDyldMachO> Dyld = in createRuntimeDyldMachO() local
[all …]
DRuntimeDyldCheckerImpl.h42 RuntimeDyldImpl &getRTDyld() const { return *RTDyld.Dyld; } in getRTDyld()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp1265 Dyld = nullptr; in RuntimeDyld()
1276 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local
1278 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF()
1279 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldCOFF()
1280 return Dyld; in createRuntimeDyldCOFF()
1287 std::unique_ptr<RuntimeDyldELF> Dyld = in createRuntimeDyldELF() local
1289 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF()
1290 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldELF()
1291 return Dyld; in createRuntimeDyldELF()
1300 std::unique_ptr<RuntimeDyldMachO> Dyld = in createRuntimeDyldMachO() local
[all …]
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp1286 Dyld = nullptr; in RuntimeDyld()
1297 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local
1299 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF()
1300 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldCOFF()
1301 return Dyld; in createRuntimeDyldCOFF()
1308 std::unique_ptr<RuntimeDyldELF> Dyld = in createRuntimeDyldELF() local
1310 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF()
1311 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldELF()
1312 return Dyld; in createRuntimeDyldELF()
1321 std::unique_ptr<RuntimeDyldMachO> Dyld = in createRuntimeDyldMachO() local
[all …]
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp286 RuntimeDyld Dyld(MemMgr, MemMgr); in printLineInfoForInput() local
314 Dyld.loadObject(Obj); in printLineInfoForInput()
316 if (Dyld.hasError()) in printLineInfoForInput()
317 ErrorAndExit(Dyld.getErrorString()); in printLineInfoForInput()
320 Dyld.resolveRelocations(); in printLineInfoForInput()
413 RuntimeDyld Dyld(MemMgr, MemMgr); in executeInput() local
438 Dyld.loadObject(Obj); in executeInput()
439 if (Dyld.hasError()) { in executeInput()
440 ErrorAndExit(Dyld.getErrorString()); in executeInput()
446 Dyld.resolveRelocations(); in executeInput()
[all …]
/external/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp70 Resolver(*this, std::move(Resolver)), Dyld(*this->MemMgr, this->Resolver), in MCJIT()
95 Dyld.deregisterEHFrames(); in ~MCJIT()
119 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj); in addObjectFile()
120 if (Dyld.hasError()) in addObjectFile()
121 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 …]
DMCJIT.h182 RuntimeDyld Dyld; variable
235 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections()
281 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp73 Resolver(*this, std::move(Resolver)), Dyld(*this->MemMgr, this->Resolver), in MCJIT()
98 Dyld.deregisterEHFrames(); in ~MCJIT()
122 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj); in addObjectFile()
123 if (Dyld.hasError()) in addObjectFile()
124 report_fatal_error(Dyld.getErrorString()); in addObjectFile()
222 Dyld.loadObject(*LoadedObject.get()); in generateCodeForModule()
224 if (Dyld.hasError()) in generateCodeForModule()
225 report_fatal_error(Dyld.getErrorString()); in generateCodeForModule()
239 Dyld.resolveRelocations(); in finalizeLoadedModules()
244 Dyld.registerEHFrames(); in finalizeLoadedModules()
[all …]
DMCJIT.h184 RuntimeDyld Dyld; variable
237 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections()
283 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp68 Resolver(*this, std::move(Resolver)), Dyld(*this->MemMgr, this->Resolver), in MCJIT()
93 Dyld.deregisterEHFrames(); in ~MCJIT()
117 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj); in addObjectFile()
118 if (Dyld.hasError()) in addObjectFile()
119 report_fatal_error(Dyld.getErrorString()); in addObjectFile()
223 Dyld.loadObject(*LoadedObject.get()); in generateCodeForModule()
225 if (Dyld.hasError()) in generateCodeForModule()
226 report_fatal_error(Dyld.getErrorString()); in generateCodeForModule()
240 Dyld.resolveRelocations(); in finalizeLoadedModules()
245 Dyld.registerEHFrames(); in finalizeLoadedModules()
[all …]
DMCJIT.h183 RuntimeDyld Dyld; variable
236 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections()
282 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
/external/llvm-project/clang/lib/Driver/ToolChains/
DFuchsia.cpp95 std::string Dyld = D.DyldPrefix; in ConstructJob() local
97 Dyld += "asan/"; in ConstructJob()
99 Dyld += "tsan/"; in ConstructJob()
100 Dyld += "ld.so.1"; in ConstructJob()
102 CmdArgs.push_back(Args.MakeArgString(Dyld)); in ConstructJob()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h164 void notifyObjectLoaded(RuntimeDyld &Dyld, in notifyObjectLoaded() argument
168 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.CodeAllocs, in notifyObjectLoaded()
170 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.RODataAllocs, in notifyObjectLoaded()
172 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.RWDataAllocs, in notifyObjectLoaded()
269 void mapAllocsToRemoteAddrs(RuntimeDyld &Dyld, std::vector<Alloc> &Allocs, in mapAllocsToRemoteAddrs() argument
273 Dyld.mapSectionAddress(Alloc.getLocalAddress(), NextAddr); in mapAllocsToRemoteAddrs()
/external/llvm-project/llvm/include/llvm/ExecutionEngine/
DRuntimeDyld.h246 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections()
283 std::unique_ptr<RuntimeDyldImpl> Dyld; variable
/external/llvm/include/llvm/ExecutionEngine/
DRuntimeDyld.h270 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections()
296 std::unique_ptr<RuntimeDyldImpl> Dyld;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DRuntimeDyld.h246 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections()
282 std::unique_ptr<RuntimeDyldImpl> Dyld; variable
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h165 void notifyObjectLoaded(RuntimeDyld &Dyld, in notifyObjectLoaded() argument
169 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.CodeAllocs, in notifyObjectLoaded()
171 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.RODataAllocs, in notifyObjectLoaded()
173 mapAllocsToRemoteAddrs(Dyld, ObjAllocs.RWDataAllocs, in notifyObjectLoaded()
270 void mapAllocsToRemoteAddrs(RuntimeDyld &Dyld, std::vector<Alloc> &Allocs, in mapAllocsToRemoteAddrs() argument
274 Dyld.mapSectionAddress(Alloc.getLocalAddress(), NextAddr); in mapAllocsToRemoteAddrs()
/external/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h183 void notifyObjectLoaded(RuntimeDyld &Dyld, in notifyObjectLoaded() argument
191 Dyld.mapSectionAddress(Alloc.getLocalAddress(), NextCodeAddr); in notifyObjectLoaded()
203 Dyld.mapSectionAddress(Alloc.getLocalAddress(), NextRODataAddr); in notifyObjectLoaded()
216 Dyld.mapSectionAddress(Alloc.getLocalAddress(), NextRWDataAddr); in notifyObjectLoaded()
/external/llvm-project/llvm/docs/
DMCJITDesignAndImplementation.rst38 The MCJIT class has a member variable, Dyld, which contains an instance of
136 RuntimeDyldImpl (via its Dyld member). RuntimeDyldImpl stores the new
/external/llvm/docs/
DMCJITDesignAndImplementation.rst38 The MCJIT class has a member variable, Dyld, which contains an instance of
136 RuntimeDyldImpl (via its Dyld member). RuntimeDyldImpl stores the new
/external/python/cpython2/
Dpyconfig.h.in1147 Dyld is necessary to support frameworks. */
/external/python/cpython3/
Dpyconfig.h.in1539 Dyld is necessary to support frameworks. */
/external/llvm/tools/llvm-objdump/
DMachODump.cpp8933 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local
8934 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()
/external/llvm-project/llvm/tools/llvm-objdump/
DMachODump.cpp10134 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local
10135 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()

12