blob: b695fa9834b06466b56ded3d8136f5bc5b3a4866 [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
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,
Rhys Perry0af95f02018-12-06 14:01:15 +000056 .lower_flrp16 = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020057 .lower_flrp32 = true,
Timothy Arcerif0d74ec2018-01-12 11:12:09 +110058 .lower_flrp64 = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +010059 .lower_device_index_to_zero = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020060 .lower_fsat = true,
61 .lower_fdiv = true,
Daniel Schürmann48a75e72019-01-25 16:08:38 +010062 .lower_bitfield_insert_to_bitfield_select = true,
Daniel Schürmann0daeb1d2019-01-25 16:24:55 +010063 .lower_bitfield_extract = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020064 .lower_sub = true,
65 .lower_pack_snorm_2x16 = true,
66 .lower_pack_snorm_4x8 = true,
67 .lower_pack_unorm_2x16 = true,
68 .lower_pack_unorm_4x8 = true,
69 .lower_unpack_snorm_2x16 = true,
70 .lower_unpack_snorm_4x8 = true,
71 .lower_unpack_unorm_2x16 = true,
72 .lower_unpack_unorm_4x8 = true,
73 .lower_extract_byte = true,
74 .lower_extract_word = true,
Dave Airlie2c615942017-10-04 06:33:02 +100075 .lower_ffma = true,
Samuel Pitoiset7aa008d2018-02-02 19:04:57 +010076 .lower_fpow = true,
Samuel Pitoiset71ffa002019-03-06 22:35:31 +010077 .lower_mul_2x32_64 = true,
Sagar Ghuge456557a2019-06-03 17:11:57 -070078 .lower_rotate = true,
Connor Abbott118a66d2019-05-10 10:44:20 +020079 .max_unroll_iterations = 32,
80 .use_interpolated_input_intrinsics = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020081};
82
Daniel Schürmann45638e12019-07-29 17:51:01 +020083bool
84radv_can_dump_shader(struct radv_device *device,
85 struct radv_shader_module *module,
86 bool is_gs_copy_shader)
87{
88 if (!(device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS))
89 return false;
90
91 /* Only dump non-meta shaders, useful for debugging purposes. */
92 return (module && !module->nir) || is_gs_copy_shader;
93}
94
95bool
96radv_can_dump_shader_stats(struct radv_device *device,
97 struct radv_shader_module *module)
98{
99 /* Only dump non-meta shader stats. */
100 return device->instance->debug_flags & RADV_DEBUG_DUMP_SHADER_STATS &&
101 module && !module->nir;
102}
103
104unsigned shader_io_get_unique_index(gl_varying_slot slot)
105{
106 /* handle patch indices separate */
107 if (slot == VARYING_SLOT_TESS_LEVEL_OUTER)
108 return 0;
109 if (slot == VARYING_SLOT_TESS_LEVEL_INNER)
110 return 1;
111 if (slot >= VARYING_SLOT_PATCH0 && slot <= VARYING_SLOT_TESS_MAX)
112 return 2 + (slot - VARYING_SLOT_PATCH0);
113 if (slot == VARYING_SLOT_POS)
114 return 0;
115 if (slot == VARYING_SLOT_PSIZ)
116 return 1;
117 if (slot == VARYING_SLOT_CLIP_DIST0)
118 return 2;
119 if (slot == VARYING_SLOT_CLIP_DIST1)
120 return 3;
121 /* 3 is reserved for clip dist as well */
122 if (slot >= VARYING_SLOT_VAR0 && slot <= VARYING_SLOT_VAR31)
123 return 4 + (slot - VARYING_SLOT_VAR0);
124 unreachable("illegal slot in get unique index\n");
125}
126
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200127VkResult radv_CreateShaderModule(
128 VkDevice _device,
129 const VkShaderModuleCreateInfo* pCreateInfo,
130 const VkAllocationCallbacks* pAllocator,
131 VkShaderModule* pShaderModule)
132{
133 RADV_FROM_HANDLE(radv_device, device, _device);
134 struct radv_shader_module *module;
135
136 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO);
137 assert(pCreateInfo->flags == 0);
138
139 module = vk_alloc2(&device->alloc, pAllocator,
140 sizeof(*module) + pCreateInfo->codeSize, 8,
141 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
142 if (module == NULL)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +0200143 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200144
145 module->nir = NULL;
146 module->size = pCreateInfo->codeSize;
147 memcpy(module->data, pCreateInfo->pCode, module->size);
148
149 _mesa_sha1_compute(module->data, module->size, module->sha1);
150
151 *pShaderModule = radv_shader_module_to_handle(module);
152
153 return VK_SUCCESS;
154}
155
156void radv_DestroyShaderModule(
157 VkDevice _device,
158 VkShaderModule _module,
159 const VkAllocationCallbacks* pAllocator)
160{
161 RADV_FROM_HANDLE(radv_device, device, _device);
162 RADV_FROM_HANDLE(radv_shader_module, module, _module);
163
164 if (!module)
165 return;
166
167 vk_free2(&device->alloc, pAllocator, module);
168}
169
Bas Nieuwenhuizen06f05042017-02-09 00:12:10 +0100170void
Timothy Arceri06675712018-10-18 09:42:17 +1100171radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively,
172 bool allow_copies)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200173{
174 bool progress;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700175 unsigned lower_flrp =
176 (shader->options->lower_flrp16 ? 16 : 0) |
177 (shader->options->lower_flrp32 ? 32 : 0) |
178 (shader->options->lower_flrp64 ? 64 : 0);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200179
180 do {
181 progress = false;
182
Karol Herbst9b240282019-01-16 00:05:04 +0100183 NIR_PASS(progress, shader, nir_split_array_vars, nir_var_function_temp);
184 NIR_PASS(progress, shader, nir_shrink_vec_array_vars, nir_var_function_temp);
Timothy Arceri8086fa12018-10-18 10:19:16 +1100185
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200186 NIR_PASS_V(shader, nir_lower_vars_to_ssa);
Iago Toral Quiroga2d648e52018-04-27 09:28:48 +0200187 NIR_PASS_V(shader, nir_lower_pack);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100188
Timothy Arceri06675712018-10-18 09:42:17 +1100189 if (allow_copies) {
190 /* Only run this pass in the first call to
191 * radv_optimize_nir. Later calls assume that we've
192 * lowered away any copy_deref instructions and we
193 * don't want to introduce any more.
194 */
195 NIR_PASS(progress, shader, nir_opt_find_array_copies);
196 }
197
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100198 NIR_PASS(progress, shader, nir_opt_copy_prop_vars);
199 NIR_PASS(progress, shader, nir_opt_dead_write_vars);
Connor Abbotta69ab1b2019-06-26 14:03:31 +0200200 NIR_PASS(progress, shader, nir_remove_dead_variables,
201 nir_var_function_temp);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100202
Jonathan Marekd0bff892019-05-08 12:45:48 -0400203 NIR_PASS_V(shader, nir_lower_alu_to_scalar, NULL);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200204 NIR_PASS_V(shader, nir_lower_phis_to_scalar);
205
206 NIR_PASS(progress, shader, nir_copy_prop);
207 NIR_PASS(progress, shader, nir_opt_remove_phis);
208 NIR_PASS(progress, shader, nir_opt_dce);
209 if (nir_opt_trivial_continues(shader)) {
210 progress = true;
211 NIR_PASS(progress, shader, nir_copy_prop);
Dave Airlie64d9bd12017-09-13 03:49:31 +0100212 NIR_PASS(progress, shader, nir_opt_remove_phis);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200213 NIR_PASS(progress, shader, nir_opt_dce);
214 }
Timothy Arcerie30804c2019-04-08 20:13:49 +1000215 NIR_PASS(progress, shader, nir_opt_if, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200216 NIR_PASS(progress, shader, nir_opt_dead_cf);
217 NIR_PASS(progress, shader, nir_opt_cse);
Ian Romanick378f9962018-06-18 16:11:55 -0700218 NIR_PASS(progress, shader, nir_opt_peephole_select, 8, true, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200219 NIR_PASS(progress, shader, nir_opt_constant_folding);
Timothy Arcerie19a8fe2019-05-02 13:38:52 +1000220 NIR_PASS(progress, shader, nir_opt_algebraic);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700221
222 if (lower_flrp != 0) {
Ian Romanick1f1007a2019-05-08 07:32:43 -0700223 bool lower_flrp_progress = false;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700224 NIR_PASS(lower_flrp_progress,
225 shader,
226 nir_lower_flrp,
227 lower_flrp,
228 false /* always_precise */,
229 shader->options->lower_ffma);
230 if (lower_flrp_progress) {
231 NIR_PASS(progress, shader,
232 nir_opt_constant_folding);
233 progress = true;
234 }
235
236 /* Nothing should rematerialize any flrps, so we only
237 * need to do this lowering once.
238 */
239 lower_flrp = 0;
240 }
241
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200242 NIR_PASS(progress, shader, nir_opt_undef);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200243 if (shader->options->max_unroll_iterations) {
244 NIR_PASS(progress, shader, nir_opt_loop_unroll, 0);
245 }
Timothy Arcerice188812018-05-08 14:57:55 +1000246 } while (progress && !optimize_conservatively);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100247
Daniel Schürmann64b73862019-07-20 19:21:14 +0200248 NIR_PASS(progress, shader, nir_opt_conditional_discard);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100249 NIR_PASS(progress, shader, nir_opt_shrink_load);
Samuel Pitoisete96a1d22018-03-08 15:31:14 +0100250 NIR_PASS(progress, shader, nir_opt_move_load_ubo);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200251}
252
253nir_shader *
254radv_shader_compile_to_nir(struct radv_device *device,
255 struct radv_shader_module *module,
256 const char *entrypoint_name,
257 gl_shader_stage stage,
Timothy Arcerice188812018-05-08 14:57:55 +1000258 const VkSpecializationInfo *spec_info,
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100259 const VkPipelineCreateFlags flags,
260 const struct radv_pipeline_layout *layout)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200261{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200262 nir_shader *nir;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200263 if (module->nir) {
264 /* Some things such as our meta clear/blit code will give us a NIR
265 * shader directly. In that case, we just ignore the SPIR-V entirely
266 * and just use the NIR shader */
267 nir = module->nir;
268 nir->options = &nir_options;
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500269 nir_validate_shader(nir, "in internal shader");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200270
271 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200272 } else {
273 uint32_t *spirv = (uint32_t *) module->data;
274 assert(module->size % 4 == 0);
275
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100276 if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV)
Samuel Pitoiset844ae722017-09-22 16:56:40 +0200277 radv_print_spirv(spirv, module->size, stderr);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200278
279 uint32_t num_spec_entries = 0;
280 struct nir_spirv_specialization *spec_entries = NULL;
281 if (spec_info && spec_info->mapEntryCount > 0) {
282 num_spec_entries = spec_info->mapEntryCount;
283 spec_entries = malloc(num_spec_entries * sizeof(*spec_entries));
284 for (uint32_t i = 0; i < num_spec_entries; i++) {
285 VkSpecializationMapEntry entry = spec_info->pMapEntries[i];
286 const void *data = spec_info->pData + entry.offset;
287 assert(data + entry.size <= spec_info->pData + spec_info->dataSize);
288
289 spec_entries[i].id = spec_info->pMapEntries[i].constantID;
290 if (spec_info->dataSize == 8)
291 spec_entries[i].data64 = *(const uint64_t *)data;
292 else
293 spec_entries[i].data32 = *(const uint32_t *)data;
294 }
295 }
Jason Ekstrande19c6232017-10-18 17:28:19 -0700296 const struct spirv_to_nir_options spirv_options = {
Jason Ekstrand63b9aa22018-12-14 18:36:01 -0600297 .lower_ubo_ssbo_access_to_offsets = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700298 .caps = {
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200299 .amd_gcn_shader = true,
Daniel Schürmannc58dff72018-05-09 20:43:16 +0200300 .amd_shader_ballot = device->instance->perftest_flags & RADV_PERFTEST_SHADER_BALLOT,
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200301 .amd_trinary_minmax = true,
Samuel Pitoisetb3e34402019-04-19 12:40:37 +0200302 .derivative_group = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600303 .descriptor_array_dynamic_indexing = true,
Juan A. Suarez Romero06c9d7f2019-04-29 17:05:13 +0200304 .descriptor_array_non_uniform_indexing = true,
305 .descriptor_indexing = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +0100306 .device_group = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700307 .draw_parameters = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200308 .float16 = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700309 .float64 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600310 .geometry_streams = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700311 .image_read_without_format = true,
312 .image_write_without_format = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200313 .int8 = true,
Samuel Pitoiset08103c52018-09-14 12:52:40 +0200314 .int16 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600315 .int64 = true,
Samuel Pitoiset9cf55b02019-04-16 10:38:24 +0200316 .int64_atomics = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700317 .multiview = true,
Bas Nieuwenhuizen13ab63b2019-01-24 02:06:27 +0100318 .physical_storage_buffer_address = true,
Samuel Pitoiset07ff3672019-07-16 17:11:50 +0200319 .post_depth_coverage = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600320 .runtime_descriptor_array = true,
321 .shader_viewport_index_layer = true,
322 .stencil_export = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200323 .storage_8bit = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600324 .storage_16bit = true,
325 .storage_image_ms = true,
Samuel Pitoiset35656822018-09-18 15:27:52 +0200326 .subgroup_arithmetic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100327 .subgroup_ballot = true,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100328 .subgroup_basic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100329 .subgroup_quad = true,
330 .subgroup_shuffle = true,
331 .subgroup_vote = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600332 .tessellation = true,
Samuel Pitoisetb4eb0292018-10-05 18:04:56 +0200333 .transform_feedback = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600334 .variable_pointers = true,
Daniel Schürmannffbf75c2018-02-23 13:55:01 +0100335 },
Caio Marcelo de Oliveira Filho31a74762019-05-01 14:15:32 -0700336 .ubo_addr_format = nir_address_format_32bit_index_offset,
337 .ssbo_addr_format = nir_address_format_32bit_index_offset,
338 .phys_ssbo_addr_format = nir_address_format_64bit_global,
339 .push_const_addr_format = nir_address_format_logical,
340 .shared_addr_format = nir_address_format_32bit_offset,
Connor Abbott27f0c3c2019-05-13 15:39:54 +0200341 .frag_coord_is_sysval = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200342 };
Caio Marcelo de Oliveira Filhoe45bf012019-05-19 00:22:17 -0700343 nir = spirv_to_nir(spirv, module->size / 4,
344 spec_entries, num_spec_entries,
345 stage, entrypoint_name,
346 &spirv_options, &nir_options);
Jason Ekstrand59fb59a2017-09-14 19:52:38 -0700347 assert(nir->info.stage == stage);
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500348 nir_validate_shader(nir, "after spirv_to_nir");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200349
350 free(spec_entries);
351
352 /* We have to lower away local constant initializers right before we
353 * inline functions. That way they get properly initialized at the top
354 * of the function and not at the top of its caller.
355 */
Karol Herbst9b240282019-01-16 00:05:04 +0100356 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_function_temp);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200357 NIR_PASS_V(nir, nir_lower_returns);
358 NIR_PASS_V(nir, nir_inline_functions);
Jason Ekstrandfc9c4f82018-12-13 11:08:13 -0600359 NIR_PASS_V(nir, nir_opt_deref);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200360
361 /* Pick off the single entrypoint that we want */
362 foreach_list_typed_safe(nir_function, func, node, &nir->functions) {
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700363 if (func->is_entrypoint)
364 func->name = ralloc_strdup(func, "main");
365 else
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200366 exec_node_remove(&func->node);
367 }
368 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200369
Dave Airliee8d9b7a2018-03-19 04:27:49 +0000370 /* Make sure we lower constant initializers on output variables so that
371 * nir_remove_dead_variables below sees the corresponding stores
372 */
373 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_shader_out);
374
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200375 /* Now that we've deleted all but the main function, we can go ahead and
376 * lower the rest of the constant initializers.
377 */
378 NIR_PASS_V(nir, nir_lower_constant_initializers, ~0);
Jason Ekstrandb0c643d2018-03-21 17:30:22 -0700379
380 /* Split member structs. We do this before lower_io_to_temporaries so that
381 * it doesn't lower system values to temporaries by accident.
382 */
383 NIR_PASS_V(nir, nir_split_var_copies);
384 NIR_PASS_V(nir, nir_split_per_member_structs);
385
Daniel Schürmanne41e9322019-04-05 11:01:39 +0200386 if (nir->info.stage == MESA_SHADER_FRAGMENT)
Connor Abbott27f0c3c2019-05-13 15:39:54 +0200387 NIR_PASS_V(nir, nir_lower_input_attachments, true);
Daniel Schürmanne41e9322019-04-05 11:01:39 +0200388
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200389 NIR_PASS_V(nir, nir_remove_dead_variables,
390 nir_var_shader_in | nir_var_shader_out | nir_var_system_value);
391
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200392 NIR_PASS_V(nir, nir_lower_system_values);
393 NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays);
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100394 NIR_PASS_V(nir, radv_nir_lower_ycbcr_textures, layout);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200395 }
396
397 /* Vulkan uses the separate-shader linking model */
398 nir->info.separate_shader = true;
399
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700400 nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir));
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200401
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200402 static const nir_lower_tex_options tex_options = {
403 .lower_txp = ~0,
Jason Ekstrand08f804e2019-03-19 13:55:21 -0500404 .lower_tg4_offsets = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200405 };
406
407 nir_lower_tex(nir, &tex_options);
408
409 nir_lower_vars_to_ssa(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200410
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200411 if (nir->info.stage == MESA_SHADER_VERTEX ||
Connor Abbott118a66d2019-05-10 10:44:20 +0200412 nir->info.stage == MESA_SHADER_GEOMETRY ||
413 nir->info.stage == MESA_SHADER_FRAGMENT) {
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200414 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
415 nir_shader_get_entrypoint(nir), true, true);
Connor Abbott118a66d2019-05-10 10:44:20 +0200416 } else if (nir->info.stage == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200417 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
418 nir_shader_get_entrypoint(nir), true, false);
419 }
420
Samuel Pitoisetded15092018-05-23 14:31:55 +0200421 nir_split_var_copies(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200422
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200423 nir_lower_global_vars_to_local(nir);
Karol Herbst9b240282019-01-16 00:05:04 +0100424 nir_remove_dead_variables(nir, nir_var_function_temp);
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100425 nir_lower_subgroups(nir, &(struct nir_lower_subgroups_options) {
426 .subgroup_size = 64,
427 .ballot_bit_size = 64,
428 .lower_to_scalar = 1,
429 .lower_subgroup_masks = 1,
430 .lower_shuffle = 1,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100431 .lower_shuffle_to_32bit = 1,
432 .lower_vote_eq_to_ballot = 1,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100433 });
434
Timothy Arceri72e42872018-09-24 18:18:48 +1000435 nir_lower_load_const_to_scalar(nir);
436
Timothy Arcerice188812018-05-08 14:57:55 +1000437 if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT))
Timothy Arceri06675712018-10-18 09:42:17 +1100438 radv_optimize_nir(nir, false, true);
439
440 /* We call nir_lower_var_copies() after the first radv_optimize_nir()
441 * to remove any copies introduced by nir_opt_find_array_copies().
442 */
443 nir_lower_var_copies(nir);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200444
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100445 /* Indirect lowering must be called after the radv_optimize_nir() loop
446 * has been called at least once. Otherwise indirect lowering can
447 * bloat the instruction count of the loop and cause it to be
448 * considered too large for unrolling.
449 */
450 ac_lower_indirect_derefs(nir, device->physical_device->rad_info.chip_class);
Timothy Arceri06675712018-10-18 09:42:17 +1100451 radv_optimize_nir(nir, flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, false);
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100452
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200453 return nir;
454}
455
Connor Abbott118a66d2019-05-10 10:44:20 +0200456static void mark_16bit_fs_input(struct radv_shader_variant_info *shader_info,
457 const struct glsl_type *type,
458 int location)
459{
460 if (glsl_type_is_scalar(type) || glsl_type_is_vector(type) || glsl_type_is_matrix(type)) {
461 unsigned attrib_count = glsl_count_attribute_slots(type, false);
462 if (glsl_type_is_16bit(type)) {
463 shader_info->fs.float16_shaded_mask |= ((1ull << attrib_count) - 1) << location;
464 }
465 } else if (glsl_type_is_array(type)) {
466 unsigned stride = glsl_count_attribute_slots(glsl_get_array_element(type), false);
467 for (unsigned i = 0; i < glsl_get_length(type); ++i) {
468 mark_16bit_fs_input(shader_info, glsl_get_array_element(type), location + i * stride);
469 }
470 } else {
471 assert(glsl_type_is_struct_or_ifc(type));
472 for (unsigned i = 0; i < glsl_get_length(type); i++) {
473 mark_16bit_fs_input(shader_info, glsl_get_struct_field(type, i), location);
474 location += glsl_count_attribute_slots(glsl_get_struct_field(type, i), false);
475 }
476 }
477}
478
479static void
480handle_fs_input_decl(struct radv_shader_variant_info *shader_info,
481 struct nir_variable *variable)
482{
483 unsigned attrib_count = glsl_count_attribute_slots(variable->type, false);
484
485 if (variable->data.compact) {
486 unsigned component_count = variable->data.location_frac +
487 glsl_get_length(variable->type);
488 attrib_count = (component_count + 3) / 4;
489 } else {
490 mark_16bit_fs_input(shader_info, variable->type,
491 variable->data.driver_location);
492 }
493
494 uint64_t mask = ((1ull << attrib_count) - 1);
495
496 if (variable->data.interpolation == INTERP_MODE_FLAT)
497 shader_info->fs.flat_shaded_mask |= mask << variable->data.driver_location;
498
499 if (variable->data.location >= VARYING_SLOT_VAR0)
500 shader_info->fs.input_mask |= mask << (variable->data.location - VARYING_SLOT_VAR0);
501}
502
503static int
504type_size_vec4(const struct glsl_type *type, bool bindless)
505{
506 return glsl_count_attribute_slots(type, false);
507}
508
509static nir_variable *
510find_layer_in_var(nir_shader *nir)
511{
512 nir_foreach_variable(var, &nir->inputs) {
513 if (var->data.location == VARYING_SLOT_LAYER) {
514 return var;
515 }
516 }
517
518 nir_variable *var =
519 nir_variable_create(nir, nir_var_shader_in, glsl_int_type(), "layer id");
520 var->data.location = VARYING_SLOT_LAYER;
521 var->data.interpolation = INTERP_MODE_FLAT;
522 return var;
523}
524
525/* We use layered rendering to implement multiview, which means we need to map
526 * view_index to gl_Layer. The attachment lowering also uses needs to know the
527 * layer so that it can sample from the correct layer. The code generates a
528 * load from the layer_id sysval, but since we don't have a way to get at this
529 * information from the fragment shader, we also need to lower this to the
530 * gl_Layer varying. This pass lowers both to a varying load from the LAYER
531 * slot, before lowering io, so that nir_assign_var_locations() will give the
532 * LAYER varying the correct driver_location.
533 */
534
535static bool
536lower_view_index(nir_shader *nir)
537{
538 bool progress = false;
539 nir_function_impl *entry = nir_shader_get_entrypoint(nir);
540 nir_builder b;
541 nir_builder_init(&b, entry);
542
543 nir_variable *layer = NULL;
544 nir_foreach_block(block, entry) {
545 nir_foreach_instr_safe(instr, block) {
546 if (instr->type != nir_instr_type_intrinsic)
547 continue;
548
549 nir_intrinsic_instr *load = nir_instr_as_intrinsic(instr);
550 if (load->intrinsic != nir_intrinsic_load_view_index &&
551 load->intrinsic != nir_intrinsic_load_layer_id)
552 continue;
553
554 if (!layer)
555 layer = find_layer_in_var(nir);
556
557 b.cursor = nir_before_instr(instr);
558 nir_ssa_def *def = nir_load_var(&b, layer);
559 nir_ssa_def_rewrite_uses(&load->dest.ssa,
560 nir_src_for_ssa(def));
561
562 nir_instr_remove(instr);
563 progress = true;
564 }
565 }
566
567 return progress;
568}
569
570/* Gather information needed to setup the vs<->ps linking registers in
571 * radv_pipeline_generate_ps_inputs().
572 */
573
574static void
575handle_fs_inputs(nir_shader *nir, struct radv_shader_variant_info *shader_info)
576{
577 shader_info->fs.num_interp = nir->num_inputs;
578
579 nir_foreach_variable(variable, &nir->inputs)
580 handle_fs_input_decl(shader_info, variable);
581}
582
583static void
584lower_fs_io(nir_shader *nir, struct radv_shader_variant_info *shader_info)
585{
586 NIR_PASS_V(nir, lower_view_index);
587 nir_assign_io_var_locations(&nir->inputs, &nir->num_inputs,
588 MESA_SHADER_FRAGMENT);
589
590 handle_fs_inputs(nir, shader_info);
591
592 NIR_PASS_V(nir, nir_lower_io, nir_var_shader_in, type_size_vec4, 0);
593
594 /* This pass needs actual constants */
595 nir_opt_constant_folding(nir);
596
597 NIR_PASS_V(nir, nir_io_add_const_offset_to_base, nir_var_shader_in);
Connor Abbott118a66d2019-05-10 10:44:20 +0200598}
599
600
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200601void *
602radv_alloc_shader_memory(struct radv_device *device,
603 struct radv_shader_variant *shader)
604{
605 mtx_lock(&device->shader_slab_mutex);
606 list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
607 uint64_t offset = 0;
608 list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) {
609 if (s->bo_offset - offset >= shader->code_size) {
610 shader->bo = slab->bo;
611 shader->bo_offset = offset;
612 list_addtail(&shader->slab_list, &s->slab_list);
613 mtx_unlock(&device->shader_slab_mutex);
614 return slab->ptr + offset;
615 }
616 offset = align_u64(s->bo_offset + s->code_size, 256);
617 }
618 if (slab->size - offset >= shader->code_size) {
619 shader->bo = slab->bo;
620 shader->bo_offset = offset;
621 list_addtail(&shader->slab_list, &slab->shaders);
622 mtx_unlock(&device->shader_slab_mutex);
623 return slab->ptr + offset;
624 }
625 }
626
627 mtx_unlock(&device->shader_slab_mutex);
628 struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab));
629
630 slab->size = 256 * 1024;
631 slab->bo = device->ws->buffer_create(device->ws, slab->size, 256,
Samuel Pitoiseta3c2a862018-01-04 15:19:47 +0100632 RADEON_DOMAIN_VRAM,
633 RADEON_FLAG_NO_INTERPROCESS_SHARING |
Danylo Piliaiev494a2062018-07-18 11:47:19 +0300634 (device->physical_device->cpdma_prefetch_writes_memory ?
Bas Nieuwenhuizenead54d42019-01-28 00:28:05 +0100635 0 : RADEON_FLAG_READ_ONLY),
636 RADV_BO_PRIORITY_SHADER);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200637 slab->ptr = (char*)device->ws->buffer_map(slab->bo);
638 list_inithead(&slab->shaders);
639
640 mtx_lock(&device->shader_slab_mutex);
641 list_add(&slab->slabs, &device->shader_slabs);
642
643 shader->bo = slab->bo;
644 shader->bo_offset = 0;
645 list_add(&shader->slab_list, &slab->shaders);
646 mtx_unlock(&device->shader_slab_mutex);
647 return slab->ptr;
648}
649
650void
651radv_destroy_shader_slabs(struct radv_device *device)
652{
653 list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
654 device->ws->buffer_destroy(slab->bo);
655 free(slab);
656 }
657 mtx_destroy(&device->shader_slab_mutex);
658}
659
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200660/* For the UMR disassembler. */
661#define DEBUGGER_END_OF_CODE_MARKER 0xbf9f0000 /* invalid instruction */
662#define DEBUGGER_NUM_MARKERS 5
663
664static unsigned
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200665radv_get_shader_binary_size(size_t code_size)
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200666{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200667 return code_size + DEBUGGER_NUM_MARKERS * 4;
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200668}
669
Samuel Pitoisetea385652019-07-30 18:32:42 +0200670static uint8_t
671radv_get_shader_wave_size(const struct radv_physical_device *pdevice,
672 gl_shader_stage stage)
673{
674 if (stage == MESA_SHADER_COMPUTE)
675 return pdevice->cs_wave_size;
Samuel Pitoiset953bbac2019-08-01 10:43:41 +0200676 else if (stage == MESA_SHADER_FRAGMENT)
677 return pdevice->ps_wave_size;
Samuel Pitoiset8a869082019-08-01 10:43:42 +0200678 return pdevice->ge_wave_size;
Samuel Pitoisetea385652019-07-30 18:32:42 +0200679}
680
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200681static void radv_postprocess_config(const struct radv_physical_device *pdevice,
682 const struct ac_shader_config *config_in,
683 const struct radv_shader_variant_info *info,
684 gl_shader_stage stage,
685 struct ac_shader_config *config_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200686{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200687 bool scratch_enabled = config_in->scratch_bytes_per_wave > 0;
Samuel Pitoisetea385652019-07-30 18:32:42 +0200688 uint8_t wave_size = radv_get_shader_wave_size(pdevice, stage);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200689 unsigned vgpr_comp_cnt = 0;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200690 unsigned num_input_vgprs = info->num_input_vgprs;
691
692 if (stage == MESA_SHADER_FRAGMENT) {
693 num_input_vgprs = 0;
694 if (G_0286CC_PERSP_SAMPLE_ENA(config_in->spi_ps_input_addr))
695 num_input_vgprs += 2;
696 if (G_0286CC_PERSP_CENTER_ENA(config_in->spi_ps_input_addr))
697 num_input_vgprs += 2;
698 if (G_0286CC_PERSP_CENTROID_ENA(config_in->spi_ps_input_addr))
699 num_input_vgprs += 2;
700 if (G_0286CC_PERSP_PULL_MODEL_ENA(config_in->spi_ps_input_addr))
701 num_input_vgprs += 3;
702 if (G_0286CC_LINEAR_SAMPLE_ENA(config_in->spi_ps_input_addr))
703 num_input_vgprs += 2;
704 if (G_0286CC_LINEAR_CENTER_ENA(config_in->spi_ps_input_addr))
705 num_input_vgprs += 2;
706 if (G_0286CC_LINEAR_CENTROID_ENA(config_in->spi_ps_input_addr))
707 num_input_vgprs += 2;
708 if (G_0286CC_LINE_STIPPLE_TEX_ENA(config_in->spi_ps_input_addr))
709 num_input_vgprs += 1;
710 if (G_0286CC_POS_X_FLOAT_ENA(config_in->spi_ps_input_addr))
711 num_input_vgprs += 1;
712 if (G_0286CC_POS_Y_FLOAT_ENA(config_in->spi_ps_input_addr))
713 num_input_vgprs += 1;
714 if (G_0286CC_POS_Z_FLOAT_ENA(config_in->spi_ps_input_addr))
715 num_input_vgprs += 1;
716 if (G_0286CC_POS_W_FLOAT_ENA(config_in->spi_ps_input_addr))
717 num_input_vgprs += 1;
718 if (G_0286CC_FRONT_FACE_ENA(config_in->spi_ps_input_addr))
719 num_input_vgprs += 1;
720 if (G_0286CC_ANCILLARY_ENA(config_in->spi_ps_input_addr))
721 num_input_vgprs += 1;
722 if (G_0286CC_SAMPLE_COVERAGE_ENA(config_in->spi_ps_input_addr))
723 num_input_vgprs += 1;
724 if (G_0286CC_POS_FIXED_PT_ENA(config_in->spi_ps_input_addr))
725 num_input_vgprs += 1;
726 }
727
728 unsigned num_vgprs = MAX2(config_in->num_vgprs, num_input_vgprs);
729 /* +3 for scratch wave offset and VCC */
730 unsigned num_sgprs = MAX2(config_in->num_sgprs, info->num_input_sgprs + 3);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200731
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200732 *config_out = *config_in;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200733 config_out->num_vgprs = num_vgprs;
734 config_out->num_sgprs = num_sgprs;
735
736 /* Enable 64-bit and 16-bit denormals, because there is no performance
737 * cost.
738 *
739 * If denormals are enabled, all floating-point output modifiers are
740 * ignored.
741 *
742 * Don't enable denormals for 32-bit floats, because:
743 * - Floating-point output modifiers would be ignored by the hw.
744 * - Some opcodes don't support denormals, such as v_mad_f32. We would
745 * have to stop using those.
746 * - GFX6 & GFX7 would be very slow.
747 */
748 config_out->float_mode |= V_00B028_FP_64_DENORMS;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200749
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200750 config_out->rsrc2 = S_00B12C_USER_SGPR(info->num_user_sgprs) |
Samuel Pitoiset09abe572019-07-23 14:55:16 +0200751 S_00B12C_SCRATCH_EN(scratch_enabled) |
752 S_00B12C_SO_BASE0_EN(!!info->info.so.strides[0]) |
753 S_00B12C_SO_BASE1_EN(!!info->info.so.strides[1]) |
754 S_00B12C_SO_BASE2_EN(!!info->info.so.strides[2]) |
755 S_00B12C_SO_BASE3_EN(!!info->info.so.strides[3]) |
756 S_00B12C_SO_EN(!!info->info.so.num_outputs);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200757
Samuel Pitoisetea385652019-07-30 18:32:42 +0200758 config_out->rsrc1 = S_00B848_VGPRS((num_vgprs - 1) /
759 (wave_size == 32 ? 8 : 4)) |
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200760 S_00B848_DX10_CLAMP(1) |
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200761 S_00B848_FLOAT_MODE(config_out->float_mode);
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200762
Samuel Pitoiset4c820942019-06-25 13:33:03 +0200763 if (pdevice->rad_info.chip_class >= GFX10) {
764 config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX10(info->num_user_sgprs >> 5);
765 } else {
766 config_out->rsrc1 |= S_00B228_SGPRS((num_sgprs - 1) / 8);
Samuel Pitoiset09abe572019-07-23 14:55:16 +0200767 config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX9(info->num_user_sgprs >> 5);
Samuel Pitoiset4c820942019-06-25 13:33:03 +0200768 }
769
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200770 switch (stage) {
771 case MESA_SHADER_TESS_EVAL:
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200772 if (info->is_ngg) {
773 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
774 config_out->rsrc2 |= S_00B22C_OC_LDS_EN(1);
775 } else if (info->tes.as_es) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200776 assert(pdevice->rad_info.chip_class <= GFX8);
777 vgpr_comp_cnt = info->info.uses_prim_id ? 3 : 2;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200778
779 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200780 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200781 bool enable_prim_id = info->tes.export_prim_id || info->info.uses_prim_id;
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200782 vgpr_comp_cnt = enable_prim_id ? 3 : 2;
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200783
784 config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200785 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200786 }
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200787 break;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200788 case MESA_SHADER_TESS_CTRL:
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200789 if (pdevice->rad_info.chip_class >= GFX9) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200790 /* We need at least 2 components for LS.
791 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
792 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
793 */
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200794 if (pdevice->rad_info.chip_class >= GFX10) {
795 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 3 : 1;
796 } else {
797 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 2 : 1;
798 }
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200799 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200800 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200801 }
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200802 config_out->rsrc1 |= S_00B428_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
803 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200804 break;
805 case MESA_SHADER_VERTEX:
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200806 if (info->is_ngg) {
807 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
808 } else if (info->vs.as_ls) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200809 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200810 /* We need at least 2 components for LS.
811 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
812 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
813 */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200814 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 2 : 1;
815 } else if (info->vs.as_es) {
816 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200817 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200818 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 1 : 0;
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200819 } else {
820 /* VGPR0-3: (VertexID, InstanceID / StepRate0, PrimID, InstanceID)
821 * If PrimID is disabled. InstanceID / StepRate1 is loaded instead.
822 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
823 */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200824 if (info->vs.export_prim_id) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200825 vgpr_comp_cnt = 2;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200826 } else if (info->info.vs.needs_instance_id) {
Samuel Pitoisetea337c82019-07-23 11:52:36 +0200827 vgpr_comp_cnt = pdevice->rad_info.chip_class >= GFX10 ? 3 : 1;
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200828 } else {
829 vgpr_comp_cnt = 0;
830 }
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200831
832 config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200833 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200834 break;
835 case MESA_SHADER_FRAGMENT:
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200836 config_out->rsrc1 |= S_00B028_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
837 break;
Samuel Pitoisetf4d2c472019-06-26 15:11:01 +0200838 case MESA_SHADER_GEOMETRY:
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200839 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
840 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200841 break;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200842 case MESA_SHADER_COMPUTE:
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200843 config_out->rsrc1 |= S_00B848_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) |
844 S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200845 config_out->rsrc2 |=
846 S_00B84C_TGID_X_EN(info->info.cs.uses_block_id[0]) |
847 S_00B84C_TGID_Y_EN(info->info.cs.uses_block_id[1]) |
848 S_00B84C_TGID_Z_EN(info->info.cs.uses_block_id[2]) |
849 S_00B84C_TIDIG_COMP_CNT(info->info.cs.uses_thread_id[2] ? 2 :
850 info->info.cs.uses_thread_id[1] ? 1 : 0) |
851 S_00B84C_TG_SIZE_EN(info->info.cs.uses_local_invocation_idx) |
852 S_00B84C_LDS_SIZE(config_in->lds_size);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200853 break;
854 default:
855 unreachable("unsupported shader type");
856 break;
857 }
858
Samuel Pitoisetedf1af62019-07-16 16:39:16 +0200859 if (pdevice->rad_info.chip_class >= GFX10 && info->is_ngg &&
Samuel Pitoiset3f500072019-07-09 08:44:01 +0200860 (stage == MESA_SHADER_VERTEX || stage == MESA_SHADER_TESS_EVAL || stage == MESA_SHADER_GEOMETRY)) {
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200861 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200862 gl_shader_stage es_stage = stage;
863 if (stage == MESA_SHADER_GEOMETRY)
864 es_stage = info->gs.es_type;
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200865
866 /* VGPR5-8: (VertexID, UserVGPR0, UserVGPR1, UserVGPR2 / InstanceID) */
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200867 if (es_stage == MESA_SHADER_VERTEX) {
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200868 es_vgpr_comp_cnt = info->info.vs.needs_instance_id ? 3 : 0;
Bas Nieuwenhuizen72868652019-07-11 08:44:15 +0200869 } else if (es_stage == MESA_SHADER_TESS_EVAL) {
Samuel Pitoisetd2a8b632019-07-09 08:27:30 +0200870 bool enable_prim_id = info->tes.export_prim_id || info->info.uses_prim_id;
871 es_vgpr_comp_cnt = enable_prim_id ? 3 : 2;
Bas Nieuwenhuizen451f0302019-07-19 00:00:03 +0200872 } else
873 unreachable("Unexpected ES shader stage");
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200874
875 bool tes_triangles = stage == MESA_SHADER_TESS_EVAL &&
876 info->tes.primitive_mode >= 4; /* GL_TRIANGLES */
877 if (info->info.uses_invocation_id || stage == MESA_SHADER_VERTEX) {
878 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
879 } else if (info->info.uses_prim_id) {
880 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
881 } else if (info->gs.vertices_in >= 3 || tes_triangles) {
882 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
883 } else {
884 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
885 }
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200886
Samuel Pitoisete68b55f2019-07-12 12:17:16 +0200887 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt) |
888 S_00B228_WGP_MODE(1);
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200889 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Samuel Pitoiseted12be12019-07-15 18:46:48 +0200890 S_00B22C_LDS_SIZE(config_in->lds_size) |
891 S_00B22C_OC_LDS_EN(es_stage == MESA_SHADER_TESS_EVAL);
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200892 } else if (pdevice->rad_info.chip_class >= GFX9 &&
893 stage == MESA_SHADER_GEOMETRY) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200894 unsigned es_type = info->gs.es_type;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100895 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
896
897 if (es_type == MESA_SHADER_VERTEX) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200898 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Samuel Pitoisetea337c82019-07-23 11:52:36 +0200899 if (info->info.vs.needs_instance_id) {
900 es_vgpr_comp_cnt = pdevice->rad_info.chip_class >= GFX10 ? 3 : 1;
901 } else {
902 es_vgpr_comp_cnt = 0;
903 }
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100904 } else if (es_type == MESA_SHADER_TESS_EVAL) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200905 es_vgpr_comp_cnt = info->info.uses_prim_id ? 3 : 2;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100906 } else {
Bas Nieuwenhuizen0f89f9b2018-01-17 23:23:02 +0100907 unreachable("invalid shader ES type");
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100908 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100909
910 /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and
911 * VGPR[0:4] are always loaded.
912 */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200913 if (info->info.uses_invocation_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100914 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200915 } else if (info->info.uses_prim_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100916 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200917 } else if (info->gs.vertices_in >= 3) {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100918 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200919 } else {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100920 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200921 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100922
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200923 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt);
924 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Bas Nieuwenhuizen74695162019-06-30 01:47:30 +0200925 S_00B22C_OC_LDS_EN(es_type == MESA_SHADER_TESS_EVAL);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200926 } else if (pdevice->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200927 stage == MESA_SHADER_TESS_CTRL) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200928 config_out->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200929 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200930 config_out->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200931 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200932}
933
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200934static void radv_init_llvm_target()
935{
936 LLVMInitializeAMDGPUTargetInfo();
937 LLVMInitializeAMDGPUTarget();
938 LLVMInitializeAMDGPUTargetMC();
939 LLVMInitializeAMDGPUAsmPrinter();
940
941 /* For inline assembly. */
942 LLVMInitializeAMDGPUAsmParser();
943
944 /* Workaround for bug in llvm 4.0 that causes image intrinsics
945 * to disappear.
946 * https://reviews.llvm.org/D26348
947 *
948 * Workaround for bug in llvm that causes the GPU to hang in presence
949 * of nested loops because there is an exec mask issue. The proper
950 * solution is to fix LLVM but this might require a bunch of work.
951 * https://bugs.llvm.org/show_bug.cgi?id=37744
952 *
953 * "mesa" is the prefix for error messages.
954 */
Samuel Pitoiset0a7e7672018-12-19 18:16:00 +0100955 if (HAVE_LLVM >= 0x0800) {
956 const char *argv[2] = { "mesa", "-simplifycfg-sink-common=false" };
957 LLVMParseCommandLineOptions(2, argv, NULL);
958
959 } else {
960 const char *argv[3] = { "mesa", "-simplifycfg-sink-common=false",
961 "-amdgpu-skip-threshold=1" };
962 LLVMParseCommandLineOptions(3, argv, NULL);
963 }
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200964}
965
966static once_flag radv_init_llvm_target_once_flag = ONCE_FLAG_INIT;
967
Dave Airlie473be162018-06-27 08:36:41 +1000968static void radv_init_llvm_once(void)
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200969{
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200970 call_once(&radv_init_llvm_target_once_flag, radv_init_llvm_target);
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200971}
972
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200973struct radv_shader_variant *
974radv_shader_variant_create(struct radv_device *device,
975 const struct radv_shader_binary *binary)
976{
977 struct ac_shader_config config = {0};
978 struct ac_rtld_binary rtld_binary = {0};
979 struct radv_shader_variant *variant = calloc(1, sizeof(struct radv_shader_variant));
980 if (!variant)
981 return NULL;
982
983 variant->ref_count = 1;
984
985 if (binary->type == RADV_BINARY_TYPE_RTLD) {
986 struct ac_rtld_symbol lds_symbols[1];
987 unsigned num_lds_symbols = 0;
988 const char *elf_data = (const char *)((struct radv_shader_binary_rtld *)binary)->data;
989 size_t elf_size = ((struct radv_shader_binary_rtld *)binary)->elf_size;
Samuel Pitoisetf0a90ed2019-07-11 00:25:28 +0200990 unsigned esgs_ring_size = 0;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200991
992 if (device->physical_device->rad_info.chip_class >= GFX9 &&
993 binary->stage == MESA_SHADER_GEOMETRY && !binary->is_gs_copy_shader) {
Samuel Pitoisetf0a90ed2019-07-11 00:25:28 +0200994 /* TODO: Do not hardcode this value */
995 esgs_ring_size = 32 * 1024;
996 }
997
998 if (binary->variant_info.is_ngg) {
999 /* GS stores Primitive IDs into LDS at the address
1000 * corresponding to the ES thread of the provoking
1001 * vertex. All ES threads load and export PrimitiveID
1002 * for their thread.
1003 */
1004 if (binary->stage == MESA_SHADER_VERTEX &&
1005 binary->variant_info.vs.export_prim_id) {
1006 /* TODO: Do not harcode this value */
1007 esgs_ring_size = 256 /* max_out_verts */ * 4;
1008 }
1009 }
1010
1011 if (esgs_ring_size) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001012 /* We add this symbol even on LLVM <= 8 to ensure that
1013 * shader->config.lds_size is set correctly below.
1014 */
1015 struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++];
1016 sym->name = "esgs_ring";
Samuel Pitoisetf0a90ed2019-07-11 00:25:28 +02001017 sym->size = esgs_ring_size;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001018 sym->align = 64 * 1024;
Samuel Pitoiset5bbcb3f2019-07-11 08:44:16 +02001019
1020 /* Make sure to have LDS space for NGG scratch. */
1021 /* TODO: Compute this correctly somehow? */
1022 if (binary->variant_info.is_ngg)
1023 sym->size -= 32;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001024 }
Samuel Pitoisetea385652019-07-30 18:32:42 +02001025
1026 uint8_t wave_size =
1027 radv_get_shader_wave_size(device->physical_device,
1028 binary->stage);
1029
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001030 struct ac_rtld_open_info open_info = {
1031 .info = &device->physical_device->rad_info,
1032 .shader_type = binary->stage,
Samuel Pitoisetea385652019-07-30 18:32:42 +02001033 .wave_size = wave_size,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001034 .num_parts = 1,
1035 .elf_ptrs = &elf_data,
1036 .elf_sizes = &elf_size,
1037 .num_shared_lds_symbols = num_lds_symbols,
1038 .shared_lds_symbols = lds_symbols,
1039 };
1040
1041 if (!ac_rtld_open(&rtld_binary, open_info)) {
1042 free(variant);
1043 return NULL;
1044 }
1045
1046 if (!ac_rtld_read_config(&rtld_binary, &config)) {
1047 ac_rtld_close(&rtld_binary);
1048 free(variant);
1049 return NULL;
1050 }
1051
1052 if (rtld_binary.lds_size > 0) {
1053 unsigned alloc_granularity = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
1054 config.lds_size = align(rtld_binary.lds_size, alloc_granularity) / alloc_granularity;
1055 }
1056
1057 variant->code_size = rtld_binary.rx_size;
1058 } else {
1059 assert(binary->type == RADV_BINARY_TYPE_LEGACY);
1060 config = ((struct radv_shader_binary_legacy *)binary)->config;
1061 variant->code_size = radv_get_shader_binary_size(((struct radv_shader_binary_legacy *)binary)->code_size);
1062 }
1063
1064 variant->info = binary->variant_info;
1065 radv_postprocess_config(device->physical_device, &config, &binary->variant_info,
1066 binary->stage, &variant->config);
1067
1068 void *dest_ptr = radv_alloc_shader_memory(device, variant);
1069
1070 if (binary->type == RADV_BINARY_TYPE_RTLD) {
1071 struct radv_shader_binary_rtld* bin = (struct radv_shader_binary_rtld *)binary;
1072 struct ac_rtld_upload_info info = {
1073 .binary = &rtld_binary,
1074 .rx_va = radv_buffer_get_va(variant->bo) + variant->bo_offset,
1075 .rx_ptr = dest_ptr,
1076 };
1077
1078 if (!ac_rtld_upload(&info)) {
1079 radv_shader_variant_destroy(device, variant);
1080 ac_rtld_close(&rtld_binary);
1081 return NULL;
1082 }
1083
Samuel Pitoiset9343c932019-07-23 09:55:24 +02001084 if (device->keep_shader_info ||
1085 (device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS)) {
Timothy Arceria20a9d02019-07-17 14:20:55 +10001086 const char *disasm_data;
1087 size_t disasm_size;
1088 if (!ac_rtld_get_section_by_name(&rtld_binary, ".AMDGPU.disasm", &disasm_data, &disasm_size)) {
1089 radv_shader_variant_destroy(device, variant);
1090 ac_rtld_close(&rtld_binary);
1091 return NULL;
1092 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001093
Timothy Arceria20a9d02019-07-17 14:20:55 +10001094 variant->llvm_ir_string = bin->llvm_ir_size ? strdup((const char*)(bin->data + bin->elf_size)) : NULL;
1095 variant->disasm_string = malloc(disasm_size + 1);
1096 memcpy(variant->disasm_string, disasm_data, disasm_size);
1097 variant->disasm_string[disasm_size] = 0;
1098 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001099
1100 ac_rtld_close(&rtld_binary);
1101 } else {
1102 struct radv_shader_binary_legacy* bin = (struct radv_shader_binary_legacy *)binary;
1103 memcpy(dest_ptr, bin->data, bin->code_size);
1104
1105 /* Add end-of-code markers for the UMR disassembler. */
1106 uint32_t *ptr32 = (uint32_t *)dest_ptr + bin->code_size / 4;
1107 for (unsigned i = 0; i < DEBUGGER_NUM_MARKERS; i++)
1108 ptr32[i] = DEBUGGER_END_OF_CODE_MARKER;
1109
1110 variant->llvm_ir_string = bin->llvm_ir_size ? strdup((const char*)(bin->data + bin->code_size)) : NULL;
1111 variant->disasm_string = bin->disasm_size ? strdup((const char*)(bin->data + bin->code_size + bin->llvm_ir_size)) : NULL;
1112 }
1113 return variant;
1114}
1115
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001116static struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001117shader_variant_compile(struct radv_device *device,
1118 struct radv_shader_module *module,
1119 struct nir_shader * const *shaders,
1120 int shader_count,
1121 gl_shader_stage stage,
1122 struct radv_nir_compiler_options *options,
1123 bool gs_copy_shader,
1124 struct radv_shader_binary **binary_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001125{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001126 enum radeon_family chip_family = device->physical_device->rad_info.family;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001127 enum ac_target_machine_options tm_options = 0;
Dave Airlie73989132018-06-27 09:27:03 +10001128 struct ac_llvm_compiler ac_llvm;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001129 struct radv_shader_binary *binary = NULL;
1130 struct radv_shader_variant_info variant_info = {0};
Dave Airlie6f3aee42018-06-27 11:34:25 +10001131 bool thread_compiler;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001132
Connor Abbott118a66d2019-05-10 10:44:20 +02001133 if (shaders[0]->info.stage == MESA_SHADER_FRAGMENT)
1134 lower_fs_io(shaders[0], &variant_info);
1135
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001136 options->family = chip_family;
1137 options->chip_class = device->physical_device->rad_info.chip_class;
Samuel Pitoiset8ade3e42018-05-11 16:36:02 +02001138 options->dump_shader = radv_can_dump_shader(device, module, gs_copy_shader);
Samuel Pitoisetd07edf52018-03-14 10:28:49 +01001139 options->dump_preoptir = options->dump_shader &&
Samuel Pitoiset33e6e5e2018-01-19 12:12:02 +01001140 device->instance->debug_flags & RADV_DEBUG_PREOPTIR;
Samuel Pitoiset81818662018-03-14 10:34:13 +01001141 options->record_llvm_ir = device->keep_shader_info;
Samuel Pitoisetbfca15e2018-06-14 14:28:58 +02001142 options->check_ir = device->instance->debug_flags & RADV_DEBUG_CHECKIR;
Dave Airlie010d0552018-02-19 07:14:04 +00001143 options->tess_offchip_block_dw_size = device->tess_offchip_block_dw_size;
Samuel Pitoisetd8a61d32018-05-16 16:02:04 +02001144 options->address32_hi = device->physical_device->rad_info.address32_hi;
Samuel Pitoisetea385652019-07-30 18:32:42 +02001145 options->cs_wave_size = device->physical_device->cs_wave_size;
Samuel Pitoiset953bbac2019-08-01 10:43:41 +02001146 options->ps_wave_size = device->physical_device->ps_wave_size;
Samuel Pitoiset8a869082019-08-01 10:43:42 +02001147 options->ge_wave_size = device->physical_device->ge_wave_size;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001148
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001149 if (options->supports_spill)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001150 tm_options |= AC_TM_SUPPORTS_SPILL;
1151 if (device->instance->perftest_flags & RADV_PERFTEST_SISCHED)
1152 tm_options |= AC_TM_SISCHED;
Dave Airlie35c82af2018-07-03 09:44:22 +10001153 if (options->check_ir)
1154 tm_options |= AC_TM_CHECK_IR;
Samuel Pitoisetd7501832019-05-07 16:09:46 +02001155 if (device->instance->debug_flags & RADV_DEBUG_NO_LOAD_STORE_OPT)
1156 tm_options |= AC_TM_NO_LOAD_STORE_OPT;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001157
Dave Airlie6f3aee42018-06-27 11:34:25 +10001158 thread_compiler = !(device->instance->debug_flags & RADV_DEBUG_NOTHREADLLVM);
Dave Airlie473be162018-06-27 08:36:41 +10001159 radv_init_llvm_once();
Samuel Pitoiset3fbdcd92018-11-02 09:50:32 +01001160 radv_init_llvm_compiler(&ac_llvm,
Dave Airlie6f3aee42018-06-27 11:34:25 +10001161 thread_compiler,
Samuel Pitoiset96a54452019-08-01 10:43:44 +02001162 chip_family, tm_options,
1163 radv_get_shader_wave_size(device->physical_device, stage));
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001164 if (gs_copy_shader) {
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +02001165 assert(shader_count == 1);
Dave Airlie73989132018-06-27 09:27:03 +10001166 radv_compile_gs_copy_shader(&ac_llvm, *shaders, &binary,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001167 &variant_info, options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001168 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001169 radv_compile_nir_shader(&ac_llvm, &binary, &variant_info,
1170 shaders, shader_count, options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001171 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001172 binary->variant_info = variant_info;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001173
Dave Airlie6f3aee42018-06-27 11:34:25 +10001174 radv_destroy_llvm_compiler(&ac_llvm, thread_compiler);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001175
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001176 struct radv_shader_variant *variant = radv_shader_variant_create(device, binary);
1177 if (!variant) {
1178 free(binary);
1179 return NULL;
1180 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001181
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +02001182 if (options->dump_shader) {
1183 fprintf(stderr, "disasm:\n%s\n", variant->disasm_string);
1184 }
1185
1186
Alex Smithde889792017-10-27 14:25:05 +01001187 if (device->keep_shader_info) {
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001188 if (!gs_copy_shader && !module->nir) {
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +02001189 variant->nir = *shaders;
Samuel Pitoiset844ae722017-09-22 16:56:40 +02001190 variant->spirv = (uint32_t *)module->data;
1191 variant->spirv_size = module->size;
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001192 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001193 }
1194
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001195 if (binary_out)
1196 *binary_out = binary;
1197 else
1198 free(binary);
1199
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001200 return variant;
1201}
1202
1203struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001204radv_shader_variant_compile(struct radv_device *device,
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001205 struct radv_shader_module *module,
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +02001206 struct nir_shader *const *shaders,
1207 int shader_count,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001208 struct radv_pipeline_layout *layout,
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001209 const struct radv_shader_variant_key *key,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001210 struct radv_shader_binary **binary_out)
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001211{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001212 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001213
1214 options.layout = layout;
1215 if (key)
1216 options.key = *key;
1217
Timothy Arceri7664aaf2017-10-11 11:59:20 +11001218 options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH);
Samuel Pitoiset1e86eaf2018-05-17 09:56:47 +02001219 options.supports_spill = true;
Bas Nieuwenhuizen72e7b7a2019-08-02 12:40:17 +02001220 options.robust_buffer_access = device->robust_buffer_access;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001221
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001222 return shader_variant_compile(device, module, shaders, shader_count, shaders[shader_count - 1]->info.stage,
1223 &options, false, binary_out);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001224}
1225
1226struct radv_shader_variant *
1227radv_create_gs_copy_shader(struct radv_device *device,
1228 struct nir_shader *shader,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001229 struct radv_shader_binary **binary_out,
Samuel Pitoiset47efc522017-09-01 12:09:56 +02001230 bool multiview)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001231{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001232 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001233
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001234 options.key.has_multiview_view_index = multiview;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001235
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001236 return shader_variant_compile(device, NULL, &shader, 1, MESA_SHADER_VERTEX,
1237 &options, true, binary_out);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001238}
1239
1240void
1241radv_shader_variant_destroy(struct radv_device *device,
1242 struct radv_shader_variant *variant)
1243{
1244 if (!p_atomic_dec_zero(&variant->ref_count))
1245 return;
1246
1247 mtx_lock(&device->shader_slab_mutex);
1248 list_del(&variant->slab_list);
1249 mtx_unlock(&device->shader_slab_mutex);
1250
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001251 ralloc_free(variant->nir);
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001252 free(variant->disasm_string);
Samuel Pitoiset81818662018-03-14 10:34:13 +01001253 free(variant->llvm_ir_string);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001254 free(variant);
1255}
1256
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001257const char *
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001258radv_get_shader_name(struct radv_shader_variant_info *info,
1259 gl_shader_stage stage)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001260{
1261 switch (stage) {
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001262 case MESA_SHADER_VERTEX:
1263 if (info->vs.as_ls)
1264 return "Vertex Shader as LS";
1265 else if (info->vs.as_es)
1266 return "Vertex Shader as ES";
1267 else if (info->is_ngg)
1268 return "Vertex Shader as ESGS";
1269 else
1270 return "Vertex Shader as VS";
1271 case MESA_SHADER_TESS_CTRL:
1272 return "Tessellation Control Shader";
1273 case MESA_SHADER_TESS_EVAL:
1274 if (info->tes.as_es)
1275 return "Tessellation Evaluation Shader as ES";
1276 else if (info->is_ngg)
1277 return "Tessellation Evaluation Shader as ESGS";
1278 else
1279 return "Tessellation Evaluation Shader as VS";
1280 case MESA_SHADER_GEOMETRY:
1281 return "Geometry Shader";
1282 case MESA_SHADER_FRAGMENT:
1283 return "Pixel Shader";
1284 case MESA_SHADER_COMPUTE:
1285 return "Compute Shader";
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001286 default:
1287 return "Unknown shader";
1288 };
1289}
1290
Alex Smithde889792017-10-27 14:25:05 +01001291static void
1292generate_shader_stats(struct radv_device *device,
1293 struct radv_shader_variant *variant,
1294 gl_shader_stage stage,
1295 struct _mesa_string_buffer *buf)
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001296{
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001297 enum chip_class chip_class = device->physical_device->rad_info.chip_class;
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001298 unsigned lds_increment = chip_class >= GFX7 ? 512 : 256;
Samuel Pitoisetea385652019-07-30 18:32:42 +02001299 uint8_t wave_size = radv_get_shader_wave_size(device->physical_device, stage);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001300 struct ac_shader_config *conf;
1301 unsigned max_simd_waves;
1302 unsigned lds_per_wave = 0;
1303
Dave Airlief77caa72018-04-23 10:16:07 +10001304 max_simd_waves = ac_get_max_simd_waves(device->physical_device->rad_info.family);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001305
1306 conf = &variant->config;
1307
1308 if (stage == MESA_SHADER_FRAGMENT) {
1309 lds_per_wave = conf->lds_size * lds_increment +
1310 align(variant->info.fs.num_interp * 48,
1311 lds_increment);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001312 } else if (stage == MESA_SHADER_COMPUTE) {
1313 unsigned max_workgroup_size =
Dave Airlie2ac2b982019-07-18 10:44:10 +10001314 radv_nir_get_max_workgroup_size(chip_class, stage, variant->nir);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001315 lds_per_wave = (conf->lds_size * lds_increment) /
Samuel Pitoisetea385652019-07-30 18:32:42 +02001316 DIV_ROUND_UP(max_workgroup_size, wave_size);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001317 }
1318
Alex Smithde889792017-10-27 14:25:05 +01001319 if (conf->num_sgprs)
Samuel Pitoiset2f7bb932018-04-06 14:06:24 +02001320 max_simd_waves =
1321 MIN2(max_simd_waves,
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001322 ac_get_num_physical_sgprs(chip_class) / conf->num_sgprs);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001323
1324 if (conf->num_vgprs)
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001325 max_simd_waves =
1326 MIN2(max_simd_waves,
1327 RADV_NUM_PHYSICAL_VGPRS / conf->num_vgprs);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001328
1329 /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD
1330 * that PS can use.
1331 */
1332 if (lds_per_wave)
1333 max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave);
1334
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001335 if (stage == MESA_SHADER_FRAGMENT) {
Alex Smithde889792017-10-27 14:25:05 +01001336 _mesa_string_buffer_printf(buf, "*** SHADER CONFIG ***\n"
1337 "SPI_PS_INPUT_ADDR = 0x%04x\n"
1338 "SPI_PS_INPUT_ENA = 0x%04x\n",
1339 conf->spi_ps_input_addr, conf->spi_ps_input_ena);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001340 }
1341
Alex Smithde889792017-10-27 14:25:05 +01001342 _mesa_string_buffer_printf(buf, "*** SHADER STATS ***\n"
1343 "SGPRS: %d\n"
1344 "VGPRS: %d\n"
1345 "Spilled SGPRs: %d\n"
1346 "Spilled VGPRs: %d\n"
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001347 "PrivMem VGPRS: %d\n"
Alex Smithde889792017-10-27 14:25:05 +01001348 "Code Size: %d bytes\n"
1349 "LDS: %d blocks\n"
1350 "Scratch: %d bytes per wave\n"
1351 "Max Waves: %d\n"
1352 "********************\n\n\n",
1353 conf->num_sgprs, conf->num_vgprs,
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001354 conf->spilled_sgprs, conf->spilled_vgprs,
1355 variant->info.private_mem_vgprs, variant->code_size,
Alex Smithde889792017-10-27 14:25:05 +01001356 conf->lds_size, conf->scratch_bytes_per_wave,
1357 max_simd_waves);
1358}
1359
1360void
1361radv_shader_dump_stats(struct radv_device *device,
1362 struct radv_shader_variant *variant,
1363 gl_shader_stage stage,
1364 FILE *file)
1365{
1366 struct _mesa_string_buffer *buf = _mesa_string_buffer_create(NULL, 256);
1367
1368 generate_shader_stats(device, variant, stage, buf);
1369
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001370 fprintf(file, "\n%s:\n", radv_get_shader_name(&variant->info, stage));
Alex Smith134a40d2017-10-30 08:38:14 +00001371 fprintf(file, "%s", buf->buf);
Alex Smithde889792017-10-27 14:25:05 +01001372
1373 _mesa_string_buffer_destroy(buf);
1374}
1375
1376VkResult
1377radv_GetShaderInfoAMD(VkDevice _device,
1378 VkPipeline _pipeline,
1379 VkShaderStageFlagBits shaderStage,
1380 VkShaderInfoTypeAMD infoType,
1381 size_t* pInfoSize,
1382 void* pInfo)
1383{
1384 RADV_FROM_HANDLE(radv_device, device, _device);
1385 RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline);
1386 gl_shader_stage stage = vk_to_mesa_shader_stage(shaderStage);
1387 struct radv_shader_variant *variant = pipeline->shaders[stage];
1388 struct _mesa_string_buffer *buf;
1389 VkResult result = VK_SUCCESS;
1390
1391 /* Spec doesn't indicate what to do if the stage is invalid, so just
1392 * return no info for this. */
1393 if (!variant)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +02001394 return vk_error(device->instance, VK_ERROR_FEATURE_NOT_PRESENT);
Alex Smithde889792017-10-27 14:25:05 +01001395
1396 switch (infoType) {
1397 case VK_SHADER_INFO_TYPE_STATISTICS_AMD:
1398 if (!pInfo) {
1399 *pInfoSize = sizeof(VkShaderStatisticsInfoAMD);
1400 } else {
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001401 unsigned lds_multiplier = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
Alex Smithde889792017-10-27 14:25:05 +01001402 struct ac_shader_config *conf = &variant->config;
1403
1404 VkShaderStatisticsInfoAMD statistics = {};
1405 statistics.shaderStageMask = shaderStage;
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001406 statistics.numPhysicalVgprs = RADV_NUM_PHYSICAL_VGPRS;
Timothy Arceria53d68d2019-02-01 21:16:54 +11001407 statistics.numPhysicalSgprs = ac_get_num_physical_sgprs(device->physical_device->rad_info.chip_class);
Alex Smithde889792017-10-27 14:25:05 +01001408 statistics.numAvailableSgprs = statistics.numPhysicalSgprs;
1409
1410 if (stage == MESA_SHADER_COMPUTE) {
1411 unsigned *local_size = variant->nir->info.cs.local_size;
1412 unsigned workgroup_size = local_size[0] * local_size[1] * local_size[2];
1413
1414 statistics.numAvailableVgprs = statistics.numPhysicalVgprs /
Eric Engestromd85fef12018-06-15 17:49:08 +01001415 ceil((double)workgroup_size / statistics.numPhysicalVgprs);
Alex Smithde889792017-10-27 14:25:05 +01001416
1417 statistics.computeWorkGroupSize[0] = local_size[0];
1418 statistics.computeWorkGroupSize[1] = local_size[1];
1419 statistics.computeWorkGroupSize[2] = local_size[2];
1420 } else {
1421 statistics.numAvailableVgprs = statistics.numPhysicalVgprs;
1422 }
1423
1424 statistics.resourceUsage.numUsedVgprs = conf->num_vgprs;
1425 statistics.resourceUsage.numUsedSgprs = conf->num_sgprs;
1426 statistics.resourceUsage.ldsSizePerLocalWorkGroup = 32768;
1427 statistics.resourceUsage.ldsUsageSizeInBytes = conf->lds_size * lds_multiplier;
1428 statistics.resourceUsage.scratchMemUsageInBytes = conf->scratch_bytes_per_wave;
1429
1430 size_t size = *pInfoSize;
1431 *pInfoSize = sizeof(statistics);
1432
1433 memcpy(pInfo, &statistics, MIN2(size, *pInfoSize));
1434
1435 if (size < *pInfoSize)
1436 result = VK_INCOMPLETE;
1437 }
1438
1439 break;
1440 case VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD:
1441 buf = _mesa_string_buffer_create(NULL, 1024);
1442
Samuel Pitoiset2b6a0892019-07-11 18:03:55 +02001443 _mesa_string_buffer_printf(buf, "%s:\n", radv_get_shader_name(&variant->info, stage));
Nicolai Hähnle8c97abc2018-11-07 12:10:21 +01001444 _mesa_string_buffer_printf(buf, "%s\n\n", variant->llvm_ir_string);
Alex Smithde889792017-10-27 14:25:05 +01001445 _mesa_string_buffer_printf(buf, "%s\n\n", variant->disasm_string);
1446 generate_shader_stats(device, variant, stage, buf);
1447
1448 /* Need to include the null terminator. */
1449 size_t length = buf->length + 1;
1450
1451 if (!pInfo) {
1452 *pInfoSize = length;
1453 } else {
1454 size_t size = *pInfoSize;
1455 *pInfoSize = length;
1456
1457 memcpy(pInfo, buf->buf, MIN2(size, length));
1458
1459 if (size < length)
1460 result = VK_INCOMPLETE;
1461 }
1462
1463 _mesa_string_buffer_destroy(buf);
1464 break;
1465 default:
1466 /* VK_SHADER_INFO_TYPE_BINARY_AMD unimplemented for now. */
1467 result = VK_ERROR_FEATURE_NOT_PRESENT;
1468 break;
1469 }
1470
1471 return result;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001472}