blob: 8aa5880a38bcf0a17db78cbdd63a960d8e4ab5c6 [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
83VkResult radv_CreateShaderModule(
84 VkDevice _device,
85 const VkShaderModuleCreateInfo* pCreateInfo,
86 const VkAllocationCallbacks* pAllocator,
87 VkShaderModule* pShaderModule)
88{
89 RADV_FROM_HANDLE(radv_device, device, _device);
90 struct radv_shader_module *module;
91
92 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO);
93 assert(pCreateInfo->flags == 0);
94
95 module = vk_alloc2(&device->alloc, pAllocator,
96 sizeof(*module) + pCreateInfo->codeSize, 8,
97 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
98 if (module == NULL)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +020099 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200100
101 module->nir = NULL;
102 module->size = pCreateInfo->codeSize;
103 memcpy(module->data, pCreateInfo->pCode, module->size);
104
105 _mesa_sha1_compute(module->data, module->size, module->sha1);
106
107 *pShaderModule = radv_shader_module_to_handle(module);
108
109 return VK_SUCCESS;
110}
111
112void radv_DestroyShaderModule(
113 VkDevice _device,
114 VkShaderModule _module,
115 const VkAllocationCallbacks* pAllocator)
116{
117 RADV_FROM_HANDLE(radv_device, device, _device);
118 RADV_FROM_HANDLE(radv_shader_module, module, _module);
119
120 if (!module)
121 return;
122
123 vk_free2(&device->alloc, pAllocator, module);
124}
125
Bas Nieuwenhuizen06f05042017-02-09 00:12:10 +0100126void
Timothy Arceri06675712018-10-18 09:42:17 +1100127radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively,
128 bool allow_copies)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200129{
130 bool progress;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700131 unsigned lower_flrp =
132 (shader->options->lower_flrp16 ? 16 : 0) |
133 (shader->options->lower_flrp32 ? 32 : 0) |
134 (shader->options->lower_flrp64 ? 64 : 0);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200135
136 do {
137 progress = false;
138
Karol Herbst9b240282019-01-16 00:05:04 +0100139 NIR_PASS(progress, shader, nir_split_array_vars, nir_var_function_temp);
140 NIR_PASS(progress, shader, nir_shrink_vec_array_vars, nir_var_function_temp);
Timothy Arceri8086fa12018-10-18 10:19:16 +1100141
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200142 NIR_PASS_V(shader, nir_lower_vars_to_ssa);
Iago Toral Quiroga2d648e52018-04-27 09:28:48 +0200143 NIR_PASS_V(shader, nir_lower_pack);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100144
Timothy Arceri06675712018-10-18 09:42:17 +1100145 if (allow_copies) {
146 /* Only run this pass in the first call to
147 * radv_optimize_nir. Later calls assume that we've
148 * lowered away any copy_deref instructions and we
149 * don't want to introduce any more.
150 */
151 NIR_PASS(progress, shader, nir_opt_find_array_copies);
152 }
153
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100154 NIR_PASS(progress, shader, nir_opt_copy_prop_vars);
155 NIR_PASS(progress, shader, nir_opt_dead_write_vars);
156
Jonathan Marekd0bff892019-05-08 12:45:48 -0400157 NIR_PASS_V(shader, nir_lower_alu_to_scalar, NULL);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200158 NIR_PASS_V(shader, nir_lower_phis_to_scalar);
159
160 NIR_PASS(progress, shader, nir_copy_prop);
161 NIR_PASS(progress, shader, nir_opt_remove_phis);
162 NIR_PASS(progress, shader, nir_opt_dce);
163 if (nir_opt_trivial_continues(shader)) {
164 progress = true;
165 NIR_PASS(progress, shader, nir_copy_prop);
Dave Airlie64d9bd12017-09-13 03:49:31 +0100166 NIR_PASS(progress, shader, nir_opt_remove_phis);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200167 NIR_PASS(progress, shader, nir_opt_dce);
168 }
Timothy Arcerie30804c2019-04-08 20:13:49 +1000169 NIR_PASS(progress, shader, nir_opt_if, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200170 NIR_PASS(progress, shader, nir_opt_dead_cf);
171 NIR_PASS(progress, shader, nir_opt_cse);
Ian Romanick378f9962018-06-18 16:11:55 -0700172 NIR_PASS(progress, shader, nir_opt_peephole_select, 8, true, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200173 NIR_PASS(progress, shader, nir_opt_constant_folding);
Timothy Arcerie19a8fe2019-05-02 13:38:52 +1000174 NIR_PASS(progress, shader, nir_opt_algebraic);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700175
176 if (lower_flrp != 0) {
Ian Romanick1f1007a2019-05-08 07:32:43 -0700177 bool lower_flrp_progress = false;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700178 NIR_PASS(lower_flrp_progress,
179 shader,
180 nir_lower_flrp,
181 lower_flrp,
182 false /* always_precise */,
183 shader->options->lower_ffma);
184 if (lower_flrp_progress) {
185 NIR_PASS(progress, shader,
186 nir_opt_constant_folding);
187 progress = true;
188 }
189
190 /* Nothing should rematerialize any flrps, so we only
191 * need to do this lowering once.
192 */
193 lower_flrp = 0;
194 }
195
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200196 NIR_PASS(progress, shader, nir_opt_undef);
197 NIR_PASS(progress, shader, nir_opt_conditional_discard);
198 if (shader->options->max_unroll_iterations) {
199 NIR_PASS(progress, shader, nir_opt_loop_unroll, 0);
200 }
Timothy Arcerice188812018-05-08 14:57:55 +1000201 } while (progress && !optimize_conservatively);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100202
203 NIR_PASS(progress, shader, nir_opt_shrink_load);
Samuel Pitoisete96a1d22018-03-08 15:31:14 +0100204 NIR_PASS(progress, shader, nir_opt_move_load_ubo);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200205}
206
207nir_shader *
208radv_shader_compile_to_nir(struct radv_device *device,
209 struct radv_shader_module *module,
210 const char *entrypoint_name,
211 gl_shader_stage stage,
Timothy Arcerice188812018-05-08 14:57:55 +1000212 const VkSpecializationInfo *spec_info,
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100213 const VkPipelineCreateFlags flags,
214 const struct radv_pipeline_layout *layout)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200215{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200216 nir_shader *nir;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200217 if (module->nir) {
218 /* Some things such as our meta clear/blit code will give us a NIR
219 * shader directly. In that case, we just ignore the SPIR-V entirely
220 * and just use the NIR shader */
221 nir = module->nir;
222 nir->options = &nir_options;
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500223 nir_validate_shader(nir, "in internal shader");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200224
225 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200226 } else {
227 uint32_t *spirv = (uint32_t *) module->data;
228 assert(module->size % 4 == 0);
229
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100230 if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV)
Samuel Pitoiset844ae722017-09-22 16:56:40 +0200231 radv_print_spirv(spirv, module->size, stderr);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200232
233 uint32_t num_spec_entries = 0;
234 struct nir_spirv_specialization *spec_entries = NULL;
235 if (spec_info && spec_info->mapEntryCount > 0) {
236 num_spec_entries = spec_info->mapEntryCount;
237 spec_entries = malloc(num_spec_entries * sizeof(*spec_entries));
238 for (uint32_t i = 0; i < num_spec_entries; i++) {
239 VkSpecializationMapEntry entry = spec_info->pMapEntries[i];
240 const void *data = spec_info->pData + entry.offset;
241 assert(data + entry.size <= spec_info->pData + spec_info->dataSize);
242
243 spec_entries[i].id = spec_info->pMapEntries[i].constantID;
244 if (spec_info->dataSize == 8)
245 spec_entries[i].data64 = *(const uint64_t *)data;
246 else
247 spec_entries[i].data32 = *(const uint32_t *)data;
248 }
249 }
Jason Ekstrande19c6232017-10-18 17:28:19 -0700250 const struct spirv_to_nir_options spirv_options = {
Jason Ekstrand63b9aa22018-12-14 18:36:01 -0600251 .lower_ubo_ssbo_access_to_offsets = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700252 .caps = {
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200253 .amd_gcn_shader = true,
Daniel Schürmannc58dff72018-05-09 20:43:16 +0200254 .amd_shader_ballot = device->instance->perftest_flags & RADV_PERFTEST_SHADER_BALLOT,
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200255 .amd_trinary_minmax = true,
Samuel Pitoisetb3e34402019-04-19 12:40:37 +0200256 .derivative_group = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600257 .descriptor_array_dynamic_indexing = true,
Juan A. Suarez Romero06c9d7f2019-04-29 17:05:13 +0200258 .descriptor_array_non_uniform_indexing = true,
259 .descriptor_indexing = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +0100260 .device_group = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700261 .draw_parameters = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200262 .float16 = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700263 .float64 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600264 .geometry_streams = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700265 .image_read_without_format = true,
266 .image_write_without_format = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200267 .int8 = true,
Samuel Pitoiset08103c52018-09-14 12:52:40 +0200268 .int16 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600269 .int64 = true,
Samuel Pitoiset9cf55b02019-04-16 10:38:24 +0200270 .int64_atomics = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700271 .multiview = true,
Bas Nieuwenhuizen13ab63b2019-01-24 02:06:27 +0100272 .physical_storage_buffer_address = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600273 .runtime_descriptor_array = true,
274 .shader_viewport_index_layer = true,
275 .stencil_export = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200276 .storage_8bit = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600277 .storage_16bit = true,
278 .storage_image_ms = true,
Samuel Pitoiset35656822018-09-18 15:27:52 +0200279 .subgroup_arithmetic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100280 .subgroup_ballot = true,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100281 .subgroup_basic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100282 .subgroup_quad = true,
283 .subgroup_shuffle = true,
284 .subgroup_vote = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600285 .tessellation = true,
Samuel Pitoisetb4eb0292018-10-05 18:04:56 +0200286 .transform_feedback = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600287 .variable_pointers = true,
Daniel Schürmannffbf75c2018-02-23 13:55:01 +0100288 },
Caio Marcelo de Oliveira Filho31a74762019-05-01 14:15:32 -0700289 .ubo_addr_format = nir_address_format_32bit_index_offset,
290 .ssbo_addr_format = nir_address_format_32bit_index_offset,
291 .phys_ssbo_addr_format = nir_address_format_64bit_global,
292 .push_const_addr_format = nir_address_format_logical,
293 .shared_addr_format = nir_address_format_32bit_offset,
Connor Abbott27f0c3c2019-05-13 15:39:54 +0200294 .frag_coord_is_sysval = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200295 };
Caio Marcelo de Oliveira Filhoe45bf012019-05-19 00:22:17 -0700296 nir = spirv_to_nir(spirv, module->size / 4,
297 spec_entries, num_spec_entries,
298 stage, entrypoint_name,
299 &spirv_options, &nir_options);
Jason Ekstrand59fb59a2017-09-14 19:52:38 -0700300 assert(nir->info.stage == stage);
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500301 nir_validate_shader(nir, "after spirv_to_nir");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200302
303 free(spec_entries);
304
305 /* We have to lower away local constant initializers right before we
306 * inline functions. That way they get properly initialized at the top
307 * of the function and not at the top of its caller.
308 */
Karol Herbst9b240282019-01-16 00:05:04 +0100309 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_function_temp);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200310 NIR_PASS_V(nir, nir_lower_returns);
311 NIR_PASS_V(nir, nir_inline_functions);
Jason Ekstrandfc9c4f82018-12-13 11:08:13 -0600312 NIR_PASS_V(nir, nir_opt_deref);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200313
314 /* Pick off the single entrypoint that we want */
315 foreach_list_typed_safe(nir_function, func, node, &nir->functions) {
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700316 if (func->is_entrypoint)
317 func->name = ralloc_strdup(func, "main");
318 else
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200319 exec_node_remove(&func->node);
320 }
321 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200322
Dave Airliee8d9b7a2018-03-19 04:27:49 +0000323 /* Make sure we lower constant initializers on output variables so that
324 * nir_remove_dead_variables below sees the corresponding stores
325 */
326 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_shader_out);
327
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200328 /* Now that we've deleted all but the main function, we can go ahead and
329 * lower the rest of the constant initializers.
330 */
331 NIR_PASS_V(nir, nir_lower_constant_initializers, ~0);
Jason Ekstrandb0c643d2018-03-21 17:30:22 -0700332
333 /* Split member structs. We do this before lower_io_to_temporaries so that
334 * it doesn't lower system values to temporaries by accident.
335 */
336 NIR_PASS_V(nir, nir_split_var_copies);
337 NIR_PASS_V(nir, nir_split_per_member_structs);
338
Daniel Schürmanne41e9322019-04-05 11:01:39 +0200339 if (nir->info.stage == MESA_SHADER_FRAGMENT)
Connor Abbott27f0c3c2019-05-13 15:39:54 +0200340 NIR_PASS_V(nir, nir_lower_input_attachments, true);
Daniel Schürmanne41e9322019-04-05 11:01:39 +0200341
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200342 NIR_PASS_V(nir, nir_remove_dead_variables,
343 nir_var_shader_in | nir_var_shader_out | nir_var_system_value);
344
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200345 NIR_PASS_V(nir, nir_lower_system_values);
346 NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays);
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100347 NIR_PASS_V(nir, radv_nir_lower_ycbcr_textures, layout);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200348 }
349
350 /* Vulkan uses the separate-shader linking model */
351 nir->info.separate_shader = true;
352
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700353 nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir));
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200354
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200355 static const nir_lower_tex_options tex_options = {
356 .lower_txp = ~0,
Jason Ekstrand08f804e2019-03-19 13:55:21 -0500357 .lower_tg4_offsets = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200358 };
359
360 nir_lower_tex(nir, &tex_options);
361
362 nir_lower_vars_to_ssa(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200363
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200364 if (nir->info.stage == MESA_SHADER_VERTEX ||
Connor Abbott118a66d2019-05-10 10:44:20 +0200365 nir->info.stage == MESA_SHADER_GEOMETRY ||
366 nir->info.stage == MESA_SHADER_FRAGMENT) {
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200367 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
368 nir_shader_get_entrypoint(nir), true, true);
Connor Abbott118a66d2019-05-10 10:44:20 +0200369 } else if (nir->info.stage == MESA_SHADER_TESS_EVAL) {
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200370 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
371 nir_shader_get_entrypoint(nir), true, false);
372 }
373
Samuel Pitoisetded15092018-05-23 14:31:55 +0200374 nir_split_var_copies(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200375
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200376 nir_lower_global_vars_to_local(nir);
Karol Herbst9b240282019-01-16 00:05:04 +0100377 nir_remove_dead_variables(nir, nir_var_function_temp);
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100378 nir_lower_subgroups(nir, &(struct nir_lower_subgroups_options) {
379 .subgroup_size = 64,
380 .ballot_bit_size = 64,
381 .lower_to_scalar = 1,
382 .lower_subgroup_masks = 1,
383 .lower_shuffle = 1,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100384 .lower_shuffle_to_32bit = 1,
385 .lower_vote_eq_to_ballot = 1,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100386 });
387
Timothy Arceri72e42872018-09-24 18:18:48 +1000388 nir_lower_load_const_to_scalar(nir);
389
Timothy Arcerice188812018-05-08 14:57:55 +1000390 if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT))
Timothy Arceri06675712018-10-18 09:42:17 +1100391 radv_optimize_nir(nir, false, true);
392
393 /* We call nir_lower_var_copies() after the first radv_optimize_nir()
394 * to remove any copies introduced by nir_opt_find_array_copies().
395 */
396 nir_lower_var_copies(nir);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200397
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100398 /* Indirect lowering must be called after the radv_optimize_nir() loop
399 * has been called at least once. Otherwise indirect lowering can
400 * bloat the instruction count of the loop and cause it to be
401 * considered too large for unrolling.
402 */
403 ac_lower_indirect_derefs(nir, device->physical_device->rad_info.chip_class);
Timothy Arceri06675712018-10-18 09:42:17 +1100404 radv_optimize_nir(nir, flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, false);
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100405
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200406 return nir;
407}
408
Connor Abbott118a66d2019-05-10 10:44:20 +0200409static void mark_16bit_fs_input(struct radv_shader_variant_info *shader_info,
410 const struct glsl_type *type,
411 int location)
412{
413 if (glsl_type_is_scalar(type) || glsl_type_is_vector(type) || glsl_type_is_matrix(type)) {
414 unsigned attrib_count = glsl_count_attribute_slots(type, false);
415 if (glsl_type_is_16bit(type)) {
416 shader_info->fs.float16_shaded_mask |= ((1ull << attrib_count) - 1) << location;
417 }
418 } else if (glsl_type_is_array(type)) {
419 unsigned stride = glsl_count_attribute_slots(glsl_get_array_element(type), false);
420 for (unsigned i = 0; i < glsl_get_length(type); ++i) {
421 mark_16bit_fs_input(shader_info, glsl_get_array_element(type), location + i * stride);
422 }
423 } else {
424 assert(glsl_type_is_struct_or_ifc(type));
425 for (unsigned i = 0; i < glsl_get_length(type); i++) {
426 mark_16bit_fs_input(shader_info, glsl_get_struct_field(type, i), location);
427 location += glsl_count_attribute_slots(glsl_get_struct_field(type, i), false);
428 }
429 }
430}
431
432static void
433handle_fs_input_decl(struct radv_shader_variant_info *shader_info,
434 struct nir_variable *variable)
435{
436 unsigned attrib_count = glsl_count_attribute_slots(variable->type, false);
437
438 if (variable->data.compact) {
439 unsigned component_count = variable->data.location_frac +
440 glsl_get_length(variable->type);
441 attrib_count = (component_count + 3) / 4;
442 } else {
443 mark_16bit_fs_input(shader_info, variable->type,
444 variable->data.driver_location);
445 }
446
447 uint64_t mask = ((1ull << attrib_count) - 1);
448
449 if (variable->data.interpolation == INTERP_MODE_FLAT)
450 shader_info->fs.flat_shaded_mask |= mask << variable->data.driver_location;
451
452 if (variable->data.location >= VARYING_SLOT_VAR0)
453 shader_info->fs.input_mask |= mask << (variable->data.location - VARYING_SLOT_VAR0);
454}
455
456static int
457type_size_vec4(const struct glsl_type *type, bool bindless)
458{
459 return glsl_count_attribute_slots(type, false);
460}
461
462static nir_variable *
463find_layer_in_var(nir_shader *nir)
464{
465 nir_foreach_variable(var, &nir->inputs) {
466 if (var->data.location == VARYING_SLOT_LAYER) {
467 return var;
468 }
469 }
470
471 nir_variable *var =
472 nir_variable_create(nir, nir_var_shader_in, glsl_int_type(), "layer id");
473 var->data.location = VARYING_SLOT_LAYER;
474 var->data.interpolation = INTERP_MODE_FLAT;
475 return var;
476}
477
478/* We use layered rendering to implement multiview, which means we need to map
479 * view_index to gl_Layer. The attachment lowering also uses needs to know the
480 * layer so that it can sample from the correct layer. The code generates a
481 * load from the layer_id sysval, but since we don't have a way to get at this
482 * information from the fragment shader, we also need to lower this to the
483 * gl_Layer varying. This pass lowers both to a varying load from the LAYER
484 * slot, before lowering io, so that nir_assign_var_locations() will give the
485 * LAYER varying the correct driver_location.
486 */
487
488static bool
489lower_view_index(nir_shader *nir)
490{
491 bool progress = false;
492 nir_function_impl *entry = nir_shader_get_entrypoint(nir);
493 nir_builder b;
494 nir_builder_init(&b, entry);
495
496 nir_variable *layer = NULL;
497 nir_foreach_block(block, entry) {
498 nir_foreach_instr_safe(instr, block) {
499 if (instr->type != nir_instr_type_intrinsic)
500 continue;
501
502 nir_intrinsic_instr *load = nir_instr_as_intrinsic(instr);
503 if (load->intrinsic != nir_intrinsic_load_view_index &&
504 load->intrinsic != nir_intrinsic_load_layer_id)
505 continue;
506
507 if (!layer)
508 layer = find_layer_in_var(nir);
509
510 b.cursor = nir_before_instr(instr);
511 nir_ssa_def *def = nir_load_var(&b, layer);
512 nir_ssa_def_rewrite_uses(&load->dest.ssa,
513 nir_src_for_ssa(def));
514
515 nir_instr_remove(instr);
516 progress = true;
517 }
518 }
519
520 return progress;
521}
522
523/* Gather information needed to setup the vs<->ps linking registers in
524 * radv_pipeline_generate_ps_inputs().
525 */
526
527static void
528handle_fs_inputs(nir_shader *nir, struct radv_shader_variant_info *shader_info)
529{
530 shader_info->fs.num_interp = nir->num_inputs;
531
532 nir_foreach_variable(variable, &nir->inputs)
533 handle_fs_input_decl(shader_info, variable);
534}
535
536static void
537lower_fs_io(nir_shader *nir, struct radv_shader_variant_info *shader_info)
538{
539 NIR_PASS_V(nir, lower_view_index);
540 nir_assign_io_var_locations(&nir->inputs, &nir->num_inputs,
541 MESA_SHADER_FRAGMENT);
542
543 handle_fs_inputs(nir, shader_info);
544
545 NIR_PASS_V(nir, nir_lower_io, nir_var_shader_in, type_size_vec4, 0);
546
547 /* This pass needs actual constants */
548 nir_opt_constant_folding(nir);
549
550 NIR_PASS_V(nir, nir_io_add_const_offset_to_base, nir_var_shader_in);
551 radv_optimize_nir(nir, false, false);
552}
553
554
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200555void *
556radv_alloc_shader_memory(struct radv_device *device,
557 struct radv_shader_variant *shader)
558{
559 mtx_lock(&device->shader_slab_mutex);
560 list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
561 uint64_t offset = 0;
562 list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) {
563 if (s->bo_offset - offset >= shader->code_size) {
564 shader->bo = slab->bo;
565 shader->bo_offset = offset;
566 list_addtail(&shader->slab_list, &s->slab_list);
567 mtx_unlock(&device->shader_slab_mutex);
568 return slab->ptr + offset;
569 }
570 offset = align_u64(s->bo_offset + s->code_size, 256);
571 }
572 if (slab->size - offset >= shader->code_size) {
573 shader->bo = slab->bo;
574 shader->bo_offset = offset;
575 list_addtail(&shader->slab_list, &slab->shaders);
576 mtx_unlock(&device->shader_slab_mutex);
577 return slab->ptr + offset;
578 }
579 }
580
581 mtx_unlock(&device->shader_slab_mutex);
582 struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab));
583
584 slab->size = 256 * 1024;
585 slab->bo = device->ws->buffer_create(device->ws, slab->size, 256,
Samuel Pitoiseta3c2a862018-01-04 15:19:47 +0100586 RADEON_DOMAIN_VRAM,
587 RADEON_FLAG_NO_INTERPROCESS_SHARING |
Danylo Piliaiev494a2062018-07-18 11:47:19 +0300588 (device->physical_device->cpdma_prefetch_writes_memory ?
Bas Nieuwenhuizenead54d42019-01-28 00:28:05 +0100589 0 : RADEON_FLAG_READ_ONLY),
590 RADV_BO_PRIORITY_SHADER);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200591 slab->ptr = (char*)device->ws->buffer_map(slab->bo);
592 list_inithead(&slab->shaders);
593
594 mtx_lock(&device->shader_slab_mutex);
595 list_add(&slab->slabs, &device->shader_slabs);
596
597 shader->bo = slab->bo;
598 shader->bo_offset = 0;
599 list_add(&shader->slab_list, &slab->shaders);
600 mtx_unlock(&device->shader_slab_mutex);
601 return slab->ptr;
602}
603
604void
605radv_destroy_shader_slabs(struct radv_device *device)
606{
607 list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
608 device->ws->buffer_destroy(slab->bo);
609 free(slab);
610 }
611 mtx_destroy(&device->shader_slab_mutex);
612}
613
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200614/* For the UMR disassembler. */
615#define DEBUGGER_END_OF_CODE_MARKER 0xbf9f0000 /* invalid instruction */
616#define DEBUGGER_NUM_MARKERS 5
617
618static unsigned
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200619radv_get_shader_binary_size(size_t code_size)
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200620{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200621 return code_size + DEBUGGER_NUM_MARKERS * 4;
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200622}
623
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200624static void radv_postprocess_config(const struct radv_physical_device *pdevice,
625 const struct ac_shader_config *config_in,
626 const struct radv_shader_variant_info *info,
627 gl_shader_stage stage,
628 struct ac_shader_config *config_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200629{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200630 bool scratch_enabled = config_in->scratch_bytes_per_wave > 0;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200631 unsigned vgpr_comp_cnt = 0;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200632 unsigned num_input_vgprs = info->num_input_vgprs;
633
634 if (stage == MESA_SHADER_FRAGMENT) {
635 num_input_vgprs = 0;
636 if (G_0286CC_PERSP_SAMPLE_ENA(config_in->spi_ps_input_addr))
637 num_input_vgprs += 2;
638 if (G_0286CC_PERSP_CENTER_ENA(config_in->spi_ps_input_addr))
639 num_input_vgprs += 2;
640 if (G_0286CC_PERSP_CENTROID_ENA(config_in->spi_ps_input_addr))
641 num_input_vgprs += 2;
642 if (G_0286CC_PERSP_PULL_MODEL_ENA(config_in->spi_ps_input_addr))
643 num_input_vgprs += 3;
644 if (G_0286CC_LINEAR_SAMPLE_ENA(config_in->spi_ps_input_addr))
645 num_input_vgprs += 2;
646 if (G_0286CC_LINEAR_CENTER_ENA(config_in->spi_ps_input_addr))
647 num_input_vgprs += 2;
648 if (G_0286CC_LINEAR_CENTROID_ENA(config_in->spi_ps_input_addr))
649 num_input_vgprs += 2;
650 if (G_0286CC_LINE_STIPPLE_TEX_ENA(config_in->spi_ps_input_addr))
651 num_input_vgprs += 1;
652 if (G_0286CC_POS_X_FLOAT_ENA(config_in->spi_ps_input_addr))
653 num_input_vgprs += 1;
654 if (G_0286CC_POS_Y_FLOAT_ENA(config_in->spi_ps_input_addr))
655 num_input_vgprs += 1;
656 if (G_0286CC_POS_Z_FLOAT_ENA(config_in->spi_ps_input_addr))
657 num_input_vgprs += 1;
658 if (G_0286CC_POS_W_FLOAT_ENA(config_in->spi_ps_input_addr))
659 num_input_vgprs += 1;
660 if (G_0286CC_FRONT_FACE_ENA(config_in->spi_ps_input_addr))
661 num_input_vgprs += 1;
662 if (G_0286CC_ANCILLARY_ENA(config_in->spi_ps_input_addr))
663 num_input_vgprs += 1;
664 if (G_0286CC_SAMPLE_COVERAGE_ENA(config_in->spi_ps_input_addr))
665 num_input_vgprs += 1;
666 if (G_0286CC_POS_FIXED_PT_ENA(config_in->spi_ps_input_addr))
667 num_input_vgprs += 1;
668 }
669
670 unsigned num_vgprs = MAX2(config_in->num_vgprs, num_input_vgprs);
671 /* +3 for scratch wave offset and VCC */
672 unsigned num_sgprs = MAX2(config_in->num_sgprs, info->num_input_sgprs + 3);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200673
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200674 *config_out = *config_in;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200675 config_out->num_vgprs = num_vgprs;
676 config_out->num_sgprs = num_sgprs;
677
678 /* Enable 64-bit and 16-bit denormals, because there is no performance
679 * cost.
680 *
681 * If denormals are enabled, all floating-point output modifiers are
682 * ignored.
683 *
684 * Don't enable denormals for 32-bit floats, because:
685 * - Floating-point output modifiers would be ignored by the hw.
686 * - Some opcodes don't support denormals, such as v_mad_f32. We would
687 * have to stop using those.
688 * - GFX6 & GFX7 would be very slow.
689 */
690 config_out->float_mode |= V_00B028_FP_64_DENORMS;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200691
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200692 config_out->rsrc2 = S_00B12C_USER_SGPR(info->num_user_sgprs) |
Samuel Pitoiset352365c2019-06-25 15:45:20 +0200693 S_00B12C_SCRATCH_EN(scratch_enabled);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200694
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200695 config_out->rsrc1 = S_00B848_VGPRS((num_vgprs - 1) / 4) |
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200696 S_00B848_DX10_CLAMP(1) |
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200697 S_00B848_FLOAT_MODE(config_out->float_mode);
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200698
Samuel Pitoiset4c820942019-06-25 13:33:03 +0200699 if (pdevice->rad_info.chip_class >= GFX10) {
700 config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX10(info->num_user_sgprs >> 5);
701 } else {
702 config_out->rsrc1 |= S_00B228_SGPRS((num_sgprs - 1) / 8);
Samuel Pitoiset352365c2019-06-25 15:45:20 +0200703 config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX9(info->num_user_sgprs >> 5) |
704 S_00B12C_SO_BASE0_EN(!!info->info.so.strides[0]) |
705 S_00B12C_SO_BASE1_EN(!!info->info.so.strides[1]) |
706 S_00B12C_SO_BASE2_EN(!!info->info.so.strides[2]) |
707 S_00B12C_SO_BASE3_EN(!!info->info.so.strides[3]) |
708 S_00B12C_SO_EN(!!info->info.so.num_outputs);
Samuel Pitoiset4c820942019-06-25 13:33:03 +0200709 }
710
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200711 switch (stage) {
712 case MESA_SHADER_TESS_EVAL:
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200713 if (info->is_ngg) {
714 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
715 config_out->rsrc2 |= S_00B22C_OC_LDS_EN(1);
716 } else if (info->tes.as_es) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200717 assert(pdevice->rad_info.chip_class <= GFX8);
718 vgpr_comp_cnt = info->info.uses_prim_id ? 3 : 2;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200719
720 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200721 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200722 bool enable_prim_id = info->tes.export_prim_id || info->info.uses_prim_id;
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200723 vgpr_comp_cnt = enable_prim_id ? 3 : 2;
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200724
725 config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200726 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200727 }
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200728 break;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200729 case MESA_SHADER_TESS_CTRL:
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200730 if (pdevice->rad_info.chip_class >= GFX9) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200731 /* We need at least 2 components for LS.
732 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
733 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
734 */
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200735 if (pdevice->rad_info.chip_class >= GFX10) {
736 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 3 : 1;
737 } else {
738 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 2 : 1;
739 }
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200740 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200741 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200742 }
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200743 config_out->rsrc1 |= S_00B428_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200744 break;
745 case MESA_SHADER_VERTEX:
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200746 if (info->is_ngg) {
747 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
748 } else if (info->vs.as_ls) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200749 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200750 /* We need at least 2 components for LS.
751 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
752 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
753 */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200754 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 2 : 1;
755 } else if (info->vs.as_es) {
756 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200757 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200758 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 1 : 0;
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200759 } else {
760 /* VGPR0-3: (VertexID, InstanceID / StepRate0, PrimID, InstanceID)
761 * If PrimID is disabled. InstanceID / StepRate1 is loaded instead.
762 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
763 */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200764 if (info->vs.export_prim_id) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200765 vgpr_comp_cnt = 2;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200766 } else if (info->info.vs.needs_instance_id) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200767 vgpr_comp_cnt = 1;
768 } else {
769 vgpr_comp_cnt = 0;
770 }
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200771
772 config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200773 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200774 break;
775 case MESA_SHADER_FRAGMENT:
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200776 config_out->rsrc1 |= S_00B028_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
777 break;
Samuel Pitoisetf4d2c472019-06-26 15:11:01 +0200778 case MESA_SHADER_GEOMETRY:
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200779 config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200780 break;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200781 case MESA_SHADER_COMPUTE:
Bas Nieuwenhuizenaeb5b1a2019-07-06 12:31:25 +0200782 config_out->rsrc1 |= S_00B848_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200783 config_out->rsrc2 |=
784 S_00B84C_TGID_X_EN(info->info.cs.uses_block_id[0]) |
785 S_00B84C_TGID_Y_EN(info->info.cs.uses_block_id[1]) |
786 S_00B84C_TGID_Z_EN(info->info.cs.uses_block_id[2]) |
787 S_00B84C_TIDIG_COMP_CNT(info->info.cs.uses_thread_id[2] ? 2 :
788 info->info.cs.uses_thread_id[1] ? 1 : 0) |
789 S_00B84C_TG_SIZE_EN(info->info.cs.uses_local_invocation_idx) |
790 S_00B84C_LDS_SIZE(config_in->lds_size);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200791 break;
792 default:
793 unreachable("unsupported shader type");
794 break;
795 }
796
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200797 if (pdevice->rad_info.chip_class >= GFX10 &&
Samuel Pitoiset3f500072019-07-09 08:44:01 +0200798 (stage == MESA_SHADER_VERTEX || stage == MESA_SHADER_TESS_EVAL || stage == MESA_SHADER_GEOMETRY)) {
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200799 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
800
801 /* VGPR5-8: (VertexID, UserVGPR0, UserVGPR1, UserVGPR2 / InstanceID) */
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200802 if (stage == MESA_SHADER_VERTEX) {
803 es_vgpr_comp_cnt = info->info.vs.needs_instance_id ? 3 : 0;
804 } else if (stage == MESA_SHADER_TESS_EVAL) {
Samuel Pitoisetd2a8b632019-07-09 08:27:30 +0200805 bool enable_prim_id = info->tes.export_prim_id || info->info.uses_prim_id;
806 es_vgpr_comp_cnt = enable_prim_id ? 3 : 2;
Bas Nieuwenhuizen795adbb2019-07-08 23:44:32 +0200807 }
808
809 bool tes_triangles = stage == MESA_SHADER_TESS_EVAL &&
810 info->tes.primitive_mode >= 4; /* GL_TRIANGLES */
811 if (info->info.uses_invocation_id || stage == MESA_SHADER_VERTEX) {
812 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
813 } else if (info->info.uses_prim_id) {
814 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
815 } else if (info->gs.vertices_in >= 3 || tes_triangles) {
816 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
817 } else {
818 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
819 }
Samuel Pitoisetee21bd72019-07-05 08:33:06 +0200820
821 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt);
822 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
823 S_00B22C_LDS_SIZE(config_in->lds_size);
824 } else if (pdevice->rad_info.chip_class >= GFX9 &&
825 stage == MESA_SHADER_GEOMETRY) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200826 unsigned es_type = info->gs.es_type;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100827 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
828
829 if (es_type == MESA_SHADER_VERTEX) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200830 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200831 es_vgpr_comp_cnt = info->info.vs.needs_instance_id ? 1 : 0;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100832 } else if (es_type == MESA_SHADER_TESS_EVAL) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200833 es_vgpr_comp_cnt = info->info.uses_prim_id ? 3 : 2;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100834 } else {
Bas Nieuwenhuizen0f89f9b2018-01-17 23:23:02 +0100835 unreachable("invalid shader ES type");
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100836 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100837
838 /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and
839 * VGPR[0:4] are always loaded.
840 */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200841 if (info->info.uses_invocation_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100842 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200843 } else if (info->info.uses_prim_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100844 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200845 } else if (info->gs.vertices_in >= 3) {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100846 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200847 } else {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100848 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200849 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100850
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200851 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt);
852 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Bas Nieuwenhuizen74695162019-06-30 01:47:30 +0200853 S_00B22C_OC_LDS_EN(es_type == MESA_SHADER_TESS_EVAL);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200854 } else if (pdevice->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200855 stage == MESA_SHADER_TESS_CTRL) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200856 config_out->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200857 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200858 config_out->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200859 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200860}
861
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200862static void radv_init_llvm_target()
863{
864 LLVMInitializeAMDGPUTargetInfo();
865 LLVMInitializeAMDGPUTarget();
866 LLVMInitializeAMDGPUTargetMC();
867 LLVMInitializeAMDGPUAsmPrinter();
868
869 /* For inline assembly. */
870 LLVMInitializeAMDGPUAsmParser();
871
872 /* Workaround for bug in llvm 4.0 that causes image intrinsics
873 * to disappear.
874 * https://reviews.llvm.org/D26348
875 *
876 * Workaround for bug in llvm that causes the GPU to hang in presence
877 * of nested loops because there is an exec mask issue. The proper
878 * solution is to fix LLVM but this might require a bunch of work.
879 * https://bugs.llvm.org/show_bug.cgi?id=37744
880 *
881 * "mesa" is the prefix for error messages.
882 */
Samuel Pitoiset0a7e7672018-12-19 18:16:00 +0100883 if (HAVE_LLVM >= 0x0800) {
884 const char *argv[2] = { "mesa", "-simplifycfg-sink-common=false" };
885 LLVMParseCommandLineOptions(2, argv, NULL);
886
887 } else {
888 const char *argv[3] = { "mesa", "-simplifycfg-sink-common=false",
889 "-amdgpu-skip-threshold=1" };
890 LLVMParseCommandLineOptions(3, argv, NULL);
891 }
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200892}
893
894static once_flag radv_init_llvm_target_once_flag = ONCE_FLAG_INIT;
895
Dave Airlie473be162018-06-27 08:36:41 +1000896static void radv_init_llvm_once(void)
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200897{
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200898 call_once(&radv_init_llvm_target_once_flag, radv_init_llvm_target);
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200899}
900
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200901struct radv_shader_variant *
902radv_shader_variant_create(struct radv_device *device,
903 const struct radv_shader_binary *binary)
904{
905 struct ac_shader_config config = {0};
906 struct ac_rtld_binary rtld_binary = {0};
907 struct radv_shader_variant *variant = calloc(1, sizeof(struct radv_shader_variant));
908 if (!variant)
909 return NULL;
910
911 variant->ref_count = 1;
912
913 if (binary->type == RADV_BINARY_TYPE_RTLD) {
914 struct ac_rtld_symbol lds_symbols[1];
915 unsigned num_lds_symbols = 0;
916 const char *elf_data = (const char *)((struct radv_shader_binary_rtld *)binary)->data;
917 size_t elf_size = ((struct radv_shader_binary_rtld *)binary)->elf_size;
918
919 if (device->physical_device->rad_info.chip_class >= GFX9 &&
920 binary->stage == MESA_SHADER_GEOMETRY && !binary->is_gs_copy_shader) {
921 /* We add this symbol even on LLVM <= 8 to ensure that
922 * shader->config.lds_size is set correctly below.
923 */
924 struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++];
925 sym->name = "esgs_ring";
926 sym->size = 32 * 1024;
927 sym->align = 64 * 1024;
928 }
929 struct ac_rtld_open_info open_info = {
930 .info = &device->physical_device->rad_info,
931 .shader_type = binary->stage,
932 .num_parts = 1,
933 .elf_ptrs = &elf_data,
934 .elf_sizes = &elf_size,
935 .num_shared_lds_symbols = num_lds_symbols,
936 .shared_lds_symbols = lds_symbols,
937 };
938
939 if (!ac_rtld_open(&rtld_binary, open_info)) {
940 free(variant);
941 return NULL;
942 }
943
944 if (!ac_rtld_read_config(&rtld_binary, &config)) {
945 ac_rtld_close(&rtld_binary);
946 free(variant);
947 return NULL;
948 }
949
950 if (rtld_binary.lds_size > 0) {
951 unsigned alloc_granularity = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
952 config.lds_size = align(rtld_binary.lds_size, alloc_granularity) / alloc_granularity;
953 }
954
955 variant->code_size = rtld_binary.rx_size;
956 } else {
957 assert(binary->type == RADV_BINARY_TYPE_LEGACY);
958 config = ((struct radv_shader_binary_legacy *)binary)->config;
959 variant->code_size = radv_get_shader_binary_size(((struct radv_shader_binary_legacy *)binary)->code_size);
960 }
961
962 variant->info = binary->variant_info;
963 radv_postprocess_config(device->physical_device, &config, &binary->variant_info,
964 binary->stage, &variant->config);
965
966 void *dest_ptr = radv_alloc_shader_memory(device, variant);
967
968 if (binary->type == RADV_BINARY_TYPE_RTLD) {
969 struct radv_shader_binary_rtld* bin = (struct radv_shader_binary_rtld *)binary;
970 struct ac_rtld_upload_info info = {
971 .binary = &rtld_binary,
972 .rx_va = radv_buffer_get_va(variant->bo) + variant->bo_offset,
973 .rx_ptr = dest_ptr,
974 };
975
976 if (!ac_rtld_upload(&info)) {
977 radv_shader_variant_destroy(device, variant);
978 ac_rtld_close(&rtld_binary);
979 return NULL;
980 }
981
982 const char *disasm_data;
983 size_t disasm_size;
984 if (!ac_rtld_get_section_by_name(&rtld_binary, ".AMDGPU.disasm", &disasm_data, &disasm_size)) {
985 radv_shader_variant_destroy(device, variant);
986 ac_rtld_close(&rtld_binary);
987 return NULL;
988 }
989
990 variant->llvm_ir_string = bin->llvm_ir_size ? strdup((const char*)(bin->data + bin->elf_size)) : NULL;
991 variant->disasm_string = malloc(disasm_size + 1);
992 memcpy(variant->disasm_string, disasm_data, disasm_size);
993 variant->disasm_string[disasm_size] = 0;
994
995 ac_rtld_close(&rtld_binary);
996 } else {
997 struct radv_shader_binary_legacy* bin = (struct radv_shader_binary_legacy *)binary;
998 memcpy(dest_ptr, bin->data, bin->code_size);
999
1000 /* Add end-of-code markers for the UMR disassembler. */
1001 uint32_t *ptr32 = (uint32_t *)dest_ptr + bin->code_size / 4;
1002 for (unsigned i = 0; i < DEBUGGER_NUM_MARKERS; i++)
1003 ptr32[i] = DEBUGGER_END_OF_CODE_MARKER;
1004
1005 variant->llvm_ir_string = bin->llvm_ir_size ? strdup((const char*)(bin->data + bin->code_size)) : NULL;
1006 variant->disasm_string = bin->disasm_size ? strdup((const char*)(bin->data + bin->code_size + bin->llvm_ir_size)) : NULL;
1007 }
1008 return variant;
1009}
1010
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001011static struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001012shader_variant_compile(struct radv_device *device,
1013 struct radv_shader_module *module,
1014 struct nir_shader * const *shaders,
1015 int shader_count,
1016 gl_shader_stage stage,
1017 struct radv_nir_compiler_options *options,
1018 bool gs_copy_shader,
1019 struct radv_shader_binary **binary_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001020{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001021 enum radeon_family chip_family = device->physical_device->rad_info.family;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001022 enum ac_target_machine_options tm_options = 0;
Dave Airlie73989132018-06-27 09:27:03 +10001023 struct ac_llvm_compiler ac_llvm;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001024 struct radv_shader_binary *binary = NULL;
1025 struct radv_shader_variant_info variant_info = {0};
Dave Airlie6f3aee42018-06-27 11:34:25 +10001026 bool thread_compiler;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001027
Connor Abbott118a66d2019-05-10 10:44:20 +02001028 if (shaders[0]->info.stage == MESA_SHADER_FRAGMENT)
1029 lower_fs_io(shaders[0], &variant_info);
1030
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001031 options->family = chip_family;
1032 options->chip_class = device->physical_device->rad_info.chip_class;
Samuel Pitoiset8ade3e42018-05-11 16:36:02 +02001033 options->dump_shader = radv_can_dump_shader(device, module, gs_copy_shader);
Samuel Pitoisetd07edf52018-03-14 10:28:49 +01001034 options->dump_preoptir = options->dump_shader &&
Samuel Pitoiset33e6e5e2018-01-19 12:12:02 +01001035 device->instance->debug_flags & RADV_DEBUG_PREOPTIR;
Samuel Pitoiset81818662018-03-14 10:34:13 +01001036 options->record_llvm_ir = device->keep_shader_info;
Samuel Pitoisetbfca15e2018-06-14 14:28:58 +02001037 options->check_ir = device->instance->debug_flags & RADV_DEBUG_CHECKIR;
Dave Airlie010d0552018-02-19 07:14:04 +00001038 options->tess_offchip_block_dw_size = device->tess_offchip_block_dw_size;
Samuel Pitoisetd8a61d32018-05-16 16:02:04 +02001039 options->address32_hi = device->physical_device->rad_info.address32_hi;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001040
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001041 if (options->supports_spill)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001042 tm_options |= AC_TM_SUPPORTS_SPILL;
1043 if (device->instance->perftest_flags & RADV_PERFTEST_SISCHED)
1044 tm_options |= AC_TM_SISCHED;
Dave Airlie35c82af2018-07-03 09:44:22 +10001045 if (options->check_ir)
1046 tm_options |= AC_TM_CHECK_IR;
Samuel Pitoisetd7501832019-05-07 16:09:46 +02001047 if (device->instance->debug_flags & RADV_DEBUG_NO_LOAD_STORE_OPT)
1048 tm_options |= AC_TM_NO_LOAD_STORE_OPT;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001049
Dave Airlie6f3aee42018-06-27 11:34:25 +10001050 thread_compiler = !(device->instance->debug_flags & RADV_DEBUG_NOTHREADLLVM);
Dave Airlie473be162018-06-27 08:36:41 +10001051 radv_init_llvm_once();
Samuel Pitoiset3fbdcd92018-11-02 09:50:32 +01001052 radv_init_llvm_compiler(&ac_llvm,
Dave Airlie6f3aee42018-06-27 11:34:25 +10001053 thread_compiler,
1054 chip_family, tm_options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001055 if (gs_copy_shader) {
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +02001056 assert(shader_count == 1);
Dave Airlie73989132018-06-27 09:27:03 +10001057 radv_compile_gs_copy_shader(&ac_llvm, *shaders, &binary,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001058 &variant_info, options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001059 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001060 radv_compile_nir_shader(&ac_llvm, &binary, &variant_info,
1061 shaders, shader_count, options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001062 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001063 binary->variant_info = variant_info;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001064
Dave Airlie6f3aee42018-06-27 11:34:25 +10001065 radv_destroy_llvm_compiler(&ac_llvm, thread_compiler);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001066
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001067 struct radv_shader_variant *variant = radv_shader_variant_create(device, binary);
1068 if (!variant) {
1069 free(binary);
1070 return NULL;
1071 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001072
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +02001073 if (options->dump_shader) {
1074 fprintf(stderr, "disasm:\n%s\n", variant->disasm_string);
1075 }
1076
1077
Alex Smithde889792017-10-27 14:25:05 +01001078 if (device->keep_shader_info) {
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001079 if (!gs_copy_shader && !module->nir) {
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +02001080 variant->nir = *shaders;
Samuel Pitoiset844ae722017-09-22 16:56:40 +02001081 variant->spirv = (uint32_t *)module->data;
1082 variant->spirv_size = module->size;
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001083 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001084 }
1085
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001086 if (binary_out)
1087 *binary_out = binary;
1088 else
1089 free(binary);
1090
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001091 return variant;
1092}
1093
1094struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001095radv_shader_variant_compile(struct radv_device *device,
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001096 struct radv_shader_module *module,
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +02001097 struct nir_shader *const *shaders,
1098 int shader_count,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001099 struct radv_pipeline_layout *layout,
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001100 const struct radv_shader_variant_key *key,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001101 struct radv_shader_binary **binary_out)
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001102{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001103 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001104
1105 options.layout = layout;
1106 if (key)
1107 options.key = *key;
1108
Timothy Arceri7664aaf2017-10-11 11:59:20 +11001109 options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH);
Samuel Pitoiset1e86eaf2018-05-17 09:56:47 +02001110 options.supports_spill = true;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001111
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001112 return shader_variant_compile(device, module, shaders, shader_count, shaders[shader_count - 1]->info.stage,
1113 &options, false, binary_out);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001114}
1115
1116struct radv_shader_variant *
1117radv_create_gs_copy_shader(struct radv_device *device,
1118 struct nir_shader *shader,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001119 struct radv_shader_binary **binary_out,
Samuel Pitoiset47efc522017-09-01 12:09:56 +02001120 bool multiview)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001121{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +01001122 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +02001123
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001124 options.key.has_multiview_view_index = multiview;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001125
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +02001126 return shader_variant_compile(device, NULL, &shader, 1, MESA_SHADER_VERTEX,
1127 &options, true, binary_out);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001128}
1129
1130void
1131radv_shader_variant_destroy(struct radv_device *device,
1132 struct radv_shader_variant *variant)
1133{
1134 if (!p_atomic_dec_zero(&variant->ref_count))
1135 return;
1136
1137 mtx_lock(&device->shader_slab_mutex);
1138 list_del(&variant->slab_list);
1139 mtx_unlock(&device->shader_slab_mutex);
1140
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +02001141 ralloc_free(variant->nir);
Samuel Pitoiset885d7572017-09-01 13:45:33 +02001142 free(variant->disasm_string);
Samuel Pitoiset81818662018-03-14 10:34:13 +01001143 free(variant->llvm_ir_string);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001144 free(variant);
1145}
1146
Samuel Pitoisetd4d77732017-09-01 11:41:18 +02001147const char *
1148radv_get_shader_name(struct radv_shader_variant *var, gl_shader_stage stage)
1149{
1150 switch (stage) {
1151 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";
1152 case MESA_SHADER_GEOMETRY: return "Geometry Shader";
1153 case MESA_SHADER_FRAGMENT: return "Pixel Shader";
1154 case MESA_SHADER_COMPUTE: return "Compute Shader";
1155 case MESA_SHADER_TESS_CTRL: return "Tessellation Control Shader";
1156 case MESA_SHADER_TESS_EVAL: return var->info.tes.as_es ? "Tessellation Evaluation Shader as ES" : "Tessellation Evaluation Shader as VS";
1157 default:
1158 return "Unknown shader";
1159 };
1160}
1161
Alex Smithde889792017-10-27 14:25:05 +01001162static void
1163generate_shader_stats(struct radv_device *device,
1164 struct radv_shader_variant *variant,
1165 gl_shader_stage stage,
1166 struct _mesa_string_buffer *buf)
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001167{
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001168 enum chip_class chip_class = device->physical_device->rad_info.chip_class;
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001169 unsigned lds_increment = chip_class >= GFX7 ? 512 : 256;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001170 struct ac_shader_config *conf;
1171 unsigned max_simd_waves;
1172 unsigned lds_per_wave = 0;
1173
Dave Airlief77caa72018-04-23 10:16:07 +10001174 max_simd_waves = ac_get_max_simd_waves(device->physical_device->rad_info.family);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001175
1176 conf = &variant->config;
1177
1178 if (stage == MESA_SHADER_FRAGMENT) {
1179 lds_per_wave = conf->lds_size * lds_increment +
1180 align(variant->info.fs.num_interp * 48,
1181 lds_increment);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001182 } else if (stage == MESA_SHADER_COMPUTE) {
1183 unsigned max_workgroup_size =
Samuel Pitoiset5e7f8002019-02-01 15:30:31 +01001184 radv_nir_get_max_workgroup_size(chip_class, variant->nir);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001185 lds_per_wave = (conf->lds_size * lds_increment) /
1186 DIV_ROUND_UP(max_workgroup_size, 64);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001187 }
1188
Alex Smithde889792017-10-27 14:25:05 +01001189 if (conf->num_sgprs)
Samuel Pitoiset2f7bb932018-04-06 14:06:24 +02001190 max_simd_waves =
1191 MIN2(max_simd_waves,
Timothy Arceri9b9ccee2019-02-01 22:04:39 +11001192 ac_get_num_physical_sgprs(chip_class) / conf->num_sgprs);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001193
1194 if (conf->num_vgprs)
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001195 max_simd_waves =
1196 MIN2(max_simd_waves,
1197 RADV_NUM_PHYSICAL_VGPRS / conf->num_vgprs);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001198
1199 /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD
1200 * that PS can use.
1201 */
1202 if (lds_per_wave)
1203 max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave);
1204
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001205 if (stage == MESA_SHADER_FRAGMENT) {
Alex Smithde889792017-10-27 14:25:05 +01001206 _mesa_string_buffer_printf(buf, "*** SHADER CONFIG ***\n"
1207 "SPI_PS_INPUT_ADDR = 0x%04x\n"
1208 "SPI_PS_INPUT_ENA = 0x%04x\n",
1209 conf->spi_ps_input_addr, conf->spi_ps_input_ena);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001210 }
1211
Alex Smithde889792017-10-27 14:25:05 +01001212 _mesa_string_buffer_printf(buf, "*** SHADER STATS ***\n"
1213 "SGPRS: %d\n"
1214 "VGPRS: %d\n"
1215 "Spilled SGPRs: %d\n"
1216 "Spilled VGPRs: %d\n"
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001217 "PrivMem VGPRS: %d\n"
Alex Smithde889792017-10-27 14:25:05 +01001218 "Code Size: %d bytes\n"
1219 "LDS: %d blocks\n"
1220 "Scratch: %d bytes per wave\n"
1221 "Max Waves: %d\n"
1222 "********************\n\n\n",
1223 conf->num_sgprs, conf->num_vgprs,
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001224 conf->spilled_sgprs, conf->spilled_vgprs,
1225 variant->info.private_mem_vgprs, variant->code_size,
Alex Smithde889792017-10-27 14:25:05 +01001226 conf->lds_size, conf->scratch_bytes_per_wave,
1227 max_simd_waves);
1228}
1229
1230void
1231radv_shader_dump_stats(struct radv_device *device,
1232 struct radv_shader_variant *variant,
1233 gl_shader_stage stage,
1234 FILE *file)
1235{
1236 struct _mesa_string_buffer *buf = _mesa_string_buffer_create(NULL, 256);
1237
1238 generate_shader_stats(device, variant, stage, buf);
1239
1240 fprintf(file, "\n%s:\n", radv_get_shader_name(variant, stage));
Alex Smith134a40d2017-10-30 08:38:14 +00001241 fprintf(file, "%s", buf->buf);
Alex Smithde889792017-10-27 14:25:05 +01001242
1243 _mesa_string_buffer_destroy(buf);
1244}
1245
1246VkResult
1247radv_GetShaderInfoAMD(VkDevice _device,
1248 VkPipeline _pipeline,
1249 VkShaderStageFlagBits shaderStage,
1250 VkShaderInfoTypeAMD infoType,
1251 size_t* pInfoSize,
1252 void* pInfo)
1253{
1254 RADV_FROM_HANDLE(radv_device, device, _device);
1255 RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline);
1256 gl_shader_stage stage = vk_to_mesa_shader_stage(shaderStage);
1257 struct radv_shader_variant *variant = pipeline->shaders[stage];
1258 struct _mesa_string_buffer *buf;
1259 VkResult result = VK_SUCCESS;
1260
1261 /* Spec doesn't indicate what to do if the stage is invalid, so just
1262 * return no info for this. */
1263 if (!variant)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +02001264 return vk_error(device->instance, VK_ERROR_FEATURE_NOT_PRESENT);
Alex Smithde889792017-10-27 14:25:05 +01001265
1266 switch (infoType) {
1267 case VK_SHADER_INFO_TYPE_STATISTICS_AMD:
1268 if (!pInfo) {
1269 *pInfoSize = sizeof(VkShaderStatisticsInfoAMD);
1270 } else {
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001271 unsigned lds_multiplier = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
Alex Smithde889792017-10-27 14:25:05 +01001272 struct ac_shader_config *conf = &variant->config;
1273
1274 VkShaderStatisticsInfoAMD statistics = {};
1275 statistics.shaderStageMask = shaderStage;
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001276 statistics.numPhysicalVgprs = RADV_NUM_PHYSICAL_VGPRS;
Timothy Arceria53d68d2019-02-01 21:16:54 +11001277 statistics.numPhysicalSgprs = ac_get_num_physical_sgprs(device->physical_device->rad_info.chip_class);
Alex Smithde889792017-10-27 14:25:05 +01001278 statistics.numAvailableSgprs = statistics.numPhysicalSgprs;
1279
1280 if (stage == MESA_SHADER_COMPUTE) {
1281 unsigned *local_size = variant->nir->info.cs.local_size;
1282 unsigned workgroup_size = local_size[0] * local_size[1] * local_size[2];
1283
1284 statistics.numAvailableVgprs = statistics.numPhysicalVgprs /
Eric Engestromd85fef12018-06-15 17:49:08 +01001285 ceil((double)workgroup_size / statistics.numPhysicalVgprs);
Alex Smithde889792017-10-27 14:25:05 +01001286
1287 statistics.computeWorkGroupSize[0] = local_size[0];
1288 statistics.computeWorkGroupSize[1] = local_size[1];
1289 statistics.computeWorkGroupSize[2] = local_size[2];
1290 } else {
1291 statistics.numAvailableVgprs = statistics.numPhysicalVgprs;
1292 }
1293
1294 statistics.resourceUsage.numUsedVgprs = conf->num_vgprs;
1295 statistics.resourceUsage.numUsedSgprs = conf->num_sgprs;
1296 statistics.resourceUsage.ldsSizePerLocalWorkGroup = 32768;
1297 statistics.resourceUsage.ldsUsageSizeInBytes = conf->lds_size * lds_multiplier;
1298 statistics.resourceUsage.scratchMemUsageInBytes = conf->scratch_bytes_per_wave;
1299
1300 size_t size = *pInfoSize;
1301 *pInfoSize = sizeof(statistics);
1302
1303 memcpy(pInfo, &statistics, MIN2(size, *pInfoSize));
1304
1305 if (size < *pInfoSize)
1306 result = VK_INCOMPLETE;
1307 }
1308
1309 break;
1310 case VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD:
1311 buf = _mesa_string_buffer_create(NULL, 1024);
1312
1313 _mesa_string_buffer_printf(buf, "%s:\n", radv_get_shader_name(variant, stage));
Nicolai Hähnle8c97abc2018-11-07 12:10:21 +01001314 _mesa_string_buffer_printf(buf, "%s\n\n", variant->llvm_ir_string);
Alex Smithde889792017-10-27 14:25:05 +01001315 _mesa_string_buffer_printf(buf, "%s\n\n", variant->disasm_string);
1316 generate_shader_stats(device, variant, stage, buf);
1317
1318 /* Need to include the null terminator. */
1319 size_t length = buf->length + 1;
1320
1321 if (!pInfo) {
1322 *pInfoSize = length;
1323 } else {
1324 size_t size = *pInfoSize;
1325 *pInfoSize = length;
1326
1327 memcpy(pInfo, buf->buf, MIN2(size, length));
1328
1329 if (size < length)
1330 result = VK_INCOMPLETE;
1331 }
1332
1333 _mesa_string_buffer_destroy(buf);
1334 break;
1335 default:
1336 /* VK_SHADER_INFO_TYPE_BINARY_AMD unimplemented for now. */
1337 result = VK_ERROR_FEATURE_NOT_PRESENT;
1338 break;
1339 }
1340
1341 return result;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001342}