blob: 3e1098de79f1272b3d0c6dff78197e4c680d2f64 [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"
46#include "vk_format.h"
47#include "util/debug.h"
48#include "ac_exp_param.h"
49
Alex Smithde889792017-10-27 14:25:05 +010050#include "util/string_buffer.h"
51
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020052static const struct nir_shader_compiler_options nir_options = {
53 .vertex_id_zero_based = true,
54 .lower_scmp = true,
Rhys Perry0af95f02018-12-06 14:01:15 +000055 .lower_flrp16 = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020056 .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 Pitoiset71ffa002019-03-06 22:35:31 +010074 .lower_mul_2x32_64 = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020075 .max_unroll_iterations = 32
76};
77
78VkResult radv_CreateShaderModule(
79 VkDevice _device,
80 const VkShaderModuleCreateInfo* pCreateInfo,
81 const VkAllocationCallbacks* pAllocator,
82 VkShaderModule* pShaderModule)
83{
84 RADV_FROM_HANDLE(radv_device, device, _device);
85 struct radv_shader_module *module;
86
87 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO);
88 assert(pCreateInfo->flags == 0);
89
90 module = vk_alloc2(&device->alloc, pAllocator,
91 sizeof(*module) + pCreateInfo->codeSize, 8,
92 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
93 if (module == NULL)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +020094 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020095
96 module->nir = NULL;
97 module->size = pCreateInfo->codeSize;
98 memcpy(module->data, pCreateInfo->pCode, module->size);
99
100 _mesa_sha1_compute(module->data, module->size, module->sha1);
101
102 *pShaderModule = radv_shader_module_to_handle(module);
103
104 return VK_SUCCESS;
105}
106
107void radv_DestroyShaderModule(
108 VkDevice _device,
109 VkShaderModule _module,
110 const VkAllocationCallbacks* pAllocator)
111{
112 RADV_FROM_HANDLE(radv_device, device, _device);
113 RADV_FROM_HANDLE(radv_shader_module, module, _module);
114
115 if (!module)
116 return;
117
118 vk_free2(&device->alloc, pAllocator, module);
119}
120
Bas Nieuwenhuizen06f05042017-02-09 00:12:10 +0100121void
Timothy Arceri06675712018-10-18 09:42:17 +1100122radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively,
123 bool allow_copies)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200124{
125 bool progress;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700126 unsigned lower_flrp =
127 (shader->options->lower_flrp16 ? 16 : 0) |
128 (shader->options->lower_flrp32 ? 32 : 0) |
129 (shader->options->lower_flrp64 ? 64 : 0);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200130
131 do {
132 progress = false;
133
Karol Herbst9b240282019-01-16 00:05:04 +0100134 NIR_PASS(progress, shader, nir_split_array_vars, nir_var_function_temp);
135 NIR_PASS(progress, shader, nir_shrink_vec_array_vars, nir_var_function_temp);
Timothy Arceri8086fa12018-10-18 10:19:16 +1100136
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200137 NIR_PASS_V(shader, nir_lower_vars_to_ssa);
Iago Toral Quiroga2d648e52018-04-27 09:28:48 +0200138 NIR_PASS_V(shader, nir_lower_pack);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100139
Timothy Arceri06675712018-10-18 09:42:17 +1100140 if (allow_copies) {
141 /* Only run this pass in the first call to
142 * radv_optimize_nir. Later calls assume that we've
143 * lowered away any copy_deref instructions and we
144 * don't want to introduce any more.
145 */
146 NIR_PASS(progress, shader, nir_opt_find_array_copies);
147 }
148
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100149 NIR_PASS(progress, shader, nir_opt_copy_prop_vars);
150 NIR_PASS(progress, shader, nir_opt_dead_write_vars);
151
Jonathan Marekd0bff892019-05-08 12:45:48 -0400152 NIR_PASS_V(shader, nir_lower_alu_to_scalar, NULL);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200153 NIR_PASS_V(shader, nir_lower_phis_to_scalar);
154
155 NIR_PASS(progress, shader, nir_copy_prop);
156 NIR_PASS(progress, shader, nir_opt_remove_phis);
157 NIR_PASS(progress, shader, nir_opt_dce);
158 if (nir_opt_trivial_continues(shader)) {
159 progress = true;
160 NIR_PASS(progress, shader, nir_copy_prop);
Dave Airlie64d9bd12017-09-13 03:49:31 +0100161 NIR_PASS(progress, shader, nir_opt_remove_phis);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200162 NIR_PASS(progress, shader, nir_opt_dce);
163 }
Timothy Arcerie30804c2019-04-08 20:13:49 +1000164 NIR_PASS(progress, shader, nir_opt_if, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200165 NIR_PASS(progress, shader, nir_opt_dead_cf);
166 NIR_PASS(progress, shader, nir_opt_cse);
Ian Romanick378f9962018-06-18 16:11:55 -0700167 NIR_PASS(progress, shader, nir_opt_peephole_select, 8, true, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200168 NIR_PASS(progress, shader, nir_opt_constant_folding);
Timothy Arcerie19a8fe2019-05-02 13:38:52 +1000169 NIR_PASS(progress, shader, nir_opt_algebraic);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700170
171 if (lower_flrp != 0) {
Ian Romanick1f1007a2019-05-08 07:32:43 -0700172 bool lower_flrp_progress = false;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700173 NIR_PASS(lower_flrp_progress,
174 shader,
175 nir_lower_flrp,
176 lower_flrp,
177 false /* always_precise */,
178 shader->options->lower_ffma);
179 if (lower_flrp_progress) {
180 NIR_PASS(progress, shader,
181 nir_opt_constant_folding);
182 progress = true;
183 }
184
185 /* Nothing should rematerialize any flrps, so we only
186 * need to do this lowering once.
187 */
188 lower_flrp = 0;
189 }
190
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200191 NIR_PASS(progress, shader, nir_opt_undef);
192 NIR_PASS(progress, shader, nir_opt_conditional_discard);
193 if (shader->options->max_unroll_iterations) {
194 NIR_PASS(progress, shader, nir_opt_loop_unroll, 0);
195 }
Timothy Arcerice188812018-05-08 14:57:55 +1000196 } while (progress && !optimize_conservatively);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100197
198 NIR_PASS(progress, shader, nir_opt_shrink_load);
Samuel Pitoisete96a1d22018-03-08 15:31:14 +0100199 NIR_PASS(progress, shader, nir_opt_move_load_ubo);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200200}
201
202nir_shader *
203radv_shader_compile_to_nir(struct radv_device *device,
204 struct radv_shader_module *module,
205 const char *entrypoint_name,
206 gl_shader_stage stage,
Timothy Arcerice188812018-05-08 14:57:55 +1000207 const VkSpecializationInfo *spec_info,
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100208 const VkPipelineCreateFlags flags,
209 const struct radv_pipeline_layout *layout)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200210{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200211 nir_shader *nir;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200212 if (module->nir) {
213 /* Some things such as our meta clear/blit code will give us a NIR
214 * shader directly. In that case, we just ignore the SPIR-V entirely
215 * and just use the NIR shader */
216 nir = module->nir;
217 nir->options = &nir_options;
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500218 nir_validate_shader(nir, "in internal shader");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200219
220 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200221 } else {
222 uint32_t *spirv = (uint32_t *) module->data;
223 assert(module->size % 4 == 0);
224
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100225 if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV)
Samuel Pitoiset844ae722017-09-22 16:56:40 +0200226 radv_print_spirv(spirv, module->size, stderr);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200227
228 uint32_t num_spec_entries = 0;
229 struct nir_spirv_specialization *spec_entries = NULL;
230 if (spec_info && spec_info->mapEntryCount > 0) {
231 num_spec_entries = spec_info->mapEntryCount;
232 spec_entries = malloc(num_spec_entries * sizeof(*spec_entries));
233 for (uint32_t i = 0; i < num_spec_entries; i++) {
234 VkSpecializationMapEntry entry = spec_info->pMapEntries[i];
235 const void *data = spec_info->pData + entry.offset;
236 assert(data + entry.size <= spec_info->pData + spec_info->dataSize);
237
238 spec_entries[i].id = spec_info->pMapEntries[i].constantID;
239 if (spec_info->dataSize == 8)
240 spec_entries[i].data64 = *(const uint64_t *)data;
241 else
242 spec_entries[i].data32 = *(const uint32_t *)data;
243 }
244 }
Jason Ekstrande19c6232017-10-18 17:28:19 -0700245 const struct spirv_to_nir_options spirv_options = {
Jason Ekstrand63b9aa22018-12-14 18:36:01 -0600246 .lower_ubo_ssbo_access_to_offsets = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700247 .caps = {
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200248 .amd_gcn_shader = true,
249 .amd_shader_ballot = false,
250 .amd_trinary_minmax = true,
Samuel Pitoisetb3e34402019-04-19 12:40:37 +0200251 .derivative_group = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600252 .descriptor_array_dynamic_indexing = true,
Juan A. Suarez Romero06c9d7f2019-04-29 17:05:13 +0200253 .descriptor_array_non_uniform_indexing = true,
254 .descriptor_indexing = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +0100255 .device_group = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700256 .draw_parameters = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200257 .float16 = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700258 .float64 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600259 .geometry_streams = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700260 .image_read_without_format = true,
261 .image_write_without_format = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200262 .int8 = true,
Samuel Pitoiset08103c52018-09-14 12:52:40 +0200263 .int16 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600264 .int64 = true,
Samuel Pitoiset9cf55b02019-04-16 10:38:24 +0200265 .int64_atomics = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700266 .multiview = true,
Bas Nieuwenhuizen13ab63b2019-01-24 02:06:27 +0100267 .physical_storage_buffer_address = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600268 .runtime_descriptor_array = true,
269 .shader_viewport_index_layer = true,
270 .stencil_export = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200271 .storage_8bit = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600272 .storage_16bit = true,
273 .storage_image_ms = true,
Samuel Pitoiset35656822018-09-18 15:27:52 +0200274 .subgroup_arithmetic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100275 .subgroup_ballot = true,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100276 .subgroup_basic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100277 .subgroup_quad = true,
278 .subgroup_shuffle = true,
279 .subgroup_vote = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600280 .tessellation = true,
Samuel Pitoisetb4eb0292018-10-05 18:04:56 +0200281 .transform_feedback = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600282 .variable_pointers = true,
Daniel Schürmannffbf75c2018-02-23 13:55:01 +0100283 },
Caio Marcelo de Oliveira Filho31a74762019-05-01 14:15:32 -0700284 .ubo_addr_format = nir_address_format_32bit_index_offset,
285 .ssbo_addr_format = nir_address_format_32bit_index_offset,
286 .phys_ssbo_addr_format = nir_address_format_64bit_global,
287 .push_const_addr_format = nir_address_format_logical,
288 .shared_addr_format = nir_address_format_32bit_offset,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200289 };
Caio Marcelo de Oliveira Filhoe45bf012019-05-19 00:22:17 -0700290 nir = spirv_to_nir(spirv, module->size / 4,
291 spec_entries, num_spec_entries,
292 stage, entrypoint_name,
293 &spirv_options, &nir_options);
Jason Ekstrand59fb59a2017-09-14 19:52:38 -0700294 assert(nir->info.stage == stage);
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500295 nir_validate_shader(nir, "after spirv_to_nir");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200296
297 free(spec_entries);
298
299 /* We have to lower away local constant initializers right before we
300 * inline functions. That way they get properly initialized at the top
301 * of the function and not at the top of its caller.
302 */
Karol Herbst9b240282019-01-16 00:05:04 +0100303 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_function_temp);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200304 NIR_PASS_V(nir, nir_lower_returns);
305 NIR_PASS_V(nir, nir_inline_functions);
Jason Ekstrandfc9c4f82018-12-13 11:08:13 -0600306 NIR_PASS_V(nir, nir_opt_deref);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200307
308 /* Pick off the single entrypoint that we want */
309 foreach_list_typed_safe(nir_function, func, node, &nir->functions) {
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700310 if (func->is_entrypoint)
311 func->name = ralloc_strdup(func, "main");
312 else
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200313 exec_node_remove(&func->node);
314 }
315 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200316
Dave Airliee8d9b7a2018-03-19 04:27:49 +0000317 /* Make sure we lower constant initializers on output variables so that
318 * nir_remove_dead_variables below sees the corresponding stores
319 */
320 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_shader_out);
321
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200322 /* Now that we've deleted all but the main function, we can go ahead and
323 * lower the rest of the constant initializers.
324 */
325 NIR_PASS_V(nir, nir_lower_constant_initializers, ~0);
Jason Ekstrandb0c643d2018-03-21 17:30:22 -0700326
327 /* Split member structs. We do this before lower_io_to_temporaries so that
328 * it doesn't lower system values to temporaries by accident.
329 */
330 NIR_PASS_V(nir, nir_split_var_copies);
331 NIR_PASS_V(nir, nir_split_per_member_structs);
332
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200333 NIR_PASS_V(nir, nir_remove_dead_variables,
334 nir_var_shader_in | nir_var_shader_out | nir_var_system_value);
335
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200336 NIR_PASS_V(nir, nir_lower_system_values);
337 NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays);
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100338 NIR_PASS_V(nir, radv_nir_lower_ycbcr_textures, layout);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200339 }
340
341 /* Vulkan uses the separate-shader linking model */
342 nir->info.separate_shader = true;
343
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700344 nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir));
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200345
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200346 static const nir_lower_tex_options tex_options = {
347 .lower_txp = ~0,
Jason Ekstrand08f804e2019-03-19 13:55:21 -0500348 .lower_tg4_offsets = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200349 };
350
351 nir_lower_tex(nir, &tex_options);
352
353 nir_lower_vars_to_ssa(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200354
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200355 if (nir->info.stage == MESA_SHADER_VERTEX ||
356 nir->info.stage == MESA_SHADER_GEOMETRY) {
357 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
358 nir_shader_get_entrypoint(nir), true, true);
359 } else if (nir->info.stage == MESA_SHADER_TESS_EVAL||
360 nir->info.stage == MESA_SHADER_FRAGMENT) {
361 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
362 nir_shader_get_entrypoint(nir), true, false);
363 }
364
Samuel Pitoisetded15092018-05-23 14:31:55 +0200365 nir_split_var_copies(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200366
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200367 nir_lower_global_vars_to_local(nir);
Karol Herbst9b240282019-01-16 00:05:04 +0100368 nir_remove_dead_variables(nir, nir_var_function_temp);
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100369 nir_lower_subgroups(nir, &(struct nir_lower_subgroups_options) {
370 .subgroup_size = 64,
371 .ballot_bit_size = 64,
372 .lower_to_scalar = 1,
373 .lower_subgroup_masks = 1,
374 .lower_shuffle = 1,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100375 .lower_shuffle_to_32bit = 1,
376 .lower_vote_eq_to_ballot = 1,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100377 });
378
Timothy Arceri72e42872018-09-24 18:18:48 +1000379 nir_lower_load_const_to_scalar(nir);
380
Timothy Arcerice188812018-05-08 14:57:55 +1000381 if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT))
Timothy Arceri06675712018-10-18 09:42:17 +1100382 radv_optimize_nir(nir, false, true);
383
384 /* We call nir_lower_var_copies() after the first radv_optimize_nir()
385 * to remove any copies introduced by nir_opt_find_array_copies().
386 */
387 nir_lower_var_copies(nir);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200388
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100389 /* Indirect lowering must be called after the radv_optimize_nir() loop
390 * has been called at least once. Otherwise indirect lowering can
391 * bloat the instruction count of the loop and cause it to be
392 * considered too large for unrolling.
393 */
394 ac_lower_indirect_derefs(nir, device->physical_device->rad_info.chip_class);
Timothy Arceri06675712018-10-18 09:42:17 +1100395 radv_optimize_nir(nir, flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, false);
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100396
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200397 return nir;
398}
399
400void *
401radv_alloc_shader_memory(struct radv_device *device,
402 struct radv_shader_variant *shader)
403{
404 mtx_lock(&device->shader_slab_mutex);
405 list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
406 uint64_t offset = 0;
407 list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) {
408 if (s->bo_offset - offset >= shader->code_size) {
409 shader->bo = slab->bo;
410 shader->bo_offset = offset;
411 list_addtail(&shader->slab_list, &s->slab_list);
412 mtx_unlock(&device->shader_slab_mutex);
413 return slab->ptr + offset;
414 }
415 offset = align_u64(s->bo_offset + s->code_size, 256);
416 }
417 if (slab->size - offset >= shader->code_size) {
418 shader->bo = slab->bo;
419 shader->bo_offset = offset;
420 list_addtail(&shader->slab_list, &slab->shaders);
421 mtx_unlock(&device->shader_slab_mutex);
422 return slab->ptr + offset;
423 }
424 }
425
426 mtx_unlock(&device->shader_slab_mutex);
427 struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab));
428
429 slab->size = 256 * 1024;
430 slab->bo = device->ws->buffer_create(device->ws, slab->size, 256,
Samuel Pitoiseta3c2a862018-01-04 15:19:47 +0100431 RADEON_DOMAIN_VRAM,
432 RADEON_FLAG_NO_INTERPROCESS_SHARING |
Danylo Piliaiev494a2062018-07-18 11:47:19 +0300433 (device->physical_device->cpdma_prefetch_writes_memory ?
Bas Nieuwenhuizenead54d42019-01-28 00:28:05 +0100434 0 : RADEON_FLAG_READ_ONLY),
435 RADV_BO_PRIORITY_SHADER);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200436 slab->ptr = (char*)device->ws->buffer_map(slab->bo);
437 list_inithead(&slab->shaders);
438
439 mtx_lock(&device->shader_slab_mutex);
440 list_add(&slab->slabs, &device->shader_slabs);
441
442 shader->bo = slab->bo;
443 shader->bo_offset = 0;
444 list_add(&shader->slab_list, &slab->shaders);
445 mtx_unlock(&device->shader_slab_mutex);
446 return slab->ptr;
447}
448
449void
450radv_destroy_shader_slabs(struct radv_device *device)
451{
452 list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
453 device->ws->buffer_destroy(slab->bo);
454 free(slab);
455 }
456 mtx_destroy(&device->shader_slab_mutex);
457}
458
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200459/* For the UMR disassembler. */
460#define DEBUGGER_END_OF_CODE_MARKER 0xbf9f0000 /* invalid instruction */
461#define DEBUGGER_NUM_MARKERS 5
462
463static unsigned
464radv_get_shader_binary_size(struct ac_shader_binary *binary)
465{
466 return binary->code_size + DEBUGGER_NUM_MARKERS * 4;
467}
468
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200469static void
470radv_fill_shader_variant(struct radv_device *device,
471 struct radv_shader_variant *variant,
472 struct ac_shader_binary *binary,
473 gl_shader_stage stage)
474{
475 bool scratch_enabled = variant->config.scratch_bytes_per_wave > 0;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200476 struct radv_shader_info *info = &variant->info.info;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200477 unsigned vgpr_comp_cnt = 0;
478
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200479 variant->code_size = radv_get_shader_binary_size(binary);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200480 variant->rsrc2 = S_00B12C_USER_SGPR(variant->info.num_user_sgprs) |
Bas Nieuwenhuizend97c8922018-09-16 12:17:00 +0200481 S_00B12C_USER_SGPR_MSB(variant->info.num_user_sgprs >> 5) |
Samuel Pitoisetb4eb0292018-10-05 18:04:56 +0200482 S_00B12C_SCRATCH_EN(scratch_enabled) |
483 S_00B12C_SO_BASE0_EN(!!info->so.strides[0]) |
484 S_00B12C_SO_BASE1_EN(!!info->so.strides[1]) |
485 S_00B12C_SO_BASE2_EN(!!info->so.strides[2]) |
486 S_00B12C_SO_BASE3_EN(!!info->so.strides[3]) |
487 S_00B12C_SO_EN(!!info->so.num_outputs);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200488
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200489 variant->rsrc1 = S_00B848_VGPRS((variant->config.num_vgprs - 1) / 4) |
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200490 S_00B848_SGPRS((variant->config.num_sgprs - 1) / 8) |
491 S_00B848_DX10_CLAMP(1) |
492 S_00B848_FLOAT_MODE(variant->config.float_mode);
493
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200494 switch (stage) {
495 case MESA_SHADER_TESS_EVAL:
496 vgpr_comp_cnt = 3;
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200497 variant->rsrc2 |= S_00B12C_OC_LDS_EN(1);
498 break;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200499 case MESA_SHADER_TESS_CTRL:
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200500 if (device->physical_device->rad_info.chip_class >= GFX9) {
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200501 vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200502 } else {
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200503 variant->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200504 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200505 break;
506 case MESA_SHADER_VERTEX:
507 case MESA_SHADER_GEOMETRY:
508 vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt;
509 break;
510 case MESA_SHADER_FRAGMENT:
511 break;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200512 case MESA_SHADER_COMPUTE:
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200513 variant->rsrc2 |=
Samuel Pitoiset4237c3d2017-12-18 22:06:38 +0100514 S_00B84C_TGID_X_EN(info->cs.uses_block_id[0]) |
515 S_00B84C_TGID_Y_EN(info->cs.uses_block_id[1]) |
516 S_00B84C_TGID_Z_EN(info->cs.uses_block_id[2]) |
517 S_00B84C_TIDIG_COMP_CNT(info->cs.uses_thread_id[2] ? 2 :
518 info->cs.uses_thread_id[1] ? 1 : 0) |
Samuel Pitoiset90c3bf02017-12-14 17:32:41 +0100519 S_00B84C_TG_SIZE_EN(info->cs.uses_local_invocation_idx) |
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200520 S_00B84C_LDS_SIZE(variant->config.lds_size);
521 break;
522 default:
523 unreachable("unsupported shader type");
524 break;
525 }
526
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200527 if (device->physical_device->rad_info.chip_class >= GFX9 &&
Bas Nieuwenhuizen73749ca2017-10-20 02:24:24 +0200528 stage == MESA_SHADER_GEOMETRY) {
Samuel Pitoiset232c4182018-01-09 16:01:09 +0100529 unsigned es_type = variant->info.gs.es_type;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100530 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
531
532 if (es_type == MESA_SHADER_VERTEX) {
533 es_vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt;
534 } else if (es_type == MESA_SHADER_TESS_EVAL) {
535 es_vgpr_comp_cnt = 3;
536 } else {
Bas Nieuwenhuizen0f89f9b2018-01-17 23:23:02 +0100537 unreachable("invalid shader ES type");
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100538 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100539
540 /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and
541 * VGPR[0:4] are always loaded.
542 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200543 if (info->uses_invocation_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100544 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200545 } else if (info->uses_prim_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100546 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200547 } else if (variant->info.gs.vertices_in >= 3) {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100548 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200549 } else {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100550 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200551 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100552
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100553 variant->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt);
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100554 variant->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Samuel Pitoiset232c4182018-01-09 16:01:09 +0100555 S_00B22C_OC_LDS_EN(es_type == MESA_SHADER_TESS_EVAL);
Bas Nieuwenhuizen73749ca2017-10-20 02:24:24 +0200556 } else if (device->physical_device->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200557 stage == MESA_SHADER_TESS_CTRL) {
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200558 variant->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200559 } else {
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200560 variant->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200561 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200562
563 void *ptr = radv_alloc_shader_memory(device, variant);
564 memcpy(ptr, binary->code, binary->code_size);
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200565
566 /* Add end-of-code markers for the UMR disassembler. */
567 uint32_t *ptr32 = (uint32_t *)ptr + binary->code_size / 4;
568 for (unsigned i = 0; i < DEBUGGER_NUM_MARKERS; i++)
569 ptr32[i] = DEBUGGER_END_OF_CODE_MARKER;
570
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200571}
572
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200573static void radv_init_llvm_target()
574{
575 LLVMInitializeAMDGPUTargetInfo();
576 LLVMInitializeAMDGPUTarget();
577 LLVMInitializeAMDGPUTargetMC();
578 LLVMInitializeAMDGPUAsmPrinter();
579
580 /* For inline assembly. */
581 LLVMInitializeAMDGPUAsmParser();
582
583 /* Workaround for bug in llvm 4.0 that causes image intrinsics
584 * to disappear.
585 * https://reviews.llvm.org/D26348
586 *
587 * Workaround for bug in llvm that causes the GPU to hang in presence
588 * of nested loops because there is an exec mask issue. The proper
589 * solution is to fix LLVM but this might require a bunch of work.
590 * https://bugs.llvm.org/show_bug.cgi?id=37744
591 *
592 * "mesa" is the prefix for error messages.
593 */
Samuel Pitoiset0a7e7672018-12-19 18:16:00 +0100594 if (HAVE_LLVM >= 0x0800) {
595 const char *argv[2] = { "mesa", "-simplifycfg-sink-common=false" };
596 LLVMParseCommandLineOptions(2, argv, NULL);
597
598 } else {
599 const char *argv[3] = { "mesa", "-simplifycfg-sink-common=false",
600 "-amdgpu-skip-threshold=1" };
601 LLVMParseCommandLineOptions(3, argv, NULL);
602 }
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200603}
604
605static once_flag radv_init_llvm_target_once_flag = ONCE_FLAG_INIT;
606
Dave Airlie473be162018-06-27 08:36:41 +1000607static void radv_init_llvm_once(void)
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200608{
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200609 call_once(&radv_init_llvm_target_once_flag, radv_init_llvm_target);
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200610}
611
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200612static struct radv_shader_variant *
613shader_variant_create(struct radv_device *device,
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200614 struct radv_shader_module *module,
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200615 struct nir_shader * const *shaders,
616 int shader_count,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200617 gl_shader_stage stage,
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100618 struct radv_nir_compiler_options *options,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200619 bool gs_copy_shader,
620 void **code_out,
621 unsigned *code_size_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200622{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200623 enum radeon_family chip_family = device->physical_device->rad_info.family;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200624 enum ac_target_machine_options tm_options = 0;
625 struct radv_shader_variant *variant;
626 struct ac_shader_binary binary;
Dave Airlie73989132018-06-27 09:27:03 +1000627 struct ac_llvm_compiler ac_llvm;
Dave Airlie6f3aee42018-06-27 11:34:25 +1000628 bool thread_compiler;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200629 variant = calloc(1, sizeof(struct radv_shader_variant));
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200630 if (!variant)
631 return NULL;
632
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200633 options->family = chip_family;
634 options->chip_class = device->physical_device->rad_info.chip_class;
Samuel Pitoiset8ade3e42018-05-11 16:36:02 +0200635 options->dump_shader = radv_can_dump_shader(device, module, gs_copy_shader);
Samuel Pitoisetd07edf52018-03-14 10:28:49 +0100636 options->dump_preoptir = options->dump_shader &&
Samuel Pitoiset33e6e5e2018-01-19 12:12:02 +0100637 device->instance->debug_flags & RADV_DEBUG_PREOPTIR;
Samuel Pitoiset81818662018-03-14 10:34:13 +0100638 options->record_llvm_ir = device->keep_shader_info;
Samuel Pitoisetbfca15e2018-06-14 14:28:58 +0200639 options->check_ir = device->instance->debug_flags & RADV_DEBUG_CHECKIR;
Dave Airlie010d0552018-02-19 07:14:04 +0000640 options->tess_offchip_block_dw_size = device->tess_offchip_block_dw_size;
Samuel Pitoisetd8a61d32018-05-16 16:02:04 +0200641 options->address32_hi = device->physical_device->rad_info.address32_hi;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200642
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200643 if (options->supports_spill)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200644 tm_options |= AC_TM_SUPPORTS_SPILL;
645 if (device->instance->perftest_flags & RADV_PERFTEST_SISCHED)
646 tm_options |= AC_TM_SISCHED;
Dave Airlie35c82af2018-07-03 09:44:22 +1000647 if (options->check_ir)
648 tm_options |= AC_TM_CHECK_IR;
Samuel Pitoisetd7501832019-05-07 16:09:46 +0200649 if (device->instance->debug_flags & RADV_DEBUG_NO_LOAD_STORE_OPT)
650 tm_options |= AC_TM_NO_LOAD_STORE_OPT;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200651
Dave Airlie6f3aee42018-06-27 11:34:25 +1000652 thread_compiler = !(device->instance->debug_flags & RADV_DEBUG_NOTHREADLLVM);
Dave Airlie473be162018-06-27 08:36:41 +1000653 radv_init_llvm_once();
Samuel Pitoiset3fbdcd92018-11-02 09:50:32 +0100654 radv_init_llvm_compiler(&ac_llvm,
Dave Airlie6f3aee42018-06-27 11:34:25 +1000655 thread_compiler,
656 chip_family, tm_options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200657 if (gs_copy_shader) {
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200658 assert(shader_count == 1);
Dave Airlie73989132018-06-27 09:27:03 +1000659 radv_compile_gs_copy_shader(&ac_llvm, *shaders, &binary,
Samuel Pitoisetb2653002018-03-09 16:58:10 +0100660 &variant->config, &variant->info,
Samuel Pitoisetd07edf52018-03-14 10:28:49 +0100661 options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200662 } else {
Dave Airlie73989132018-06-27 09:27:03 +1000663 radv_compile_nir_shader(&ac_llvm, &binary, &variant->config,
Samuel Pitoisetb2653002018-03-09 16:58:10 +0100664 &variant->info, shaders, shader_count,
Samuel Pitoisetd07edf52018-03-14 10:28:49 +0100665 options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200666 }
667
Dave Airlie6f3aee42018-06-27 11:34:25 +1000668 radv_destroy_llvm_compiler(&ac_llvm, thread_compiler);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200669
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200670 radv_fill_shader_variant(device, variant, &binary, stage);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200671
672 if (code_out) {
673 *code_out = binary.code;
Dave Airlieb88468f2018-07-27 05:18:02 +0100674 *code_size_out = binary.code_size;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200675 } else
676 free(binary.code);
677 free(binary.config);
678 free(binary.rodata);
679 free(binary.global_symbol_offsets);
680 free(binary.relocs);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200681 variant->ref_count = 1;
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200682
Alex Smithde889792017-10-27 14:25:05 +0100683 if (device->keep_shader_info) {
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200684 variant->disasm_string = binary.disasm_string;
Samuel Pitoiset81818662018-03-14 10:34:13 +0100685 variant->llvm_ir_string = binary.llvm_ir_string;
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200686 if (!gs_copy_shader && !module->nir) {
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200687 variant->nir = *shaders;
Samuel Pitoiset844ae722017-09-22 16:56:40 +0200688 variant->spirv = (uint32_t *)module->data;
689 variant->spirv_size = module->size;
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200690 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200691 } else {
692 free(binary.disasm_string);
693 }
694
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200695 return variant;
696}
697
698struct radv_shader_variant *
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200699radv_shader_variant_create(struct radv_device *device,
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200700 struct radv_shader_module *module,
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200701 struct nir_shader *const *shaders,
702 int shader_count,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200703 struct radv_pipeline_layout *layout,
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100704 const struct radv_shader_variant_key *key,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200705 void **code_out,
706 unsigned *code_size_out)
707{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100708 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200709
710 options.layout = layout;
711 if (key)
712 options.key = *key;
713
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100714 options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH);
Samuel Pitoiset1e86eaf2018-05-17 09:56:47 +0200715 options.supports_spill = true;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200716
Jason Ekstrand59fb59a2017-09-14 19:52:38 -0700717 return shader_variant_create(device, module, shaders, shader_count, shaders[shader_count - 1]->info.stage,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200718 &options, false, code_out, code_size_out);
719}
720
721struct radv_shader_variant *
722radv_create_gs_copy_shader(struct radv_device *device,
723 struct nir_shader *shader,
724 void **code_out,
725 unsigned *code_size_out,
Samuel Pitoiset47efc522017-09-01 12:09:56 +0200726 bool multiview)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200727{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100728 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200729
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200730 options.key.has_multiview_view_index = multiview;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200731
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200732 return shader_variant_create(device, NULL, &shader, 1, MESA_SHADER_VERTEX,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200733 &options, true, code_out, code_size_out);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200734}
735
736void
737radv_shader_variant_destroy(struct radv_device *device,
738 struct radv_shader_variant *variant)
739{
740 if (!p_atomic_dec_zero(&variant->ref_count))
741 return;
742
743 mtx_lock(&device->shader_slab_mutex);
744 list_del(&variant->slab_list);
745 mtx_unlock(&device->shader_slab_mutex);
746
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200747 ralloc_free(variant->nir);
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200748 free(variant->disasm_string);
Samuel Pitoiset81818662018-03-14 10:34:13 +0100749 free(variant->llvm_ir_string);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200750 free(variant);
751}
752
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200753const char *
754radv_get_shader_name(struct radv_shader_variant *var, gl_shader_stage stage)
755{
756 switch (stage) {
757 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";
758 case MESA_SHADER_GEOMETRY: return "Geometry Shader";
759 case MESA_SHADER_FRAGMENT: return "Pixel Shader";
760 case MESA_SHADER_COMPUTE: return "Compute Shader";
761 case MESA_SHADER_TESS_CTRL: return "Tessellation Control Shader";
762 case MESA_SHADER_TESS_EVAL: return var->info.tes.as_es ? "Tessellation Evaluation Shader as ES" : "Tessellation Evaluation Shader as VS";
763 default:
764 return "Unknown shader";
765 };
766}
767
Alex Smithde889792017-10-27 14:25:05 +0100768static void
769generate_shader_stats(struct radv_device *device,
770 struct radv_shader_variant *variant,
771 gl_shader_stage stage,
772 struct _mesa_string_buffer *buf)
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200773{
Timothy Arceri9b9ccee2019-02-01 22:04:39 +1100774 enum chip_class chip_class = device->physical_device->rad_info.chip_class;
Marek Olšákccfcb9d2019-05-14 22:16:20 -0400775 unsigned lds_increment = chip_class >= GFX7 ? 512 : 256;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200776 struct ac_shader_config *conf;
777 unsigned max_simd_waves;
778 unsigned lds_per_wave = 0;
779
Dave Airlief77caa72018-04-23 10:16:07 +1000780 max_simd_waves = ac_get_max_simd_waves(device->physical_device->rad_info.family);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200781
782 conf = &variant->config;
783
784 if (stage == MESA_SHADER_FRAGMENT) {
785 lds_per_wave = conf->lds_size * lds_increment +
786 align(variant->info.fs.num_interp * 48,
787 lds_increment);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +1100788 } else if (stage == MESA_SHADER_COMPUTE) {
789 unsigned max_workgroup_size =
Samuel Pitoiset5e7f8002019-02-01 15:30:31 +0100790 radv_nir_get_max_workgroup_size(chip_class, variant->nir);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +1100791 lds_per_wave = (conf->lds_size * lds_increment) /
792 DIV_ROUND_UP(max_workgroup_size, 64);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200793 }
794
Alex Smithde889792017-10-27 14:25:05 +0100795 if (conf->num_sgprs)
Samuel Pitoiset2f7bb932018-04-06 14:06:24 +0200796 max_simd_waves =
797 MIN2(max_simd_waves,
Timothy Arceri9b9ccee2019-02-01 22:04:39 +1100798 ac_get_num_physical_sgprs(chip_class) / conf->num_sgprs);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200799
800 if (conf->num_vgprs)
Samuel Pitoiset466aba92018-04-06 14:10:34 +0200801 max_simd_waves =
802 MIN2(max_simd_waves,
803 RADV_NUM_PHYSICAL_VGPRS / conf->num_vgprs);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200804
805 /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD
806 * that PS can use.
807 */
808 if (lds_per_wave)
809 max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave);
810
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200811 if (stage == MESA_SHADER_FRAGMENT) {
Alex Smithde889792017-10-27 14:25:05 +0100812 _mesa_string_buffer_printf(buf, "*** SHADER CONFIG ***\n"
813 "SPI_PS_INPUT_ADDR = 0x%04x\n"
814 "SPI_PS_INPUT_ENA = 0x%04x\n",
815 conf->spi_ps_input_addr, conf->spi_ps_input_ena);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200816 }
817
Alex Smithde889792017-10-27 14:25:05 +0100818 _mesa_string_buffer_printf(buf, "*** SHADER STATS ***\n"
819 "SGPRS: %d\n"
820 "VGPRS: %d\n"
821 "Spilled SGPRs: %d\n"
822 "Spilled VGPRs: %d\n"
Samuel Pitoisete96e6f62018-03-01 22:12:56 +0100823 "PrivMem VGPRS: %d\n"
Alex Smithde889792017-10-27 14:25:05 +0100824 "Code Size: %d bytes\n"
825 "LDS: %d blocks\n"
826 "Scratch: %d bytes per wave\n"
827 "Max Waves: %d\n"
828 "********************\n\n\n",
829 conf->num_sgprs, conf->num_vgprs,
Samuel Pitoisete96e6f62018-03-01 22:12:56 +0100830 conf->spilled_sgprs, conf->spilled_vgprs,
831 variant->info.private_mem_vgprs, variant->code_size,
Alex Smithde889792017-10-27 14:25:05 +0100832 conf->lds_size, conf->scratch_bytes_per_wave,
833 max_simd_waves);
834}
835
836void
837radv_shader_dump_stats(struct radv_device *device,
838 struct radv_shader_variant *variant,
839 gl_shader_stage stage,
840 FILE *file)
841{
842 struct _mesa_string_buffer *buf = _mesa_string_buffer_create(NULL, 256);
843
844 generate_shader_stats(device, variant, stage, buf);
845
846 fprintf(file, "\n%s:\n", radv_get_shader_name(variant, stage));
Alex Smith134a40d2017-10-30 08:38:14 +0000847 fprintf(file, "%s", buf->buf);
Alex Smithde889792017-10-27 14:25:05 +0100848
849 _mesa_string_buffer_destroy(buf);
850}
851
852VkResult
853radv_GetShaderInfoAMD(VkDevice _device,
854 VkPipeline _pipeline,
855 VkShaderStageFlagBits shaderStage,
856 VkShaderInfoTypeAMD infoType,
857 size_t* pInfoSize,
858 void* pInfo)
859{
860 RADV_FROM_HANDLE(radv_device, device, _device);
861 RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline);
862 gl_shader_stage stage = vk_to_mesa_shader_stage(shaderStage);
863 struct radv_shader_variant *variant = pipeline->shaders[stage];
864 struct _mesa_string_buffer *buf;
865 VkResult result = VK_SUCCESS;
866
867 /* Spec doesn't indicate what to do if the stage is invalid, so just
868 * return no info for this. */
869 if (!variant)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +0200870 return vk_error(device->instance, VK_ERROR_FEATURE_NOT_PRESENT);
Alex Smithde889792017-10-27 14:25:05 +0100871
872 switch (infoType) {
873 case VK_SHADER_INFO_TYPE_STATISTICS_AMD:
874 if (!pInfo) {
875 *pInfoSize = sizeof(VkShaderStatisticsInfoAMD);
876 } else {
Marek Olšákccfcb9d2019-05-14 22:16:20 -0400877 unsigned lds_multiplier = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
Alex Smithde889792017-10-27 14:25:05 +0100878 struct ac_shader_config *conf = &variant->config;
879
880 VkShaderStatisticsInfoAMD statistics = {};
881 statistics.shaderStageMask = shaderStage;
Samuel Pitoiset466aba92018-04-06 14:10:34 +0200882 statistics.numPhysicalVgprs = RADV_NUM_PHYSICAL_VGPRS;
Timothy Arceria53d68d2019-02-01 21:16:54 +1100883 statistics.numPhysicalSgprs = ac_get_num_physical_sgprs(device->physical_device->rad_info.chip_class);
Alex Smithde889792017-10-27 14:25:05 +0100884 statistics.numAvailableSgprs = statistics.numPhysicalSgprs;
885
886 if (stage == MESA_SHADER_COMPUTE) {
887 unsigned *local_size = variant->nir->info.cs.local_size;
888 unsigned workgroup_size = local_size[0] * local_size[1] * local_size[2];
889
890 statistics.numAvailableVgprs = statistics.numPhysicalVgprs /
Eric Engestromd85fef12018-06-15 17:49:08 +0100891 ceil((double)workgroup_size / statistics.numPhysicalVgprs);
Alex Smithde889792017-10-27 14:25:05 +0100892
893 statistics.computeWorkGroupSize[0] = local_size[0];
894 statistics.computeWorkGroupSize[1] = local_size[1];
895 statistics.computeWorkGroupSize[2] = local_size[2];
896 } else {
897 statistics.numAvailableVgprs = statistics.numPhysicalVgprs;
898 }
899
900 statistics.resourceUsage.numUsedVgprs = conf->num_vgprs;
901 statistics.resourceUsage.numUsedSgprs = conf->num_sgprs;
902 statistics.resourceUsage.ldsSizePerLocalWorkGroup = 32768;
903 statistics.resourceUsage.ldsUsageSizeInBytes = conf->lds_size * lds_multiplier;
904 statistics.resourceUsage.scratchMemUsageInBytes = conf->scratch_bytes_per_wave;
905
906 size_t size = *pInfoSize;
907 *pInfoSize = sizeof(statistics);
908
909 memcpy(pInfo, &statistics, MIN2(size, *pInfoSize));
910
911 if (size < *pInfoSize)
912 result = VK_INCOMPLETE;
913 }
914
915 break;
916 case VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD:
917 buf = _mesa_string_buffer_create(NULL, 1024);
918
919 _mesa_string_buffer_printf(buf, "%s:\n", radv_get_shader_name(variant, stage));
Nicolai Hähnle8c97abc2018-11-07 12:10:21 +0100920 _mesa_string_buffer_printf(buf, "%s\n\n", variant->llvm_ir_string);
Alex Smithde889792017-10-27 14:25:05 +0100921 _mesa_string_buffer_printf(buf, "%s\n\n", variant->disasm_string);
922 generate_shader_stats(device, variant, stage, buf);
923
924 /* Need to include the null terminator. */
925 size_t length = buf->length + 1;
926
927 if (!pInfo) {
928 *pInfoSize = length;
929 } else {
930 size_t size = *pInfoSize;
931 *pInfoSize = length;
932
933 memcpy(pInfo, buf->buf, MIN2(size, length));
934
935 if (size < length)
936 result = VK_INCOMPLETE;
937 }
938
939 _mesa_string_buffer_destroy(buf);
940 break;
941 default:
942 /* VK_SHADER_INFO_TYPE_BINARY_AMD unimplemented for now. */
943 result = VK_ERROR_FEATURE_NOT_PRESENT;
944 break;
945 }
946
947 return result;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200948}