struct AllocActionCallPair
Declaration
struct AllocActionCallPair { /* full declaration omitted */ };
Description
A pair of WrapperFunctionCalls, one to be run at finalization time, one to be run at deallocation time. AllocActionCallPairs should be constructed for paired operations (e.g. __register_ehframe and __deregister_ehframe for eh-frame registration). See comments for AllocActions for execution ordering. For unpaired operations one or the other member can be left unused, as AllocationActionCalls with an FnAddr of zero will be skipped.
Declared at: llvm/include/llvm/ExecutionEngine/Orc/Shared/AllocationActions.h:35
Member Variables
- public llvm::orc::shared::WrapperFunctionCall Finalize
- public llvm::orc::shared::WrapperFunctionCall Dealloc