1 //===------ OrcRTBridge.cpp - Executor functions for bootstrap -----===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "llvm/ExecutionEngine/Orc/Shared/OrcRTBridge.h"
10 
11 namespace llvm {
12 namespace orc {
13 namespace rt {
14 
15 const char *SimpleExecutorMemoryManagerInstanceName =
16     "__llvm_orc_SimpleExecutorMemoryManager_Instance";
17 const char *SimpleExecutorMemoryManagerReserveWrapperName =
18     "__llvm_orc_SimpleExecutorMemoryManager_reserve_wrapper";
19 const char *SimpleExecutorMemoryManagerFinalizeWrapperName =
20     "__llvm_orc_SimpleExecutorMemoryManager_finalize_wrapper";
21 const char *SimpleExecutorMemoryManagerDeallocateWrapperName =
22     "__llvm_orc_SimpleExecutorMemoryManager_deallocate_wrapper";
23 const char *MemoryWriteUInt8sWrapperName =
24     "__llvm_orc_bootstrap_mem_write_uint8s_wrapper";
25 const char *MemoryWriteUInt16sWrapperName =
26     "__llvm_orc_bootstrap_mem_write_uint16s_wrapper";
27 const char *MemoryWriteUInt32sWrapperName =
28     "__llvm_orc_bootstrap_mem_write_uint32s_wrapper";
29 const char *MemoryWriteUInt64sWrapperName =
30     "__llvm_orc_bootstrap_mem_write_uint64s_wrapper";
31 const char *MemoryWriteBuffersWrapperName =
32     "__llvm_orc_bootstrap_mem_write_buffers_wrapper";
33 const char *RunAsMainWrapperName = "__llvm_orc_bootstrap_run_as_main_wrapper";
34 
35 } // end namespace rt
36 } // end namespace orc
37 } // end namespace llvm
38