LLVM 22.0.0git
|
#include "llvm/ExecutionEngine/Orc/OrcABISupport.h"
Static Public Member Functions | |
static LLVM_ABI void | writeResolverCode (char *ResolverWorkingMem, ExecutorAddr ResolverTargetAddress, ExecutorAddr ReentryFnAddr, ExecutorAddr ReentryCtxAddr) |
Write the resolver code into the given memory. | |
static LLVM_ABI void | writeTrampolines (char *TrampolineBlockWorkingMem, ExecutorAddr TrampolineBlockTargetAddress, ExecutorAddr ResolverFnAddr, unsigned NumTrampolines) |
Write the requested number of trampolines into the given memory, which must be big enough to hold 1 pointer, plus NumTrampolines trampolines. | |
static LLVM_ABI void | writeIndirectStubsBlock (char *StubsBlockWorkingMem, ExecutorAddr StubsBlockTargetAddress, ExecutorAddr PointersBlockTargetAddress, unsigned NumStubs) |
Write NumStubs indirect stubs to working memory at StubsBlockWorkingMem. |
Static Public Attributes | |
static constexpr unsigned | PointerSize = 8 |
static constexpr unsigned | TrampolineSize = 40 |
static constexpr unsigned | StubSize = 32 |
static constexpr unsigned | StubToPointerMaxDisplacement = 1 << 31 |
static constexpr unsigned | ResolverCodeSize = 0x120 |
Definition at line 299 of file OrcABISupport.h.
|
static |
Write NumStubs indirect stubs to working memory at StubsBlockWorkingMem.
Stubs will be written as if linked at StubsBlockTargetAddress, with the Nth stub using the Nth pointer in memory starting at PointersBlockTargetAddress.
Definition at line 862 of file OrcABISupport.cpp.
References assert(), llvm::orc::ExecutorAddr::getValue(), I, and stubAndPointerRangesOk().
|
static |
Write the resolver code into the given memory.
The user is responsible for allocating the memory and setting permissions.
ReentryFnAddr should be the address of a function whose signature matches void* (*)(void *TrampolineAddr, void *ReentryCtxAddr). The ReentryCtxAddr argument of writeResolverCode will be passed as the second argument to the function at ReentryFnAddr.
Definition at line 689 of file OrcABISupport.cpp.
References llvm::orc::ExecutorAddr::getValue().
|
static |
Write the requested number of trampolines into the given memory, which must be big enough to hold 1 pointer, plus NumTrampolines trampolines.
Definition at line 835 of file OrcABISupport.cpp.
References llvm::orc::ExecutorAddr::getValue(), and I.
|
staticconstexpr |
Definition at line 301 of file OrcABISupport.h.
|
staticconstexpr |
Definition at line 305 of file OrcABISupport.h.
|
staticconstexpr |
Definition at line 303 of file OrcABISupport.h.
|
staticconstexpr |
Definition at line 304 of file OrcABISupport.h.
|
staticconstexpr |
Definition at line 302 of file OrcABISupport.h.