[llvm] Add support for passing dummy arguments before arm64 hfa structures so they...
[mono.git] / mono / mini / mini-llvm-cpp.h
index f7215415e5522297e6edd3d947afbd5d1e39edf6..78bccd07ff9422a5adcc1ddc75af0343f5a84a8c 100644 (file)
 #include "llvm-c/Core.h"
 #include "llvm-c/ExecutionEngine.h"
 
+#include <unwind.h>
+
 G_BEGIN_DECLS
 
+/*
+ * Keep in sync with the enum in utils/mono-memory-model.h.
+ */
+typedef enum {
+       LLVM_BARRIER_NONE = 0,
+       LLVM_BARRIER_ACQ = 1,
+       LLVM_BARRIER_REL = 2,
+       LLVM_BARRIER_SEQ = 3,
+} BarrierKind;
+
 typedef enum {
        LLVM_ATOMICRMW_OP_XCHG = 0,
        LLVM_ATOMICRMW_OP_ADD = 1,
@@ -25,15 +37,18 @@ typedef enum {
 typedef unsigned char * (AllocCodeMemoryCb) (LLVMValueRef function, int size);
 typedef void (FunctionEmittedCb) (LLVMValueRef function, void *start, void *end);
 typedef void (ExceptionTableCb) (void *data);
+typedef char* (DlSymCb) (const char *name, void **symbol);
+
+typedef void* MonoEERef;
 
-LLVMExecutionEngineRef
-mono_llvm_create_ee (LLVMModuleProviderRef MP, AllocCodeMemoryCb *alloc_cb, FunctionEmittedCb *emitted_cb, ExceptionTableCb *exception_cb);
+MonoEERef
+mono_llvm_create_ee (LLVMModuleProviderRef MP, AllocCodeMemoryCb *alloc_cb, FunctionEmittedCb *emitted_cb, ExceptionTableCb *exception_cb, DlSymCb *dlsym_cb, LLVMExecutionEngineRef *ee);
 
 void
-mono_llvm_dispose_ee (LLVMExecutionEngineRef ee);
+mono_llvm_dispose_ee (MonoEERef *mono_ee);
 
 void
-mono_llvm_optimize_method (LLVMValueRef method);
+mono_llvm_optimize_method (MonoEERef mono_ee, LLVMValueRef method);
 
 void
 mono_llvm_dump_value (LLVMValueRef value);
@@ -45,7 +60,7 @@ mono_llvm_build_alloca (LLVMBuilderRef builder, LLVMTypeRef Ty,
 
 LLVMValueRef 
 mono_llvm_build_load (LLVMBuilderRef builder, LLVMValueRef PointerVal,
-                                         const char *Name, gboolean is_volatile);
+                                         const char *Name, gboolean is_volatile, BarrierKind barrier);
 
 LLVMValueRef 
 mono_llvm_build_aligned_load (LLVMBuilderRef builder, LLVMValueRef PointerVal,
@@ -53,7 +68,7 @@ mono_llvm_build_aligned_load (LLVMBuilderRef builder, LLVMValueRef PointerVal,
 
 LLVMValueRef 
 mono_llvm_build_store (LLVMBuilderRef builder, LLVMValueRef Val, LLVMValueRef PointerVal,
-                                          gboolean is_volatile);
+                                          gboolean is_volatile, BarrierKind kind);
 
 LLVMValueRef 
 mono_llvm_build_aligned_store (LLVMBuilderRef builder, LLVMValueRef Val, LLVMValueRef PointerVal,
@@ -63,7 +78,7 @@ LLVMValueRef
 mono_llvm_build_atomic_rmw (LLVMBuilderRef builder, AtomicRMWOp op, LLVMValueRef ptr, LLVMValueRef val);
 
 LLVMValueRef
-mono_llvm_build_fence (LLVMBuilderRef builder);
+mono_llvm_build_fence (LLVMBuilderRef builder, BarrierKind kind);
 
 void
 mono_llvm_replace_uses_of (LLVMValueRef var, LLVMValueRef v);
@@ -71,6 +86,31 @@ mono_llvm_replace_uses_of (LLVMValueRef var, LLVMValueRef v);
 LLVMValueRef
 mono_llvm_build_cmpxchg (LLVMBuilderRef builder, LLVMValueRef addr, LLVMValueRef comparand, LLVMValueRef value);
 
+void
+mono_llvm_set_must_tail (LLVMValueRef call_ins);
+
+LLVMValueRef
+mono_llvm_create_constant_data_array (const uint8_t *data, int len);
+
+void
+mono_llvm_set_is_constant (LLVMValueRef global_var);
+
+void
+mono_llvm_set_preserveall_cc (LLVMValueRef func);
+
+void
+mono_llvm_set_call_preserveall_cc (LLVMValueRef call);
+
+_Unwind_Reason_Code 
+mono_debug_personality (int a, _Unwind_Action b,
+       uint64_t c, struct _Unwind_Exception *d, struct _Unwind_Context *e);
+
+void
+mono_llvm_set_unhandled_exception_handler (void);
+
+void
+default_mono_llvm_unhandled_exception (void);
+
 G_END_DECLS
 
 #endif /* __MONO_MINI_LLVM_CPP_H__ */