panfrost: add missing dependency on midgard_pack.h
[mesa.git] / src / gallium / auxiliary / gallivm / lp_bld_init.h
index 0b4b1ca7d11d1d94f7bc07342cbd27dee8ad5198..4b00cebaef5bca4710ea6d914a8de997e14e67b6 100644 (file)
 #define LP_BLD_INIT_H
 
 
+#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
 
-extern LLVMModuleRef lp_build_module;
-extern LLVMExecutionEngineRef lp_build_engine;
-extern LLVMModuleProviderRef lp_build_provider;
-extern LLVMTargetDataRef lp_build_target;
-extern LLVMPassManagerRef lp_build_pass;
+struct lp_cached_code;
+struct gallivm_state
+{
+   char *module_name;
+   LLVMModuleRef module;
+   LLVMExecutionEngineRef engine;
+   LLVMTargetDataRef target;
+   LLVMPassManagerRef passmgr;
+   LLVMPassManagerRef cgpassmgr;
+   LLVMContextRef context;
+   LLVMBuilderRef builder;
+   LLVMMCJITMemoryManagerRef memorymgr;
+   struct lp_generated_code *code;
+   struct lp_cached_code *cache;
+   unsigned compiled;
+   LLVMValueRef coro_malloc_hook;
+   LLVMValueRef coro_free_hook;
+   LLVMValueRef debug_printf_hook;
+};
 
 
-void
+boolean
 lp_build_init(void);
 
-extern void
-lp_func_delete_body(LLVMValueRef func);
 
+struct gallivm_state *
+gallivm_create(const char *name, LLVMContextRef context,
+               struct lp_cached_code *cache);
+
+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);
 
-extern LLVMValueRef
-lp_build_load_volatile(LLVMBuilderRef B, LLVMValueRef PointerVal,
-                       const char *Name);
+func_pointer
+gallivm_jit_function(struct gallivm_state *gallivm,
+                     LLVMValueRef func);
 
+#ifdef __cplusplus
+}
+#endif
 
 #endif /* !LP_BLD_INIT_H */