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