From: Jason Ekstrand Date: Fri, 15 Apr 2022 21:16:03 +0000 (-0500) Subject: nir: Gather samplers_used separately from textures X-Git-Tag: upstream/22.3.5~9206 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b37831c6069476cc453583f97d7e62ba4b43d1b8;p=platform%2Fupstream%2Fmesa.git nir: Gather samplers_used separately from textures Reviewed-by: Marek Olšák Reviewed-by: Karol Herbst Part-of: --- diff --git a/src/compiler/glsl/gl_nir_lower_samplers_as_deref.c b/src/compiler/glsl/gl_nir_lower_samplers_as_deref.c index 887b9b5..a6f72d7 100644 --- a/src/compiler/glsl/gl_nir_lower_samplers_as_deref.c +++ b/src/compiler/glsl/gl_nir_lower_samplers_as_deref.c @@ -255,6 +255,21 @@ record_textures_used(struct shader_info *info, } } +static void +record_samplers_used(struct shader_info *info, + nir_deref_instr *deref, + nir_texop op) +{ + nir_variable *var = nir_deref_instr_get_variable(deref); + + /* Structs have been lowered already, so get_aoa_size is sufficient. */ + const unsigned size = + glsl_type_is_array(var->type) ? glsl_get_aoa_size(var->type) : 1; + + BITSET_SET_RANGE(info->samplers_used, var->data.binding, + var->data.binding + (MAX2(size, 1) - 1)); +} + static bool lower_sampler(nir_tex_instr *instr, struct lower_samplers_as_deref_state *state, nir_builder *b) @@ -287,6 +302,7 @@ lower_sampler(nir_tex_instr *instr, struct lower_samplers_as_deref_state *state, if (sampler_deref) { nir_instr_rewrite_src(&instr->instr, &instr->src[sampler_idx].src, nir_src_for_ssa(&sampler_deref->dest.ssa)); + record_samplers_used(&b->shader->info, sampler_deref, instr->op); } } diff --git a/src/compiler/shader_info.h b/src/compiler/shader_info.h index aa52576..05eae55 100644 --- a/src/compiler/shader_info.h +++ b/src/compiler/shader_info.h @@ -202,6 +202,9 @@ typedef struct shader_info { /** Bitfield of which textures are used by texelFetch() */ BITSET_DECLARE(textures_used_by_txf, 32); + /** Bitfield of which samplers are used */ + BITSET_DECLARE(samplers_used, 32); + /** Bitfield of which images are used */ BITSET_DECLARE(images_used, 32); /** Bitfield of which images are buffers. */ diff --git a/src/mesa/state_tracker/st_glsl_to_nir.cpp b/src/mesa/state_tracker/st_glsl_to_nir.cpp index bc4d5dc..0c87103 100644 --- a/src/mesa/state_tracker/st_glsl_to_nir.cpp +++ b/src/mesa/state_tracker/st_glsl_to_nir.cpp @@ -990,6 +990,7 @@ st_nir_lower_samplers(struct pipe_screen *screen, nir_shader *nir, if (prog) { BITSET_COPY(prog->info.textures_used, nir->info.textures_used); BITSET_COPY(prog->info.textures_used_by_txf, nir->info.textures_used_by_txf); + BITSET_COPY(prog->info.samplers_used, nir->info.samplers_used); BITSET_COPY(prog->info.images_used, nir->info.images_used); BITSET_COPY(prog->info.image_buffers, nir->info.image_buffers); BITSET_COPY(prog->info.msaa_images, nir->info.msaa_images);