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" |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 43 | #include "ac_binary.h" |
| 44 | #include "ac_llvm_util.h" |
| 45 | #include "ac_nir_to_llvm.h" |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 46 | #include "ac_rtld.h" |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 47 | #include "vk_format.h" |
| 48 | #include "util/debug.h" |
| 49 | #include "ac_exp_param.h" |
| 50 | |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 51 | #include "aco_interface.h" |
| 52 | |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 53 | #include "util/string_buffer.h" |
| 54 | |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 55 | static const struct nir_shader_compiler_options nir_options_llvm = { |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 56 | .vertex_id_zero_based = true, |
| 57 | .lower_scmp = true, |
Rhys Perry | 0af95f0 | 2018-12-06 14:01:15 +0000 | [diff] [blame] | 58 | .lower_flrp16 = true, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 59 | .lower_flrp32 = true, |
Timothy Arceri | f0d74ec | 2018-01-12 11:12:09 +1100 | [diff] [blame] | 60 | .lower_flrp64 = true, |
Bas Nieuwenhuizen | 5240fdd | 2018-01-21 17:13:26 +0100 | [diff] [blame] | 61 | .lower_device_index_to_zero = true, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 62 | .lower_fsat = true, |
| 63 | .lower_fdiv = true, |
Samuel Pitoiset | 5ebe1a1 | 2019-10-03 16:20:40 +0200 | [diff] [blame] | 64 | .lower_fmod = true, |
Daniel Schürmann | 48a75e7 | 2019-01-25 16:08:38 +0100 | [diff] [blame] | 65 | .lower_bitfield_insert_to_bitfield_select = true, |
Daniel Schürmann | 0daeb1d | 2019-01-25 16:24:55 +0100 | [diff] [blame] | 66 | .lower_bitfield_extract = true, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 67 | .lower_sub = true, |
| 68 | .lower_pack_snorm_2x16 = true, |
| 69 | .lower_pack_snorm_4x8 = true, |
| 70 | .lower_pack_unorm_2x16 = true, |
| 71 | .lower_pack_unorm_4x8 = true, |
| 72 | .lower_unpack_snorm_2x16 = true, |
| 73 | .lower_unpack_snorm_4x8 = true, |
| 74 | .lower_unpack_unorm_2x16 = true, |
| 75 | .lower_unpack_unorm_4x8 = true, |
| 76 | .lower_extract_byte = true, |
| 77 | .lower_extract_word = true, |
Dave Airlie | 2c61594 | 2017-10-04 06:33:02 +1000 | [diff] [blame] | 78 | .lower_ffma = true, |
Samuel Pitoiset | 7aa008d | 2018-02-02 19:04:57 +0100 | [diff] [blame] | 79 | .lower_fpow = true, |
Samuel Pitoiset | 71ffa00 | 2019-03-06 22:35:31 +0100 | [diff] [blame] | 80 | .lower_mul_2x32_64 = true, |
Sagar Ghuge | 456557a | 2019-06-03 17:11:57 -0700 | [diff] [blame] | 81 | .lower_rotate = true, |
Connor Abbott | 118a66d | 2019-05-10 10:44:20 +0200 | [diff] [blame] | 82 | .max_unroll_iterations = 32, |
| 83 | .use_interpolated_input_intrinsics = true, |
Rhys Perry | 76544f6 | 2019-10-15 20:43:39 +0100 | [diff] [blame^] | 84 | /* nir_lower_int64() isn't actually called for the LLVM backend, but |
| 85 | * this helps the loop unrolling heuristics. */ |
| 86 | .lower_int64_options = nir_lower_imul64 | |
| 87 | nir_lower_imul_high64 | |
| 88 | nir_lower_imul_2x32_64 | |
| 89 | nir_lower_divmod64 | |
| 90 | nir_lower_minmax64 | |
| 91 | nir_lower_iabs64, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 92 | }; |
| 93 | |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 94 | static const struct nir_shader_compiler_options nir_options_aco = { |
| 95 | .vertex_id_zero_based = true, |
| 96 | .lower_scmp = true, |
| 97 | .lower_flrp16 = true, |
| 98 | .lower_flrp32 = true, |
| 99 | .lower_flrp64 = true, |
| 100 | .lower_device_index_to_zero = true, |
| 101 | .lower_fdiv = true, |
Rhys Perry | a87b0f5 | 2019-10-03 15:32:19 +0100 | [diff] [blame] | 102 | .lower_fmod = true, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 103 | .lower_bitfield_insert_to_bitfield_select = true, |
| 104 | .lower_bitfield_extract = true, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 105 | .lower_pack_snorm_2x16 = true, |
| 106 | .lower_pack_snorm_4x8 = true, |
| 107 | .lower_pack_unorm_2x16 = true, |
| 108 | .lower_pack_unorm_4x8 = true, |
| 109 | .lower_unpack_snorm_2x16 = true, |
| 110 | .lower_unpack_snorm_4x8 = true, |
| 111 | .lower_unpack_unorm_2x16 = true, |
| 112 | .lower_unpack_unorm_4x8 = true, |
| 113 | .lower_unpack_half_2x16 = true, |
| 114 | .lower_extract_byte = true, |
| 115 | .lower_extract_word = true, |
| 116 | .lower_ffma = true, |
| 117 | .lower_fpow = true, |
| 118 | .lower_mul_2x32_64 = true, |
| 119 | .lower_rotate = true, |
| 120 | .max_unroll_iterations = 32, |
| 121 | .use_interpolated_input_intrinsics = true, |
Rhys Perry | 76544f6 | 2019-10-15 20:43:39 +0100 | [diff] [blame^] | 122 | .lower_int64_options = nir_lower_imul64 | |
| 123 | nir_lower_imul_high64 | |
| 124 | nir_lower_imul_2x32_64 | |
| 125 | nir_lower_divmod64 | |
| 126 | nir_lower_logic64 | |
| 127 | nir_lower_minmax64 | |
| 128 | nir_lower_iabs64, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 129 | }; |
| 130 | |
Daniel Schürmann | 45638e1 | 2019-07-29 17:51:01 +0200 | [diff] [blame] | 131 | bool |
| 132 | radv_can_dump_shader(struct radv_device *device, |
| 133 | struct radv_shader_module *module, |
| 134 | bool is_gs_copy_shader) |
| 135 | { |
| 136 | if (!(device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS)) |
| 137 | return false; |
Timur Kristóf | 30f0c0e | 2019-09-18 14:39:10 +0200 | [diff] [blame] | 138 | if (module) |
| 139 | return !module->nir || |
| 140 | (device->instance->debug_flags & RADV_DEBUG_DUMP_META_SHADERS); |
Daniel Schürmann | 45638e1 | 2019-07-29 17:51:01 +0200 | [diff] [blame] | 141 | |
Timur Kristóf | 30f0c0e | 2019-09-18 14:39:10 +0200 | [diff] [blame] | 142 | return is_gs_copy_shader; |
Daniel Schürmann | 45638e1 | 2019-07-29 17:51:01 +0200 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | bool |
| 146 | radv_can_dump_shader_stats(struct radv_device *device, |
| 147 | struct radv_shader_module *module) |
| 148 | { |
| 149 | /* Only dump non-meta shader stats. */ |
| 150 | return device->instance->debug_flags & RADV_DEBUG_DUMP_SHADER_STATS && |
| 151 | module && !module->nir; |
| 152 | } |
| 153 | |
| 154 | unsigned shader_io_get_unique_index(gl_varying_slot slot) |
| 155 | { |
| 156 | /* handle patch indices separate */ |
| 157 | if (slot == VARYING_SLOT_TESS_LEVEL_OUTER) |
| 158 | return 0; |
| 159 | if (slot == VARYING_SLOT_TESS_LEVEL_INNER) |
| 160 | return 1; |
| 161 | if (slot >= VARYING_SLOT_PATCH0 && slot <= VARYING_SLOT_TESS_MAX) |
| 162 | return 2 + (slot - VARYING_SLOT_PATCH0); |
| 163 | if (slot == VARYING_SLOT_POS) |
| 164 | return 0; |
| 165 | if (slot == VARYING_SLOT_PSIZ) |
| 166 | return 1; |
| 167 | if (slot == VARYING_SLOT_CLIP_DIST0) |
| 168 | return 2; |
| 169 | if (slot == VARYING_SLOT_CLIP_DIST1) |
| 170 | return 3; |
| 171 | /* 3 is reserved for clip dist as well */ |
| 172 | if (slot >= VARYING_SLOT_VAR0 && slot <= VARYING_SLOT_VAR31) |
| 173 | return 4 + (slot - VARYING_SLOT_VAR0); |
| 174 | unreachable("illegal slot in get unique index\n"); |
| 175 | } |
| 176 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 177 | VkResult radv_CreateShaderModule( |
| 178 | VkDevice _device, |
| 179 | const VkShaderModuleCreateInfo* pCreateInfo, |
| 180 | const VkAllocationCallbacks* pAllocator, |
| 181 | VkShaderModule* pShaderModule) |
| 182 | { |
| 183 | RADV_FROM_HANDLE(radv_device, device, _device); |
| 184 | struct radv_shader_module *module; |
| 185 | |
| 186 | assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO); |
| 187 | assert(pCreateInfo->flags == 0); |
| 188 | |
| 189 | module = vk_alloc2(&device->alloc, pAllocator, |
| 190 | sizeof(*module) + pCreateInfo->codeSize, 8, |
| 191 | VK_SYSTEM_ALLOCATION_SCOPE_OBJECT); |
| 192 | if (module == NULL) |
Bas Nieuwenhuizen | 38933c1 | 2018-05-31 01:06:41 +0200 | [diff] [blame] | 193 | return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 194 | |
| 195 | module->nir = NULL; |
| 196 | module->size = pCreateInfo->codeSize; |
| 197 | memcpy(module->data, pCreateInfo->pCode, module->size); |
| 198 | |
| 199 | _mesa_sha1_compute(module->data, module->size, module->sha1); |
| 200 | |
| 201 | *pShaderModule = radv_shader_module_to_handle(module); |
| 202 | |
| 203 | return VK_SUCCESS; |
| 204 | } |
| 205 | |
| 206 | void radv_DestroyShaderModule( |
| 207 | VkDevice _device, |
| 208 | VkShaderModule _module, |
| 209 | const VkAllocationCallbacks* pAllocator) |
| 210 | { |
| 211 | RADV_FROM_HANDLE(radv_device, device, _device); |
| 212 | RADV_FROM_HANDLE(radv_shader_module, module, _module); |
| 213 | |
| 214 | if (!module) |
| 215 | return; |
| 216 | |
| 217 | vk_free2(&device->alloc, pAllocator, module); |
| 218 | } |
| 219 | |
Bas Nieuwenhuizen | 06f0504 | 2017-02-09 00:12:10 +0100 | [diff] [blame] | 220 | void |
Timothy Arceri | 0667571 | 2018-10-18 09:42:17 +1100 | [diff] [blame] | 221 | radv_optimize_nir(struct nir_shader *shader, bool optimize_conservatively, |
| 222 | bool allow_copies) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 223 | { |
| 224 | bool progress; |
Ian Romanick | d41cdef | 2018-08-18 16:42:04 -0700 | [diff] [blame] | 225 | unsigned lower_flrp = |
| 226 | (shader->options->lower_flrp16 ? 16 : 0) | |
| 227 | (shader->options->lower_flrp32 ? 32 : 0) | |
| 228 | (shader->options->lower_flrp64 ? 64 : 0); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 229 | |
| 230 | do { |
| 231 | progress = false; |
| 232 | |
Karol Herbst | 9b24028 | 2019-01-16 00:05:04 +0100 | [diff] [blame] | 233 | NIR_PASS(progress, shader, nir_split_array_vars, nir_var_function_temp); |
| 234 | 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] | 235 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 236 | NIR_PASS_V(shader, nir_lower_vars_to_ssa); |
Iago Toral Quiroga | 2d648e5 | 2018-04-27 09:28:48 +0200 | [diff] [blame] | 237 | NIR_PASS_V(shader, nir_lower_pack); |
Timothy Arceri | 9d5b106 | 2018-10-18 08:55:46 +1100 | [diff] [blame] | 238 | |
Timothy Arceri | 0667571 | 2018-10-18 09:42:17 +1100 | [diff] [blame] | 239 | if (allow_copies) { |
| 240 | /* Only run this pass in the first call to |
| 241 | * radv_optimize_nir. Later calls assume that we've |
| 242 | * lowered away any copy_deref instructions and we |
| 243 | * don't want to introduce any more. |
| 244 | */ |
| 245 | NIR_PASS(progress, shader, nir_opt_find_array_copies); |
| 246 | } |
| 247 | |
Timothy Arceri | 9d5b106 | 2018-10-18 08:55:46 +1100 | [diff] [blame] | 248 | NIR_PASS(progress, shader, nir_opt_copy_prop_vars); |
| 249 | NIR_PASS(progress, shader, nir_opt_dead_write_vars); |
Connor Abbott | a69ab1b | 2019-06-26 14:03:31 +0200 | [diff] [blame] | 250 | NIR_PASS(progress, shader, nir_remove_dead_variables, |
| 251 | nir_var_function_temp); |
Timothy Arceri | 9d5b106 | 2018-10-18 08:55:46 +1100 | [diff] [blame] | 252 | |
Vasily Khoruzhick | 9367d2c | 2019-08-29 21:14:54 -0700 | [diff] [blame] | 253 | NIR_PASS_V(shader, nir_lower_alu_to_scalar, NULL, NULL); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 254 | NIR_PASS_V(shader, nir_lower_phis_to_scalar); |
| 255 | |
| 256 | NIR_PASS(progress, shader, nir_copy_prop); |
| 257 | NIR_PASS(progress, shader, nir_opt_remove_phis); |
| 258 | NIR_PASS(progress, shader, nir_opt_dce); |
| 259 | if (nir_opt_trivial_continues(shader)) { |
| 260 | progress = true; |
| 261 | NIR_PASS(progress, shader, nir_copy_prop); |
Dave Airlie | 64d9bd1 | 2017-09-13 03:49:31 +0100 | [diff] [blame] | 262 | NIR_PASS(progress, shader, nir_opt_remove_phis); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 263 | NIR_PASS(progress, shader, nir_opt_dce); |
| 264 | } |
Timothy Arceri | e30804c | 2019-04-08 20:13:49 +1000 | [diff] [blame] | 265 | NIR_PASS(progress, shader, nir_opt_if, true); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 266 | NIR_PASS(progress, shader, nir_opt_dead_cf); |
| 267 | NIR_PASS(progress, shader, nir_opt_cse); |
Ian Romanick | 378f996 | 2018-06-18 16:11:55 -0700 | [diff] [blame] | 268 | NIR_PASS(progress, shader, nir_opt_peephole_select, 8, true, true); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 269 | NIR_PASS(progress, shader, nir_opt_constant_folding); |
Timothy Arceri | e19a8fe | 2019-05-02 13:38:52 +1000 | [diff] [blame] | 270 | NIR_PASS(progress, shader, nir_opt_algebraic); |
Ian Romanick | d41cdef | 2018-08-18 16:42:04 -0700 | [diff] [blame] | 271 | |
| 272 | if (lower_flrp != 0) { |
Ian Romanick | 1f1007a | 2019-05-08 07:32:43 -0700 | [diff] [blame] | 273 | bool lower_flrp_progress = false; |
Ian Romanick | d41cdef | 2018-08-18 16:42:04 -0700 | [diff] [blame] | 274 | NIR_PASS(lower_flrp_progress, |
| 275 | shader, |
| 276 | nir_lower_flrp, |
| 277 | lower_flrp, |
| 278 | false /* always_precise */, |
| 279 | shader->options->lower_ffma); |
| 280 | if (lower_flrp_progress) { |
| 281 | NIR_PASS(progress, shader, |
| 282 | nir_opt_constant_folding); |
| 283 | progress = true; |
| 284 | } |
| 285 | |
| 286 | /* Nothing should rematerialize any flrps, so we only |
| 287 | * need to do this lowering once. |
| 288 | */ |
| 289 | lower_flrp = 0; |
| 290 | } |
| 291 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 292 | NIR_PASS(progress, shader, nir_opt_undef); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 293 | if (shader->options->max_unroll_iterations) { |
| 294 | NIR_PASS(progress, shader, nir_opt_loop_unroll, 0); |
| 295 | } |
Timothy Arceri | ce18881 | 2018-05-08 14:57:55 +1000 | [diff] [blame] | 296 | } while (progress && !optimize_conservatively); |
Samuel Pitoiset | 3488a3f | 2018-01-29 17:19:18 +0100 | [diff] [blame] | 297 | |
Daniel Schürmann | 64b7386 | 2019-07-20 19:21:14 +0200 | [diff] [blame] | 298 | NIR_PASS(progress, shader, nir_opt_conditional_discard); |
Samuel Pitoiset | 3488a3f | 2018-01-29 17:19:18 +0100 | [diff] [blame] | 299 | NIR_PASS(progress, shader, nir_opt_shrink_load); |
Rhys Perry | 7740149 | 2019-07-24 19:23:21 +0100 | [diff] [blame] | 300 | NIR_PASS(progress, shader, nir_opt_move, nir_move_load_ubo); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | nir_shader * |
| 304 | radv_shader_compile_to_nir(struct radv_device *device, |
| 305 | struct radv_shader_module *module, |
| 306 | const char *entrypoint_name, |
| 307 | gl_shader_stage stage, |
Timothy Arceri | ce18881 | 2018-05-08 14:57:55 +1000 | [diff] [blame] | 308 | const VkSpecializationInfo *spec_info, |
Bas Nieuwenhuizen | 5c3467e | 2019-03-30 14:28:06 +0100 | [diff] [blame] | 309 | const VkPipelineCreateFlags flags, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 310 | const struct radv_pipeline_layout *layout, |
| 311 | bool use_aco) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 312 | { |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 313 | nir_shader *nir; |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 314 | const nir_shader_compiler_options *nir_options = use_aco ? &nir_options_aco : |
| 315 | &nir_options_llvm; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 316 | if (module->nir) { |
| 317 | /* Some things such as our meta clear/blit code will give us a NIR |
| 318 | * shader directly. In that case, we just ignore the SPIR-V entirely |
| 319 | * and just use the NIR shader */ |
| 320 | nir = module->nir; |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 321 | nir->options = nir_options; |
Jason Ekstrand | 28bb6ab | 2018-10-18 15:18:30 -0500 | [diff] [blame] | 322 | nir_validate_shader(nir, "in internal shader"); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 323 | |
| 324 | assert(exec_list_length(&nir->functions) == 1); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 325 | } else { |
| 326 | uint32_t *spirv = (uint32_t *) module->data; |
| 327 | assert(module->size % 4 == 0); |
| 328 | |
Timothy Arceri | 7664aaf | 2017-10-11 11:59:20 +1100 | [diff] [blame] | 329 | if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV) |
Samuel Pitoiset | d4e0bef | 2019-10-28 16:56:15 +0100 | [diff] [blame] | 330 | radv_print_spirv(module->data, module->size, stderr); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 331 | |
| 332 | uint32_t num_spec_entries = 0; |
| 333 | struct nir_spirv_specialization *spec_entries = NULL; |
| 334 | if (spec_info && spec_info->mapEntryCount > 0) { |
| 335 | num_spec_entries = spec_info->mapEntryCount; |
| 336 | spec_entries = malloc(num_spec_entries * sizeof(*spec_entries)); |
| 337 | for (uint32_t i = 0; i < num_spec_entries; i++) { |
| 338 | VkSpecializationMapEntry entry = spec_info->pMapEntries[i]; |
| 339 | const void *data = spec_info->pData + entry.offset; |
| 340 | assert(data + entry.size <= spec_info->pData + spec_info->dataSize); |
| 341 | |
| 342 | spec_entries[i].id = spec_info->pMapEntries[i].constantID; |
| 343 | if (spec_info->dataSize == 8) |
| 344 | spec_entries[i].data64 = *(const uint64_t *)data; |
| 345 | else |
| 346 | spec_entries[i].data32 = *(const uint32_t *)data; |
| 347 | } |
| 348 | } |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 349 | const struct spirv_to_nir_options spirv_options = { |
Jason Ekstrand | 63b9aa2 | 2018-12-14 18:36:01 -0600 | [diff] [blame] | 350 | .lower_ubo_ssbo_access_to_offsets = true, |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 351 | .caps = { |
Daniel Schürmann | 7a858f2 | 2018-05-09 20:41:23 +0200 | [diff] [blame] | 352 | .amd_gcn_shader = true, |
Samuel Pitoiset | e73d863 | 2019-08-21 08:38:24 +0200 | [diff] [blame] | 353 | .amd_shader_ballot = device->physical_device->use_shader_ballot, |
Daniel Schürmann | 7a858f2 | 2018-05-09 20:41:23 +0200 | [diff] [blame] | 354 | .amd_trinary_minmax = true, |
Daniel Schürmann | 2812622 | 2019-09-17 17:09:52 +0200 | [diff] [blame] | 355 | .demote_to_helper_invocation = device->physical_device->use_aco, |
Samuel Pitoiset | b3e3440 | 2019-04-19 12:40:37 +0200 | [diff] [blame] | 356 | .derivative_group = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 357 | .descriptor_array_dynamic_indexing = true, |
Juan A. Suarez Romero | 06c9d7f | 2019-04-29 17:05:13 +0200 | [diff] [blame] | 358 | .descriptor_array_non_uniform_indexing = true, |
| 359 | .descriptor_indexing = true, |
Bas Nieuwenhuizen | 5240fdd | 2018-01-21 17:13:26 +0100 | [diff] [blame] | 360 | .device_group = true, |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 361 | .draw_parameters = true, |
Samuel Pitoiset | 7c50214 | 2019-10-14 11:27:32 +0200 | [diff] [blame] | 362 | .float_controls = true, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 363 | .float16 = !device->physical_device->use_aco, |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 364 | .float64 = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 365 | .geometry_streams = true, |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 366 | .image_read_without_format = true, |
| 367 | .image_write_without_format = true, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 368 | .int8 = !device->physical_device->use_aco, |
| 369 | .int16 = !device->physical_device->use_aco, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 370 | .int64 = true, |
Samuel Pitoiset | 9cf55b0 | 2019-04-16 10:38:24 +0200 | [diff] [blame] | 371 | .int64_atomics = true, |
Jason Ekstrand | e19c623 | 2017-10-18 17:28:19 -0700 | [diff] [blame] | 372 | .multiview = true, |
Bas Nieuwenhuizen | 13ab63b | 2019-01-24 02:06:27 +0100 | [diff] [blame] | 373 | .physical_storage_buffer_address = true, |
Samuel Pitoiset | 07ff367 | 2019-07-16 17:11:50 +0200 | [diff] [blame] | 374 | .post_depth_coverage = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 375 | .runtime_descriptor_array = true, |
Samuel Pitoiset | cbd6f0a | 2019-10-07 10:26:22 +0200 | [diff] [blame] | 376 | .shader_clock = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 377 | .shader_viewport_index_layer = true, |
| 378 | .stencil_export = true, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 379 | .storage_8bit = !device->physical_device->use_aco, |
| 380 | .storage_16bit = !device->physical_device->use_aco, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 381 | .storage_image_ms = true, |
Samuel Pitoiset | 3565682 | 2018-09-18 15:27:52 +0200 | [diff] [blame] | 382 | .subgroup_arithmetic = true, |
Daniel Schürmann | f2c6a55 | 2018-03-06 15:05:13 +0100 | [diff] [blame] | 383 | .subgroup_ballot = true, |
Bas Nieuwenhuizen | 8f9af58 | 2018-01-21 15:06:10 +0100 | [diff] [blame] | 384 | .subgroup_basic = true, |
Daniel Schürmann | f2c6a55 | 2018-03-06 15:05:13 +0100 | [diff] [blame] | 385 | .subgroup_quad = true, |
| 386 | .subgroup_shuffle = true, |
| 387 | .subgroup_vote = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 388 | .tessellation = true, |
Samuel Pitoiset | b4eb029 | 2018-10-05 18:04:56 +0200 | [diff] [blame] | 389 | .transform_feedback = true, |
Jason Ekstrand | 05d72d6 | 2019-01-07 10:28:23 -0600 | [diff] [blame] | 390 | .variable_pointers = true, |
Daniel Schürmann | ffbf75c | 2018-02-23 13:55:01 +0100 | [diff] [blame] | 391 | }, |
Caio Marcelo de Oliveira Filho | 31a7476 | 2019-05-01 14:15:32 -0700 | [diff] [blame] | 392 | .ubo_addr_format = nir_address_format_32bit_index_offset, |
| 393 | .ssbo_addr_format = nir_address_format_32bit_index_offset, |
| 394 | .phys_ssbo_addr_format = nir_address_format_64bit_global, |
| 395 | .push_const_addr_format = nir_address_format_logical, |
| 396 | .shared_addr_format = nir_address_format_32bit_offset, |
Connor Abbott | 27f0c3c | 2019-05-13 15:39:54 +0200 | [diff] [blame] | 397 | .frag_coord_is_sysval = true, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 398 | }; |
Caio Marcelo de Oliveira Filho | e45bf01 | 2019-05-19 00:22:17 -0700 | [diff] [blame] | 399 | nir = spirv_to_nir(spirv, module->size / 4, |
| 400 | spec_entries, num_spec_entries, |
| 401 | stage, entrypoint_name, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 402 | &spirv_options, nir_options); |
Jason Ekstrand | 59fb59a | 2017-09-14 19:52:38 -0700 | [diff] [blame] | 403 | assert(nir->info.stage == stage); |
Jason Ekstrand | 28bb6ab | 2018-10-18 15:18:30 -0500 | [diff] [blame] | 404 | nir_validate_shader(nir, "after spirv_to_nir"); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 405 | |
| 406 | free(spec_entries); |
| 407 | |
| 408 | /* We have to lower away local constant initializers right before we |
| 409 | * inline functions. That way they get properly initialized at the top |
| 410 | * of the function and not at the top of its caller. |
| 411 | */ |
Karol Herbst | 9b24028 | 2019-01-16 00:05:04 +0100 | [diff] [blame] | 412 | NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_function_temp); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 413 | NIR_PASS_V(nir, nir_lower_returns); |
| 414 | NIR_PASS_V(nir, nir_inline_functions); |
Jason Ekstrand | fc9c4f8 | 2018-12-13 11:08:13 -0600 | [diff] [blame] | 415 | NIR_PASS_V(nir, nir_opt_deref); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 416 | |
| 417 | /* Pick off the single entrypoint that we want */ |
| 418 | foreach_list_typed_safe(nir_function, func, node, &nir->functions) { |
Caio Marcelo de Oliveira Filho | a3bfdac | 2019-05-19 00:11:37 -0700 | [diff] [blame] | 419 | if (func->is_entrypoint) |
| 420 | func->name = ralloc_strdup(func, "main"); |
| 421 | else |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 422 | exec_node_remove(&func->node); |
| 423 | } |
| 424 | assert(exec_list_length(&nir->functions) == 1); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 425 | |
Dave Airlie | e8d9b7a | 2018-03-19 04:27:49 +0000 | [diff] [blame] | 426 | /* Make sure we lower constant initializers on output variables so that |
| 427 | * nir_remove_dead_variables below sees the corresponding stores |
| 428 | */ |
| 429 | NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_shader_out); |
| 430 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 431 | /* Now that we've deleted all but the main function, we can go ahead and |
| 432 | * lower the rest of the constant initializers. |
| 433 | */ |
| 434 | NIR_PASS_V(nir, nir_lower_constant_initializers, ~0); |
Jason Ekstrand | b0c643d | 2018-03-21 17:30:22 -0700 | [diff] [blame] | 435 | |
| 436 | /* Split member structs. We do this before lower_io_to_temporaries so that |
| 437 | * it doesn't lower system values to temporaries by accident. |
| 438 | */ |
| 439 | NIR_PASS_V(nir, nir_split_var_copies); |
| 440 | NIR_PASS_V(nir, nir_split_per_member_structs); |
| 441 | |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 442 | if (nir->info.stage == MESA_SHADER_FRAGMENT && use_aco) |
| 443 | NIR_PASS_V(nir, nir_lower_io_to_vector, nir_var_shader_out); |
Daniel Schürmann | e41e932 | 2019-04-05 11:01:39 +0200 | [diff] [blame] | 444 | if (nir->info.stage == MESA_SHADER_FRAGMENT) |
Connor Abbott | 27f0c3c | 2019-05-13 15:39:54 +0200 | [diff] [blame] | 445 | NIR_PASS_V(nir, nir_lower_input_attachments, true); |
Daniel Schürmann | e41e932 | 2019-04-05 11:01:39 +0200 | [diff] [blame] | 446 | |
Samuel Pitoiset | 24ee532 | 2018-08-22 12:34:13 +0200 | [diff] [blame] | 447 | NIR_PASS_V(nir, nir_remove_dead_variables, |
Daniel Schürmann | 8b78cce | 2019-09-17 18:24:06 +0200 | [diff] [blame] | 448 | nir_var_shader_in | nir_var_shader_out | nir_var_system_value | nir_var_mem_shared); |
Samuel Pitoiset | 24ee532 | 2018-08-22 12:34:13 +0200 | [diff] [blame] | 449 | |
Connor Abbott | 3f5b541 | 2019-09-05 13:57:11 +0200 | [diff] [blame] | 450 | NIR_PASS_V(nir, nir_propagate_invariant); |
| 451 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 452 | NIR_PASS_V(nir, nir_lower_system_values); |
| 453 | NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays); |
Bas Nieuwenhuizen | 5c3467e | 2019-03-30 14:28:06 +0100 | [diff] [blame] | 454 | NIR_PASS_V(nir, radv_nir_lower_ycbcr_textures, layout); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | /* Vulkan uses the separate-shader linking model */ |
| 458 | nir->info.separate_shader = true; |
| 459 | |
Caio Marcelo de Oliveira Filho | a3bfdac | 2019-05-19 00:11:37 -0700 | [diff] [blame] | 460 | nir_shader_gather_info(nir, nir_shader_get_entrypoint(nir)); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 461 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 462 | static const nir_lower_tex_options tex_options = { |
| 463 | .lower_txp = ~0, |
Jason Ekstrand | 08f804e | 2019-03-19 13:55:21 -0500 | [diff] [blame] | 464 | .lower_tg4_offsets = true, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 465 | }; |
| 466 | |
| 467 | nir_lower_tex(nir, &tex_options); |
| 468 | |
| 469 | nir_lower_vars_to_ssa(nir); |
Samuel Pitoiset | ded1509 | 2018-05-23 14:31:55 +0200 | [diff] [blame] | 470 | |
Samuel Pitoiset | 38a8c59 | 2018-05-23 14:31:56 +0200 | [diff] [blame] | 471 | if (nir->info.stage == MESA_SHADER_VERTEX || |
Connor Abbott | 118a66d | 2019-05-10 10:44:20 +0200 | [diff] [blame] | 472 | nir->info.stage == MESA_SHADER_GEOMETRY || |
| 473 | nir->info.stage == MESA_SHADER_FRAGMENT) { |
Samuel Pitoiset | 38a8c59 | 2018-05-23 14:31:56 +0200 | [diff] [blame] | 474 | NIR_PASS_V(nir, nir_lower_io_to_temporaries, |
| 475 | nir_shader_get_entrypoint(nir), true, true); |
Connor Abbott | 118a66d | 2019-05-10 10:44:20 +0200 | [diff] [blame] | 476 | } else if (nir->info.stage == MESA_SHADER_TESS_EVAL) { |
Samuel Pitoiset | 38a8c59 | 2018-05-23 14:31:56 +0200 | [diff] [blame] | 477 | NIR_PASS_V(nir, nir_lower_io_to_temporaries, |
| 478 | nir_shader_get_entrypoint(nir), true, false); |
| 479 | } |
| 480 | |
Samuel Pitoiset | ded1509 | 2018-05-23 14:31:55 +0200 | [diff] [blame] | 481 | nir_split_var_copies(nir); |
Samuel Pitoiset | ded1509 | 2018-05-23 14:31:55 +0200 | [diff] [blame] | 482 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 483 | nir_lower_global_vars_to_local(nir); |
Karol Herbst | 9b24028 | 2019-01-16 00:05:04 +0100 | [diff] [blame] | 484 | nir_remove_dead_variables(nir, nir_var_function_temp); |
Bas Nieuwenhuizen | 8f9af58 | 2018-01-21 15:06:10 +0100 | [diff] [blame] | 485 | nir_lower_subgroups(nir, &(struct nir_lower_subgroups_options) { |
| 486 | .subgroup_size = 64, |
| 487 | .ballot_bit_size = 64, |
| 488 | .lower_to_scalar = 1, |
| 489 | .lower_subgroup_masks = 1, |
| 490 | .lower_shuffle = 1, |
Daniel Schürmann | f2c6a55 | 2018-03-06 15:05:13 +0100 | [diff] [blame] | 491 | .lower_shuffle_to_32bit = 1, |
| 492 | .lower_vote_eq_to_ballot = 1, |
Bas Nieuwenhuizen | 8f9af58 | 2018-01-21 15:06:10 +0100 | [diff] [blame] | 493 | }); |
| 494 | |
Timothy Arceri | 72e4287 | 2018-09-24 18:18:48 +1000 | [diff] [blame] | 495 | nir_lower_load_const_to_scalar(nir); |
| 496 | |
Timothy Arceri | ce18881 | 2018-05-08 14:57:55 +1000 | [diff] [blame] | 497 | if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT)) |
Timothy Arceri | 0667571 | 2018-10-18 09:42:17 +1100 | [diff] [blame] | 498 | radv_optimize_nir(nir, false, true); |
| 499 | |
| 500 | /* We call nir_lower_var_copies() after the first radv_optimize_nir() |
| 501 | * to remove any copies introduced by nir_opt_find_array_copies(). |
| 502 | */ |
| 503 | nir_lower_var_copies(nir); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 504 | |
Connor Abbott | 71a6794 | 2019-08-30 16:08:47 +0200 | [diff] [blame] | 505 | /* Lower large variables that are always constant with load_constant |
| 506 | * intrinsics, which get turned into PC-relative loads from a data |
| 507 | * section next to the shader. |
| 508 | */ |
| 509 | NIR_PASS_V(nir, nir_opt_large_constants, |
| 510 | glsl_get_natural_size_align_bytes, 16); |
| 511 | |
Timothy Arceri | 9a243ec | 2018-03-08 16:20:48 +1100 | [diff] [blame] | 512 | /* Indirect lowering must be called after the radv_optimize_nir() loop |
| 513 | * has been called at least once. Otherwise indirect lowering can |
| 514 | * bloat the instruction count of the loop and cause it to be |
| 515 | * considered too large for unrolling. |
| 516 | */ |
| 517 | ac_lower_indirect_derefs(nir, device->physical_device->rad_info.chip_class); |
Timothy Arceri | 0667571 | 2018-10-18 09:42:17 +1100 | [diff] [blame] | 518 | radv_optimize_nir(nir, flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT, false); |
Timothy Arceri | 9a243ec | 2018-03-08 16:20:48 +1100 | [diff] [blame] | 519 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 520 | return nir; |
| 521 | } |
| 522 | |
Connor Abbott | 118a66d | 2019-05-10 10:44:20 +0200 | [diff] [blame] | 523 | static int |
| 524 | type_size_vec4(const struct glsl_type *type, bool bindless) |
| 525 | { |
| 526 | return glsl_count_attribute_slots(type, false); |
| 527 | } |
| 528 | |
| 529 | static nir_variable * |
| 530 | find_layer_in_var(nir_shader *nir) |
| 531 | { |
| 532 | nir_foreach_variable(var, &nir->inputs) { |
| 533 | if (var->data.location == VARYING_SLOT_LAYER) { |
| 534 | return var; |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | nir_variable *var = |
| 539 | nir_variable_create(nir, nir_var_shader_in, glsl_int_type(), "layer id"); |
| 540 | var->data.location = VARYING_SLOT_LAYER; |
| 541 | var->data.interpolation = INTERP_MODE_FLAT; |
| 542 | return var; |
| 543 | } |
| 544 | |
| 545 | /* We use layered rendering to implement multiview, which means we need to map |
| 546 | * view_index to gl_Layer. The attachment lowering also uses needs to know the |
| 547 | * layer so that it can sample from the correct layer. The code generates a |
| 548 | * load from the layer_id sysval, but since we don't have a way to get at this |
| 549 | * information from the fragment shader, we also need to lower this to the |
| 550 | * gl_Layer varying. This pass lowers both to a varying load from the LAYER |
| 551 | * slot, before lowering io, so that nir_assign_var_locations() will give the |
| 552 | * LAYER varying the correct driver_location. |
| 553 | */ |
| 554 | |
| 555 | static bool |
| 556 | lower_view_index(nir_shader *nir) |
| 557 | { |
| 558 | bool progress = false; |
| 559 | nir_function_impl *entry = nir_shader_get_entrypoint(nir); |
| 560 | nir_builder b; |
| 561 | nir_builder_init(&b, entry); |
| 562 | |
| 563 | nir_variable *layer = NULL; |
| 564 | nir_foreach_block(block, entry) { |
| 565 | nir_foreach_instr_safe(instr, block) { |
| 566 | if (instr->type != nir_instr_type_intrinsic) |
| 567 | continue; |
| 568 | |
| 569 | nir_intrinsic_instr *load = nir_instr_as_intrinsic(instr); |
| 570 | if (load->intrinsic != nir_intrinsic_load_view_index && |
| 571 | load->intrinsic != nir_intrinsic_load_layer_id) |
| 572 | continue; |
| 573 | |
| 574 | if (!layer) |
| 575 | layer = find_layer_in_var(nir); |
| 576 | |
| 577 | b.cursor = nir_before_instr(instr); |
| 578 | nir_ssa_def *def = nir_load_var(&b, layer); |
| 579 | nir_ssa_def_rewrite_uses(&load->dest.ssa, |
| 580 | nir_src_for_ssa(def)); |
| 581 | |
| 582 | nir_instr_remove(instr); |
| 583 | progress = true; |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | return progress; |
| 588 | } |
| 589 | |
Samuel Pitoiset | 8d44f83 | 2019-08-29 11:16:44 +0200 | [diff] [blame] | 590 | void |
| 591 | radv_lower_fs_io(nir_shader *nir) |
Connor Abbott | 118a66d | 2019-05-10 10:44:20 +0200 | [diff] [blame] | 592 | { |
| 593 | NIR_PASS_V(nir, lower_view_index); |
| 594 | nir_assign_io_var_locations(&nir->inputs, &nir->num_inputs, |
| 595 | MESA_SHADER_FRAGMENT); |
| 596 | |
Connor Abbott | 118a66d | 2019-05-10 10:44:20 +0200 | [diff] [blame] | 597 | NIR_PASS_V(nir, nir_lower_io, nir_var_shader_in, type_size_vec4, 0); |
| 598 | |
| 599 | /* This pass needs actual constants */ |
| 600 | nir_opt_constant_folding(nir); |
| 601 | |
| 602 | NIR_PASS_V(nir, nir_io_add_const_offset_to_base, nir_var_shader_in); |
Connor Abbott | 118a66d | 2019-05-10 10:44:20 +0200 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 606 | void * |
| 607 | radv_alloc_shader_memory(struct radv_device *device, |
| 608 | struct radv_shader_variant *shader) |
| 609 | { |
| 610 | mtx_lock(&device->shader_slab_mutex); |
| 611 | list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) { |
| 612 | uint64_t offset = 0; |
| 613 | list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) { |
| 614 | if (s->bo_offset - offset >= shader->code_size) { |
| 615 | shader->bo = slab->bo; |
| 616 | shader->bo_offset = offset; |
| 617 | list_addtail(&shader->slab_list, &s->slab_list); |
| 618 | mtx_unlock(&device->shader_slab_mutex); |
| 619 | return slab->ptr + offset; |
| 620 | } |
| 621 | offset = align_u64(s->bo_offset + s->code_size, 256); |
| 622 | } |
| 623 | if (slab->size - offset >= shader->code_size) { |
| 624 | shader->bo = slab->bo; |
| 625 | shader->bo_offset = offset; |
| 626 | list_addtail(&shader->slab_list, &slab->shaders); |
| 627 | mtx_unlock(&device->shader_slab_mutex); |
| 628 | return slab->ptr + offset; |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | mtx_unlock(&device->shader_slab_mutex); |
| 633 | struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab)); |
| 634 | |
| 635 | slab->size = 256 * 1024; |
| 636 | slab->bo = device->ws->buffer_create(device->ws, slab->size, 256, |
Samuel Pitoiset | a3c2a86 | 2018-01-04 15:19:47 +0100 | [diff] [blame] | 637 | RADEON_DOMAIN_VRAM, |
| 638 | RADEON_FLAG_NO_INTERPROCESS_SHARING | |
Samuel Pitoiset | 2b9c371 | 2019-08-20 17:20:42 +0200 | [diff] [blame] | 639 | (device->physical_device->rad_info.cpdma_prefetch_writes_memory ? |
Bas Nieuwenhuizen | ead54d4 | 2019-01-28 00:28:05 +0100 | [diff] [blame] | 640 | 0 : RADEON_FLAG_READ_ONLY), |
| 641 | RADV_BO_PRIORITY_SHADER); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 642 | slab->ptr = (char*)device->ws->buffer_map(slab->bo); |
| 643 | list_inithead(&slab->shaders); |
| 644 | |
| 645 | mtx_lock(&device->shader_slab_mutex); |
| 646 | list_add(&slab->slabs, &device->shader_slabs); |
| 647 | |
| 648 | shader->bo = slab->bo; |
| 649 | shader->bo_offset = 0; |
| 650 | list_add(&shader->slab_list, &slab->shaders); |
| 651 | mtx_unlock(&device->shader_slab_mutex); |
| 652 | return slab->ptr; |
| 653 | } |
| 654 | |
| 655 | void |
| 656 | radv_destroy_shader_slabs(struct radv_device *device) |
| 657 | { |
| 658 | list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) { |
| 659 | device->ws->buffer_destroy(slab->bo); |
| 660 | free(slab); |
| 661 | } |
| 662 | mtx_destroy(&device->shader_slab_mutex); |
| 663 | } |
| 664 | |
Samuel Pitoiset | 939e5a3 | 2018-06-27 10:39:51 +0200 | [diff] [blame] | 665 | /* For the UMR disassembler. */ |
| 666 | #define DEBUGGER_END_OF_CODE_MARKER 0xbf9f0000 /* invalid instruction */ |
| 667 | #define DEBUGGER_NUM_MARKERS 5 |
| 668 | |
| 669 | static unsigned |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 670 | radv_get_shader_binary_size(size_t code_size) |
Samuel Pitoiset | 939e5a3 | 2018-06-27 10:39:51 +0200 | [diff] [blame] | 671 | { |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 672 | return code_size + DEBUGGER_NUM_MARKERS * 4; |
Samuel Pitoiset | 939e5a3 | 2018-06-27 10:39:51 +0200 | [diff] [blame] | 673 | } |
| 674 | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 675 | static void radv_postprocess_config(const struct radv_physical_device *pdevice, |
| 676 | const struct ac_shader_config *config_in, |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 677 | const struct radv_shader_info *info, |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 678 | gl_shader_stage stage, |
| 679 | struct ac_shader_config *config_out) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 680 | { |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 681 | bool scratch_enabled = config_in->scratch_bytes_per_wave > 0; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 682 | unsigned vgpr_comp_cnt = 0; |
Bas Nieuwenhuizen | 5ff651c | 2019-07-01 02:19:13 +0200 | [diff] [blame] | 683 | unsigned num_input_vgprs = info->num_input_vgprs; |
| 684 | |
| 685 | if (stage == MESA_SHADER_FRAGMENT) { |
Timur Kristóf | a4fd8ba | 2019-09-25 16:40:07 +0200 | [diff] [blame] | 686 | num_input_vgprs = ac_get_fs_input_vgpr_cnt(config_in, NULL, NULL); |
Bas Nieuwenhuizen | 5ff651c | 2019-07-01 02:19:13 +0200 | [diff] [blame] | 687 | } |
| 688 | |
| 689 | unsigned num_vgprs = MAX2(config_in->num_vgprs, num_input_vgprs); |
| 690 | /* +3 for scratch wave offset and VCC */ |
| 691 | unsigned num_sgprs = MAX2(config_in->num_sgprs, info->num_input_sgprs + 3); |
Timur Kristóf | 83eebdb | 2019-09-13 15:53:09 +0200 | [diff] [blame] | 692 | unsigned num_shared_vgprs = config_in->num_shared_vgprs; |
| 693 | /* shared VGPRs are introduced in Navi and are allocated in blocks of 8 (RDNA ref 3.6.5) */ |
| 694 | assert((pdevice->rad_info.chip_class >= GFX10 && num_shared_vgprs % 8 == 0) |
| 695 | || (pdevice->rad_info.chip_class < GFX10 && num_shared_vgprs == 0)); |
| 696 | unsigned num_shared_vgpr_blocks = num_shared_vgprs / 8; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 697 | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 698 | *config_out = *config_in; |
Bas Nieuwenhuizen | 5ff651c | 2019-07-01 02:19:13 +0200 | [diff] [blame] | 699 | config_out->num_vgprs = num_vgprs; |
| 700 | config_out->num_sgprs = num_sgprs; |
Timur Kristóf | 83eebdb | 2019-09-13 15:53:09 +0200 | [diff] [blame] | 701 | config_out->num_shared_vgprs = num_shared_vgprs; |
Bas Nieuwenhuizen | 5ff651c | 2019-07-01 02:19:13 +0200 | [diff] [blame] | 702 | |
| 703 | /* Enable 64-bit and 16-bit denormals, because there is no performance |
| 704 | * cost. |
| 705 | * |
| 706 | * If denormals are enabled, all floating-point output modifiers are |
| 707 | * ignored. |
| 708 | * |
| 709 | * Don't enable denormals for 32-bit floats, because: |
| 710 | * - Floating-point output modifiers would be ignored by the hw. |
| 711 | * - Some opcodes don't support denormals, such as v_mad_f32. We would |
| 712 | * have to stop using those. |
| 713 | * - GFX6 & GFX7 would be very slow. |
| 714 | */ |
| 715 | config_out->float_mode |= V_00B028_FP_64_DENORMS; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 716 | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 717 | config_out->rsrc2 = S_00B12C_USER_SGPR(info->num_user_sgprs) | |
Samuel Pitoiset | a15b3bc | 2019-09-09 10:23:30 +0200 | [diff] [blame] | 718 | S_00B12C_SCRATCH_EN(scratch_enabled); |
| 719 | |
| 720 | if (!pdevice->use_ngg_streamout) { |
| 721 | config_out->rsrc2 |= S_00B12C_SO_BASE0_EN(!!info->so.strides[0]) | |
| 722 | S_00B12C_SO_BASE1_EN(!!info->so.strides[1]) | |
| 723 | S_00B12C_SO_BASE2_EN(!!info->so.strides[2]) | |
| 724 | S_00B12C_SO_BASE3_EN(!!info->so.strides[3]) | |
| 725 | S_00B12C_SO_EN(!!info->so.num_outputs); |
| 726 | } |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 727 | |
Samuel Pitoiset | ea38565 | 2019-07-30 18:32:42 +0200 | [diff] [blame] | 728 | config_out->rsrc1 = S_00B848_VGPRS((num_vgprs - 1) / |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 729 | (info->wave_size == 32 ? 8 : 4)) | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 730 | S_00B848_DX10_CLAMP(1) | |
Bas Nieuwenhuizen | 5ff651c | 2019-07-01 02:19:13 +0200 | [diff] [blame] | 731 | S_00B848_FLOAT_MODE(config_out->float_mode); |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame] | 732 | |
Samuel Pitoiset | 4c82094 | 2019-06-25 13:33:03 +0200 | [diff] [blame] | 733 | if (pdevice->rad_info.chip_class >= GFX10) { |
| 734 | config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX10(info->num_user_sgprs >> 5); |
| 735 | } else { |
| 736 | config_out->rsrc1 |= S_00B228_SGPRS((num_sgprs - 1) / 8); |
Samuel Pitoiset | 09abe57 | 2019-07-23 14:55:16 +0200 | [diff] [blame] | 737 | config_out->rsrc2 |= S_00B22C_USER_SGPR_MSB_GFX9(info->num_user_sgprs >> 5); |
Samuel Pitoiset | 4c82094 | 2019-06-25 13:33:03 +0200 | [diff] [blame] | 738 | } |
| 739 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 740 | switch (stage) { |
| 741 | case MESA_SHADER_TESS_EVAL: |
Bas Nieuwenhuizen | 795adbb | 2019-07-08 23:44:32 +0200 | [diff] [blame] | 742 | if (info->is_ngg) { |
| 743 | config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10); |
| 744 | config_out->rsrc2 |= S_00B22C_OC_LDS_EN(1); |
| 745 | } else if (info->tes.as_es) { |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 746 | assert(pdevice->rad_info.chip_class <= GFX8); |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 747 | vgpr_comp_cnt = info->uses_prim_id ? 3 : 2; |
Bas Nieuwenhuizen | 795adbb | 2019-07-08 23:44:32 +0200 | [diff] [blame] | 748 | |
| 749 | config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1); |
Samuel Pitoiset | b4477fa | 2019-06-26 15:11:00 +0200 | [diff] [blame] | 750 | } else { |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 751 | bool enable_prim_id = info->tes.export_prim_id || info->uses_prim_id; |
Samuel Pitoiset | b4477fa | 2019-06-26 15:11:00 +0200 | [diff] [blame] | 752 | vgpr_comp_cnt = enable_prim_id ? 3 : 2; |
Bas Nieuwenhuizen | aeb5b1a | 2019-07-06 12:31:25 +0200 | [diff] [blame] | 753 | |
| 754 | config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10); |
Bas Nieuwenhuizen | 795adbb | 2019-07-08 23:44:32 +0200 | [diff] [blame] | 755 | config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1); |
Samuel Pitoiset | b4477fa | 2019-06-26 15:11:00 +0200 | [diff] [blame] | 756 | } |
Timur Kristóf | 83eebdb | 2019-09-13 15:53:09 +0200 | [diff] [blame] | 757 | config_out->rsrc2 |= S_00B22C_SHARED_VGPR_CNT(num_shared_vgpr_blocks); |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame] | 758 | break; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 759 | case MESA_SHADER_TESS_CTRL: |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 760 | if (pdevice->rad_info.chip_class >= GFX9) { |
Samuel Pitoiset | d8b079e | 2019-06-26 15:11:03 +0200 | [diff] [blame] | 761 | /* We need at least 2 components for LS. |
| 762 | * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID). |
| 763 | * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded. |
| 764 | */ |
Bas Nieuwenhuizen | 795adbb | 2019-07-08 23:44:32 +0200 | [diff] [blame] | 765 | if (pdevice->rad_info.chip_class >= GFX10) { |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 766 | vgpr_comp_cnt = info->vs.needs_instance_id ? 3 : 1; |
Bas Nieuwenhuizen | 795adbb | 2019-07-08 23:44:32 +0200 | [diff] [blame] | 767 | } else { |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 768 | vgpr_comp_cnt = info->vs.needs_instance_id ? 2 : 1; |
Bas Nieuwenhuizen | 795adbb | 2019-07-08 23:44:32 +0200 | [diff] [blame] | 769 | } |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 770 | } else { |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 771 | config_out->rsrc2 |= S_00B12C_OC_LDS_EN(1); |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 772 | } |
Samuel Pitoiset | e68b55f | 2019-07-12 12:17:16 +0200 | [diff] [blame] | 773 | config_out->rsrc1 |= S_00B428_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) | |
| 774 | S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10); |
Timur Kristóf | 83eebdb | 2019-09-13 15:53:09 +0200 | [diff] [blame] | 775 | config_out->rsrc2 |= S_00B42C_SHARED_VGPR_CNT(num_shared_vgpr_blocks); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 776 | break; |
| 777 | case MESA_SHADER_VERTEX: |
Samuel Pitoiset | ee21bd7 | 2019-07-05 08:33:06 +0200 | [diff] [blame] | 778 | if (info->is_ngg) { |
| 779 | config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10); |
| 780 | } else if (info->vs.as_ls) { |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 781 | assert(pdevice->rad_info.chip_class <= GFX8); |
Samuel Pitoiset | d8b079e | 2019-06-26 15:11:03 +0200 | [diff] [blame] | 782 | /* We need at least 2 components for LS. |
| 783 | * VGPR0-3: (VertexID, RelAutoindex, InstanceID / StepRate0, InstanceID). |
| 784 | * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded. |
| 785 | */ |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 786 | vgpr_comp_cnt = info->vs.needs_instance_id ? 2 : 1; |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 787 | } else if (info->vs.as_es) { |
| 788 | assert(pdevice->rad_info.chip_class <= GFX8); |
Samuel Pitoiset | d8b079e | 2019-06-26 15:11:03 +0200 | [diff] [blame] | 789 | /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */ |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 790 | vgpr_comp_cnt = info->vs.needs_instance_id ? 1 : 0; |
Samuel Pitoiset | d8b079e | 2019-06-26 15:11:03 +0200 | [diff] [blame] | 791 | } else { |
| 792 | /* VGPR0-3: (VertexID, InstanceID / StepRate0, PrimID, InstanceID) |
| 793 | * If PrimID is disabled. InstanceID / StepRate1 is loaded instead. |
| 794 | * StepRate0 is set to 1. so that VGPR3 doesn't have to be loaded. |
| 795 | */ |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 796 | if (info->vs.needs_instance_id && pdevice->rad_info.chip_class >= GFX10) { |
Bas Nieuwenhuizen | 2e763f7 | 2019-08-21 01:50:53 +0200 | [diff] [blame] | 797 | vgpr_comp_cnt = 3; |
| 798 | } else if (info->vs.export_prim_id) { |
Samuel Pitoiset | d8b079e | 2019-06-26 15:11:03 +0200 | [diff] [blame] | 799 | vgpr_comp_cnt = 2; |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 800 | } else if (info->vs.needs_instance_id) { |
Bas Nieuwenhuizen | 2e763f7 | 2019-08-21 01:50:53 +0200 | [diff] [blame] | 801 | vgpr_comp_cnt = 1; |
Samuel Pitoiset | d8b079e | 2019-06-26 15:11:03 +0200 | [diff] [blame] | 802 | } else { |
| 803 | vgpr_comp_cnt = 0; |
| 804 | } |
Bas Nieuwenhuizen | aeb5b1a | 2019-07-06 12:31:25 +0200 | [diff] [blame] | 805 | |
| 806 | config_out->rsrc1 |= S_00B128_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10); |
Timur Kristóf | 83eebdb | 2019-09-13 15:53:09 +0200 | [diff] [blame] | 807 | config_out->rsrc2 |= S_00B12C_SHARED_VGPR_CNT(num_shared_vgpr_blocks); |
Samuel Pitoiset | d8b079e | 2019-06-26 15:11:03 +0200 | [diff] [blame] | 808 | } |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 809 | break; |
| 810 | case MESA_SHADER_FRAGMENT: |
Bas Nieuwenhuizen | aeb5b1a | 2019-07-06 12:31:25 +0200 | [diff] [blame] | 811 | config_out->rsrc1 |= S_00B028_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10); |
Timur Kristóf | 83eebdb | 2019-09-13 15:53:09 +0200 | [diff] [blame] | 812 | config_out->rsrc2 |= S_00B02C_SHARED_VGPR_CNT(num_shared_vgpr_blocks); |
Bas Nieuwenhuizen | aeb5b1a | 2019-07-06 12:31:25 +0200 | [diff] [blame] | 813 | break; |
Samuel Pitoiset | f4d2c47 | 2019-06-26 15:11:01 +0200 | [diff] [blame] | 814 | case MESA_SHADER_GEOMETRY: |
Samuel Pitoiset | e68b55f | 2019-07-12 12:17:16 +0200 | [diff] [blame] | 815 | config_out->rsrc1 |= S_00B228_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) | |
| 816 | S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10); |
Timur Kristóf | 83eebdb | 2019-09-13 15:53:09 +0200 | [diff] [blame] | 817 | config_out->rsrc2 |= S_00B22C_SHARED_VGPR_CNT(num_shared_vgpr_blocks); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 818 | break; |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 819 | case MESA_SHADER_COMPUTE: |
Samuel Pitoiset | e68b55f | 2019-07-12 12:17:16 +0200 | [diff] [blame] | 820 | config_out->rsrc1 |= S_00B848_MEM_ORDERED(pdevice->rad_info.chip_class >= GFX10) | |
| 821 | S_00B848_WGP_MODE(pdevice->rad_info.chip_class >= GFX10); |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 822 | config_out->rsrc2 |= |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 823 | S_00B84C_TGID_X_EN(info->cs.uses_block_id[0]) | |
| 824 | S_00B84C_TGID_Y_EN(info->cs.uses_block_id[1]) | |
| 825 | S_00B84C_TGID_Z_EN(info->cs.uses_block_id[2]) | |
| 826 | S_00B84C_TIDIG_COMP_CNT(info->cs.uses_thread_id[2] ? 2 : |
| 827 | info->cs.uses_thread_id[1] ? 1 : 0) | |
| 828 | S_00B84C_TG_SIZE_EN(info->cs.uses_local_invocation_idx) | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 829 | S_00B84C_LDS_SIZE(config_in->lds_size); |
Timur Kristóf | 83eebdb | 2019-09-13 15:53:09 +0200 | [diff] [blame] | 830 | config_out->rsrc3 |= S_00B8A0_SHARED_VGPR_CNT(num_shared_vgpr_blocks); |
| 831 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 832 | break; |
| 833 | default: |
| 834 | unreachable("unsupported shader type"); |
| 835 | break; |
| 836 | } |
| 837 | |
Samuel Pitoiset | edf1af6 | 2019-07-16 16:39:16 +0200 | [diff] [blame] | 838 | if (pdevice->rad_info.chip_class >= GFX10 && info->is_ngg && |
Samuel Pitoiset | 3f50007 | 2019-07-09 08:44:01 +0200 | [diff] [blame] | 839 | (stage == MESA_SHADER_VERTEX || stage == MESA_SHADER_TESS_EVAL || stage == MESA_SHADER_GEOMETRY)) { |
Samuel Pitoiset | ee21bd7 | 2019-07-05 08:33:06 +0200 | [diff] [blame] | 840 | unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt; |
Bas Nieuwenhuizen | 7286865 | 2019-07-11 08:44:15 +0200 | [diff] [blame] | 841 | gl_shader_stage es_stage = stage; |
| 842 | if (stage == MESA_SHADER_GEOMETRY) |
| 843 | es_stage = info->gs.es_type; |
Samuel Pitoiset | ee21bd7 | 2019-07-05 08:33:06 +0200 | [diff] [blame] | 844 | |
| 845 | /* VGPR5-8: (VertexID, UserVGPR0, UserVGPR1, UserVGPR2 / InstanceID) */ |
Bas Nieuwenhuizen | 7286865 | 2019-07-11 08:44:15 +0200 | [diff] [blame] | 846 | if (es_stage == MESA_SHADER_VERTEX) { |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 847 | es_vgpr_comp_cnt = info->vs.needs_instance_id ? 3 : 0; |
Bas Nieuwenhuizen | 7286865 | 2019-07-11 08:44:15 +0200 | [diff] [blame] | 848 | } else if (es_stage == MESA_SHADER_TESS_EVAL) { |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 849 | bool enable_prim_id = info->tes.export_prim_id || info->uses_prim_id; |
Samuel Pitoiset | d2a8b63 | 2019-07-09 08:27:30 +0200 | [diff] [blame] | 850 | es_vgpr_comp_cnt = enable_prim_id ? 3 : 2; |
Bas Nieuwenhuizen | 451f030 | 2019-07-19 00:00:03 +0200 | [diff] [blame] | 851 | } else |
| 852 | unreachable("Unexpected ES shader stage"); |
Bas Nieuwenhuizen | 795adbb | 2019-07-08 23:44:32 +0200 | [diff] [blame] | 853 | |
| 854 | bool tes_triangles = stage == MESA_SHADER_TESS_EVAL && |
| 855 | info->tes.primitive_mode >= 4; /* GL_TRIANGLES */ |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 856 | if (info->uses_invocation_id || stage == MESA_SHADER_VERTEX) { |
Bas Nieuwenhuizen | 795adbb | 2019-07-08 23:44:32 +0200 | [diff] [blame] | 857 | gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */ |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 858 | } else if (info->uses_prim_id) { |
Bas Nieuwenhuizen | 795adbb | 2019-07-08 23:44:32 +0200 | [diff] [blame] | 859 | gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */ |
| 860 | } else if (info->gs.vertices_in >= 3 || tes_triangles) { |
| 861 | gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */ |
| 862 | } else { |
| 863 | gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */ |
| 864 | } |
Samuel Pitoiset | ee21bd7 | 2019-07-05 08:33:06 +0200 | [diff] [blame] | 865 | |
Samuel Pitoiset | e68b55f | 2019-07-12 12:17:16 +0200 | [diff] [blame] | 866 | config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt) | |
| 867 | S_00B228_WGP_MODE(1); |
Samuel Pitoiset | ee21bd7 | 2019-07-05 08:33:06 +0200 | [diff] [blame] | 868 | config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) | |
Samuel Pitoiset | ed12be1 | 2019-07-15 18:46:48 +0200 | [diff] [blame] | 869 | S_00B22C_LDS_SIZE(config_in->lds_size) | |
| 870 | S_00B22C_OC_LDS_EN(es_stage == MESA_SHADER_TESS_EVAL); |
Samuel Pitoiset | ee21bd7 | 2019-07-05 08:33:06 +0200 | [diff] [blame] | 871 | } else if (pdevice->rad_info.chip_class >= GFX9 && |
| 872 | stage == MESA_SHADER_GEOMETRY) { |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 873 | unsigned es_type = info->gs.es_type; |
Samuel Pitoiset | 4e701cf | 2018-01-09 16:01:10 +0100 | [diff] [blame] | 874 | unsigned gs_vgpr_comp_cnt, es_vgpr_comp_cnt; |
| 875 | |
| 876 | if (es_type == MESA_SHADER_VERTEX) { |
Samuel Pitoiset | d8b079e | 2019-06-26 15:11:03 +0200 | [diff] [blame] | 877 | /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */ |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 878 | if (info->vs.needs_instance_id) { |
Samuel Pitoiset | ea337c8 | 2019-07-23 11:52:36 +0200 | [diff] [blame] | 879 | es_vgpr_comp_cnt = pdevice->rad_info.chip_class >= GFX10 ? 3 : 1; |
| 880 | } else { |
| 881 | es_vgpr_comp_cnt = 0; |
| 882 | } |
Samuel Pitoiset | 4e701cf | 2018-01-09 16:01:10 +0100 | [diff] [blame] | 883 | } else if (es_type == MESA_SHADER_TESS_EVAL) { |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 884 | es_vgpr_comp_cnt = info->uses_prim_id ? 3 : 2; |
Samuel Pitoiset | 4e701cf | 2018-01-09 16:01:10 +0100 | [diff] [blame] | 885 | } else { |
Bas Nieuwenhuizen | 0f89f9b | 2018-01-17 23:23:02 +0100 | [diff] [blame] | 886 | unreachable("invalid shader ES type"); |
Samuel Pitoiset | 4e701cf | 2018-01-09 16:01:10 +0100 | [diff] [blame] | 887 | } |
Samuel Pitoiset | 2670ebb | 2017-12-20 20:56:57 +0100 | [diff] [blame] | 888 | |
| 889 | /* If offsets 4, 5 are used, GS_VGPR_COMP_CNT is ignored and |
| 890 | * VGPR[0:4] are always loaded. |
| 891 | */ |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 892 | if (info->uses_invocation_id) { |
Samuel Pitoiset | 2670ebb | 2017-12-20 20:56:57 +0100 | [diff] [blame] | 893 | gs_vgpr_comp_cnt = 3; /* VGPR3 contains InvocationID. */ |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 894 | } else if (info->uses_prim_id) { |
Samuel Pitoiset | 2670ebb | 2017-12-20 20:56:57 +0100 | [diff] [blame] | 895 | gs_vgpr_comp_cnt = 2; /* VGPR2 contains PrimitiveID. */ |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 896 | } else if (info->gs.vertices_in >= 3) { |
Samuel Pitoiset | b462ceb | 2018-01-05 17:18:52 +0100 | [diff] [blame] | 897 | gs_vgpr_comp_cnt = 1; /* VGPR1 contains offsets 2, 3 */ |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 898 | } else { |
Samuel Pitoiset | b462ceb | 2018-01-05 17:18:52 +0100 | [diff] [blame] | 899 | gs_vgpr_comp_cnt = 0; /* VGPR0 contains offsets 0, 1 */ |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 900 | } |
Samuel Pitoiset | 2670ebb | 2017-12-20 20:56:57 +0100 | [diff] [blame] | 901 | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 902 | config_out->rsrc1 |= S_00B228_GS_VGPR_COMP_CNT(gs_vgpr_comp_cnt); |
| 903 | config_out->rsrc2 |= S_00B22C_ES_VGPR_COMP_CNT(es_vgpr_comp_cnt) | |
Bas Nieuwenhuizen | 7469516 | 2019-06-30 01:47:30 +0200 | [diff] [blame] | 904 | S_00B22C_OC_LDS_EN(es_type == MESA_SHADER_TESS_EVAL); |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 905 | } else if (pdevice->rad_info.chip_class >= GFX9 && |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 906 | stage == MESA_SHADER_TESS_CTRL) { |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 907 | config_out->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt); |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 908 | } else { |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 909 | config_out->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt); |
Samuel Pitoiset | 3a410f0 | 2018-05-11 09:46:46 +0200 | [diff] [blame] | 910 | } |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 911 | } |
| 912 | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 913 | struct radv_shader_variant * |
| 914 | radv_shader_variant_create(struct radv_device *device, |
Bas Nieuwenhuizen | 8874af8 | 2019-05-31 01:06:27 +0200 | [diff] [blame] | 915 | const struct radv_shader_binary *binary, |
| 916 | bool keep_shader_info) |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 917 | { |
| 918 | struct ac_shader_config config = {0}; |
| 919 | struct ac_rtld_binary rtld_binary = {0}; |
| 920 | struct radv_shader_variant *variant = calloc(1, sizeof(struct radv_shader_variant)); |
| 921 | if (!variant) |
| 922 | return NULL; |
| 923 | |
| 924 | variant->ref_count = 1; |
| 925 | |
| 926 | if (binary->type == RADV_BINARY_TYPE_RTLD) { |
Samuel Pitoiset | 5387667 | 2019-09-03 13:01:54 +0200 | [diff] [blame] | 927 | struct ac_rtld_symbol lds_symbols[2]; |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 928 | unsigned num_lds_symbols = 0; |
| 929 | const char *elf_data = (const char *)((struct radv_shader_binary_rtld *)binary)->data; |
| 930 | size_t elf_size = ((struct radv_shader_binary_rtld *)binary)->elf_size; |
| 931 | |
| 932 | if (device->physical_device->rad_info.chip_class >= GFX9 && |
Samuel Pitoiset | 5387667 | 2019-09-03 13:01:54 +0200 | [diff] [blame] | 933 | (binary->stage == MESA_SHADER_GEOMETRY || binary->info.is_ngg) && |
| 934 | !binary->is_gs_copy_shader) { |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 935 | /* We add this symbol even on LLVM <= 8 to ensure that |
| 936 | * shader->config.lds_size is set correctly below. |
| 937 | */ |
| 938 | struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++]; |
| 939 | sym->name = "esgs_ring"; |
Samuel Pitoiset | a2a68d5 | 2019-09-18 09:58:54 +0200 | [diff] [blame] | 940 | sym->size = binary->info.ngg_info.esgs_ring_size; |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 941 | sym->align = 64 * 1024; |
Samuel Pitoiset | 5387667 | 2019-09-03 13:01:54 +0200 | [diff] [blame] | 942 | } |
Samuel Pitoiset | 5bbcb3f | 2019-07-11 08:44:16 +0200 | [diff] [blame] | 943 | |
Samuel Pitoiset | 5387667 | 2019-09-03 13:01:54 +0200 | [diff] [blame] | 944 | if (binary->info.is_ngg && |
| 945 | binary->stage == MESA_SHADER_GEOMETRY) { |
| 946 | struct ac_rtld_symbol *sym = &lds_symbols[num_lds_symbols++]; |
| 947 | sym->name = "ngg_emit"; |
| 948 | sym->size = binary->info.ngg_info.ngg_emit_size * 4; |
| 949 | sym->align = 4; |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 950 | } |
Samuel Pitoiset | ea38565 | 2019-07-30 18:32:42 +0200 | [diff] [blame] | 951 | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 952 | struct ac_rtld_open_info open_info = { |
| 953 | .info = &device->physical_device->rad_info, |
| 954 | .shader_type = binary->stage, |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 955 | .wave_size = binary->info.wave_size, |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 956 | .num_parts = 1, |
| 957 | .elf_ptrs = &elf_data, |
| 958 | .elf_sizes = &elf_size, |
| 959 | .num_shared_lds_symbols = num_lds_symbols, |
| 960 | .shared_lds_symbols = lds_symbols, |
| 961 | }; |
| 962 | |
| 963 | if (!ac_rtld_open(&rtld_binary, open_info)) { |
| 964 | free(variant); |
| 965 | return NULL; |
| 966 | } |
| 967 | |
| 968 | if (!ac_rtld_read_config(&rtld_binary, &config)) { |
| 969 | ac_rtld_close(&rtld_binary); |
| 970 | free(variant); |
| 971 | return NULL; |
| 972 | } |
| 973 | |
| 974 | if (rtld_binary.lds_size > 0) { |
| 975 | unsigned alloc_granularity = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256; |
| 976 | config.lds_size = align(rtld_binary.lds_size, alloc_granularity) / alloc_granularity; |
| 977 | } |
| 978 | |
| 979 | variant->code_size = rtld_binary.rx_size; |
Connor Abbott | 5dadbab | 2019-08-29 17:15:46 +0200 | [diff] [blame] | 980 | variant->exec_size = rtld_binary.exec_size; |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 981 | } else { |
| 982 | assert(binary->type == RADV_BINARY_TYPE_LEGACY); |
| 983 | config = ((struct radv_shader_binary_legacy *)binary)->config; |
Connor Abbott | 5dadbab | 2019-08-29 17:15:46 +0200 | [diff] [blame] | 984 | variant->code_size = radv_get_shader_binary_size(((struct radv_shader_binary_legacy *)binary)->code_size); |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 985 | variant->exec_size = ((struct radv_shader_binary_legacy *)binary)->exec_size; |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 986 | } |
| 987 | |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 988 | variant->info = binary->info; |
| 989 | radv_postprocess_config(device->physical_device, &config, &binary->info, |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 990 | binary->stage, &variant->config); |
Timothy Arceri | 07692f7 | 2019-07-31 13:57:16 +1000 | [diff] [blame] | 991 | |
| 992 | if (radv_device_use_secure_compile(device->instance)) { |
| 993 | if (binary->type == RADV_BINARY_TYPE_RTLD) |
| 994 | ac_rtld_close(&rtld_binary); |
| 995 | |
| 996 | return variant; |
| 997 | } |
| 998 | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 999 | void *dest_ptr = radv_alloc_shader_memory(device, variant); |
| 1000 | |
| 1001 | if (binary->type == RADV_BINARY_TYPE_RTLD) { |
| 1002 | struct radv_shader_binary_rtld* bin = (struct radv_shader_binary_rtld *)binary; |
| 1003 | struct ac_rtld_upload_info info = { |
| 1004 | .binary = &rtld_binary, |
| 1005 | .rx_va = radv_buffer_get_va(variant->bo) + variant->bo_offset, |
| 1006 | .rx_ptr = dest_ptr, |
| 1007 | }; |
| 1008 | |
| 1009 | if (!ac_rtld_upload(&info)) { |
| 1010 | radv_shader_variant_destroy(device, variant); |
| 1011 | ac_rtld_close(&rtld_binary); |
| 1012 | return NULL; |
| 1013 | } |
| 1014 | |
Bas Nieuwenhuizen | 8874af8 | 2019-05-31 01:06:27 +0200 | [diff] [blame] | 1015 | if (keep_shader_info || |
Samuel Pitoiset | 9343c93 | 2019-07-23 09:55:24 +0200 | [diff] [blame] | 1016 | (device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS)) { |
Timothy Arceri | a20a9d0 | 2019-07-17 14:20:55 +1000 | [diff] [blame] | 1017 | const char *disasm_data; |
| 1018 | size_t disasm_size; |
| 1019 | if (!ac_rtld_get_section_by_name(&rtld_binary, ".AMDGPU.disasm", &disasm_data, &disasm_size)) { |
| 1020 | radv_shader_variant_destroy(device, variant); |
| 1021 | ac_rtld_close(&rtld_binary); |
| 1022 | return NULL; |
| 1023 | } |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1024 | |
Rhys Perry | 3c966fd | 2019-09-25 11:48:04 +0100 | [diff] [blame] | 1025 | variant->ir_string = bin->llvm_ir_size ? strdup((const char*)(bin->data + bin->elf_size)) : NULL; |
Timothy Arceri | a20a9d0 | 2019-07-17 14:20:55 +1000 | [diff] [blame] | 1026 | variant->disasm_string = malloc(disasm_size + 1); |
| 1027 | memcpy(variant->disasm_string, disasm_data, disasm_size); |
| 1028 | variant->disasm_string[disasm_size] = 0; |
| 1029 | } |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1030 | |
| 1031 | ac_rtld_close(&rtld_binary); |
| 1032 | } else { |
| 1033 | struct radv_shader_binary_legacy* bin = (struct radv_shader_binary_legacy *)binary; |
| 1034 | memcpy(dest_ptr, bin->data, bin->code_size); |
| 1035 | |
| 1036 | /* Add end-of-code markers for the UMR disassembler. */ |
| 1037 | uint32_t *ptr32 = (uint32_t *)dest_ptr + bin->code_size / 4; |
| 1038 | for (unsigned i = 0; i < DEBUGGER_NUM_MARKERS; i++) |
| 1039 | ptr32[i] = DEBUGGER_END_OF_CODE_MARKER; |
| 1040 | |
Rhys Perry | 3c966fd | 2019-09-25 11:48:04 +0100 | [diff] [blame] | 1041 | variant->ir_string = bin->ir_size ? strdup((const char*)(bin->data + bin->code_size)) : NULL; |
| 1042 | variant->disasm_string = bin->disasm_size ? strdup((const char*)(bin->data + bin->code_size + bin->ir_size)) : NULL; |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1043 | } |
| 1044 | return variant; |
| 1045 | } |
| 1046 | |
Bas Nieuwenhuizen | 5444d3e | 2019-06-01 20:54:35 +0200 | [diff] [blame] | 1047 | static char * |
| 1048 | radv_dump_nir_shaders(struct nir_shader * const *shaders, |
| 1049 | int shader_count) |
| 1050 | { |
| 1051 | char *data = NULL; |
| 1052 | char *ret = NULL; |
| 1053 | size_t size = 0; |
| 1054 | FILE *f = open_memstream(&data, &size); |
| 1055 | if (f) { |
| 1056 | for (int i = 0; i < shader_count; ++i) |
| 1057 | nir_print_shader(shaders[i], f); |
| 1058 | fclose(f); |
| 1059 | } |
| 1060 | |
| 1061 | ret = malloc(size + 1); |
| 1062 | if (ret) { |
| 1063 | memcpy(ret, data, size); |
| 1064 | ret[size] = 0; |
| 1065 | } |
| 1066 | free(data); |
| 1067 | return ret; |
| 1068 | } |
| 1069 | |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1070 | static struct radv_shader_variant * |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1071 | shader_variant_compile(struct radv_device *device, |
| 1072 | struct radv_shader_module *module, |
| 1073 | struct nir_shader * const *shaders, |
| 1074 | int shader_count, |
| 1075 | gl_shader_stage stage, |
Samuel Pitoiset | a9af11f | 2019-09-03 10:29:19 +0200 | [diff] [blame] | 1076 | struct radv_shader_info *info, |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1077 | struct radv_nir_compiler_options *options, |
| 1078 | bool gs_copy_shader, |
Bas Nieuwenhuizen | 8874af8 | 2019-05-31 01:06:27 +0200 | [diff] [blame] | 1079 | bool keep_shader_info, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 1080 | bool use_aco, |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1081 | struct radv_shader_binary **binary_out) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1082 | { |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1083 | enum radeon_family chip_family = device->physical_device->rad_info.family; |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1084 | struct radv_shader_binary *binary = NULL; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1085 | |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1086 | options->family = chip_family; |
| 1087 | options->chip_class = device->physical_device->rad_info.chip_class; |
Samuel Pitoiset | 8ade3e4 | 2018-05-11 16:36:02 +0200 | [diff] [blame] | 1088 | options->dump_shader = radv_can_dump_shader(device, module, gs_copy_shader); |
Samuel Pitoiset | d07edf5 | 2018-03-14 10:28:49 +0100 | [diff] [blame] | 1089 | options->dump_preoptir = options->dump_shader && |
Samuel Pitoiset | 33e6e5e | 2018-01-19 12:12:02 +0100 | [diff] [blame] | 1090 | device->instance->debug_flags & RADV_DEBUG_PREOPTIR; |
Rhys Perry | 3c966fd | 2019-09-25 11:48:04 +0100 | [diff] [blame] | 1091 | options->record_ir = keep_shader_info; |
Samuel Pitoiset | bfca15e | 2018-06-14 14:28:58 +0200 | [diff] [blame] | 1092 | options->check_ir = device->instance->debug_flags & RADV_DEBUG_CHECKIR; |
Dave Airlie | 010d055 | 2018-02-19 07:14:04 +0000 | [diff] [blame] | 1093 | options->tess_offchip_block_dw_size = device->tess_offchip_block_dw_size; |
Samuel Pitoiset | d8a61d3 | 2018-05-16 16:02:04 +0200 | [diff] [blame] | 1094 | options->address32_hi = device->physical_device->rad_info.address32_hi; |
Samuel Pitoiset | 49f5ddd | 2019-08-23 08:55:53 +0200 | [diff] [blame] | 1095 | options->has_ls_vgpr_init_bug = device->physical_device->rad_info.has_ls_vgpr_init_bug; |
Samuel Pitoiset | a15b3bc | 2019-09-09 10:23:30 +0200 | [diff] [blame] | 1096 | options->use_ngg_streamout = device->physical_device->use_ngg_streamout; |
Bas Nieuwenhuizen | 035406e | 2019-08-04 00:48:05 +0200 | [diff] [blame] | 1097 | |
Rhys Perry | 3c966fd | 2019-09-25 11:48:04 +0100 | [diff] [blame] | 1098 | if (!use_aco || options->dump_shader || options->record_ir) |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 1099 | ac_init_llvm_once(); |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1100 | |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 1101 | if (use_aco) { |
| 1102 | aco_compile_shader(shader_count, shaders, &binary, info, options); |
| 1103 | binary->info = *info; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1104 | } else { |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 1105 | enum ac_target_machine_options tm_options = 0; |
| 1106 | struct ac_llvm_compiler ac_llvm; |
| 1107 | bool thread_compiler; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1108 | |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 1109 | if (options->supports_spill) |
| 1110 | tm_options |= AC_TM_SUPPORTS_SPILL; |
| 1111 | if (device->instance->perftest_flags & RADV_PERFTEST_SISCHED) |
| 1112 | tm_options |= AC_TM_SISCHED; |
| 1113 | if (options->check_ir) |
| 1114 | tm_options |= AC_TM_CHECK_IR; |
| 1115 | if (device->instance->debug_flags & RADV_DEBUG_NO_LOAD_STORE_OPT) |
| 1116 | tm_options |= AC_TM_NO_LOAD_STORE_OPT; |
| 1117 | |
| 1118 | thread_compiler = !(device->instance->debug_flags & RADV_DEBUG_NOTHREADLLVM); |
| 1119 | radv_init_llvm_compiler(&ac_llvm, |
| 1120 | thread_compiler, |
| 1121 | chip_family, tm_options, |
Samuel Pitoiset | d3f9957 | 2019-10-31 10:06:43 +0100 | [diff] [blame] | 1122 | info->wave_size); |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 1123 | |
| 1124 | if (gs_copy_shader) { |
| 1125 | assert(shader_count == 1); |
| 1126 | radv_compile_gs_copy_shader(&ac_llvm, *shaders, &binary, |
| 1127 | info, options); |
| 1128 | } else { |
| 1129 | radv_compile_nir_shader(&ac_llvm, &binary, info, |
| 1130 | shaders, shader_count, options); |
| 1131 | } |
| 1132 | |
| 1133 | binary->info = *info; |
| 1134 | radv_destroy_llvm_compiler(&ac_llvm, thread_compiler); |
| 1135 | } |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1136 | |
Bas Nieuwenhuizen | 8874af8 | 2019-05-31 01:06:27 +0200 | [diff] [blame] | 1137 | struct radv_shader_variant *variant = radv_shader_variant_create(device, binary, |
| 1138 | keep_shader_info); |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1139 | if (!variant) { |
| 1140 | free(binary); |
| 1141 | return NULL; |
| 1142 | } |
Rhys Perry | ec8ced9 | 2019-09-24 15:25:07 +0100 | [diff] [blame] | 1143 | variant->aco_used = use_aco; |
Samuel Pitoiset | 885d757 | 2017-09-01 13:45:33 +0200 | [diff] [blame] | 1144 | |
Bas Nieuwenhuizen | 5ff651c | 2019-07-01 02:19:13 +0200 | [diff] [blame] | 1145 | if (options->dump_shader) { |
| 1146 | fprintf(stderr, "disasm:\n%s\n", variant->disasm_string); |
| 1147 | } |
| 1148 | |
| 1149 | |
Bas Nieuwenhuizen | 8874af8 | 2019-05-31 01:06:27 +0200 | [diff] [blame] | 1150 | if (keep_shader_info) { |
Bas Nieuwenhuizen | 5444d3e | 2019-06-01 20:54:35 +0200 | [diff] [blame] | 1151 | variant->nir_string = radv_dump_nir_shaders(shaders, shader_count); |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 1152 | if (!gs_copy_shader && !module->nir) { |
Samuel Pitoiset | d4e0bef | 2019-10-28 16:56:15 +0100 | [diff] [blame] | 1153 | variant->spirv = malloc(module->size); |
| 1154 | if (!variant->spirv) { |
| 1155 | free(variant); |
| 1156 | free(binary); |
| 1157 | return NULL; |
| 1158 | } |
| 1159 | |
| 1160 | memcpy(variant->spirv, module->data, module->size); |
Samuel Pitoiset | 844ae72 | 2017-09-22 16:56:40 +0200 | [diff] [blame] | 1161 | variant->spirv_size = module->size; |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 1162 | } |
Samuel Pitoiset | 885d757 | 2017-09-01 13:45:33 +0200 | [diff] [blame] | 1163 | } |
| 1164 | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1165 | if (binary_out) |
| 1166 | *binary_out = binary; |
| 1167 | else |
| 1168 | free(binary); |
| 1169 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1170 | return variant; |
| 1171 | } |
| 1172 | |
| 1173 | struct radv_shader_variant * |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1174 | radv_shader_variant_compile(struct radv_device *device, |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 1175 | struct radv_shader_module *module, |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 1176 | struct nir_shader *const *shaders, |
| 1177 | int shader_count, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1178 | struct radv_pipeline_layout *layout, |
Samuel Pitoiset | fbe6945 | 2018-03-13 14:54:04 +0100 | [diff] [blame] | 1179 | const struct radv_shader_variant_key *key, |
Samuel Pitoiset | a9af11f | 2019-09-03 10:29:19 +0200 | [diff] [blame] | 1180 | struct radv_shader_info *info, |
Bas Nieuwenhuizen | 8874af8 | 2019-05-31 01:06:27 +0200 | [diff] [blame] | 1181 | bool keep_shader_info, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 1182 | bool use_aco, |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1183 | struct radv_shader_binary **binary_out) |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1184 | { |
Samuel Pitoiset | fbe6945 | 2018-03-13 14:54:04 +0100 | [diff] [blame] | 1185 | struct radv_nir_compiler_options options = {0}; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1186 | |
| 1187 | options.layout = layout; |
| 1188 | if (key) |
| 1189 | options.key = *key; |
| 1190 | |
Timothy Arceri | 7664aaf | 2017-10-11 11:59:20 +1100 | [diff] [blame] | 1191 | options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH); |
Samuel Pitoiset | 1e86eaf | 2018-05-17 09:56:47 +0200 | [diff] [blame] | 1192 | options.supports_spill = true; |
Bas Nieuwenhuizen | 72e7b7a | 2019-08-02 12:40:17 +0200 | [diff] [blame] | 1193 | options.robust_buffer_access = device->robust_buffer_access; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1194 | |
Samuel Pitoiset | a9af11f | 2019-09-03 10:29:19 +0200 | [diff] [blame] | 1195 | return shader_variant_compile(device, module, shaders, shader_count, shaders[shader_count - 1]->info.stage, info, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 1196 | &options, false, keep_shader_info, use_aco, binary_out); |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1197 | } |
| 1198 | |
| 1199 | struct radv_shader_variant * |
| 1200 | radv_create_gs_copy_shader(struct radv_device *device, |
| 1201 | struct nir_shader *shader, |
Samuel Pitoiset | a9af11f | 2019-09-03 10:29:19 +0200 | [diff] [blame] | 1202 | struct radv_shader_info *info, |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1203 | struct radv_shader_binary **binary_out, |
Bas Nieuwenhuizen | 8874af8 | 2019-05-31 01:06:27 +0200 | [diff] [blame] | 1204 | bool keep_shader_info, |
Samuel Pitoiset | 47efc52 | 2017-09-01 12:09:56 +0200 | [diff] [blame] | 1205 | bool multiview) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1206 | { |
Samuel Pitoiset | fbe6945 | 2018-03-13 14:54:04 +0100 | [diff] [blame] | 1207 | struct radv_nir_compiler_options options = {0}; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 1208 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1209 | options.key.has_multiview_view_index = multiview; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1210 | |
Bas Nieuwenhuizen | 726a31d | 2019-07-01 01:29:24 +0200 | [diff] [blame] | 1211 | return shader_variant_compile(device, NULL, &shader, 1, MESA_SHADER_VERTEX, |
Daniel Schürmann | a70a998 | 2019-09-17 14:35:22 +0200 | [diff] [blame] | 1212 | info, &options, true, keep_shader_info, false, binary_out); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1213 | } |
| 1214 | |
| 1215 | void |
| 1216 | radv_shader_variant_destroy(struct radv_device *device, |
| 1217 | struct radv_shader_variant *variant) |
| 1218 | { |
| 1219 | if (!p_atomic_dec_zero(&variant->ref_count)) |
| 1220 | return; |
| 1221 | |
| 1222 | mtx_lock(&device->shader_slab_mutex); |
| 1223 | list_del(&variant->slab_list); |
| 1224 | mtx_unlock(&device->shader_slab_mutex); |
| 1225 | |
Samuel Pitoiset | d4e0bef | 2019-10-28 16:56:15 +0100 | [diff] [blame] | 1226 | free(variant->spirv); |
Bas Nieuwenhuizen | 5444d3e | 2019-06-01 20:54:35 +0200 | [diff] [blame] | 1227 | free(variant->nir_string); |
Samuel Pitoiset | 885d757 | 2017-09-01 13:45:33 +0200 | [diff] [blame] | 1228 | free(variant->disasm_string); |
Rhys Perry | 3c966fd | 2019-09-25 11:48:04 +0100 | [diff] [blame] | 1229 | free(variant->ir_string); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1230 | free(variant); |
| 1231 | } |
| 1232 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1233 | const char * |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 1234 | radv_get_shader_name(struct radv_shader_info *info, |
Samuel Pitoiset | 2b6a089 | 2019-07-11 18:03:55 +0200 | [diff] [blame] | 1235 | gl_shader_stage stage) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1236 | { |
| 1237 | switch (stage) { |
Samuel Pitoiset | 2b6a089 | 2019-07-11 18:03:55 +0200 | [diff] [blame] | 1238 | case MESA_SHADER_VERTEX: |
| 1239 | if (info->vs.as_ls) |
| 1240 | return "Vertex Shader as LS"; |
| 1241 | else if (info->vs.as_es) |
| 1242 | return "Vertex Shader as ES"; |
| 1243 | else if (info->is_ngg) |
| 1244 | return "Vertex Shader as ESGS"; |
| 1245 | else |
| 1246 | return "Vertex Shader as VS"; |
| 1247 | case MESA_SHADER_TESS_CTRL: |
| 1248 | return "Tessellation Control Shader"; |
| 1249 | case MESA_SHADER_TESS_EVAL: |
| 1250 | if (info->tes.as_es) |
| 1251 | return "Tessellation Evaluation Shader as ES"; |
| 1252 | else if (info->is_ngg) |
| 1253 | return "Tessellation Evaluation Shader as ESGS"; |
| 1254 | else |
| 1255 | return "Tessellation Evaluation Shader as VS"; |
| 1256 | case MESA_SHADER_GEOMETRY: |
| 1257 | return "Geometry Shader"; |
| 1258 | case MESA_SHADER_FRAGMENT: |
| 1259 | return "Pixel Shader"; |
| 1260 | case MESA_SHADER_COMPUTE: |
| 1261 | return "Compute Shader"; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 1262 | default: |
| 1263 | return "Unknown shader"; |
| 1264 | }; |
| 1265 | } |
| 1266 | |
Bas Nieuwenhuizen | 739a288 | 2019-06-01 20:25:47 +0200 | [diff] [blame] | 1267 | unsigned |
| 1268 | radv_get_max_workgroup_size(enum chip_class chip_class, |
| 1269 | gl_shader_stage stage, |
| 1270 | const unsigned *sizes) |
| 1271 | { |
| 1272 | switch (stage) { |
| 1273 | case MESA_SHADER_TESS_CTRL: |
| 1274 | return chip_class >= GFX7 ? 128 : 64; |
| 1275 | case MESA_SHADER_GEOMETRY: |
| 1276 | return chip_class >= GFX9 ? 128 : 64; |
| 1277 | case MESA_SHADER_COMPUTE: |
| 1278 | break; |
| 1279 | default: |
| 1280 | return 0; |
| 1281 | } |
| 1282 | |
| 1283 | unsigned max_workgroup_size = sizes[0] * sizes[1] * sizes[2]; |
| 1284 | return max_workgroup_size; |
| 1285 | } |
Bas Nieuwenhuizen | 290ca0c | 2019-06-01 18:46:21 +0200 | [diff] [blame] | 1286 | |
| 1287 | unsigned |
| 1288 | radv_get_max_waves(struct radv_device *device, |
| 1289 | struct radv_shader_variant *variant, |
| 1290 | gl_shader_stage stage) |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1291 | { |
Timothy Arceri | 9b9ccee | 2019-02-01 22:04:39 +1100 | [diff] [blame] | 1292 | enum chip_class chip_class = device->physical_device->rad_info.chip_class; |
Marek Olšák | ccfcb9d | 2019-05-14 22:16:20 -0400 | [diff] [blame] | 1293 | unsigned lds_increment = chip_class >= GFX7 ? 512 : 256; |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 1294 | uint8_t wave_size = variant->info.wave_size; |
Bas Nieuwenhuizen | 290ca0c | 2019-06-01 18:46:21 +0200 | [diff] [blame] | 1295 | struct ac_shader_config *conf = &variant->config; |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1296 | unsigned max_simd_waves; |
| 1297 | unsigned lds_per_wave = 0; |
| 1298 | |
Marek Olšák | ca43006 | 2019-09-12 19:39:02 -0400 | [diff] [blame] | 1299 | max_simd_waves = device->physical_device->rad_info.max_wave64_per_simd; |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1300 | |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1301 | if (stage == MESA_SHADER_FRAGMENT) { |
| 1302 | lds_per_wave = conf->lds_size * lds_increment + |
Samuel Pitoiset | 83499ac | 2019-09-03 17:39:23 +0200 | [diff] [blame] | 1303 | align(variant->info.ps.num_interp * 48, |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1304 | lds_increment); |
Timothy Arceri | 9b9ccee | 2019-02-01 22:04:39 +1100 | [diff] [blame] | 1305 | } else if (stage == MESA_SHADER_COMPUTE) { |
| 1306 | unsigned max_workgroup_size = |
Bas Nieuwenhuizen | 739a288 | 2019-06-01 20:25:47 +0200 | [diff] [blame] | 1307 | radv_get_max_workgroup_size(chip_class, stage, variant->info.cs.block_size); |
Timothy Arceri | 9b9ccee | 2019-02-01 22:04:39 +1100 | [diff] [blame] | 1308 | lds_per_wave = (conf->lds_size * lds_increment) / |
Samuel Pitoiset | ea38565 | 2019-07-30 18:32:42 +0200 | [diff] [blame] | 1309 | DIV_ROUND_UP(max_workgroup_size, wave_size); |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1310 | } |
| 1311 | |
Rhys Perry | 7453c1a | 2019-10-18 21:13:44 +0100 | [diff] [blame] | 1312 | if (conf->num_sgprs) { |
| 1313 | unsigned sgprs = align(conf->num_sgprs, chip_class >= GFX8 ? 16 : 8); |
Samuel Pitoiset | 2f7bb93 | 2018-04-06 14:06:24 +0200 | [diff] [blame] | 1314 | max_simd_waves = |
| 1315 | MIN2(max_simd_waves, |
Marek Olšák | 0692ae3 | 2019-09-12 19:46:02 -0400 | [diff] [blame] | 1316 | device->physical_device->rad_info.num_physical_sgprs_per_simd / |
Rhys Perry | 7453c1a | 2019-10-18 21:13:44 +0100 | [diff] [blame] | 1317 | sgprs); |
| 1318 | } |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1319 | |
Rhys Perry | 7453c1a | 2019-10-18 21:13:44 +0100 | [diff] [blame] | 1320 | if (conf->num_vgprs) { |
| 1321 | unsigned vgprs = align(conf->num_vgprs, wave_size == 32 ? 8 : 4); |
Samuel Pitoiset | 466aba9 | 2018-04-06 14:10:34 +0200 | [diff] [blame] | 1322 | max_simd_waves = |
| 1323 | MIN2(max_simd_waves, |
Rhys Perry | 7453c1a | 2019-10-18 21:13:44 +0100 | [diff] [blame] | 1324 | RADV_NUM_PHYSICAL_VGPRS / vgprs); |
| 1325 | } |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1326 | |
| 1327 | /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD |
| 1328 | * that PS can use. |
| 1329 | */ |
| 1330 | if (lds_per_wave) |
| 1331 | max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave); |
| 1332 | |
Bas Nieuwenhuizen | 290ca0c | 2019-06-01 18:46:21 +0200 | [diff] [blame] | 1333 | return max_simd_waves; |
| 1334 | } |
| 1335 | |
| 1336 | static void |
| 1337 | generate_shader_stats(struct radv_device *device, |
| 1338 | struct radv_shader_variant *variant, |
| 1339 | gl_shader_stage stage, |
| 1340 | struct _mesa_string_buffer *buf) |
| 1341 | { |
| 1342 | struct ac_shader_config *conf = &variant->config; |
| 1343 | unsigned max_simd_waves = radv_get_max_waves(device, variant, stage); |
| 1344 | |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1345 | if (stage == MESA_SHADER_FRAGMENT) { |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1346 | _mesa_string_buffer_printf(buf, "*** SHADER CONFIG ***\n" |
| 1347 | "SPI_PS_INPUT_ADDR = 0x%04x\n" |
| 1348 | "SPI_PS_INPUT_ENA = 0x%04x\n", |
| 1349 | conf->spi_ps_input_addr, conf->spi_ps_input_ena); |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1350 | } |
| 1351 | |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1352 | _mesa_string_buffer_printf(buf, "*** SHADER STATS ***\n" |
| 1353 | "SGPRS: %d\n" |
| 1354 | "VGPRS: %d\n" |
| 1355 | "Spilled SGPRs: %d\n" |
| 1356 | "Spilled VGPRs: %d\n" |
Samuel Pitoiset | e96e6f6 | 2018-03-01 22:12:56 +0100 | [diff] [blame] | 1357 | "PrivMem VGPRS: %d\n" |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1358 | "Code Size: %d bytes\n" |
| 1359 | "LDS: %d blocks\n" |
| 1360 | "Scratch: %d bytes per wave\n" |
| 1361 | "Max Waves: %d\n" |
| 1362 | "********************\n\n\n", |
| 1363 | conf->num_sgprs, conf->num_vgprs, |
Samuel Pitoiset | e96e6f6 | 2018-03-01 22:12:56 +0100 | [diff] [blame] | 1364 | conf->spilled_sgprs, conf->spilled_vgprs, |
Connor Abbott | 5dadbab | 2019-08-29 17:15:46 +0200 | [diff] [blame] | 1365 | variant->info.private_mem_vgprs, variant->exec_size, |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1366 | conf->lds_size, conf->scratch_bytes_per_wave, |
| 1367 | max_simd_waves); |
| 1368 | } |
| 1369 | |
| 1370 | void |
| 1371 | radv_shader_dump_stats(struct radv_device *device, |
| 1372 | struct radv_shader_variant *variant, |
| 1373 | gl_shader_stage stage, |
| 1374 | FILE *file) |
| 1375 | { |
| 1376 | struct _mesa_string_buffer *buf = _mesa_string_buffer_create(NULL, 256); |
| 1377 | |
| 1378 | generate_shader_stats(device, variant, stage, buf); |
| 1379 | |
Samuel Pitoiset | 2b6a089 | 2019-07-11 18:03:55 +0200 | [diff] [blame] | 1380 | fprintf(file, "\n%s:\n", radv_get_shader_name(&variant->info, stage)); |
Alex Smith | 134a40d | 2017-10-30 08:38:14 +0000 | [diff] [blame] | 1381 | fprintf(file, "%s", buf->buf); |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1382 | |
| 1383 | _mesa_string_buffer_destroy(buf); |
| 1384 | } |
| 1385 | |
| 1386 | VkResult |
| 1387 | radv_GetShaderInfoAMD(VkDevice _device, |
| 1388 | VkPipeline _pipeline, |
| 1389 | VkShaderStageFlagBits shaderStage, |
| 1390 | VkShaderInfoTypeAMD infoType, |
| 1391 | size_t* pInfoSize, |
| 1392 | void* pInfo) |
| 1393 | { |
| 1394 | RADV_FROM_HANDLE(radv_device, device, _device); |
| 1395 | RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline); |
| 1396 | gl_shader_stage stage = vk_to_mesa_shader_stage(shaderStage); |
| 1397 | struct radv_shader_variant *variant = pipeline->shaders[stage]; |
| 1398 | struct _mesa_string_buffer *buf; |
| 1399 | VkResult result = VK_SUCCESS; |
| 1400 | |
| 1401 | /* Spec doesn't indicate what to do if the stage is invalid, so just |
| 1402 | * return no info for this. */ |
| 1403 | if (!variant) |
Bas Nieuwenhuizen | 38933c1 | 2018-05-31 01:06:41 +0200 | [diff] [blame] | 1404 | return vk_error(device->instance, VK_ERROR_FEATURE_NOT_PRESENT); |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1405 | |
| 1406 | switch (infoType) { |
| 1407 | case VK_SHADER_INFO_TYPE_STATISTICS_AMD: |
| 1408 | if (!pInfo) { |
| 1409 | *pInfoSize = sizeof(VkShaderStatisticsInfoAMD); |
| 1410 | } else { |
Marek Olšák | ccfcb9d | 2019-05-14 22:16:20 -0400 | [diff] [blame] | 1411 | unsigned lds_multiplier = device->physical_device->rad_info.chip_class >= GFX7 ? 512 : 256; |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1412 | struct ac_shader_config *conf = &variant->config; |
| 1413 | |
| 1414 | VkShaderStatisticsInfoAMD statistics = {}; |
| 1415 | statistics.shaderStageMask = shaderStage; |
Samuel Pitoiset | 466aba9 | 2018-04-06 14:10:34 +0200 | [diff] [blame] | 1416 | statistics.numPhysicalVgprs = RADV_NUM_PHYSICAL_VGPRS; |
Marek Olšák | 0692ae3 | 2019-09-12 19:46:02 -0400 | [diff] [blame] | 1417 | statistics.numPhysicalSgprs = device->physical_device->rad_info.num_physical_sgprs_per_simd; |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1418 | statistics.numAvailableSgprs = statistics.numPhysicalSgprs; |
| 1419 | |
| 1420 | if (stage == MESA_SHADER_COMPUTE) { |
Bas Nieuwenhuizen | 739a288 | 2019-06-01 20:25:47 +0200 | [diff] [blame] | 1421 | unsigned *local_size = variant->info.cs.block_size; |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1422 | unsigned workgroup_size = local_size[0] * local_size[1] * local_size[2]; |
| 1423 | |
| 1424 | statistics.numAvailableVgprs = statistics.numPhysicalVgprs / |
Eric Engestrom | d85fef1 | 2018-06-15 17:49:08 +0100 | [diff] [blame] | 1425 | ceil((double)workgroup_size / statistics.numPhysicalVgprs); |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1426 | |
| 1427 | statistics.computeWorkGroupSize[0] = local_size[0]; |
| 1428 | statistics.computeWorkGroupSize[1] = local_size[1]; |
| 1429 | statistics.computeWorkGroupSize[2] = local_size[2]; |
| 1430 | } else { |
| 1431 | statistics.numAvailableVgprs = statistics.numPhysicalVgprs; |
| 1432 | } |
| 1433 | |
| 1434 | statistics.resourceUsage.numUsedVgprs = conf->num_vgprs; |
| 1435 | statistics.resourceUsage.numUsedSgprs = conf->num_sgprs; |
| 1436 | statistics.resourceUsage.ldsSizePerLocalWorkGroup = 32768; |
| 1437 | statistics.resourceUsage.ldsUsageSizeInBytes = conf->lds_size * lds_multiplier; |
| 1438 | statistics.resourceUsage.scratchMemUsageInBytes = conf->scratch_bytes_per_wave; |
| 1439 | |
| 1440 | size_t size = *pInfoSize; |
| 1441 | *pInfoSize = sizeof(statistics); |
| 1442 | |
| 1443 | memcpy(pInfo, &statistics, MIN2(size, *pInfoSize)); |
| 1444 | |
| 1445 | if (size < *pInfoSize) |
| 1446 | result = VK_INCOMPLETE; |
| 1447 | } |
| 1448 | |
| 1449 | break; |
| 1450 | case VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD: |
| 1451 | buf = _mesa_string_buffer_create(NULL, 1024); |
| 1452 | |
Samuel Pitoiset | 2b6a089 | 2019-07-11 18:03:55 +0200 | [diff] [blame] | 1453 | _mesa_string_buffer_printf(buf, "%s:\n", radv_get_shader_name(&variant->info, stage)); |
Rhys Perry | 3c966fd | 2019-09-25 11:48:04 +0100 | [diff] [blame] | 1454 | _mesa_string_buffer_printf(buf, "%s\n\n", variant->ir_string); |
Alex Smith | de88979 | 2017-10-27 14:25:05 +0100 | [diff] [blame] | 1455 | _mesa_string_buffer_printf(buf, "%s\n\n", variant->disasm_string); |
| 1456 | generate_shader_stats(device, variant, stage, buf); |
| 1457 | |
| 1458 | /* Need to include the null terminator. */ |
| 1459 | size_t length = buf->length + 1; |
| 1460 | |
| 1461 | if (!pInfo) { |
| 1462 | *pInfoSize = length; |
| 1463 | } else { |
| 1464 | size_t size = *pInfoSize; |
| 1465 | *pInfoSize = length; |
| 1466 | |
| 1467 | memcpy(pInfo, buf->buf, MIN2(size, length)); |
| 1468 | |
| 1469 | if (size < length) |
| 1470 | result = VK_INCOMPLETE; |
| 1471 | } |
| 1472 | |
| 1473 | _mesa_string_buffer_destroy(buf); |
| 1474 | break; |
| 1475 | default: |
| 1476 | /* VK_SHADER_INFO_TYPE_BINARY_AMD unimplemented for now. */ |
| 1477 | result = VK_ERROR_FEATURE_NOT_PRESENT; |
| 1478 | break; |
| 1479 | } |
| 1480 | |
| 1481 | return result; |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 1482 | } |