#include "llvm/ExecutionEngine/Orc/TargetProcess/SimpleExecutorMemoryManager.h"
#include "llvm/ExecutionEngine/Orc/Shared/OrcRTBridge.h"
#include "llvm/Support/FormatVariadic.h"
#define DEBUG_TYPE …
namespace llvm {
namespace orc {
namespace rt_bootstrap {
SimpleExecutorMemoryManager::~SimpleExecutorMemoryManager() { … }
Expected<ExecutorAddr> SimpleExecutorMemoryManager::allocate(uint64_t Size) { … }
Error SimpleExecutorMemoryManager::finalize(tpctypes::FinalizeRequest &FR) { … }
Error SimpleExecutorMemoryManager::deallocate(
const std::vector<ExecutorAddr> &Bases) { … }
Error SimpleExecutorMemoryManager::shutdown() { … }
void SimpleExecutorMemoryManager::addBootstrapSymbols(
StringMap<ExecutorAddr> &M) { … }
Error SimpleExecutorMemoryManager::deallocateImpl(void *Base, Allocation &A) { … }
llvm::orc::shared::CWrapperFunctionResult
SimpleExecutorMemoryManager::reserveWrapper(const char *ArgData,
size_t ArgSize) { … }
llvm::orc::shared::CWrapperFunctionResult
SimpleExecutorMemoryManager::finalizeWrapper(const char *ArgData,
size_t ArgSize) { … }
llvm::orc::shared::CWrapperFunctionResult
SimpleExecutorMemoryManager::deallocateWrapper(const char *ArgData,
size_t ArgSize) { … }
}
}
}