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