LLVM 22.0.0git
|
ExecutorProcessControl supports interaction with a JIT target process. More...
#include "llvm/ExecutionEngine/Orc/ExecutorProcessControl.h"
Classes | |
class | IncomingWFRHandler |
A handler or incoming WrapperFunctionResults – either return values from callWrapper* calls, or incoming JIT-dispatch requests. More... | |
struct | JITDispatchInfo |
Contains the address of the dispatch function and context that the ORC runtime can use to call functions in the JIT. More... | |
class | RunAsTask |
Constructs an IncomingWFRHandler from a function object by creating a new function object that dispatches the original using a TaskDispatcher, wrapping the original as a GenericNamedTask. More... | |
class | RunInPlace |
Constructs an IncomingWFRHandler from a function object that is callable as void(shared::WrapperFunctionResult). More... | |
Public Member Functions | |
ExecutorProcessControl (std::shared_ptr< SymbolStringPool > SSP, std::unique_ptr< TaskDispatcher > D) | |
virtual | ~ExecutorProcessControl () |
ExecutionSession & | getExecutionSession () |
Return the ExecutionSession associated with this instance. | |
SymbolStringPtr | intern (StringRef SymName) |
Intern a symbol name in the SymbolStringPool. | |
std::shared_ptr< SymbolStringPool > | getSymbolStringPool () const |
Return a shared pointer to the SymbolStringPool for this instance. | |
TaskDispatcher & | getDispatcher () |
const Triple & | getTargetTriple () const |
Return the Triple for the target process. | |
unsigned | getPageSize () const |
Get the page size for the target process. | |
const JITDispatchInfo & | getJITDispatchInfo () const |
Get the JIT dispatch function and context address for the executor. | |
MemoryAccess & | getMemoryAccess () const |
Return a MemoryAccess object for the target process. | |
jitlink::JITLinkMemoryManager & | getMemMgr () const |
Return a JITLinkMemoryManager for the target process. | |
DylibManager & | getDylibMgr () const |
Return the DylibManager for the target process. | |
const StringMap< std::vector< char > > & | getBootstrapMap () const |
Returns the bootstrap map. | |
template<typename T , typename SPSTagT > | |
Error | getBootstrapMapValue (StringRef Key, std::optional< T > &Val) const |
Look up and SPS-deserialize a bootstrap map value. | |
const StringMap< ExecutorAddr > & | getBootstrapSymbolsMap () const |
Returns the bootstrap symbol map. | |
Error | getBootstrapSymbols (ArrayRef< std::pair< ExecutorAddr &, StringRef > > Pairs) const |
For each (ExecutorAddr&, StringRef) pair, looks up the string in the bootstrap symbols map and writes its address to the ExecutorAddr if found. | |
virtual Expected< int32_t > | runAsMain (ExecutorAddr MainFnAddr, ArrayRef< std::string > Args)=0 |
Run function with a main-like signature. | |
virtual Expected< int32_t > | runAsVoidFunction (ExecutorAddr VoidFnAddr)=0 |
Run function with a int (*)(void) signature. | |
virtual Expected< int32_t > | runAsIntFunction (ExecutorAddr IntFnAddr, int Arg)=0 |
Run function with a int (*)(int) signature. | |
virtual void | callWrapperAsync (ExecutorAddr WrapperFnAddr, IncomingWFRHandler OnComplete, ArrayRef< char > ArgBuffer)=0 |
Run a wrapper function in the executor. | |
template<typename RunPolicyT , typename FnT > | |
void | callWrapperAsync (RunPolicyT &&Runner, ExecutorAddr WrapperFnAddr, FnT &&OnComplete, ArrayRef< char > ArgBuffer) |
Run a wrapper function in the executor using the given Runner to dispatch OnComplete when the result is ready. | |
template<typename FnT > | |
void | callWrapperAsync (ExecutorAddr WrapperFnAddr, FnT &&OnComplete, ArrayRef< char > ArgBuffer) |
Run a wrapper function in the executor. | |
shared::WrapperFunctionResult | callWrapper (ExecutorAddr WrapperFnAddr, ArrayRef< char > ArgBuffer) |
Run a wrapper function in the executor. | |
template<typename SPSSignature , typename RunPolicyT , typename SendResultT , typename... ArgTs> | |
void | callSPSWrapperAsync (RunPolicyT &&Runner, ExecutorAddr WrapperFnAddr, SendResultT &&SendResult, const ArgTs &...Args) |
Run a wrapper function using SPS to serialize the arguments and deserialize the results. | |
template<typename SPSSignature , typename SendResultT , typename... ArgTs> | |
void | callSPSWrapperAsync (ExecutorAddr WrapperFnAddr, SendResultT &&SendResult, const ArgTs &...Args) |
Run a wrapper function using SPS to serialize the arguments and deserialize the results. | |
template<typename SPSSignature , typename... WrapperCallArgTs> | |
Error | callSPSWrapper (ExecutorAddr WrapperFnAddr, WrapperCallArgTs &&...WrapperCallArgs) |
Run a wrapper function using SPS to serialize the arguments and deserialize the results. | |
virtual Error | disconnect ()=0 |
Disconnect from the target process. | |
Protected Attributes | |
std::shared_ptr< SymbolStringPool > | SSP |
std::unique_ptr< TaskDispatcher > | D |
ExecutionSession * | ES = nullptr |
Triple | TargetTriple |
unsigned | PageSize = 0 |
JITDispatchInfo | JDI |
MemoryAccess * | MemAccess = nullptr |
jitlink::JITLinkMemoryManager * | MemMgr = nullptr |
DylibManager * | DylibMgr = nullptr |
StringMap< std::vector< char > > | BootstrapMap |
StringMap< ExecutorAddr > | BootstrapSymbols |
Friends | |
class | ExecutionSession |
ExecutorProcessControl supports interaction with a JIT target process.
Definition at line 38 of file ExecutorProcessControl.h.
|
inline |
Definition at line 107 of file ExecutorProcessControl.h.
References llvm::move().
|
virtualdefault |
|
inline |
Run a wrapper function using SPS to serialize the arguments and deserialize the results.
If SPSSignature is a non-void function signature then the second argument (the first in the Args list) should be a reference to a return value.
Definition at line 296 of file ExecutorProcessControl.h.
Referenced by llvm::orc::EPCGenericRTDyldMemoryManager::finalizeMemory(), llvm::orc::VTuneSupportPlugin::notifyRemovingResources(), llvm::orc::PerfSupportPlugin::PerfSupportPlugin(), llvm::orc::EPCGenericRTDyldMemoryManager::reserveAllocationSpace(), llvm::orc::EPCGenericRTDyldMemoryManager::~EPCGenericRTDyldMemoryManager(), and llvm::orc::PerfSupportPlugin::~PerfSupportPlugin().
|
inline |
Run a wrapper function using SPS to serialize the arguments and deserialize the results.
Definition at line 283 of file ExecutorProcessControl.h.
References D.
|
inline |
Run a wrapper function using SPS to serialize the arguments and deserialize the results.
Definition at line 268 of file ExecutorProcessControl.h.
Referenced by llvm::orc::EPCGenericJITLinkMemoryManager::InFlightAlloc::abandon(), llvm::orc::EPCGenericJITLinkMemoryManager::allocate(), llvm::orc::EPCGenericJITLinkMemoryManager::deallocate(), llvm::orc::SharedMemoryMapper::deinitialize(), llvm::orc::EPCGenericJITLinkMemoryManager::InFlightAlloc::finalize(), llvm::orc::SharedMemoryMapper::initialize(), llvm::orc::EPCGenericMemoryAccess::readBuffersAsync(), llvm::orc::EPCGenericMemoryAccess::readPointersAsync(), llvm::orc::EPCGenericMemoryAccess::readStringsAsync(), llvm::orc::EPCGenericMemoryAccess::readUInt16sAsync(), llvm::orc::EPCGenericMemoryAccess::readUInt32sAsync(), llvm::orc::EPCGenericMemoryAccess::readUInt64sAsync(), llvm::orc::EPCGenericMemoryAccess::readUInt8sAsync(), llvm::orc::SharedMemoryMapper::release(), llvm::orc::SharedMemoryMapper::reserve(), llvm::orc::EPCGenericMemoryAccess::writeBuffersAsync(), llvm::orc::EPCGenericMemoryAccess::writePointersAsync(), llvm::orc::EPCGenericMemoryAccess::writeUInt16sAsync(), llvm::orc::EPCGenericMemoryAccess::writeUInt32sAsync(), llvm::orc::EPCGenericMemoryAccess::writeUInt64sAsync(), and llvm::orc::EPCGenericMemoryAccess::writeUInt8sAsync().
|
inline |
Run a wrapper function in the executor.
The wrapper function should be callable as:
{.cpp}
Definition at line 252 of file ExecutorProcessControl.h.
|
inline |
Run a wrapper function in the executor.
OnComplete will be dispatched as a GenericNamedTask using this instance's TaskDispatch object.
Definition at line 240 of file ExecutorProcessControl.h.
References D.
|
pure virtual |
Run a wrapper function in the executor.
The given WFRHandler will be called on the result when it is returned.
The wrapper function should be callable as:
{.cpp}
Implemented in llvm::orc::SelfExecutorProcessControl, and llvm::orc::SimpleRemoteEPC.
|
inline |
Run a wrapper function in the executor using the given Runner to dispatch OnComplete when the result is ready.
Definition at line 231 of file ExecutorProcessControl.h.
|
pure virtual |
Disconnect from the target process.
This should be called after the JIT session is shut down.
Implemented in llvm::orc::SelfExecutorProcessControl, and llvm::orc::SimpleRemoteEPC.
|
inline |
Returns the bootstrap map.
Definition at line 156 of file ExecutorProcessControl.h.
|
inline |
Look up and SPS-deserialize a bootstrap map value.
Definition at line 162 of file ExecutorProcessControl.h.
References I, and llvm::inconvertibleErrorCode().
|
inline |
For each (ExecutorAddr&, StringRef) pair, looks up the string in the bootstrap symbols map and writes its address to the ExecutorAddr if found.
If any symbol is not found then the function returns an error.
Definition at line 188 of file ExecutorProcessControl.h.
References I, and llvm::inconvertibleErrorCode().
Referenced by llvm::orc::EHFrameRegistrationPlugin::Create(), llvm::orc::EPCGenericDylibManager::CreateWithDefaultBootstrapSymbols(), and llvm::orc::EPCGenericRTDyldMemoryManager::CreateWithDefaultBootstrapSymbols().
|
inline |
Returns the bootstrap symbol map.
Definition at line 181 of file ExecutorProcessControl.h.
|
inline |
Definition at line 126 of file ExecutorProcessControl.h.
References D.
|
inline |
Return the DylibManager for the target process.
Definition at line 150 of file ExecutorProcessControl.h.
References assert().
Referenced by llvm::orc::EPCDynamicLibrarySearchGenerator::Load(), llvm::orc::lookupAndRecordAddrs(), and llvm::orc::EPCDynamicLibrarySearchGenerator::tryToGenerate().
|
inline |
Return the ExecutionSession associated with this instance.
Not callable until the ExecutionSession has been associated.
Definition at line 115 of file ExecutorProcessControl.h.
References assert().
Referenced by llvm::orc::PerfSupportPlugin::Create(), llvm::orc::VTuneSupportPlugin::Create(), and llvm::orc::PerfSupportPlugin::modifyPassConfig().
|
inline |
Get the JIT dispatch function and context address for the executor.
Definition at line 135 of file ExecutorProcessControl.h.
|
inline |
Return a JITLinkMemoryManager for the target process.
Definition at line 144 of file ExecutorProcessControl.h.
References assert().
|
inline |
Return a MemoryAccess object for the target process.
Definition at line 138 of file ExecutorProcessControl.h.
References assert().
Referenced by llvm::orc::JITLinkRedirectableSymbolManager::redirect().
|
inline |
Get the page size for the target process.
Definition at line 132 of file ExecutorProcessControl.h.
References PageSize.
Referenced by llvm::orc::EPCGenericJITLinkMemoryManager::allocate(), llvm::orc::EPCGenericJITLinkMemoryManager::InFlightAlloc::finalize(), and llvm::orc::EPCGenericRTDyldMemoryManager::reserveAllocationSpace().
|
inline |
Return a shared pointer to the SymbolStringPool for this instance.
Definition at line 124 of file ExecutorProcessControl.h.
Return the Triple for the target process.
Definition at line 129 of file ExecutorProcessControl.h.
Referenced by llvm::orc::EPCIndirectionUtils::Create(), and llvm::orc::PerfSupportPlugin::Create().
|
inline |
Intern a symbol name in the SymbolStringPool.
Definition at line 121 of file ExecutorProcessControl.h.
|
pure virtual |
Run function with a int (*)(int) signature.
Implemented in llvm::orc::SelfExecutorProcessControl, and llvm::orc::SimpleRemoteEPC.
Referenced by llvm::orc::COFFVCRuntimeBootstrapper::initializeStaticVCRuntime().
|
pure virtual |
Run function with a main-like signature.
Implemented in llvm::orc::SelfExecutorProcessControl, and llvm::orc::SimpleRemoteEPC.
|
pure virtual |
Run function with a int (*)(void) signature.
Implemented in llvm::orc::SelfExecutorProcessControl, and llvm::orc::SimpleRemoteEPC.
Referenced by llvm::orc::COFFVCRuntimeBootstrapper::initializeStaticVCRuntime().
|
friend |
Definition at line 39 of file ExecutorProcessControl.h.
Definition at line 321 of file ExecutorProcessControl.h.
Referenced by llvm::orc::SelfExecutorProcessControl::SelfExecutorProcessControl().
|
protected |
Definition at line 322 of file ExecutorProcessControl.h.
Referenced by llvm::orc::SelfExecutorProcessControl::SelfExecutorProcessControl().
|
protected |
Definition at line 313 of file ExecutorProcessControl.h.
Referenced by llvm::orc::SelfExecutorProcessControl::Create(), and llvm::orc::SelfExecutorProcessControl::disconnect().
|
protected |
Definition at line 320 of file ExecutorProcessControl.h.
Referenced by llvm::orc::SelfExecutorProcessControl::SelfExecutorProcessControl().
|
protected |
Definition at line 314 of file ExecutorProcessControl.h.
|
protected |
Definition at line 317 of file ExecutorProcessControl.h.
Referenced by llvm::orc::SelfExecutorProcessControl::SelfExecutorProcessControl().
|
protected |
Definition at line 318 of file ExecutorProcessControl.h.
Referenced by llvm::orc::SelfExecutorProcessControl::SelfExecutorProcessControl().
|
protected |
Definition at line 319 of file ExecutorProcessControl.h.
Referenced by llvm::orc::SelfExecutorProcessControl::Create(), and llvm::orc::SelfExecutorProcessControl::SelfExecutorProcessControl().
|
protected |
Definition at line 316 of file ExecutorProcessControl.h.
Referenced by llvm::orc::SelfExecutorProcessControl::Create(), and llvm::orc::SelfExecutorProcessControl::SelfExecutorProcessControl().
|
protected |
Definition at line 312 of file ExecutorProcessControl.h.
Referenced by llvm::orc::SelfExecutorProcessControl::Create().
|
protected |
Definition at line 315 of file ExecutorProcessControl.h.
Referenced by llvm::orc::SelfExecutorProcessControl::SelfExecutorProcessControl().