2010-04-06 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / mini / mini-llvm-cpp.h
blob18462f6e32637d6b00121f05743f9353039fcbd9
1 /*
2 * mini-llvm-cpp.h: LLVM backend
4 * Authors:
5 * Zoltan Varga (vargaz@gmail.com)
7 * (C) 2009 Novell, Inc.
8 */
10 #ifndef __MONO_MINI_LLVM_CPP_H__
11 #define __MONO_MINI_LLVM_CPP_H__
13 #include <glib.h>
15 #include "llvm-c/Core.h"
16 #include "llvm-c/ExecutionEngine.h"
18 G_BEGIN_DECLS
20 typedef unsigned char * (AllocCodeMemoryCb) (LLVMValueRef function, int size);
21 typedef void (FunctionEmittedCb) (LLVMValueRef function, void *start, void *end);
22 typedef void (ExceptionTableCb) (void *data);
24 LLVMExecutionEngineRef
25 mono_llvm_create_ee (LLVMModuleProviderRef MP, AllocCodeMemoryCb *alloc_cb, FunctionEmittedCb *emitted_cb, ExceptionTableCb *exception_cb);
27 void
28 mono_llvm_dispose_ee (LLVMExecutionEngineRef ee);
30 void
31 mono_llvm_optimize_method (LLVMValueRef method);
33 void
34 mono_llvm_dump_value (LLVMValueRef value);
36 LLVMValueRef
37 mono_llvm_build_alloca (LLVMBuilderRef builder, LLVMTypeRef Ty,
38 LLVMValueRef ArraySize,
39 int alignment, const char *Name);
41 LLVMValueRef
42 mono_llvm_build_load (LLVMBuilderRef builder, LLVMValueRef PointerVal,
43 const char *Name, gboolean is_volatile);
45 LLVMValueRef
46 mono_llvm_build_aligned_load (LLVMBuilderRef builder, LLVMValueRef PointerVal,
47 const char *Name, gboolean is_volatile, int alignment);
49 void
50 mono_llvm_replace_uses_of (LLVMValueRef var, LLVMValueRef v);
52 G_END_DECLS
54 #endif /* __MONO_MINI_LLVM_CPP_H__ */