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