blob: 06e8edf9ea2ef2f163ef630379b43a9ab71216eb [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,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020084};
85
Daniel Schürmanna70a9982019-09-17 14:35:22 +020086static const struct nir_shader_compiler_options nir_options_aco = {
87 .vertex_id_zero_based = true,
88 .lower_scmp = true,
89 .lower_flrp16 = true,
90 .lower_flrp32 = true,
91 .lower_flrp64 = true,
92 .lower_device_index_to_zero = true,
93 .lower_fdiv = true,
Rhys Perrya87b0f52019-10-03 15:32:19 +010094 .lower_fmod = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +020095 .lower_bitfield_insert_to_bitfield_select = true,
96 .lower_bitfield_extract = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +020097 .lower_pack_snorm_2x16 = true,
98 .lower_pack_snorm_4x8 = true,
99 .lower_pack_unorm_2x16 = true,
100 .lower_pack_unorm_4x8 = true,
101 .lower_unpack_snorm_2x16 = true,
102 .lower_unpack_snorm_4x8 = true,
103 .lower_unpack_unorm_2x16 = true,
104 .lower_unpack_unorm_4x8 = true,
105 .lower_unpack_half_2x16 = true,
106 .lower_extract_byte = true,
107 .lower_extract_word = true,
108 .lower_ffma = true,
109 .lower_fpow = true,
110 .lower_mul_2x32_64 = true,
111 .lower_rotate = true,
112 .max_unroll_iterations = 32,
113 .use_interpolated_input_intrinsics = true,
114};
115
Daniel Schürmann45638e12019-07-29 17:51:01 +0200116bool
117radv_can_dump_shader(struct radv_device *device,
118 struct radv_shader_module *module,
119 bool is_gs_copy_shader)
120{
121 if (!(device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS))
122 return false;
Timur Kristóf30f0c0e2019-09-18 14:39:10 +0200123 if (module)
124 return !module->nir ||
125 (device->instance->debug_flags & RADV_DEBUG_DUMP_META_SHADERS);
Daniel Schürmann45638e12019-07-29 17:51:01 +0200126
Timur Kristóf30f0c0e2019-09-18 14:39:10 +0200127 return is_gs_copy_shader;
Daniel Schürmann45638e12019-07-29 17:51:01 +0200128}
129
130bool
131radv_can_dump_shader_stats(struct radv_device *device,
132 struct radv_shader_module *module)
133{
134 /* Only dump non-meta shader stats. */
135 return device->instance->debug_flags & RADV_DEBUG_DUMP_SHADER_STATS &&
136 module && !module->nir;
137}
138
139unsigned shader_io_get_unique_index(gl_varying_slot slot)
140{
141 /* handle patch indices separate */
142 if (slot == VARYING_SLOT_TESS_LEVEL_OUTER)
143 return 0;
144 if (slot == VARYING_SLOT_TESS_LEVEL_INNER)
145 return 1;
146 if (slot >= VARYING_SLOT_PATCH0 && slot <= VARYING_SLOT_TESS_MAX)
147 return 2 + (slot - VARYING_SLOT_PATCH0);
148 if (slot == VARYING_SLOT_POS)
149 return 0;
150 if (slot == VARYING_SLOT_PSIZ)
151 return 1;
152 if (slot == VARYING_SLOT_CLIP_DIST0)
153 return 2;
154 if (slot == VARYING_SLOT_CLIP_DIST1)
155 return 3;
156 /* 3 is reserved for clip dist as well */
157 if (slot >= VARYING_SLOT_VAR0 && slot <= VARYING_SLOT_VAR31)
158 return 4 + (slot - VARYING_SLOT_VAR0);
159 unreachable("illegal slot in get unique index\n");
160}
161
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200162VkResult radv_CreateShaderModule(
163 VkDevice _device,
164 const VkShaderModuleCreateInfo* pCreateInfo,
165 const VkAllocationCallbacks* pAllocator,
166 VkShaderModule* pShaderModule)
167{
168 RADV_FROM_HANDLE(radv_device, device, _device);
169 struct radv_shader_module *module;
170
171 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO);
172 assert(pCreateInfo->flags == 0);
173
174 module = vk_alloc2(&device->alloc, pAllocator,
175 sizeof(*module) + pCreateInfo->codeSize, 8,
176 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
177 if (module == NULL)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +0200178 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200179
180 module->nir = NULL;
181 module->size = pCreateInfo->codeSize;
182 memcpy(module->data, pCreateInfo->pCode, module->size);
183
184 _mesa_sha1_compute(module->data, module->size, module->sha1);
185
186 *pShaderModule = radv_shader_module_to_handle(module);
187
188 return VK_SUCCESS;
189}
190
191void radv_DestroyShaderModule(
192 VkDevice _device,
193 VkShaderModule _module,
194 const VkAllocationCallbacks* pAllocator)
195{
196 RADV_FROM_HANDLE(radv_device, device, _device);
197 RADV_FROM_HANDLE(radv_shader_module, module, _module);
198
199 if (!module)
200 return;
201
202 vk_free2(&device->alloc, pAllocator, module);
203}
204
Bas Nieuwenhuizen06f05042017-02-09 00:12:10 +0100205void
Timothy Arceri06675712018-10-18 09:42:17 +1100206radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively,
207 bool allow_copies)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200208{
209 bool progress;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700210 unsigned lower_flrp =
211 (shader->options->lower_flrp16 ? 16 : 0) |
212 (shader->options->lower_flrp32 ? 32 : 0) |
213 (shader->options->lower_flrp64 ? 64 : 0);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200214
215 do {
216 progress = false;
217
Karol Herbst9b240282019-01-16 00:05:04 +0100218 NIR_PASS(progress, shader, nir_split_array_vars, nir_var_function_temp);
219 NIR_PASS(progress, shader, nir_shrink_vec_array_vars, nir_var_function_temp);
Timothy Arceri8086fa12018-10-18 10:19:16 +1100220
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200221 NIR_PASS_V(shader, nir_lower_vars_to_ssa);
Iago Toral Quiroga2d648e52018-04-27 09:28:48 +0200222 NIR_PASS_V(shader, nir_lower_pack);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100223
Timothy Arceri06675712018-10-18 09:42:17 +1100224 if (allow_copies) {
225 /* Only run this pass in the first call to
226 * radv_optimize_nir. Later calls assume that we've
227 * lowered away any copy_deref instructions and we
228 * don't want to introduce any more.
229 */
230 NIR_PASS(progress, shader, nir_opt_find_array_copies);
231 }
232
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100233 NIR_PASS(progress, shader, nir_opt_copy_prop_vars);
234 NIR_PASS(progress, shader, nir_opt_dead_write_vars);
Connor Abbotta69ab1b2019-06-26 14:03:31 +0200235 NIR_PASS(progress, shader, nir_remove_dead_variables,
236 nir_var_function_temp);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100237
Vasily Khoruzhick9367d2c2019-08-29 21:14:54 -0700238 NIR_PASS_V(shader, nir_lower_alu_to_scalar, NULL, NULL);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200239 NIR_PASS_V(shader, nir_lower_phis_to_scalar);
240
241 NIR_PASS(progress, shader, nir_copy_prop);
242 NIR_PASS(progress, shader, nir_opt_remove_phis);
243 NIR_PASS(progress, shader, nir_opt_dce);
244 if (nir_opt_trivial_continues(shader)) {
245 progress = true;
246 NIR_PASS(progress, shader, nir_copy_prop);
Dave Airlie64d9bd12017-09-13 03:49:31 +0100247 NIR_PASS(progress, shader, nir_opt_remove_phis);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200248 NIR_PASS(progress, shader, nir_opt_dce);
249 }
Timothy Arcerie30804c2019-04-08 20:13:49 +1000250 NIR_PASS(progress, shader, nir_opt_if, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200251 NIR_PASS(progress, shader, nir_opt_dead_cf);
252 NIR_PASS(progress, shader, nir_opt_cse);
Ian Romanick378f9962018-06-18 16:11:55 -0700253 NIR_PASS(progress, shader, nir_opt_peephole_select, 8, true, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200254 NIR_PASS(progress, shader, nir_opt_constant_folding);
Timothy Arcerie19a8fe2019-05-02 13:38:52 +1000255 NIR_PASS(progress, shader, nir_opt_algebraic);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700256
257 if (lower_flrp != 0) {
Ian Romanick1f1007a2019-05-08 07:32:43 -0700258 bool lower_flrp_progress = false;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700259 NIR_PASS(lower_flrp_progress,
260 shader,
261 nir_lower_flrp,
262 lower_flrp,
263 false /* always_precise */,
264 shader->options->lower_ffma);
265 if (lower_flrp_progress) {
266 NIR_PASS(progress, shader,
267 nir_opt_constant_folding);
268 progress = true;
269 }
270
271 /* Nothing should rematerialize any flrps, so we only
272 * need to do this lowering once.
273 */
274 lower_flrp = 0;
275 }
276
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200277 NIR_PASS(progress, shader, nir_opt_undef);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200278 if (shader->options->max_unroll_iterations) {
279 NIR_PASS(progress, shader, nir_opt_loop_unroll, 0);
280 }
Timothy Arcerice188812018-05-08 14:57:55 +1000281 } while (progress && !optimize_conservatively);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100282
Daniel Schürmann64b73862019-07-20 19:21:14 +0200283 NIR_PASS(progress, shader, nir_opt_conditional_discard);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100284 NIR_PASS(progress, shader, nir_opt_shrink_load);
Rhys Perry77401492019-07-24 19:23:21 +0100285 NIR_PASS(progress, shader, nir_opt_move, nir_move_load_ubo);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200286}
287
288nir_shader *
289radv_shader_compile_to_nir(struct radv_device *device,
290 struct radv_shader_module *module,
291 const char *entrypoint_name,
292 gl_shader_stage stage,
Timothy Arcerice188812018-05-08 14:57:55 +1000293 const VkSpecializationInfo *spec_info,
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100294 const VkPipelineCreateFlags flags,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200295 const struct radv_pipeline_layout *layout,
296 bool use_aco)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200297{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200298 nir_shader *nir;
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200299 const nir_shader_compiler_options *nir_options = use_aco ? &nir_options_aco :
300 &nir_options_llvm;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200301 if (module->nir) {
302 /* Some things such as our meta clear/blit code will give us a NIR
303 * shader directly. In that case, we just ignore the SPIR-V entirely
304 * and just use the NIR shader */
305 nir = module->nir;
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200306 nir->options = nir_options;
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500307 nir_validate_shader(nir, "in internal shader");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200308
309 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200310 } else {
311 uint32_t *spirv = (uint32_t *) module->data;
312 assert(module->size % 4 == 0);
313
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100314 if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV)
Samuel Pitoiset844ae722017-09-22 16:56:40 +0200315 radv_print_spirv(spirv, module->size, stderr);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200316
317 uint32_t num_spec_entries = 0;
318 struct nir_spirv_specialization *spec_entries = NULL;
319 if (spec_info && spec_info->mapEntryCount > 0) {
320 num_spec_entries = spec_info->mapEntryCount;
321 spec_entries = malloc(num_spec_entries * sizeof(*spec_entries));
322 for (uint32_t i = 0; i < num_spec_entries; i++) {
323 VkSpecializationMapEntry entry = spec_info->pMapEntries[i];
324 const void *data = spec_info->pData + entry.offset;
325 assert(data + entry.size <= spec_info->pData + spec_info->dataSize);
326
327 spec_entries[i].id = spec_info->pMapEntries[i].constantID;
328 if (spec_info->dataSize == 8)
329 spec_entries[i].data64 = *(const uint64_t *)data;
330 else
331 spec_entries[i].data32 = *(const uint32_t *)data;
332 }
333 }
Jason Ekstrande19c6232017-10-18 17:28:19 -0700334 const struct spirv_to_nir_options spirv_options = {
Jason Ekstrand63b9aa22018-12-14 18:36:01 -0600335 .lower_ubo_ssbo_access_to_offsets = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700336 .caps = {
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200337 .amd_gcn_shader = true,
Samuel Pitoisete73d8632019-08-21 08:38:24 +0200338 .amd_shader_ballot = device->physical_device->use_shader_ballot,
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200339 .amd_trinary_minmax = true,
Daniel Schürmann28126222019-09-17 17:09:52 +0200340 .demote_to_helper_invocation = device->physical_device->use_aco,
Samuel Pitoisetb3e34402019-04-19 12:40:37 +0200341 .derivative_group = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600342 .descriptor_array_dynamic_indexing = true,
Juan A. Suarez Romero06c9d7f2019-04-29 17:05:13 +0200343 .descriptor_array_non_uniform_indexing = true,
344 .descriptor_indexing = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +0100345 .device_group = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700346 .draw_parameters = true,
Samuel Pitoiset7c502142019-10-14 11:27:32 +0200347 .float_controls = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200348 .float16 = !device->physical_device->use_aco,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700349 .float64 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600350 .geometry_streams = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700351 .image_read_without_format = true,
352 .image_write_without_format = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200353 .int8 = !device->physical_device->use_aco,
354 .int16 = !device->physical_device->use_aco,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600355 .int64 = true,
Samuel Pitoiset9cf55b02019-04-16 10:38:24 +0200356 .int64_atomics = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700357 .multiview = true,
Bas Nieuwenhuizen13ab63b2019-01-24 02:06:27 +0100358 .physical_storage_buffer_address = true,
Samuel Pitoiset07ff3672019-07-16 17:11:50 +0200359 .post_depth_coverage = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600360 .runtime_descriptor_array = true,
Samuel Pitoisetcbd6f0a2019-10-07 10:26:22 +0200361 .shader_clock = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600362 .shader_viewport_index_layer = true,
363 .stencil_export = true,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200364 .storage_8bit = !device->physical_device->use_aco,
365 .storage_16bit = !device->physical_device->use_aco,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600366 .storage_image_ms = true,
Samuel Pitoiset35656822018-09-18 15:27:52 +0200367 .subgroup_arithmetic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100368 .subgroup_ballot = true,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100369 .subgroup_basic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100370 .subgroup_quad = true,
371 .subgroup_shuffle = true,
372 .subgroup_vote = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600373 .tessellation = true,
Samuel Pitoisetb4eb0292018-10-05 18:04:56 +0200374 .transform_feedback = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600375 .variable_pointers = true,
Daniel Schürmannffbf75c2018-02-23 13:55:01 +0100376 },
Caio Marcelo de Oliveira Filho31a74762019-05-01 14:15:32 -0700377 .ubo_addr_format = nir_address_format_32bit_index_offset,
378 .ssbo_addr_format = nir_address_format_32bit_index_offset,
379 .phys_ssbo_addr_format = nir_address_format_64bit_global,
380 .push_const_addr_format = nir_address_format_logical,
381 .shared_addr_format = nir_address_format_32bit_offset,
Connor Abbott27f0c3c2019-05-13 15:39:54 +0200382 .frag_coord_is_sysval = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200383 };
Caio Marcelo de Oliveira Filhoe45bf012019-05-19 00:22:17 -0700384 nir = spirv_to_nir(spirv, module->size / 4,
385 spec_entries, num_spec_entries,
386 stage, entrypoint_name,
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200387 &spirv_options, nir_options);
Jason Ekstrand59fb59a2017-09-14 19:52:38 -0700388 assert(nir->info.stage == stage);
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500389 nir_validate_shader(nir, "after spirv_to_nir");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200390
391 free(spec_entries);
392
393 /* We have to lower away local constant initializers right before we
394 * inline functions. That way they get properly initialized at the top
395 * of the function and not at the top of its caller.
396 */
Karol Herbst9b240282019-01-16 00:05:04 +0100397 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_function_temp);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200398 NIR_PASS_V(nir, nir_lower_returns);
399 NIR_PASS_V(nir, nir_inline_functions);
Jason Ekstrandfc9c4f82018-12-13 11:08:13 -0600400 NIR_PASS_V(nir, nir_opt_deref);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200401
402 /* Pick off the single entrypoint that we want */
403 foreach_list_typed_safe(nir_function, func, node, &nir->functions) {
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700404 if (func->is_entrypoint)
405 func->name = ralloc_strdup(func, "main");
406 else
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200407 exec_node_remove(&func->node);
408 }
409 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200410
Dave Airliee8d9b7a2018-03-19 04:27:49 +0000411 /* Make sure we lower constant initializers on output variables so that
412 * nir_remove_dead_variables below sees the corresponding stores
413 */
414 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_shader_out);
415
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200416 /* Now that we've deleted all but the main function, we can go ahead and
417 * lower the rest of the constant initializers.
418 */
419 NIR_PASS_V(nir, nir_lower_constant_initializers, ~0);
Jason Ekstrandb0c643d2018-03-21 17:30:22 -0700420
421 /* Split member structs. We do this before lower_io_to_temporaries so that
422 * it doesn't lower system values to temporaries by accident.
423 */
424 NIR_PASS_V(nir, nir_split_var_copies);
425 NIR_PASS_V(nir, nir_split_per_member_structs);
426
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200427 if (nir->info.stage == MESA_SHADER_FRAGMENT && use_aco)
428 NIR_PASS_V(nir, nir_lower_io_to_vector, nir_var_shader_out);
Daniel Schürmanne41e9322019-04-05 11:01:39 +0200429 if (nir->info.stage == MESA_SHADER_FRAGMENT)
Connor Abbott27f0c3c2019-05-13 15:39:54 +0200430 NIR_PASS_V(nir, nir_lower_input_attachments, true);
Daniel Schürmanne41e9322019-04-05 11:01:39 +0200431
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200432 NIR_PASS_V(nir, nir_remove_dead_variables,
Daniel Schürmann8b78cce2019-09-17 18:24:06 +0200433 nir_var_shader_in | nir_var_shader_out | nir_var_system_value | nir_var_mem_shared);
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200434
Connor Abbott3f5b5412019-09-05 13:57:11 +0200435 NIR_PASS_V(nir, nir_propagate_invariant);
436
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200437 NIR_PASS_V(nir, nir_lower_system_values);
438 NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays);
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100439 NIR_PASS_V(nir, radv_nir_lower_ycbcr_textures, layout);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200440 }
441
442 /* Vulkan uses the separate-shader linking model */
443 nir->info.separate_shader = true;
444
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700445 nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir));
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200446
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200447 static const nir_lower_tex_options tex_options = {
448 .lower_txp = ~0,
Jason Ekstrand08f804e2019-03-19 13:55:21 -0500449 .lower_tg4_offsets = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200450 };
451
452 nir_lower_tex(nir, &tex_options);
453
454 nir_lower_vars_to_ssa(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200455
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200456 if (nir->info.stage == MESA_SHADER_VERTEX ||
Connor Abbott118a66d2019-05-10 10:44:20 +0200457 nir->info.stage == MESA_SHADER_GEOMETRY ||
458 nir->info.stage == MESA_SHADER_FRAGMENT) {
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200459 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
460 nir_shader_get_entrypoint(nir), true, true);
Connor Abbott118a66d2019-05-10 10:44:20 +0200461 } else if (nir->info.stage == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200462 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
463 nir_shader_get_entrypoint(nir), true, false);
464 }
465
Samuel Pitoisetded15092018-05-23 14:31:55 +0200466 nir_split_var_copies(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200467
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200468 nir_lower_global_vars_to_local(nir);
Karol Herbst9b240282019-01-16 00:05:04 +0100469 nir_remove_dead_variables(nir, nir_var_function_temp);
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100470 nir_lower_subgroups(nir, &(struct nir_lower_subgroups_options) {
471 .subgroup_size = 64,
472 .ballot_bit_size = 64,
473 .lower_to_scalar = 1,
474 .lower_subgroup_masks = 1,
475 .lower_shuffle = 1,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100476 .lower_shuffle_to_32bit = 1,
477 .lower_vote_eq_to_ballot = 1,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100478 });
479
Timothy Arceri72e42872018-09-24 18:18:48 +1000480 nir_lower_load_const_to_scalar(nir);
481
Timothy Arcerice188812018-05-08 14:57:55 +1000482 if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT))
Timothy Arceri06675712018-10-18 09:42:17 +1100483 radv_optimize_nir(nir, false, true);
484
485 /* We call nir_lower_var_copies() after the first radv_optimize_nir()
486 * to remove any copies introduced by nir_opt_find_array_copies().
487 */
488 nir_lower_var_copies(nir);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200489
Connor Abbott71a67942019-08-30 16:08:47 +0200490 /* Lower large variables that are always constant with load_constant
491 * intrinsics, which get turned into PC-relative loads from a data
492 * section next to the shader.
493 */
494 NIR_PASS_V(nir, nir_opt_large_constants,
495 glsl_get_natural_size_align_bytes, 16);
496
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100497 /* Indirect lowering must be called after the radv_optimize_nir() loop
498 * has been called at least once. Otherwise indirect lowering can
499 * bloat the instruction count of the loop and cause it to be
500 * considered too large for unrolling.
501 */
502 ac_lower_indirect_derefs(nir, device->physical_device->rad_info.chip_class);
Timothy Arceri06675712018-10-18 09:42:17 +1100503 radv_optimize_nir(nir, flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, false);
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100504
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200505 return nir;
506}
507
Connor Abbott118a66d2019-05-10 10:44:20 +0200508static int
509type_size_vec4(const struct glsl_type *type, bool bindless)
510{
511 return glsl_count_attribute_slots(type, false);
512}
513
514static nir_variable *
515find_layer_in_var(nir_shader *nir)
516{
517 nir_foreach_variable(var, &nir->inputs) {
518 if (var->data.location == VARYING_SLOT_LAYER) {
519 return var;
520 }
521 }
522
523 nir_variable *var =
524 nir_variable_create(nir, nir_var_shader_in, glsl_int_type(), "layer id");
525 var->data.location = VARYING_SLOT_LAYER;
526 var->data.interpolation = INTERP_MODE_FLAT;
527 return var;
528}
529
530/* We use layered rendering to implement multiview, which means we need to map
531 * view_index to gl_Layer. The attachment lowering also uses needs to know the
532 * layer so that it can sample from the correct layer. The code generates a
533 * load from the layer_id sysval, but since we don't have a way to get at this
534 * information from the fragment shader, we also need to lower this to the
535 * gl_Layer varying. This pass lowers both to a varying load from the LAYER
536 * slot, before lowering io, so that nir_assign_var_locations() will give the
537 * LAYER varying the correct driver_location.
538 */
539
540static bool
541lower_view_index(nir_shader *nir)
542{
543 bool progress = false;
544 nir_function_impl *entry = nir_shader_get_entrypoint(nir);
545 nir_builder b;
546 nir_builder_init(&b, entry);
547
548 nir_variable *layer = NULL;
549 nir_foreach_block(block, entry) {
550 nir_foreach_instr_safe(instr, block) {
551 if (instr->type != nir_instr_type_intrinsic)
552 continue;
553
554 nir_intrinsic_instr *load = nir_instr_as_intrinsic(instr);
555 if (load->intrinsic != nir_intrinsic_load_view_index &&
556 load->intrinsic != nir_intrinsic_load_layer_id)
557 continue;
558
559 if (!layer)
560 layer = find_layer_in_var(nir);
561
562 b.cursor = nir_before_instr(instr);
563 nir_ssa_def *def = nir_load_var(&b, layer);
564 nir_ssa_def_rewrite_uses(&load->dest.ssa,
565 nir_src_for_ssa(def));
566
567 nir_instr_remove(instr);
568 progress = true;
569 }
570 }
571
572 return progress;
573}
574
Samuel Pitoiset8d44f832019-08-29 11:16:44 +0200575void
576radv_lower_fs_io(nir_shader *nir)
Connor Abbott118a66d2019-05-10 10:44:20 +0200577{
578 NIR_PASS_V(nir, lower_view_index);
579 nir_assign_io_var_locations(&nir->inputs, &nir->num_inputs,
580 MESA_SHADER_FRAGMENT);
581
Connor Abbott118a66d2019-05-10 10:44:20 +0200582 NIR_PASS_V(nir, nir_lower_io, nir_var_shader_in, type_size_vec4, 0);
583
584 /* This pass needs actual constants */
585 nir_opt_constant_folding(nir);
586
587 NIR_PASS_V(nir, nir_io_add_const_offset_to_base, nir_var_shader_in);
Connor Abbott118a66d2019-05-10 10:44:20 +0200588}
589
590
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200591void *
592radv_alloc_shader_memory(struct radv_device *device,
593 struct radv_shader_variant *shader)
594{
595 mtx_lock(&device->shader_slab_mutex);
596 list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
597 uint64_t offset = 0;
598 list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) {
599 if (s->bo_offset - offset >= shader->code_size) {
600 shader->bo = slab->bo;
601 shader->bo_offset = offset;
602 list_addtail(&shader->slab_list, &s->slab_list);
603 mtx_unlock(&device->shader_slab_mutex);
604 return slab->ptr + offset;
605 }
606 offset = align_u64(s->bo_offset + s->code_size, 256);
607 }
608 if (slab->size - offset >= shader->code_size) {
609 shader->bo = slab->bo;
610 shader->bo_offset = offset;
611 list_addtail(&shader->slab_list, &slab->shaders);
612 mtx_unlock(&device->shader_slab_mutex);
613 return slab->ptr + offset;
614 }
615 }
616
617 mtx_unlock(&device->shader_slab_mutex);
618 struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab));
619
620 slab->size = 256 * 1024;
621 slab->bo = device->ws->buffer_create(device->ws, slab->size, 256,
Samuel Pitoiseta3c2a862018-01-04 15:19:47 +0100622 RADEON_DOMAIN_VRAM,
623 RADEON_FLAG_NO_INTERPROCESS_SHARING |
Samuel Pitoiset2b9c3712019-08-20 17:20:42 +0200624 (device->physical_device->rad_info.cpdma_prefetch_writes_memory ?
Bas Nieuwenhuizenead54d42019-01-28 00:28:05 +0100625 0 : RADEON_FLAG_READ_ONLY),
626 RADV_BO_PRIORITY_SHADER);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200627 slab->ptr = (char*)device->ws->buffer_map(slab->bo);
628 list_inithead(&slab->shaders);
629
630 mtx_lock(&device->shader_slab_mutex);
631 list_add(&slab->slabs, &device->shader_slabs);
632
633 shader->bo = slab->bo;
634 shader->bo_offset = 0;
635 list_add(&shader->slab_list, &slab->shaders);
636 mtx_unlock(&device->shader_slab_mutex);
637 return slab->ptr;
638}
639
640void
641radv_destroy_shader_slabs(struct radv_device *device)
642{
643 list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
644 device->ws->buffer_destroy(slab->bo);
645 free(slab);
646 }
647 mtx_destroy(&device->shader_slab_mutex);
648}
649
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200650/* For the UMR disassembler. */
651#define DEBUGGER_END_OF_CODE_MARKER 0xbf9f0000 /* invalid instruction */
652#define DEBUGGER_NUM_MARKERS 5
653
654static unsigned
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200655radv_get_shader_binary_size(size_t code_size)
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200656{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200657 return code_size + DEBUGGER_NUM_MARKERS * 4;
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200658}
659
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200660static void radv_postprocess_config(const struct radv_physical_device *pdevice,
661 const struct ac_shader_config *config_in,
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200662 const struct radv_shader_info *info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200663 gl_shader_stage stage,
664 struct ac_shader_config *config_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200665{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200666 bool scratch_enabled = config_in->scratch_bytes_per_wave > 0;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200667 unsigned vgpr_comp_cnt = 0;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200668 unsigned num_input_vgprs = info->num_input_vgprs;
669
670 if (stage == MESA_SHADER_FRAGMENT) {
Timur Kristófa4fd8ba2019-09-25 16:40:07 +0200671 num_input_vgprs = ac_get_fs_input_vgpr_cnt(config_in, NULL, NULL);
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200672 }
673
674 unsigned num_vgprs = MAX2(config_in->num_vgprs, num_input_vgprs);
675 /* +3 for scratch wave offset and VCC */
676 unsigned num_sgprs = MAX2(config_in->num_sgprs, info->num_input_sgprs + 3);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200677 unsigned num_shared_vgprs = config_in->num_shared_vgprs;
678 /* shared VGPRs are introduced in Navi and are allocated in blocks of 8 (RDNA ref 3.6.5) */
679 assert((pdevice->rad_info.chip_class >= GFX10 && num_shared_vgprs % 8 == 0)
680 || (pdevice->rad_info.chip_class < GFX10 && num_shared_vgprs == 0));
681 unsigned num_shared_vgpr_blocks = num_shared_vgprs / 8;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200682
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200683 *config_out = *config_in;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200684 config_out->num_vgprs = num_vgprs;
685 config_out->num_sgprs = num_sgprs;
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200686 config_out->num_shared_vgprs = num_shared_vgprs;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200687
688 /* Enable 64-bit and 16-bit denormals, because there is no performance
689 * cost.
690 *
691 * If denormals are enabled, all floating-point output modifiers are
692 * ignored.
693 *
694 * Don't enable denormals for 32-bit floats, because:
695 * - Floating-point output modifiers would be ignored by the hw.
696 * - Some opcodes don't support denormals, such as v_mad_f32. We would
697 * have to stop using those.
698 * - GFX6 & GFX7 would be very slow.
699 */
700 config_out->float_mode |= V_00B028_FP_64_DENORMS;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200701
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200702 config_out->rsrc2 = S_00B12C_USER_SGPR(info->num_user_sgprs) |
Samuel Pitoiseta15b3bc2019-09-09 10:23:30 +0200703 S_00B12C_SCRATCH_EN(scratch_enabled);
704
705 if (!pdevice->use_ngg_streamout) {
706 config_out->rsrc2 |= S_00B12C_SO_BASE0_EN(!!info->so.strides[0]) |
707 S_00B12C_SO_BASE1_EN(!!info->so.strides[1]) |
708 S_00B12C_SO_BASE2_EN(!!info->so.strides[2]) |
709 S_00B12C_SO_BASE3_EN(!!info->so.strides[3]) |
710 S_00B12C_SO_EN(!!info->so.num_outputs);
711 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200712
Samuel Pitoisetea385652019-07-30 18:32:42 +0200713 config_out->rsrc1 = S_00B848_VGPRS((num_vgprs - 1) /
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200714 (info->wave_size == 32 ? 8 : 4)) |
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200715 S_00B848_DX10_CLAMP(1) |
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200716 S_00B848_FLOAT_MODE(config_out->float_mode);
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200717
Samuel Pitoiset4c820942019-06-25 13:33:03 +0200718 if (pdevice->rad_info.chip_class >= GFX10) {
719 config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX10(info->num_user_sgprs >> 5);
720 } else {
721 config_out->rsrc1 |= S_00B228_SGPRS((num_sgprs - 1) / 8);
Samuel Pitoiset09abe572019-07-23 14:55:16 +0200722 config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX9(info->num_user_sgprs >> 5);
Samuel Pitoiset4c820942019-06-25 13:33:03 +0200723 }
724
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200725 switch (stage) {
726 case MESA_SHADER_TESS_EVAL:
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200727 if (info->is_ngg) {
728 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
729 config_out->rsrc2 |= S_00B22C_OC_LDS_EN(1);
730 } else if (info->tes.as_es) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200731 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200732 vgpr_comp_cnt = info->uses_prim_id ? 3 : 2;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200733
734 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200735 } else {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200736 bool enable_prim_id = info->tes.export_prim_id || info->uses_prim_id;
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200737 vgpr_comp_cnt = enable_prim_id ? 3 : 2;
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200738
739 config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200740 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200741 }
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200742 config_out->rsrc2 |= S_00B22C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200743 break;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200744 case MESA_SHADER_TESS_CTRL:
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200745 if (pdevice->rad_info.chip_class >= GFX9) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200746 /* We need at least 2 components for LS.
747 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
748 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
749 */
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200750 if (pdevice->rad_info.chip_class >= GFX10) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200751 vgpr_comp_cnt = info->vs.needs_instance_id ? 3 : 1;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200752 } else {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200753 vgpr_comp_cnt = info->vs.needs_instance_id ? 2 : 1;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200754 }
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200755 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200756 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200757 }
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200758 config_out->rsrc1 |= S_00B428_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
759 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200760 config_out->rsrc2 |= S_00B42C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200761 break;
762 case MESA_SHADER_VERTEX:
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200763 if (info->is_ngg) {
764 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
765 } else if (info->vs.as_ls) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200766 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200767 /* We need at least 2 components for LS.
768 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
769 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
770 */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200771 vgpr_comp_cnt = info->vs.needs_instance_id ? 2 : 1;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200772 } else if (info->vs.as_es) {
773 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200774 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200775 vgpr_comp_cnt = info->vs.needs_instance_id ? 1 : 0;
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200776 } else {
777 /* VGPR0-3: (VertexID, InstanceID / StepRate0, PrimID, InstanceID)
778 * If PrimID is disabled. InstanceID / StepRate1 is loaded instead.
779 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
780 */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200781 if (info->vs.needs_instance_id && pdevice->rad_info.chip_class >= GFX10) {
Bas Nieuwenhuizen2e763f72019-08-21 01:50:53 +0200782 vgpr_comp_cnt = 3;
783 } else if (info->vs.export_prim_id) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200784 vgpr_comp_cnt = 2;
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200785 } else if (info->vs.needs_instance_id) {
Bas Nieuwenhuizen2e763f72019-08-21 01:50:53 +0200786 vgpr_comp_cnt = 1;
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200787 } else {
788 vgpr_comp_cnt = 0;
789 }
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200790
791 config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200792 config_out->rsrc2 |= S_00B12C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200793 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200794 break;
795 case MESA_SHADER_FRAGMENT:
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200796 config_out->rsrc1 |= S_00B028_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200797 config_out->rsrc2 |= S_00B02C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200798 break;
Samuel Pitoisetf4d2c472019-06-26 15:11:01 +0200799 case MESA_SHADER_GEOMETRY:
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200800 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
801 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200802 config_out->rsrc2 |= S_00B22C_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200803 break;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200804 case MESA_SHADER_COMPUTE:
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200805 config_out->rsrc1 |= S_00B848_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
806 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200807 config_out->rsrc2 |=
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200808 S_00B84C_TGID_X_EN(info->cs.uses_block_id[0]) |
809 S_00B84C_TGID_Y_EN(info->cs.uses_block_id[1]) |
810 S_00B84C_TGID_Z_EN(info->cs.uses_block_id[2]) |
811 S_00B84C_TIDIG_COMP_CNT(info->cs.uses_thread_id[2] ? 2 :
812 info->cs.uses_thread_id[1] ? 1 : 0) |
813 S_00B84C_TG_SIZE_EN(info->cs.uses_local_invocation_idx) |
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200814 S_00B84C_LDS_SIZE(config_in->lds_size);
Timur Kristóf83eebdb2019-09-13 15:53:09 +0200815 config_out->rsrc3 |= S_00B8A0_SHARED_VGPR_CNT(num_shared_vgpr_blocks);
816
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200817 break;
818 default:
819 unreachable("unsupported shader type");
820 break;
821 }
822
Samuel Pitoisetedf1af62019-07-16 16:39:16 +0200823 if (pdevice->rad_info.chip_class >= GFX10 && info->is_ngg &&
Samuel Pitoiset3f500072019-07-09 08:44:01 +0200824 (stage == MESA_SHADER_VERTEX || stage == MESA_SHADER_TESS_EVAL || stage == MESA_SHADER_GEOMETRY)) {
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200825 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200826 gl_shader_stage es_stage = stage;
827 if (stage == MESA_SHADER_GEOMETRY)
828 es_stage = info->gs.es_type;
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200829
830 /* VGPR5-8: (VertexID, UserVGPR0, UserVGPR1, UserVGPR2 / InstanceID) */
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200831 if (es_stage == MESA_SHADER_VERTEX) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200832 es_vgpr_comp_cnt = info->vs.needs_instance_id ? 3 : 0;
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200833 } else if (es_stage == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200834 bool enable_prim_id = info->tes.export_prim_id || info->uses_prim_id;
Samuel Pitoisetd2a8b632019-07-09 08:27:30 +0200835 es_vgpr_comp_cnt = enable_prim_id ? 3 : 2;
Bas Nieuwenhuizen451f0302019-07-19 00:00:03 +0200836 } else
837 unreachable("Unexpected ES shader stage");
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200838
839 bool tes_triangles = stage == MESA_SHADER_TESS_EVAL &&
840 info->tes.primitive_mode >= 4; /* GL_TRIANGLES */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200841 if (info->uses_invocation_id || stage == MESA_SHADER_VERTEX) {
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200842 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200843 } else if (info->uses_prim_id) {
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200844 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
845 } else if (info->gs.vertices_in >= 3 || tes_triangles) {
846 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
847 } else {
848 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
849 }
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200850
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200851 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt) |
852 S_00B228_WGP_MODE(1);
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200853 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Samuel Pitoiseted12be12019-07-15 18:46:48 +0200854 S_00B22C_LDS_SIZE(config_in->lds_size) |
855 S_00B22C_OC_LDS_EN(es_stage == MESA_SHADER_TESS_EVAL);
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200856 } else if (pdevice->rad_info.chip_class >= GFX9 &&
857 stage == MESA_SHADER_GEOMETRY) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200858 unsigned es_type = info->gs.es_type;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100859 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
860
861 if (es_type == MESA_SHADER_VERTEX) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200862 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200863 if (info->vs.needs_instance_id) {
Samuel Pitoisetea337c82019-07-23 11:52:36 +0200864 es_vgpr_comp_cnt = pdevice->rad_info.chip_class >= GFX10 ? 3 : 1;
865 } else {
866 es_vgpr_comp_cnt = 0;
867 }
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100868 } else if (es_type == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200869 es_vgpr_comp_cnt = info->uses_prim_id ? 3 : 2;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100870 } else {
Bas Nieuwenhuizen0f89f9b2018-01-17 23:23:02 +0100871 unreachable("invalid shader ES type");
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100872 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100873
874 /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and
875 * VGPR[0:4] are always loaded.
876 */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200877 if (info->uses_invocation_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100878 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200879 } else if (info->uses_prim_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100880 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200881 } else if (info->gs.vertices_in >= 3) {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100882 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200883 } else {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100884 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200885 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100886
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200887 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt);
888 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Bas Nieuwenhuizen74695162019-06-30 01:47:30 +0200889 S_00B22C_OC_LDS_EN(es_type == MESA_SHADER_TESS_EVAL);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200890 } else if (pdevice->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200891 stage == MESA_SHADER_TESS_CTRL) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200892 config_out->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200893 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200894 config_out->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200895 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200896}
897
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200898struct radv_shader_variant *
899radv_shader_variant_create(struct radv_device *device,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +0200900 const struct radv_shader_binary *binary,
901 bool keep_shader_info)
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200902{
903 struct ac_shader_config config = {0};
904 struct ac_rtld_binary rtld_binary = {0};
905 struct radv_shader_variant *variant = calloc(1, sizeof(struct radv_shader_variant));
906 if (!variant)
907 return NULL;
908
909 variant->ref_count = 1;
910
911 if (binary->type == RADV_BINARY_TYPE_RTLD) {
Samuel Pitoiset53876672019-09-03 13:01:54 +0200912 struct ac_rtld_symbol lds_symbols[2];
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200913 unsigned num_lds_symbols = 0;
914 const char *elf_data = (const char *)((struct radv_shader_binary_rtld *)binary)->data;
915 size_t elf_size = ((struct radv_shader_binary_rtld *)binary)->elf_size;
916
917 if (device->physical_device->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset53876672019-09-03 13:01:54 +0200918 (binary->stage == MESA_SHADER_GEOMETRY || binary->info.is_ngg) &&
919 !binary->is_gs_copy_shader) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200920 /* We add this symbol even on LLVM <= 8 to ensure that
921 * shader->config.lds_size is set correctly below.
922 */
923 struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++];
924 sym->name = "esgs_ring";
Samuel Pitoiseta2a68d52019-09-18 09:58:54 +0200925 sym->size = binary->info.ngg_info.esgs_ring_size;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200926 sym->align = 64 * 1024;
Samuel Pitoiset53876672019-09-03 13:01:54 +0200927 }
Samuel Pitoiset5bbcb3f2019-07-11 08:44:16 +0200928
Samuel Pitoiset53876672019-09-03 13:01:54 +0200929 if (binary->info.is_ngg &&
930 binary->stage == MESA_SHADER_GEOMETRY) {
931 struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++];
932 sym->name = "ngg_emit";
933 sym->size = binary->info.ngg_info.ngg_emit_size * 4;
934 sym->align = 4;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200935 }
Samuel Pitoisetea385652019-07-30 18:32:42 +0200936
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200937 struct ac_rtld_open_info open_info = {
938 .info = &device->physical_device->rad_info,
939 .shader_type = binary->stage,
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200940 .wave_size = binary->info.wave_size,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200941 .num_parts = 1,
942 .elf_ptrs = &elf_data,
943 .elf_sizes = &elf_size,
944 .num_shared_lds_symbols = num_lds_symbols,
945 .shared_lds_symbols = lds_symbols,
946 };
947
948 if (!ac_rtld_open(&rtld_binary, open_info)) {
949 free(variant);
950 return NULL;
951 }
952
953 if (!ac_rtld_read_config(&rtld_binary, &config)) {
954 ac_rtld_close(&rtld_binary);
955 free(variant);
956 return NULL;
957 }
958
959 if (rtld_binary.lds_size > 0) {
960 unsigned alloc_granularity = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
961 config.lds_size = align(rtld_binary.lds_size, alloc_granularity) / alloc_granularity;
962 }
963
964 variant->code_size = rtld_binary.rx_size;
Connor Abbott5dadbab2019-08-29 17:15:46 +0200965 variant->exec_size = rtld_binary.exec_size;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200966 } else {
967 assert(binary->type == RADV_BINARY_TYPE_LEGACY);
968 config = ((struct radv_shader_binary_legacy *)binary)->config;
Connor Abbott5dadbab2019-08-29 17:15:46 +0200969 variant->code_size = radv_get_shader_binary_size(((struct radv_shader_binary_legacy *)binary)->code_size);
Daniel Schürmanna70a9982019-09-17 14:35:22 +0200970 variant->exec_size = ((struct radv_shader_binary_legacy *)binary)->exec_size;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200971 }
972
Samuel Pitoiset83499ac2019-09-03 17:39:23 +0200973 variant->info = binary->info;
974 radv_postprocess_config(device->physical_device, &config, &binary->info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200975 binary->stage, &variant->config);
976
977 void *dest_ptr = radv_alloc_shader_memory(device, variant);
978
979 if (binary->type == RADV_BINARY_TYPE_RTLD) {
980 struct radv_shader_binary_rtld* bin = (struct radv_shader_binary_rtld *)binary;
981 struct ac_rtld_upload_info info = {
982 .binary = &rtld_binary,
983 .rx_va = radv_buffer_get_va(variant->bo) + variant->bo_offset,
984 .rx_ptr = dest_ptr,
985 };
986
987 if (!ac_rtld_upload(&info)) {
988 radv_shader_variant_destroy(device, variant);
989 ac_rtld_close(&rtld_binary);
990 return NULL;
991 }
992
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +0200993 if (keep_shader_info ||
Samuel Pitoiset9343c932019-07-23 09:55:24 +0200994 (device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS)) {
Timothy Arceria20a9d02019-07-17 14:20:55 +1000995 const char *disasm_data;
996 size_t disasm_size;
997 if (!ac_rtld_get_section_by_name(&rtld_binary, ".AMDGPU.disasm", &disasm_data, &disasm_size)) {
998 radv_shader_variant_destroy(device, variant);
999 ac_rtld_close(&rtld_binary);
1000 return NULL;
1001 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001002
Rhys Perry3c966fd2019-09-25 11:48:04 +01001003 variant->ir_string = bin->llvm_ir_size ? strdup((const char*)(bin->data + bin->elf_size)) : NULL;
Timothy Arceria20a9d02019-07-17 14:20:55 +10001004 variant->disasm_string = malloc(disasm_size + 1);
1005 memcpy(variant->disasm_string, disasm_data, disasm_size);
1006 variant->disasm_string[disasm_size] = 0;
1007 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001008
1009 ac_rtld_close(&rtld_binary);
1010 } else {
1011 struct radv_shader_binary_legacy* bin = (struct radv_shader_binary_legacy *)binary;
1012 memcpy(dest_ptr, bin->data, bin->code_size);
1013
1014 /* Add end-of-code markers for the UMR disassembler. */
1015 uint32_t *ptr32 = (uint32_t *)dest_ptr + bin->code_size / 4;
1016 for (unsigned i = 0; i < DEBUGGER_NUM_MARKERS; i++)
1017 ptr32[i] = DEBUGGER_END_OF_CODE_MARKER;
1018
Rhys Perry3c966fd2019-09-25 11:48:04 +01001019 variant->ir_string = bin->ir_size ? strdup((const char*)(bin->data + bin->code_size)) : NULL;
1020 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 +02001021 }
1022 return variant;
1023}
1024
Bas Nieuwenhuizen5444d3e2019-06-01 20:54:35 +02001025static char *
1026radv_dump_nir_shaders(struct nir_shader * const *shaders,
1027 int shader_count)
1028{
1029 char *data = NULL;
1030 char *ret = NULL;
1031 size_t size = 0;
1032 FILE *f = open_memstream(&data, &size);
1033 if (f) {
1034 for (int i = 0; i < shader_count; ++i)
1035 nir_print_shader(shaders[i], f);
1036 fclose(f);
1037 }
1038
1039 ret = malloc(size + 1);
1040 if (ret) {
1041 memcpy(ret, data, size);
1042 ret[size] = 0;
1043 }
1044 free(data);
1045 return ret;
1046}
1047
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001048static struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001049shader_variant_compile(struct radv_device *device,
1050 struct radv_shader_module *module,
1051 struct nir_shader * const *shaders,
1052 int shader_count,
1053 gl_shader_stage stage,
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001054 struct radv_shader_info *info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001055 struct radv_nir_compiler_options *options,
1056 bool gs_copy_shader,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001057 bool keep_shader_info,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001058 bool use_aco,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001059 struct radv_shader_binary **binary_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001060{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001061 enum radeon_family chip_family = device->physical_device->rad_info.family;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001062 struct radv_shader_binary *binary = NULL;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001063
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001064 options->family = chip_family;
1065 options->chip_class = device->physical_device->rad_info.chip_class;
Samuel Pitoiset8ade3e42018-05-11 16:36:02 +02001066 options->dump_shader = radv_can_dump_shader(device, module, gs_copy_shader);
Samuel Pitoisetd07edf52018-03-14 10:28:49 +01001067 options->dump_preoptir = options->dump_shader &&
Samuel Pitoiset33e6e5e2018-01-19 12:12:02 +01001068 device->instance->debug_flags & RADV_DEBUG_PREOPTIR;
Rhys Perry3c966fd2019-09-25 11:48:04 +01001069 options->record_ir = keep_shader_info;
Samuel Pitoisetbfca15e2018-06-14 14:28:58 +02001070 options->check_ir = device->instance->debug_flags & RADV_DEBUG_CHECKIR;
Dave Airlie010d0552018-02-19 07:14:04 +00001071 options->tess_offchip_block_dw_size = device->tess_offchip_block_dw_size;
Samuel Pitoisetd8a61d32018-05-16 16:02:04 +02001072 options->address32_hi = device->physical_device->rad_info.address32_hi;
Samuel Pitoiset49f5ddd2019-08-23 08:55:53 +02001073 options->has_ls_vgpr_init_bug = device->physical_device->rad_info.has_ls_vgpr_init_bug;
Samuel Pitoiseta15b3bc2019-09-09 10:23:30 +02001074 options->use_ngg_streamout = device->physical_device->use_ngg_streamout;
Bas Nieuwenhuizen035406e2019-08-04 00:48:05 +02001075
Bas Nieuwenhuizenba8d3c32019-08-04 01:29:53 +02001076 if ((stage == MESA_SHADER_GEOMETRY && !options->key.vs_common_out.as_ngg) ||
1077 gs_copy_shader)
1078 options->wave_size = 64;
1079 else if (stage == MESA_SHADER_COMPUTE)
Bas Nieuwenhuizen035406e2019-08-04 00:48:05 +02001080 options->wave_size = device->physical_device->cs_wave_size;
1081 else if (stage == MESA_SHADER_FRAGMENT)
1082 options->wave_size = device->physical_device->ps_wave_size;
1083 else
1084 options->wave_size = device->physical_device->ge_wave_size;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001085
Rhys Perry3c966fd2019-09-25 11:48:04 +01001086 if (!use_aco || options->dump_shader || options->record_ir)
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001087 ac_init_llvm_once();
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001088
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001089 if (use_aco) {
1090 aco_compile_shader(shader_count, shaders, &binary, info, options);
1091 binary->info = *info;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001092 } else {
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001093 enum ac_target_machine_options tm_options = 0;
1094 struct ac_llvm_compiler ac_llvm;
1095 bool thread_compiler;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001096
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001097 if (options->supports_spill)
1098 tm_options |= AC_TM_SUPPORTS_SPILL;
1099 if (device->instance->perftest_flags & RADV_PERFTEST_SISCHED)
1100 tm_options |= AC_TM_SISCHED;
1101 if (options->check_ir)
1102 tm_options |= AC_TM_CHECK_IR;
1103 if (device->instance->debug_flags & RADV_DEBUG_NO_LOAD_STORE_OPT)
1104 tm_options |= AC_TM_NO_LOAD_STORE_OPT;
1105
1106 thread_compiler = !(device->instance->debug_flags & RADV_DEBUG_NOTHREADLLVM);
1107 radv_init_llvm_compiler(&ac_llvm,
1108 thread_compiler,
1109 chip_family, tm_options,
1110 options->wave_size);
1111
1112 if (gs_copy_shader) {
1113 assert(shader_count == 1);
1114 radv_compile_gs_copy_shader(&ac_llvm, *shaders, &binary,
1115 info, options);
1116 } else {
1117 radv_compile_nir_shader(&ac_llvm, &binary, info,
1118 shaders, shader_count, options);
1119 }
1120
1121 binary->info = *info;
1122 radv_destroy_llvm_compiler(&ac_llvm, thread_compiler);
1123 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001124
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001125 struct radv_shader_variant *variant = radv_shader_variant_create(device, binary,
1126 keep_shader_info);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001127 if (!variant) {
1128 free(binary);
1129 return NULL;
1130 }
Rhys Perryec8ced92019-09-24 15:25:07 +01001131 variant->aco_used = use_aco;
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001132
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +02001133 if (options->dump_shader) {
1134 fprintf(stderr, "disasm:\n%s\n", variant->disasm_string);
1135 }
1136
1137
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001138 if (keep_shader_info) {
Bas Nieuwenhuizen5444d3e2019-06-01 20:54:35 +02001139 variant->nir_string = radv_dump_nir_shaders(shaders, shader_count);
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001140 if (!gs_copy_shader && !module->nir) {
Samuel Pitoiset844ae722017-09-22 16:56:40 +02001141 variant->spirv = (uint32_t *)module->data;
1142 variant->spirv_size = module->size;
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001143 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001144 }
1145
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001146 if (binary_out)
1147 *binary_out = binary;
1148 else
1149 free(binary);
1150
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001151 return variant;
1152}
1153
1154struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001155radv_shader_variant_compile(struct radv_device *device,
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001156 struct radv_shader_module *module,
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +02001157 struct nir_shader *const *shaders,
1158 int shader_count,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001159 struct radv_pipeline_layout *layout,
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001160 const struct radv_shader_variant_key *key,
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001161 struct radv_shader_info *info,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001162 bool keep_shader_info,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001163 bool use_aco,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001164 struct radv_shader_binary **binary_out)
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001165{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001166 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001167
1168 options.layout = layout;
1169 if (key)
1170 options.key = *key;
1171
Timothy Arceri7664aaf2017-10-11 11:59:20 +11001172 options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH);
Samuel Pitoiset1e86eaf2018-05-17 09:56:47 +02001173 options.supports_spill = true;
Bas Nieuwenhuizen72e7b7a2019-08-02 12:40:17 +02001174 options.robust_buffer_access = device->robust_buffer_access;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001175
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001176 return shader_variant_compile(device, module, shaders, shader_count, shaders[shader_count - 1]->info.stage, info,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001177 &options, false, keep_shader_info, use_aco, binary_out);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001178}
1179
1180struct radv_shader_variant *
1181radv_create_gs_copy_shader(struct radv_device *device,
1182 struct nir_shader *shader,
Samuel Pitoiseta9af11f2019-09-03 10:29:19 +02001183 struct radv_shader_info *info,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001184 struct radv_shader_binary **binary_out,
Bas Nieuwenhuizen8874af82019-05-31 01:06:27 +02001185 bool keep_shader_info,
Samuel Pitoiset47efc522017-09-01 12:09:56 +02001186 bool multiview)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001187{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001188 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001189
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001190 options.key.has_multiview_view_index = multiview;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001191
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001192 return shader_variant_compile(device, NULL, &shader, 1, MESA_SHADER_VERTEX,
Daniel Schürmanna70a9982019-09-17 14:35:22 +02001193 info, &options, true, keep_shader_info, false, binary_out);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001194}
1195
1196void
1197radv_shader_variant_destroy(struct radv_device *device,
1198 struct radv_shader_variant *variant)
1199{
1200 if (!p_atomic_dec_zero(&variant->ref_count))
1201 return;
1202
1203 mtx_lock(&device->shader_slab_mutex);
1204 list_del(&variant->slab_list);
1205 mtx_unlock(&device->shader_slab_mutex);
1206
Bas Nieuwenhuizen5444d3e2019-06-01 20:54:35 +02001207 free(variant->nir_string);
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001208 free(variant->disasm_string);
Rhys Perry3c966fd2019-09-25 11:48:04 +01001209 free(variant->ir_string);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001210 free(variant);
1211}
1212
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001213const char *
Samuel Pitoiset83499ac2019-09-03 17:39:23 +02001214radv_get_shader_name(struct radv_shader_info *info,
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001215 gl_shader_stage stage)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001216{
1217 switch (stage) {
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001218 case MESA_SHADER_VERTEX:
1219 if (info->vs.as_ls)
1220 return "Vertex Shader as LS";
1221 else if (info->vs.as_es)
1222 return "Vertex Shader as ES";
1223 else if (info->is_ngg)
1224 return "Vertex Shader as ESGS";
1225 else
1226 return "Vertex Shader as VS";
1227 case MESA_SHADER_TESS_CTRL:
1228 return "Tessellation Control Shader";
1229 case MESA_SHADER_TESS_EVAL:
1230 if (info->tes.as_es)
1231 return "Tessellation Evaluation Shader as ES";
1232 else if (info->is_ngg)
1233 return "Tessellation Evaluation Shader as ESGS";
1234 else
1235 return "Tessellation Evaluation Shader as VS";
1236 case MESA_SHADER_GEOMETRY:
1237 return "Geometry Shader";
1238 case MESA_SHADER_FRAGMENT:
1239 return "Pixel Shader";
1240 case MESA_SHADER_COMPUTE:
1241 return "Compute Shader";
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001242 default:
1243 return "Unknown shader";
1244 };
1245}
1246
Bas Nieuwenhuizen739a2882019-06-01 20:25:47 +02001247unsigned
1248radv_get_max_workgroup_size(enum chip_class chip_class,
1249 gl_shader_stage stage,
1250 const unsigned *sizes)
1251{
1252 switch (stage) {
1253 case MESA_SHADER_TESS_CTRL:
1254 return chip_class >= GFX7 ? 128 : 64;
1255 case MESA_SHADER_GEOMETRY:
1256 return chip_class >= GFX9 ? 128 : 64;
1257 case MESA_SHADER_COMPUTE:
1258 break;
1259 default:
1260 return 0;
1261 }
1262
1263 unsigned max_workgroup_size = sizes[0] * sizes[1] * sizes[2];
1264 return max_workgroup_size;
1265}
Bas Nieuwenhuizen290ca0c2019-06-01 18:46:21 +02001266
1267unsigned
1268radv_get_max_waves(struct radv_device *device,
1269 struct radv_shader_variant *variant,
1270 gl_shader_stage stage)
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001271{
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001272 enum chip_class chip_class = device->physical_device->rad_info.chip_class;
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001273 unsigned lds_increment = chip_class >= GFX7 ? 512 : 256;
Samuel Pitoiset83499ac2019-09-03 17:39:23 +02001274 uint8_t wave_size = variant->info.wave_size;
Bas Nieuwenhuizen290ca0c2019-06-01 18:46:21 +02001275 struct ac_shader_config *conf = &variant->config;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001276 unsigned max_simd_waves;
1277 unsigned lds_per_wave = 0;
1278
Marek Olšákca430062019-09-12 19:39:02 -04001279 max_simd_waves = device->physical_device->rad_info.max_wave64_per_simd;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001280
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001281 if (stage == MESA_SHADER_FRAGMENT) {
1282 lds_per_wave = conf->lds_size * lds_increment +
Samuel Pitoiset83499ac2019-09-03 17:39:23 +02001283 align(variant->info.ps.num_interp * 48,
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001284 lds_increment);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001285 } else if (stage == MESA_SHADER_COMPUTE) {
1286 unsigned max_workgroup_size =
Bas Nieuwenhuizen739a2882019-06-01 20:25:47 +02001287 radv_get_max_workgroup_size(chip_class, stage, variant->info.cs.block_size);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001288 lds_per_wave = (conf->lds_size * lds_increment) /
Samuel Pitoisetea385652019-07-30 18:32:42 +02001289 DIV_ROUND_UP(max_workgroup_size, wave_size);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001290 }
1291
Rhys Perry7453c1a2019-10-18 21:13:44 +01001292 if (conf->num_sgprs) {
1293 unsigned sgprs = align(conf->num_sgprs, chip_class >= GFX8 ? 16 : 8);
Samuel Pitoiset2f7bb932018-04-06 14:06:24 +02001294 max_simd_waves =
1295 MIN2(max_simd_waves,
Marek Olšák0692ae32019-09-12 19:46:02 -04001296 device->physical_device->rad_info.num_physical_sgprs_per_simd /
Rhys Perry7453c1a2019-10-18 21:13:44 +01001297 sgprs);
1298 }
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001299
Rhys Perry7453c1a2019-10-18 21:13:44 +01001300 if (conf->num_vgprs) {
1301 unsigned vgprs = align(conf->num_vgprs, wave_size == 32 ? 8 : 4);
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001302 max_simd_waves =
1303 MIN2(max_simd_waves,
Rhys Perry7453c1a2019-10-18 21:13:44 +01001304 RADV_NUM_PHYSICAL_VGPRS / vgprs);
1305 }
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001306
1307 /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD
1308 * that PS can use.
1309 */
1310 if (lds_per_wave)
1311 max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave);
1312
Bas Nieuwenhuizen290ca0c2019-06-01 18:46:21 +02001313 return max_simd_waves;
1314}
1315
1316static void
1317generate_shader_stats(struct radv_device *device,
1318 struct radv_shader_variant *variant,
1319 gl_shader_stage stage,
1320 struct _mesa_string_buffer *buf)
1321{
1322 struct ac_shader_config *conf = &variant->config;
1323 unsigned max_simd_waves = radv_get_max_waves(device, variant, stage);
1324
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001325 if (stage == MESA_SHADER_FRAGMENT) {
Alex Smithde889792017-10-27 14:25:05 +01001326 _mesa_string_buffer_printf(buf, "*** SHADER CONFIG ***\n"
1327 "SPI_PS_INPUT_ADDR = 0x%04x\n"
1328 "SPI_PS_INPUT_ENA = 0x%04x\n",
1329 conf->spi_ps_input_addr, conf->spi_ps_input_ena);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001330 }
1331
Alex Smithde889792017-10-27 14:25:05 +01001332 _mesa_string_buffer_printf(buf, "*** SHADER STATS ***\n"
1333 "SGPRS: %d\n"
1334 "VGPRS: %d\n"
1335 "Spilled SGPRs: %d\n"
1336 "Spilled VGPRs: %d\n"
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001337 "PrivMem VGPRS: %d\n"
Alex Smithde889792017-10-27 14:25:05 +01001338 "Code Size: %d bytes\n"
1339 "LDS: %d blocks\n"
1340 "Scratch: %d bytes per wave\n"
1341 "Max Waves: %d\n"
1342 "********************\n\n\n",
1343 conf->num_sgprs, conf->num_vgprs,
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001344 conf->spilled_sgprs, conf->spilled_vgprs,
Connor Abbott5dadbab2019-08-29 17:15:46 +02001345 variant->info.private_mem_vgprs, variant->exec_size,
Alex Smithde889792017-10-27 14:25:05 +01001346 conf->lds_size, conf->scratch_bytes_per_wave,
1347 max_simd_waves);
1348}
1349
1350void
1351radv_shader_dump_stats(struct radv_device *device,
1352 struct radv_shader_variant *variant,
1353 gl_shader_stage stage,
1354 FILE *file)
1355{
1356 struct _mesa_string_buffer *buf = _mesa_string_buffer_create(NULL, 256);
1357
1358 generate_shader_stats(device, variant, stage, buf);
1359
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001360 fprintf(file, "\n%s:\n", radv_get_shader_name(&variant->info, stage));
Alex Smith134a40d2017-10-30 08:38:14 +00001361 fprintf(file, "%s", buf->buf);
Alex Smithde889792017-10-27 14:25:05 +01001362
1363 _mesa_string_buffer_destroy(buf);
1364}
1365
1366VkResult
1367radv_GetShaderInfoAMD(VkDevice _device,
1368 VkPipeline _pipeline,
1369 VkShaderStageFlagBits shaderStage,
1370 VkShaderInfoTypeAMD infoType,
1371 size_t* pInfoSize,
1372 void* pInfo)
1373{
1374 RADV_FROM_HANDLE(radv_device, device, _device);
1375 RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline);
1376 gl_shader_stage stage = vk_to_mesa_shader_stage(shaderStage);
1377 struct radv_shader_variant *variant = pipeline->shaders[stage];
1378 struct _mesa_string_buffer *buf;
1379 VkResult result = VK_SUCCESS;
1380
1381 /* Spec doesn't indicate what to do if the stage is invalid, so just
1382 * return no info for this. */
1383 if (!variant)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +02001384 return vk_error(device->instance, VK_ERROR_FEATURE_NOT_PRESENT);
Alex Smithde889792017-10-27 14:25:05 +01001385
1386 switch (infoType) {
1387 case VK_SHADER_INFO_TYPE_STATISTICS_AMD:
1388 if (!pInfo) {
1389 *pInfoSize = sizeof(VkShaderStatisticsInfoAMD);
1390 } else {
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001391 unsigned lds_multiplier = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
Alex Smithde889792017-10-27 14:25:05 +01001392 struct ac_shader_config *conf = &variant->config;
1393
1394 VkShaderStatisticsInfoAMD statistics = {};
1395 statistics.shaderStageMask = shaderStage;
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001396 statistics.numPhysicalVgprs = RADV_NUM_PHYSICAL_VGPRS;
Marek Olšák0692ae32019-09-12 19:46:02 -04001397 statistics.numPhysicalSgprs = device->physical_device->rad_info.num_physical_sgprs_per_simd;
Alex Smithde889792017-10-27 14:25:05 +01001398 statistics.numAvailableSgprs = statistics.numPhysicalSgprs;
1399
1400 if (stage == MESA_SHADER_COMPUTE) {
Bas Nieuwenhuizen739a2882019-06-01 20:25:47 +02001401 unsigned *local_size = variant->info.cs.block_size;
Alex Smithde889792017-10-27 14:25:05 +01001402 unsigned workgroup_size = local_size[0] * local_size[1] * local_size[2];
1403
1404 statistics.numAvailableVgprs = statistics.numPhysicalVgprs /
Eric Engestromd85fef12018-06-15 17:49:08 +01001405 ceil((double)workgroup_size / statistics.numPhysicalVgprs);
Alex Smithde889792017-10-27 14:25:05 +01001406
1407 statistics.computeWorkGroupSize[0] = local_size[0];
1408 statistics.computeWorkGroupSize[1] = local_size[1];
1409 statistics.computeWorkGroupSize[2] = local_size[2];
1410 } else {
1411 statistics.numAvailableVgprs = statistics.numPhysicalVgprs;
1412 }
1413
1414 statistics.resourceUsage.numUsedVgprs = conf->num_vgprs;
1415 statistics.resourceUsage.numUsedSgprs = conf->num_sgprs;
1416 statistics.resourceUsage.ldsSizePerLocalWorkGroup = 32768;
1417 statistics.resourceUsage.ldsUsageSizeInBytes = conf->lds_size * lds_multiplier;
1418 statistics.resourceUsage.scratchMemUsageInBytes = conf->scratch_bytes_per_wave;
1419
1420 size_t size = *pInfoSize;
1421 *pInfoSize = sizeof(statistics);
1422
1423 memcpy(pInfo, &statistics, MIN2(size, *pInfoSize));
1424
1425 if (size < *pInfoSize)
1426 result = VK_INCOMPLETE;
1427 }
1428
1429 break;
1430 case VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD:
1431 buf = _mesa_string_buffer_create(NULL, 1024);
1432
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001433 _mesa_string_buffer_printf(buf, "%s:\n", radv_get_shader_name(&variant->info, stage));
Rhys Perry3c966fd2019-09-25 11:48:04 +01001434 _mesa_string_buffer_printf(buf, "%s\n\n", variant->ir_string);
Alex Smithde889792017-10-27 14:25:05 +01001435 _mesa_string_buffer_printf(buf, "%s\n\n", variant->disasm_string);
1436 generate_shader_stats(device, variant, stage, buf);
1437
1438 /* Need to include the null terminator. */
1439 size_t length = buf->length + 1;
1440
1441 if (!pInfo) {
1442 *pInfoSize = length;
1443 } else {
1444 size_t size = *pInfoSize;
1445 *pInfoSize = length;
1446
1447 memcpy(pInfo, buf->buf, MIN2(size, length));
1448
1449 if (size < length)
1450 result = VK_INCOMPLETE;
1451 }
1452
1453 _mesa_string_buffer_destroy(buf);
1454 break;
1455 default:
1456 /* VK_SHADER_INFO_TYPE_BINARY_AMD unimplemented for now. */
1457 result = VK_ERROR_FEATURE_NOT_PRESENT;
1458 break;
1459 }
1460
1461 return result;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001462}