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" |
| 33 | #include "nir/nir.h" |
| 34 | #include "nir/nir_builder.h" |
| 35 | #include "spirv/nir_spirv.h" |
| 36 | |
| 37 | #include <llvm-c/Core.h> |
| 38 | #include <llvm-c/TargetMachine.h> |
| 39 | |
| 40 | #include "sid.h" |
| 41 | #include "gfx9d.h" |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 42 | #include "ac_binary.h" |
| 43 | #include "ac_llvm_util.h" |
| 44 | #include "ac_nir_to_llvm.h" |
| 45 | #include "vk_format.h" |
| 46 | #include "util/debug.h" |
| 47 | #include "ac_exp_param.h" |
| 48 | |
| 49 | static const struct nir_shader_compiler_options nir_options = { |
| 50 | .vertex_id_zero_based = true, |
| 51 | .lower_scmp = true, |
| 52 | .lower_flrp32 = true, |
| 53 | .lower_fsat = true, |
| 54 | .lower_fdiv = true, |
| 55 | .lower_sub = true, |
| 56 | .lower_pack_snorm_2x16 = true, |
| 57 | .lower_pack_snorm_4x8 = true, |
| 58 | .lower_pack_unorm_2x16 = true, |
| 59 | .lower_pack_unorm_4x8 = true, |
| 60 | .lower_unpack_snorm_2x16 = true, |
| 61 | .lower_unpack_snorm_4x8 = true, |
| 62 | .lower_unpack_unorm_2x16 = true, |
| 63 | .lower_unpack_unorm_4x8 = true, |
| 64 | .lower_extract_byte = true, |
| 65 | .lower_extract_word = true, |
Dave Airlie | 2c61594 | 2017-10-04 06:33:02 +1000 | [diff] [blame] | 66 | .lower_ffma = true, |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 67 | .max_unroll_iterations = 32 |
| 68 | }; |
| 69 | |
| 70 | VkResult radv_CreateShaderModule( |
| 71 | VkDevice _device, |
| 72 | const VkShaderModuleCreateInfo* pCreateInfo, |
| 73 | const VkAllocationCallbacks* pAllocator, |
| 74 | VkShaderModule* pShaderModule) |
| 75 | { |
| 76 | RADV_FROM_HANDLE(radv_device, device, _device); |
| 77 | struct radv_shader_module *module; |
| 78 | |
| 79 | assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO); |
| 80 | assert(pCreateInfo->flags == 0); |
| 81 | |
| 82 | module = vk_alloc2(&device->alloc, pAllocator, |
| 83 | sizeof(*module) + pCreateInfo->codeSize, 8, |
| 84 | VK_SYSTEM_ALLOCATION_SCOPE_OBJECT); |
| 85 | if (module == NULL) |
| 86 | return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY); |
| 87 | |
| 88 | module->nir = NULL; |
| 89 | module->size = pCreateInfo->codeSize; |
| 90 | memcpy(module->data, pCreateInfo->pCode, module->size); |
| 91 | |
| 92 | _mesa_sha1_compute(module->data, module->size, module->sha1); |
| 93 | |
| 94 | *pShaderModule = radv_shader_module_to_handle(module); |
| 95 | |
| 96 | return VK_SUCCESS; |
| 97 | } |
| 98 | |
| 99 | void radv_DestroyShaderModule( |
| 100 | VkDevice _device, |
| 101 | VkShaderModule _module, |
| 102 | const VkAllocationCallbacks* pAllocator) |
| 103 | { |
| 104 | RADV_FROM_HANDLE(radv_device, device, _device); |
| 105 | RADV_FROM_HANDLE(radv_shader_module, module, _module); |
| 106 | |
| 107 | if (!module) |
| 108 | return; |
| 109 | |
| 110 | vk_free2(&device->alloc, pAllocator, module); |
| 111 | } |
| 112 | |
Bas Nieuwenhuizen | 06f0504 | 2017-02-09 00:12:10 +0100 | [diff] [blame] | 113 | void |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 114 | radv_optimize_nir(struct nir_shader *shader) |
| 115 | { |
| 116 | bool progress; |
| 117 | |
| 118 | do { |
| 119 | progress = false; |
| 120 | |
| 121 | NIR_PASS_V(shader, nir_lower_vars_to_ssa); |
| 122 | NIR_PASS_V(shader, nir_lower_64bit_pack); |
| 123 | NIR_PASS_V(shader, nir_lower_alu_to_scalar); |
| 124 | NIR_PASS_V(shader, nir_lower_phis_to_scalar); |
| 125 | |
| 126 | NIR_PASS(progress, shader, nir_copy_prop); |
| 127 | NIR_PASS(progress, shader, nir_opt_remove_phis); |
| 128 | NIR_PASS(progress, shader, nir_opt_dce); |
| 129 | if (nir_opt_trivial_continues(shader)) { |
| 130 | progress = true; |
| 131 | NIR_PASS(progress, shader, nir_copy_prop); |
Dave Airlie | 64d9bd1 | 2017-09-13 03:49:31 +0100 | [diff] [blame] | 132 | NIR_PASS(progress, shader, nir_opt_remove_phis); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 133 | NIR_PASS(progress, shader, nir_opt_dce); |
| 134 | } |
| 135 | NIR_PASS(progress, shader, nir_opt_if); |
| 136 | NIR_PASS(progress, shader, nir_opt_dead_cf); |
| 137 | NIR_PASS(progress, shader, nir_opt_cse); |
| 138 | NIR_PASS(progress, shader, nir_opt_peephole_select, 8); |
| 139 | NIR_PASS(progress, shader, nir_opt_algebraic); |
| 140 | NIR_PASS(progress, shader, nir_opt_constant_folding); |
| 141 | NIR_PASS(progress, shader, nir_opt_undef); |
| 142 | NIR_PASS(progress, shader, nir_opt_conditional_discard); |
| 143 | if (shader->options->max_unroll_iterations) { |
| 144 | NIR_PASS(progress, shader, nir_opt_loop_unroll, 0); |
| 145 | } |
| 146 | } while (progress); |
| 147 | } |
| 148 | |
| 149 | nir_shader * |
| 150 | radv_shader_compile_to_nir(struct radv_device *device, |
| 151 | struct radv_shader_module *module, |
| 152 | const char *entrypoint_name, |
| 153 | gl_shader_stage stage, |
Samuel Pitoiset | 47efc52 | 2017-09-01 12:09:56 +0200 | [diff] [blame] | 154 | const VkSpecializationInfo *spec_info) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 155 | { |
| 156 | if (strcmp(entrypoint_name, "main") != 0) { |
| 157 | radv_finishme("Multiple shaders per module not really supported"); |
| 158 | } |
| 159 | |
| 160 | nir_shader *nir; |
| 161 | nir_function *entry_point; |
| 162 | if (module->nir) { |
| 163 | /* Some things such as our meta clear/blit code will give us a NIR |
| 164 | * shader directly. In that case, we just ignore the SPIR-V entirely |
| 165 | * and just use the NIR shader */ |
| 166 | nir = module->nir; |
| 167 | nir->options = &nir_options; |
| 168 | nir_validate_shader(nir); |
| 169 | |
| 170 | assert(exec_list_length(&nir->functions) == 1); |
| 171 | struct exec_node *node = exec_list_get_head(&nir->functions); |
| 172 | entry_point = exec_node_data(nir_function, node, node); |
| 173 | } else { |
| 174 | uint32_t *spirv = (uint32_t *) module->data; |
| 175 | assert(module->size % 4 == 0); |
| 176 | |
Timothy Arceri | 7664aaf | 2017-10-11 11:59:20 +1100 | [diff] [blame] | 177 | if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV) |
Samuel Pitoiset | 844ae72 | 2017-09-22 16:56:40 +0200 | [diff] [blame] | 178 | radv_print_spirv(spirv, module->size, stderr); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 179 | |
| 180 | uint32_t num_spec_entries = 0; |
| 181 | struct nir_spirv_specialization *spec_entries = NULL; |
| 182 | if (spec_info && spec_info->mapEntryCount > 0) { |
| 183 | num_spec_entries = spec_info->mapEntryCount; |
| 184 | spec_entries = malloc(num_spec_entries * sizeof(*spec_entries)); |
| 185 | for (uint32_t i = 0; i < num_spec_entries; i++) { |
| 186 | VkSpecializationMapEntry entry = spec_info->pMapEntries[i]; |
| 187 | const void *data = spec_info->pData + entry.offset; |
| 188 | assert(data + entry.size <= spec_info->pData + spec_info->dataSize); |
| 189 | |
| 190 | spec_entries[i].id = spec_info->pMapEntries[i].constantID; |
| 191 | if (spec_info->dataSize == 8) |
| 192 | spec_entries[i].data64 = *(const uint64_t *)data; |
| 193 | else |
| 194 | spec_entries[i].data32 = *(const uint32_t *)data; |
| 195 | } |
| 196 | } |
| 197 | const struct nir_spirv_supported_extensions supported_ext = { |
| 198 | .draw_parameters = true, |
| 199 | .float64 = true, |
| 200 | .image_read_without_format = true, |
| 201 | .image_write_without_format = true, |
| 202 | .tessellation = true, |
| 203 | .int64 = true, |
| 204 | .multiview = true, |
| 205 | .variable_pointers = true, |
| 206 | }; |
| 207 | entry_point = spirv_to_nir(spirv, module->size / 4, |
| 208 | spec_entries, num_spec_entries, |
| 209 | stage, entrypoint_name, &supported_ext, &nir_options); |
| 210 | nir = entry_point->shader; |
| 211 | assert(nir->stage == stage); |
| 212 | nir_validate_shader(nir); |
| 213 | |
| 214 | free(spec_entries); |
| 215 | |
| 216 | /* We have to lower away local constant initializers right before we |
| 217 | * inline functions. That way they get properly initialized at the top |
| 218 | * of the function and not at the top of its caller. |
| 219 | */ |
| 220 | NIR_PASS_V(nir, nir_lower_constant_initializers, nir_var_local); |
| 221 | NIR_PASS_V(nir, nir_lower_returns); |
| 222 | NIR_PASS_V(nir, nir_inline_functions); |
| 223 | |
| 224 | /* Pick off the single entrypoint that we want */ |
| 225 | foreach_list_typed_safe(nir_function, func, node, &nir->functions) { |
| 226 | if (func != entry_point) |
| 227 | exec_node_remove(&func->node); |
| 228 | } |
| 229 | assert(exec_list_length(&nir->functions) == 1); |
| 230 | entry_point->name = ralloc_strdup(entry_point, "main"); |
| 231 | |
| 232 | NIR_PASS_V(nir, nir_remove_dead_variables, |
| 233 | nir_var_shader_in | nir_var_shader_out | nir_var_system_value); |
| 234 | |
| 235 | /* Now that we've deleted all but the main function, we can go ahead and |
| 236 | * lower the rest of the constant initializers. |
| 237 | */ |
| 238 | NIR_PASS_V(nir, nir_lower_constant_initializers, ~0); |
| 239 | NIR_PASS_V(nir, nir_lower_system_values); |
| 240 | NIR_PASS_V(nir, nir_lower_clip_cull_distance_arrays); |
| 241 | } |
| 242 | |
| 243 | /* Vulkan uses the separate-shader linking model */ |
| 244 | nir->info.separate_shader = true; |
| 245 | |
| 246 | nir_shader_gather_info(nir, entry_point->impl); |
| 247 | |
| 248 | nir_variable_mode indirect_mask = 0; |
| 249 | indirect_mask |= nir_var_shader_in; |
| 250 | indirect_mask |= nir_var_local; |
| 251 | |
| 252 | nir_lower_indirect_derefs(nir, indirect_mask); |
| 253 | |
| 254 | static const nir_lower_tex_options tex_options = { |
| 255 | .lower_txp = ~0, |
| 256 | }; |
| 257 | |
| 258 | nir_lower_tex(nir, &tex_options); |
| 259 | |
| 260 | nir_lower_vars_to_ssa(nir); |
| 261 | nir_lower_var_copies(nir); |
| 262 | nir_lower_global_vars_to_local(nir); |
| 263 | nir_remove_dead_variables(nir, nir_var_local); |
| 264 | radv_optimize_nir(nir); |
| 265 | |
Timothy Arceri | 7664aaf | 2017-10-11 11:59:20 +1100 | [diff] [blame] | 266 | if (device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 267 | nir_print_shader(nir, stderr); |
| 268 | |
| 269 | return nir; |
| 270 | } |
| 271 | |
| 272 | void * |
| 273 | radv_alloc_shader_memory(struct radv_device *device, |
| 274 | struct radv_shader_variant *shader) |
| 275 | { |
| 276 | mtx_lock(&device->shader_slab_mutex); |
| 277 | list_for_each_entry(struct radv_shader_slab, slab, &device->shader_slabs, slabs) { |
| 278 | uint64_t offset = 0; |
| 279 | list_for_each_entry(struct radv_shader_variant, s, &slab->shaders, slab_list) { |
| 280 | if (s->bo_offset - offset >= shader->code_size) { |
| 281 | shader->bo = slab->bo; |
| 282 | shader->bo_offset = offset; |
| 283 | list_addtail(&shader->slab_list, &s->slab_list); |
| 284 | mtx_unlock(&device->shader_slab_mutex); |
| 285 | return slab->ptr + offset; |
| 286 | } |
| 287 | offset = align_u64(s->bo_offset + s->code_size, 256); |
| 288 | } |
| 289 | if (slab->size - offset >= shader->code_size) { |
| 290 | shader->bo = slab->bo; |
| 291 | shader->bo_offset = offset; |
| 292 | list_addtail(&shader->slab_list, &slab->shaders); |
| 293 | mtx_unlock(&device->shader_slab_mutex); |
| 294 | return slab->ptr + offset; |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | mtx_unlock(&device->shader_slab_mutex); |
| 299 | struct radv_shader_slab *slab = calloc(1, sizeof(struct radv_shader_slab)); |
| 300 | |
| 301 | slab->size = 256 * 1024; |
| 302 | slab->bo = device->ws->buffer_create(device->ws, slab->size, 256, |
| 303 | RADEON_DOMAIN_VRAM, 0); |
| 304 | slab->ptr = (char*)device->ws->buffer_map(slab->bo); |
| 305 | list_inithead(&slab->shaders); |
| 306 | |
| 307 | mtx_lock(&device->shader_slab_mutex); |
| 308 | list_add(&slab->slabs, &device->shader_slabs); |
| 309 | |
| 310 | shader->bo = slab->bo; |
| 311 | shader->bo_offset = 0; |
| 312 | list_add(&shader->slab_list, &slab->shaders); |
| 313 | mtx_unlock(&device->shader_slab_mutex); |
| 314 | return slab->ptr; |
| 315 | } |
| 316 | |
| 317 | void |
| 318 | radv_destroy_shader_slabs(struct radv_device *device) |
| 319 | { |
| 320 | list_for_each_entry_safe(struct radv_shader_slab, slab, &device->shader_slabs, slabs) { |
| 321 | device->ws->buffer_destroy(slab->bo); |
| 322 | free(slab); |
| 323 | } |
| 324 | mtx_destroy(&device->shader_slab_mutex); |
| 325 | } |
| 326 | |
| 327 | static void |
| 328 | radv_fill_shader_variant(struct radv_device *device, |
| 329 | struct radv_shader_variant *variant, |
| 330 | struct ac_shader_binary *binary, |
| 331 | gl_shader_stage stage) |
| 332 | { |
| 333 | bool scratch_enabled = variant->config.scratch_bytes_per_wave > 0; |
| 334 | unsigned vgpr_comp_cnt = 0; |
| 335 | |
| 336 | if (scratch_enabled && !device->llvm_supports_spill) |
| 337 | radv_finishme("shader scratch support only available with LLVM 4.0"); |
| 338 | |
| 339 | variant->code_size = binary->code_size; |
| 340 | variant->rsrc2 = S_00B12C_USER_SGPR(variant->info.num_user_sgprs) | |
| 341 | S_00B12C_SCRATCH_EN(scratch_enabled); |
| 342 | |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame^] | 343 | variant->rsrc1 = S_00B848_VGPRS((variant->config.num_vgprs - 1) / 4) | |
| 344 | S_00B848_SGPRS((variant->config.num_sgprs - 1) / 8) | |
| 345 | S_00B848_DX10_CLAMP(1) | |
| 346 | S_00B848_FLOAT_MODE(variant->config.float_mode); |
| 347 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 348 | switch (stage) { |
| 349 | case MESA_SHADER_TESS_EVAL: |
| 350 | vgpr_comp_cnt = 3; |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame^] | 351 | variant->rsrc2 |= S_00B12C_OC_LDS_EN(1); |
| 352 | break; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 353 | case MESA_SHADER_TESS_CTRL: |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame^] | 354 | if (device->physical_device->rad_info.chip_class >= GFX9) |
| 355 | vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt; |
| 356 | else |
| 357 | variant->rsrc2 |= S_00B12C_OC_LDS_EN(1); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 358 | break; |
| 359 | case MESA_SHADER_VERTEX: |
| 360 | case MESA_SHADER_GEOMETRY: |
| 361 | vgpr_comp_cnt = variant->info.vs.vgpr_comp_cnt; |
| 362 | break; |
| 363 | case MESA_SHADER_FRAGMENT: |
| 364 | break; |
| 365 | case MESA_SHADER_COMPUTE: |
| 366 | variant->rsrc2 |= |
| 367 | S_00B84C_TGID_X_EN(1) | S_00B84C_TGID_Y_EN(1) | |
| 368 | S_00B84C_TGID_Z_EN(1) | S_00B84C_TIDIG_COMP_CNT(2) | |
| 369 | S_00B84C_TG_SIZE_EN(1) | |
| 370 | S_00B84C_LDS_SIZE(variant->config.lds_size); |
| 371 | break; |
| 372 | default: |
| 373 | unreachable("unsupported shader type"); |
| 374 | break; |
| 375 | } |
| 376 | |
Bas Nieuwenhuizen | 228325f | 2017-10-18 00:59:16 +0200 | [diff] [blame^] | 377 | if (device->physical_device->rad_info.chip_class >= GFX9 && |
| 378 | stage == MESA_SHADER_TESS_CTRL) |
| 379 | variant->rsrc1 |= S_00B428_LS_VGPR_COMP_CNT(vgpr_comp_cnt); |
| 380 | else |
| 381 | variant->rsrc1 |= S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 382 | |
| 383 | void *ptr = radv_alloc_shader_memory(device, variant); |
| 384 | memcpy(ptr, binary->code, binary->code_size); |
| 385 | } |
| 386 | |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 387 | static struct radv_shader_variant * |
| 388 | shader_variant_create(struct radv_device *device, |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 389 | struct radv_shader_module *module, |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 390 | struct nir_shader * const *shaders, |
| 391 | int shader_count, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 392 | gl_shader_stage stage, |
| 393 | struct ac_nir_compiler_options *options, |
| 394 | bool gs_copy_shader, |
| 395 | void **code_out, |
| 396 | unsigned *code_size_out) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 397 | { |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 398 | enum radeon_family chip_family = device->physical_device->rad_info.family; |
Timothy Arceri | 7664aaf | 2017-10-11 11:59:20 +1100 | [diff] [blame] | 399 | bool dump_shaders = device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 400 | enum ac_target_machine_options tm_options = 0; |
| 401 | struct radv_shader_variant *variant; |
| 402 | struct ac_shader_binary binary; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 403 | LLVMTargetMachineRef tm; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 404 | |
| 405 | variant = calloc(1, sizeof(struct radv_shader_variant)); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 406 | if (!variant) |
| 407 | return NULL; |
| 408 | |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 409 | options->family = chip_family; |
| 410 | options->chip_class = device->physical_device->rad_info.chip_class; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 411 | |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 412 | if (options->supports_spill) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 413 | tm_options |= AC_TM_SUPPORTS_SPILL; |
| 414 | if (device->instance->perftest_flags & RADV_PERFTEST_SISCHED) |
| 415 | tm_options |= AC_TM_SISCHED; |
| 416 | tm = ac_create_target_machine(chip_family, tm_options); |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 417 | |
| 418 | if (gs_copy_shader) { |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 419 | assert(shader_count == 1); |
| 420 | ac_create_gs_copy_shader(tm, *shaders, &binary, &variant->config, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 421 | &variant->info, options, dump_shaders); |
| 422 | } else { |
| 423 | ac_compile_nir_shader(tm, &binary, &variant->config, |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 424 | &variant->info, shaders, shader_count, options, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 425 | dump_shaders); |
| 426 | } |
| 427 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 428 | LLVMDisposeTargetMachine(tm); |
| 429 | |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 430 | radv_fill_shader_variant(device, variant, &binary, stage); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 431 | |
| 432 | if (code_out) { |
| 433 | *code_out = binary.code; |
| 434 | *code_size_out = binary.code_size; |
| 435 | } else |
| 436 | free(binary.code); |
| 437 | free(binary.config); |
| 438 | free(binary.rodata); |
| 439 | free(binary.global_symbol_offsets); |
| 440 | free(binary.relocs); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 441 | variant->ref_count = 1; |
Samuel Pitoiset | 885d757 | 2017-09-01 13:45:33 +0200 | [diff] [blame] | 442 | |
| 443 | if (device->trace_bo) { |
| 444 | variant->disasm_string = binary.disasm_string; |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 445 | if (!gs_copy_shader && !module->nir) { |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 446 | variant->nir = *shaders; |
Samuel Pitoiset | 844ae72 | 2017-09-22 16:56:40 +0200 | [diff] [blame] | 447 | variant->spirv = (uint32_t *)module->data; |
| 448 | variant->spirv_size = module->size; |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 449 | } |
Samuel Pitoiset | 885d757 | 2017-09-01 13:45:33 +0200 | [diff] [blame] | 450 | } else { |
| 451 | free(binary.disasm_string); |
| 452 | } |
| 453 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 454 | return variant; |
| 455 | } |
| 456 | |
| 457 | struct radv_shader_variant * |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 458 | radv_shader_variant_create(struct radv_device *device, |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 459 | struct radv_shader_module *module, |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 460 | struct nir_shader *const *shaders, |
| 461 | int shader_count, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 462 | struct radv_pipeline_layout *layout, |
| 463 | const struct ac_shader_variant_key *key, |
| 464 | void **code_out, |
| 465 | unsigned *code_size_out) |
| 466 | { |
| 467 | struct ac_nir_compiler_options options = {0}; |
| 468 | |
| 469 | options.layout = layout; |
| 470 | if (key) |
| 471 | options.key = *key; |
| 472 | |
Timothy Arceri | 7664aaf | 2017-10-11 11:59:20 +1100 | [diff] [blame] | 473 | options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH); |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 474 | options.supports_spill = device->llvm_supports_spill; |
| 475 | |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 476 | return shader_variant_create(device, module, shaders, shader_count, shaders[shader_count - 1]->stage, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 477 | &options, false, code_out, code_size_out); |
| 478 | } |
| 479 | |
| 480 | struct radv_shader_variant * |
| 481 | radv_create_gs_copy_shader(struct radv_device *device, |
| 482 | struct nir_shader *shader, |
| 483 | void **code_out, |
| 484 | unsigned *code_size_out, |
Samuel Pitoiset | 47efc52 | 2017-09-01 12:09:56 +0200 | [diff] [blame] | 485 | bool multiview) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 486 | { |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 487 | struct ac_nir_compiler_options options = {0}; |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 488 | |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 489 | options.key.has_multiview_view_index = multiview; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 490 | |
Bas Nieuwenhuizen | ce03c11 | 2017-10-16 13:18:02 +0200 | [diff] [blame] | 491 | return shader_variant_create(device, NULL, &shader, 1, MESA_SHADER_VERTEX, |
Samuel Pitoiset | 92db23f | 2017-09-01 16:51:12 +0200 | [diff] [blame] | 492 | &options, true, code_out, code_size_out); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 493 | } |
| 494 | |
| 495 | void |
| 496 | radv_shader_variant_destroy(struct radv_device *device, |
| 497 | struct radv_shader_variant *variant) |
| 498 | { |
| 499 | if (!p_atomic_dec_zero(&variant->ref_count)) |
| 500 | return; |
| 501 | |
| 502 | mtx_lock(&device->shader_slab_mutex); |
| 503 | list_del(&variant->slab_list); |
| 504 | mtx_unlock(&device->shader_slab_mutex); |
| 505 | |
Samuel Pitoiset | a2a350a | 2017-09-22 16:44:08 +0200 | [diff] [blame] | 506 | ralloc_free(variant->nir); |
Samuel Pitoiset | 885d757 | 2017-09-01 13:45:33 +0200 | [diff] [blame] | 507 | free(variant->disasm_string); |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 508 | free(variant); |
| 509 | } |
| 510 | |
| 511 | uint32_t |
Bas Nieuwenhuizen | 91b033f | 2017-10-16 18:09:25 +0200 | [diff] [blame] | 512 | radv_shader_stage_to_user_data_0(gl_shader_stage stage, enum chip_class chip_class, |
| 513 | bool has_gs, bool has_tess) |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 514 | { |
| 515 | switch (stage) { |
| 516 | case MESA_SHADER_FRAGMENT: |
| 517 | return R_00B030_SPI_SHADER_USER_DATA_PS_0; |
| 518 | case MESA_SHADER_VERTEX: |
Bas Nieuwenhuizen | 91b033f | 2017-10-16 18:09:25 +0200 | [diff] [blame] | 519 | if (chip_class >= GFX9) { |
| 520 | return has_tess ? R_00B430_SPI_SHADER_USER_DATA_LS_0 : |
| 521 | has_gs ? R_00B330_SPI_SHADER_USER_DATA_ES_0 : |
| 522 | R_00B130_SPI_SHADER_USER_DATA_VS_0; |
| 523 | } |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 524 | if (has_tess) |
| 525 | return R_00B530_SPI_SHADER_USER_DATA_LS_0; |
| 526 | else |
| 527 | return has_gs ? R_00B330_SPI_SHADER_USER_DATA_ES_0 : R_00B130_SPI_SHADER_USER_DATA_VS_0; |
| 528 | case MESA_SHADER_GEOMETRY: |
Bas Nieuwenhuizen | 91b033f | 2017-10-16 18:09:25 +0200 | [diff] [blame] | 529 | return chip_class >= GFX9 ? R_00B330_SPI_SHADER_USER_DATA_ES_0 : |
| 530 | R_00B230_SPI_SHADER_USER_DATA_GS_0; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 531 | case MESA_SHADER_COMPUTE: |
| 532 | return R_00B900_COMPUTE_USER_DATA_0; |
| 533 | case MESA_SHADER_TESS_CTRL: |
Bas Nieuwenhuizen | 91b033f | 2017-10-16 18:09:25 +0200 | [diff] [blame] | 534 | return chip_class >= GFX9 ? R_00B430_SPI_SHADER_USER_DATA_LS_0 : |
| 535 | R_00B430_SPI_SHADER_USER_DATA_HS_0; |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 536 | case MESA_SHADER_TESS_EVAL: |
Bas Nieuwenhuizen | 91b033f | 2017-10-16 18:09:25 +0200 | [diff] [blame] | 537 | if (chip_class >= GFX9) { |
| 538 | return has_gs ? R_00B330_SPI_SHADER_USER_DATA_ES_0 : |
| 539 | R_00B130_SPI_SHADER_USER_DATA_VS_0; |
| 540 | } |
Samuel Pitoiset | d4d7773 | 2017-09-01 11:41:18 +0200 | [diff] [blame] | 541 | if (has_gs) |
| 542 | return R_00B330_SPI_SHADER_USER_DATA_ES_0; |
| 543 | else |
| 544 | return R_00B130_SPI_SHADER_USER_DATA_VS_0; |
| 545 | default: |
| 546 | unreachable("unknown shader"); |
| 547 | } |
| 548 | } |
| 549 | |
| 550 | const char * |
| 551 | radv_get_shader_name(struct radv_shader_variant *var, gl_shader_stage stage) |
| 552 | { |
| 553 | switch (stage) { |
| 554 | case MESA_SHADER_VERTEX: return var->info.vs.as_ls ? "Vertex Shader as LS" : var->info.vs.as_es ? "Vertex Shader as ES" : "Vertex Shader as VS"; |
| 555 | case MESA_SHADER_GEOMETRY: return "Geometry Shader"; |
| 556 | case MESA_SHADER_FRAGMENT: return "Pixel Shader"; |
| 557 | case MESA_SHADER_COMPUTE: return "Compute Shader"; |
| 558 | case MESA_SHADER_TESS_CTRL: return "Tessellation Control Shader"; |
| 559 | case MESA_SHADER_TESS_EVAL: return var->info.tes.as_es ? "Tessellation Evaluation Shader as ES" : "Tessellation Evaluation Shader as VS"; |
| 560 | default: |
| 561 | return "Unknown shader"; |
| 562 | }; |
| 563 | } |
| 564 | |
Samuel Pitoiset | 80b8d9f | 2017-09-05 15:34:07 +0200 | [diff] [blame] | 565 | void |
| 566 | radv_shader_dump_stats(struct radv_device *device, |
| 567 | struct radv_shader_variant *variant, |
| 568 | gl_shader_stage stage, |
| 569 | FILE *file) |
| 570 | { |
| 571 | unsigned lds_increment = device->physical_device->rad_info.chip_class >= CIK ? 512 : 256; |
| 572 | struct ac_shader_config *conf; |
| 573 | unsigned max_simd_waves; |
| 574 | unsigned lds_per_wave = 0; |
| 575 | |
| 576 | switch (device->physical_device->rad_info.family) { |
| 577 | /* These always have 8 waves: */ |
| 578 | case CHIP_POLARIS10: |
| 579 | case CHIP_POLARIS11: |
| 580 | case CHIP_POLARIS12: |
| 581 | max_simd_waves = 8; |
| 582 | break; |
| 583 | default: |
| 584 | max_simd_waves = 10; |
| 585 | } |
| 586 | |
| 587 | conf = &variant->config; |
| 588 | |
| 589 | if (stage == MESA_SHADER_FRAGMENT) { |
| 590 | lds_per_wave = conf->lds_size * lds_increment + |
| 591 | align(variant->info.fs.num_interp * 48, |
| 592 | lds_increment); |
| 593 | } |
| 594 | |
| 595 | if (conf->num_sgprs) { |
| 596 | if (device->physical_device->rad_info.chip_class >= VI) |
| 597 | max_simd_waves = MIN2(max_simd_waves, 800 / conf->num_sgprs); |
| 598 | else |
| 599 | max_simd_waves = MIN2(max_simd_waves, 512 / conf->num_sgprs); |
| 600 | } |
| 601 | |
| 602 | if (conf->num_vgprs) |
| 603 | max_simd_waves = MIN2(max_simd_waves, 256 / conf->num_vgprs); |
| 604 | |
| 605 | /* LDS is 64KB per CU (4 SIMDs), divided into 16KB blocks per SIMD |
| 606 | * that PS can use. |
| 607 | */ |
| 608 | if (lds_per_wave) |
| 609 | max_simd_waves = MIN2(max_simd_waves, 16384 / lds_per_wave); |
| 610 | |
| 611 | fprintf(file, "\n%s:\n", radv_get_shader_name(variant, stage)); |
| 612 | |
| 613 | if (stage == MESA_SHADER_FRAGMENT) { |
| 614 | fprintf(file, "*** SHADER CONFIG ***\n" |
| 615 | "SPI_PS_INPUT_ADDR = 0x%04x\n" |
| 616 | "SPI_PS_INPUT_ENA = 0x%04x\n", |
| 617 | conf->spi_ps_input_addr, conf->spi_ps_input_ena); |
| 618 | } |
| 619 | |
| 620 | fprintf(file, "*** SHADER STATS ***\n" |
| 621 | "SGPRS: %d\n" |
| 622 | "VGPRS: %d\n" |
| 623 | "Spilled SGPRs: %d\n" |
| 624 | "Spilled VGPRs: %d\n" |
| 625 | "Code Size: %d bytes\n" |
| 626 | "LDS: %d blocks\n" |
| 627 | "Scratch: %d bytes per wave\n" |
| 628 | "Max Waves: %d\n" |
| 629 | "********************\n\n\n", |
| 630 | conf->num_sgprs, conf->num_vgprs, |
| 631 | conf->spilled_sgprs, conf->spilled_vgprs, variant->code_size, |
| 632 | conf->lds_size, conf->scratch_bytes_per_wave, |
| 633 | max_simd_waves); |
| 634 | } |