Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1 | /* |
| 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 Airlie | 6f3aee4 | 2018-06-27 11:34:25 +1000 | [diff] [blame] | 33 | #include "radv_shader_helper.h" |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 34 | #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 Pitoiset | 135e4d4 | 2018-06-08 11:38:01 +0200 | [diff] [blame] | 40 | #include <llvm-c/Support.h> |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 41 | |
| 42 | #include "sid.h" |
| 43 | #include "gfx9d.h" |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 44 | #include "ac_binary.h" |
| 45 | #include "ac_llvm_util.h" |
| 46 | #include "ac_nir_to_llvm.h" |
| 47 | #include "vk_format.h" |
| 48 | #include "util/debug.h" |
| 49 | #include "ac_exp_param.h" |
| 50 | |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 51 | #include "util/string_buffer.h" |
| 52 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 53 | static const struct nir_shader_compiler_options nir_options = { |
| 54 | .vertex_id_zero_based = true, |
| 55 | .lower_scmp = true, |
Rhys Perry | 0af95f0 | 2018-12-06 14:01:15 +0000 | [diff] [blame] | 56 | .lower_flrp16 = true, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 57 | .lower_flrp32 = true, |
Timothy Arceri | f0d74ec | 2018-01-12 11:12:09 +1100 | [diff] [blame] | 58 | .lower_flrp64 = true, |
Bas Nieuwenhuizen | 5240fdd | 2018-01-21 17:13:26 +0100 | [diff] [blame] | 59 | .lower_device_index_to_zero = true, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 60 | .lower_fsat = true, |
| 61 | .lower_fdiv = true, |
| 62 | .lower_sub = true, |
| 63 | .lower_pack_snorm_2x16 = true, |
| 64 | .lower_pack_snorm_4x8 = true, |
| 65 | .lower_pack_unorm_2x16 = true, |
| 66 | .lower_pack_unorm_4x8 = true, |
| 67 | .lower_unpack_snorm_2x16 = true, |
| 68 | .lower_unpack_snorm_4x8 = true, |
| 69 | .lower_unpack_unorm_2x16 = true, |
| 70 | .lower_unpack_unorm_4x8 = true, |
| 71 | .lower_extract_byte = true, |
| 72 | .lower_extract_word = true, |
Dave Airlie | 2c61594 | 2017-10-04 06:33:02 +1000 | [diff] [blame] | 73 | .lower_ffma = true, |
Samuel Pitoiset | 7aa008d | 2018-02-02 19:04:57 +0100 | [diff] [blame] | 74 | .lower_fpow = true, |
Samuel Pitoiset | 71ffa00 | 2019-03-06 22:35:31 +0100 | [diff] [blame] | 75 | .lower_mul_2x32_64 = true, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 76 | .max_unroll_iterations = 32 |
| 77 | }; |
| 78 | |
| 79 | VkResult radv_CreateShaderModule( |
| 80 | VkDevice _device, |
| 81 | const VkShaderModuleCreateInfo* pCreateInfo, |
| 82 | const VkAllocationCallbacks* pAllocator, |
| 83 | VkShaderModule* pShaderModule) |
| 84 | { |
| 85 | RADV_FROM_HANDLE(radv_device, device, _device); |
| 86 | struct radv_shader_module *module; |
| 87 | |
| 88 | assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO); |
| 89 | assert(pCreateInfo->flags == 0); |
| 90 | |
| 91 | module = vk_alloc2(&device->alloc, pAllocator, |
| 92 | sizeof(*module) + pCreateInfo->codeSize, 8, |
| 93 | VK_SYSTEM_ALLOCATION_SCOPE_OBJECT); |
| 94 | if (module == NULL) |
Bas Nieuwenhuizen | 38933c1 | 2018-05-31 01:06:41 +0200 | [diff] [blame] | 95 | return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 96 | |
| 97 | module->nir = NULL; |
| 98 | module->size = pCreateInfo->codeSize; |
| 99 | memcpy(module->data, pCreateInfo->pCode, module->size); |
| 100 | |
| 101 | _mesa_sha1_compute(module->data, module->size, module->sha1); |
| 102 | |
| 103 | *pShaderModule = radv_shader_module_to_handle(module); |
| 104 | |
| 105 | return VK_SUCCESS; |
| 106 | } |
| 107 | |
| 108 | void radv_DestroyShaderModule( |
| 109 | VkDevice _device, |
| 110 | VkShaderModule _module, |
| 111 | const VkAllocationCallbacks* pAllocator) |
| 112 | { |
| 113 | RADV_FROM_HANDLE(radv_device, device, _device); |
| 114 | RADV_FROM_HANDLE(radv_shader_module, module, _module); |
| 115 | |
| 116 | if (!module) |
| 117 | return; |
| 118 | |
| 119 | vk_free2(&device->alloc, pAllocator, module); |
| 120 | } |
| 121 | |
Bas Nieuwenhuizen | 06f0504 | 2017-02-09 00:12:10 +0100 | [diff] [blame] | 122 | void |
Timothy Arceri | 0667571 | 2018-10-18 09:42:17 +1100 | [diff] [blame] | 123 | radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively, |
| 124 | bool allow_copies) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 125 | { |
| 126 | bool progress; |
| 127 | |
| 128 | do { |
| 129 | progress = false; |
| 130 | |
Karol Herbst | 9b24028 | 2019-01-16 00:05:04 +0100 | [diff] [blame] | 131 | NIR_PASS(progress, shader, nir_split_array_vars, nir_var_function_temp); |
| 132 | NIR_PASS(progress, shader, nir_shrink_vec_array_vars, nir_var_function_temp); |
Timothy Arceri | 8086fa1 | 2018-10-18 10:19:16 +1100 | [diff] [blame] | 133 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 134 | NIR_PASS_V(shader, nir_lower_vars_to_ssa); |
Iago Toral Quiroga | 2d648e5 | 2018-04-27 09:28:48 +0200 | [diff] [blame] | 135 | NIR_PASS_V(shader, nir_lower_pack); |
Timothy Arceri | 9d5b106 | 2018-10-18 08:55:46 +1100 | [diff] [blame] | 136 | |
Timothy Arceri | 0667571 | 2018-10-18 09:42:17 +1100 | [diff] [blame] | 137 | if (allow_copies) { |
| 138 | /* Only run this pass in the first call to |
| 139 | * radv_optimize_nir. Later calls assume that we've |
| 140 | * lowered away any copy_deref instructions and we |
| 141 | * don't want to introduce any more. |
| 142 | */ |
| 143 | NIR_PASS(progress, shader, nir_opt_find_array_copies); |
| 144 | } |
| 145 | |
Timothy Arceri | 9d5b106 | 2018-10-18 08:55:46 +1100 | [diff] [blame] | 146 | NIR_PASS(progress, shader, nir_opt_copy_prop_vars); |
| 147 | NIR_PASS(progress, shader, nir_opt_dead_write_vars); |
| 148 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 149 | NIR_PASS_V(shader, nir_lower_alu_to_scalar); |
| 150 | NIR_PASS_V(shader, nir_lower_phis_to_scalar); |
| 151 | |
| 152 | NIR_PASS(progress, shader, nir_copy_prop); |
| 153 | NIR_PASS(progress, shader, nir_opt_remove_phis); |
| 154 | NIR_PASS(progress, shader, nir_opt_dce); |
| 155 | if (nir_opt_trivial_continues(shader)) { |
| 156 | progress = true; |
| 157 | NIR_PASS(progress, shader, nir_copy_prop); |
Dave Airlie | 64d9bd1 | 2017-09-13 03:49:31 +0100 | [diff] [blame] | 158 | NIR_PASS(progress, shader, nir_opt_remove_phis); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 159 | NIR_PASS(progress, shader, nir_opt_dce); |
| 160 | } |
| 161 | NIR_PASS(progress, shader, nir_opt_if); |
| 162 | NIR_PASS(progress, shader, nir_opt_dead_cf); |
| 163 | NIR_PASS(progress, shader, nir_opt_cse); |
Ian Romanick | 378f996 | 2018-06-18 16:11:55 -0700 | [diff] [blame] | 164 | NIR_PASS(progress, shader, nir_opt_peephole_select, 8, true, true); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 165 | NIR_PASS(progress, shader, nir_opt_algebraic); |
| 166 | NIR_PASS(progress, shader, nir_opt_constant_folding); |
| 167 | NIR_PASS(progress, shader, nir_opt_undef); |
| 168 | NIR_PASS(progress, shader, nir_opt_conditional_discard); |
| 169 | if (shader->options->max_unroll_iterations) { |
| 170 | NIR_PASS(progress, shader, nir_opt_loop_unroll, 0); |
| 171 | } |
Timothy Arceri | ce18881 | 2018-05-08 14:57:55 +1000 | [diff] [blame] | 172 | } while (progress && !optimize_conservatively); |
Samuel Pitoiset | 3488a3f | 2018-01-29 17:19:18 +0100 | [diff] [blame] | 173 | |
| 174 | NIR_PASS(progress, shader, nir_opt_shrink_load); |
Samuel Pitoiset | e96a1d2 | 2018-03-08 15:31:14 +0100 | [diff] [blame] | 175 | NIR_PASS(progress, shader, nir_opt_move_load_ubo); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | nir_shader * |
| 179 | radv_shader_compile_to_nir(struct radv_device *device, |
| 180 | struct radv_shader_module *module, |
| 181 | const char *entrypoint_name, |
| 182 | gl_shader_stage stage, |
Timothy Arceri | ce18881 | 2018-05-08 14:57:55 +1000 | [diff] [blame] | 183 | const VkSpecializationInfo *spec_info, |
| 184 | const VkPipelineCreateFlags flags) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 185 | { |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 186 | nir_shader *nir; |
| 187 | nir_function *entry_point; |
| 188 | if (module->nir) { |
| 189 | /* Some things such as our meta clear/blit code will give us a NIR |
| 190 | * shader directly. In that case, we just ignore the SPIR-V entirely |
| 191 | * and just use the NIR shader */ |
| 192 | nir = module->nir; |
| 193 | nir->options = &nir_options; |
Jason Ekstrand | 28bb6ab | 2018-10-18 15:18:30 -0500 | [diff] [blame] | 194 | nir_validate_shader(nir, "in internal shader"); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 195 | |
| 196 | assert(exec_list_length(&nir->functions) == 1); |
| 197 | struct exec_node *node = exec_list_get_head(&nir->functions); |
| 198 | entry_point = exec_node_data(nir_function, node, node); |
| 199 | } else { |
| 200 | uint32_t *spirv = (uint32_t *) module->data; |
| 201 | assert(module->size % 4 == 0); |
| 202 | |
Timothy Arceri | 7664aaf | 2017-10-11 11:59:20 +1100 | [diff] [blame] | 203 | if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV) |
Samuel Pitoiset | 844ae72 | 2017-09-22 16:56:40 +0200 | [diff] [blame] | 204 | radv_print_spirv(spirv, module->size, stderr); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 205 | |
| 206 | uint32_t num_spec_entries = 0; |
| 207 | struct nir_spirv_specialization *spec_entries = NULL; |
| 208 | if (spec_info && spec_info->mapEntryCount > 0) { |
| 209 | num_spec_entries = spec_info->mapEntryCount; |
| 210 | spec_entries = malloc(num_spec_entries * sizeof(*spec_entries)); |
| 211 | for (uint32_t i = 0; i < num_spec_entries; i++) { |
| 212 | VkSpecializationMapEntry entry = spec_info->pMapEntries[i]; |
| 213 | const void *data = spec_info->pData + entry.offset; |
| 214 | assert(data + entry.size <= spec_info->pData + spec_info->dataSize); |
| 215 | |
| 216 | spec_entries[i].id = spec_info->pMapEntries[i].constantID; |
| 217 | if (spec_info->dataSize == 8) |
| 218 | spec_entries[i].data64 = *(const uint64_t *)data; |
| 219 | else |
| 220 | spec_entries[i].data32 = *(const uint32_t *)data; |
| 221 | } |
| 222 | } |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 223 | const struct spirv_to_nir_options spirv_options = { |
Jason Ekstrand | 63b9aa2 | 2018-12-14 18:36:01 -0600 | [diff] [blame] | 224 | .lower_ubo_ssbo_access_to_offsets = true, |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 225 | .caps = { |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 226 | .descriptor_array_dynamic_indexing = true, |
Bas Nieuwenhuizen | 5240fdd | 2018-01-21 17:13:26 +0100 | [diff] [blame] | 227 | .device_group = true, |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 228 | .draw_parameters = true, |
| 229 | .float64 = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 230 | .gcn_shader = true, |
| 231 | .geometry_streams = true, |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 232 | .image_read_without_format = true, |
| 233 | .image_write_without_format = true, |
Samuel Pitoiset | 08103c5 | 2018-09-14 12:52:40 +0200 | [diff] [blame] | 234 | .int16 = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 235 | .int64 = true, |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 236 | .multiview = true, |
Bas Nieuwenhuizen | 13ab63b | 2019-01-24 02:06:27 +0100 | [diff] [blame] | 237 | .physical_storage_buffer_address = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 238 | .runtime_descriptor_array = true, |
| 239 | .shader_viewport_index_layer = true, |
| 240 | .stencil_export = true, |
| 241 | .storage_16bit = true, |
| 242 | .storage_image_ms = true, |
Samuel Pitoiset | 3565682 | 2018-09-18 15:27:52 +0200 | [diff] [blame] | 243 | .subgroup_arithmetic = true, |
Daniel Schürmann | f2c6a55 | 2018-03-06 15:05:13 +0100 | [diff] [blame] | 244 | .subgroup_ballot = true, |
Bas Nieuwenhuizen | 8f9af58 | 2018-01-21 15:06:10 +0100 | [diff] [blame] | 245 | .subgroup_basic = true, |
Daniel Schürmann | f2c6a55 | 2018-03-06 15:05:13 +0100 | [diff] [blame] | 246 | .subgroup_quad = true, |
| 247 | .subgroup_shuffle = true, |
| 248 | .subgroup_vote = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 249 | .tessellation = true, |
Samuel Pitoiset | b4eb029 | 2018-10-05 18:04:56 +0200 | [diff] [blame] | 250 | .transform_feedback = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 251 | .trinary_minmax = true, |
| 252 | .variable_pointers = true, |
Rhys Perry | 037f11d | 2018-12-06 13:33:48 +0000 | [diff] [blame] | 253 | .storage_8bit = true, |
Samuel Pitoiset | c25f638 | 2019-04-01 16:18:11 +0200 | [diff] [blame^] | 254 | .int8 = true, |
Daniel Schürmann | ffbf75c | 2018-02-23 13:55:01 +0100 | [diff] [blame] | 255 | }, |
Jason Ekstrand | adc155a | 2018-11-28 15:20:03 -0600 | [diff] [blame] | 256 | .ubo_ptr_type = glsl_vector_type(GLSL_TYPE_UINT, 2), |
| 257 | .ssbo_ptr_type = glsl_vector_type(GLSL_TYPE_UINT, 2), |
Bas Nieuwenhuizen | 13ab63b | 2019-01-24 02:06:27 +0100 | [diff] [blame] | 258 | .phys_ssbo_ptr_type = glsl_vector_type(GLSL_TYPE_UINT64, 1), |
Jason Ekstrand | adc155a | 2018-11-28 15:20:03 -0600 | [diff] [blame] | 259 | .push_const_ptr_type = glsl_uint_type(), |
| 260 | .shared_ptr_type = glsl_uint_type(), |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 261 | }; |
| 262 | entry_point = spirv_to_nir(spirv, module->size / 4, |
| 263 | spec_entries, num_spec_entries, |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 264 | stage, entrypoint_name, |
| 265 | &spirv_options, &nir_options); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 266 | nir = entry_point->shader; |
Jason Ekstrand | 59fb59a | 2017-09-14 19:52:38 -0700 | [diff] [blame] | 267 | assert(nir->info.stage == stage); |
Jason Ekstrand | 28bb6ab | 2018-10-18 15:18:30 -0500 | [diff] [blame] | 268 | nir_validate_shader(nir, "after spirv_to_nir"); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 269 | |
| 270 | free(spec_entries); |
| 271 | |
| 272 | /* We have to lower away local constant initializers right before we |
| 273 | * inline functions. That way they get properly initialized at the top |
| 274 | * of the function and not at the top of its caller. |
| 275 | */ |
Karol Herbst | 9b24028 | 2019-01-16 00:05:04 +0100 | [diff] [blame] | 276 | NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_function_temp); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 277 | NIR_PASS_V(nir, nir_lower_returns); |
| 278 | NIR_PASS_V(nir, nir_inline_functions); |
Jason Ekstrand | fc9c4f8 | 2018-12-13 11:08:13 -0600 | [diff] [blame] | 279 | NIR_PASS_V(nir, nir_opt_deref); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 280 | |
| 281 | /* Pick off the single entrypoint that we want */ |
| 282 | foreach_list_typed_safe(nir_function, func, node, &nir->functions) { |
| 283 | if (func != entry_point) |
| 284 | exec_node_remove(&func->node); |
| 285 | } |
| 286 | assert(exec_list_length(&nir->functions) == 1); |
| 287 | entry_point->name = ralloc_strdup(entry_point, "main"); |
| 288 | |
Dave Airlie | e8d9b7a | 2018-03-19 04:27:49 +0000 | [diff] [blame] | 289 | /* Make sure we lower constant initializers on output variables so that |
| 290 | * nir_remove_dead_variables below sees the corresponding stores |
| 291 | */ |
| 292 | NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_shader_out); |
| 293 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 294 | /* Now that we've deleted all but the main function, we can go ahead and |
| 295 | * lower the rest of the constant initializers. |
| 296 | */ |
| 297 | NIR_PASS_V(nir, nir_lower_constant_initializers, ~0); |
Jason Ekstrand | b0c643d | 2018-03-21 17:30:22 -0700 | [diff] [blame] | 298 | |
| 299 | /* Split member structs. We do this before lower_io_to_temporaries so that |
| 300 | * it doesn't lower system values to temporaries by accident. |
| 301 | */ |
| 302 | NIR_PASS_V(nir, nir_split_var_copies); |
| 303 | NIR_PASS_V(nir, nir_split_per_member_structs); |
| 304 | |
Samuel Pitoiset | 24ee532 | 2018-08-22 12:34:13 +0200 | [diff] [blame] | 305 | NIR_PASS_V(nir, nir_remove_dead_variables, |
| 306 | nir_var_shader_in | nir_var_shader_out | nir_var_system_value); |
| 307 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 308 | NIR_PASS_V(nir, nir_lower_system_values); |
| 309 | NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays); |
| 310 | } |
| 311 | |
| 312 | /* Vulkan uses the separate-shader linking model */ |
| 313 | nir->info.separate_shader = true; |
| 314 | |
| 315 | nir_shader_gather_info(nir, entry_point->impl); |
| 316 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 317 | static const nir_lower_tex_options tex_options = { |
| 318 | .lower_txp = ~0, |
Jason Ekstrand | 08f804e | 2019-03-19 13:55:21 -0500 | [diff] [blame] | 319 | .lower_tg4_offsets = true, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 320 | }; |
| 321 | |
| 322 | nir_lower_tex(nir, &tex_options); |
| 323 | |
| 324 | nir_lower_vars_to_ssa(nir); |
Samuel Pitoiset | ded1509 | 2018-05-23 14:31:55 +0200 | [diff] [blame] | 325 | |
Samuel Pitoiset | 38a8c59 | 2018-05-23 14:31:56 +0200 | [diff] [blame] | 326 | if (nir->info.stage == MESA_SHADER_VERTEX || |
| 327 | nir->info.stage == MESA_SHADER_GEOMETRY) { |
| 328 | NIR_PASS_V(nir, nir_lower_io_to_temporaries, |
| 329 | nir_shader_get_entrypoint(nir), true, true); |
| 330 | } else if (nir->info.stage == MESA_SHADER_TESS_EVAL|| |
| 331 | nir->info.stage == MESA_SHADER_FRAGMENT) { |
| 332 | NIR_PASS_V(nir, nir_lower_io_to_temporaries, |
| 333 | nir_shader_get_entrypoint(nir), true, false); |
| 334 | } |
| 335 | |
Samuel Pitoiset | ded1509 | 2018-05-23 14:31:55 +0200 | [diff] [blame] | 336 | nir_split_var_copies(nir); |
Samuel Pitoiset | ded1509 | 2018-05-23 14:31:55 +0200 | [diff] [blame] | 337 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 338 | nir_lower_global_vars_to_local(nir); |
Karol Herbst | 9b24028 | 2019-01-16 00:05:04 +0100 | [diff] [blame] | 339 | nir_remove_dead_variables(nir, nir_var_function_temp); |
Bas Nieuwenhuizen | 8f9af58 | 2018-01-21 15:06:10 +0100 | [diff] [blame] | 340 | nir_lower_subgroups(nir, &(struct nir_lower_subgroups_options) { |
| 341 | .subgroup_size = 64, |
| 342 | .ballot_bit_size = 64, |
| 343 | .lower_to_scalar = 1, |
| 344 | .lower_subgroup_masks = 1, |
| 345 | .lower_shuffle = 1, |
Daniel Schürmann | f2c6a55 | 2018-03-06 15:05:13 +0100 | [diff] [blame] | 346 | .lower_shuffle_to_32bit = 1, |
| 347 | .lower_vote_eq_to_ballot = 1, |
Bas Nieuwenhuizen | 8f9af58 | 2018-01-21 15:06:10 +0100 | [diff] [blame] | 348 | }); |
| 349 | |
Timothy Arceri | 72e4287 | 2018-09-24 18:18:48 +1000 | [diff] [blame] | 350 | nir_lower_load_const_to_scalar(nir); |
| 351 | |
Timothy Arceri | ce18881 | 2018-05-08 14:57:55 +1000 | [diff] [blame] | 352 | if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT)) |
Timothy Arceri | 0667571 | 2018-10-18 09:42:17 +1100 | [diff] [blame] | 353 | radv_optimize_nir(nir, false, true); |
| 354 | |
| 355 | /* We call nir_lower_var_copies() after the first radv_optimize_nir() |
| 356 | * to remove any copies introduced by nir_opt_find_array_copies(). |
| 357 | */ |
| 358 | nir_lower_var_copies(nir); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 359 | |
Timothy Arceri | 9a243ec | 2018-03-08 16:20:48 +1100 | [diff] [blame] | 360 | /* Indirect lowering must be called after the radv_optimize_nir() loop |
| 361 | * has been called at least once. Otherwise indirect lowering can |
| 362 | * bloat the instruction count of the loop and cause it to be |
| 363 | * considered too large for unrolling. |
| 364 | */ |
| 365 | ac_lower_indirect_derefs(nir, device->physical_device->rad_info.chip_class); |
Timothy Arceri | 0667571 | 2018-10-18 09:42:17 +1100 | [diff] [blame] | 366 | radv_optimize_nir(nir, flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, false); |
Timothy Arceri | 9a243ec | 2018-03-08 16:20:48 +1100 | [diff] [blame] | 367 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 368 | return nir; |
| 369 | } |
| 370 | |
| 371 | void * |
| 372 | radv_alloc_shader_memory(struct radv_device *device, |
| 373 | struct radv_shader_variant *shader) |
| 374 | { |
| 375 | mtx_lock(&device->shader_slab_mutex); |
| 376 | list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) { |
| 377 | uint64_t offset = 0; |
| 378 | list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) { |
| 379 | if (s->bo_offset - offset >= shader->code_size) { |
| 380 | shader->bo = slab->bo; |
| 381 | shader->bo_offset = offset; |
| 382 | list_addtail(&shader->slab_list, &s->slab_list); |
| 383 | mtx_unlock(&device->shader_slab_mutex); |
| 384 | return slab->ptr + offset; |
| 385 | } |
| 386 | offset = align_u64(s->bo_offset + s->code_size, 256); |
| 387 | } |
| 388 | if (slab->size - offset >= shader->code_size) { |
| 389 | shader->bo = slab->bo; |
| 390 | shader->bo_offset = offset; |
| 391 | list_addtail(&shader->slab_list, &slab->shaders); |
| 392 | mtx_unlock(&device->shader_slab_mutex); |
| 393 | return slab->ptr + offset; |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | mtx_unlock(&device->shader_slab_mutex); |
| 398 | struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab)); |
| 399 | |
| 400 | slab->size = 256 * 1024; |
| 401 | slab->bo = device->ws->buffer_create(device->ws, slab->size, 256, |
Samuel Pitoiset | a3c2a86 | 2018-01-04 15:19:47 +0100 | [diff] [blame] | 402 | RADEON_DOMAIN_VRAM, |
| 403 | RADEON_FLAG_NO_INTERPROCESS_SHARING | |
Danylo Piliaiev | 494a206 | 2018-07-18 11:47:19 +0300 | [diff] [blame] | 404 | (device->physical_device->cpdma_prefetch_writes_memory ? |
Bas Nieuwenhuizen | ead54d4 | 2019-01-28 00:28:05 +0100 | [diff] [blame] | 405 | 0 : RADEON_FLAG_READ_ONLY), |
| 406 | RADV_BO_PRIORITY_SHADER); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 407 | slab->ptr = (char*)device->ws->buffer_map(slab->bo); |
| 408 | list_inithead(&slab->shaders); |
| 409 | |
| 410 | mtx_lock(&device->shader_slab_mutex); |
| 411 | list_add(&slab->slabs, &device->shader_slabs); |
| 412 | |
| 413 | shader->bo = slab->bo; |
| 414 | shader->bo_offset = 0; |
| 415 | list_add(&shader->slab_list, &slab->shaders); |
| 416 | mtx_unlock(&device->shader_slab_mutex); |
| 417 | return slab->ptr; |
| 418 | } |
| 419 | |
| 420 | void |
| 421 | radv_destroy_shader_slabs(struct radv_device *device) |
| 422 | { |
| 423 | list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) { |
| 424 | device->ws->buffer_destroy(slab->bo); |
| 425 | free(slab); |
| 426 | } |
| 427 | mtx_destroy(&device->shader_slab_mutex); |
| 428 | } |
| 429 | |
Samuel Pitoiset | 939e5a3 | 2018-06-27 10:39:51 +0200 | [diff] [blame] | 430 | /* For the UMR disassembler. */ |
| 431 | #define DEBUGGER_END_OF_CODE_MARKER 0xbf9f0000 /* invalid instruction */ |
| 432 | #define DEBUGGER_NUM_MARKERS 5 |
| 433 | |
| 434 | static unsigned |
| 435 | radv_get_shader_binary_size(struct ac_shader_binary *binary) |
| 436 | { |
| 437 | return binary->code_size + DEBUGGER_NUM_MARKERS * 4; |
| 438 | } |
| 439 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 440 | static void |
| 441 | radv_fill_shader_variant(struct radv_device *device, |
| 442 | struct radv_shader_variant *variant, |
| 443 | struct ac_shader_binary *binary, |
| 444 | gl_shader_stage stage) |
| 445 | { |
| 446 | bool scratch_enabled = variant->config.scratch_bytes_per_wave > 0; |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 447 | struct radv_shader_info *info = &variant->info.info; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 448 | unsigned vgpr_comp_cnt = 0; |
| 449 | |
Samuel Pitoiset | 939e5a3 | 2018-06-27 10:39:51 +0200 | [diff] [blame] | 450 | variant->code_size = radv_get_shader_binary_size(binary); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 451 | variant->rsrc2 = S_00B12C_USER_SGPR(variant->info.num_user_sgprs) | |
Bas Nieuwenhuizen | d97c892 | 2018-09-16 12:17:00 +0200 | [diff] [blame] | 452 | S_00B12C_USER_SGPR_MSB(variant->info.num_user_sgprs >> 5) | |
Samuel Pitoiset | b4eb029 | 2018-10-05 18:04:56 +0200 | [diff] [blame] | 453 | S_00B12C_SCRATCH_EN(scratch_enabled) | |
| 454 | S_00B12C_SO_BASE0_EN(!!info->so.strides[0]) | |
| 455 | S_00B12C_SO_BASE1_EN(!!info->so.strides[1]) | |
| 456 | S_00B12C_SO_BASE2_EN(!!info->so.strides[2]) | |
| 457 | S_00B12C_SO_BASE3_EN(!!info->so.strides[3]) | |
| 458 | S_00B12C_SO_EN(!!info->so.num_outputs); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 459 | |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 460 | variant->rsrc1 = S_00B848_VGPRS((variant->config.num_vgprs - 1) / 4) | |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame] | 461 | S_00B848_SGPRS((variant->config.num_sgprs - 1) / 8) | |
| 462 | S_00B848_DX10_CLAMP(1) | |
| 463 | S_00B848_FLOAT_MODE(variant->config.float_mode); |
| 464 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 465 | switch (stage) { |
| 466 | case MESA_SHADER_TESS_EVAL: |
| 467 | vgpr_comp_cnt = 3; |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame] | 468 | variant->rsrc2 |= S_00B12C_OC_LDS_EN(1); |
| 469 | break; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 470 | case MESA_SHADER_TESS_CTRL: |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 471 | if (device->physical_device->rad_info.chip_class >= GFX9) { |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame] | 472 | vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt; |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 473 | } else { |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame] | 474 | variant->rsrc2 |= S_00B12C_OC_LDS_EN(1); |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 475 | } |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 476 | break; |
| 477 | case MESA_SHADER_VERTEX: |
| 478 | case MESA_SHADER_GEOMETRY: |
| 479 | vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt; |
| 480 | break; |
| 481 | case MESA_SHADER_FRAGMENT: |
| 482 | break; |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 483 | case MESA_SHADER_COMPUTE: |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 484 | variant->rsrc2 |= |
Samuel Pitoiset | 4237c3d | 2017-12-18 22:06:38 +0100 | [diff] [blame] | 485 | S_00B84C_TGID_X_EN(info->cs.uses_block_id[0]) | |
| 486 | S_00B84C_TGID_Y_EN(info->cs.uses_block_id[1]) | |
| 487 | S_00B84C_TGID_Z_EN(info->cs.uses_block_id[2]) | |
| 488 | S_00B84C_TIDIG_COMP_CNT(info->cs.uses_thread_id[2] ? 2 : |
| 489 | info->cs.uses_thread_id[1] ? 1 : 0) | |
Samuel Pitoiset | 90c3bf0 | 2017-12-14 17:32:41 +0100 | [diff] [blame] | 490 | S_00B84C_TG_SIZE_EN(info->cs.uses_local_invocation_idx) | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 491 | S_00B84C_LDS_SIZE(variant->config.lds_size); |
| 492 | break; |
| 493 | default: |
| 494 | unreachable("unsupported shader type"); |
| 495 | break; |
| 496 | } |
| 497 | |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame] | 498 | if (device->physical_device->rad_info.chip_class >= GFX9 && |
Bas Nieuwenhuizen | 73749ca | 2017-10-20 02:24:24 +0200 | [diff] [blame] | 499 | stage == MESA_SHADER_GEOMETRY) { |
Samuel Pitoiset | 232c418 | 2018-01-09 16:01:09 +0100 | [diff] [blame] | 500 | unsigned es_type = variant->info.gs.es_type; |
Samuel Pitoiset | 4e701cf | 2018-01-09 16:01:10 +0100 | [diff] [blame] | 501 | unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt; |
| 502 | |
| 503 | if (es_type == MESA_SHADER_VERTEX) { |
| 504 | es_vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt; |
| 505 | } else if (es_type == MESA_SHADER_TESS_EVAL) { |
| 506 | es_vgpr_comp_cnt = 3; |
| 507 | } else { |
Bas Nieuwenhuizen | 0f89f9b | 2018-01-17 23:23:02 +0100 | [diff] [blame] | 508 | unreachable("invalid shader ES type"); |
Samuel Pitoiset | 4e701cf | 2018-01-09 16:01:10 +0100 | [diff] [blame] | 509 | } |
Samuel Pitoiset | 2670ebb | 2017-12-20 20:56:57 +0100 | [diff] [blame] | 510 | |
| 511 | /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and |
| 512 | * VGPR[0:4] are always loaded. |
| 513 | */ |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 514 | if (info->uses_invocation_id) { |
Samuel Pitoiset | 2670ebb | 2017-12-20 20:56:57 +0100 | [diff] [blame] | 515 | gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */ |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 516 | } else if (info->uses_prim_id) { |
Samuel Pitoiset | 2670ebb | 2017-12-20 20:56:57 +0100 | [diff] [blame] | 517 | gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */ |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 518 | } else if (variant->info.gs.vertices_in >= 3) { |
Samuel Pitoiset | b462ceb | 2018-01-05 17:18:52 +0100 | [diff] [blame] | 519 | gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */ |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 520 | } else { |
Samuel Pitoiset | b462ceb | 2018-01-05 17:18:52 +0100 | [diff] [blame] | 521 | gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */ |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 522 | } |
Samuel Pitoiset | 2670ebb | 2017-12-20 20:56:57 +0100 | [diff] [blame] | 523 | |
Samuel Pitoiset | 2670ebb | 2017-12-20 20:56:57 +0100 | [diff] [blame] | 524 | variant->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt); |
Samuel Pitoiset | 4e701cf | 2018-01-09 16:01:10 +0100 | [diff] [blame] | 525 | variant->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) | |
Samuel Pitoiset | 232c418 | 2018-01-09 16:01:09 +0100 | [diff] [blame] | 526 | S_00B22C_OC_LDS_EN(es_type == MESA_SHADER_TESS_EVAL); |
Bas Nieuwenhuizen | 73749ca | 2017-10-20 02:24:24 +0200 | [diff] [blame] | 527 | } else if (device->physical_device->rad_info.chip_class >= GFX9 && |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 528 | stage == MESA_SHADER_TESS_CTRL) { |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame] | 529 | variant->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt); |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 530 | } else { |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame] | 531 | variant->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt); |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 532 | } |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 533 | |
| 534 | void *ptr = radv_alloc_shader_memory(device, variant); |
| 535 | memcpy(ptr, binary->code, binary->code_size); |
Samuel Pitoiset | 939e5a3 | 2018-06-27 10:39:51 +0200 | [diff] [blame] | 536 | |
| 537 | /* Add end-of-code markers for the UMR disassembler. */ |
| 538 | uint32_t *ptr32 = (uint32_t *)ptr + binary->code_size / 4; |
| 539 | for (unsigned i = 0; i < DEBUGGER_NUM_MARKERS; i++) |
| 540 | ptr32[i] = DEBUGGER_END_OF_CODE_MARKER; |
| 541 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 542 | } |
| 543 | |
Samuel Pitoiset | 135e4d4 | 2018-06-08 11:38:01 +0200 | [diff] [blame] | 544 | static void radv_init_llvm_target() |
| 545 | { |
| 546 | LLVMInitializeAMDGPUTargetInfo(); |
| 547 | LLVMInitializeAMDGPUTarget(); |
| 548 | LLVMInitializeAMDGPUTargetMC(); |
| 549 | LLVMInitializeAMDGPUAsmPrinter(); |
| 550 | |
| 551 | /* For inline assembly. */ |
| 552 | LLVMInitializeAMDGPUAsmParser(); |
| 553 | |
| 554 | /* Workaround for bug in llvm 4.0 that causes image intrinsics |
| 555 | * to disappear. |
| 556 | * https://reviews.llvm.org/D26348 |
| 557 | * |
| 558 | * Workaround for bug in llvm that causes the GPU to hang in presence |
| 559 | * of nested loops because there is an exec mask issue. The proper |
| 560 | * solution is to fix LLVM but this might require a bunch of work. |
| 561 | * https://bugs.llvm.org/show_bug.cgi?id=37744 |
| 562 | * |
| 563 | * "mesa" is the prefix for error messages. |
| 564 | */ |
Samuel Pitoiset | 0a7e767 | 2018-12-19 18:16:00 +0100 | [diff] [blame] | 565 | if (HAVE_LLVM >= 0x0800) { |
| 566 | const char *argv[2] = { "mesa", "-simplifycfg-sink-common=false" }; |
| 567 | LLVMParseCommandLineOptions(2, argv, NULL); |
| 568 | |
| 569 | } else { |
| 570 | const char *argv[3] = { "mesa", "-simplifycfg-sink-common=false", |
| 571 | "-amdgpu-skip-threshold=1" }; |
| 572 | LLVMParseCommandLineOptions(3, argv, NULL); |
| 573 | } |
Samuel Pitoiset | 135e4d4 | 2018-06-08 11:38:01 +0200 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | static once_flag radv_init_llvm_target_once_flag = ONCE_FLAG_INIT; |
| 577 | |
Dave Airlie | 473be16 | 2018-06-27 08:36:41 +1000 | [diff] [blame] | 578 | static void radv_init_llvm_once(void) |
Samuel Pitoiset | 135e4d4 | 2018-06-08 11:38:01 +0200 | [diff] [blame] | 579 | { |
Samuel Pitoiset | 135e4d4 | 2018-06-08 11:38:01 +0200 | [diff] [blame] | 580 | call_once(&radv_init_llvm_target_once_flag, radv_init_llvm_target); |
Samuel Pitoiset | 135e4d4 | 2018-06-08 11:38:01 +0200 | [diff] [blame] | 581 | } |
| 582 | |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 583 | static struct radv_shader_variant * |
| 584 | shader_variant_create(struct radv_device *device, |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 585 | struct radv_shader_module *module, |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 586 | struct nir_shader * const *shaders, |
| 587 | int shader_count, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 588 | gl_shader_stage stage, |
Samuel Pitoiset | fbe6945 | 2018-03-13 14:54:04 +0100 | [diff] [blame] | 589 | struct radv_nir_compiler_options *options, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 590 | bool gs_copy_shader, |
| 591 | void **code_out, |
| 592 | unsigned *code_size_out) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 593 | { |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 594 | enum radeon_family chip_family = device->physical_device->rad_info.family; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 595 | enum ac_target_machine_options tm_options = 0; |
| 596 | struct radv_shader_variant *variant; |
| 597 | struct ac_shader_binary binary; |
Dave Airlie | 7398913 | 2018-06-27 09:27:03 +1000 | [diff] [blame] | 598 | struct ac_llvm_compiler ac_llvm; |
Dave Airlie | 6f3aee4 | 2018-06-27 11:34:25 +1000 | [diff] [blame] | 599 | bool thread_compiler; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 600 | variant = calloc(1, sizeof(struct radv_shader_variant)); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 601 | if (!variant) |
| 602 | return NULL; |
| 603 | |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 604 | options->family = chip_family; |
| 605 | options->chip_class = device->physical_device->rad_info.chip_class; |
Samuel Pitoiset | 8ade3e4 | 2018-05-11 16:36:02 +0200 | [diff] [blame] | 606 | options->dump_shader = radv_can_dump_shader(device, module, gs_copy_shader); |
Samuel Pitoiset | d07edf5 | 2018-03-14 10:28:49 +0100 | [diff] [blame] | 607 | options->dump_preoptir = options->dump_shader && |
Samuel Pitoiset | 33e6e5e | 2018-01-19 12:12:02 +0100 | [diff] [blame] | 608 | device->instance->debug_flags & RADV_DEBUG_PREOPTIR; |
Samuel Pitoiset | 8181866 | 2018-03-14 10:34:13 +0100 | [diff] [blame] | 609 | options->record_llvm_ir = device->keep_shader_info; |
Samuel Pitoiset | bfca15e | 2018-06-14 14:28:58 +0200 | [diff] [blame] | 610 | options->check_ir = device->instance->debug_flags & RADV_DEBUG_CHECKIR; |
Dave Airlie | 010d055 | 2018-02-19 07:14:04 +0000 | [diff] [blame] | 611 | options->tess_offchip_block_dw_size = device->tess_offchip_block_dw_size; |
Samuel Pitoiset | d8a61d3 | 2018-05-16 16:02:04 +0200 | [diff] [blame] | 612 | options->address32_hi = device->physical_device->rad_info.address32_hi; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 613 | |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 614 | if (options->supports_spill) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 615 | tm_options |= AC_TM_SUPPORTS_SPILL; |
| 616 | if (device->instance->perftest_flags & RADV_PERFTEST_SISCHED) |
| 617 | tm_options |= AC_TM_SISCHED; |
Dave Airlie | 35c82af | 2018-07-03 09:44:22 +1000 | [diff] [blame] | 618 | if (options->check_ir) |
| 619 | tm_options |= AC_TM_CHECK_IR; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 620 | |
Dave Airlie | 6f3aee4 | 2018-06-27 11:34:25 +1000 | [diff] [blame] | 621 | thread_compiler = !(device->instance->debug_flags & RADV_DEBUG_NOTHREADLLVM); |
Dave Airlie | 473be16 | 2018-06-27 08:36:41 +1000 | [diff] [blame] | 622 | radv_init_llvm_once(); |
Samuel Pitoiset | 3fbdcd9 | 2018-11-02 09:50:32 +0100 | [diff] [blame] | 623 | radv_init_llvm_compiler(&ac_llvm, |
Dave Airlie | 6f3aee4 | 2018-06-27 11:34:25 +1000 | [diff] [blame] | 624 | thread_compiler, |
| 625 | chip_family, tm_options); |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 626 | if (gs_copy_shader) { |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 627 | assert(shader_count == 1); |
Dave Airlie | 7398913 | 2018-06-27 09:27:03 +1000 | [diff] [blame] | 628 | radv_compile_gs_copy_shader(&ac_llvm, *shaders, &binary, |
Samuel Pitoiset | b265300 | 2018-03-09 16:58:10 +0100 | [diff] [blame] | 629 | &variant->config, &variant->info, |
Samuel Pitoiset | d07edf5 | 2018-03-14 10:28:49 +0100 | [diff] [blame] | 630 | options); |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 631 | } else { |
Dave Airlie | 7398913 | 2018-06-27 09:27:03 +1000 | [diff] [blame] | 632 | radv_compile_nir_shader(&ac_llvm, &binary, &variant->config, |
Samuel Pitoiset | b265300 | 2018-03-09 16:58:10 +0100 | [diff] [blame] | 633 | &variant->info, shaders, shader_count, |
Samuel Pitoiset | d07edf5 | 2018-03-14 10:28:49 +0100 | [diff] [blame] | 634 | options); |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 635 | } |
| 636 | |
Dave Airlie | 6f3aee4 | 2018-06-27 11:34:25 +1000 | [diff] [blame] | 637 | radv_destroy_llvm_compiler(&ac_llvm, thread_compiler); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 638 | |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 639 | radv_fill_shader_variant(device, variant, &binary, stage); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 640 | |
| 641 | if (code_out) { |
| 642 | *code_out = binary.code; |
Dave Airlie | b88468f | 2018-07-27 05:18:02 +0100 | [diff] [blame] | 643 | *code_size_out = binary.code_size; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 644 | } else |
| 645 | free(binary.code); |
| 646 | free(binary.config); |
| 647 | free(binary.rodata); |
| 648 | free(binary.global_symbol_offsets); |
| 649 | free(binary.relocs); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 650 | variant->ref_count = 1; |
Samuel Pitoiset | 885d757 | 2017-09-01 13:45:33 +0200 | [diff] [blame] | 651 | |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 652 | if (device->keep_shader_info) { |
Samuel Pitoiset | 885d757 | 2017-09-01 13:45:33 +0200 | [diff] [blame] | 653 | variant->disasm_string = binary.disasm_string; |
Samuel Pitoiset | 8181866 | 2018-03-14 10:34:13 +0100 | [diff] [blame] | 654 | variant->llvm_ir_string = binary.llvm_ir_string; |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 655 | if (!gs_copy_shader && !module->nir) { |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 656 | variant->nir = *shaders; |
Samuel Pitoiset | 844ae72 | 2017-09-22 16:56:40 +0200 | [diff] [blame] | 657 | variant->spirv = (uint32_t *)module->data; |
| 658 | variant->spirv_size = module->size; |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 659 | } |
Samuel Pitoiset | 885d757 | 2017-09-01 13:45:33 +0200 | [diff] [blame] | 660 | } else { |
| 661 | free(binary.disasm_string); |
| 662 | } |
| 663 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 664 | return variant; |
| 665 | } |
| 666 | |
| 667 | struct radv_shader_variant * |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 668 | radv_shader_variant_create(struct radv_device *device, |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 669 | struct radv_shader_module *module, |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 670 | struct nir_shader *const *shaders, |
| 671 | int shader_count, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 672 | struct radv_pipeline_layout *layout, |
Samuel Pitoiset | fbe6945 | 2018-03-13 14:54:04 +0100 | [diff] [blame] | 673 | const struct radv_shader_variant_key *key, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 674 | void **code_out, |
| 675 | unsigned *code_size_out) |
| 676 | { |
Samuel Pitoiset | fbe6945 | 2018-03-13 14:54:04 +0100 | [diff] [blame] | 677 | struct radv_nir_compiler_options options = {0}; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 678 | |
| 679 | options.layout = layout; |
| 680 | if (key) |
| 681 | options.key = *key; |
| 682 | |
Timothy Arceri | 7664aaf | 2017-10-11 11:59:20 +1100 | [diff] [blame] | 683 | options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH); |
Samuel Pitoiset | 1e86eaf | 2018-05-17 09:56:47 +0200 | [diff] [blame] | 684 | options.supports_spill = true; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 685 | |
Jason Ekstrand | 59fb59a | 2017-09-14 19:52:38 -0700 | [diff] [blame] | 686 | return shader_variant_create(device, module, shaders, shader_count, shaders[shader_count - 1]->info.stage, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 687 | &options, false, code_out, code_size_out); |
| 688 | } |
| 689 | |
| 690 | struct radv_shader_variant * |
| 691 | radv_create_gs_copy_shader(struct radv_device *device, |
| 692 | struct nir_shader *shader, |
| 693 | void **code_out, |
| 694 | unsigned *code_size_out, |
Samuel Pitoiset | 47efc52 | 2017-09-01 12:09:56 +0200 | [diff] [blame] | 695 | bool multiview) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 696 | { |
Samuel Pitoiset | fbe6945 | 2018-03-13 14:54:04 +0100 | [diff] [blame] | 697 | struct radv_nir_compiler_options options = {0}; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 698 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 699 | options.key.has_multiview_view_index = multiview; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 700 | |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 701 | return shader_variant_create(device, NULL, &shader, 1, MESA_SHADER_VERTEX, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 702 | &options, true, code_out, code_size_out); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | void |
| 706 | radv_shader_variant_destroy(struct radv_device *device, |
| 707 | struct radv_shader_variant *variant) |
| 708 | { |
| 709 | if (!p_atomic_dec_zero(&variant->ref_count)) |
| 710 | return; |
| 711 | |
| 712 | mtx_lock(&device->shader_slab_mutex); |
| 713 | list_del(&variant->slab_list); |
| 714 | mtx_unlock(&device->shader_slab_mutex); |
| 715 | |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 716 | ralloc_free(variant->nir); |
Samuel Pitoiset | 885d757 | 2017-09-01 13:45:33 +0200 | [diff] [blame] | 717 | free(variant->disasm_string); |
Samuel Pitoiset | 8181866 | 2018-03-14 10:34:13 +0100 | [diff] [blame] | 718 | free(variant->llvm_ir_string); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 719 | free(variant); |
| 720 | } |
| 721 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 722 | const char * |
| 723 | radv_get_shader_name(struct radv_shader_variant *var, gl_shader_stage stage) |
| 724 | { |
| 725 | switch (stage) { |
| 726 | 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"; |
| 727 | case MESA_SHADER_GEOMETRY: return "Geometry Shader"; |
| 728 | case MESA_SHADER_FRAGMENT: return "Pixel Shader"; |
| 729 | case MESA_SHADER_COMPUTE: return "Compute Shader"; |
| 730 | case MESA_SHADER_TESS_CTRL: return "Tessellation Control Shader"; |
| 731 | case MESA_SHADER_TESS_EVAL: return var->info.tes.as_es ? "Tessellation Evaluation Shader as ES" : "Tessellation Evaluation Shader as VS"; |
| 732 | default: |
| 733 | return "Unknown shader"; |
| 734 | }; |
| 735 | } |
| 736 | |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 737 | static void |
| 738 | generate_shader_stats(struct radv_device *device, |
| 739 | struct radv_shader_variant *variant, |
| 740 | gl_shader_stage stage, |
| 741 | struct _mesa_string_buffer *buf) |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 742 | { |
Timothy Arceri | 9b9ccee | 2019-02-01 22:04:39 +1100 | [diff] [blame] | 743 | enum chip_class chip_class = device->physical_device->rad_info.chip_class; |
| 744 | unsigned lds_increment = chip_class >= CIK ? 512 : 256; |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 745 | struct ac_shader_config *conf; |
| 746 | unsigned max_simd_waves; |
| 747 | unsigned lds_per_wave = 0; |
| 748 | |
Dave Airlie | f77caa7 | 2018-04-23 10:16:07 +1000 | [diff] [blame] | 749 | max_simd_waves = ac_get_max_simd_waves(device->physical_device->rad_info.family); |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 750 | |
| 751 | conf = &variant->config; |
| 752 | |
| 753 | if (stage == MESA_SHADER_FRAGMENT) { |
| 754 | lds_per_wave = conf->lds_size * lds_increment + |
| 755 | align(variant->info.fs.num_interp * 48, |
| 756 | lds_increment); |
Timothy Arceri | 9b9ccee | 2019-02-01 22:04:39 +1100 | [diff] [blame] | 757 | } else if (stage == MESA_SHADER_COMPUTE) { |
| 758 | unsigned max_workgroup_size = |
Samuel Pitoiset | 5e7f800 | 2019-02-01 15:30:31 +0100 | [diff] [blame] | 759 | radv_nir_get_max_workgroup_size(chip_class, variant->nir); |
Timothy Arceri | 9b9ccee | 2019-02-01 22:04:39 +1100 | [diff] [blame] | 760 | lds_per_wave = (conf->lds_size * lds_increment) / |
| 761 | DIV_ROUND_UP(max_workgroup_size, 64); |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 762 | } |
| 763 | |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 764 | if (conf->num_sgprs) |
Samuel Pitoiset | 2f7bb93 | 2018-04-06 14:06:24 +0200 | [diff] [blame] | 765 | max_simd_waves = |
| 766 | MIN2(max_simd_waves, |
Timothy Arceri | 9b9ccee | 2019-02-01 22:04:39 +1100 | [diff] [blame] | 767 | ac_get_num_physical_sgprs(chip_class) / conf->num_sgprs); |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 768 | |
| 769 | if (conf->num_vgprs) |
Samuel Pitoiset | 466aba9 | 2018-04-06 14:10:34 +0200 | [diff] [blame] | 770 | max_simd_waves = |
| 771 | MIN2(max_simd_waves, |
| 772 | RADV_NUM_PHYSICAL_VGPRS / conf->num_vgprs); |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 773 | |
| 774 | /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD |
| 775 | * that PS can use. |
| 776 | */ |
| 777 | if (lds_per_wave) |
| 778 | max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave); |
| 779 | |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 780 | if (stage == MESA_SHADER_FRAGMENT) { |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 781 | _mesa_string_buffer_printf(buf, "*** SHADER CONFIG ***\n" |
| 782 | "SPI_PS_INPUT_ADDR = 0x%04x\n" |
| 783 | "SPI_PS_INPUT_ENA = 0x%04x\n", |
| 784 | conf->spi_ps_input_addr, conf->spi_ps_input_ena); |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 785 | } |
| 786 | |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 787 | _mesa_string_buffer_printf(buf, "*** SHADER STATS ***\n" |
| 788 | "SGPRS: %d\n" |
| 789 | "VGPRS: %d\n" |
| 790 | "Spilled SGPRs: %d\n" |
| 791 | "Spilled VGPRs: %d\n" |
Samuel Pitoiset | e96e6f6 | 2018-03-01 22:12:56 +0100 | [diff] [blame] | 792 | "PrivMem VGPRS: %d\n" |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 793 | "Code Size: %d bytes\n" |
| 794 | "LDS: %d blocks\n" |
| 795 | "Scratch: %d bytes per wave\n" |
| 796 | "Max Waves: %d\n" |
| 797 | "********************\n\n\n", |
| 798 | conf->num_sgprs, conf->num_vgprs, |
Samuel Pitoiset | e96e6f6 | 2018-03-01 22:12:56 +0100 | [diff] [blame] | 799 | conf->spilled_sgprs, conf->spilled_vgprs, |
| 800 | variant->info.private_mem_vgprs, variant->code_size, |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 801 | conf->lds_size, conf->scratch_bytes_per_wave, |
| 802 | max_simd_waves); |
| 803 | } |
| 804 | |
| 805 | void |
| 806 | radv_shader_dump_stats(struct radv_device *device, |
| 807 | struct radv_shader_variant *variant, |
| 808 | gl_shader_stage stage, |
| 809 | FILE *file) |
| 810 | { |
| 811 | struct _mesa_string_buffer *buf = _mesa_string_buffer_create(NULL, 256); |
| 812 | |
| 813 | generate_shader_stats(device, variant, stage, buf); |
| 814 | |
| 815 | fprintf(file, "\n%s:\n", radv_get_shader_name(variant, stage)); |
Alex Smith | 134a40d | 2017-10-30 08:38:14 +0000 | [diff] [blame] | 816 | fprintf(file, "%s", buf->buf); |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 817 | |
| 818 | _mesa_string_buffer_destroy(buf); |
| 819 | } |
| 820 | |
| 821 | VkResult |
| 822 | radv_GetShaderInfoAMD(VkDevice _device, |
| 823 | VkPipeline _pipeline, |
| 824 | VkShaderStageFlagBits shaderStage, |
| 825 | VkShaderInfoTypeAMD infoType, |
| 826 | size_t* pInfoSize, |
| 827 | void* pInfo) |
| 828 | { |
| 829 | RADV_FROM_HANDLE(radv_device, device, _device); |
| 830 | RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline); |
| 831 | gl_shader_stage stage = vk_to_mesa_shader_stage(shaderStage); |
| 832 | struct radv_shader_variant *variant = pipeline->shaders[stage]; |
| 833 | struct _mesa_string_buffer *buf; |
| 834 | VkResult result = VK_SUCCESS; |
| 835 | |
| 836 | /* Spec doesn't indicate what to do if the stage is invalid, so just |
| 837 | * return no info for this. */ |
| 838 | if (!variant) |
Bas Nieuwenhuizen | 38933c1 | 2018-05-31 01:06:41 +0200 | [diff] [blame] | 839 | return vk_error(device->instance, VK_ERROR_FEATURE_NOT_PRESENT); |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 840 | |
| 841 | switch (infoType) { |
| 842 | case VK_SHADER_INFO_TYPE_STATISTICS_AMD: |
| 843 | if (!pInfo) { |
| 844 | *pInfoSize = sizeof(VkShaderStatisticsInfoAMD); |
| 845 | } else { |
| 846 | unsigned lds_multiplier = device->physical_device->rad_info.chip_class >= CIK ? 512 : 256; |
| 847 | struct ac_shader_config *conf = &variant->config; |
| 848 | |
| 849 | VkShaderStatisticsInfoAMD statistics = {}; |
| 850 | statistics.shaderStageMask = shaderStage; |
Samuel Pitoiset | 466aba9 | 2018-04-06 14:10:34 +0200 | [diff] [blame] | 851 | statistics.numPhysicalVgprs = RADV_NUM_PHYSICAL_VGPRS; |
Timothy Arceri | a53d68d | 2019-02-01 21:16:54 +1100 | [diff] [blame] | 852 | statistics.numPhysicalSgprs = ac_get_num_physical_sgprs(device->physical_device->rad_info.chip_class); |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 853 | statistics.numAvailableSgprs = statistics.numPhysicalSgprs; |
| 854 | |
| 855 | if (stage == MESA_SHADER_COMPUTE) { |
| 856 | unsigned *local_size = variant->nir->info.cs.local_size; |
| 857 | unsigned workgroup_size = local_size[0] * local_size[1] * local_size[2]; |
| 858 | |
| 859 | statistics.numAvailableVgprs = statistics.numPhysicalVgprs / |
Eric Engestrom | d85fef1 | 2018-06-15 17:49:08 +0100 | [diff] [blame] | 860 | ceil((double)workgroup_size / statistics.numPhysicalVgprs); |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 861 | |
| 862 | statistics.computeWorkGroupSize[0] = local_size[0]; |
| 863 | statistics.computeWorkGroupSize[1] = local_size[1]; |
| 864 | statistics.computeWorkGroupSize[2] = local_size[2]; |
| 865 | } else { |
| 866 | statistics.numAvailableVgprs = statistics.numPhysicalVgprs; |
| 867 | } |
| 868 | |
| 869 | statistics.resourceUsage.numUsedVgprs = conf->num_vgprs; |
| 870 | statistics.resourceUsage.numUsedSgprs = conf->num_sgprs; |
| 871 | statistics.resourceUsage.ldsSizePerLocalWorkGroup = 32768; |
| 872 | statistics.resourceUsage.ldsUsageSizeInBytes = conf->lds_size * lds_multiplier; |
| 873 | statistics.resourceUsage.scratchMemUsageInBytes = conf->scratch_bytes_per_wave; |
| 874 | |
| 875 | size_t size = *pInfoSize; |
| 876 | *pInfoSize = sizeof(statistics); |
| 877 | |
| 878 | memcpy(pInfo, &statistics, MIN2(size, *pInfoSize)); |
| 879 | |
| 880 | if (size < *pInfoSize) |
| 881 | result = VK_INCOMPLETE; |
| 882 | } |
| 883 | |
| 884 | break; |
| 885 | case VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD: |
| 886 | buf = _mesa_string_buffer_create(NULL, 1024); |
| 887 | |
| 888 | _mesa_string_buffer_printf(buf, "%s:\n", radv_get_shader_name(variant, stage)); |
Nicolai Hähnle | 8c97abc | 2018-11-07 12:10:21 +0100 | [diff] [blame] | 889 | _mesa_string_buffer_printf(buf, "%s\n\n", variant->llvm_ir_string); |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 890 | _mesa_string_buffer_printf(buf, "%s\n\n", variant->disasm_string); |
| 891 | generate_shader_stats(device, variant, stage, buf); |
| 892 | |
| 893 | /* Need to include the null terminator. */ |
| 894 | size_t length = buf->length + 1; |
| 895 | |
| 896 | if (!pInfo) { |
| 897 | *pInfoSize = length; |
| 898 | } else { |
| 899 | size_t size = *pInfoSize; |
| 900 | *pInfoSize = length; |
| 901 | |
| 902 | memcpy(pInfo, buf->buf, MIN2(size, length)); |
| 903 | |
| 904 | if (size < length) |
| 905 | result = VK_INCOMPLETE; |
| 906 | } |
| 907 | |
| 908 | _mesa_string_buffer_destroy(buf); |
| 909 | break; |
| 910 | default: |
| 911 | /* VK_SHADER_INFO_TYPE_BINARY_AMD unimplemented for now. */ |
| 912 | result = VK_ERROR_FEATURE_NOT_PRESENT; |
| 913 | break; |
| 914 | } |
| 915 | |
| 916 | return result; |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 917 | } |