LLVM 19.0.0git
Public Types | Public Attributes | List of all members
llvm::orc::SimpleRemoteEPC::Setup Struct Reference

A setup object containing callbacks to construct a memory manager and memory access object. More...

#include "llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h"

Public Types

using CreateMemoryManagerFn = Expected< std::unique_ptr< jitlink::JITLinkMemoryManager > >(SimpleRemoteEPC &)
 
using CreateMemoryAccessFn = Expected< std::unique_ptr< MemoryAccess > >(SimpleRemoteEPC &)
 

Public Attributes

unique_function< CreateMemoryManagerFnCreateMemoryManager
 
unique_function< CreateMemoryAccessFnCreateMemoryAccess
 

Detailed Description

A setup object containing callbacks to construct a memory manager and memory access object.

Both are optional. If not specified, EPCGenericJITLinkMemoryManager and EPCGenericMemoryAccess will be used.

Definition at line 37 of file SimpleRemoteEPC.h.

Member Typedef Documentation

◆ CreateMemoryAccessFn

Definition at line 41 of file SimpleRemoteEPC.h.

◆ CreateMemoryManagerFn

Definition at line 38 of file SimpleRemoteEPC.h.

Member Data Documentation

◆ CreateMemoryAccess

unique_function<CreateMemoryAccessFn> llvm::orc::SimpleRemoteEPC::Setup::CreateMemoryAccess

Definition at line 45 of file SimpleRemoteEPC.h.

◆ CreateMemoryManager

unique_function<CreateMemoryManagerFn> llvm::orc::SimpleRemoteEPC::Setup::CreateMemoryManager

Definition at line 44 of file SimpleRemoteEPC.h.


The documentation for this struct was generated from the following file: