blob: cad95f830aae5c803f22a54acf170679abb01f14 [file] [log] [blame]
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001/*
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#include "util/mesa-sha1.h"
29#include "util/u_atomic.h"
30#include "radv_debug.h"
31#include "radv_private.h"
32#include "radv_shader.h"
Dave Airlie6f3aee42018-06-27 11:34:25 +100033#include "radv_shader_helper.h"
Connor Abbott66c703b2019-11-11 18:05:03 +010034#include "radv_shader_args.h"
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020035#include "nir/nir.h"
36#include "nir/nir_builder.h"
37#include "spirv/nir_spirv.h"
38
39#include <llvm-c/Core.h>
40#include <llvm-c/TargetMachine.h>
Samuel Pitoiset135e4d42018-06-08 11:38:01 +020041#include <llvm-c/Support.h>
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020042
43#include "sid.h"
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020044#include "ac_binary.h"
45#include "ac_llvm_util.h"
46#include "ac_nir_to_llvm.h"
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +020047#include "ac_rtld.h"
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020048#include "vk_format.h"
49#include "util/debug.h"
50#include "ac_exp_param.h"
51
Daniel Schürmanna70a9982019-09-17 14:35:22 +020052#include "aco_interface.h"
53
Alex Smithde889792017-10-27 14:25:05 +010054#include "util/string_buffer.h"
55
Daniel Schürmanna70a9982019-09-17 14:35:22 +020056static const struct nir_shader_compiler_options nir_options_llvm = {
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020057 .vertex_id_zero_based = true,
58 .lower_scmp = true,
Rhys Perry0af95f02018-12-06 14:01:15 +000059 .lower_flrp16 = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020060 .lower_flrp32 = true,
Timothy Arcerif0d74ec2018-01-12 11:12:09 +110061 .lower_flrp64 = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +010062 .lower_device_index_to_zero = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020063 .lower_fsat = true,
64 .lower_fdiv = true,
Samuel Pitoiset5ebe1a12019-10-03 16:20:40 +020065 .lower_fmod = true,
Daniel Schürmann48a75e72019-01-25 16:08:38 +010066 .lower_bitfield_insert_to_bitfield_select = true,
Daniel Schürmann0daeb1d2019-01-25 16:24:55 +010067 .lower_bitfield_extract = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020068 .lower_sub = true,
69 .lower_pack_snorm_2x16 = true,
70 .lower_pack_snorm_4x8 = true,
71 .lower_pack_unorm_2x16 = true,
72 .lower_pack_unorm_4x8 = true,
73 .lower_unpack_snorm_2x16 = true,
74 .lower_unpack_snorm_4x8 = true,
75 .lower_unpack_unorm_2x16 = true,
76 .lower_unpack_unorm_4x8 = true,
77 .lower_extract_byte = true,
78 .lower_extract_word = true,
Dave Airlie2c615942017-10-04 06:33:02 +100079 .lower_ffma = true,
Samuel Pitoiset7aa008d2018-02-02 19:04:57 +010080 .lower_fpow = true,
Samuel Pitoiset71ffa002019-03-06 22:35:31 +010081 .lower_mul_2x32_64 = true,
Sagar Ghuge456557a2019-06-03 17:11:57 -070082 .lower_rotate = true,
Connor Abbott118a66d2019-05-10 10:44:20 +020083 .max_unroll_iterations = 32,
84 .use_interpolated_input_intrinsics = true,
Rhys Perry76544f62019-10-15 20:43:39 +010085 /* nir_lower_int64() isn't actually called for the LLVM backend, but
86 * this helps the loop unrolling heuristics. */
87 .lower_int64_options = nir_lower_imul64 |
88 nir_lower_imul_high64 |
89 nir_lower_imul_2x32_64 |
90 nir_lower_divmod64 |
91 nir_lower_minmax64 |
92 nir_lower_iabs64,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020093};
94
Daniel Schürmanna70a9982019-09-17 14:35:22 +020095static const struct nir_shader_compiler_options nir_options_aco = {
96 .vertex_id_zero_based = true,
97 .lower_scmp = true,
98 .lower_flrp16 = true,
99 .lower_flrp32 = true,
100 .lower_flrp64 = true,
101 .lower_device_index_to_zero = true,
102 .lower_fdiv = true,
Rhys Perrya87b0f52019-10-03 15:32:19 +0100103 .lower_fmod = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200104 .lower_bitfield_insert_to_bitfield_select = true,
105 .lower_bitfield_extract = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200106 .lower_pack_snorm_2x16 = true,
107 .lower_pack_snorm_4x8 = true,
108 .lower_pack_unorm_2x16 = true,
109 .lower_pack_unorm_4x8 = true,
110 .lower_unpack_snorm_2x16 = true,
111 .lower_unpack_snorm_4x8 = true,
112 .lower_unpack_unorm_2x16 = true,
113 .lower_unpack_unorm_4x8 = true,
114 .lower_unpack_half_2x16 = true,
115 .lower_extract_byte = true,
116 .lower_extract_word = true,
117 .lower_ffma = true,
118 .lower_fpow = true,
119 .lower_mul_2x32_64 = true,
120 .lower_rotate = true,
121 .max_unroll_iterations = 32,
122 .use_interpolated_input_intrinsics = true,
Rhys Perry76544f62019-10-15 20:43:39 +0100123 .lower_int64_options = nir_lower_imul64 |
124 nir_lower_imul_high64 |
125 nir_lower_imul_2x32_64 |
126 nir_lower_divmod64 |
127 nir_lower_logic64 |
128 nir_lower_minmax64 |
129 nir_lower_iabs64,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200130};
131
Daniel Schürmann45638e12019-07-29 17:51:01 +0200132bool
133radv_can_dump_shader(struct radv_device *device,
134 struct radv_shader_module *module,
135 bool is_gs_copy_shader)
136{
137 if (!(device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS))
138 return false;
Timur Kristóf30f0c0e2019-09-18 14:39:10 +0200139 if (module)
140 return !module->nir ||
141 (device->instance->debug_flags & RADV_DEBUG_DUMP_META_SHADERS);
Daniel Schürmann45638e12019-07-29 17:51:01 +0200142
Timur Kristóf30f0c0e2019-09-18 14:39:10 +0200143 return is_gs_copy_shader;
Daniel Schürmann45638e12019-07-29 17:51:01 +0200144}
145
146bool
147radv_can_dump_shader_stats(struct radv_device *device,
148 struct radv_shader_module *module)
149{
150 /* Only dump non-meta shader stats. */
151 return device->instance->debug_flags & RADV_DEBUG_DUMP_SHADER_STATS &&
152 module && !module->nir;
153}
154
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200155VkResult radv_CreateShaderModule(
156 VkDevice _device,
157 const VkShaderModuleCreateInfo* pCreateInfo,
158 const VkAllocationCallbacks* pAllocator,
159 VkShaderModule* pShaderModule)
160{
161 RADV_FROM_HANDLE(radv_device, device, _device);
162 struct radv_shader_module *module;
163
164 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO);
165 assert(pCreateInfo->flags == 0);
166
167 module = vk_alloc2(&device->alloc, pAllocator,
168 sizeof(*module) + pCreateInfo->codeSize, 8,
169 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
170 if (module == NULL)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +0200171 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200172
173 module->nir = NULL;
174 module->size = pCreateInfo->codeSize;
175 memcpy(module->data, pCreateInfo->pCode, module->size);
176
177 _mesa_sha1_compute(module->data, module->size, module->sha1);
178
179 *pShaderModule = radv_shader_module_to_handle(module);
180
181 return VK_SUCCESS;
182}
183
184void radv_DestroyShaderModule(
185 VkDevice _device,
186 VkShaderModule _module,
187 const VkAllocationCallbacks* pAllocator)
188{
189 RADV_FROM_HANDLE(radv_device, device, _device);
190 RADV_FROM_HANDLE(radv_shader_module, module, _module);
191
192 if (!module)
193 return;
194
195 vk_free2(&device->alloc, pAllocator, module);
196}
197
Bas Nieuwenhuizen06f05042017-02-09 00:12:10 +0100198void
Timothy Arceri06675712018-10-18 09:42:17 +1100199radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively,
200 bool allow_copies)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200201{
202 bool progress;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700203 unsigned lower_flrp =
204 (shader->options->lower_flrp16 ? 16 : 0) |
205 (shader->options->lower_flrp32 ? 32 : 0) |
206 (shader->options->lower_flrp64 ? 64 : 0);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200207
208 do {
209 progress = false;
210
Karol Herbst9b240282019-01-16 00:05:04 +0100211 NIR_PASS(progress, shader, nir_split_array_vars, nir_var_function_temp);
212 NIR_PASS(progress, shader, nir_shrink_vec_array_vars, nir_var_function_temp);
Timothy Arceri8086fa12018-10-18 10:19:16 +1100213
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200214 NIR_PASS_V(shader, nir_lower_vars_to_ssa);
Iago Toral Quiroga2d648e52018-04-27 09:28:48 +0200215 NIR_PASS_V(shader, nir_lower_pack);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100216
Timothy Arceri06675712018-10-18 09:42:17 +1100217 if (allow_copies) {
218 /* Only run this pass in the first call to
219 * radv_optimize_nir. Later calls assume that we've
220 * lowered away any copy_deref instructions and we
221 * don't want to introduce any more.
222 */
223 NIR_PASS(progress, shader, nir_opt_find_array_copies);
224 }
225
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100226 NIR_PASS(progress, shader, nir_opt_copy_prop_vars);
227 NIR_PASS(progress, shader, nir_opt_dead_write_vars);
Connor Abbotta69ab1b2019-06-26 14:03:31 +0200228 NIR_PASS(progress, shader, nir_remove_dead_variables,
Samuel Pitoiset3b512592019-12-02 16:33:06 +0100229 nir_var_function_temp | nir_var_shader_in | nir_var_shader_out);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100230
Vasily Khoruzhick9367d2c2019-08-29 21:14:54 -0700231 NIR_PASS_V(shader, nir_lower_alu_to_scalar, NULL, NULL);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200232 NIR_PASS_V(shader, nir_lower_phis_to_scalar);
233
234 NIR_PASS(progress, shader, nir_copy_prop);
235 NIR_PASS(progress, shader, nir_opt_remove_phis);
236 NIR_PASS(progress, shader, nir_opt_dce);
237 if (nir_opt_trivial_continues(shader)) {
238 progress = true;
239 NIR_PASS(progress, shader, nir_copy_prop);
Dave Airlie64d9bd12017-09-13 03:49:31 +0100240 NIR_PASS(progress, shader, nir_opt_remove_phis);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200241 NIR_PASS(progress, shader, nir_opt_dce);
242 }
Timothy Arcerie30804c2019-04-08 20:13:49 +1000243 NIR_PASS(progress, shader, nir_opt_if, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200244 NIR_PASS(progress, shader, nir_opt_dead_cf);
245 NIR_PASS(progress, shader, nir_opt_cse);
Ian Romanick378f9962018-06-18 16:11:55 -0700246 NIR_PASS(progress, shader, nir_opt_peephole_select, 8, true, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200247 NIR_PASS(progress, shader, nir_opt_constant_folding);
Timothy Arcerie19a8fe2019-05-02 13:38:52 +1000248 NIR_PASS(progress, shader, nir_opt_algebraic);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700249
250 if (lower_flrp != 0) {
Ian Romanick1f1007a2019-05-08 07:32:43 -0700251 bool lower_flrp_progress = false;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700252 NIR_PASS(lower_flrp_progress,
253 shader,
254 nir_lower_flrp,
255 lower_flrp,
256 false /* always_precise */,
257 shader->options->lower_ffma);
258 if (lower_flrp_progress) {
259 NIR_PASS(progress, shader,
260 nir_opt_constant_folding);
261 progress = true;
262 }
263
264 /* Nothing should rematerialize any flrps, so we only
265 * need to do this lowering once.
266 */
267 lower_flrp = 0;
268 }
269
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200270 NIR_PASS(progress, shader, nir_opt_undef);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200271 if (shader->options->max_unroll_iterations) {
272 NIR_PASS(progress, shader, nir_opt_loop_unroll, 0);
273 }
Timothy Arcerice188812018-05-08 14:57:55 +1000274 } while (progress && !optimize_conservatively);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100275
Daniel Schürmann64b73862019-07-20 19:21:14 +0200276 NIR_PASS(progress, shader, nir_opt_conditional_discard);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100277 NIR_PASS(progress, shader, nir_opt_shrink_load);
Rhys Perry77401492019-07-24 19:23:21 +0100278 NIR_PASS(progress, shader, nir_opt_move, nir_move_load_ubo);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200279}
280
Samuel Pitoisetc105e612019-11-07 15:56:35 +0100281static void
282shared_var_info(const struct glsl_type *type, unsigned *size, unsigned *align)
283{
284 assert(glsl_type_is_vector_or_scalar(type));
285
286 uint32_t comp_size = glsl_type_is_boolean(type) ? 4 : glsl_get_bit_size(type) / 8;
287 unsigned length = glsl_get_vector_elements(type);
288 *size = comp_size * length,
289 *align = comp_size;
290}
291
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200292nir_shader *
293radv_shader_compile_to_nir(struct radv_device *device,
294 struct radv_shader_module *module,
295 const char *entrypoint_name,
296 gl_shader_stage stage,
Timothy Arcerice188812018-05-08 14:57:55 +1000297 const VkSpecializationInfo *spec_info,
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100298 const VkPipelineCreateFlags flags,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200299 const struct radv_pipeline_layout *layout,
300 bool use_aco)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200301{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200302 nir_shader *nir;
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200303 const nir_shader_compiler_options *nir_options = use_aco ? &nir_options_aco :
304 &nir_options_llvm;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200305 if (module->nir) {
306 /* Some things such as our meta clear/blit code will give us a NIR
307 * shader directly. In that case, we just ignore the SPIR-V entirely
308 * and just use the NIR shader */
309 nir = module->nir;
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200310 nir->options = nir_options;
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500311 nir_validate_shader(nir, "in internal shader");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200312
313 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200314 } else {
315 uint32_t *spirv = (uint32_t *) module->data;
316 assert(module->size % 4 == 0);
317
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100318 if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV)
Samuel Pitoisetd4e0bef2019-10-28 16:56:15 +0100319 radv_print_spirv(module->data, module->size, stderr);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200320
321 uint32_t num_spec_entries = 0;
322 struct nir_spirv_specialization *spec_entries = NULL;
323 if (spec_info && spec_info->mapEntryCount > 0) {
324 num_spec_entries = spec_info->mapEntryCount;
325 spec_entries = malloc(num_spec_entries * sizeof(*spec_entries));
326 for (uint32_t i = 0; i < num_spec_entries; i++) {
327 VkSpecializationMapEntry entry = spec_info->pMapEntries[i];
328 const void *data = spec_info->pData + entry.offset;
329 assert(data + entry.size <= spec_info->pData + spec_info->dataSize);
330
331 spec_entries[i].id = spec_info->pMapEntries[i].constantID;
332 if (spec_info->dataSize == 8)
333 spec_entries[i].data64 = *(const uint64_t *)data;
334 else
335 spec_entries[i].data32 = *(const uint32_t *)data;
336 }
337 }
Jason Ekstrande19c6232017-10-18 17:28:19 -0700338 const struct spirv_to_nir_options spirv_options = {
Jason Ekstrand63b9aa22018-12-14 18:36:01 -0600339 .lower_ubo_ssbo_access_to_offsets = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700340 .caps = {
Samuel Pitoiset12fe19b2019-05-16 12:26:16 +0200341 .amd_fragment_mask = true,
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200342 .amd_gcn_shader = true,
Samuel Pitoisete298e78a2020-01-03 11:51:14 +0100343 .amd_image_read_write_lod = true,
Samuel Pitoisete73d8632019-08-21 08:38:24 +0200344 .amd_shader_ballot = device->physical_device->use_shader_ballot,
Samuel Pitoiset401bfe02020-01-27 11:08:26 +0100345 .amd_shader_explicit_vertex_parameter = true,
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200346 .amd_trinary_minmax = true,
Daniel Schürmann28126222019-09-17 17:09:52 +0200347 .demote_to_helper_invocation = device->physical_device->use_aco,
Samuel Pitoisetb3e34402019-04-19 12:40:37 +0200348 .derivative_group = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600349 .descriptor_array_dynamic_indexing = true,
Juan A. Suarez Romero06c9d7f2019-04-29 17:05:13 +0200350 .descriptor_array_non_uniform_indexing = true,
351 .descriptor_indexing = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +0100352 .device_group = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700353 .draw_parameters = true,
Samuel Pitoiset7c502142019-10-14 11:27:32 +0200354 .float_controls = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200355 .float16 = !device->physical_device->use_aco,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700356 .float64 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600357 .geometry_streams = true,
Samuel Pitoiseteda1b772019-12-12 18:22:34 +0100358 .image_ms_array = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700359 .image_read_without_format = true,
360 .image_write_without_format = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200361 .int8 = !device->physical_device->use_aco,
362 .int16 = !device->physical_device->use_aco,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600363 .int64 = true,
Samuel Pitoiset9cf55b02019-04-16 10:38:24 +0200364 .int64_atomics = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700365 .multiview = true,
Bas Nieuwenhuizen13ab63b2019-01-24 02:06:27 +0100366 .physical_storage_buffer_address = true,
Samuel Pitoiset07ff3672019-07-16 17:11:50 +0200367 .post_depth_coverage = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600368 .runtime_descriptor_array = true,
Samuel Pitoisetcbd6f0a2019-10-07 10:26:22 +0200369 .shader_clock = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600370 .shader_viewport_index_layer = true,
371 .stencil_export = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200372 .storage_8bit = !device->physical_device->use_aco,
373 .storage_16bit = !device->physical_device->use_aco,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600374 .storage_image_ms = true,
Samuel Pitoiset35656822018-09-18 15:27:52 +0200375 .subgroup_arithmetic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100376 .subgroup_ballot = true,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100377 .subgroup_basic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100378 .subgroup_quad = true,
379 .subgroup_shuffle = true,
380 .subgroup_vote = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600381 .tessellation = true,
Samuel Pitoisetb4eb0292018-10-05 18:04:56 +0200382 .transform_feedback = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600383 .variable_pointers = true,
Daniel Schürmannffbf75c2018-02-23 13:55:01 +0100384 },
Caio Marcelo de Oliveira Filho31a74762019-05-01 14:15:32 -0700385 .ubo_addr_format = nir_address_format_32bit_index_offset,
386 .ssbo_addr_format = nir_address_format_32bit_index_offset,
387 .phys_ssbo_addr_format = nir_address_format_64bit_global,
388 .push_const_addr_format = nir_address_format_logical,
389 .shared_addr_format = nir_address_format_32bit_offset,
Connor Abbott27f0c3c2019-05-13 15:39:54 +0200390 .frag_coord_is_sysval = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200391 };
Caio Marcelo de Oliveira Filhoe45bf012019-05-19 00:22:17 -0700392 nir = spirv_to_nir(spirv, module->size / 4,
393 spec_entries, num_spec_entries,
394 stage, entrypoint_name,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200395 &spirv_options, nir_options);
Jason Ekstrand59fb59a2017-09-14 19:52:38 -0700396 assert(nir->info.stage == stage);
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500397 nir_validate_shader(nir, "after spirv_to_nir");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200398
399 free(spec_entries);
400
401 /* We have to lower away local constant initializers right before we
402 * inline functions. That way they get properly initialized at the top
403 * of the function and not at the top of its caller.
404 */
Arcady Goldmints-Orlove9f83182020-02-07 14:18:49 -0600405 NIR_PASS_V(nir, nir_lower_variable_initializers, nir_var_function_temp);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200406 NIR_PASS_V(nir, nir_lower_returns);
407 NIR_PASS_V(nir, nir_inline_functions);
Jason Ekstrandfc9c4f82018-12-13 11:08:13 -0600408 NIR_PASS_V(nir, nir_opt_deref);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200409
410 /* Pick off the single entrypoint that we want */
411 foreach_list_typed_safe(nir_function, func, node, &nir->functions) {
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700412 if (func->is_entrypoint)
413 func->name = ralloc_strdup(func, "main");
414 else
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200415 exec_node_remove(&func->node);
416 }
417 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200418
Dave Airliee8d9b7a2018-03-19 04:27:49 +0000419 /* Make sure we lower constant initializers on output variables so that
420 * nir_remove_dead_variables below sees the corresponding stores
421 */
Arcady Goldmints-Orlove9f83182020-02-07 14:18:49 -0600422 NIR_PASS_V(nir, nir_lower_variable_initializers, nir_var_shader_out);
Dave Airliee8d9b7a2018-03-19 04:27:49 +0000423
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200424 /* Now that we've deleted all but the main function, we can go ahead and
425 * lower the rest of the constant initializers.
426 */
Arcady Goldmints-Orlove9f83182020-02-07 14:18:49 -0600427 NIR_PASS_V(nir, nir_lower_variable_initializers, ~0);
Jason Ekstrandb0c643d2018-03-21 17:30:22 -0700428
429 /* Split member structs. We do this before lower_io_to_temporaries so that
430 * it doesn't lower system values to temporaries by accident.
431 */
432 NIR_PASS_V(nir, nir_split_var_copies);
433 NIR_PASS_V(nir, nir_split_per_member_structs);
434
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200435 if (nir->info.stage == MESA_SHADER_FRAGMENT && use_aco)
436 NIR_PASS_V(nir, nir_lower_io_to_vector, nir_var_shader_out);
Daniel Schürmanne41e9322019-04-05 11:01:39 +0200437 if (nir->info.stage == MESA_SHADER_FRAGMENT)
Connor Abbott27f0c3c2019-05-13 15:39:54 +0200438 NIR_PASS_V(nir, nir_lower_input_attachments, true);
Daniel Schürmanne41e9322019-04-05 11:01:39 +0200439
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200440 NIR_PASS_V(nir, nir_remove_dead_variables,
Daniel Schürmann8b78cce2019-09-17 18:24:06 +0200441 nir_var_shader_in | nir_var_shader_out | nir_var_system_value | nir_var_mem_shared);
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200442
Connor Abbott3f5b5412019-09-05 13:57:11 +0200443 NIR_PASS_V(nir, nir_propagate_invariant);
444
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200445 NIR_PASS_V(nir, nir_lower_system_values);
446 NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays);
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100447 NIR_PASS_V(nir, radv_nir_lower_ycbcr_textures, layout);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200448 }
449
450 /* Vulkan uses the separate-shader linking model */
451 nir->info.separate_shader = true;
452
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700453 nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir));
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200454
Rhys Perry40bb81c2019-10-14 17:46:02 +0100455 if (nir->info.stage == MESA_SHADER_GEOMETRY && use_aco)
456 nir_lower_gs_intrinsics(nir, true);
457
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200458 static const nir_lower_tex_options tex_options = {
459 .lower_txp = ~0,
Jason Ekstrand08f804e2019-03-19 13:55:21 -0500460 .lower_tg4_offsets = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200461 };
462
463 nir_lower_tex(nir, &tex_options);
464
465 nir_lower_vars_to_ssa(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200466
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200467 if (nir->info.stage == MESA_SHADER_VERTEX ||
Connor Abbott118a66d2019-05-10 10:44:20 +0200468 nir->info.stage == MESA_SHADER_GEOMETRY ||
469 nir->info.stage == MESA_SHADER_FRAGMENT) {
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200470 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
471 nir_shader_get_entrypoint(nir), true, true);
Connor Abbott118a66d2019-05-10 10:44:20 +0200472 } else if (nir->info.stage == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200473 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
474 nir_shader_get_entrypoint(nir), true, false);
475 }
476
Samuel Pitoisetded15092018-05-23 14:31:55 +0200477 nir_split_var_copies(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200478
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200479 nir_lower_global_vars_to_local(nir);
Karol Herbst9b240282019-01-16 00:05:04 +0100480 nir_remove_dead_variables(nir, nir_var_function_temp);
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100481 nir_lower_subgroups(nir, &(struct nir_lower_subgroups_options) {
482 .subgroup_size = 64,
483 .ballot_bit_size = 64,
484 .lower_to_scalar = 1,
485 .lower_subgroup_masks = 1,
486 .lower_shuffle = 1,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100487 .lower_shuffle_to_32bit = 1,
488 .lower_vote_eq_to_ballot = 1,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100489 });
490
Timothy Arceri72e42872018-09-24 18:18:48 +1000491 nir_lower_load_const_to_scalar(nir);
492
Timothy Arcerice188812018-05-08 14:57:55 +1000493 if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT))
Timothy Arceri06675712018-10-18 09:42:17 +1100494 radv_optimize_nir(nir, false, true);
495
496 /* We call nir_lower_var_copies() after the first radv_optimize_nir()
497 * to remove any copies introduced by nir_opt_find_array_copies().
498 */
499 nir_lower_var_copies(nir);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200500
Samuel Pitoisetc105e612019-11-07 15:56:35 +0100501 /* Lower deref operations for compute shared memory. */
502 if (nir->info.stage == MESA_SHADER_COMPUTE) {
503 NIR_PASS_V(nir, nir_lower_vars_to_explicit_types,
504 nir_var_mem_shared, shared_var_info);
505 NIR_PASS_V(nir, nir_lower_explicit_io,
506 nir_var_mem_shared, nir_address_format_32bit_offset);
507 }
508
Connor Abbott71a67942019-08-30 16:08:47 +0200509 /* Lower large variables that are always constant with load_constant
510 * intrinsics, which get turned into PC-relative loads from a data
511 * section next to the shader.
512 */
513 NIR_PASS_V(nir, nir_opt_large_constants,
514 glsl_get_natural_size_align_bytes, 16);
515
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100516 /* Indirect lowering must be called after the radv_optimize_nir() loop
517 * has been called at least once. Otherwise indirect lowering can
518 * bloat the instruction count of the loop and cause it to be
519 * considered too large for unrolling.
520 */
521 ac_lower_indirect_derefs(nir, device->physical_device->rad_info.chip_class);
Timothy Arceri06675712018-10-18 09:42:17 +1100522 radv_optimize_nir(nir, flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, false);
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100523
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200524 return nir;
525}
526
Connor Abbott118a66d2019-05-10 10:44:20 +0200527static int
528type_size_vec4(const struct glsl_type *type, bool bindless)
529{
530 return glsl_count_attribute_slots(type, false);
531}
532
533static nir_variable *
534find_layer_in_var(nir_shader *nir)
535{
536 nir_foreach_variable(var, &nir->inputs) {
537 if (var->data.location == VARYING_SLOT_LAYER) {
538 return var;
539 }
540 }
541
542 nir_variable *var =
543 nir_variable_create(nir, nir_var_shader_in, glsl_int_type(), "layer id");
544 var->data.location = VARYING_SLOT_LAYER;
545 var->data.interpolation = INTERP_MODE_FLAT;
546 return var;
547}
548
549/* We use layered rendering to implement multiview, which means we need to map
550 * view_index to gl_Layer. The attachment lowering also uses needs to know the
551 * layer so that it can sample from the correct layer. The code generates a
552 * load from the layer_id sysval, but since we don't have a way to get at this
553 * information from the fragment shader, we also need to lower this to the
554 * gl_Layer varying. This pass lowers both to a varying load from the LAYER
555 * slot, before lowering io, so that nir_assign_var_locations() will give the
556 * LAYER varying the correct driver_location.
557 */
558
559static bool
560lower_view_index(nir_shader *nir)
561{
562 bool progress = false;
563 nir_function_impl *entry = nir_shader_get_entrypoint(nir);
564 nir_builder b;
565 nir_builder_init(&b, entry);
566
567 nir_variable *layer = NULL;
568 nir_foreach_block(block, entry) {
569 nir_foreach_instr_safe(instr, block) {
570 if (instr->type != nir_instr_type_intrinsic)
571 continue;
572
573 nir_intrinsic_instr *load = nir_instr_as_intrinsic(instr);
574 if (load->intrinsic != nir_intrinsic_load_view_index &&
575 load->intrinsic != nir_intrinsic_load_layer_id)
576 continue;
577
578 if (!layer)
579 layer = find_layer_in_var(nir);
580
581 b.cursor = nir_before_instr(instr);
582 nir_ssa_def *def = nir_load_var(&b, layer);
583 nir_ssa_def_rewrite_uses(&load->dest.ssa,
584 nir_src_for_ssa(def));
585
586 nir_instr_remove(instr);
587 progress = true;
588 }
589 }
590
591 return progress;
592}
593
Samuel Pitoiset8d44f832019-08-29 11:16:44 +0200594void
595radv_lower_fs_io(nir_shader *nir)
Connor Abbott118a66d2019-05-10 10:44:20 +0200596{
597 NIR_PASS_V(nir, lower_view_index);
598 nir_assign_io_var_locations(&nir->inputs, &nir->num_inputs,
599 MESA_SHADER_FRAGMENT);
600
Connor Abbott118a66d2019-05-10 10:44:20 +0200601 NIR_PASS_V(nir, nir_lower_io, nir_var_shader_in, type_size_vec4, 0);
602
603 /* This pass needs actual constants */
604 nir_opt_constant_folding(nir);
605
606 NIR_PASS_V(nir, nir_io_add_const_offset_to_base, nir_var_shader_in);
Connor Abbott118a66d2019-05-10 10:44:20 +0200607}
608
609
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200610void *
611radv_alloc_shader_memory(struct radv_device *device,
612 struct radv_shader_variant *shader)
613{
614 mtx_lock(&device->shader_slab_mutex);
615 list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
616 uint64_t offset = 0;
617 list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) {
618 if (s->bo_offset - offset >= shader->code_size) {
619 shader->bo = slab->bo;
620 shader->bo_offset = offset;
621 list_addtail(&shader->slab_list, &s->slab_list);
622 mtx_unlock(&device->shader_slab_mutex);
623 return slab->ptr + offset;
624 }
625 offset = align_u64(s->bo_offset + s->code_size, 256);
626 }
627 if (slab->size - offset >= shader->code_size) {
628 shader->bo = slab->bo;
629 shader->bo_offset = offset;
630 list_addtail(&shader->slab_list, &slab->shaders);
631 mtx_unlock(&device->shader_slab_mutex);
632 return slab->ptr + offset;
633 }
634 }
635
636 mtx_unlock(&device->shader_slab_mutex);
637 struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab));
638
639 slab->size = 256 * 1024;
640 slab->bo = device->ws->buffer_create(device->ws, slab->size, 256,
Samuel Pitoiseta3c2a862018-01-04 15:19:47 +0100641 RADEON_DOMAIN_VRAM,
642 RADEON_FLAG_NO_INTERPROCESS_SHARING |
Samuel Pitoiset2b9c3712019-08-20 17:20:42 +0200643 (device->physical_device->rad_info.cpdma_prefetch_writes_memory ?
Bas Nieuwenhuizenead54d42019-01-28 00:28:05 +0100644 0 : RADEON_FLAG_READ_ONLY),
645 RADV_BO_PRIORITY_SHADER);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200646 slab->ptr = (char*)device->ws->buffer_map(slab->bo);
647 list_inithead(&slab->shaders);
648
649 mtx_lock(&device->shader_slab_mutex);
650 list_add(&slab->slabs, &device->shader_slabs);
651
652 shader->bo = slab->bo;
653 shader->bo_offset = 0;
654 list_add(&shader->slab_list, &slab->shaders);
655 mtx_unlock(&device->shader_slab_mutex);
656 return slab->ptr;
657}
658
659void
660radv_destroy_shader_slabs(struct radv_device *device)
661{
662 list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
663 device->ws->buffer_destroy(slab->bo);
664 free(slab);
665 }
666 mtx_destroy(&device->shader_slab_mutex);
667}
668
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200669/* For the UMR disassembler. */
670#define DEBUGGER_END_OF_CODE_MARKER 0xbf9f0000 /* invalid instruction */
671#define DEBUGGER_NUM_MARKERS 5
672
673static unsigned
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200674radv_get_shader_binary_size(size_t code_size)
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200675{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200676 return code_size + DEBUGGER_NUM_MARKERS * 4;
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200677}
678
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200679static void radv_postprocess_config(const struct radv_physical_device *pdevice,
680 const struct ac_shader_config *config_in,
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200681 const struct radv_shader_info *info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200682 gl_shader_stage stage,
683 struct ac_shader_config *config_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200684{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200685 bool scratch_enabled = config_in->scratch_bytes_per_wave > 0;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200686 unsigned vgpr_comp_cnt = 0;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200687 unsigned num_input_vgprs = info->num_input_vgprs;
688
689 if (stage == MESA_SHADER_FRAGMENT) {
Timur Kristófa4fd8ba2019-09-25 16:40:07 +0200690 num_input_vgprs = ac_get_fs_input_vgpr_cnt(config_in, NULL, NULL);
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200691 }
692
693 unsigned num_vgprs = MAX2(config_in->num_vgprs, num_input_vgprs);
694 /* +3 for scratch wave offset and VCC */
695 unsigned num_sgprs = MAX2(config_in->num_sgprs, info->num_input_sgprs + 3);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200696 unsigned num_shared_vgprs = config_in->num_shared_vgprs;
697 /* shared VGPRs are introduced in Navi and are allocated in blocks of 8 (RDNA ref 3.6.5) */
698 assert((pdevice->rad_info.chip_class >= GFX10 && num_shared_vgprs % 8 == 0)
699 || (pdevice->rad_info.chip_class < GFX10 && num_shared_vgprs == 0));
700 unsigned num_shared_vgpr_blocks = num_shared_vgprs / 8;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200701
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200702 *config_out = *config_in;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200703 config_out->num_vgprs = num_vgprs;
704 config_out->num_sgprs = num_sgprs;
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200705 config_out->num_shared_vgprs = num_shared_vgprs;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200706
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200707 config_out->rsrc2 = S_00B12C_USER_SGPR(info->num_user_sgprs) |
Samuel Pitoiseta15b3bc2019-09-09 10:23:30 +0200708 S_00B12C_SCRATCH_EN(scratch_enabled);
709
710 if (!pdevice->use_ngg_streamout) {
711 config_out->rsrc2 |= S_00B12C_SO_BASE0_EN(!!info->so.strides[0]) |
712 S_00B12C_SO_BASE1_EN(!!info->so.strides[1]) |
713 S_00B12C_SO_BASE2_EN(!!info->so.strides[2]) |
714 S_00B12C_SO_BASE3_EN(!!info->so.strides[3]) |
715 S_00B12C_SO_EN(!!info->so.num_outputs);
716 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200717
Samuel Pitoisetea385652019-07-30 18:32:42 +0200718 config_out->rsrc1 = S_00B848_VGPRS((num_vgprs - 1) /
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200719 (info->wave_size == 32 ? 8 : 4)) |
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200720 S_00B848_DX10_CLAMP(1) |
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200721 S_00B848_FLOAT_MODE(config_out->float_mode);
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200722
Samuel Pitoiset4c820942019-06-25 13:33:03 +0200723 if (pdevice->rad_info.chip_class >= GFX10) {
724 config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX10(info->num_user_sgprs >> 5);
725 } else {
726 config_out->rsrc1 |= S_00B228_SGPRS((num_sgprs - 1) / 8);
Samuel Pitoiset09abe572019-07-23 14:55:16 +0200727 config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX9(info->num_user_sgprs >> 5);
Samuel Pitoiset4c820942019-06-25 13:33:03 +0200728 }
729
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200730 switch (stage) {
731 case MESA_SHADER_TESS_EVAL:
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200732 if (info->is_ngg) {
733 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
734 config_out->rsrc2 |= S_00B22C_OC_LDS_EN(1);
735 } else if (info->tes.as_es) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200736 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200737 vgpr_comp_cnt = info->uses_prim_id ? 3 : 2;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200738
739 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200740 } else {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200741 bool enable_prim_id = info->tes.export_prim_id || info->uses_prim_id;
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200742 vgpr_comp_cnt = enable_prim_id ? 3 : 2;
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200743
744 config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200745 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200746 }
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200747 config_out->rsrc2 |= S_00B22C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200748 break;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200749 case MESA_SHADER_TESS_CTRL:
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200750 if (pdevice->rad_info.chip_class >= GFX9) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200751 /* We need at least 2 components for LS.
752 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
753 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
754 */
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200755 if (pdevice->rad_info.chip_class >= GFX10) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200756 vgpr_comp_cnt = info->vs.needs_instance_id ? 3 : 1;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200757 } else {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200758 vgpr_comp_cnt = info->vs.needs_instance_id ? 2 : 1;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200759 }
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200760 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200761 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200762 }
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200763 config_out->rsrc1 |= S_00B428_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
764 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200765 config_out->rsrc2 |= S_00B42C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200766 break;
767 case MESA_SHADER_VERTEX:
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200768 if (info->is_ngg) {
769 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
770 } else if (info->vs.as_ls) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200771 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200772 /* We need at least 2 components for LS.
773 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
774 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
775 */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200776 vgpr_comp_cnt = info->vs.needs_instance_id ? 2 : 1;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200777 } else if (info->vs.as_es) {
778 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200779 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200780 vgpr_comp_cnt = info->vs.needs_instance_id ? 1 : 0;
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200781 } else {
782 /* VGPR0-3: (VertexID, InstanceID / StepRate0, PrimID, InstanceID)
783 * If PrimID is disabled. InstanceID / StepRate1 is loaded instead.
784 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
785 */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200786 if (info->vs.needs_instance_id && pdevice->rad_info.chip_class >= GFX10) {
Bas Nieuwenhuizen2e763f72019-08-21 01:50:53 +0200787 vgpr_comp_cnt = 3;
788 } else if (info->vs.export_prim_id) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200789 vgpr_comp_cnt = 2;
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200790 } else if (info->vs.needs_instance_id) {
Bas Nieuwenhuizen2e763f72019-08-21 01:50:53 +0200791 vgpr_comp_cnt = 1;
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200792 } else {
793 vgpr_comp_cnt = 0;
794 }
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200795
796 config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200797 config_out->rsrc2 |= S_00B12C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200798 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200799 break;
800 case MESA_SHADER_FRAGMENT:
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200801 config_out->rsrc1 |= S_00B028_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200802 config_out->rsrc2 |= S_00B02C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200803 break;
Samuel Pitoisetf4d2c472019-06-26 15:11:01 +0200804 case MESA_SHADER_GEOMETRY:
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200805 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
806 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200807 config_out->rsrc2 |= S_00B22C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200808 break;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200809 case MESA_SHADER_COMPUTE:
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200810 config_out->rsrc1 |= S_00B848_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
811 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200812 config_out->rsrc2 |=
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200813 S_00B84C_TGID_X_EN(info->cs.uses_block_id[0]) |
814 S_00B84C_TGID_Y_EN(info->cs.uses_block_id[1]) |
815 S_00B84C_TGID_Z_EN(info->cs.uses_block_id[2]) |
816 S_00B84C_TIDIG_COMP_CNT(info->cs.uses_thread_id[2] ? 2 :
817 info->cs.uses_thread_id[1] ? 1 : 0) |
818 S_00B84C_TG_SIZE_EN(info->cs.uses_local_invocation_idx) |
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200819 S_00B84C_LDS_SIZE(config_in->lds_size);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200820 config_out->rsrc3 |= S_00B8A0_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
821
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200822 break;
823 default:
824 unreachable("unsupported shader type");
825 break;
826 }
827
Samuel Pitoisetedf1af62019-07-16 16:39:16 +0200828 if (pdevice->rad_info.chip_class >= GFX10 && info->is_ngg &&
Samuel Pitoiset3f500072019-07-09 08:44:01 +0200829 (stage == MESA_SHADER_VERTEX || stage == MESA_SHADER_TESS_EVAL || stage == MESA_SHADER_GEOMETRY)) {
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200830 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200831 gl_shader_stage es_stage = stage;
832 if (stage == MESA_SHADER_GEOMETRY)
833 es_stage = info->gs.es_type;
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200834
835 /* VGPR5-8: (VertexID, UserVGPR0, UserVGPR1, UserVGPR2 / InstanceID) */
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200836 if (es_stage == MESA_SHADER_VERTEX) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200837 es_vgpr_comp_cnt = info->vs.needs_instance_id ? 3 : 0;
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200838 } else if (es_stage == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200839 bool enable_prim_id = info->tes.export_prim_id || info->uses_prim_id;
Samuel Pitoisetd2a8b632019-07-09 08:27:30 +0200840 es_vgpr_comp_cnt = enable_prim_id ? 3 : 2;
Bas Nieuwenhuizen451f0302019-07-19 00:00:03 +0200841 } else
842 unreachable("Unexpected ES shader stage");
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200843
844 bool tes_triangles = stage == MESA_SHADER_TESS_EVAL &&
845 info->tes.primitive_mode >= 4; /* GL_TRIANGLES */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200846 if (info->uses_invocation_id || stage == MESA_SHADER_VERTEX) {
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200847 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200848 } else if (info->uses_prim_id) {
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200849 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
850 } else if (info->gs.vertices_in >= 3 || tes_triangles) {
851 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
852 } else {
853 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
854 }
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200855
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200856 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt) |
857 S_00B228_WGP_MODE(1);
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200858 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Samuel Pitoiseted12be12019-07-15 18:46:48 +0200859 S_00B22C_LDS_SIZE(config_in->lds_size) |
860 S_00B22C_OC_LDS_EN(es_stage == MESA_SHADER_TESS_EVAL);
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200861 } else if (pdevice->rad_info.chip_class >= GFX9 &&
862 stage == MESA_SHADER_GEOMETRY) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200863 unsigned es_type = info->gs.es_type;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100864 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
865
866 if (es_type == MESA_SHADER_VERTEX) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200867 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200868 if (info->vs.needs_instance_id) {
Samuel Pitoisetea337c82019-07-23 11:52:36 +0200869 es_vgpr_comp_cnt = pdevice->rad_info.chip_class >= GFX10 ? 3 : 1;
870 } else {
871 es_vgpr_comp_cnt = 0;
872 }
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100873 } else if (es_type == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200874 es_vgpr_comp_cnt = info->uses_prim_id ? 3 : 2;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100875 } else {
Bas Nieuwenhuizen0f89f9b2018-01-17 23:23:02 +0100876 unreachable("invalid shader ES type");
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100877 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100878
879 /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and
880 * VGPR[0:4] are always loaded.
881 */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200882 if (info->uses_invocation_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100883 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200884 } else if (info->uses_prim_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100885 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200886 } else if (info->gs.vertices_in >= 3) {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100887 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200888 } else {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100889 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200890 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100891
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200892 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt);
893 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Bas Nieuwenhuizen74695162019-06-30 01:47:30 +0200894 S_00B22C_OC_LDS_EN(es_type == MESA_SHADER_TESS_EVAL);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200895 } else if (pdevice->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200896 stage == MESA_SHADER_TESS_CTRL) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200897 config_out->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200898 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200899 config_out->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200900 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200901}
902
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200903struct radv_shader_variant *
904radv_shader_variant_create(struct radv_device *device,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +0200905 const struct radv_shader_binary *binary,
906 bool keep_shader_info)
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200907{
908 struct ac_shader_config config = {0};
909 struct ac_rtld_binary rtld_binary = {0};
910 struct radv_shader_variant *variant = calloc(1, sizeof(struct radv_shader_variant));
911 if (!variant)
912 return NULL;
913
914 variant->ref_count = 1;
915
916 if (binary->type == RADV_BINARY_TYPE_RTLD) {
Samuel Pitoiset53876672019-09-03 13:01:54 +0200917 struct ac_rtld_symbol lds_symbols[2];
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200918 unsigned num_lds_symbols = 0;
919 const char *elf_data = (const char *)((struct radv_shader_binary_rtld *)binary)->data;
920 size_t elf_size = ((struct radv_shader_binary_rtld *)binary)->elf_size;
921
922 if (device->physical_device->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset53876672019-09-03 13:01:54 +0200923 (binary->stage == MESA_SHADER_GEOMETRY || binary->info.is_ngg) &&
924 !binary->is_gs_copy_shader) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200925 /* We add this symbol even on LLVM <= 8 to ensure that
926 * shader->config.lds_size is set correctly below.
927 */
928 struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++];
929 sym->name = "esgs_ring";
Samuel Pitoiseta2a68d52019-09-18 09:58:54 +0200930 sym->size = binary->info.ngg_info.esgs_ring_size;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200931 sym->align = 64 * 1024;
Samuel Pitoiset53876672019-09-03 13:01:54 +0200932 }
Samuel Pitoiset5bbcb3f2019-07-11 08:44:16 +0200933
Samuel Pitoiset53876672019-09-03 13:01:54 +0200934 if (binary->info.is_ngg &&
935 binary->stage == MESA_SHADER_GEOMETRY) {
936 struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++];
937 sym->name = "ngg_emit";
938 sym->size = binary->info.ngg_info.ngg_emit_size * 4;
939 sym->align = 4;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200940 }
Samuel Pitoisetea385652019-07-30 18:32:42 +0200941
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200942 struct ac_rtld_open_info open_info = {
943 .info = &device->physical_device->rad_info,
944 .shader_type = binary->stage,
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200945 .wave_size = binary->info.wave_size,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200946 .num_parts = 1,
947 .elf_ptrs = &elf_data,
948 .elf_sizes = &elf_size,
949 .num_shared_lds_symbols = num_lds_symbols,
950 .shared_lds_symbols = lds_symbols,
951 };
952
953 if (!ac_rtld_open(&rtld_binary, open_info)) {
954 free(variant);
955 return NULL;
956 }
957
958 if (!ac_rtld_read_config(&rtld_binary, &config)) {
959 ac_rtld_close(&rtld_binary);
960 free(variant);
961 return NULL;
962 }
963
Rhys Perryd7b0d9a2019-11-11 13:41:32 +0000964 /* Enable 64-bit and 16-bit denormals, because there is no performance
965 * cost.
966 *
967 * If denormals are enabled, all floating-point output modifiers are
968 * ignored.
969 *
970 * Don't enable denormals for 32-bit floats, because:
971 * - Floating-point output modifiers would be ignored by the hw.
972 * - Some opcodes don't support denormals, such as v_mad_f32. We would
973 * have to stop using those.
974 * - GFX6 & GFX7 would be very slow.
975 */
976 config.float_mode |= V_00B028_FP_64_DENORMS;
977
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200978 if (rtld_binary.lds_size > 0) {
979 unsigned alloc_granularity = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
980 config.lds_size = align(rtld_binary.lds_size, alloc_granularity) / alloc_granularity;
981 }
982
983 variant->code_size = rtld_binary.rx_size;
Connor Abbott5dadbab2019-08-29 17:15:46 +0200984 variant->exec_size = rtld_binary.exec_size;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200985 } else {
986 assert(binary->type == RADV_BINARY_TYPE_LEGACY);
987 config = ((struct radv_shader_binary_legacy *)binary)->config;
Connor Abbott5dadbab2019-08-29 17:15:46 +0200988 variant->code_size = radv_get_shader_binary_size(((struct radv_shader_binary_legacy *)binary)->code_size);
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200989 variant->exec_size = ((struct radv_shader_binary_legacy *)binary)->exec_size;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200990 }
991
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200992 variant->info = binary->info;
993 radv_postprocess_config(device->physical_device, &config, &binary->info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200994 binary->stage, &variant->config);
Timothy Arceri07692f72019-07-31 13:57:16 +1000995
996 if (radv_device_use_secure_compile(device->instance)) {
997 if (binary->type == RADV_BINARY_TYPE_RTLD)
998 ac_rtld_close(&rtld_binary);
999
1000 return variant;
1001 }
1002
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001003 void *dest_ptr = radv_alloc_shader_memory(device, variant);
1004
1005 if (binary->type == RADV_BINARY_TYPE_RTLD) {
1006 struct radv_shader_binary_rtld* bin = (struct radv_shader_binary_rtld *)binary;
1007 struct ac_rtld_upload_info info = {
1008 .binary = &rtld_binary,
1009 .rx_va = radv_buffer_get_va(variant->bo) + variant->bo_offset,
1010 .rx_ptr = dest_ptr,
1011 };
1012
1013 if (!ac_rtld_upload(&info)) {
1014 radv_shader_variant_destroy(device, variant);
1015 ac_rtld_close(&rtld_binary);
1016 return NULL;
1017 }
1018
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001019 if (keep_shader_info ||
Samuel Pitoiset9343c932019-07-23 09:55:24 +02001020 (device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS)) {
Timothy Arceria20a9d02019-07-17 14:20:55 +10001021 const char *disasm_data;
1022 size_t disasm_size;
1023 if (!ac_rtld_get_section_by_name(&rtld_binary, ".AMDGPU.disasm", &disasm_data, &disasm_size)) {
1024 radv_shader_variant_destroy(device, variant);
1025 ac_rtld_close(&rtld_binary);
1026 return NULL;
1027 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001028
Rhys Perry3c966fd2019-09-25 11:48:04 +01001029 variant->ir_string = bin->llvm_ir_size ? strdup((const char*)(bin->data + bin->elf_size)) : NULL;
Timothy Arceria20a9d02019-07-17 14:20:55 +10001030 variant->disasm_string = malloc(disasm_size + 1);
1031 memcpy(variant->disasm_string, disasm_data, disasm_size);
1032 variant->disasm_string[disasm_size] = 0;
1033 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001034
1035 ac_rtld_close(&rtld_binary);
1036 } else {
1037 struct radv_shader_binary_legacy* bin = (struct radv_shader_binary_legacy *)binary;
1038 memcpy(dest_ptr, bin->data, bin->code_size);
1039
1040 /* Add end-of-code markers for the UMR disassembler. */
1041 uint32_t *ptr32 = (uint32_t *)dest_ptr + bin->code_size / 4;
1042 for (unsigned i = 0; i < DEBUGGER_NUM_MARKERS; i++)
1043 ptr32[i] = DEBUGGER_END_OF_CODE_MARKER;
1044
Rhys Perry3c966fd2019-09-25 11:48:04 +01001045 variant->ir_string = bin->ir_size ? strdup((const char*)(bin->data + bin->code_size)) : NULL;
1046 variant->disasm_string = bin->disasm_size ? strdup((const char*)(bin->data + bin->code_size + bin->ir_size)) : NULL;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001047 }
1048 return variant;
1049}
1050
Bas Nieuwenhuizen5444d3e2019-06-01 20:54:35 +02001051static char *
1052radv_dump_nir_shaders(struct nir_shader * const *shaders,
1053 int shader_count)
1054{
1055 char *data = NULL;
1056 char *ret = NULL;
1057 size_t size = 0;
1058 FILE *f = open_memstream(&data, &size);
1059 if (f) {
1060 for (int i = 0; i < shader_count; ++i)
1061 nir_print_shader(shaders[i], f);
1062 fclose(f);
1063 }
1064
1065 ret = malloc(size + 1);
1066 if (ret) {
1067 memcpy(ret, data, size);
1068 ret[size] = 0;
1069 }
1070 free(data);
1071 return ret;
1072}
1073
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001074static struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001075shader_variant_compile(struct radv_device *device,
1076 struct radv_shader_module *module,
1077 struct nir_shader * const *shaders,
1078 int shader_count,
1079 gl_shader_stage stage,
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001080 struct radv_shader_info *info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001081 struct radv_nir_compiler_options *options,
1082 bool gs_copy_shader,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001083 bool keep_shader_info,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001084 bool use_aco,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001085 struct radv_shader_binary **binary_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001086{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001087 enum radeon_family chip_family = device->physical_device->rad_info.family;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001088 struct radv_shader_binary *binary = NULL;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001089
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001090 options->family = chip_family;
1091 options->chip_class = device->physical_device->rad_info.chip_class;
Samuel Pitoiset8ade3e42018-05-11 16:36:02 +02001092 options->dump_shader = radv_can_dump_shader(device, module, gs_copy_shader);
Samuel Pitoisetd07edf52018-03-14 10:28:49 +01001093 options->dump_preoptir = options->dump_shader &&
Samuel Pitoiset33e6e5e2018-01-19 12:12:02 +01001094 device->instance->debug_flags & RADV_DEBUG_PREOPTIR;
Rhys Perry3c966fd2019-09-25 11:48:04 +01001095 options->record_ir = keep_shader_info;
Samuel Pitoisetbfca15e2018-06-14 14:28:58 +02001096 options->check_ir = device->instance->debug_flags & RADV_DEBUG_CHECKIR;
Dave Airlie010d0552018-02-19 07:14:04 +00001097 options->tess_offchip_block_dw_size = device->tess_offchip_block_dw_size;
Samuel Pitoisetd8a61d32018-05-16 16:02:04 +02001098 options->address32_hi = device->physical_device->rad_info.address32_hi;
Samuel Pitoiset49f5ddd2019-08-23 08:55:53 +02001099 options->has_ls_vgpr_init_bug = device->physical_device->rad_info.has_ls_vgpr_init_bug;
Samuel Pitoiseta15b3bc2019-09-09 10:23:30 +02001100 options->use_ngg_streamout = device->physical_device->use_ngg_streamout;
Bas Nieuwenhuizen035406e2019-08-04 00:48:05 +02001101
Connor Abbott66c703b2019-11-11 18:05:03 +01001102 struct radv_shader_args args = {};
1103 args.options = options;
1104 args.shader_info = info;
1105 args.is_gs_copy_shader = gs_copy_shader;
1106 radv_declare_shader_args(&args,
1107 gs_copy_shader ? MESA_SHADER_VERTEX
1108 : shaders[shader_count - 1]->info.stage,
1109 shader_count >= 2,
1110 shader_count >= 2 ? shaders[shader_count - 2]->info.stage
1111 : MESA_SHADER_VERTEX);
1112
Rhys Perry3c966fd2019-09-25 11:48:04 +01001113 if (!use_aco || options->dump_shader || options->record_ir)
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001114 ac_init_llvm_once();
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001115
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001116 if (use_aco) {
Connor Abbottb45c54f2019-11-11 18:27:25 +01001117 aco_compile_shader(shader_count, shaders, &binary, &args);
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001118 binary->info = *info;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001119 } else {
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001120 enum ac_target_machine_options tm_options = 0;
1121 struct ac_llvm_compiler ac_llvm;
1122 bool thread_compiler;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001123
Connor Abbotte7f4cad2019-11-12 15:38:46 +01001124 tm_options |= AC_TM_SUPPORTS_SPILL;
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001125 if (options->check_ir)
1126 tm_options |= AC_TM_CHECK_IR;
1127 if (device->instance->debug_flags & RADV_DEBUG_NO_LOAD_STORE_OPT)
1128 tm_options |= AC_TM_NO_LOAD_STORE_OPT;
1129
1130 thread_compiler = !(device->instance->debug_flags & RADV_DEBUG_NOTHREADLLVM);
1131 radv_init_llvm_compiler(&ac_llvm,
1132 thread_compiler,
1133 chip_family, tm_options,
Samuel Pitoisetd3f99572019-10-31 10:06:43 +01001134 info->wave_size);
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001135
1136 if (gs_copy_shader) {
1137 assert(shader_count == 1);
1138 radv_compile_gs_copy_shader(&ac_llvm, *shaders, &binary,
Connor Abbott66c703b2019-11-11 18:05:03 +01001139 &args);
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001140 } else {
Connor Abbott66c703b2019-11-11 18:05:03 +01001141 radv_compile_nir_shader(&ac_llvm, &binary, &args,
1142 shaders, shader_count);
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001143 }
1144
1145 binary->info = *info;
1146 radv_destroy_llvm_compiler(&ac_llvm, thread_compiler);
1147 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001148
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001149 struct radv_shader_variant *variant = radv_shader_variant_create(device, binary,
1150 keep_shader_info);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001151 if (!variant) {
1152 free(binary);
1153 return NULL;
1154 }
Rhys Perryec8ced92019-09-24 15:25:07 +01001155 variant->aco_used = use_aco;
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001156
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +02001157 if (options->dump_shader) {
1158 fprintf(stderr, "disasm:\n%s\n", variant->disasm_string);
1159 }
1160
1161
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001162 if (keep_shader_info) {
Bas Nieuwenhuizen5444d3e2019-06-01 20:54:35 +02001163 variant->nir_string = radv_dump_nir_shaders(shaders, shader_count);
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001164 if (!gs_copy_shader && !module->nir) {
Samuel Pitoisetd4e0bef2019-10-28 16:56:15 +01001165 variant->spirv = malloc(module->size);
1166 if (!variant->spirv) {
1167 free(variant);
1168 free(binary);
1169 return NULL;
1170 }
1171
1172 memcpy(variant->spirv, module->data, module->size);
Samuel Pitoiset844ae722017-09-22 16:56:40 +02001173 variant->spirv_size = module->size;
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001174 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001175 }
1176
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001177 if (binary_out)
1178 *binary_out = binary;
1179 else
1180 free(binary);
1181
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001182 return variant;
1183}
1184
1185struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001186radv_shader_variant_compile(struct radv_device *device,
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001187 struct radv_shader_module *module,
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +02001188 struct nir_shader *const *shaders,
1189 int shader_count,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001190 struct radv_pipeline_layout *layout,
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001191 const struct radv_shader_variant_key *key,
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001192 struct radv_shader_info *info,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001193 bool keep_shader_info,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001194 bool use_aco,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001195 struct radv_shader_binary **binary_out)
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001196{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001197 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001198
1199 options.layout = layout;
1200 if (key)
1201 options.key = *key;
1202
Connor Abbotte7f4cad2019-11-12 15:38:46 +01001203 options.explicit_scratch_args = use_aco;
Bas Nieuwenhuizen72e7b7a2019-08-02 12:40:17 +02001204 options.robust_buffer_access = device->robust_buffer_access;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001205
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001206 return shader_variant_compile(device, module, shaders, shader_count, shaders[shader_count - 1]->info.stage, info,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001207 &options, false, keep_shader_info, use_aco, binary_out);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001208}
1209
1210struct radv_shader_variant *
1211radv_create_gs_copy_shader(struct radv_device *device,
1212 struct nir_shader *shader,
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001213 struct radv_shader_info *info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001214 struct radv_shader_binary **binary_out,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001215 bool keep_shader_info,
Rhys Perry72e9a232019-11-15 12:42:46 +00001216 bool multiview, bool use_aco)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001217{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001218 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001219
Rhys Perry72e9a232019-11-15 12:42:46 +00001220 options.explicit_scratch_args = use_aco;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001221 options.key.has_multiview_view_index = multiview;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001222
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001223 return shader_variant_compile(device, NULL, &shader, 1, MESA_SHADER_VERTEX,
Rhys Perry72e9a232019-11-15 12:42:46 +00001224 info, &options, true, keep_shader_info, use_aco, binary_out);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001225}
1226
1227void
1228radv_shader_variant_destroy(struct radv_device *device,
1229 struct radv_shader_variant *variant)
1230{
1231 if (!p_atomic_dec_zero(&variant->ref_count))
1232 return;
1233
1234 mtx_lock(&device->shader_slab_mutex);
1235 list_del(&variant->slab_list);
1236 mtx_unlock(&device->shader_slab_mutex);
1237
Samuel Pitoisetd4e0bef2019-10-28 16:56:15 +01001238 free(variant->spirv);
Bas Nieuwenhuizen5444d3e2019-06-01 20:54:35 +02001239 free(variant->nir_string);
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001240 free(variant->disasm_string);
Rhys Perry3c966fd2019-09-25 11:48:04 +01001241 free(variant->ir_string);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001242 free(variant);
1243}
1244
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001245const char *
Samuel Pitoiset83499ac2019-09-03 17:39:23 +02001246radv_get_shader_name(struct radv_shader_info *info,
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001247 gl_shader_stage stage)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001248{
1249 switch (stage) {
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001250 case MESA_SHADER_VERTEX:
1251 if (info->vs.as_ls)
1252 return "Vertex Shader as LS";
1253 else if (info->vs.as_es)
1254 return "Vertex Shader as ES";
1255 else if (info->is_ngg)
1256 return "Vertex Shader as ESGS";
1257 else
1258 return "Vertex Shader as VS";
1259 case MESA_SHADER_TESS_CTRL:
1260 return "Tessellation Control Shader";
1261 case MESA_SHADER_TESS_EVAL:
1262 if (info->tes.as_es)
1263 return "Tessellation Evaluation Shader as ES";
1264 else if (info->is_ngg)
1265 return "Tessellation Evaluation Shader as ESGS";
1266 else
1267 return "Tessellation Evaluation Shader as VS";
1268 case MESA_SHADER_GEOMETRY:
1269 return "Geometry Shader";
1270 case MESA_SHADER_FRAGMENT:
1271 return "Pixel Shader";
1272 case MESA_SHADER_COMPUTE:
1273 return "Compute Shader";
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001274 default:
1275 return "Unknown shader";
1276 };
1277}
1278
Bas Nieuwenhuizen739a2882019-06-01 20:25:47 +02001279unsigned
1280radv_get_max_workgroup_size(enum chip_class chip_class,
1281 gl_shader_stage stage,
1282 const unsigned *sizes)
1283{
1284 switch (stage) {
1285 case MESA_SHADER_TESS_CTRL:
1286 return chip_class >= GFX7 ? 128 : 64;
1287 case MESA_SHADER_GEOMETRY:
1288 return chip_class >= GFX9 ? 128 : 64;
1289 case MESA_SHADER_COMPUTE:
1290 break;
1291 default:
1292 return 0;
1293 }
1294
1295 unsigned max_workgroup_size = sizes[0] * sizes[1] * sizes[2];
1296 return max_workgroup_size;
1297}
Bas Nieuwenhuizen290ca0c2019-06-01 18:46:21 +02001298
1299unsigned
1300radv_get_max_waves(struct radv_device *device,
1301 struct radv_shader_variant *variant,
1302 gl_shader_stage stage)
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001303{
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001304 enum chip_class chip_class = device->physical_device->rad_info.chip_class;
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001305 unsigned lds_increment = chip_class >= GFX7 ? 512 : 256;
Samuel Pitoiset83499ac2019-09-03 17:39:23 +02001306 uint8_t wave_size = variant->info.wave_size;
Bas Nieuwenhuizen290ca0c2019-06-01 18:46:21 +02001307 struct ac_shader_config *conf = &variant->config;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001308 unsigned max_simd_waves;
1309 unsigned lds_per_wave = 0;
1310
Marek Olšákca430062019-09-12 19:39:02 -04001311 max_simd_waves = device->physical_device->rad_info.max_wave64_per_simd;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001312
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001313 if (stage == MESA_SHADER_FRAGMENT) {
1314 lds_per_wave = conf->lds_size * lds_increment +
Samuel Pitoiset83499ac2019-09-03 17:39:23 +02001315 align(variant->info.ps.num_interp * 48,
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001316 lds_increment);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001317 } else if (stage == MESA_SHADER_COMPUTE) {
1318 unsigned max_workgroup_size =
Bas Nieuwenhuizen739a2882019-06-01 20:25:47 +02001319 radv_get_max_workgroup_size(chip_class, stage, variant->info.cs.block_size);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001320 lds_per_wave = (conf->lds_size * lds_increment) /
Samuel Pitoisetea385652019-07-30 18:32:42 +02001321 DIV_ROUND_UP(max_workgroup_size, wave_size);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001322 }
1323
Rhys Perry7453c1a2019-10-18 21:13:44 +01001324 if (conf->num_sgprs) {
1325 unsigned sgprs = align(conf->num_sgprs, chip_class >= GFX8 ? 16 : 8);
Samuel Pitoiset2f7bb932018-04-06 14:06:24 +02001326 max_simd_waves =
1327 MIN2(max_simd_waves,
Marek Olšák0692ae32019-09-12 19:46:02 -04001328 device->physical_device->rad_info.num_physical_sgprs_per_simd /
Rhys Perry7453c1a2019-10-18 21:13:44 +01001329 sgprs);
1330 }
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001331
Rhys Perry7453c1a2019-10-18 21:13:44 +01001332 if (conf->num_vgprs) {
1333 unsigned vgprs = align(conf->num_vgprs, wave_size == 32 ? 8 : 4);
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001334 max_simd_waves =
1335 MIN2(max_simd_waves,
Rhys Perry7453c1a2019-10-18 21:13:44 +01001336 RADV_NUM_PHYSICAL_VGPRS / vgprs);
1337 }
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001338
1339 /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD
1340 * that PS can use.
1341 */
1342 if (lds_per_wave)
1343 max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave);
1344
Bas Nieuwenhuizen290ca0c2019-06-01 18:46:21 +02001345 return max_simd_waves;
1346}
1347
1348static void
1349generate_shader_stats(struct radv_device *device,
1350 struct radv_shader_variant *variant,
1351 gl_shader_stage stage,
1352 struct _mesa_string_buffer *buf)
1353{
1354 struct ac_shader_config *conf = &variant->config;
1355 unsigned max_simd_waves = radv_get_max_waves(device, variant, stage);
1356
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001357 if (stage == MESA_SHADER_FRAGMENT) {
Alex Smithde889792017-10-27 14:25:05 +01001358 _mesa_string_buffer_printf(buf, "*** SHADER CONFIG ***\n"
1359 "SPI_PS_INPUT_ADDR = 0x%04x\n"
1360 "SPI_PS_INPUT_ENA = 0x%04x\n",
1361 conf->spi_ps_input_addr, conf->spi_ps_input_ena);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001362 }
1363
Alex Smithde889792017-10-27 14:25:05 +01001364 _mesa_string_buffer_printf(buf, "*** SHADER STATS ***\n"
1365 "SGPRS: %d\n"
1366 "VGPRS: %d\n"
1367 "Spilled SGPRs: %d\n"
1368 "Spilled VGPRs: %d\n"
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001369 "PrivMem VGPRS: %d\n"
Alex Smithde889792017-10-27 14:25:05 +01001370 "Code Size: %d bytes\n"
1371 "LDS: %d blocks\n"
1372 "Scratch: %d bytes per wave\n"
1373 "Max Waves: %d\n"
1374 "********************\n\n\n",
1375 conf->num_sgprs, conf->num_vgprs,
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001376 conf->spilled_sgprs, conf->spilled_vgprs,
Connor Abbott5dadbab2019-08-29 17:15:46 +02001377 variant->info.private_mem_vgprs, variant->exec_size,
Alex Smithde889792017-10-27 14:25:05 +01001378 conf->lds_size, conf->scratch_bytes_per_wave,
1379 max_simd_waves);
1380}
1381
1382void
1383radv_shader_dump_stats(struct radv_device *device,
1384 struct radv_shader_variant *variant,
1385 gl_shader_stage stage,
1386 FILE *file)
1387{
1388 struct _mesa_string_buffer *buf = _mesa_string_buffer_create(NULL, 256);
1389
1390 generate_shader_stats(device, variant, stage, buf);
1391
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001392 fprintf(file, "\n%s:\n", radv_get_shader_name(&variant->info, stage));
Alex Smith134a40d2017-10-30 08:38:14 +00001393 fprintf(file, "%s", buf->buf);
Alex Smithde889792017-10-27 14:25:05 +01001394
1395 _mesa_string_buffer_destroy(buf);
1396}
1397
1398VkResult
1399radv_GetShaderInfoAMD(VkDevice _device,
1400 VkPipeline _pipeline,
1401 VkShaderStageFlagBits shaderStage,
1402 VkShaderInfoTypeAMD infoType,
1403 size_t* pInfoSize,
1404 void* pInfo)
1405{
1406 RADV_FROM_HANDLE(radv_device, device, _device);
1407 RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline);
1408 gl_shader_stage stage = vk_to_mesa_shader_stage(shaderStage);
1409 struct radv_shader_variant *variant = pipeline->shaders[stage];
1410 struct _mesa_string_buffer *buf;
1411 VkResult result = VK_SUCCESS;
1412
1413 /* Spec doesn't indicate what to do if the stage is invalid, so just
1414 * return no info for this. */
1415 if (!variant)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +02001416 return vk_error(device->instance, VK_ERROR_FEATURE_NOT_PRESENT);
Alex Smithde889792017-10-27 14:25:05 +01001417
1418 switch (infoType) {
1419 case VK_SHADER_INFO_TYPE_STATISTICS_AMD:
1420 if (!pInfo) {
1421 *pInfoSize = sizeof(VkShaderStatisticsInfoAMD);
1422 } else {
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001423 unsigned lds_multiplier = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
Alex Smithde889792017-10-27 14:25:05 +01001424 struct ac_shader_config *conf = &variant->config;
1425
1426 VkShaderStatisticsInfoAMD statistics = {};
1427 statistics.shaderStageMask = shaderStage;
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001428 statistics.numPhysicalVgprs = RADV_NUM_PHYSICAL_VGPRS;
Marek Olšák0692ae32019-09-12 19:46:02 -04001429 statistics.numPhysicalSgprs = device->physical_device->rad_info.num_physical_sgprs_per_simd;
Alex Smithde889792017-10-27 14:25:05 +01001430 statistics.numAvailableSgprs = statistics.numPhysicalSgprs;
1431
1432 if (stage == MESA_SHADER_COMPUTE) {
Bas Nieuwenhuizen739a2882019-06-01 20:25:47 +02001433 unsigned *local_size = variant->info.cs.block_size;
Alex Smithde889792017-10-27 14:25:05 +01001434 unsigned workgroup_size = local_size[0] * local_size[1] * local_size[2];
1435
1436 statistics.numAvailableVgprs = statistics.numPhysicalVgprs /
Eric Engestromd85fef12018-06-15 17:49:08 +01001437 ceil((double)workgroup_size / statistics.numPhysicalVgprs);
Alex Smithde889792017-10-27 14:25:05 +01001438
1439 statistics.computeWorkGroupSize[0] = local_size[0];
1440 statistics.computeWorkGroupSize[1] = local_size[1];
1441 statistics.computeWorkGroupSize[2] = local_size[2];
1442 } else {
1443 statistics.numAvailableVgprs = statistics.numPhysicalVgprs;
1444 }
1445
1446 statistics.resourceUsage.numUsedVgprs = conf->num_vgprs;
1447 statistics.resourceUsage.numUsedSgprs = conf->num_sgprs;
1448 statistics.resourceUsage.ldsSizePerLocalWorkGroup = 32768;
1449 statistics.resourceUsage.ldsUsageSizeInBytes = conf->lds_size * lds_multiplier;
1450 statistics.resourceUsage.scratchMemUsageInBytes = conf->scratch_bytes_per_wave;
1451
1452 size_t size = *pInfoSize;
1453 *pInfoSize = sizeof(statistics);
1454
1455 memcpy(pInfo, &statistics, MIN2(size, *pInfoSize));
1456
1457 if (size < *pInfoSize)
1458 result = VK_INCOMPLETE;
1459 }
1460
1461 break;
1462 case VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD:
1463 buf = _mesa_string_buffer_create(NULL, 1024);
1464
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001465 _mesa_string_buffer_printf(buf, "%s:\n", radv_get_shader_name(&variant->info, stage));
Rhys Perry3c966fd2019-09-25 11:48:04 +01001466 _mesa_string_buffer_printf(buf, "%s\n\n", variant->ir_string);
Alex Smithde889792017-10-27 14:25:05 +01001467 _mesa_string_buffer_printf(buf, "%s\n\n", variant->disasm_string);
1468 generate_shader_stats(device, variant, stage, buf);
1469
1470 /* Need to include the null terminator. */
1471 size_t length = buf->length + 1;
1472
1473 if (!pInfo) {
1474 *pInfoSize = length;
1475 } else {
1476 size_t size = *pInfoSize;
1477 *pInfoSize = length;
1478
1479 memcpy(pInfo, buf->buf, MIN2(size, length));
1480
1481 if (size < length)
1482 result = VK_INCOMPLETE;
1483 }
1484
1485 _mesa_string_buffer_destroy(buf);
1486 break;
1487 default:
1488 /* VK_SHADER_INFO_TYPE_BINARY_AMD unimplemented for now. */
1489 result = VK_ERROR_FEATURE_NOT_PRESENT;
1490 break;
1491 }
1492
1493 return result;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001494}