amd/common: move ac_shader_{binary,reloc} into r600 and rename
authorNicolai Hähnle <nicolai.haehnle@amd.com>
Mon, 1 Jul 2019 15:26:09 +0000 (17:26 +0200)
committerBas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Thu, 4 Jul 2019 10:52:26 +0000 (10:52 +0000)
They are no longer used by radeonsi or radv.

Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
src/amd/common/ac_binary.h
src/amd/common/ac_llvm_util.h
src/gallium/drivers/r600/evergreen_compute.c
src/gallium/drivers/r600/evergreen_compute_internal.h
src/gallium/drivers/r600/r600_pipe_common.c
src/gallium/drivers/r600/r600_pipe_common.h

index 3ac8562024db6317fbb6a400f8cc8afc852aedb6..53138f1181076df7e488e4ce00ece8927f9e4d41 100644 (file)
 extern "C" {
 #endif
 
-struct ac_shader_reloc {
-       char name[32];
-       uint64_t offset;
-};
-
-struct ac_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;
-
-       /** Shader code */
-       unsigned char *code;
-
-       /** 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;
-
-
-       /** Constant data accessed by the shader.  This will be uploaded
-        * into a constant buffer. */
-       unsigned char *rodata;
-
-       /** List of symbol offsets for the shader */
-       uint64_t *global_symbol_offsets;
-
-       struct ac_shader_reloc *relocs;
-
-       /** Disassembled shader in a string. */
-       char *disasm_string;
-       char *llvm_ir_string;
-};
-
 struct ac_shader_config {
        unsigned num_sgprs;
        unsigned num_vgprs;
index b0f8fc6b8ccb526b795d464d44632113361b7691..0c900885de5ce827397a47c67b82a6d4fd7a80ac 100644 (file)
@@ -35,7 +35,6 @@
 extern "C" {
 #endif
 
-struct ac_shader_binary;
 struct ac_compiler_passes;
 
 enum ac_func_attr {
index 1536210c7ef3e6bce9a36eb3b7fa0e1aed501a8d..dea01e48505db7eb8c701f05b978f667b10b7ec0 100644 (file)
@@ -84,6 +84,25 @@ writable images will consume TEX slots, VTX slots too because of linear indexing
 
 */
 
+MAYBE_UNUSED
+static void radeon_shader_binary_init(struct r600_shader_binary *b)
+{
+       memset(b, 0, sizeof(*b));
+}
+
+MAYBE_UNUSED
+static void radeon_shader_binary_clean(struct r600_shader_binary *b)
+{
+       if (!b)
+               return;
+       FREE(b->code);
+       FREE(b->config);
+       FREE(b->rodata);
+       FREE(b->global_symbol_offsets);
+       FREE(b->relocs);
+       FREE(b->disasm_string);
+}
+
 struct r600_resource *r600_compute_buffer_alloc_vram(struct r600_screen *screen,
                                                     unsigned size)
 {
@@ -186,7 +205,7 @@ static void evergreen_cs_set_constant_buffer(struct r600_context *rctx,
 #ifdef HAVE_OPENCL
 static void parse_symbol_table(Elf_Data *symbol_table_data,
                                const GElf_Shdr *symbol_table_header,
-                               struct ac_shader_binary *binary)
+                               struct r600_shader_binary *binary)
 {
        GElf_Sym symbol;
        unsigned i = 0;
@@ -230,7 +249,7 @@ static void parse_symbol_table(Elf_Data *symbol_table_data,
 
 static void parse_relocs(Elf *elf, Elf_Data *relocs, Elf_Data *symbols,
                        unsigned symbol_sh_link,
-                       struct ac_shader_binary *binary)
+                       struct r600_shader_binary *binary)
 {
        unsigned i;
 
@@ -238,12 +257,12 @@ static void parse_relocs(Elf *elf, Elf_Data *relocs, Elf_Data *symbols,
                return;
        }
        binary->relocs = CALLOC(binary->reloc_count,
-                       sizeof(struct ac_shader_reloc));
+                       sizeof(struct r600_shader_reloc));
        for (i = 0; i < binary->reloc_count; i++) {
                GElf_Sym symbol;
                GElf_Rel rel;
                char *symbol_name;
-               struct ac_shader_reloc *reloc = &binary->relocs[i];
+               struct r600_shader_reloc *reloc = &binary->relocs[i];
 
                gelf_getrel(relocs, i, &rel);
                gelf_getsym(symbols, GELF_R_SYM(rel.r_info), &symbol);
@@ -256,7 +275,7 @@ static void parse_relocs(Elf *elf, Elf_Data *relocs, Elf_Data *symbols,
 }
 
 static void r600_elf_read(const char *elf_data, unsigned elf_size,
-                struct ac_shader_binary *binary)
+                struct r600_shader_binary *binary)
 {
        char *elf_buffer;
        Elf *elf;
@@ -335,7 +354,7 @@ static void r600_elf_read(const char *elf_data, unsigned elf_size,
 }
 
 static const unsigned char *r600_shader_binary_config_start(
-       const struct ac_shader_binary *binary,
+       const struct r600_shader_binary *binary,
        uint64_t symbol_offset)
 {
        unsigned i;
@@ -348,7 +367,7 @@ static const unsigned char *r600_shader_binary_config_start(
        return binary->config;
 }
 
-static void r600_shader_binary_read_config(const struct ac_shader_binary *binary,
+static void r600_shader_binary_read_config(const struct r600_shader_binary *binary,
                                           struct r600_bytecode *bc,
                                           uint64_t symbol_offset,
                                           boolean *use_kill)
@@ -384,7 +403,7 @@ static void r600_shader_binary_read_config(const struct ac_shader_binary *binary
 }
 
 static unsigned r600_create_shader(struct r600_bytecode *bc,
-                                  const struct ac_shader_binary *binary,
+                                  const struct r600_shader_binary *binary,
                                   boolean *use_kill)
 
 {
index db3f24d3822d460678c6e04e3df888f826fa0b37..4f3ba564fd07e09567ed4a3527da5041388c3ea3 100644 (file)
 #include <llvm-c/Core.h>
 #endif
 
+struct r600_shader_reloc {
+       char name[32];
+       uint64_t offset;
+};
+
+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;
+
+       /** Shader code */
+       unsigned char *code;
+
+       /** 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;
+
+
+       /** Constant data accessed by the shader.  This will be uploaded
+        * into a constant buffer. */
+       unsigned char *rodata;
+
+       /** List of symbol offsets for the shader */
+       uint64_t *global_symbol_offsets;
+
+       struct r600_shader_reloc *relocs;
+
+       /** Disassembled shader in a string. */
+       char *disasm_string;
+};
+
 struct r600_pipe_compute {
        struct r600_context *ctx;
 
-       struct ac_shader_binary binary;
+       struct r600_shader_binary binary;
 
        enum pipe_shader_ir ir_type;
 
index 566c63cc4d8f2a3b4d217ba16c377c4d0f9ce021..9eee322a28bdf102c6a232813cbbfa1360b29fcc 100644 (file)
@@ -59,27 +59,6 @@ struct r600_multi_fence {
        } gfx_unflushed;
 };
 
-/*
- * shader binary helpers.
- */
-void radeon_shader_binary_init(struct ac_shader_binary *b)
-{
-       memset(b, 0, sizeof(*b));
-}
-
-void radeon_shader_binary_clean(struct ac_shader_binary *b)
-{
-       if (!b)
-               return;
-       FREE(b->code);
-       FREE(b->config);
-       FREE(b->rodata);
-       FREE(b->global_symbol_offsets);
-       FREE(b->relocs);
-       FREE(b->disasm_string);
-       FREE(b->llvm_ir_string);
-}
-
 /*
  * pipe_context
  */
index b43b7eecd1035e8e1b53fe62cca0ab64dd3c1219..c5929c24fb03d8f037d4dadc4c3076066c6a9c93 100644 (file)
@@ -34,8 +34,6 @@
 
 #include <stdio.h>
 
-#include "amd/common/ac_binary.h"
-
 #include "radeon/radeon_winsys.h"
 
 #include "util/disk_cache.h"
@@ -48,7 +46,6 @@
 #include "util/u_threaded_context.h"
 
 struct u_log_context;
-
 #define ATI_VENDOR_ID 0x1002
 
 #define R600_RESOURCE_FLAG_TRANSFER            (PIPE_RESOURCE_FLAG_DRV_PRIV << 0)
@@ -132,9 +129,6 @@ struct r600_perfcounters;
 struct tgsi_shader_info;
 struct r600_qbo_state;
 
-void radeon_shader_binary_init(struct ac_shader_binary *b);
-void radeon_shader_binary_clean(struct ac_shader_binary *b);
-
 /* Only 32-bit buffer allocations are supported, gallium doesn't support more
  * at the moment.
  */