blob: 3e2966b78564556119fceedc67e68b98aa731d45 [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,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020079 .max_unroll_iterations = 32
80};
81
82VkResult radv_CreateShaderModule(
83 VkDevice _device,
84 const VkShaderModuleCreateInfo* pCreateInfo,
85 const VkAllocationCallbacks* pAllocator,
86 VkShaderModule* pShaderModule)
87{
88 RADV_FROM_HANDLE(radv_device, device, _device);
89 struct radv_shader_module *module;
90
91 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO);
92 assert(pCreateInfo->flags == 0);
93
94 module = vk_alloc2(&device->alloc, pAllocator,
95 sizeof(*module) + pCreateInfo->codeSize, 8,
96 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
97 if (module == NULL)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +020098 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +020099
100 module->nir = NULL;
101 module->size = pCreateInfo->codeSize;
102 memcpy(module->data, pCreateInfo->pCode, module->size);
103
104 _mesa_sha1_compute(module->data, module->size, module->sha1);
105
106 *pShaderModule = radv_shader_module_to_handle(module);
107
108 return VK_SUCCESS;
109}
110
111void radv_DestroyShaderModule(
112 VkDevice _device,
113 VkShaderModule _module,
114 const VkAllocationCallbacks* pAllocator)
115{
116 RADV_FROM_HANDLE(radv_device, device, _device);
117 RADV_FROM_HANDLE(radv_shader_module, module, _module);
118
119 if (!module)
120 return;
121
122 vk_free2(&device->alloc, pAllocator, module);
123}
124
Bas Nieuwenhuizen06f05042017-02-09 00:12:10 +0100125void
Timothy Arceri06675712018-10-18 09:42:17 +1100126radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively,
127 bool allow_copies)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200128{
129 bool progress;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700130 unsigned lower_flrp =
131 (shader->options->lower_flrp16 ? 16 : 0) |
132 (shader->options->lower_flrp32 ? 32 : 0) |
133 (shader->options->lower_flrp64 ? 64 : 0);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200134
135 do {
136 progress = false;
137
Karol Herbst9b240282019-01-16 00:05:04 +0100138 NIR_PASS(progress, shader, nir_split_array_vars, nir_var_function_temp);
139 NIR_PASS(progress, shader, nir_shrink_vec_array_vars, nir_var_function_temp);
Timothy Arceri8086fa12018-10-18 10:19:16 +1100140
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200141 NIR_PASS_V(shader, nir_lower_vars_to_ssa);
Iago Toral Quiroga2d648e52018-04-27 09:28:48 +0200142 NIR_PASS_V(shader, nir_lower_pack);
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100143
Timothy Arceri06675712018-10-18 09:42:17 +1100144 if (allow_copies) {
145 /* Only run this pass in the first call to
146 * radv_optimize_nir. Later calls assume that we've
147 * lowered away any copy_deref instructions and we
148 * don't want to introduce any more.
149 */
150 NIR_PASS(progress, shader, nir_opt_find_array_copies);
151 }
152
Timothy Arceri9d5b1062018-10-18 08:55:46 +1100153 NIR_PASS(progress, shader, nir_opt_copy_prop_vars);
154 NIR_PASS(progress, shader, nir_opt_dead_write_vars);
155
Jonathan Marekd0bff892019-05-08 12:45:48 -0400156 NIR_PASS_V(shader, nir_lower_alu_to_scalar, NULL);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200157 NIR_PASS_V(shader, nir_lower_phis_to_scalar);
158
159 NIR_PASS(progress, shader, nir_copy_prop);
160 NIR_PASS(progress, shader, nir_opt_remove_phis);
161 NIR_PASS(progress, shader, nir_opt_dce);
162 if (nir_opt_trivial_continues(shader)) {
163 progress = true;
164 NIR_PASS(progress, shader, nir_copy_prop);
Dave Airlie64d9bd12017-09-13 03:49:31 +0100165 NIR_PASS(progress, shader, nir_opt_remove_phis);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200166 NIR_PASS(progress, shader, nir_opt_dce);
167 }
Timothy Arcerie30804c2019-04-08 20:13:49 +1000168 NIR_PASS(progress, shader, nir_opt_if, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200169 NIR_PASS(progress, shader, nir_opt_dead_cf);
170 NIR_PASS(progress, shader, nir_opt_cse);
Ian Romanick378f9962018-06-18 16:11:55 -0700171 NIR_PASS(progress, shader, nir_opt_peephole_select, 8, true, true);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200172 NIR_PASS(progress, shader, nir_opt_constant_folding);
Timothy Arcerie19a8fe2019-05-02 13:38:52 +1000173 NIR_PASS(progress, shader, nir_opt_algebraic);
Ian Romanickd41cdef2018-08-18 16:42:04 -0700174
175 if (lower_flrp != 0) {
Ian Romanick1f1007a2019-05-08 07:32:43 -0700176 bool lower_flrp_progress = false;
Ian Romanickd41cdef2018-08-18 16:42:04 -0700177 NIR_PASS(lower_flrp_progress,
178 shader,
179 nir_lower_flrp,
180 lower_flrp,
181 false /* always_precise */,
182 shader->options->lower_ffma);
183 if (lower_flrp_progress) {
184 NIR_PASS(progress, shader,
185 nir_opt_constant_folding);
186 progress = true;
187 }
188
189 /* Nothing should rematerialize any flrps, so we only
190 * need to do this lowering once.
191 */
192 lower_flrp = 0;
193 }
194
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200195 NIR_PASS(progress, shader, nir_opt_undef);
196 NIR_PASS(progress, shader, nir_opt_conditional_discard);
197 if (shader->options->max_unroll_iterations) {
198 NIR_PASS(progress, shader, nir_opt_loop_unroll, 0);
199 }
Timothy Arcerice188812018-05-08 14:57:55 +1000200 } while (progress && !optimize_conservatively);
Samuel Pitoiset3488a3f2018-01-29 17:19:18 +0100201
202 NIR_PASS(progress, shader, nir_opt_shrink_load);
Samuel Pitoisete96a1d22018-03-08 15:31:14 +0100203 NIR_PASS(progress, shader, nir_opt_move_load_ubo);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200204}
205
206nir_shader *
207radv_shader_compile_to_nir(struct radv_device *device,
208 struct radv_shader_module *module,
209 const char *entrypoint_name,
210 gl_shader_stage stage,
Timothy Arcerice188812018-05-08 14:57:55 +1000211 const VkSpecializationInfo *spec_info,
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100212 const VkPipelineCreateFlags flags,
213 const struct radv_pipeline_layout *layout)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200214{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200215 nir_shader *nir;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200216 if (module->nir) {
217 /* Some things such as our meta clear/blit code will give us a NIR
218 * shader directly. In that case, we just ignore the SPIR-V entirely
219 * and just use the NIR shader */
220 nir = module->nir;
221 nir->options = &nir_options;
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500222 nir_validate_shader(nir, "in internal shader");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200223
224 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200225 } else {
226 uint32_t *spirv = (uint32_t *) module->data;
227 assert(module->size % 4 == 0);
228
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100229 if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV)
Samuel Pitoiset844ae722017-09-22 16:56:40 +0200230 radv_print_spirv(spirv, module->size, stderr);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200231
232 uint32_t num_spec_entries = 0;
233 struct nir_spirv_specialization *spec_entries = NULL;
234 if (spec_info && spec_info->mapEntryCount > 0) {
235 num_spec_entries = spec_info->mapEntryCount;
236 spec_entries = malloc(num_spec_entries * sizeof(*spec_entries));
237 for (uint32_t i = 0; i < num_spec_entries; i++) {
238 VkSpecializationMapEntry entry = spec_info->pMapEntries[i];
239 const void *data = spec_info->pData + entry.offset;
240 assert(data + entry.size <= spec_info->pData + spec_info->dataSize);
241
242 spec_entries[i].id = spec_info->pMapEntries[i].constantID;
243 if (spec_info->dataSize == 8)
244 spec_entries[i].data64 = *(const uint64_t *)data;
245 else
246 spec_entries[i].data32 = *(const uint32_t *)data;
247 }
248 }
Jason Ekstrande19c6232017-10-18 17:28:19 -0700249 const struct spirv_to_nir_options spirv_options = {
Jason Ekstrand63b9aa22018-12-14 18:36:01 -0600250 .lower_ubo_ssbo_access_to_offsets = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700251 .caps = {
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200252 .amd_gcn_shader = true,
Daniel Schürmannc58dff72018-05-09 20:43:16 +0200253 .amd_shader_ballot = device->instance->perftest_flags & RADV_PERFTEST_SHADER_BALLOT,
Daniel Schürmann7a858f22018-05-09 20:41:23 +0200254 .amd_trinary_minmax = true,
Samuel Pitoisetb3e34402019-04-19 12:40:37 +0200255 .derivative_group = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600256 .descriptor_array_dynamic_indexing = true,
Juan A. Suarez Romero06c9d7f2019-04-29 17:05:13 +0200257 .descriptor_array_non_uniform_indexing = true,
258 .descriptor_indexing = true,
Bas Nieuwenhuizen5240fdd2018-01-21 17:13:26 +0100259 .device_group = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700260 .draw_parameters = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200261 .float16 = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700262 .float64 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600263 .geometry_streams = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700264 .image_read_without_format = true,
265 .image_write_without_format = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200266 .int8 = true,
Samuel Pitoiset08103c52018-09-14 12:52:40 +0200267 .int16 = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600268 .int64 = true,
Samuel Pitoiset9cf55b02019-04-16 10:38:24 +0200269 .int64_atomics = true,
Jason Ekstrande19c6232017-10-18 17:28:19 -0700270 .multiview = true,
Bas Nieuwenhuizen13ab63b2019-01-24 02:06:27 +0100271 .physical_storage_buffer_address = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600272 .runtime_descriptor_array = true,
273 .shader_viewport_index_layer = true,
274 .stencil_export = true,
Samuel Pitoisetecbe6cb2019-04-16 09:13:37 +0200275 .storage_8bit = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600276 .storage_16bit = true,
277 .storage_image_ms = true,
Samuel Pitoiset35656822018-09-18 15:27:52 +0200278 .subgroup_arithmetic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100279 .subgroup_ballot = true,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100280 .subgroup_basic = true,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100281 .subgroup_quad = true,
282 .subgroup_shuffle = true,
283 .subgroup_vote = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600284 .tessellation = true,
Samuel Pitoisetb4eb0292018-10-05 18:04:56 +0200285 .transform_feedback = true,
Jason Ekstrand05d72d62019-01-07 10:28:23 -0600286 .variable_pointers = true,
Daniel Schürmannffbf75c2018-02-23 13:55:01 +0100287 },
Caio Marcelo de Oliveira Filho31a74762019-05-01 14:15:32 -0700288 .ubo_addr_format = nir_address_format_32bit_index_offset,
289 .ssbo_addr_format = nir_address_format_32bit_index_offset,
290 .phys_ssbo_addr_format = nir_address_format_64bit_global,
291 .push_const_addr_format = nir_address_format_logical,
292 .shared_addr_format = nir_address_format_32bit_offset,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200293 };
Caio Marcelo de Oliveira Filhoe45bf012019-05-19 00:22:17 -0700294 nir = spirv_to_nir(spirv, module->size / 4,
295 spec_entries, num_spec_entries,
296 stage, entrypoint_name,
297 &spirv_options, &nir_options);
Jason Ekstrand59fb59a2017-09-14 19:52:38 -0700298 assert(nir->info.stage == stage);
Jason Ekstrand28bb6ab2018-10-18 15:18:30 -0500299 nir_validate_shader(nir, "after spirv_to_nir");
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200300
301 free(spec_entries);
302
303 /* We have to lower away local constant initializers right before we
304 * inline functions. That way they get properly initialized at the top
305 * of the function and not at the top of its caller.
306 */
Karol Herbst9b240282019-01-16 00:05:04 +0100307 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_function_temp);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200308 NIR_PASS_V(nir, nir_lower_returns);
309 NIR_PASS_V(nir, nir_inline_functions);
Jason Ekstrandfc9c4f82018-12-13 11:08:13 -0600310 NIR_PASS_V(nir, nir_opt_deref);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200311
312 /* Pick off the single entrypoint that we want */
313 foreach_list_typed_safe(nir_function, func, node, &nir->functions) {
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700314 if (func->is_entrypoint)
315 func->name = ralloc_strdup(func, "main");
316 else
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200317 exec_node_remove(&func->node);
318 }
319 assert(exec_list_length(&nir->functions) == 1);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200320
Dave Airliee8d9b7a2018-03-19 04:27:49 +0000321 /* Make sure we lower constant initializers on output variables so that
322 * nir_remove_dead_variables below sees the corresponding stores
323 */
324 NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_shader_out);
325
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200326 /* Now that we've deleted all but the main function, we can go ahead and
327 * lower the rest of the constant initializers.
328 */
329 NIR_PASS_V(nir, nir_lower_constant_initializers, ~0);
Jason Ekstrandb0c643d2018-03-21 17:30:22 -0700330
331 /* Split member structs. We do this before lower_io_to_temporaries so that
332 * it doesn't lower system values to temporaries by accident.
333 */
334 NIR_PASS_V(nir, nir_split_var_copies);
335 NIR_PASS_V(nir, nir_split_per_member_structs);
336
Samuel Pitoiset24ee5322018-08-22 12:34:13 +0200337 NIR_PASS_V(nir, nir_remove_dead_variables,
338 nir_var_shader_in | nir_var_shader_out | nir_var_system_value);
339
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200340 NIR_PASS_V(nir, nir_lower_system_values);
341 NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays);
Bas Nieuwenhuizen5c3467e2019-03-30 14:28:06 +0100342 NIR_PASS_V(nir, radv_nir_lower_ycbcr_textures, layout);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200343 }
344
345 /* Vulkan uses the separate-shader linking model */
346 nir->info.separate_shader = true;
347
Caio Marcelo de Oliveira Filhoa3bfdac2019-05-19 00:11:37 -0700348 nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir));
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200349
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200350 static const nir_lower_tex_options tex_options = {
351 .lower_txp = ~0,
Jason Ekstrand08f804e2019-03-19 13:55:21 -0500352 .lower_tg4_offsets = true,
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200353 };
354
355 nir_lower_tex(nir, &tex_options);
356
357 nir_lower_vars_to_ssa(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200358
Samuel Pitoiset38a8c592018-05-23 14:31:56 +0200359 if (nir->info.stage == MESA_SHADER_VERTEX ||
360 nir->info.stage == MESA_SHADER_GEOMETRY) {
361 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
362 nir_shader_get_entrypoint(nir), true, true);
363 } else if (nir->info.stage == MESA_SHADER_TESS_EVAL||
364 nir->info.stage == MESA_SHADER_FRAGMENT) {
365 NIR_PASS_V(nir, nir_lower_io_to_temporaries,
366 nir_shader_get_entrypoint(nir), true, false);
367 }
368
Samuel Pitoisetded15092018-05-23 14:31:55 +0200369 nir_split_var_copies(nir);
Samuel Pitoisetded15092018-05-23 14:31:55 +0200370
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200371 nir_lower_global_vars_to_local(nir);
Karol Herbst9b240282019-01-16 00:05:04 +0100372 nir_remove_dead_variables(nir, nir_var_function_temp);
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100373 nir_lower_subgroups(nir, &(struct nir_lower_subgroups_options) {
374 .subgroup_size = 64,
375 .ballot_bit_size = 64,
376 .lower_to_scalar = 1,
377 .lower_subgroup_masks = 1,
378 .lower_shuffle = 1,
Daniel Schürmannf2c6a552018-03-06 15:05:13 +0100379 .lower_shuffle_to_32bit = 1,
380 .lower_vote_eq_to_ballot = 1,
Bas Nieuwenhuizen8f9af582018-01-21 15:06:10 +0100381 });
382
Timothy Arceri72e42872018-09-24 18:18:48 +1000383 nir_lower_load_const_to_scalar(nir);
384
Timothy Arcerice188812018-05-08 14:57:55 +1000385 if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT))
Timothy Arceri06675712018-10-18 09:42:17 +1100386 radv_optimize_nir(nir, false, true);
387
388 /* We call nir_lower_var_copies() after the first radv_optimize_nir()
389 * to remove any copies introduced by nir_opt_find_array_copies().
390 */
391 nir_lower_var_copies(nir);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200392
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100393 /* Indirect lowering must be called after the radv_optimize_nir() loop
394 * has been called at least once. Otherwise indirect lowering can
395 * bloat the instruction count of the loop and cause it to be
396 * considered too large for unrolling.
397 */
398 ac_lower_indirect_derefs(nir, device->physical_device->rad_info.chip_class);
Timothy Arceri06675712018-10-18 09:42:17 +1100399 radv_optimize_nir(nir, flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, false);
Timothy Arceri9a243ec2018-03-08 16:20:48 +1100400
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200401 return nir;
402}
403
404void *
405radv_alloc_shader_memory(struct radv_device *device,
406 struct radv_shader_variant *shader)
407{
408 mtx_lock(&device->shader_slab_mutex);
409 list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
410 uint64_t offset = 0;
411 list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) {
412 if (s->bo_offset - offset >= shader->code_size) {
413 shader->bo = slab->bo;
414 shader->bo_offset = offset;
415 list_addtail(&shader->slab_list, &s->slab_list);
416 mtx_unlock(&device->shader_slab_mutex);
417 return slab->ptr + offset;
418 }
419 offset = align_u64(s->bo_offset + s->code_size, 256);
420 }
421 if (slab->size - offset >= shader->code_size) {
422 shader->bo = slab->bo;
423 shader->bo_offset = offset;
424 list_addtail(&shader->slab_list, &slab->shaders);
425 mtx_unlock(&device->shader_slab_mutex);
426 return slab->ptr + offset;
427 }
428 }
429
430 mtx_unlock(&device->shader_slab_mutex);
431 struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab));
432
433 slab->size = 256 * 1024;
434 slab->bo = device->ws->buffer_create(device->ws, slab->size, 256,
Samuel Pitoiseta3c2a862018-01-04 15:19:47 +0100435 RADEON_DOMAIN_VRAM,
436 RADEON_FLAG_NO_INTERPROCESS_SHARING |
Danylo Piliaiev494a2062018-07-18 11:47:19 +0300437 (device->physical_device->cpdma_prefetch_writes_memory ?
Bas Nieuwenhuizenead54d42019-01-28 00:28:05 +0100438 0 : RADEON_FLAG_READ_ONLY),
439 RADV_BO_PRIORITY_SHADER);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200440 slab->ptr = (char*)device->ws->buffer_map(slab->bo);
441 list_inithead(&slab->shaders);
442
443 mtx_lock(&device->shader_slab_mutex);
444 list_add(&slab->slabs, &device->shader_slabs);
445
446 shader->bo = slab->bo;
447 shader->bo_offset = 0;
448 list_add(&shader->slab_list, &slab->shaders);
449 mtx_unlock(&device->shader_slab_mutex);
450 return slab->ptr;
451}
452
453void
454radv_destroy_shader_slabs(struct radv_device *device)
455{
456 list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) {
457 device->ws->buffer_destroy(slab->bo);
458 free(slab);
459 }
460 mtx_destroy(&device->shader_slab_mutex);
461}
462
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200463/* For the UMR disassembler. */
464#define DEBUGGER_END_OF_CODE_MARKER 0xbf9f0000 /* invalid instruction */
465#define DEBUGGER_NUM_MARKERS 5
466
467static unsigned
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200468radv_get_shader_binary_size(size_t code_size)
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200469{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200470 return code_size + DEBUGGER_NUM_MARKERS * 4;
Samuel Pitoiset939e5a32018-06-27 10:39:51 +0200471}
472
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200473static void radv_postprocess_config(const struct radv_physical_device *pdevice,
474 const struct ac_shader_config *config_in,
475 const struct radv_shader_variant_info *info,
476 gl_shader_stage stage,
477 struct ac_shader_config *config_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200478{
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200479 bool scratch_enabled = config_in->scratch_bytes_per_wave > 0;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200480 unsigned vgpr_comp_cnt = 0;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200481 unsigned num_input_vgprs = info->num_input_vgprs;
482
483 if (stage == MESA_SHADER_FRAGMENT) {
484 num_input_vgprs = 0;
485 if (G_0286CC_PERSP_SAMPLE_ENA(config_in->spi_ps_input_addr))
486 num_input_vgprs += 2;
487 if (G_0286CC_PERSP_CENTER_ENA(config_in->spi_ps_input_addr))
488 num_input_vgprs += 2;
489 if (G_0286CC_PERSP_CENTROID_ENA(config_in->spi_ps_input_addr))
490 num_input_vgprs += 2;
491 if (G_0286CC_PERSP_PULL_MODEL_ENA(config_in->spi_ps_input_addr))
492 num_input_vgprs += 3;
493 if (G_0286CC_LINEAR_SAMPLE_ENA(config_in->spi_ps_input_addr))
494 num_input_vgprs += 2;
495 if (G_0286CC_LINEAR_CENTER_ENA(config_in->spi_ps_input_addr))
496 num_input_vgprs += 2;
497 if (G_0286CC_LINEAR_CENTROID_ENA(config_in->spi_ps_input_addr))
498 num_input_vgprs += 2;
499 if (G_0286CC_LINE_STIPPLE_TEX_ENA(config_in->spi_ps_input_addr))
500 num_input_vgprs += 1;
501 if (G_0286CC_POS_X_FLOAT_ENA(config_in->spi_ps_input_addr))
502 num_input_vgprs += 1;
503 if (G_0286CC_POS_Y_FLOAT_ENA(config_in->spi_ps_input_addr))
504 num_input_vgprs += 1;
505 if (G_0286CC_POS_Z_FLOAT_ENA(config_in->spi_ps_input_addr))
506 num_input_vgprs += 1;
507 if (G_0286CC_POS_W_FLOAT_ENA(config_in->spi_ps_input_addr))
508 num_input_vgprs += 1;
509 if (G_0286CC_FRONT_FACE_ENA(config_in->spi_ps_input_addr))
510 num_input_vgprs += 1;
511 if (G_0286CC_ANCILLARY_ENA(config_in->spi_ps_input_addr))
512 num_input_vgprs += 1;
513 if (G_0286CC_SAMPLE_COVERAGE_ENA(config_in->spi_ps_input_addr))
514 num_input_vgprs += 1;
515 if (G_0286CC_POS_FIXED_PT_ENA(config_in->spi_ps_input_addr))
516 num_input_vgprs += 1;
517 }
518
519 unsigned num_vgprs = MAX2(config_in->num_vgprs, num_input_vgprs);
520 /* +3 for scratch wave offset and VCC */
521 unsigned num_sgprs = MAX2(config_in->num_sgprs, info->num_input_sgprs + 3);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200522
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200523 *config_out = *config_in;
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200524 config_out->num_vgprs = num_vgprs;
525 config_out->num_sgprs = num_sgprs;
526
527 /* Enable 64-bit and 16-bit denormals, because there is no performance
528 * cost.
529 *
530 * If denormals are enabled, all floating-point output modifiers are
531 * ignored.
532 *
533 * Don't enable denormals for 32-bit floats, because:
534 * - Floating-point output modifiers would be ignored by the hw.
535 * - Some opcodes don't support denormals, such as v_mad_f32. We would
536 * have to stop using those.
537 * - GFX6 & GFX7 would be very slow.
538 */
539 config_out->float_mode |= V_00B028_FP_64_DENORMS;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200540
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200541 config_out->rsrc2 = S_00B12C_USER_SGPR(info->num_user_sgprs) |
542 S_00B12C_USER_SGPR_MSB_GFX9(info->num_user_sgprs >> 5) |
543 S_00B12C_SCRATCH_EN(scratch_enabled) |
544 S_00B12C_SO_BASE0_EN(!!info->info.so.strides[0]) |
545 S_00B12C_SO_BASE1_EN(!!info->info.so.strides[1]) |
546 S_00B12C_SO_BASE2_EN(!!info->info.so.strides[2]) |
547 S_00B12C_SO_BASE3_EN(!!info->info.so.strides[3]) |
548 S_00B12C_SO_EN(!!info->info.so.num_outputs);
549
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200550 config_out->rsrc1 = S_00B848_VGPRS((num_vgprs - 1) / 4) |
551 S_00B848_SGPRS((num_sgprs - 1) / 8) |
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200552 S_00B848_DX10_CLAMP(1) |
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200553 S_00B848_FLOAT_MODE(config_out->float_mode);
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200554
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200555 switch (stage) {
556 case MESA_SHADER_TESS_EVAL:
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200557 if (info->tes.as_es) {
558 assert(pdevice->rad_info.chip_class <= GFX8);
559 vgpr_comp_cnt = info->info.uses_prim_id ? 3 : 2;
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200560 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200561 bool enable_prim_id = info->tes.export_prim_id || info->info.uses_prim_id;
Samuel Pitoisetb4477fa2019-06-26 15:11:00 +0200562 vgpr_comp_cnt = enable_prim_id ? 3 : 2;
563 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200564 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Bas Nieuwenhuizen228325f2017-10-18 00:59:16 +0200565 break;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200566 case MESA_SHADER_TESS_CTRL:
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200567 if (pdevice->rad_info.chip_class >= GFX9) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200568 /* We need at least 2 components for LS.
569 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
570 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
571 */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200572 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 2 : 1;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200573 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200574 config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200575 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200576 break;
577 case MESA_SHADER_VERTEX:
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200578 if (info->vs.as_ls) {
579 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200580 /* We need at least 2 components for LS.
581 * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID).
582 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
583 */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200584 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 2 : 1;
585 } else if (info->vs.as_es) {
586 assert(pdevice->rad_info.chip_class <= GFX8);
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200587 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200588 vgpr_comp_cnt = info->info.vs.needs_instance_id ? 1 : 0;
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200589 } else {
590 /* VGPR0-3: (VertexID, InstanceID / StepRate0, PrimID, InstanceID)
591 * If PrimID is disabled. InstanceID / StepRate1 is loaded instead.
592 * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded.
593 */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200594 if (info->vs.export_prim_id) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200595 vgpr_comp_cnt = 2;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200596 } else if (info->info.vs.needs_instance_id) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200597 vgpr_comp_cnt = 1;
598 } else {
599 vgpr_comp_cnt = 0;
600 }
601 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200602 break;
603 case MESA_SHADER_FRAGMENT:
Samuel Pitoisetf4d2c472019-06-26 15:11:01 +0200604 case MESA_SHADER_GEOMETRY:
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200605 break;
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200606 case MESA_SHADER_COMPUTE:
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200607 config_out->rsrc2 |=
608 S_00B84C_TGID_X_EN(info->info.cs.uses_block_id[0]) |
609 S_00B84C_TGID_Y_EN(info->info.cs.uses_block_id[1]) |
610 S_00B84C_TGID_Z_EN(info->info.cs.uses_block_id[2]) |
611 S_00B84C_TIDIG_COMP_CNT(info->info.cs.uses_thread_id[2] ? 2 :
612 info->info.cs.uses_thread_id[1] ? 1 : 0) |
613 S_00B84C_TG_SIZE_EN(info->info.cs.uses_local_invocation_idx) |
614 S_00B84C_LDS_SIZE(config_in->lds_size);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200615 break;
616 default:
617 unreachable("unsupported shader type");
618 break;
619 }
620
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200621 if (pdevice->rad_info.chip_class >= GFX9 &&
Bas Nieuwenhuizen73749ca2017-10-20 02:24:24 +0200622 stage == MESA_SHADER_GEOMETRY) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200623 unsigned es_type = info->gs.es_type;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100624 unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt;
625
626 if (es_type == MESA_SHADER_VERTEX) {
Samuel Pitoisetd8b079e2019-06-26 15:11:03 +0200627 /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200628 es_vgpr_comp_cnt = info->info.vs.needs_instance_id ? 1 : 0;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100629 } else if (es_type == MESA_SHADER_TESS_EVAL) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200630 es_vgpr_comp_cnt = info->info.uses_prim_id ? 3 : 2;
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100631 } else {
Bas Nieuwenhuizen0f89f9b2018-01-17 23:23:02 +0100632 unreachable("invalid shader ES type");
Samuel Pitoiset4e701cf2018-01-09 16:01:10 +0100633 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100634
635 /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and
636 * VGPR[0:4] are always loaded.
637 */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200638 if (info->info.uses_invocation_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100639 gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200640 } else if (info->info.uses_prim_id) {
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100641 gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200642 } else if (info->gs.vertices_in >= 3) {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100643 gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200644 } else {
Samuel Pitoisetb462ceb2018-01-05 17:18:52 +0100645 gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200646 }
Samuel Pitoiset2670ebb2017-12-20 20:56:57 +0100647
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200648 config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt);
649 config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) |
Bas Nieuwenhuizen74695162019-06-30 01:47:30 +0200650 S_00B22C_OC_LDS_EN(es_type == MESA_SHADER_TESS_EVAL);
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200651 } else if (pdevice->rad_info.chip_class >= GFX9 &&
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200652 stage == MESA_SHADER_TESS_CTRL) {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200653 config_out->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200654 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200655 config_out->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt);
Samuel Pitoiset3a410f02018-05-11 09:46:46 +0200656 }
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200657}
658
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200659static void radv_init_llvm_target()
660{
661 LLVMInitializeAMDGPUTargetInfo();
662 LLVMInitializeAMDGPUTarget();
663 LLVMInitializeAMDGPUTargetMC();
664 LLVMInitializeAMDGPUAsmPrinter();
665
666 /* For inline assembly. */
667 LLVMInitializeAMDGPUAsmParser();
668
669 /* Workaround for bug in llvm 4.0 that causes image intrinsics
670 * to disappear.
671 * https://reviews.llvm.org/D26348
672 *
673 * Workaround for bug in llvm that causes the GPU to hang in presence
674 * of nested loops because there is an exec mask issue. The proper
675 * solution is to fix LLVM but this might require a bunch of work.
676 * https://bugs.llvm.org/show_bug.cgi?id=37744
677 *
678 * "mesa" is the prefix for error messages.
679 */
Samuel Pitoiset0a7e7672018-12-19 18:16:00 +0100680 if (HAVE_LLVM >= 0x0800) {
681 const char *argv[2] = { "mesa", "-simplifycfg-sink-common=false" };
682 LLVMParseCommandLineOptions(2, argv, NULL);
683
684 } else {
685 const char *argv[3] = { "mesa", "-simplifycfg-sink-common=false",
686 "-amdgpu-skip-threshold=1" };
687 LLVMParseCommandLineOptions(3, argv, NULL);
688 }
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200689}
690
691static once_flag radv_init_llvm_target_once_flag = ONCE_FLAG_INIT;
692
Dave Airlie473be162018-06-27 08:36:41 +1000693static void radv_init_llvm_once(void)
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200694{
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200695 call_once(&radv_init_llvm_target_once_flag, radv_init_llvm_target);
Samuel Pitoiset135e4d42018-06-08 11:38:01 +0200696}
697
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200698struct radv_shader_variant *
699radv_shader_variant_create(struct radv_device *device,
700 const struct radv_shader_binary *binary)
701{
702 struct ac_shader_config config = {0};
703 struct ac_rtld_binary rtld_binary = {0};
704 struct radv_shader_variant *variant = calloc(1, sizeof(struct radv_shader_variant));
705 if (!variant)
706 return NULL;
707
708 variant->ref_count = 1;
709
710 if (binary->type == RADV_BINARY_TYPE_RTLD) {
711 struct ac_rtld_symbol lds_symbols[1];
712 unsigned num_lds_symbols = 0;
713 const char *elf_data = (const char *)((struct radv_shader_binary_rtld *)binary)->data;
714 size_t elf_size = ((struct radv_shader_binary_rtld *)binary)->elf_size;
715
716 if (device->physical_device->rad_info.chip_class >= GFX9 &&
717 binary->stage == MESA_SHADER_GEOMETRY && !binary->is_gs_copy_shader) {
718 /* We add this symbol even on LLVM <= 8 to ensure that
719 * shader->config.lds_size is set correctly below.
720 */
721 struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++];
722 sym->name = "esgs_ring";
723 sym->size = 32 * 1024;
724 sym->align = 64 * 1024;
725 }
726 struct ac_rtld_open_info open_info = {
727 .info = &device->physical_device->rad_info,
728 .shader_type = binary->stage,
729 .num_parts = 1,
730 .elf_ptrs = &elf_data,
731 .elf_sizes = &elf_size,
732 .num_shared_lds_symbols = num_lds_symbols,
733 .shared_lds_symbols = lds_symbols,
734 };
735
736 if (!ac_rtld_open(&rtld_binary, open_info)) {
737 free(variant);
738 return NULL;
739 }
740
741 if (!ac_rtld_read_config(&rtld_binary, &config)) {
742 ac_rtld_close(&rtld_binary);
743 free(variant);
744 return NULL;
745 }
746
747 if (rtld_binary.lds_size > 0) {
748 unsigned alloc_granularity = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
749 config.lds_size = align(rtld_binary.lds_size, alloc_granularity) / alloc_granularity;
750 }
751
752 variant->code_size = rtld_binary.rx_size;
753 } else {
754 assert(binary->type == RADV_BINARY_TYPE_LEGACY);
755 config = ((struct radv_shader_binary_legacy *)binary)->config;
756 variant->code_size = radv_get_shader_binary_size(((struct radv_shader_binary_legacy *)binary)->code_size);
757 }
758
759 variant->info = binary->variant_info;
760 radv_postprocess_config(device->physical_device, &config, &binary->variant_info,
761 binary->stage, &variant->config);
762
763 void *dest_ptr = radv_alloc_shader_memory(device, variant);
764
765 if (binary->type == RADV_BINARY_TYPE_RTLD) {
766 struct radv_shader_binary_rtld* bin = (struct radv_shader_binary_rtld *)binary;
767 struct ac_rtld_upload_info info = {
768 .binary = &rtld_binary,
769 .rx_va = radv_buffer_get_va(variant->bo) + variant->bo_offset,
770 .rx_ptr = dest_ptr,
771 };
772
773 if (!ac_rtld_upload(&info)) {
774 radv_shader_variant_destroy(device, variant);
775 ac_rtld_close(&rtld_binary);
776 return NULL;
777 }
778
779 const char *disasm_data;
780 size_t disasm_size;
781 if (!ac_rtld_get_section_by_name(&rtld_binary, ".AMDGPU.disasm", &disasm_data, &disasm_size)) {
782 radv_shader_variant_destroy(device, variant);
783 ac_rtld_close(&rtld_binary);
784 return NULL;
785 }
786
787 variant->llvm_ir_string = bin->llvm_ir_size ? strdup((const char*)(bin->data + bin->elf_size)) : NULL;
788 variant->disasm_string = malloc(disasm_size + 1);
789 memcpy(variant->disasm_string, disasm_data, disasm_size);
790 variant->disasm_string[disasm_size] = 0;
791
792 ac_rtld_close(&rtld_binary);
793 } else {
794 struct radv_shader_binary_legacy* bin = (struct radv_shader_binary_legacy *)binary;
795 memcpy(dest_ptr, bin->data, bin->code_size);
796
797 /* Add end-of-code markers for the UMR disassembler. */
798 uint32_t *ptr32 = (uint32_t *)dest_ptr + bin->code_size / 4;
799 for (unsigned i = 0; i < DEBUGGER_NUM_MARKERS; i++)
800 ptr32[i] = DEBUGGER_END_OF_CODE_MARKER;
801
802 variant->llvm_ir_string = bin->llvm_ir_size ? strdup((const char*)(bin->data + bin->code_size)) : NULL;
803 variant->disasm_string = bin->disasm_size ? strdup((const char*)(bin->data + bin->code_size + bin->llvm_ir_size)) : NULL;
804 }
805 return variant;
806}
807
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200808static struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200809shader_variant_compile(struct radv_device *device,
810 struct radv_shader_module *module,
811 struct nir_shader * const *shaders,
812 int shader_count,
813 gl_shader_stage stage,
814 struct radv_nir_compiler_options *options,
815 bool gs_copy_shader,
816 struct radv_shader_binary **binary_out)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200817{
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200818 enum radeon_family chip_family = device->physical_device->rad_info.family;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200819 enum ac_target_machine_options tm_options = 0;
Dave Airlie73989132018-06-27 09:27:03 +1000820 struct ac_llvm_compiler ac_llvm;
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200821 struct radv_shader_binary *binary = NULL;
822 struct radv_shader_variant_info variant_info = {0};
Dave Airlie6f3aee42018-06-27 11:34:25 +1000823 bool thread_compiler;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200824
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200825 options->family = chip_family;
826 options->chip_class = device->physical_device->rad_info.chip_class;
Samuel Pitoiset8ade3e42018-05-11 16:36:02 +0200827 options->dump_shader = radv_can_dump_shader(device, module, gs_copy_shader);
Samuel Pitoisetd07edf52018-03-14 10:28:49 +0100828 options->dump_preoptir = options->dump_shader &&
Samuel Pitoiset33e6e5e2018-01-19 12:12:02 +0100829 device->instance->debug_flags & RADV_DEBUG_PREOPTIR;
Samuel Pitoiset81818662018-03-14 10:34:13 +0100830 options->record_llvm_ir = device->keep_shader_info;
Samuel Pitoisetbfca15e2018-06-14 14:28:58 +0200831 options->check_ir = device->instance->debug_flags & RADV_DEBUG_CHECKIR;
Dave Airlie010d0552018-02-19 07:14:04 +0000832 options->tess_offchip_block_dw_size = device->tess_offchip_block_dw_size;
Samuel Pitoisetd8a61d32018-05-16 16:02:04 +0200833 options->address32_hi = device->physical_device->rad_info.address32_hi;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200834
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200835 if (options->supports_spill)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200836 tm_options |= AC_TM_SUPPORTS_SPILL;
837 if (device->instance->perftest_flags & RADV_PERFTEST_SISCHED)
838 tm_options |= AC_TM_SISCHED;
Dave Airlie35c82af2018-07-03 09:44:22 +1000839 if (options->check_ir)
840 tm_options |= AC_TM_CHECK_IR;
Samuel Pitoisetd7501832019-05-07 16:09:46 +0200841 if (device->instance->debug_flags & RADV_DEBUG_NO_LOAD_STORE_OPT)
842 tm_options |= AC_TM_NO_LOAD_STORE_OPT;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200843
Dave Airlie6f3aee42018-06-27 11:34:25 +1000844 thread_compiler = !(device->instance->debug_flags & RADV_DEBUG_NOTHREADLLVM);
Dave Airlie473be162018-06-27 08:36:41 +1000845 radv_init_llvm_once();
Samuel Pitoiset3fbdcd92018-11-02 09:50:32 +0100846 radv_init_llvm_compiler(&ac_llvm,
Dave Airlie6f3aee42018-06-27 11:34:25 +1000847 thread_compiler,
848 chip_family, tm_options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200849 if (gs_copy_shader) {
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200850 assert(shader_count == 1);
Dave Airlie73989132018-06-27 09:27:03 +1000851 radv_compile_gs_copy_shader(&ac_llvm, *shaders, &binary,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200852 &variant_info, options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200853 } else {
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200854 radv_compile_nir_shader(&ac_llvm, &binary, &variant_info,
855 shaders, shader_count, options);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200856 }
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200857 binary->variant_info = variant_info;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200858
Dave Airlie6f3aee42018-06-27 11:34:25 +1000859 radv_destroy_llvm_compiler(&ac_llvm, thread_compiler);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200860
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200861 struct radv_shader_variant *variant = radv_shader_variant_create(device, binary);
862 if (!variant) {
863 free(binary);
864 return NULL;
865 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200866
Bas Nieuwenhuizen5ff651c2019-07-01 02:19:13 +0200867 if (options->dump_shader) {
868 fprintf(stderr, "disasm:\n%s\n", variant->disasm_string);
869 }
870
871
Alex Smithde889792017-10-27 14:25:05 +0100872 if (device->keep_shader_info) {
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200873 if (!gs_copy_shader && !module->nir) {
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200874 variant->nir = *shaders;
Samuel Pitoiset844ae722017-09-22 16:56:40 +0200875 variant->spirv = (uint32_t *)module->data;
876 variant->spirv_size = module->size;
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200877 }
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200878 }
879
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200880 if (binary_out)
881 *binary_out = binary;
882 else
883 free(binary);
884
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200885 return variant;
886}
887
888struct radv_shader_variant *
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200889radv_shader_variant_compile(struct radv_device *device,
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200890 struct radv_shader_module *module,
Bas Nieuwenhuizence03c112017-10-16 13:18:02 +0200891 struct nir_shader *const *shaders,
892 int shader_count,
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200893 struct radv_pipeline_layout *layout,
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100894 const struct radv_shader_variant_key *key,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200895 struct radv_shader_binary **binary_out)
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200896{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100897 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200898
899 options.layout = layout;
900 if (key)
901 options.key = *key;
902
Timothy Arceri7664aaf2017-10-11 11:59:20 +1100903 options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH);
Samuel Pitoiset1e86eaf2018-05-17 09:56:47 +0200904 options.supports_spill = true;
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200905
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200906 return shader_variant_compile(device, module, shaders, shader_count, shaders[shader_count - 1]->info.stage,
907 &options, false, binary_out);
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200908}
909
910struct radv_shader_variant *
911radv_create_gs_copy_shader(struct radv_device *device,
912 struct nir_shader *shader,
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200913 struct radv_shader_binary **binary_out,
Samuel Pitoiset47efc522017-09-01 12:09:56 +0200914 bool multiview)
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200915{
Samuel Pitoisetfbe69452018-03-13 14:54:04 +0100916 struct radv_nir_compiler_options options = {0};
Samuel Pitoiset92db23f2017-09-01 16:51:12 +0200917
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200918 options.key.has_multiview_view_index = multiview;
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200919
Bas Nieuwenhuizen726a31d2019-07-01 01:29:24 +0200920 return shader_variant_compile(device, NULL, &shader, 1, MESA_SHADER_VERTEX,
921 &options, true, binary_out);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200922}
923
924void
925radv_shader_variant_destroy(struct radv_device *device,
926 struct radv_shader_variant *variant)
927{
928 if (!p_atomic_dec_zero(&variant->ref_count))
929 return;
930
931 mtx_lock(&device->shader_slab_mutex);
932 list_del(&variant->slab_list);
933 mtx_unlock(&device->shader_slab_mutex);
934
Samuel Pitoiseta2a350a2017-09-22 16:44:08 +0200935 ralloc_free(variant->nir);
Samuel Pitoiset885d7572017-09-01 13:45:33 +0200936 free(variant->disasm_string);
Samuel Pitoiset81818662018-03-14 10:34:13 +0100937 free(variant->llvm_ir_string);
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200938 free(variant);
939}
940
Samuel Pitoisetd4d77732017-09-01 11:41:18 +0200941const char *
942radv_get_shader_name(struct radv_shader_variant *var, gl_shader_stage stage)
943{
944 switch (stage) {
945 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";
946 case MESA_SHADER_GEOMETRY: return "Geometry Shader";
947 case MESA_SHADER_FRAGMENT: return "Pixel Shader";
948 case MESA_SHADER_COMPUTE: return "Compute Shader";
949 case MESA_SHADER_TESS_CTRL: return "Tessellation Control Shader";
950 case MESA_SHADER_TESS_EVAL: return var->info.tes.as_es ? "Tessellation Evaluation Shader as ES" : "Tessellation Evaluation Shader as VS";
951 default:
952 return "Unknown shader";
953 };
954}
955
Alex Smithde889792017-10-27 14:25:05 +0100956static void
957generate_shader_stats(struct radv_device *device,
958 struct radv_shader_variant *variant,
959 gl_shader_stage stage,
960 struct _mesa_string_buffer *buf)
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200961{
Timothy Arceri9b9ccee2019-02-01 22:04:39 +1100962 enum chip_class chip_class = device->physical_device->rad_info.chip_class;
Marek Olšákccfcb9d2019-05-14 22:16:20 -0400963 unsigned lds_increment = chip_class >= GFX7 ? 512 : 256;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200964 struct ac_shader_config *conf;
965 unsigned max_simd_waves;
966 unsigned lds_per_wave = 0;
967
Dave Airlief77caa72018-04-23 10:16:07 +1000968 max_simd_waves = ac_get_max_simd_waves(device->physical_device->rad_info.family);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200969
970 conf = &variant->config;
971
972 if (stage == MESA_SHADER_FRAGMENT) {
973 lds_per_wave = conf->lds_size * lds_increment +
974 align(variant->info.fs.num_interp * 48,
975 lds_increment);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +1100976 } else if (stage == MESA_SHADER_COMPUTE) {
977 unsigned max_workgroup_size =
Samuel Pitoiset5e7f8002019-02-01 15:30:31 +0100978 radv_nir_get_max_workgroup_size(chip_class, variant->nir);
Timothy Arceri9b9ccee2019-02-01 22:04:39 +1100979 lds_per_wave = (conf->lds_size * lds_increment) /
980 DIV_ROUND_UP(max_workgroup_size, 64);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200981 }
982
Alex Smithde889792017-10-27 14:25:05 +0100983 if (conf->num_sgprs)
Samuel Pitoiset2f7bb932018-04-06 14:06:24 +0200984 max_simd_waves =
985 MIN2(max_simd_waves,
Timothy Arceri9b9ccee2019-02-01 22:04:39 +1100986 ac_get_num_physical_sgprs(chip_class) / conf->num_sgprs);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200987
988 if (conf->num_vgprs)
Samuel Pitoiset466aba92018-04-06 14:10:34 +0200989 max_simd_waves =
990 MIN2(max_simd_waves,
991 RADV_NUM_PHYSICAL_VGPRS / conf->num_vgprs);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200992
993 /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD
994 * that PS can use.
995 */
996 if (lds_per_wave)
997 max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave);
998
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +0200999 if (stage == MESA_SHADER_FRAGMENT) {
Alex Smithde889792017-10-27 14:25:05 +01001000 _mesa_string_buffer_printf(buf, "*** SHADER CONFIG ***\n"
1001 "SPI_PS_INPUT_ADDR = 0x%04x\n"
1002 "SPI_PS_INPUT_ENA = 0x%04x\n",
1003 conf->spi_ps_input_addr, conf->spi_ps_input_ena);
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001004 }
1005
Alex Smithde889792017-10-27 14:25:05 +01001006 _mesa_string_buffer_printf(buf, "*** SHADER STATS ***\n"
1007 "SGPRS: %d\n"
1008 "VGPRS: %d\n"
1009 "Spilled SGPRs: %d\n"
1010 "Spilled VGPRs: %d\n"
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001011 "PrivMem VGPRS: %d\n"
Alex Smithde889792017-10-27 14:25:05 +01001012 "Code Size: %d bytes\n"
1013 "LDS: %d blocks\n"
1014 "Scratch: %d bytes per wave\n"
1015 "Max Waves: %d\n"
1016 "********************\n\n\n",
1017 conf->num_sgprs, conf->num_vgprs,
Samuel Pitoisete96e6f62018-03-01 22:12:56 +01001018 conf->spilled_sgprs, conf->spilled_vgprs,
1019 variant->info.private_mem_vgprs, variant->code_size,
Alex Smithde889792017-10-27 14:25:05 +01001020 conf->lds_size, conf->scratch_bytes_per_wave,
1021 max_simd_waves);
1022}
1023
1024void
1025radv_shader_dump_stats(struct radv_device *device,
1026 struct radv_shader_variant *variant,
1027 gl_shader_stage stage,
1028 FILE *file)
1029{
1030 struct _mesa_string_buffer *buf = _mesa_string_buffer_create(NULL, 256);
1031
1032 generate_shader_stats(device, variant, stage, buf);
1033
1034 fprintf(file, "\n%s:\n", radv_get_shader_name(variant, stage));
Alex Smith134a40d2017-10-30 08:38:14 +00001035 fprintf(file, "%s", buf->buf);
Alex Smithde889792017-10-27 14:25:05 +01001036
1037 _mesa_string_buffer_destroy(buf);
1038}
1039
1040VkResult
1041radv_GetShaderInfoAMD(VkDevice _device,
1042 VkPipeline _pipeline,
1043 VkShaderStageFlagBits shaderStage,
1044 VkShaderInfoTypeAMD infoType,
1045 size_t* pInfoSize,
1046 void* pInfo)
1047{
1048 RADV_FROM_HANDLE(radv_device, device, _device);
1049 RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline);
1050 gl_shader_stage stage = vk_to_mesa_shader_stage(shaderStage);
1051 struct radv_shader_variant *variant = pipeline->shaders[stage];
1052 struct _mesa_string_buffer *buf;
1053 VkResult result = VK_SUCCESS;
1054
1055 /* Spec doesn't indicate what to do if the stage is invalid, so just
1056 * return no info for this. */
1057 if (!variant)
Bas Nieuwenhuizen38933c12018-05-31 01:06:41 +02001058 return vk_error(device->instance, VK_ERROR_FEATURE_NOT_PRESENT);
Alex Smithde889792017-10-27 14:25:05 +01001059
1060 switch (infoType) {
1061 case VK_SHADER_INFO_TYPE_STATISTICS_AMD:
1062 if (!pInfo) {
1063 *pInfoSize = sizeof(VkShaderStatisticsInfoAMD);
1064 } else {
Marek Olšákccfcb9d2019-05-14 22:16:20 -04001065 unsigned lds_multiplier = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256;
Alex Smithde889792017-10-27 14:25:05 +01001066 struct ac_shader_config *conf = &variant->config;
1067
1068 VkShaderStatisticsInfoAMD statistics = {};
1069 statistics.shaderStageMask = shaderStage;
Samuel Pitoiset466aba92018-04-06 14:10:34 +02001070 statistics.numPhysicalVgprs = RADV_NUM_PHYSICAL_VGPRS;
Timothy Arceria53d68d2019-02-01 21:16:54 +11001071 statistics.numPhysicalSgprs = ac_get_num_physical_sgprs(device->physical_device->rad_info.chip_class);
Alex Smithde889792017-10-27 14:25:05 +01001072 statistics.numAvailableSgprs = statistics.numPhysicalSgprs;
1073
1074 if (stage == MESA_SHADER_COMPUTE) {
1075 unsigned *local_size = variant->nir->info.cs.local_size;
1076 unsigned workgroup_size = local_size[0] * local_size[1] * local_size[2];
1077
1078 statistics.numAvailableVgprs = statistics.numPhysicalVgprs /
Eric Engestromd85fef12018-06-15 17:49:08 +01001079 ceil((double)workgroup_size / statistics.numPhysicalVgprs);
Alex Smithde889792017-10-27 14:25:05 +01001080
1081 statistics.computeWorkGroupSize[0] = local_size[0];
1082 statistics.computeWorkGroupSize[1] = local_size[1];
1083 statistics.computeWorkGroupSize[2] = local_size[2];
1084 } else {
1085 statistics.numAvailableVgprs = statistics.numPhysicalVgprs;
1086 }
1087
1088 statistics.resourceUsage.numUsedVgprs = conf->num_vgprs;
1089 statistics.resourceUsage.numUsedSgprs = conf->num_sgprs;
1090 statistics.resourceUsage.ldsSizePerLocalWorkGroup = 32768;
1091 statistics.resourceUsage.ldsUsageSizeInBytes = conf->lds_size * lds_multiplier;
1092 statistics.resourceUsage.scratchMemUsageInBytes = conf->scratch_bytes_per_wave;
1093
1094 size_t size = *pInfoSize;
1095 *pInfoSize = sizeof(statistics);
1096
1097 memcpy(pInfo, &statistics, MIN2(size, *pInfoSize));
1098
1099 if (size < *pInfoSize)
1100 result = VK_INCOMPLETE;
1101 }
1102
1103 break;
1104 case VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD:
1105 buf = _mesa_string_buffer_create(NULL, 1024);
1106
1107 _mesa_string_buffer_printf(buf, "%s:\n", radv_get_shader_name(variant, stage));
Nicolai Hähnle8c97abc2018-11-07 12:10:21 +01001108 _mesa_string_buffer_printf(buf, "%s\n\n", variant->llvm_ir_string);
Alex Smithde889792017-10-27 14:25:05 +01001109 _mesa_string_buffer_printf(buf, "%s\n\n", variant->disasm_string);
1110 generate_shader_stats(device, variant, stage, buf);
1111
1112 /* Need to include the null terminator. */
1113 size_t length = buf->length + 1;
1114
1115 if (!pInfo) {
1116 *pInfoSize = length;
1117 } else {
1118 size_t size = *pInfoSize;
1119 *pInfoSize = length;
1120
1121 memcpy(pInfo, buf->buf, MIN2(size, length));
1122
1123 if (size < length)
1124 result = VK_INCOMPLETE;
1125 }
1126
1127 _mesa_string_buffer_destroy(buf);
1128 break;
1129 default:
1130 /* VK_SHADER_INFO_TYPE_BINARY_AMD unimplemented for now. */
1131 result = VK_ERROR_FEATURE_NOT_PRESENT;
1132 break;
1133 }
1134
1135 return result;
Samuel Pitoiset80b8d9f2017-09-05 15:34:07 +02001136}