Copy
[mono-project.git] / mono / mini / mini-llvm-cpp.h
blob6f784d67fac4311263856ad7071f8c88149de47c
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_volatile_load (LLVMBuilderRef builder, LLVMValueRef PointerVal,
43 const char *Name);
45 G_END_DECLS
47 #endif /* __MONO_MINI_LLVM_CPP_H__ */