/external/llvm-project/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 371 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/ |
D | RuntimeDyld.cpp | 985 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 …]
|
D | RuntimeDyldCheckerImpl.h | 42 RuntimeDyldImpl &getRTDyld() const { return *RTDyld.Dyld; } in getRTDyld()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 1265 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/ |
D | RuntimeDyld.cpp | 1286 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/ |
D | llvm-rtdyld.cpp | 286 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/ |
D | MCJIT.cpp | 70 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 …]
|
D | MCJIT.h | 182 RuntimeDyld Dyld; variable 235 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections() 281 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 73 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 …]
|
D | MCJIT.h | 184 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/ |
D | MCJIT.cpp | 68 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 …]
|
D | MCJIT.h | 183 RuntimeDyld Dyld; variable 236 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections() 282 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
|
/external/llvm-project/clang/lib/Driver/ToolChains/ |
D | Fuchsia.cpp | 95 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/ |
D | OrcRemoteTargetClient.h | 164 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/ |
D | RuntimeDyld.h | 246 assert(!Dyld && "setProcessAllSections must be called before loadObject."); in setProcessAllSections() 283 std::unique_ptr<RuntimeDyldImpl> Dyld; variable
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | RuntimeDyld.h | 270 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/ |
D | RuntimeDyld.h | 246 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/ |
D | OrcRemoteTargetClient.h | 165 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/ |
D | OrcRemoteTargetClient.h | 183 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/ |
D | MCJITDesignAndImplementation.rst | 38 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/ |
D | MCJITDesignAndImplementation.rst | 38 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/ |
D | pyconfig.h.in | 1147 Dyld is necessary to support frameworks. */
|
/external/python/cpython3/ |
D | pyconfig.h.in | 1539 Dyld is necessary to support frameworks. */
|
/external/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 8933 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local 8934 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()
|
/external/llvm-project/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 10134 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands() local 10135 PrintDyldLoadCommand(Dyld, Command.Ptr); in PrintLoadCommands()
|