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