blob: 2fd287fcd17f43caa16d28f6a7871885e44661cf [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"
43#include "gfx9d.h"
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020044#include "ac_binary.h"
45#include "ac_llvm_util.h"
46#include "ac_nir_to_llvm.h"
47#include "vk_format.h"
48#include "util/debug.h"
49#include "ac_exp_param.h"
50
Alex Smithde889792017-10-27 14:25:05 +010051#include "util/string_buffer.h"
52
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020053static const struct nir_shader_compiler_options nir_options = {
54 .vertex_id_zero_based = true,
55 .lower_scmp = true,
56 .lower_flrp32 = true,
Timothy Arcerif0d74ec2018-01-12 11:12:09 +110057 .lower_flrp64 = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +010058 .lower_device_index_to_zero = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020059 .lower_fsat = true,
60 .lower_fdiv = true,
61 .lower_sub = true,
62 .lower_pack_snorm_2x16 = true,
63 .lower_pack_snorm_4x8 = true,
64 .lower_pack_unorm_2x16 = true,
65 .lower_pack_unorm_4x8 = true,
66 .lower_unpack_snorm_2x16 = true,
67 .lower_unpack_snorm_4x8 = true,
68 .lower_unpack_unorm_2x16 = true,
69 .lower_unpack_unorm_4x8 = true,
70 .lower_extract_byte = true,
71 .lower_extract_word = true,
Dave Airlie2c615942017-10-04 06:33:02 +100072 .lower_ffma = true,
Samuel Pitoiset7aa008d2018-02-02 19:04:57 +010073 .lower_fpow = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020074 .max_unroll_iterations = 32
75};
76
77VkResult radv_CreateShaderModule(
78 VkDevice _device,
79 const VkShaderModuleCreateInfo* pCreateInfo,
80 const VkAllocationCallbacks* pAllocator,
81 VkShaderModule* pShaderModule)
82{
83 RADV_FROM_HANDLE(radv_device, device, _device);
84 struct radv_shader_module *module;
85
86 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO);
87 assert(pCreateInfo->flags == 0);
88
89 module = vk_alloc2(&device->alloc, pAllocator,
90 sizeof(*module) + pCreateInfo->codeSize, 8,
91 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
92 if (module == NULL)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +020093 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020094
95 module->nir = NULL;
96 module->size = pCreateInfo->codeSize;
97 memcpy(module->data, pCreateInfo->pCode, module->size);
98
99 _mesa_sha1_compute(module->data, module->size, module->sha1);
100
101 *pShaderModule = radv_shader_module_to_handle(module);
102
103 return VK_SUCCESS;
104}
105
106void radv_DestroyShaderModule(
107 VkDevice _device,
108 VkShaderModule _module,
109 const VkAllocationCallbacks* pAllocator)
110{
111 RADV_FROM_HANDLE(radv_device, device, _device);
112 RADV_FROM_HANDLE(radv_shader_module, module, _module);
113
114 if (!module)
115 return;
116
117 vk_free2(&device->alloc, pAllocator, module);
118}
119
Bas Nieuwenhuizen06f05042017-02-09 00:12:10 +0100120void
Timothy Arceri06675712018-10-18 09:42:17 +1100121radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively,
122 bool allow_copies)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200123{
124 bool progress;
125
126 do {
127 progress = false;
128
Karol Herbst9b240282019-01-16 00:05:04 +0100129 NIR_PASS(progress, shader, nir_split_array_vars, nir_var_function_temp);
130 NIR_PASS(progress, shader, nir_shrink_vec_array_vars, nir_var_function_temp);
Timothy Arceri8086fa12018-10-18 10:19:16 +1100131
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200132 NIR_PASS_V(shader, nir_lower_vars_to_ssa);
Iago Toral Quiroga2d648e52018-04-27 09:28:48 +0200133 NIR_PASS_V(shader, nir_lower_pack);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100134
Timothy Arceri06675712018-10-18 09:42:17 +1100135 if (allow_copies) {
136 /* Only run this pass in the first call to
137 * radv_optimize_nir. Later calls assume that we've
138 * lowered away any copy_deref instructions and we
139 * don't want to introduce any more.
140 */
141 NIR_PASS(progress, shader, nir_opt_find_array_copies);
142 }
143
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100144 NIR_PASS(progress, shader, nir_opt_copy_prop_vars);
145 NIR_PASS(progress, shader, nir_opt_dead_write_vars);
146
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200147 NIR_PASS_V(shader, nir_lower_alu_to_scalar);
148 NIR_PASS_V(shader, nir_lower_phis_to_scalar);
149
150 NIR_PASS(progress, shader, nir_copy_prop);
151 NIR_PASS(progress, shader, nir_opt_remove_phis);
152 NIR_PASS(progress, shader, nir_opt_dce);
153 if (nir_opt_trivial_continues(shader)) {
154 progress = true;
155 NIR_PASS(progress, shader, nir_copy_prop);
Dave Airlie64d9bd12017-09-13 03:49:31 +0100156 NIR_PASS(progress, shader, nir_opt_remove_phis);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200157 NIR_PASS(progress, shader, nir_opt_dce);
158 }
159 NIR_PASS(progress, shader, nir_opt_if);
160 NIR_PASS(progress, shader, nir_opt_dead_cf);
161 NIR_PASS(progress, shader, nir_opt_cse);
Ian Romanick378f9962018-06-18 16:11:55 -0700162 NIR_PASS(progress, shader, nir_opt_peephole_select, 8, true, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200163 NIR_PASS(progress, shader, nir_opt_algebraic);
164 NIR_PASS(progress, shader, nir_opt_constant_folding);
165 NIR_PASS(progress, shader, nir_opt_undef);
166 NIR_PASS(progress, shader, nir_opt_conditional_discard);
167 if (shader->options->max_unroll_iterations) {
168 NIR_PASS(progress, shader, nir_opt_loop_unroll, 0);
169 }
Timothy Arcerice188812018-05-08 14:57:55 +1000170 } while (progress && !optimize_conservatively);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100171
172 NIR_PASS(progress, shader, nir_opt_shrink_load);
Samuel Pitoisete96a1d22018-03-08 15:31:14 +0100173 NIR_PASS(progress, shader, nir_opt_move_load_ubo);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200174}
175
176nir_shader *
177radv_shader_compile_to_nir(struct radv_device *device,
178 struct radv_shader_module *module,
179 const char *entrypoint_name,
180 gl_shader_stage stage,
Timothy Arcerice188812018-05-08 14:57:55 +1000181 const VkSpecializationInfo *spec_info,
182 const VkPipelineCreateFlags flags)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200183{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200184 nir_shader *nir;
185 nir_function *entry_point;
186 if (module->nir) {
187 /* Some things such as our meta clear/blit code will give us a NIR
188 * shader directly. In that case, we just ignore the SPIR-V entirely
189 * and just use the NIR shader */
190 nir = module->nir;
191 nir->options = &nir_options;
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500192 nir_validate_shader(nir, "in internal shader");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200193
194 assert(exec_list_length(&nir->functions) == 1);
195 struct exec_node *node = exec_list_get_head(&nir->functions);
196 entry_point = exec_node_data(nir_function, node, node);
197 } else {
198 uint32_t *spirv = (uint32_t *) module->data;
199 assert(module->size % 4 == 0);
200
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100201 if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV)
Samuel Pitoiset844ae722017-09-22 16:56:40 +0200202 radv_print_spirv(spirv, module->size, stderr);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200203
204 uint32_t num_spec_entries = 0;
205 struct nir_spirv_specialization *spec_entries = NULL;
206 if (spec_info && spec_info->mapEntryCount > 0) {
207 num_spec_entries = spec_info->mapEntryCount;
208 spec_entries = malloc(num_spec_entries * sizeof(*spec_entries));
209 for (uint32_t i = 0; i < num_spec_entries; i++) {
210 VkSpecializationMapEntry entry = spec_info->pMapEntries[i];
211 const void *data = spec_info->pData + entry.offset;
212 assert(data + entry.size <= spec_info->pData + spec_info->dataSize);
213
214 spec_entries[i].id = spec_info->pMapEntries[i].constantID;
215 if (spec_info->dataSize == 8)
216 spec_entries[i].data64 = *(const uint64_t *)data;
217 else
218 spec_entries[i].data32 = *(const uint32_t *)data;
219 }
220 }
Jason Ekstrande19c6232017-10-18 17:28:19 -0700221 const struct spirv_to_nir_options spirv_options = {
Jason Ekstrand63b9aa22018-12-14 18:36:01 -0600222 .lower_ubo_ssbo_access_to_offsets = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700223 .caps = {
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600224 .descriptor_array_dynamic_indexing = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +0100225 .device_group = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700226 .draw_parameters = true,
227 .float64 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600228 .gcn_shader = true,
229 .geometry_streams = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700230 .image_read_without_format = true,
231 .image_write_without_format = true,
Samuel Pitoiset08103c52018-09-14 12:52:40 +0200232 .int16 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600233 .int64 = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700234 .multiview = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600235 .runtime_descriptor_array = true,
236 .shader_viewport_index_layer = true,
237 .stencil_export = true,
238 .storage_16bit = true,
239 .storage_image_ms = true,
Samuel Pitoiset35656822018-09-18 15:27:52 +0200240 .subgroup_arithmetic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100241 .subgroup_ballot = true,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100242 .subgroup_basic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100243 .subgroup_quad = true,
244 .subgroup_shuffle = true,
245 .subgroup_vote = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600246 .tessellation = true,
Samuel Pitoisetb4eb0292018-10-05 18:04:56 +0200247 .transform_feedback = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600248 .trinary_minmax = true,
249 .variable_pointers = true,
Daniel Schürmannffbf75c2018-02-23 13:55:01 +0100250 },
Jason Ekstrandadc155a2018-11-28 15:20:03 -0600251 .ubo_ptr_type = glsl_vector_type(GLSL_TYPE_UINT, 2),
252 .ssbo_ptr_type = glsl_vector_type(GLSL_TYPE_UINT, 2),
253 .push_const_ptr_type = glsl_uint_type(),
254 .shared_ptr_type = glsl_uint_type(),
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200255 };
256 entry_point = spirv_to_nir(spirv, module->size / 4,
257 spec_entries, num_spec_entries,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700258 stage, entrypoint_name,
259 &spirv_options, &nir_options);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200260 nir = entry_point->shader;
Jason Ekstrand59fb59a2017-09-14 19:52:38 -0700261 assert(nir->info.stage == stage);
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500262 nir_validate_shader(nir, "after spirv_to_nir");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200263
264 free(spec_entries);
265
266 /* We have to lower away local constant initializers right before we
267 * inline functions. That way they get properly initialized at the top
268 * of the function and not at the top of its caller.
269 */
Karol Herbst9b240282019-01-16 00:05:04 +0100270 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_function_temp);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200271 NIR_PASS_V(nir, nir_lower_returns);
272 NIR_PASS_V(nir, nir_inline_functions);
Jason Ekstrandfc9c4f82018-12-13 11:08:13 -0600273 NIR_PASS_V(nir, nir_opt_deref);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200274
275 /* Pick off the single entrypoint that we want */
276 foreach_list_typed_safe(nir_function, func, node, &nir->functions) {
277 if (func != entry_point)
278 exec_node_remove(&func->node);
279 }
280 assert(exec_list_length(&nir->functions) == 1);
281 entry_point->name = ralloc_strdup(entry_point, "main");
282
Dave Airliee8d9b7a2018-03-19 04:27:49 +0000283 /* Make sure we lower constant initializers on output variables so that
284 * nir_remove_dead_variables below sees the corresponding stores
285 */
286 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_shader_out);
287
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200288 /* Now that we've deleted all but the main function, we can go ahead and
289 * lower the rest of the constant initializers.
290 */
291 NIR_PASS_V(nir, nir_lower_constant_initializers, ~0);
Jason Ekstrandb0c643d2018-03-21 17:30:22 -0700292
293 /* Split member structs. We do this before lower_io_to_temporaries so that
294 * it doesn't lower system values to temporaries by accident.
295 */
296 NIR_PASS_V(nir, nir_split_var_copies);
297 NIR_PASS_V(nir, nir_split_per_member_structs);
298
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200299 NIR_PASS_V(nir, nir_remove_dead_variables,
300 nir_var_shader_in | nir_var_shader_out | nir_var_system_value);
301
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200302 NIR_PASS_V(nir, nir_lower_system_values);
303 NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays);
304 }
305
306 /* Vulkan uses the separate-shader linking model */
307 nir->info.separate_shader = true;
308
309 nir_shader_gather_info(nir, entry_point->impl);
310
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200311 static const nir_lower_tex_options tex_options = {
312 .lower_txp = ~0,
313 };
314
315 nir_lower_tex(nir, &tex_options);
316
317 nir_lower_vars_to_ssa(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200318
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200319 if (nir->info.stage == MESA_SHADER_VERTEX ||
320 nir->info.stage == MESA_SHADER_GEOMETRY) {
321 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
322 nir_shader_get_entrypoint(nir), true, true);
323 } else if (nir->info.stage == MESA_SHADER_TESS_EVAL||
324 nir->info.stage == MESA_SHADER_FRAGMENT) {
325 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
326 nir_shader_get_entrypoint(nir), true, false);
327 }
328
Samuel Pitoisetded15092018-05-23 14:31:55 +0200329 nir_split_var_copies(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200330
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200331 nir_lower_global_vars_to_local(nir);
Karol Herbst9b240282019-01-16 00:05:04 +0100332 nir_remove_dead_variables(nir, nir_var_function_temp);
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100333 nir_lower_subgroups(nir, &(struct nir_lower_subgroups_options) {
334 .subgroup_size = 64,
335 .ballot_bit_size = 64,
336 .lower_to_scalar = 1,
337 .lower_subgroup_masks = 1,
338 .lower_shuffle = 1,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100339 .lower_shuffle_to_32bit = 1,
340 .lower_vote_eq_to_ballot = 1,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100341 });
342
Timothy Arceri72e42872018-09-24 18:18:48 +1000343 nir_lower_load_const_to_scalar(nir);
344
Timothy Arcerice188812018-05-08 14:57:55 +1000345 if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT))
Timothy Arceri06675712018-10-18 09:42:17 +1100346 radv_optimize_nir(nir, false, true);
347
348 /* We call nir_lower_var_copies() after the first radv_optimize_nir()
349 * to remove any copies introduced by nir_opt_find_array_copies().
350 */
351 nir_lower_var_copies(nir);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200352
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100353 /* Indirect lowering must be called after the radv_optimize_nir() loop
354 * has been called at least once. Otherwise indirect lowering can
355 * bloat the instruction count of the loop and cause it to be
356 * considered too large for unrolling.
357 */
358 ac_lower_indirect_derefs(nir, device->physical_device->rad_info.chip_class);
Timothy Arceri06675712018-10-18 09:42:17 +1100359 radv_optimize_nir(nir, flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, false);
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100360
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200361 return nir;
362}
363
364void *
365radv_alloc_shader_memory(struct radv_device *device,
366 struct radv_shader_variant *shader)
367{
368 mtx_lock(&device->shader_slab_mutex);
369 list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
370 uint64_t offset = 0;
371 list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) {
372 if (s->bo_offset - offset >= shader->code_size) {
373 shader->bo = slab->bo;
374 shader->bo_offset = offset;
375 list_addtail(&shader->slab_list, &s->slab_list);
376 mtx_unlock(&device->shader_slab_mutex);
377 return slab->ptr + offset;
378 }
379 offset = align_u64(s->bo_offset + s->code_size, 256);
380 }
381 if (slab->size - offset >= shader->code_size) {
382 shader->bo = slab->bo;
383 shader->bo_offset = offset;
384 list_addtail(&shader->slab_list, &slab->shaders);
385 mtx_unlock(&device->shader_slab_mutex);
386 return slab->ptr + offset;
387 }
388 }
389
390 mtx_unlock(&device->shader_slab_mutex);
391 struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab));
392
393 slab->size = 256 * 1024;
394 slab->bo = device->ws->buffer_create(device->ws, slab->size, 256,
Samuel Pitoiseta3c2a862018-01-04 15:19:47 +0100395 RADEON_DOMAIN_VRAM,
396 RADEON_FLAG_NO_INTERPROCESS_SHARING |
Danylo Piliaiev494a2062018-07-18 11:47:19 +0300397 (device->physical_device->cpdma_prefetch_writes_memory ?
Bas Nieuwenhuizenead54d42019-01-28 00:28:05 +0100398 0 : RADEON_FLAG_READ_ONLY),
399 RADV_BO_PRIORITY_SHADER);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200400 slab->ptr = (char*)device->ws->buffer_map(slab->bo);
401 list_inithead(&slab->shaders);
402
403 mtx_lock(&device->shader_slab_mutex);
404 list_add(&slab->slabs, &device->shader_slabs);
405
406 shader->bo = slab->bo;
407 shader->bo_offset = 0;
408 list_add(&shader->slab_list, &slab->shaders);
409 mtx_unlock(&device->shader_slab_mutex);
410 return slab->ptr;
411}
412
413void
414radv_destroy_shader_slabs(struct radv_device *device)
415{
416 list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
417 device->ws->buffer_destroy(slab->bo);
418 free(slab);
419 }
420 mtx_destroy(&device->shader_slab_mutex);
421}
422
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200423/* For the UMR disassembler. */
424#define DEBUGGER_END_OF_CODE_MARKER 0xbf9f0000 /* invalid instruction */
425#define DEBUGGER_NUM_MARKERS 5
426
427static unsigned
428radv_get_shader_binary_size(struct ac_shader_binary *binary)
429{
430 return binary->code_size + DEBUGGER_NUM_MARKERS * 4;
431}
432
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200433static void
434radv_fill_shader_variant(struct radv_device *device,
435 struct radv_shader_variant *variant,
436 struct ac_shader_binary *binary,
437 gl_shader_stage stage)
438{
439 bool scratch_enabled = variant->config.scratch_bytes_per_wave > 0;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200440 struct radv_shader_info *info = &variant->info.info;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200441 unsigned vgpr_comp_cnt = 0;
442
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200443 variant->code_size = radv_get_shader_binary_size(binary);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200444 variant->rsrc2 = S_00B12C_USER_SGPR(variant->info.num_user_sgprs) |
Bas Nieuwenhuizend97c8922018-09-16 12:17:00 +0200445 S_00B12C_USER_SGPR_MSB(variant->info.num_user_sgprs >> 5) |
Samuel Pitoisetb4eb0292018-10-05 18:04:56 +0200446 S_00B12C_SCRATCH_EN(scratch_enabled) |
447 S_00B12C_SO_BASE0_EN(!!info->so.strides[0]) |
448 S_00B12C_SO_BASE1_EN(!!info->so.strides[1]) |
449 S_00B12C_SO_BASE2_EN(!!info->so.strides[2]) |
450 S_00B12C_SO_BASE3_EN(!!info->so.strides[3]) |
451 S_00B12C_SO_EN(!!info->so.num_outputs);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200452
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200453 variant->rsrc1 = S_00B848_VGPRS((variant->config.num_vgprs - 1) / 4) |
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200454 S_00B848_SGPRS((variant->config.num_sgprs - 1) / 8) |
455 S_00B848_DX10_CLAMP(1) |
456 S_00B848_FLOAT_MODE(variant->config.float_mode);
457
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200458 switch (stage) {
459 case MESA_SHADER_TESS_EVAL:
460 vgpr_comp_cnt = 3;
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200461 variant->rsrc2 |= S_00B12C_OC_LDS_EN(1);
462 break;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200463 case MESA_SHADER_TESS_CTRL:
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200464 if (device->physical_device->rad_info.chip_class >= GFX9) {
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200465 vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200466 } else {
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200467 variant->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200468 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200469 break;
470 case MESA_SHADER_VERTEX:
471 case MESA_SHADER_GEOMETRY:
472 vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt;
473 break;
474 case MESA_SHADER_FRAGMENT:
475 break;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200476 case MESA_SHADER_COMPUTE:
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200477 variant->rsrc2 |=
Samuel Pitoiset4237c3d2017-12-18 22:06:38 +0100478 S_00B84C_TGID_X_EN(info->cs.uses_block_id[0]) |
479 S_00B84C_TGID_Y_EN(info->cs.uses_block_id[1]) |
480 S_00B84C_TGID_Z_EN(info->cs.uses_block_id[2]) |
481 S_00B84C_TIDIG_COMP_CNT(info->cs.uses_thread_id[2] ? 2 :
482 info->cs.uses_thread_id[1] ? 1 : 0) |
Samuel Pitoiset90c3bf02017-12-14 17:32:41 +0100483 S_00B84C_TG_SIZE_EN(info->cs.uses_local_invocation_idx) |
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200484 S_00B84C_LDS_SIZE(variant->config.lds_size);
485 break;
486 default:
487 unreachable("unsupported shader type");
488 break;
489 }
490
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200491 if (device->physical_device->rad_info.chip_class >= GFX9 &&
Bas Nieuwenhuizen73749ca2017-10-20 02:24:24 +0200492 stage == MESA_SHADER_GEOMETRY) {
Samuel Pitoiset232c4182018-01-09 16:01:09 +0100493 unsigned es_type = variant->info.gs.es_type;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100494 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
495
496 if (es_type == MESA_SHADER_VERTEX) {
497 es_vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt;
498 } else if (es_type == MESA_SHADER_TESS_EVAL) {
499 es_vgpr_comp_cnt = 3;
500 } else {
Bas Nieuwenhuizen0f89f9b2018-01-17 23:23:02 +0100501 unreachable("invalid shader ES type");
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100502 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100503
504 /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and
505 * VGPR[0:4] are always loaded.
506 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200507 if (info->uses_invocation_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100508 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200509 } else if (info->uses_prim_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100510 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200511 } else if (variant->info.gs.vertices_in >= 3) {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100512 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200513 } else {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100514 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200515 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100516
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100517 variant->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt);
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100518 variant->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Samuel Pitoiset232c4182018-01-09 16:01:09 +0100519 S_00B22C_OC_LDS_EN(es_type == MESA_SHADER_TESS_EVAL);
Bas Nieuwenhuizen73749ca2017-10-20 02:24:24 +0200520 } else if (device->physical_device->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200521 stage == MESA_SHADER_TESS_CTRL) {
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200522 variant->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200523 } else {
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200524 variant->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200525 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200526
527 void *ptr = radv_alloc_shader_memory(device, variant);
528 memcpy(ptr, binary->code, binary->code_size);
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200529
530 /* Add end-of-code markers for the UMR disassembler. */
531 uint32_t *ptr32 = (uint32_t *)ptr + binary->code_size / 4;
532 for (unsigned i = 0; i < DEBUGGER_NUM_MARKERS; i++)
533 ptr32[i] = DEBUGGER_END_OF_CODE_MARKER;
534
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200535}
536
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200537static void radv_init_llvm_target()
538{
539 LLVMInitializeAMDGPUTargetInfo();
540 LLVMInitializeAMDGPUTarget();
541 LLVMInitializeAMDGPUTargetMC();
542 LLVMInitializeAMDGPUAsmPrinter();
543
544 /* For inline assembly. */
545 LLVMInitializeAMDGPUAsmParser();
546
547 /* Workaround for bug in llvm 4.0 that causes image intrinsics
548 * to disappear.
549 * https://reviews.llvm.org/D26348
550 *
551 * Workaround for bug in llvm that causes the GPU to hang in presence
552 * of nested loops because there is an exec mask issue. The proper
553 * solution is to fix LLVM but this might require a bunch of work.
554 * https://bugs.llvm.org/show_bug.cgi?id=37744
555 *
556 * "mesa" is the prefix for error messages.
557 */
Samuel Pitoiset0a7e7672018-12-19 18:16:00 +0100558 if (HAVE_LLVM >= 0x0800) {
559 const char *argv[2] = { "mesa", "-simplifycfg-sink-common=false" };
560 LLVMParseCommandLineOptions(2, argv, NULL);
561
562 } else {
563 const char *argv[3] = { "mesa", "-simplifycfg-sink-common=false",
564 "-amdgpu-skip-threshold=1" };
565 LLVMParseCommandLineOptions(3, argv, NULL);
566 }
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200567}
568
569static once_flag radv_init_llvm_target_once_flag = ONCE_FLAG_INIT;
570
Dave Airlie473be162018-06-27 08:36:41 +1000571static void radv_init_llvm_once(void)
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200572{
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200573 call_once(&radv_init_llvm_target_once_flag, radv_init_llvm_target);
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200574}
575
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200576static struct radv_shader_variant *
577shader_variant_create(struct radv_device *device,
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200578 struct radv_shader_module *module,
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200579 struct nir_shader * const *shaders,
580 int shader_count,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200581 gl_shader_stage stage,
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100582 struct radv_nir_compiler_options *options,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200583 bool gs_copy_shader,
584 void **code_out,
585 unsigned *code_size_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200586{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200587 enum radeon_family chip_family = device->physical_device->rad_info.family;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200588 enum ac_target_machine_options tm_options = 0;
589 struct radv_shader_variant *variant;
590 struct ac_shader_binary binary;
Dave Airlie73989132018-06-27 09:27:03 +1000591 struct ac_llvm_compiler ac_llvm;
Dave Airlie6f3aee42018-06-27 11:34:25 +1000592 bool thread_compiler;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200593 variant = calloc(1, sizeof(struct radv_shader_variant));
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200594 if (!variant)
595 return NULL;
596
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200597 options->family = chip_family;
598 options->chip_class = device->physical_device->rad_info.chip_class;
Samuel Pitoiset8ade3e42018-05-11 16:36:02 +0200599 options->dump_shader = radv_can_dump_shader(device, module, gs_copy_shader);
Samuel Pitoisetd07edf52018-03-14 10:28:49 +0100600 options->dump_preoptir = options->dump_shader &&
Samuel Pitoiset33e6e5e2018-01-19 12:12:02 +0100601 device->instance->debug_flags & RADV_DEBUG_PREOPTIR;
Samuel Pitoiset81818662018-03-14 10:34:13 +0100602 options->record_llvm_ir = device->keep_shader_info;
Samuel Pitoisetbfca15e2018-06-14 14:28:58 +0200603 options->check_ir = device->instance->debug_flags & RADV_DEBUG_CHECKIR;
Dave Airlie010d0552018-02-19 07:14:04 +0000604 options->tess_offchip_block_dw_size = device->tess_offchip_block_dw_size;
Samuel Pitoisetd8a61d32018-05-16 16:02:04 +0200605 options->address32_hi = device->physical_device->rad_info.address32_hi;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200606
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200607 if (options->supports_spill)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200608 tm_options |= AC_TM_SUPPORTS_SPILL;
609 if (device->instance->perftest_flags & RADV_PERFTEST_SISCHED)
610 tm_options |= AC_TM_SISCHED;
Dave Airlie35c82af2018-07-03 09:44:22 +1000611 if (options->check_ir)
612 tm_options |= AC_TM_CHECK_IR;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200613
Dave Airlie6f3aee42018-06-27 11:34:25 +1000614 thread_compiler = !(device->instance->debug_flags & RADV_DEBUG_NOTHREADLLVM);
Dave Airlie473be162018-06-27 08:36:41 +1000615 radv_init_llvm_once();
Samuel Pitoiset3fbdcd92018-11-02 09:50:32 +0100616 radv_init_llvm_compiler(&ac_llvm,
Dave Airlie6f3aee42018-06-27 11:34:25 +1000617 thread_compiler,
618 chip_family, tm_options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200619 if (gs_copy_shader) {
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200620 assert(shader_count == 1);
Dave Airlie73989132018-06-27 09:27:03 +1000621 radv_compile_gs_copy_shader(&ac_llvm, *shaders, &binary,
Samuel Pitoisetb2653002018-03-09 16:58:10 +0100622 &variant->config, &variant->info,
Samuel Pitoisetd07edf52018-03-14 10:28:49 +0100623 options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200624 } else {
Dave Airlie73989132018-06-27 09:27:03 +1000625 radv_compile_nir_shader(&ac_llvm, &binary, &variant->config,
Samuel Pitoisetb2653002018-03-09 16:58:10 +0100626 &variant->info, shaders, shader_count,
Samuel Pitoisetd07edf52018-03-14 10:28:49 +0100627 options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200628 }
629
Dave Airlie6f3aee42018-06-27 11:34:25 +1000630 radv_destroy_llvm_compiler(&ac_llvm, thread_compiler);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200631
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200632 radv_fill_shader_variant(device, variant, &binary, stage);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200633
634 if (code_out) {
635 *code_out = binary.code;
Dave Airlieb88468f2018-07-27 05:18:02 +0100636 *code_size_out = binary.code_size;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200637 } else
638 free(binary.code);
639 free(binary.config);
640 free(binary.rodata);
641 free(binary.global_symbol_offsets);
642 free(binary.relocs);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200643 variant->ref_count = 1;
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200644
Alex Smithde889792017-10-27 14:25:05 +0100645 if (device->keep_shader_info) {
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200646 variant->disasm_string = binary.disasm_string;
Samuel Pitoiset81818662018-03-14 10:34:13 +0100647 variant->llvm_ir_string = binary.llvm_ir_string;
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200648 if (!gs_copy_shader && !module->nir) {
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200649 variant->nir = *shaders;
Samuel Pitoiset844ae722017-09-22 16:56:40 +0200650 variant->spirv = (uint32_t *)module->data;
651 variant->spirv_size = module->size;
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200652 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200653 } else {
654 free(binary.disasm_string);
655 }
656
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200657 return variant;
658}
659
660struct radv_shader_variant *
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200661radv_shader_variant_create(struct radv_device *device,
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200662 struct radv_shader_module *module,
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200663 struct nir_shader *const *shaders,
664 int shader_count,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200665 struct radv_pipeline_layout *layout,
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100666 const struct radv_shader_variant_key *key,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200667 void **code_out,
668 unsigned *code_size_out)
669{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100670 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200671
672 options.layout = layout;
673 if (key)
674 options.key = *key;
675
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100676 options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH);
Samuel Pitoiset1e86eaf2018-05-17 09:56:47 +0200677 options.supports_spill = true;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200678
Jason Ekstrand59fb59a2017-09-14 19:52:38 -0700679 return shader_variant_create(device, module, shaders, shader_count, shaders[shader_count - 1]->info.stage,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200680 &options, false, code_out, code_size_out);
681}
682
683struct radv_shader_variant *
684radv_create_gs_copy_shader(struct radv_device *device,
685 struct nir_shader *shader,
686 void **code_out,
687 unsigned *code_size_out,
Samuel Pitoiset47efc522017-09-01 12:09:56 +0200688 bool multiview)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200689{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100690 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200691
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200692 options.key.has_multiview_view_index = multiview;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200693
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200694 return shader_variant_create(device, NULL, &shader, 1, MESA_SHADER_VERTEX,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200695 &options, true, code_out, code_size_out);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200696}
697
698void
699radv_shader_variant_destroy(struct radv_device *device,
700 struct radv_shader_variant *variant)
701{
702 if (!p_atomic_dec_zero(&variant->ref_count))
703 return;
704
705 mtx_lock(&device->shader_slab_mutex);
706 list_del(&variant->slab_list);
707 mtx_unlock(&device->shader_slab_mutex);
708
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200709 ralloc_free(variant->nir);
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200710 free(variant->disasm_string);
Samuel Pitoiset81818662018-03-14 10:34:13 +0100711 free(variant->llvm_ir_string);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200712 free(variant);
713}
714
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200715const char *
716radv_get_shader_name(struct radv_shader_variant *var, gl_shader_stage stage)
717{
718 switch (stage) {
719 case MESA_SHADER_VERTEX: return var->info.vs.as_ls ? "Vertex Shader as LS" : var->info.vs.as_es ? "Vertex Shader as ES" : "Vertex Shader as VS";
720 case MESA_SHADER_GEOMETRY: return "Geometry Shader";
721 case MESA_SHADER_FRAGMENT: return "Pixel Shader";
722 case MESA_SHADER_COMPUTE: return "Compute Shader";
723 case MESA_SHADER_TESS_CTRL: return "Tessellation Control Shader";
724 case MESA_SHADER_TESS_EVAL: return var->info.tes.as_es ? "Tessellation Evaluation Shader as ES" : "Tessellation Evaluation Shader as VS";
725 default:
726 return "Unknown shader";
727 };
728}
729
Alex Smithde889792017-10-27 14:25:05 +0100730static void
731generate_shader_stats(struct radv_device *device,
732 struct radv_shader_variant *variant,
733 gl_shader_stage stage,
734 struct _mesa_string_buffer *buf)
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200735{
736 unsigned lds_increment = device->physical_device->rad_info.chip_class >= CIK ? 512 : 256;
737 struct ac_shader_config *conf;
738 unsigned max_simd_waves;
739 unsigned lds_per_wave = 0;
740
Dave Airlief77caa72018-04-23 10:16:07 +1000741 max_simd_waves = ac_get_max_simd_waves(device->physical_device->rad_info.family);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200742
743 conf = &variant->config;
744
745 if (stage == MESA_SHADER_FRAGMENT) {
746 lds_per_wave = conf->lds_size * lds_increment +
747 align(variant->info.fs.num_interp * 48,
748 lds_increment);
749 }
750
Alex Smithde889792017-10-27 14:25:05 +0100751 if (conf->num_sgprs)
Samuel Pitoiset2f7bb932018-04-06 14:06:24 +0200752 max_simd_waves =
753 MIN2(max_simd_waves,
Timothy Arceria53d68d2019-02-01 21:16:54 +1100754 ac_get_num_physical_sgprs(device->physical_device->rad_info.chip_class) / conf->num_sgprs);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200755
756 if (conf->num_vgprs)
Samuel Pitoiset466aba92018-04-06 14:10:34 +0200757 max_simd_waves =
758 MIN2(max_simd_waves,
759 RADV_NUM_PHYSICAL_VGPRS / conf->num_vgprs);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200760
761 /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD
762 * that PS can use.
763 */
764 if (lds_per_wave)
765 max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave);
766
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200767 if (stage == MESA_SHADER_FRAGMENT) {
Alex Smithde889792017-10-27 14:25:05 +0100768 _mesa_string_buffer_printf(buf, "*** SHADER CONFIG ***\n"
769 "SPI_PS_INPUT_ADDR = 0x%04x\n"
770 "SPI_PS_INPUT_ENA = 0x%04x\n",
771 conf->spi_ps_input_addr, conf->spi_ps_input_ena);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200772 }
773
Alex Smithde889792017-10-27 14:25:05 +0100774 _mesa_string_buffer_printf(buf, "*** SHADER STATS ***\n"
775 "SGPRS: %d\n"
776 "VGPRS: %d\n"
777 "Spilled SGPRs: %d\n"
778 "Spilled VGPRs: %d\n"
Samuel Pitoisete96e6f62018-03-01 22:12:56 +0100779 "PrivMem VGPRS: %d\n"
Alex Smithde889792017-10-27 14:25:05 +0100780 "Code Size: %d bytes\n"
781 "LDS: %d blocks\n"
782 "Scratch: %d bytes per wave\n"
783 "Max Waves: %d\n"
784 "********************\n\n\n",
785 conf->num_sgprs, conf->num_vgprs,
Samuel Pitoisete96e6f62018-03-01 22:12:56 +0100786 conf->spilled_sgprs, conf->spilled_vgprs,
787 variant->info.private_mem_vgprs, variant->code_size,
Alex Smithde889792017-10-27 14:25:05 +0100788 conf->lds_size, conf->scratch_bytes_per_wave,
789 max_simd_waves);
790}
791
792void
793radv_shader_dump_stats(struct radv_device *device,
794 struct radv_shader_variant *variant,
795 gl_shader_stage stage,
796 FILE *file)
797{
798 struct _mesa_string_buffer *buf = _mesa_string_buffer_create(NULL, 256);
799
800 generate_shader_stats(device, variant, stage, buf);
801
802 fprintf(file, "\n%s:\n", radv_get_shader_name(variant, stage));
Alex Smith134a40d2017-10-30 08:38:14 +0000803 fprintf(file, "%s", buf->buf);
Alex Smithde889792017-10-27 14:25:05 +0100804
805 _mesa_string_buffer_destroy(buf);
806}
807
808VkResult
809radv_GetShaderInfoAMD(VkDevice _device,
810 VkPipeline _pipeline,
811 VkShaderStageFlagBits shaderStage,
812 VkShaderInfoTypeAMD infoType,
813 size_t* pInfoSize,
814 void* pInfo)
815{
816 RADV_FROM_HANDLE(radv_device, device, _device);
817 RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline);
818 gl_shader_stage stage = vk_to_mesa_shader_stage(shaderStage);
819 struct radv_shader_variant *variant = pipeline->shaders[stage];
820 struct _mesa_string_buffer *buf;
821 VkResult result = VK_SUCCESS;
822
823 /* Spec doesn't indicate what to do if the stage is invalid, so just
824 * return no info for this. */
825 if (!variant)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +0200826 return vk_error(device->instance, VK_ERROR_FEATURE_NOT_PRESENT);
Alex Smithde889792017-10-27 14:25:05 +0100827
828 switch (infoType) {
829 case VK_SHADER_INFO_TYPE_STATISTICS_AMD:
830 if (!pInfo) {
831 *pInfoSize = sizeof(VkShaderStatisticsInfoAMD);
832 } else {
833 unsigned lds_multiplier = device->physical_device->rad_info.chip_class >= CIK ? 512 : 256;
834 struct ac_shader_config *conf = &variant->config;
835
836 VkShaderStatisticsInfoAMD statistics = {};
837 statistics.shaderStageMask = shaderStage;
Samuel Pitoiset466aba92018-04-06 14:10:34 +0200838 statistics.numPhysicalVgprs = RADV_NUM_PHYSICAL_VGPRS;
Timothy Arceria53d68d2019-02-01 21:16:54 +1100839 statistics.numPhysicalSgprs = ac_get_num_physical_sgprs(device->physical_device->rad_info.chip_class);
Alex Smithde889792017-10-27 14:25:05 +0100840 statistics.numAvailableSgprs = statistics.numPhysicalSgprs;
841
842 if (stage == MESA_SHADER_COMPUTE) {
843 unsigned *local_size = variant->nir->info.cs.local_size;
844 unsigned workgroup_size = local_size[0] * local_size[1] * local_size[2];
845
846 statistics.numAvailableVgprs = statistics.numPhysicalVgprs /
Eric Engestromd85fef12018-06-15 17:49:08 +0100847 ceil((double)workgroup_size / statistics.numPhysicalVgprs);
Alex Smithde889792017-10-27 14:25:05 +0100848
849 statistics.computeWorkGroupSize[0] = local_size[0];
850 statistics.computeWorkGroupSize[1] = local_size[1];
851 statistics.computeWorkGroupSize[2] = local_size[2];
852 } else {
853 statistics.numAvailableVgprs = statistics.numPhysicalVgprs;
854 }
855
856 statistics.resourceUsage.numUsedVgprs = conf->num_vgprs;
857 statistics.resourceUsage.numUsedSgprs = conf->num_sgprs;
858 statistics.resourceUsage.ldsSizePerLocalWorkGroup = 32768;
859 statistics.resourceUsage.ldsUsageSizeInBytes = conf->lds_size * lds_multiplier;
860 statistics.resourceUsage.scratchMemUsageInBytes = conf->scratch_bytes_per_wave;
861
862 size_t size = *pInfoSize;
863 *pInfoSize = sizeof(statistics);
864
865 memcpy(pInfo, &statistics, MIN2(size, *pInfoSize));
866
867 if (size < *pInfoSize)
868 result = VK_INCOMPLETE;
869 }
870
871 break;
872 case VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD:
873 buf = _mesa_string_buffer_create(NULL, 1024);
874
875 _mesa_string_buffer_printf(buf, "%s:\n", radv_get_shader_name(variant, stage));
Nicolai Hähnle8c97abc2018-11-07 12:10:21 +0100876 _mesa_string_buffer_printf(buf, "%s\n\n", variant->llvm_ir_string);
Alex Smithde889792017-10-27 14:25:05 +0100877 _mesa_string_buffer_printf(buf, "%s\n\n", variant->disasm_string);
878 generate_shader_stats(device, variant, stage, buf);
879
880 /* Need to include the null terminator. */
881 size_t length = buf->length + 1;
882
883 if (!pInfo) {
884 *pInfoSize = length;
885 } else {
886 size_t size = *pInfoSize;
887 *pInfoSize = length;
888
889 memcpy(pInfo, buf->buf, MIN2(size, length));
890
891 if (size < length)
892 result = VK_INCOMPLETE;
893 }
894
895 _mesa_string_buffer_destroy(buf);
896 break;
897 default:
898 /* VK_SHADER_INFO_TYPE_BINARY_AMD unimplemented for now. */
899 result = VK_ERROR_FEATURE_NOT_PRESENT;
900 break;
901 }
902
903 return result;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200904}