nv50: clear buffer status on all vertex bufs, not just the first one
[mesa.git] / src / gallium / auxiliary / gallivm / lp_bld_init.h
index 07f50d1c43391e2f8040d46b16eba7eb7885deaf..9e50f88931d07469f15266e12600381bda7d37bd 100644 (file)
 #define LP_BLD_INIT_H
 
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+#include "pipe/p_compiler.h"
+#include "util/u_pointer.h" // for func_pointer
+#include "lp_bld.h"
+#include <llvm-c/ExecutionEngine.h>
 
 
-void
+struct gallivm_state
+{
+   LLVMModuleRef module;
+   LLVMExecutionEngineRef engine;
+   LLVMTargetDataRef target;
+   LLVMPassManagerRef passmgr;
+   LLVMContextRef context;
+   LLVMBuilderRef builder;
+   LLVMMCJITMemoryManagerRef memorymgr;
+   struct lp_generated_code *code;
+   unsigned compiled;
+};
+
+
+boolean
 lp_build_init(void);
 
 
-#ifdef __cplusplus
-}
-#endif
+struct gallivm_state *
+gallivm_create(const char *name, LLVMContextRef context);
+
+void
+gallivm_destroy(struct gallivm_state *gallivm);
+
+void
+gallivm_free_ir(struct gallivm_state *gallivm);
 
+void
+gallivm_verify_function(struct gallivm_state *gallivm,
+                        LLVMValueRef func);
+
+void
+gallivm_compile_module(struct gallivm_state *gallivm);
+
+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);
 
 #endif /* !LP_BLD_INIT_H */