| /* |
| * Copyright © 2022 Advanced Micro Devices, Inc. |
| * |
| * SPDX-License-Identifier: MIT |
| */ |
| |
| /* Implement query_size, query_levels, and query_samples by extracting the information from |
| * descriptors. This is expected to be faster than image_resinfo. |
| */ |
| |
| #include "ac_nir.h" |
| #include "nir_builder.h" |
| #include "amdgfxregs.h" |
| |
| static nir_def *get_field(nir_builder *b, nir_def *desc, unsigned index, unsigned mask) |
| { |
| return nir_ubfe_imm(b, nir_channel(b, desc, index), ffs(mask) - 1, util_bitcount(mask)); |
| } |
| |
| static nir_def *handle_null_desc(nir_builder *b, nir_def *desc, nir_def *value) |
| { |
| nir_def *is_null = nir_ieq_imm(b, nir_channel(b, desc, 1), 0); |
| return nir_bcsel(b, is_null, nir_imm_int(b, 0), value); |
| } |
| |
| static nir_def *query_samples(nir_builder *b, nir_def *desc, enum glsl_sampler_dim dim, |
| enum amd_gfx_level gfx_level) |
| { |
| nir_def *samples; |
| |
| if (dim == GLSL_SAMPLER_DIM_MS) { |
| /* LAST_LEVEL contains log2(num_samples). */ |
| if (gfx_level >= GFX12) |
| samples = get_field(b, desc, 3, ~C_00A00C_LAST_LEVEL_GFX12); |
| else |
| samples = get_field(b, desc, 3, ~C_00A00C_LAST_LEVEL_GFX10); |
| samples = nir_ishl(b, nir_imm_int(b, 1), samples); |
| } else { |
| samples = nir_imm_int(b, 1); |
| } |
| |
| return handle_null_desc(b, desc, samples); |
| } |
| |
| static nir_def *query_levels(nir_builder *b, nir_def *desc, enum amd_gfx_level gfx_level) |
| { |
| nir_def *base_level, *last_level; |
| |
| if (gfx_level >= GFX12) { |
| base_level = get_field(b, desc, 1, ~C_00A004_BASE_LEVEL); |
| last_level = get_field(b, desc, 3, ~C_00A00C_LAST_LEVEL_GFX12); |
| } else { |
| base_level = get_field(b, desc, 3, ~C_00A00C_BASE_LEVEL); |
| last_level = get_field(b, desc, 3, ~C_00A00C_LAST_LEVEL_GFX10); |
| } |
| |
| nir_def *levels = nir_iadd_imm(b, nir_isub(b, last_level, base_level), 1); |
| |
| return handle_null_desc(b, desc, levels); |
| } |
| |
| static nir_def * |
| lower_query_size(nir_builder *b, nir_def *desc, nir_src *lod, |
| enum glsl_sampler_dim dim, bool is_array, enum amd_gfx_level gfx_level) |
| { |
| if (dim == GLSL_SAMPLER_DIM_BUF) { |
| nir_def *size = nir_channel(b, desc, 2); |
| |
| if (gfx_level == GFX8) { |
| /* On GFX8, the descriptor contains the size in bytes, |
| * but TXQ must return the size in elements. |
| * The stride is always non-zero for resources using TXQ, except when |
| * using null descriptors in Vulkan, so apply trivial fixup. |
| * Divide the size by the stride. |
| */ |
| size = nir_udiv(b, size, nir_umax_imm(b, get_field(b, desc, 1, ~C_008F04_STRIDE), 1)); |
| } |
| return size; |
| } |
| |
| /* Cube textures return (height, height) instead of (width, height) because it's fewer |
| * instructions. |
| */ |
| bool has_width = dim != GLSL_SAMPLER_DIM_CUBE; |
| bool has_height = dim != GLSL_SAMPLER_DIM_1D; |
| bool has_depth = dim == GLSL_SAMPLER_DIM_3D; |
| nir_def *width = NULL, *height = NULL, *layers = NULL, *base_array = NULL; |
| nir_def *last_array = NULL, *depth = NULL; |
| |
| /* Get the width, height, depth, layers. */ |
| if (gfx_level >= GFX10) { |
| if (has_width) { |
| nir_def *width_lo = get_field(b, desc, 1, ~C_00A004_WIDTH_LO); |
| nir_def *width_hi = get_field(b, desc, 2, ~C_00A008_WIDTH_HI); |
| /* Use iadd to get s_lshl2_add_u32 in the end. */ |
| width = nir_iadd(b, width_lo, nir_ishl_imm(b, width_hi, 2)); |
| } |
| if (has_height) |
| height = get_field(b, desc, 2, ~C_00A008_HEIGHT); |
| if (has_depth) { |
| if (gfx_level >= GFX12) |
| depth = get_field(b, desc, 4, ~C_00A010_DEPTH_GFX12); |
| else |
| depth = get_field(b, desc, 4, ~C_00A010_DEPTH_GFX10); |
| } |
| |
| if (is_array) { |
| if (gfx_level >= GFX12) |
| last_array = get_field(b, desc, 4, ~C_00A010_DEPTH_GFX12); |
| else |
| last_array = get_field(b, desc, 4, ~C_00A010_DEPTH_GFX10); |
| base_array = get_field(b, desc, 4, ~C_00A010_BASE_ARRAY); |
| } |
| } else { |
| if (has_width) |
| width = get_field(b, desc, 2, ~C_008F18_WIDTH); |
| if (has_height) |
| height = get_field(b, desc, 2, ~C_008F18_HEIGHT); |
| if (has_depth) |
| depth = get_field(b, desc, 4, ~C_008F20_DEPTH); |
| |
| if (is_array) { |
| base_array = get_field(b, desc, 5, ~C_008F24_BASE_ARRAY); |
| |
| if (gfx_level == GFX9) { |
| last_array = get_field(b, desc, 4, ~C_008F20_DEPTH); |
| } else { |
| last_array = get_field(b, desc, 5, ~C_008F24_LAST_ARRAY); |
| } |
| } |
| } |
| |
| /* On GFX10.3+, DEPTH contains the pitch if the type is 1D, 2D, or 2D_MSAA. We only program |
| * the pitch for 2D. We need to set depth and last_array to 0 in that case. |
| */ |
| if (gfx_level >= GFX10_3 && (has_depth || is_array)) { |
| nir_def *type = get_field(b, desc, 3, ~C_00A00C_TYPE); |
| nir_def *is_2d = nir_ieq_imm(b, type, V_008F1C_SQ_RSRC_IMG_2D); |
| |
| if (has_depth) |
| depth = nir_bcsel(b, is_2d, nir_imm_int(b, 0), depth); |
| if (is_array) |
| last_array = nir_bcsel(b, is_2d, nir_imm_int(b, 0), last_array); |
| } |
| |
| /* All values are off by 1. */ |
| if (has_width) |
| width = nir_iadd_imm(b, width, 1); |
| if (has_height) |
| height = nir_iadd_imm(b, height, 1); |
| if (has_depth) |
| depth = nir_iadd_imm(b, depth, 1); |
| |
| if (is_array) { |
| layers = nir_isub(b, last_array, base_array); |
| layers = nir_iadd_imm(b, layers, 1); |
| } |
| |
| /* Minify the dimensions according to base_level + lod. */ |
| if (dim != GLSL_SAMPLER_DIM_MS && dim != GLSL_SAMPLER_DIM_RECT) { |
| nir_def *base_level; |
| |
| if (gfx_level >= GFX12) |
| base_level = get_field(b, desc, 1, ~C_00A004_BASE_LEVEL); |
| else |
| base_level = get_field(b, desc, 3, ~C_00A00C_BASE_LEVEL); |
| |
| nir_def *level = lod ? nir_iadd(b, base_level, lod->ssa) : base_level; |
| |
| if (has_width) |
| width = nir_ushr(b, width, level); |
| if (has_height) |
| height = nir_ushr(b, height, level); |
| if (has_depth) |
| depth = nir_ushr(b, depth, level); |
| |
| /* 1D and square texture can't have 0 size unless the lod is out-of-bounds, which is |
| * undefined. Only non-square targets can have one of the sizes 0 with an in-bounds lod |
| * after minification. |
| */ |
| if (has_width && has_height) { |
| if (has_width) |
| width = nir_umax(b, width, nir_imm_int(b, 1)); |
| if (has_height) |
| height = nir_umax(b, height, nir_imm_int(b, 1)); |
| if (has_depth) |
| depth = nir_umax(b, depth, nir_imm_int(b, 1)); |
| } |
| } |
| |
| /* Special case for sliced storage 3D views which shouldn't be minified. */ |
| if (gfx_level >= GFX10 && has_depth) { |
| nir_def *uav3d, *uav_depth; |
| |
| if (gfx_level >= GFX12) { |
| uav_depth = get_field(b, desc, 4, ~C_00A010_DEPTH_GFX12); |
| uav3d = nir_ieq_imm(b, get_field(b, desc, 5, ~C_00A014_UAV3D), 1); |
| } else { |
| uav_depth = get_field(b, desc, 4, ~C_00A010_DEPTH_GFX10); |
| uav3d = nir_ieq_imm(b, get_field(b, desc, 5, ~C_00A014_ARRAY_PITCH), 1); |
| } |
| |
| nir_def *layers_3d = |
| nir_isub(b, uav_depth, get_field(b, desc, 4, ~C_00A010_BASE_ARRAY)); |
| layers_3d = nir_iadd_imm(b, layers_3d, 1); |
| depth = nir_bcsel(b, uav3d, layers_3d, depth); |
| } |
| |
| nir_def *result = NULL; |
| |
| /* Construct the result. */ |
| switch (dim) { |
| case GLSL_SAMPLER_DIM_1D: |
| result = is_array ? nir_vec2(b, width, layers) : width; |
| break; |
| case GLSL_SAMPLER_DIM_CUBE: |
| result = is_array ? nir_vec3(b, height, height, layers) : nir_vec2(b, height, height); |
| break; |
| case GLSL_SAMPLER_DIM_2D: |
| case GLSL_SAMPLER_DIM_MS: |
| case GLSL_SAMPLER_DIM_RECT: |
| case GLSL_SAMPLER_DIM_EXTERNAL: |
| result = is_array ? nir_vec3(b, width, height, layers) : nir_vec2(b, width, height); |
| break; |
| case GLSL_SAMPLER_DIM_3D: |
| result = nir_vec3(b, width, height, depth); |
| break; |
| default: |
| unreachable("invalid sampler dim"); |
| } |
| |
| return handle_null_desc(b, desc, result); |
| } |
| |
| static bool lower_resinfo(nir_builder *b, nir_instr *instr, void *data) |
| { |
| enum amd_gfx_level gfx_level = *(enum amd_gfx_level*)data; |
| nir_def *result = NULL, *dst = NULL; |
| |
| if (instr->type == nir_instr_type_intrinsic) { |
| nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr); |
| const struct glsl_type *type; |
| enum glsl_sampler_dim dim; |
| bool is_array; |
| nir_def *desc = NULL; |
| |
| dst = &intr->def; |
| b->cursor = nir_before_instr(instr); |
| |
| switch (intr->intrinsic) { |
| case nir_intrinsic_image_size: |
| case nir_intrinsic_image_samples: |
| dim = nir_intrinsic_image_dim(intr); |
| is_array = nir_intrinsic_image_array(intr); |
| desc = nir_image_descriptor_amd(b, dim == GLSL_SAMPLER_DIM_BUF ? 4 : 8, |
| 32, intr->src[0].ssa, |
| .image_dim = dim, |
| .image_array = is_array); |
| break; |
| |
| case nir_intrinsic_image_deref_size: |
| case nir_intrinsic_image_deref_samples: |
| type = nir_instr_as_deref(intr->src[0].ssa->parent_instr)->type; |
| dim = glsl_get_sampler_dim(type); |
| is_array = glsl_sampler_type_is_array(type); |
| desc = nir_image_deref_descriptor_amd(b, dim == GLSL_SAMPLER_DIM_BUF ? 4 : 8, |
| 32, intr->src[0].ssa, |
| .image_dim = dim, |
| .image_array = is_array); |
| break; |
| |
| case nir_intrinsic_bindless_image_size: |
| case nir_intrinsic_bindless_image_samples: |
| dim = nir_intrinsic_image_dim(intr); |
| is_array = nir_intrinsic_image_array(intr); |
| desc = nir_bindless_image_descriptor_amd(b, dim == GLSL_SAMPLER_DIM_BUF ? 4 : 8, |
| 32, intr->src[0].ssa, |
| .image_dim = dim, |
| .image_array = is_array); |
| break; |
| |
| default: |
| return false; |
| } |
| |
| switch (intr->intrinsic) { |
| case nir_intrinsic_image_size: |
| case nir_intrinsic_image_deref_size: |
| case nir_intrinsic_bindless_image_size: |
| result = lower_query_size(b, desc, NULL, dim, is_array, gfx_level); |
| break; |
| |
| case nir_intrinsic_image_samples: |
| case nir_intrinsic_image_deref_samples: |
| case nir_intrinsic_bindless_image_samples: |
| result = query_samples(b, desc, dim, gfx_level); |
| break; |
| |
| default: |
| assert(!desc); |
| return false; |
| } |
| } else if (instr->type == nir_instr_type_tex) { |
| nir_tex_instr *tex = nir_instr_as_tex(instr); |
| nir_tex_instr *new_tex; |
| nir_def *desc = NULL; |
| nir_src *lod = NULL; |
| |
| dst = &tex->def; |
| b->cursor = nir_before_instr(instr); |
| |
| switch (tex->op) { |
| case nir_texop_txs: |
| case nir_texop_query_levels: |
| case nir_texop_texture_samples: |
| for (unsigned i = 0; i < tex->num_srcs; i++) { |
| switch (tex->src[i].src_type) { |
| case nir_tex_src_texture_deref: |
| case nir_tex_src_texture_handle: |
| new_tex = nir_tex_instr_create(b->shader, 1); |
| new_tex->op = nir_texop_descriptor_amd; |
| new_tex->sampler_dim = tex->sampler_dim; |
| new_tex->is_array = tex->is_array; |
| new_tex->texture_index = tex->texture_index; |
| new_tex->sampler_index = tex->sampler_index; |
| new_tex->dest_type = nir_type_int32; |
| new_tex->src[0].src = nir_src_for_ssa(tex->src[i].src.ssa); |
| new_tex->src[0].src_type = tex->src[i].src_type; |
| nir_def_init(&new_tex->instr, &new_tex->def, |
| nir_tex_instr_dest_size(new_tex), 32); |
| nir_builder_instr_insert(b, &new_tex->instr); |
| desc = &new_tex->def; |
| break; |
| |
| case nir_tex_src_lod: |
| lod = &tex->src[i].src; |
| break; |
| |
| default:; |
| } |
| } |
| |
| switch (tex->op) { |
| case nir_texop_txs: |
| result = lower_query_size(b, desc, lod, tex->sampler_dim, tex->is_array, |
| gfx_level); |
| break; |
| case nir_texop_query_levels: |
| result = query_levels(b, desc, gfx_level); |
| break; |
| case nir_texop_texture_samples: |
| result = query_samples(b, desc, tex->sampler_dim, gfx_level); |
| break; |
| default: |
| unreachable("shouldn't get here"); |
| } |
| break; |
| |
| default: |
| return false; |
| } |
| } |
| |
| if (!result) |
| return false; |
| |
| assert(dst->bit_size == 32 || dst->bit_size == 16); |
| if (dst->bit_size == 16) |
| result = nir_u2u16(b, result); |
| |
| nir_def_rewrite_uses_after(dst, result, instr); |
| nir_instr_remove(instr); |
| return true; |
| } |
| |
| bool ac_nir_lower_resinfo(nir_shader *nir, enum amd_gfx_level gfx_level) |
| { |
| return nir_shader_instructions_pass(nir, lower_resinfo, |
| nir_metadata_control_flow, |
| &gfx_level); |
| } |