forked from OSchip/llvm-project
617fc35637
This patch introduces RemoteObjectClientLayer and RemoteObjectServerLayer, which can be used to forward ORC object-layer operations from a JIT stack in the client to a JIT stack (consisting only of object-layers) in the server. This is a new way to support remote-JITing in LLVM. The previous approach (supported by OrcRemoteTargetClient and OrcRemoteTargetServer) used a remote-mapping memory manager that sat "beneath" the JIT stack and sent fully-relocated binary blobs to the server. The main advantage of the new approach is that relocatable objects can be cached on the server and re-used (if the code that they represent hasn't changed), whereas fully-relocated blobs can not (since the addresses they have been permanently bound to will change from run to run). llvm-svn: 312511 |
||
---|---|---|
.. | ||
CMakeLists.txt | ||
ExecutionUtils.cpp | ||
IndirectionUtils.cpp | ||
LLVMBuild.txt | ||
NullResolver.cpp | ||
OrcABISupport.cpp | ||
OrcCBindings.cpp | ||
OrcCBindingsStack.h | ||
OrcError.cpp | ||
OrcMCJITReplacement.cpp | ||
OrcMCJITReplacement.h | ||
RPCUtils.cpp |