ac/nir, radv, radeonsi: Switch to using ac_shader_args
[mesa.git] / src / gallium / drivers / r600 / evergreen_compute_internal.h
index 5fa9c48fb5ec4a6b2c17fd07f92ad51251f2dec6..4f3ba564fd07e09567ed4a3527da5041388c3ea3 100644 (file)
  * Authors:
  *      Adam Rak <adam.rak@streamnovation.com>
  */
 #ifndef EVERGREEN_COMPUTE_INTERNAL_H
 #define EVERGREEN_COMPUTE_INTERNAL_H
 
-#include "compute_memory_pool.h"
+#include "ac_binary.h"
+#include "r600_asm.h"
+#ifdef HAVE_OPENCL
+#include <llvm-c/Core.h>
+#endif
 
-enum evergreen_compute_resources
-{
-#define DECL_COMPUTE_RESOURCE(name, n) COMPUTE_RESOURCE_ ## name ,
-#include "compute_resource.def"
-#undef DECL_COMPUTE_RESOURCE
-__COMPUTE_RESOURCE_END__
+struct r600_shader_reloc {
+       char name[32];
+       uint64_t offset;
 };
 
-typedef unsigned u32;
+struct r600_shader_binary {
+       unsigned code_size;
+       unsigned config_size;
+       /** The number of bytes of config information for each global symbol.
+        */
+       unsigned config_size_per_symbol;
+       unsigned rodata_size;
+       unsigned global_symbol_count;
+       unsigned reloc_count;
 
-#define COMPUTE_RES_TC_FLUSH      0xF0001
-#define COMPUTE_RES_VC_FLUSH      0xF0002
-#define COMPUTE_RES_SH_FLUSH      0xF0004
-#define COMPUTE_RES_CB_FLUSH(x)  (0xF0008 | x << 8)
-#define COMPUTE_RES_FULL_FLUSH    0xF0010
+       /** Shader code */
+       unsigned char *code;
 
-struct evergreen_compute_resource {
-       int enabled;
+       /** Config/Context register state that accompanies this shader.
+        * This is a stream of dword pairs.  First dword contains the
+        * register address, the second dword contains the value.*/
+       unsigned char *config;
 
-       int do_reloc[256];
-       u32 cs[256];
-       int cs_end;
 
-       struct r600_resource *bo;
-       int coher_bo_size;
-       enum radeon_bo_usage usage;
-       int flags; ///flags for COMPUTE_RES_*_FLUSH
-};
+       /** Constant data accessed by the shader.  This will be uploaded
+        * into a constant buffer. */
+       unsigned char *rodata;
 
-struct compute_sampler_state {
-       struct r600_pipe_state base;
-       struct pipe_sampler_state state;
-};
+       /** List of symbol offsets for the shader */
+       uint64_t *global_symbol_offsets;
+
+       struct r600_shader_reloc *relocs;
 
-struct number_type_and_format {
-       unsigned format;
-       unsigned number_type;
-       unsigned num_format_all;
+       /** Disassembled shader in a string. */
+       char *disasm_string;
 };
 
 struct r600_pipe_compute {
        struct r600_context *ctx;
-       struct r600_bytecode bc;
-       struct tgsi_token *tokens;
 
-       struct evergreen_compute_resource *resources;
+       struct r600_shader_binary binary;
+
+       enum pipe_shader_ir ir_type;
+
+       /* tgsi selector */
+       struct r600_pipe_shader_selector *sel;
+
+       struct r600_resource *code_bo;
+       struct r600_bytecode bc;
 
        unsigned local_size;
        unsigned private_size;
        unsigned input_size;
+       struct r600_resource *kernel_param;
+
 #ifdef HAVE_OPENCL
-       LLVMModuleRef mod;
+       LLVMContextRef llvm_ctx;
 #endif
-       struct r600_resource *kernel_param;
-       struct r600_resource *shader_code_bo;
 };
 
-int evergreen_compute_get_gpu_format(struct number_type_and_format* fmt, struct r600_resource *bo); ///get hw format from resource, return 0 on faliure, nonzero on success
-
-
-void evergreen_emit_raw_reg_set(struct evergreen_compute_resource* res, unsigned index, int num);
-void evergreen_emit_ctx_reg_set(struct r600_context *ctx, unsigned index, int num);
-void evergreen_emit_raw_value(struct evergreen_compute_resource* res, unsigned value);
-void evergreen_emit_ctx_value(struct r600_context *ctx, unsigned value);
-void evergreen_mult_reg_set_(struct evergreen_compute_resource* res,  int index, u32* array, int size);
-void evergreen_emit_ctx_reloc(struct r600_context *ctx, struct r600_resource *bo, enum radeon_bo_usage usage);
-void evergreen_reg_set(struct evergreen_compute_resource* res, unsigned index, unsigned value);
-void evergreen_emit_force_reloc(struct evergreen_compute_resource* res);
-
-struct evergreen_compute_resource* get_empty_res(struct r600_pipe_compute*, enum evergreen_compute_resources res_code, int index);
-int get_compute_resource_num(void);
-
-#define evergreen_mult_reg_set(res, index, array) evergreen_mult_reg_set_(res, index, array, sizeof(array))
-
-void evergreen_set_rat(struct r600_pipe_compute *pipe, int id, struct r600_resource* bo, int start, int size);
-void evergreen_set_lds(struct r600_pipe_compute *pipe, int num_lds, int size, int num_waves);
-void evergreen_set_gds(struct r600_pipe_compute *pipe, uint32_t addr, uint32_t size);
-void evergreen_set_export(struct r600_pipe_compute *pipe, struct r600_resource* bo, int offset, int size);
-void evergreen_set_loop_const(struct r600_pipe_compute *pipe, int id, int count, int init, int inc);
-void evergreen_set_tmp_ring(struct r600_pipe_compute *pipe, struct r600_resource* bo, int offset, int size, int se);
-void evergreen_set_tex_resource(struct r600_pipe_compute *pipe, struct r600_pipe_sampler_view* view, int id);
-void evergreen_set_sampler_resource(struct r600_pipe_compute *pipe, struct compute_sampler_state *sampler, int id);
-void evergreen_set_const_cache(struct r600_pipe_compute *pipe, int cache_id, struct r600_resource* cbo, int size, int offset);
-
 struct r600_resource* r600_compute_buffer_alloc_vram(struct r600_screen *screen, unsigned size);
 
 #endif