radv: dump SPIRV when a GPU hang is detected
[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
53 /* debug only */
54 uint32_t *spirv;
55 uint32_t spirv_size;
56 struct nir_shader *nir;
57 char *disasm_string;
58
59 struct list_head slab_list;
60 };
61
62 struct radv_shader_slab {
63 struct list_head slabs;
64 struct list_head shaders;
65 struct radeon_winsys_bo *bo;
66 uint64_t size;
67 char *ptr;
68 };
69
70 nir_shader *
71 radv_shader_compile_to_nir(struct radv_device *device,
72 struct radv_shader_module *module,
73 const char *entrypoint_name,
74 gl_shader_stage stage,
75 const VkSpecializationInfo *spec_info);
76
77 void *
78 radv_alloc_shader_memory(struct radv_device *device,
79 struct radv_shader_variant *shader);
80
81 void
82 radv_destroy_shader_slabs(struct radv_device *device);
83
84 struct radv_shader_variant *
85 radv_shader_variant_create(struct radv_device *device,
86 struct radv_shader_module *module,
87 struct nir_shader *shader,
88 struct radv_pipeline_layout *layout,
89 const struct ac_shader_variant_key *key,
90 void ** code_out,
91 unsigned *code_size_out);
92
93 struct radv_shader_variant *
94 radv_create_gs_copy_shader(struct radv_device *device, struct nir_shader *nir,
95 void **code_out, unsigned *code_size_out,
96 bool multiview);
97
98 void
99 radv_shader_variant_destroy(struct radv_device *device,
100 struct radv_shader_variant *variant);
101
102 uint32_t
103 radv_shader_stage_to_user_data_0(gl_shader_stage stage, bool has_gs,
104 bool has_tess);
105
106 const char *
107 radv_get_shader_name(struct radv_shader_variant *var, gl_shader_stage stage);
108
109 void
110 radv_shader_dump_stats(struct radv_device *device,
111 struct radv_shader_variant *variant,
112 gl_shader_stage stage,
113 FILE *file);
114
115 #endif