gallivm: Use standard LLVMSetAlignment from LLVM 3.4 onwards.
[mesa.git] / src / gallium / auxiliary / gallivm / lp_bld_init.h
index 5fc0f996c646357c04a163aba0b1178cafb4bd49..f0155b3a2ef9398bfc0b4a1a07b9f30e7af90656 100644 (file)
 
 
 #include "pipe/p_compiler.h"
+#include "util/u_pointer.h" // for func_pointer
 #include "lp_bld.h"
 #include <llvm-c/ExecutionEngine.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 struct gallivm_state
 {
    LLVMModuleRef module;
    LLVMExecutionEngineRef engine;
-   LLVMModuleProviderRef provider;
    LLVMTargetDataRef target;
    LLVMPassManagerRef passmgr;
    LLVMContextRef context;
    LLVMBuilderRef builder;
+   LLVMMCJITMemoryManagerRef memorymgr;
+   struct lp_generated_code *code;
+   unsigned compiled;
 };
 
 
-void
+boolean
 lp_build_init(void);
 
 
-extern void
-lp_func_delete_body(LLVMValueRef func);
-
+struct gallivm_state *
+gallivm_create(const char *name, LLVMContextRef context);
 
 void
-gallivm_garbage_collect(struct gallivm_state *gallivm);
-
-
-typedef void (*garbage_collect_callback_func)(void *cb_data);
+gallivm_destroy(struct gallivm_state *gallivm);
 
 void
-gallivm_register_garbage_collector_callback(garbage_collect_callback_func func,
-                                            void *cb_data);
+gallivm_free_ir(struct gallivm_state *gallivm);
 
 void
-gallivm_remove_garbage_collector_callback(garbage_collect_callback_func func,
-                                          void *cb_data);
-
-
-struct gallivm_state *
-gallivm_create(void);
+gallivm_verify_function(struct gallivm_state *gallivm,
+                        LLVMValueRef func);
 
 void
-gallivm_destroy(struct gallivm_state *gallivm);
-
+gallivm_compile_module(struct gallivm_state *gallivm);
 
-extern LLVMValueRef
-lp_build_load_volatile(LLVMBuilderRef B, LLVMValueRef PointerVal,
-                       const char *Name);
+func_pointer
+gallivm_jit_function(struct gallivm_state *gallivm,
+                     LLVMValueRef func);
 
-void
-lp_set_load_alignment(LLVMValueRef Inst,
-                       unsigned Align);
-
-void
-lp_set_store_alignment(LLVMValueRef Inst,
-                      unsigned Align);
+#ifdef __cplusplus
+}
+#endif
 
 #endif /* !LP_BLD_INIT_H */