radv: Don't use a virtual function for getting the buffer virtual address.
[mesa.git] / src / amd / vulkan / radv_shader.h
1 /*
2 * Copyright © 2016 Red Hat.
3 * Copyright © 2016 Bas Nieuwenhuizen
4 *
5 * based in part on anv driver which is:
6 * Copyright © 2015 Intel Corporation
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
25 * IN THE SOFTWARE.
26 */
27
28 #ifndef RADV_SHADER_H
29 #define RADV_SHADER_H
30
31 #include "radv_private.h"
32
33 #include "nir/nir.h"
34
35 struct radv_shader_module {
36 struct nir_shader *nir;
37 unsigned char sha1[20];
38 uint32_t size;
39 char data[0];
40 };
41
42 struct radv_shader_variant {
43 uint32_t ref_count;
44
45 struct radeon_winsys_bo *bo;
46 uint64_t bo_offset;
47 struct ac_shader_config config;
48 uint32_t code_size;
49 struct ac_shader_variant_info info;
50 unsigned rsrc1;
51 unsigned rsrc2;
52 char *disasm_string; /* debug only */
53
54 struct list_head slab_list;
55 };
56
57 struct radv_shader_slab {
58 struct list_head slabs;
59 struct list_head shaders;
60 struct radeon_winsys_bo *bo;
61 uint64_t size;
62 char *ptr;
63 };
64
65 nir_shader *
66 radv_shader_compile_to_nir(struct radv_device *device,
67 struct radv_shader_module *module,
68 const char *entrypoint_name,
69 gl_shader_stage stage,
70 const VkSpecializationInfo *spec_info);
71
72 void *
73 radv_alloc_shader_memory(struct radv_device *device,
74 struct radv_shader_variant *shader);
75
76 void
77 radv_destroy_shader_slabs(struct radv_device *device);
78
79 struct radv_shader_variant *
80 radv_shader_variant_create(struct radv_device *device,
81 struct nir_shader *shader,
82 struct radv_pipeline_layout *layout,
83 const struct ac_shader_variant_key *key,
84 void ** code_out,
85 unsigned *code_size_out);
86
87 struct radv_shader_variant *
88 radv_create_gs_copy_shader(struct radv_device *device, struct nir_shader *nir,
89 void **code_out, unsigned *code_size_out,
90 bool multiview);
91
92 void
93 radv_shader_variant_destroy(struct radv_device *device,
94 struct radv_shader_variant *variant);
95
96 uint32_t
97 radv_shader_stage_to_user_data_0(gl_shader_stage stage, bool has_gs,
98 bool has_tess);
99
100 const char *
101 radv_get_shader_name(struct radv_shader_variant *var, gl_shader_stage stage);
102
103 void
104 radv_shader_dump_stats(struct radv_device *device,
105 struct radv_shader_variant *variant,
106 gl_shader_stage stage,
107 FILE *file);
108
109 #endif