blob: ad022b24ffe0e296db98195c23a236df8c3d8687 [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"
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020034#include "nir/nir.h"
35#include "nir/nir_builder.h"
36#include "spirv/nir_spirv.h"
37
38#include <llvm-c/Core.h>
39#include <llvm-c/TargetMachine.h>
Samuel Pitoiset135e4d42018-06-08 11:38:01 +020040#include <llvm-c/Support.h>
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020041
42#include "sid.h"
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020043#include "ac_binary.h"
44#include "ac_llvm_util.h"
45#include "ac_nir_to_llvm.h"
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +020046#include "ac_rtld.h"
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020047#include "vk_format.h"
48#include "util/debug.h"
49#include "ac_exp_param.h"
50
Daniel Schürmanna70a9982019-09-17 14:35:22 +020051#include "aco_interface.h"
52
Alex Smithde889792017-10-27 14:25:05 +010053#include "util/string_buffer.h"
54
Daniel Schürmanna70a9982019-09-17 14:35:22 +020055static const struct nir_shader_compiler_options nir_options_llvm = {
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020056 .vertex_id_zero_based = true,
57 .lower_scmp = true,
Rhys Perry0af95f02018-12-06 14:01:15 +000058 .lower_flrp16 = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020059 .lower_flrp32 = true,
Timothy Arcerif0d74ec2018-01-12 11:12:09 +110060 .lower_flrp64 = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +010061 .lower_device_index_to_zero = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020062 .lower_fsat = true,
63 .lower_fdiv = true,
Samuel Pitoiset5ebe1a12019-10-03 16:20:40 +020064 .lower_fmod = true,
Daniel Schürmann48a75e72019-01-25 16:08:38 +010065 .lower_bitfield_insert_to_bitfield_select = true,
Daniel Schürmann0daeb1d2019-01-25 16:24:55 +010066 .lower_bitfield_extract = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020067 .lower_sub = true,
68 .lower_pack_snorm_2x16 = true,
69 .lower_pack_snorm_4x8 = true,
70 .lower_pack_unorm_2x16 = true,
71 .lower_pack_unorm_4x8 = true,
72 .lower_unpack_snorm_2x16 = true,
73 .lower_unpack_snorm_4x8 = true,
74 .lower_unpack_unorm_2x16 = true,
75 .lower_unpack_unorm_4x8 = true,
76 .lower_extract_byte = true,
77 .lower_extract_word = true,
Dave Airlie2c615942017-10-04 06:33:02 +100078 .lower_ffma = true,
Samuel Pitoiset7aa008d2018-02-02 19:04:57 +010079 .lower_fpow = true,
Samuel Pitoiset71ffa002019-03-06 22:35:31 +010080 .lower_mul_2x32_64 = true,
Sagar Ghuge456557a2019-06-03 17:11:57 -070081 .lower_rotate = true,
Connor Abbott118a66d2019-05-10 10:44:20 +020082 .max_unroll_iterations = 32,
83 .use_interpolated_input_intrinsics = true,
Rhys Perry76544f62019-10-15 20:43:39 +010084 /* nir_lower_int64() isn't actually called for the LLVM backend, but
85 * this helps the loop unrolling heuristics. */
86 .lower_int64_options = nir_lower_imul64 |
87 nir_lower_imul_high64 |
88 nir_lower_imul_2x32_64 |
89 nir_lower_divmod64 |
90 nir_lower_minmax64 |
91 nir_lower_iabs64,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020092};
93
Daniel Schürmanna70a9982019-09-17 14:35:22 +020094static const struct nir_shader_compiler_options nir_options_aco = {
95 .vertex_id_zero_based = true,
96 .lower_scmp = true,
97 .lower_flrp16 = true,
98 .lower_flrp32 = true,
99 .lower_flrp64 = true,
100 .lower_device_index_to_zero = true,
101 .lower_fdiv = true,
Rhys Perrya87b0f52019-10-03 15:32:19 +0100102 .lower_fmod = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200103 .lower_bitfield_insert_to_bitfield_select = true,
104 .lower_bitfield_extract = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200105 .lower_pack_snorm_2x16 = true,
106 .lower_pack_snorm_4x8 = true,
107 .lower_pack_unorm_2x16 = true,
108 .lower_pack_unorm_4x8 = true,
109 .lower_unpack_snorm_2x16 = true,
110 .lower_unpack_snorm_4x8 = true,
111 .lower_unpack_unorm_2x16 = true,
112 .lower_unpack_unorm_4x8 = true,
113 .lower_unpack_half_2x16 = true,
114 .lower_extract_byte = true,
115 .lower_extract_word = true,
116 .lower_ffma = true,
117 .lower_fpow = true,
118 .lower_mul_2x32_64 = true,
119 .lower_rotate = true,
120 .max_unroll_iterations = 32,
121 .use_interpolated_input_intrinsics = true,
Rhys Perry76544f62019-10-15 20:43:39 +0100122 .lower_int64_options = nir_lower_imul64 |
123 nir_lower_imul_high64 |
124 nir_lower_imul_2x32_64 |
125 nir_lower_divmod64 |
126 nir_lower_logic64 |
127 nir_lower_minmax64 |
128 nir_lower_iabs64,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200129};
130
Daniel Schürmann45638e12019-07-29 17:51:01 +0200131bool
132radv_can_dump_shader(struct radv_device *device,
133 struct radv_shader_module *module,
134 bool is_gs_copy_shader)
135{
136 if (!(device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS))
137 return false;
Timur Kristóf30f0c0e2019-09-18 14:39:10 +0200138 if (module)
139 return !module->nir ||
140 (device->instance->debug_flags & RADV_DEBUG_DUMP_META_SHADERS);
Daniel Schürmann45638e12019-07-29 17:51:01 +0200141
Timur Kristóf30f0c0e2019-09-18 14:39:10 +0200142 return is_gs_copy_shader;
Daniel Schürmann45638e12019-07-29 17:51:01 +0200143}
144
145bool
146radv_can_dump_shader_stats(struct radv_device *device,
147 struct radv_shader_module *module)
148{
149 /* Only dump non-meta shader stats. */
150 return device->instance->debug_flags & RADV_DEBUG_DUMP_SHADER_STATS &&
151 module && !module->nir;
152}
153
154unsigned shader_io_get_unique_index(gl_varying_slot slot)
155{
156 /* handle patch indices separate */
157 if (slot == VARYING_SLOT_TESS_LEVEL_OUTER)
158 return 0;
159 if (slot == VARYING_SLOT_TESS_LEVEL_INNER)
160 return 1;
161 if (slot >= VARYING_SLOT_PATCH0 && slot <= VARYING_SLOT_TESS_MAX)
162 return 2 + (slot - VARYING_SLOT_PATCH0);
163 if (slot == VARYING_SLOT_POS)
164 return 0;
165 if (slot == VARYING_SLOT_PSIZ)
166 return 1;
167 if (slot == VARYING_SLOT_CLIP_DIST0)
168 return 2;
169 if (slot == VARYING_SLOT_CLIP_DIST1)
170 return 3;
171 /* 3 is reserved for clip dist as well */
172 if (slot >= VARYING_SLOT_VAR0 && slot <= VARYING_SLOT_VAR31)
173 return 4 + (slot - VARYING_SLOT_VAR0);
174 unreachable("illegal slot in get unique index\n");
175}
176
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200177VkResult radv_CreateShaderModule(
178 VkDevice _device,
179 const VkShaderModuleCreateInfo* pCreateInfo,
180 const VkAllocationCallbacks* pAllocator,
181 VkShaderModule* pShaderModule)
182{
183 RADV_FROM_HANDLE(radv_device, device, _device);
184 struct radv_shader_module *module;
185
186 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO);
187 assert(pCreateInfo->flags == 0);
188
189 module = vk_alloc2(&device->alloc, pAllocator,
190 sizeof(*module) + pCreateInfo->codeSize, 8,
191 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
192 if (module == NULL)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +0200193 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200194
195 module->nir = NULL;
196 module->size = pCreateInfo->codeSize;
197 memcpy(module->data, pCreateInfo->pCode, module->size);
198
199 _mesa_sha1_compute(module->data, module->size, module->sha1);
200
201 *pShaderModule = radv_shader_module_to_handle(module);
202
203 return VK_SUCCESS;
204}
205
206void radv_DestroyShaderModule(
207 VkDevice _device,
208 VkShaderModule _module,
209 const VkAllocationCallbacks* pAllocator)
210{
211 RADV_FROM_HANDLE(radv_device, device, _device);
212 RADV_FROM_HANDLE(radv_shader_module, module, _module);
213
214 if (!module)
215 return;
216
217 vk_free2(&device->alloc, pAllocator, module);
218}
219
Bas Nieuwenhuizen06f05042017-02-09 00:12:10 +0100220void
Timothy Arceri06675712018-10-18 09:42:17 +1100221radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively,
222 bool allow_copies)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200223{
224 bool progress;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700225 unsigned lower_flrp =
226 (shader->options->lower_flrp16 ? 16 : 0) |
227 (shader->options->lower_flrp32 ? 32 : 0) |
228 (shader->options->lower_flrp64 ? 64 : 0);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200229
230 do {
231 progress = false;
232
Karol Herbst9b240282019-01-16 00:05:04 +0100233 NIR_PASS(progress, shader, nir_split_array_vars, nir_var_function_temp);
234 NIR_PASS(progress, shader, nir_shrink_vec_array_vars, nir_var_function_temp);
Timothy Arceri8086fa12018-10-18 10:19:16 +1100235
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200236 NIR_PASS_V(shader, nir_lower_vars_to_ssa);
Iago Toral Quiroga2d648e52018-04-27 09:28:48 +0200237 NIR_PASS_V(shader, nir_lower_pack);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100238
Timothy Arceri06675712018-10-18 09:42:17 +1100239 if (allow_copies) {
240 /* Only run this pass in the first call to
241 * radv_optimize_nir. Later calls assume that we've
242 * lowered away any copy_deref instructions and we
243 * don't want to introduce any more.
244 */
245 NIR_PASS(progress, shader, nir_opt_find_array_copies);
246 }
247
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100248 NIR_PASS(progress, shader, nir_opt_copy_prop_vars);
249 NIR_PASS(progress, shader, nir_opt_dead_write_vars);
Connor Abbotta69ab1b2019-06-26 14:03:31 +0200250 NIR_PASS(progress, shader, nir_remove_dead_variables,
251 nir_var_function_temp);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100252
Vasily Khoruzhick9367d2c2019-08-29 21:14:54 -0700253 NIR_PASS_V(shader, nir_lower_alu_to_scalar, NULL, NULL);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200254 NIR_PASS_V(shader, nir_lower_phis_to_scalar);
255
256 NIR_PASS(progress, shader, nir_copy_prop);
257 NIR_PASS(progress, shader, nir_opt_remove_phis);
258 NIR_PASS(progress, shader, nir_opt_dce);
259 if (nir_opt_trivial_continues(shader)) {
260 progress = true;
261 NIR_PASS(progress, shader, nir_copy_prop);
Dave Airlie64d9bd12017-09-13 03:49:31 +0100262 NIR_PASS(progress, shader, nir_opt_remove_phis);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200263 NIR_PASS(progress, shader, nir_opt_dce);
264 }
Timothy Arcerie30804c2019-04-08 20:13:49 +1000265 NIR_PASS(progress, shader, nir_opt_if, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200266 NIR_PASS(progress, shader, nir_opt_dead_cf);
267 NIR_PASS(progress, shader, nir_opt_cse);
Ian Romanick378f9962018-06-18 16:11:55 -0700268 NIR_PASS(progress, shader, nir_opt_peephole_select, 8, true, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200269 NIR_PASS(progress, shader, nir_opt_constant_folding);
Timothy Arcerie19a8fe2019-05-02 13:38:52 +1000270 NIR_PASS(progress, shader, nir_opt_algebraic);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700271
272 if (lower_flrp != 0) {
Ian Romanick1f1007a2019-05-08 07:32:43 -0700273 bool lower_flrp_progress = false;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700274 NIR_PASS(lower_flrp_progress,
275 shader,
276 nir_lower_flrp,
277 lower_flrp,
278 false /* always_precise */,
279 shader->options->lower_ffma);
280 if (lower_flrp_progress) {
281 NIR_PASS(progress, shader,
282 nir_opt_constant_folding);
283 progress = true;
284 }
285
286 /* Nothing should rematerialize any flrps, so we only
287 * need to do this lowering once.
288 */
289 lower_flrp = 0;
290 }
291
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200292 NIR_PASS(progress, shader, nir_opt_undef);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200293 if (shader->options->max_unroll_iterations) {
294 NIR_PASS(progress, shader, nir_opt_loop_unroll, 0);
295 }
Timothy Arcerice188812018-05-08 14:57:55 +1000296 } while (progress && !optimize_conservatively);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100297
Daniel Schürmann64b73862019-07-20 19:21:14 +0200298 NIR_PASS(progress, shader, nir_opt_conditional_discard);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100299 NIR_PASS(progress, shader, nir_opt_shrink_load);
Rhys Perry77401492019-07-24 19:23:21 +0100300 NIR_PASS(progress, shader, nir_opt_move, nir_move_load_ubo);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200301}
302
303nir_shader *
304radv_shader_compile_to_nir(struct radv_device *device,
305 struct radv_shader_module *module,
306 const char *entrypoint_name,
307 gl_shader_stage stage,
Timothy Arcerice188812018-05-08 14:57:55 +1000308 const VkSpecializationInfo *spec_info,
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100309 const VkPipelineCreateFlags flags,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200310 const struct radv_pipeline_layout *layout,
311 bool use_aco)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200312{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200313 nir_shader *nir;
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200314 const nir_shader_compiler_options *nir_options = use_aco ? &nir_options_aco :
315 &nir_options_llvm;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200316 if (module->nir) {
317 /* Some things such as our meta clear/blit code will give us a NIR
318 * shader directly. In that case, we just ignore the SPIR-V entirely
319 * and just use the NIR shader */
320 nir = module->nir;
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200321 nir->options = nir_options;
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500322 nir_validate_shader(nir, "in internal shader");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200323
324 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200325 } else {
326 uint32_t *spirv = (uint32_t *) module->data;
327 assert(module->size % 4 == 0);
328
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100329 if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV)
Samuel Pitoisetd4e0bef2019-10-28 16:56:15 +0100330 radv_print_spirv(module->data, module->size, stderr);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200331
332 uint32_t num_spec_entries = 0;
333 struct nir_spirv_specialization *spec_entries = NULL;
334 if (spec_info && spec_info->mapEntryCount > 0) {
335 num_spec_entries = spec_info->mapEntryCount;
336 spec_entries = malloc(num_spec_entries * sizeof(*spec_entries));
337 for (uint32_t i = 0; i < num_spec_entries; i++) {
338 VkSpecializationMapEntry entry = spec_info->pMapEntries[i];
339 const void *data = spec_info->pData + entry.offset;
340 assert(data + entry.size <= spec_info->pData + spec_info->dataSize);
341
342 spec_entries[i].id = spec_info->pMapEntries[i].constantID;
343 if (spec_info->dataSize == 8)
344 spec_entries[i].data64 = *(const uint64_t *)data;
345 else
346 spec_entries[i].data32 = *(const uint32_t *)data;
347 }
348 }
Jason Ekstrande19c6232017-10-18 17:28:19 -0700349 const struct spirv_to_nir_options spirv_options = {
Jason Ekstrand63b9aa22018-12-14 18:36:01 -0600350 .lower_ubo_ssbo_access_to_offsets = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700351 .caps = {
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200352 .amd_gcn_shader = true,
Samuel Pitoisete73d8632019-08-21 08:38:24 +0200353 .amd_shader_ballot = device->physical_device->use_shader_ballot,
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200354 .amd_trinary_minmax = true,
Daniel Schürmann28126222019-09-17 17:09:52 +0200355 .demote_to_helper_invocation = device->physical_device->use_aco,
Samuel Pitoisetb3e34402019-04-19 12:40:37 +0200356 .derivative_group = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600357 .descriptor_array_dynamic_indexing = true,
Juan A. Suarez Romero06c9d7f2019-04-29 17:05:13 +0200358 .descriptor_array_non_uniform_indexing = true,
359 .descriptor_indexing = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +0100360 .device_group = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700361 .draw_parameters = true,
Samuel Pitoiset7c502142019-10-14 11:27:32 +0200362 .float_controls = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200363 .float16 = !device->physical_device->use_aco,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700364 .float64 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600365 .geometry_streams = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700366 .image_read_without_format = true,
367 .image_write_without_format = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200368 .int8 = !device->physical_device->use_aco,
369 .int16 = !device->physical_device->use_aco,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600370 .int64 = true,
Samuel Pitoiset9cf55b02019-04-16 10:38:24 +0200371 .int64_atomics = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700372 .multiview = true,
Bas Nieuwenhuizen13ab63b2019-01-24 02:06:27 +0100373 .physical_storage_buffer_address = true,
Samuel Pitoiset07ff3672019-07-16 17:11:50 +0200374 .post_depth_coverage = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600375 .runtime_descriptor_array = true,
Samuel Pitoisetcbd6f0a2019-10-07 10:26:22 +0200376 .shader_clock = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600377 .shader_viewport_index_layer = true,
378 .stencil_export = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200379 .storage_8bit = !device->physical_device->use_aco,
380 .storage_16bit = !device->physical_device->use_aco,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600381 .storage_image_ms = true,
Samuel Pitoiset35656822018-09-18 15:27:52 +0200382 .subgroup_arithmetic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100383 .subgroup_ballot = true,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100384 .subgroup_basic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100385 .subgroup_quad = true,
386 .subgroup_shuffle = true,
387 .subgroup_vote = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600388 .tessellation = true,
Samuel Pitoisetb4eb0292018-10-05 18:04:56 +0200389 .transform_feedback = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600390 .variable_pointers = true,
Daniel Schürmannffbf75c2018-02-23 13:55:01 +0100391 },
Caio Marcelo de Oliveira Filho31a74762019-05-01 14:15:32 -0700392 .ubo_addr_format = nir_address_format_32bit_index_offset,
393 .ssbo_addr_format = nir_address_format_32bit_index_offset,
394 .phys_ssbo_addr_format = nir_address_format_64bit_global,
395 .push_const_addr_format = nir_address_format_logical,
396 .shared_addr_format = nir_address_format_32bit_offset,
Connor Abbott27f0c3c2019-05-13 15:39:54 +0200397 .frag_coord_is_sysval = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200398 };
Caio Marcelo de Oliveira Filhoe45bf012019-05-19 00:22:17 -0700399 nir = spirv_to_nir(spirv, module->size / 4,
400 spec_entries, num_spec_entries,
401 stage, entrypoint_name,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200402 &spirv_options, nir_options);
Jason Ekstrand59fb59a2017-09-14 19:52:38 -0700403 assert(nir->info.stage == stage);
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500404 nir_validate_shader(nir, "after spirv_to_nir");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200405
406 free(spec_entries);
407
408 /* We have to lower away local constant initializers right before we
409 * inline functions. That way they get properly initialized at the top
410 * of the function and not at the top of its caller.
411 */
Karol Herbst9b240282019-01-16 00:05:04 +0100412 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_function_temp);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200413 NIR_PASS_V(nir, nir_lower_returns);
414 NIR_PASS_V(nir, nir_inline_functions);
Jason Ekstrandfc9c4f82018-12-13 11:08:13 -0600415 NIR_PASS_V(nir, nir_opt_deref);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200416
417 /* Pick off the single entrypoint that we want */
418 foreach_list_typed_safe(nir_function, func, node, &nir->functions) {
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700419 if (func->is_entrypoint)
420 func->name = ralloc_strdup(func, "main");
421 else
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200422 exec_node_remove(&func->node);
423 }
424 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200425
Dave Airliee8d9b7a2018-03-19 04:27:49 +0000426 /* Make sure we lower constant initializers on output variables so that
427 * nir_remove_dead_variables below sees the corresponding stores
428 */
429 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_shader_out);
430
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200431 /* Now that we've deleted all but the main function, we can go ahead and
432 * lower the rest of the constant initializers.
433 */
434 NIR_PASS_V(nir, nir_lower_constant_initializers, ~0);
Jason Ekstrandb0c643d2018-03-21 17:30:22 -0700435
436 /* Split member structs. We do this before lower_io_to_temporaries so that
437 * it doesn't lower system values to temporaries by accident.
438 */
439 NIR_PASS_V(nir, nir_split_var_copies);
440 NIR_PASS_V(nir, nir_split_per_member_structs);
441
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200442 if (nir->info.stage == MESA_SHADER_FRAGMENT && use_aco)
443 NIR_PASS_V(nir, nir_lower_io_to_vector, nir_var_shader_out);
Daniel Schürmanne41e9322019-04-05 11:01:39 +0200444 if (nir->info.stage == MESA_SHADER_FRAGMENT)
Connor Abbott27f0c3c2019-05-13 15:39:54 +0200445 NIR_PASS_V(nir, nir_lower_input_attachments, true);
Daniel Schürmanne41e9322019-04-05 11:01:39 +0200446
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200447 NIR_PASS_V(nir, nir_remove_dead_variables,
Daniel Schürmann8b78cce2019-09-17 18:24:06 +0200448 nir_var_shader_in | nir_var_shader_out | nir_var_system_value | nir_var_mem_shared);
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200449
Connor Abbott3f5b5412019-09-05 13:57:11 +0200450 NIR_PASS_V(nir, nir_propagate_invariant);
451
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200452 NIR_PASS_V(nir, nir_lower_system_values);
453 NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays);
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100454 NIR_PASS_V(nir, radv_nir_lower_ycbcr_textures, layout);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200455 }
456
457 /* Vulkan uses the separate-shader linking model */
458 nir->info.separate_shader = true;
459
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700460 nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir));
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200461
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200462 static const nir_lower_tex_options tex_options = {
463 .lower_txp = ~0,
Jason Ekstrand08f804e2019-03-19 13:55:21 -0500464 .lower_tg4_offsets = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200465 };
466
467 nir_lower_tex(nir, &tex_options);
468
469 nir_lower_vars_to_ssa(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200470
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200471 if (nir->info.stage == MESA_SHADER_VERTEX ||
Connor Abbott118a66d2019-05-10 10:44:20 +0200472 nir->info.stage == MESA_SHADER_GEOMETRY ||
473 nir->info.stage == MESA_SHADER_FRAGMENT) {
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200474 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
475 nir_shader_get_entrypoint(nir), true, true);
Connor Abbott118a66d2019-05-10 10:44:20 +0200476 } else if (nir->info.stage == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200477 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
478 nir_shader_get_entrypoint(nir), true, false);
479 }
480
Samuel Pitoisetded15092018-05-23 14:31:55 +0200481 nir_split_var_copies(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200482
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200483 nir_lower_global_vars_to_local(nir);
Karol Herbst9b240282019-01-16 00:05:04 +0100484 nir_remove_dead_variables(nir, nir_var_function_temp);
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100485 nir_lower_subgroups(nir, &(struct nir_lower_subgroups_options) {
486 .subgroup_size = 64,
487 .ballot_bit_size = 64,
488 .lower_to_scalar = 1,
489 .lower_subgroup_masks = 1,
490 .lower_shuffle = 1,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100491 .lower_shuffle_to_32bit = 1,
492 .lower_vote_eq_to_ballot = 1,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100493 });
494
Timothy Arceri72e42872018-09-24 18:18:48 +1000495 nir_lower_load_const_to_scalar(nir);
496
Timothy Arcerice188812018-05-08 14:57:55 +1000497 if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT))
Timothy Arceri06675712018-10-18 09:42:17 +1100498 radv_optimize_nir(nir, false, true);
499
500 /* We call nir_lower_var_copies() after the first radv_optimize_nir()
501 * to remove any copies introduced by nir_opt_find_array_copies().
502 */
503 nir_lower_var_copies(nir);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200504
Connor Abbott71a67942019-08-30 16:08:47 +0200505 /* Lower large variables that are always constant with load_constant
506 * intrinsics, which get turned into PC-relative loads from a data
507 * section next to the shader.
508 */
509 NIR_PASS_V(nir, nir_opt_large_constants,
510 glsl_get_natural_size_align_bytes, 16);
511
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100512 /* Indirect lowering must be called after the radv_optimize_nir() loop
513 * has been called at least once. Otherwise indirect lowering can
514 * bloat the instruction count of the loop and cause it to be
515 * considered too large for unrolling.
516 */
517 ac_lower_indirect_derefs(nir, device->physical_device->rad_info.chip_class);
Timothy Arceri06675712018-10-18 09:42:17 +1100518 radv_optimize_nir(nir, flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, false);
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100519
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200520 return nir;
521}
522
Connor Abbott118a66d2019-05-10 10:44:20 +0200523static int
524type_size_vec4(const struct glsl_type *type, bool bindless)
525{
526 return glsl_count_attribute_slots(type, false);
527}
528
529static nir_variable *
530find_layer_in_var(nir_shader *nir)
531{
532 nir_foreach_variable(var, &nir->inputs) {
533 if (var->data.location == VARYING_SLOT_LAYER) {
534 return var;
535 }
536 }
537
538 nir_variable *var =
539 nir_variable_create(nir, nir_var_shader_in, glsl_int_type(), "layer id");
540 var->data.location = VARYING_SLOT_LAYER;
541 var->data.interpolation = INTERP_MODE_FLAT;
542 return var;
543}
544
545/* We use layered rendering to implement multiview, which means we need to map
546 * view_index to gl_Layer. The attachment lowering also uses needs to know the
547 * layer so that it can sample from the correct layer. The code generates a
548 * load from the layer_id sysval, but since we don't have a way to get at this
549 * information from the fragment shader, we also need to lower this to the
550 * gl_Layer varying. This pass lowers both to a varying load from the LAYER
551 * slot, before lowering io, so that nir_assign_var_locations() will give the
552 * LAYER varying the correct driver_location.
553 */
554
555static bool
556lower_view_index(nir_shader *nir)
557{
558 bool progress = false;
559 nir_function_impl *entry = nir_shader_get_entrypoint(nir);
560 nir_builder b;
561 nir_builder_init(&b, entry);
562
563 nir_variable *layer = NULL;
564 nir_foreach_block(block, entry) {
565 nir_foreach_instr_safe(instr, block) {
566 if (instr->type != nir_instr_type_intrinsic)
567 continue;
568
569 nir_intrinsic_instr *load = nir_instr_as_intrinsic(instr);
570 if (load->intrinsic != nir_intrinsic_load_view_index &&
571 load->intrinsic != nir_intrinsic_load_layer_id)
572 continue;
573
574 if (!layer)
575 layer = find_layer_in_var(nir);
576
577 b.cursor = nir_before_instr(instr);
578 nir_ssa_def *def = nir_load_var(&b, layer);
579 nir_ssa_def_rewrite_uses(&load->dest.ssa,
580 nir_src_for_ssa(def));
581
582 nir_instr_remove(instr);
583 progress = true;
584 }
585 }
586
587 return progress;
588}
589
Samuel Pitoiset8d44f832019-08-29 11:16:44 +0200590void
591radv_lower_fs_io(nir_shader *nir)
Connor Abbott118a66d2019-05-10 10:44:20 +0200592{
593 NIR_PASS_V(nir, lower_view_index);
594 nir_assign_io_var_locations(&nir->inputs, &nir->num_inputs,
595 MESA_SHADER_FRAGMENT);
596
Connor Abbott118a66d2019-05-10 10:44:20 +0200597 NIR_PASS_V(nir, nir_lower_io, nir_var_shader_in, type_size_vec4, 0);
598
599 /* This pass needs actual constants */
600 nir_opt_constant_folding(nir);
601
602 NIR_PASS_V(nir, nir_io_add_const_offset_to_base, nir_var_shader_in);
Connor Abbott118a66d2019-05-10 10:44:20 +0200603}
604
605
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200606void *
607radv_alloc_shader_memory(struct radv_device *device,
608 struct radv_shader_variant *shader)
609{
610 mtx_lock(&device->shader_slab_mutex);
611 list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
612 uint64_t offset = 0;
613 list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) {
614 if (s->bo_offset - offset >= shader->code_size) {
615 shader->bo = slab->bo;
616 shader->bo_offset = offset;
617 list_addtail(&shader->slab_list, &s->slab_list);
618 mtx_unlock(&device->shader_slab_mutex);
619 return slab->ptr + offset;
620 }
621 offset = align_u64(s->bo_offset + s->code_size, 256);
622 }
623 if (slab->size - offset >= shader->code_size) {
624 shader->bo = slab->bo;
625 shader->bo_offset = offset;
626 list_addtail(&shader->slab_list, &slab->shaders);
627 mtx_unlock(&device->shader_slab_mutex);
628 return slab->ptr + offset;
629 }
630 }
631
632 mtx_unlock(&device->shader_slab_mutex);
633 struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab));
634
635 slab->size = 256 * 1024;
636 slab->bo = device->ws->buffer_create(device->ws, slab->size, 256,
Samuel Pitoiseta3c2a862018-01-04 15:19:47 +0100637 RADEON_DOMAIN_VRAM,
638 RADEON_FLAG_NO_INTERPROCESS_SHARING |
Samuel Pitoiset2b9c3712019-08-20 17:20:42 +0200639 (device->physical_device->rad_info.cpdma_prefetch_writes_memory ?
Bas Nieuwenhuizenead54d42019-01-28 00:28:05 +0100640 0 : RADEON_FLAG_READ_ONLY),
641 RADV_BO_PRIORITY_SHADER);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200642 slab->ptr = (char*)device->ws->buffer_map(slab->bo);
643 list_inithead(&slab->shaders);
644
645 mtx_lock(&device->shader_slab_mutex);
646 list_add(&slab->slabs, &device->shader_slabs);
647
648 shader->bo = slab->bo;
649 shader->bo_offset = 0;
650 list_add(&shader->slab_list, &slab->shaders);
651 mtx_unlock(&device->shader_slab_mutex);
652 return slab->ptr;
653}
654
655void
656radv_destroy_shader_slabs(struct radv_device *device)
657{
658 list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
659 device->ws->buffer_destroy(slab->bo);
660 free(slab);
661 }
662 mtx_destroy(&device->shader_slab_mutex);
663}
664
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200665/* For the UMR disassembler. */
666#define DEBUGGER_END_OF_CODE_MARKER 0xbf9f0000 /* invalid instruction */
667#define DEBUGGER_NUM_MARKERS 5
668
669static unsigned
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200670radv_get_shader_binary_size(size_t code_size)
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200671{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200672 return code_size + DEBUGGER_NUM_MARKERS * 4;
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200673}
674
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200675static void radv_postprocess_config(const struct radv_physical_device *pdevice,
676 const struct ac_shader_config *config_in,
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200677 const struct radv_shader_info *info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200678 gl_shader_stage stage,
679 struct ac_shader_config *config_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200680{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200681 bool scratch_enabled = config_in->scratch_bytes_per_wave > 0;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200682 unsigned vgpr_comp_cnt = 0;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200683 unsigned num_input_vgprs = info->num_input_vgprs;
684
685 if (stage == MESA_SHADER_FRAGMENT) {
Timur Kristófa4fd8ba2019-09-25 16:40:07 +0200686 num_input_vgprs = ac_get_fs_input_vgpr_cnt(config_in, NULL, NULL);
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200687 }
688
689 unsigned num_vgprs = MAX2(config_in->num_vgprs, num_input_vgprs);
690 /* +3 for scratch wave offset and VCC */
691 unsigned num_sgprs = MAX2(config_in->num_sgprs, info->num_input_sgprs + 3);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200692 unsigned num_shared_vgprs = config_in->num_shared_vgprs;
693 /* shared VGPRs are introduced in Navi and are allocated in blocks of 8 (RDNA ref 3.6.5) */
694 assert((pdevice->rad_info.chip_class >= GFX10 && num_shared_vgprs % 8 == 0)
695 || (pdevice->rad_info.chip_class < GFX10 && num_shared_vgprs == 0));
696 unsigned num_shared_vgpr_blocks = num_shared_vgprs / 8;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200697
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200698 *config_out = *config_in;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200699 config_out->num_vgprs = num_vgprs;
700 config_out->num_sgprs = num_sgprs;
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200701 config_out->num_shared_vgprs = num_shared_vgprs;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200702
703 /* Enable 64-bit and 16-bit denormals, because there is no performance
704 * cost.
705 *
706 * If denormals are enabled, all floating-point output modifiers are
707 * ignored.
708 *
709 * Don't enable denormals for 32-bit floats, because:
710 * - Floating-point output modifiers would be ignored by the hw.
711 * - Some opcodes don't support denormals, such as v_mad_f32. We would
712 * have to stop using those.
713 * - GFX6 & GFX7 would be very slow.
714 */
715 config_out->float_mode |= V_00B028_FP_64_DENORMS;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200716
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200717 config_out->rsrc2 = S_00B12C_USER_SGPR(info->num_user_sgprs) |
Samuel Pitoiseta15b3bc2019-09-09 10:23:30 +0200718 S_00B12C_SCRATCH_EN(scratch_enabled);
719
720 if (!pdevice->use_ngg_streamout) {
721 config_out->rsrc2 |= S_00B12C_SO_BASE0_EN(!!info->so.strides[0]) |
722 S_00B12C_SO_BASE1_EN(!!info->so.strides[1]) |
723 S_00B12C_SO_BASE2_EN(!!info->so.strides[2]) |
724 S_00B12C_SO_BASE3_EN(!!info->so.strides[3]) |
725 S_00B12C_SO_EN(!!info->so.num_outputs);
726 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200727
Samuel Pitoisetea385652019-07-30 18:32:42 +0200728 config_out->rsrc1 = S_00B848_VGPRS((num_vgprs - 1) /
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200729 (info->wave_size == 32 ? 8 : 4)) |
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200730 S_00B848_DX10_CLAMP(1) |
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200731 S_00B848_FLOAT_MODE(config_out->float_mode);
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200732
Samuel Pitoiset4c820942019-06-25 13:33:03 +0200733 if (pdevice->rad_info.chip_class >= GFX10) {
734 config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX10(info->num_user_sgprs >> 5);
735 } else {
736 config_out->rsrc1 |= S_00B228_SGPRS((num_sgprs - 1) / 8);
Samuel Pitoiset09abe572019-07-23 14:55:16 +0200737 config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX9(info->num_user_sgprs >> 5);
Samuel Pitoiset4c820942019-06-25 13:33:03 +0200738 }
739
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200740 switch (stage) {
741 case MESA_SHADER_TESS_EVAL:
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200742 if (info->is_ngg) {
743 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
744 config_out->rsrc2 |= S_00B22C_OC_LDS_EN(1);
745 } else if (info->tes.as_es) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200746 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200747 vgpr_comp_cnt = info->uses_prim_id ? 3 : 2;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200748
749 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200750 } else {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200751 bool enable_prim_id = info->tes.export_prim_id || info->uses_prim_id;
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200752 vgpr_comp_cnt = enable_prim_id ? 3 : 2;
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200753
754 config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200755 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200756 }
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200757 config_out->rsrc2 |= S_00B22C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200758 break;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200759 case MESA_SHADER_TESS_CTRL:
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200760 if (pdevice->rad_info.chip_class >= GFX9) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200761 /* We need at least 2 components for LS.
762 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
763 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
764 */
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200765 if (pdevice->rad_info.chip_class >= GFX10) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200766 vgpr_comp_cnt = info->vs.needs_instance_id ? 3 : 1;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200767 } else {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200768 vgpr_comp_cnt = info->vs.needs_instance_id ? 2 : 1;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200769 }
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200770 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200771 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200772 }
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200773 config_out->rsrc1 |= S_00B428_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
774 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200775 config_out->rsrc2 |= S_00B42C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200776 break;
777 case MESA_SHADER_VERTEX:
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200778 if (info->is_ngg) {
779 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
780 } else if (info->vs.as_ls) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200781 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200782 /* We need at least 2 components for LS.
783 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
784 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
785 */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200786 vgpr_comp_cnt = info->vs.needs_instance_id ? 2 : 1;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200787 } else if (info->vs.as_es) {
788 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200789 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200790 vgpr_comp_cnt = info->vs.needs_instance_id ? 1 : 0;
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200791 } else {
792 /* VGPR0-3: (VertexID, InstanceID / StepRate0, PrimID, InstanceID)
793 * If PrimID is disabled. InstanceID / StepRate1 is loaded instead.
794 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
795 */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200796 if (info->vs.needs_instance_id && pdevice->rad_info.chip_class >= GFX10) {
Bas Nieuwenhuizen2e763f72019-08-21 01:50:53 +0200797 vgpr_comp_cnt = 3;
798 } else if (info->vs.export_prim_id) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200799 vgpr_comp_cnt = 2;
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200800 } else if (info->vs.needs_instance_id) {
Bas Nieuwenhuizen2e763f72019-08-21 01:50:53 +0200801 vgpr_comp_cnt = 1;
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200802 } else {
803 vgpr_comp_cnt = 0;
804 }
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200805
806 config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200807 config_out->rsrc2 |= S_00B12C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200808 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200809 break;
810 case MESA_SHADER_FRAGMENT:
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200811 config_out->rsrc1 |= S_00B028_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200812 config_out->rsrc2 |= S_00B02C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200813 break;
Samuel Pitoisetf4d2c472019-06-26 15:11:01 +0200814 case MESA_SHADER_GEOMETRY:
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200815 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
816 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200817 config_out->rsrc2 |= S_00B22C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200818 break;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200819 case MESA_SHADER_COMPUTE:
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200820 config_out->rsrc1 |= S_00B848_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
821 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200822 config_out->rsrc2 |=
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200823 S_00B84C_TGID_X_EN(info->cs.uses_block_id[0]) |
824 S_00B84C_TGID_Y_EN(info->cs.uses_block_id[1]) |
825 S_00B84C_TGID_Z_EN(info->cs.uses_block_id[2]) |
826 S_00B84C_TIDIG_COMP_CNT(info->cs.uses_thread_id[2] ? 2 :
827 info->cs.uses_thread_id[1] ? 1 : 0) |
828 S_00B84C_TG_SIZE_EN(info->cs.uses_local_invocation_idx) |
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200829 S_00B84C_LDS_SIZE(config_in->lds_size);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200830 config_out->rsrc3 |= S_00B8A0_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
831
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200832 break;
833 default:
834 unreachable("unsupported shader type");
835 break;
836 }
837
Samuel Pitoisetedf1af62019-07-16 16:39:16 +0200838 if (pdevice->rad_info.chip_class >= GFX10 && info->is_ngg &&
Samuel Pitoiset3f500072019-07-09 08:44:01 +0200839 (stage == MESA_SHADER_VERTEX || stage == MESA_SHADER_TESS_EVAL || stage == MESA_SHADER_GEOMETRY)) {
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200840 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200841 gl_shader_stage es_stage = stage;
842 if (stage == MESA_SHADER_GEOMETRY)
843 es_stage = info->gs.es_type;
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200844
845 /* VGPR5-8: (VertexID, UserVGPR0, UserVGPR1, UserVGPR2 / InstanceID) */
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200846 if (es_stage == MESA_SHADER_VERTEX) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200847 es_vgpr_comp_cnt = info->vs.needs_instance_id ? 3 : 0;
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200848 } else if (es_stage == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200849 bool enable_prim_id = info->tes.export_prim_id || info->uses_prim_id;
Samuel Pitoisetd2a8b632019-07-09 08:27:30 +0200850 es_vgpr_comp_cnt = enable_prim_id ? 3 : 2;
Bas Nieuwenhuizen451f0302019-07-19 00:00:03 +0200851 } else
852 unreachable("Unexpected ES shader stage");
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200853
854 bool tes_triangles = stage == MESA_SHADER_TESS_EVAL &&
855 info->tes.primitive_mode >= 4; /* GL_TRIANGLES */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200856 if (info->uses_invocation_id || stage == MESA_SHADER_VERTEX) {
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200857 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200858 } else if (info->uses_prim_id) {
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200859 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
860 } else if (info->gs.vertices_in >= 3 || tes_triangles) {
861 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
862 } else {
863 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
864 }
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200865
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200866 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt) |
867 S_00B228_WGP_MODE(1);
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200868 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Samuel Pitoiseted12be12019-07-15 18:46:48 +0200869 S_00B22C_LDS_SIZE(config_in->lds_size) |
870 S_00B22C_OC_LDS_EN(es_stage == MESA_SHADER_TESS_EVAL);
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200871 } else if (pdevice->rad_info.chip_class >= GFX9 &&
872 stage == MESA_SHADER_GEOMETRY) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200873 unsigned es_type = info->gs.es_type;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100874 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
875
876 if (es_type == MESA_SHADER_VERTEX) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200877 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200878 if (info->vs.needs_instance_id) {
Samuel Pitoisetea337c82019-07-23 11:52:36 +0200879 es_vgpr_comp_cnt = pdevice->rad_info.chip_class >= GFX10 ? 3 : 1;
880 } else {
881 es_vgpr_comp_cnt = 0;
882 }
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100883 } else if (es_type == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200884 es_vgpr_comp_cnt = info->uses_prim_id ? 3 : 2;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100885 } else {
Bas Nieuwenhuizen0f89f9b2018-01-17 23:23:02 +0100886 unreachable("invalid shader ES type");
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100887 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100888
889 /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and
890 * VGPR[0:4] are always loaded.
891 */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200892 if (info->uses_invocation_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100893 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200894 } else if (info->uses_prim_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100895 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200896 } else if (info->gs.vertices_in >= 3) {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100897 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200898 } else {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100899 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200900 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100901
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200902 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt);
903 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Bas Nieuwenhuizen74695162019-06-30 01:47:30 +0200904 S_00B22C_OC_LDS_EN(es_type == MESA_SHADER_TESS_EVAL);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200905 } else if (pdevice->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200906 stage == MESA_SHADER_TESS_CTRL) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200907 config_out->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200908 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200909 config_out->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200910 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200911}
912
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200913struct radv_shader_variant *
914radv_shader_variant_create(struct radv_device *device,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +0200915 const struct radv_shader_binary *binary,
916 bool keep_shader_info)
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200917{
918 struct ac_shader_config config = {0};
919 struct ac_rtld_binary rtld_binary = {0};
920 struct radv_shader_variant *variant = calloc(1, sizeof(struct radv_shader_variant));
921 if (!variant)
922 return NULL;
923
924 variant->ref_count = 1;
925
926 if (binary->type == RADV_BINARY_TYPE_RTLD) {
Samuel Pitoiset53876672019-09-03 13:01:54 +0200927 struct ac_rtld_symbol lds_symbols[2];
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200928 unsigned num_lds_symbols = 0;
929 const char *elf_data = (const char *)((struct radv_shader_binary_rtld *)binary)->data;
930 size_t elf_size = ((struct radv_shader_binary_rtld *)binary)->elf_size;
931
932 if (device->physical_device->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset53876672019-09-03 13:01:54 +0200933 (binary->stage == MESA_SHADER_GEOMETRY || binary->info.is_ngg) &&
934 !binary->is_gs_copy_shader) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200935 /* We add this symbol even on LLVM <= 8 to ensure that
936 * shader->config.lds_size is set correctly below.
937 */
938 struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++];
939 sym->name = "esgs_ring";
Samuel Pitoiseta2a68d52019-09-18 09:58:54 +0200940 sym->size = binary->info.ngg_info.esgs_ring_size;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200941 sym->align = 64 * 1024;
Samuel Pitoiset53876672019-09-03 13:01:54 +0200942 }
Samuel Pitoiset5bbcb3f2019-07-11 08:44:16 +0200943
Samuel Pitoiset53876672019-09-03 13:01:54 +0200944 if (binary->info.is_ngg &&
945 binary->stage == MESA_SHADER_GEOMETRY) {
946 struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++];
947 sym->name = "ngg_emit";
948 sym->size = binary->info.ngg_info.ngg_emit_size * 4;
949 sym->align = 4;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200950 }
Samuel Pitoisetea385652019-07-30 18:32:42 +0200951
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200952 struct ac_rtld_open_info open_info = {
953 .info = &device->physical_device->rad_info,
954 .shader_type = binary->stage,
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200955 .wave_size = binary->info.wave_size,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200956 .num_parts = 1,
957 .elf_ptrs = &elf_data,
958 .elf_sizes = &elf_size,
959 .num_shared_lds_symbols = num_lds_symbols,
960 .shared_lds_symbols = lds_symbols,
961 };
962
963 if (!ac_rtld_open(&rtld_binary, open_info)) {
964 free(variant);
965 return NULL;
966 }
967
968 if (!ac_rtld_read_config(&rtld_binary, &config)) {
969 ac_rtld_close(&rtld_binary);
970 free(variant);
971 return NULL;
972 }
973
974 if (rtld_binary.lds_size > 0) {
975 unsigned alloc_granularity = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
976 config.lds_size = align(rtld_binary.lds_size, alloc_granularity) / alloc_granularity;
977 }
978
979 variant->code_size = rtld_binary.rx_size;
Connor Abbott5dadbab2019-08-29 17:15:46 +0200980 variant->exec_size = rtld_binary.exec_size;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200981 } else {
982 assert(binary->type == RADV_BINARY_TYPE_LEGACY);
983 config = ((struct radv_shader_binary_legacy *)binary)->config;
Connor Abbott5dadbab2019-08-29 17:15:46 +0200984 variant->code_size = radv_get_shader_binary_size(((struct radv_shader_binary_legacy *)binary)->code_size);
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200985 variant->exec_size = ((struct radv_shader_binary_legacy *)binary)->exec_size;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200986 }
987
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200988 variant->info = binary->info;
989 radv_postprocess_config(device->physical_device, &config, &binary->info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200990 binary->stage, &variant->config);
Timothy Arceri07692f72019-07-31 13:57:16 +1000991
992 if (radv_device_use_secure_compile(device->instance)) {
993 if (binary->type == RADV_BINARY_TYPE_RTLD)
994 ac_rtld_close(&rtld_binary);
995
996 return variant;
997 }
998
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200999 void *dest_ptr = radv_alloc_shader_memory(device, variant);
1000
1001 if (binary->type == RADV_BINARY_TYPE_RTLD) {
1002 struct radv_shader_binary_rtld* bin = (struct radv_shader_binary_rtld *)binary;
1003 struct ac_rtld_upload_info info = {
1004 .binary = &rtld_binary,
1005 .rx_va = radv_buffer_get_va(variant->bo) + variant->bo_offset,
1006 .rx_ptr = dest_ptr,
1007 };
1008
1009 if (!ac_rtld_upload(&info)) {
1010 radv_shader_variant_destroy(device, variant);
1011 ac_rtld_close(&rtld_binary);
1012 return NULL;
1013 }
1014
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001015 if (keep_shader_info ||
Samuel Pitoiset9343c932019-07-23 09:55:24 +02001016 (device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS)) {
Timothy Arceria20a9d02019-07-17 14:20:55 +10001017 const char *disasm_data;
1018 size_t disasm_size;
1019 if (!ac_rtld_get_section_by_name(&rtld_binary, ".AMDGPU.disasm", &disasm_data, &disasm_size)) {
1020 radv_shader_variant_destroy(device, variant);
1021 ac_rtld_close(&rtld_binary);
1022 return NULL;
1023 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001024
Rhys Perry3c966fd2019-09-25 11:48:04 +01001025 variant->ir_string = bin->llvm_ir_size ? strdup((const char*)(bin->data + bin->elf_size)) : NULL;
Timothy Arceria20a9d02019-07-17 14:20:55 +10001026 variant->disasm_string = malloc(disasm_size + 1);
1027 memcpy(variant->disasm_string, disasm_data, disasm_size);
1028 variant->disasm_string[disasm_size] = 0;
1029 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001030
1031 ac_rtld_close(&rtld_binary);
1032 } else {
1033 struct radv_shader_binary_legacy* bin = (struct radv_shader_binary_legacy *)binary;
1034 memcpy(dest_ptr, bin->data, bin->code_size);
1035
1036 /* Add end-of-code markers for the UMR disassembler. */
1037 uint32_t *ptr32 = (uint32_t *)dest_ptr + bin->code_size / 4;
1038 for (unsigned i = 0; i < DEBUGGER_NUM_MARKERS; i++)
1039 ptr32[i] = DEBUGGER_END_OF_CODE_MARKER;
1040
Rhys Perry3c966fd2019-09-25 11:48:04 +01001041 variant->ir_string = bin->ir_size ? strdup((const char*)(bin->data + bin->code_size)) : NULL;
1042 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 +02001043 }
1044 return variant;
1045}
1046
Bas Nieuwenhuizen5444d3e2019-06-01 20:54:35 +02001047static char *
1048radv_dump_nir_shaders(struct nir_shader * const *shaders,
1049 int shader_count)
1050{
1051 char *data = NULL;
1052 char *ret = NULL;
1053 size_t size = 0;
1054 FILE *f = open_memstream(&data, &size);
1055 if (f) {
1056 for (int i = 0; i < shader_count; ++i)
1057 nir_print_shader(shaders[i], f);
1058 fclose(f);
1059 }
1060
1061 ret = malloc(size + 1);
1062 if (ret) {
1063 memcpy(ret, data, size);
1064 ret[size] = 0;
1065 }
1066 free(data);
1067 return ret;
1068}
1069
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001070static struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001071shader_variant_compile(struct radv_device *device,
1072 struct radv_shader_module *module,
1073 struct nir_shader * const *shaders,
1074 int shader_count,
1075 gl_shader_stage stage,
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001076 struct radv_shader_info *info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001077 struct radv_nir_compiler_options *options,
1078 bool gs_copy_shader,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001079 bool keep_shader_info,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001080 bool use_aco,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001081 struct radv_shader_binary **binary_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001082{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001083 enum radeon_family chip_family = device->physical_device->rad_info.family;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001084 struct radv_shader_binary *binary = NULL;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001085
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001086 options->family = chip_family;
1087 options->chip_class = device->physical_device->rad_info.chip_class;
Samuel Pitoiset8ade3e42018-05-11 16:36:02 +02001088 options->dump_shader = radv_can_dump_shader(device, module, gs_copy_shader);
Samuel Pitoisetd07edf52018-03-14 10:28:49 +01001089 options->dump_preoptir = options->dump_shader &&
Samuel Pitoiset33e6e5e2018-01-19 12:12:02 +01001090 device->instance->debug_flags & RADV_DEBUG_PREOPTIR;
Rhys Perry3c966fd2019-09-25 11:48:04 +01001091 options->record_ir = keep_shader_info;
Samuel Pitoisetbfca15e2018-06-14 14:28:58 +02001092 options->check_ir = device->instance->debug_flags & RADV_DEBUG_CHECKIR;
Dave Airlie010d0552018-02-19 07:14:04 +00001093 options->tess_offchip_block_dw_size = device->tess_offchip_block_dw_size;
Samuel Pitoisetd8a61d32018-05-16 16:02:04 +02001094 options->address32_hi = device->physical_device->rad_info.address32_hi;
Samuel Pitoiset49f5ddd2019-08-23 08:55:53 +02001095 options->has_ls_vgpr_init_bug = device->physical_device->rad_info.has_ls_vgpr_init_bug;
Samuel Pitoiseta15b3bc2019-09-09 10:23:30 +02001096 options->use_ngg_streamout = device->physical_device->use_ngg_streamout;
Bas Nieuwenhuizen035406e2019-08-04 00:48:05 +02001097
Rhys Perry3c966fd2019-09-25 11:48:04 +01001098 if (!use_aco || options->dump_shader || options->record_ir)
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001099 ac_init_llvm_once();
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001100
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001101 if (use_aco) {
1102 aco_compile_shader(shader_count, shaders, &binary, info, options);
1103 binary->info = *info;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001104 } else {
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001105 enum ac_target_machine_options tm_options = 0;
1106 struct ac_llvm_compiler ac_llvm;
1107 bool thread_compiler;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001108
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001109 if (options->supports_spill)
1110 tm_options |= AC_TM_SUPPORTS_SPILL;
1111 if (device->instance->perftest_flags & RADV_PERFTEST_SISCHED)
1112 tm_options |= AC_TM_SISCHED;
1113 if (options->check_ir)
1114 tm_options |= AC_TM_CHECK_IR;
1115 if (device->instance->debug_flags & RADV_DEBUG_NO_LOAD_STORE_OPT)
1116 tm_options |= AC_TM_NO_LOAD_STORE_OPT;
1117
1118 thread_compiler = !(device->instance->debug_flags & RADV_DEBUG_NOTHREADLLVM);
1119 radv_init_llvm_compiler(&ac_llvm,
1120 thread_compiler,
1121 chip_family, tm_options,
Samuel Pitoisetd3f99572019-10-31 10:06:43 +01001122 info->wave_size);
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001123
1124 if (gs_copy_shader) {
1125 assert(shader_count == 1);
1126 radv_compile_gs_copy_shader(&ac_llvm, *shaders, &binary,
1127 info, options);
1128 } else {
1129 radv_compile_nir_shader(&ac_llvm, &binary, info,
1130 shaders, shader_count, options);
1131 }
1132
1133 binary->info = *info;
1134 radv_destroy_llvm_compiler(&ac_llvm, thread_compiler);
1135 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001136
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001137 struct radv_shader_variant *variant = radv_shader_variant_create(device, binary,
1138 keep_shader_info);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001139 if (!variant) {
1140 free(binary);
1141 return NULL;
1142 }
Rhys Perryec8ced92019-09-24 15:25:07 +01001143 variant->aco_used = use_aco;
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001144
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +02001145 if (options->dump_shader) {
1146 fprintf(stderr, "disasm:\n%s\n", variant->disasm_string);
1147 }
1148
1149
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001150 if (keep_shader_info) {
Bas Nieuwenhuizen5444d3e2019-06-01 20:54:35 +02001151 variant->nir_string = radv_dump_nir_shaders(shaders, shader_count);
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001152 if (!gs_copy_shader && !module->nir) {
Samuel Pitoisetd4e0bef2019-10-28 16:56:15 +01001153 variant->spirv = malloc(module->size);
1154 if (!variant->spirv) {
1155 free(variant);
1156 free(binary);
1157 return NULL;
1158 }
1159
1160 memcpy(variant->spirv, module->data, module->size);
Samuel Pitoiset844ae722017-09-22 16:56:40 +02001161 variant->spirv_size = module->size;
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001162 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001163 }
1164
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001165 if (binary_out)
1166 *binary_out = binary;
1167 else
1168 free(binary);
1169
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001170 return variant;
1171}
1172
1173struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001174radv_shader_variant_compile(struct radv_device *device,
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001175 struct radv_shader_module *module,
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +02001176 struct nir_shader *const *shaders,
1177 int shader_count,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001178 struct radv_pipeline_layout *layout,
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001179 const struct radv_shader_variant_key *key,
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001180 struct radv_shader_info *info,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001181 bool keep_shader_info,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001182 bool use_aco,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001183 struct radv_shader_binary **binary_out)
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001184{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001185 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001186
1187 options.layout = layout;
1188 if (key)
1189 options.key = *key;
1190
Timothy Arceri7664aaf2017-10-11 11:59:20 +11001191 options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH);
Samuel Pitoiset1e86eaf2018-05-17 09:56:47 +02001192 options.supports_spill = true;
Bas Nieuwenhuizen72e7b7a2019-08-02 12:40:17 +02001193 options.robust_buffer_access = device->robust_buffer_access;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001194
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001195 return shader_variant_compile(device, module, shaders, shader_count, shaders[shader_count - 1]->info.stage, info,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001196 &options, false, keep_shader_info, use_aco, binary_out);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001197}
1198
1199struct radv_shader_variant *
1200radv_create_gs_copy_shader(struct radv_device *device,
1201 struct nir_shader *shader,
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001202 struct radv_shader_info *info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001203 struct radv_shader_binary **binary_out,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001204 bool keep_shader_info,
Samuel Pitoiset47efc522017-09-01 12:09:56 +02001205 bool multiview)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001206{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001207 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001208
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001209 options.key.has_multiview_view_index = multiview;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001210
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001211 return shader_variant_compile(device, NULL, &shader, 1, MESA_SHADER_VERTEX,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001212 info, &options, true, keep_shader_info, false, binary_out);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001213}
1214
1215void
1216radv_shader_variant_destroy(struct radv_device *device,
1217 struct radv_shader_variant *variant)
1218{
1219 if (!p_atomic_dec_zero(&variant->ref_count))
1220 return;
1221
1222 mtx_lock(&device->shader_slab_mutex);
1223 list_del(&variant->slab_list);
1224 mtx_unlock(&device->shader_slab_mutex);
1225
Samuel Pitoisetd4e0bef2019-10-28 16:56:15 +01001226 free(variant->spirv);
Bas Nieuwenhuizen5444d3e2019-06-01 20:54:35 +02001227 free(variant->nir_string);
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001228 free(variant->disasm_string);
Rhys Perry3c966fd2019-09-25 11:48:04 +01001229 free(variant->ir_string);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001230 free(variant);
1231}
1232
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001233const char *
Samuel Pitoiset83499ac2019-09-03 17:39:23 +02001234radv_get_shader_name(struct radv_shader_info *info,
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001235 gl_shader_stage stage)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001236{
1237 switch (stage) {
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001238 case MESA_SHADER_VERTEX:
1239 if (info->vs.as_ls)
1240 return "Vertex Shader as LS";
1241 else if (info->vs.as_es)
1242 return "Vertex Shader as ES";
1243 else if (info->is_ngg)
1244 return "Vertex Shader as ESGS";
1245 else
1246 return "Vertex Shader as VS";
1247 case MESA_SHADER_TESS_CTRL:
1248 return "Tessellation Control Shader";
1249 case MESA_SHADER_TESS_EVAL:
1250 if (info->tes.as_es)
1251 return "Tessellation Evaluation Shader as ES";
1252 else if (info->is_ngg)
1253 return "Tessellation Evaluation Shader as ESGS";
1254 else
1255 return "Tessellation Evaluation Shader as VS";
1256 case MESA_SHADER_GEOMETRY:
1257 return "Geometry Shader";
1258 case MESA_SHADER_FRAGMENT:
1259 return "Pixel Shader";
1260 case MESA_SHADER_COMPUTE:
1261 return "Compute Shader";
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001262 default:
1263 return "Unknown shader";
1264 };
1265}
1266
Bas Nieuwenhuizen739a2882019-06-01 20:25:47 +02001267unsigned
1268radv_get_max_workgroup_size(enum chip_class chip_class,
1269 gl_shader_stage stage,
1270 const unsigned *sizes)
1271{
1272 switch (stage) {
1273 case MESA_SHADER_TESS_CTRL:
1274 return chip_class >= GFX7 ? 128 : 64;
1275 case MESA_SHADER_GEOMETRY:
1276 return chip_class >= GFX9 ? 128 : 64;
1277 case MESA_SHADER_COMPUTE:
1278 break;
1279 default:
1280 return 0;
1281 }
1282
1283 unsigned max_workgroup_size = sizes[0] * sizes[1] * sizes[2];
1284 return max_workgroup_size;
1285}
Bas Nieuwenhuizen290ca0c2019-06-01 18:46:21 +02001286
1287unsigned
1288radv_get_max_waves(struct radv_device *device,
1289 struct radv_shader_variant *variant,
1290 gl_shader_stage stage)
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001291{
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001292 enum chip_class chip_class = device->physical_device->rad_info.chip_class;
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001293 unsigned lds_increment = chip_class >= GFX7 ? 512 : 256;
Samuel Pitoiset83499ac2019-09-03 17:39:23 +02001294 uint8_t wave_size = variant->info.wave_size;
Bas Nieuwenhuizen290ca0c2019-06-01 18:46:21 +02001295 struct ac_shader_config *conf = &variant->config;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001296 unsigned max_simd_waves;
1297 unsigned lds_per_wave = 0;
1298
Marek Olšákca430062019-09-12 19:39:02 -04001299 max_simd_waves = device->physical_device->rad_info.max_wave64_per_simd;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001300
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001301 if (stage == MESA_SHADER_FRAGMENT) {
1302 lds_per_wave = conf->lds_size * lds_increment +
Samuel Pitoiset83499ac2019-09-03 17:39:23 +02001303 align(variant->info.ps.num_interp * 48,
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001304 lds_increment);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001305 } else if (stage == MESA_SHADER_COMPUTE) {
1306 unsigned max_workgroup_size =
Bas Nieuwenhuizen739a2882019-06-01 20:25:47 +02001307 radv_get_max_workgroup_size(chip_class, stage, variant->info.cs.block_size);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001308 lds_per_wave = (conf->lds_size * lds_increment) /
Samuel Pitoisetea385652019-07-30 18:32:42 +02001309 DIV_ROUND_UP(max_workgroup_size, wave_size);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001310 }
1311
Rhys Perry7453c1a2019-10-18 21:13:44 +01001312 if (conf->num_sgprs) {
1313 unsigned sgprs = align(conf->num_sgprs, chip_class >= GFX8 ? 16 : 8);
Samuel Pitoiset2f7bb932018-04-06 14:06:24 +02001314 max_simd_waves =
1315 MIN2(max_simd_waves,
Marek Olšák0692ae32019-09-12 19:46:02 -04001316 device->physical_device->rad_info.num_physical_sgprs_per_simd /
Rhys Perry7453c1a2019-10-18 21:13:44 +01001317 sgprs);
1318 }
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001319
Rhys Perry7453c1a2019-10-18 21:13:44 +01001320 if (conf->num_vgprs) {
1321 unsigned vgprs = align(conf->num_vgprs, wave_size == 32 ? 8 : 4);
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001322 max_simd_waves =
1323 MIN2(max_simd_waves,
Rhys Perry7453c1a2019-10-18 21:13:44 +01001324 RADV_NUM_PHYSICAL_VGPRS / vgprs);
1325 }
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001326
1327 /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD
1328 * that PS can use.
1329 */
1330 if (lds_per_wave)
1331 max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave);
1332
Bas Nieuwenhuizen290ca0c2019-06-01 18:46:21 +02001333 return max_simd_waves;
1334}
1335
1336static void
1337generate_shader_stats(struct radv_device *device,
1338 struct radv_shader_variant *variant,
1339 gl_shader_stage stage,
1340 struct _mesa_string_buffer *buf)
1341{
1342 struct ac_shader_config *conf = &variant->config;
1343 unsigned max_simd_waves = radv_get_max_waves(device, variant, stage);
1344
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001345 if (stage == MESA_SHADER_FRAGMENT) {
Alex Smithde889792017-10-27 14:25:05 +01001346 _mesa_string_buffer_printf(buf, "*** SHADER CONFIG ***\n"
1347 "SPI_PS_INPUT_ADDR = 0x%04x\n"
1348 "SPI_PS_INPUT_ENA = 0x%04x\n",
1349 conf->spi_ps_input_addr, conf->spi_ps_input_ena);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001350 }
1351
Alex Smithde889792017-10-27 14:25:05 +01001352 _mesa_string_buffer_printf(buf, "*** SHADER STATS ***\n"
1353 "SGPRS: %d\n"
1354 "VGPRS: %d\n"
1355 "Spilled SGPRs: %d\n"
1356 "Spilled VGPRs: %d\n"
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001357 "PrivMem VGPRS: %d\n"
Alex Smithde889792017-10-27 14:25:05 +01001358 "Code Size: %d bytes\n"
1359 "LDS: %d blocks\n"
1360 "Scratch: %d bytes per wave\n"
1361 "Max Waves: %d\n"
1362 "********************\n\n\n",
1363 conf->num_sgprs, conf->num_vgprs,
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001364 conf->spilled_sgprs, conf->spilled_vgprs,
Connor Abbott5dadbab2019-08-29 17:15:46 +02001365 variant->info.private_mem_vgprs, variant->exec_size,
Alex Smithde889792017-10-27 14:25:05 +01001366 conf->lds_size, conf->scratch_bytes_per_wave,
1367 max_simd_waves);
1368}
1369
1370void
1371radv_shader_dump_stats(struct radv_device *device,
1372 struct radv_shader_variant *variant,
1373 gl_shader_stage stage,
1374 FILE *file)
1375{
1376 struct _mesa_string_buffer *buf = _mesa_string_buffer_create(NULL, 256);
1377
1378 generate_shader_stats(device, variant, stage, buf);
1379
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001380 fprintf(file, "\n%s:\n", radv_get_shader_name(&variant->info, stage));
Alex Smith134a40d2017-10-30 08:38:14 +00001381 fprintf(file, "%s", buf->buf);
Alex Smithde889792017-10-27 14:25:05 +01001382
1383 _mesa_string_buffer_destroy(buf);
1384}
1385
1386VkResult
1387radv_GetShaderInfoAMD(VkDevice _device,
1388 VkPipeline _pipeline,
1389 VkShaderStageFlagBits shaderStage,
1390 VkShaderInfoTypeAMD infoType,
1391 size_t* pInfoSize,
1392 void* pInfo)
1393{
1394 RADV_FROM_HANDLE(radv_device, device, _device);
1395 RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline);
1396 gl_shader_stage stage = vk_to_mesa_shader_stage(shaderStage);
1397 struct radv_shader_variant *variant = pipeline->shaders[stage];
1398 struct _mesa_string_buffer *buf;
1399 VkResult result = VK_SUCCESS;
1400
1401 /* Spec doesn't indicate what to do if the stage is invalid, so just
1402 * return no info for this. */
1403 if (!variant)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +02001404 return vk_error(device->instance, VK_ERROR_FEATURE_NOT_PRESENT);
Alex Smithde889792017-10-27 14:25:05 +01001405
1406 switch (infoType) {
1407 case VK_SHADER_INFO_TYPE_STATISTICS_AMD:
1408 if (!pInfo) {
1409 *pInfoSize = sizeof(VkShaderStatisticsInfoAMD);
1410 } else {
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001411 unsigned lds_multiplier = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
Alex Smithde889792017-10-27 14:25:05 +01001412 struct ac_shader_config *conf = &variant->config;
1413
1414 VkShaderStatisticsInfoAMD statistics = {};
1415 statistics.shaderStageMask = shaderStage;
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001416 statistics.numPhysicalVgprs = RADV_NUM_PHYSICAL_VGPRS;
Marek Olšák0692ae32019-09-12 19:46:02 -04001417 statistics.numPhysicalSgprs = device->physical_device->rad_info.num_physical_sgprs_per_simd;
Alex Smithde889792017-10-27 14:25:05 +01001418 statistics.numAvailableSgprs = statistics.numPhysicalSgprs;
1419
1420 if (stage == MESA_SHADER_COMPUTE) {
Bas Nieuwenhuizen739a2882019-06-01 20:25:47 +02001421 unsigned *local_size = variant->info.cs.block_size;
Alex Smithde889792017-10-27 14:25:05 +01001422 unsigned workgroup_size = local_size[0] * local_size[1] * local_size[2];
1423
1424 statistics.numAvailableVgprs = statistics.numPhysicalVgprs /
Eric Engestromd85fef12018-06-15 17:49:08 +01001425 ceil((double)workgroup_size / statistics.numPhysicalVgprs);
Alex Smithde889792017-10-27 14:25:05 +01001426
1427 statistics.computeWorkGroupSize[0] = local_size[0];
1428 statistics.computeWorkGroupSize[1] = local_size[1];
1429 statistics.computeWorkGroupSize[2] = local_size[2];
1430 } else {
1431 statistics.numAvailableVgprs = statistics.numPhysicalVgprs;
1432 }
1433
1434 statistics.resourceUsage.numUsedVgprs = conf->num_vgprs;
1435 statistics.resourceUsage.numUsedSgprs = conf->num_sgprs;
1436 statistics.resourceUsage.ldsSizePerLocalWorkGroup = 32768;
1437 statistics.resourceUsage.ldsUsageSizeInBytes = conf->lds_size * lds_multiplier;
1438 statistics.resourceUsage.scratchMemUsageInBytes = conf->scratch_bytes_per_wave;
1439
1440 size_t size = *pInfoSize;
1441 *pInfoSize = sizeof(statistics);
1442
1443 memcpy(pInfo, &statistics, MIN2(size, *pInfoSize));
1444
1445 if (size < *pInfoSize)
1446 result = VK_INCOMPLETE;
1447 }
1448
1449 break;
1450 case VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD:
1451 buf = _mesa_string_buffer_create(NULL, 1024);
1452
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001453 _mesa_string_buffer_printf(buf, "%s:\n", radv_get_shader_name(&variant->info, stage));
Rhys Perry3c966fd2019-09-25 11:48:04 +01001454 _mesa_string_buffer_printf(buf, "%s\n\n", variant->ir_string);
Alex Smithde889792017-10-27 14:25:05 +01001455 _mesa_string_buffer_printf(buf, "%s\n\n", variant->disasm_string);
1456 generate_shader_stats(device, variant, stage, buf);
1457
1458 /* Need to include the null terminator. */
1459 size_t length = buf->length + 1;
1460
1461 if (!pInfo) {
1462 *pInfoSize = length;
1463 } else {
1464 size_t size = *pInfoSize;
1465 *pInfoSize = length;
1466
1467 memcpy(pInfo, buf->buf, MIN2(size, length));
1468
1469 if (size < length)
1470 result = VK_INCOMPLETE;
1471 }
1472
1473 _mesa_string_buffer_destroy(buf);
1474 break;
1475 default:
1476 /* VK_SHADER_INFO_TYPE_BINARY_AMD unimplemented for now. */
1477 result = VK_ERROR_FEATURE_NOT_PRESENT;
1478 break;
1479 }
1480
1481 return result;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001482}