X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmini%2Fmini-llvm-cpp.h;h=06858713f4eaa99ab63cacd0d6449007fb203876;hb=3e69ff3ae72acec33c471236da49ed6c78b26dc4;hp=97d5a12222a54183f914d1138a50eefe72d2ef2e;hpb=5528eb0194a2e87cf90feb846b11e16c406aeff6;p=mono.git diff --git a/mono/mini/mini-llvm-cpp.h b/mono/mini/mini-llvm-cpp.h index 97d5a12222a..06858713f4e 100644 --- a/mono/mini/mini-llvm-cpp.h +++ b/mono/mini/mini-llvm-cpp.h @@ -34,22 +34,6 @@ typedef enum { LLVM_ATOMICRMW_OP_ADD = 1, } AtomicRMWOp; -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; - -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 (MonoEERef *mono_ee); - -void -mono_llvm_optimize_method (MonoEERef mono_ee, LLVMValueRef method); - void mono_llvm_dump_value (LLVMValueRef value); @@ -95,18 +79,39 @@ 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); +default_mono_llvm_unhandled_exception (void); + +void* +mono_llvm_create_di_builder (LLVMModuleRef module); + +void* +mono_llvm_di_create_function (void *di_builder, void *cu, const char *name, const char *mangled_name, const char *dir, const char *file, int line); + +void* +mono_llvm_di_create_compile_unit (void *di_builder, const char *cu_name, const char *dir, const char *producer); + +void* +mono_llvm_di_create_file (void *di_builder, const char *dir, const char *file); + +void* +mono_llvm_di_create_location (void *di_builder, void *scope, int row, int column); void -default_mono_llvm_unhandled_exception (void); +mono_llvm_di_builder_finalize (void *di_builder); void -mono_llvm_cpp_throw_exception (void); +mono_llvm_di_set_location (LLVMBuilderRef builder, void *loc_md); G_END_DECLS