<p dir="ltr"><br>
On Dec 9, 2015 2:51 AM, "Kenneth Graunke" <<a href="mailto:kenneth@whitecape.org">kenneth@whitecape.org</a>> wrote:<br>
><br>
> My tessellation branch has two additional remap functions.  I don't want<br>
> to replicate this logic there.<br>
><br>
> Signed-off-by: Kenneth Graunke <<a href="mailto:kenneth@whitecape.org">kenneth@whitecape.org</a>><br>
> ---<br>
>  src/mesa/drivers/dri/i965/brw_nir.c | 78 ++++++++++++++++++++++++-------------<br>
>  1 file changed, 50 insertions(+), 28 deletions(-)<br>
><br>
> Hey Jason,<br>
><br>
> If you like this patch, and haven't yet merged your NIR input reworks,<br>
> feel free to just squash it into your changes.  Or, we can land it<br>
> separately after your changes.  It's up to you.<br>
><br>
> Separating this out allows me to reuse this in my new tessellation input<br>
> and output remapping functions, and also means we don't need to add structs<br>
> for the remap functions...we can just pass the builder, or inputs_read, or<br>
> the VUE map...and not have to pack multiple things together.</p>
<p dir="ltr">Sure.  It does make things simpler.</p>
<p dir="ltr">>  --Ken<br>
><br>
> diff --git a/src/mesa/drivers/dri/i965/brw_nir.c b/src/mesa/drivers/dri/i965/brw_nir.c<br>
> index 14ad172..105a175 100644<br>
> --- a/src/mesa/drivers/dri/i965/brw_nir.c<br>
> +++ b/src/mesa/drivers/dri/i965/brw_nir.c<br>
> @@ -27,15 +27,19 @@<br>
>  #include "glsl/nir/nir_builder.h"<br>
>  #include "program/prog_to_nir.h"<br>
><br>
> -struct remap_vs_attrs_state {<br>
> -   nir_builder b;<br>
> -   uint64_t inputs_read;<br>
> -};<br>
> -<br>
> +/**<br>
> + * In many cases, we just add the base and offset together, so there's no<br>
> + * reason to keep them separate.  Sometimes, combining them is essential:<br>
> + * if a shader only accesses part of a compound variable (such as a matrix<br>
> + * or array), the variable's base may not actually exist in the VUE map.<br>
> + *<br>
> + * This pass adds constant offsets to instr->const_index[0], and resets<br>
> + * the offset source to 0.  Non-constant offsets remain unchanged.<br>
> + */<br>
>  static bool<br>
> -remap_vs_attrs(nir_block *block, void *void_state)<br>
> +add_const_offset_to_base(nir_block *block, void *closure)<br>
>  {<br>
> -   struct remap_vs_attrs_state *state = void_state;<br>
> +   nir_builder *b = closure;<br>
><br>
>     nir_foreach_instr_safe(block, instr) {<br>
>        if (instr->type != nir_instr_type_intrinsic)<br>
> @@ -43,30 +47,48 @@ remap_vs_attrs(nir_block *block, void *void_state)<br>
><br>
>        nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);<br>
><br>
> +      if (intrin->intrinsic == nir_intrinsic_load_input ||<br>
> +          intrin->intrinsic == nir_intrinsic_load_per_vertex_input ||<br>
> +          intrin->intrinsic == nir_intrinsic_load_output ||<br>
> +          intrin->intrinsic == nir_intrinsic_load_per_vertex_output ||<br>
> +          intrin->intrinsic == nir_intrinsic_store_output ||<br>
> +          intrin->intrinsic == nir_intrinsic_store_per_vertex_output) {</p>
<p dir="ltr">This seems a bit scortched-earth. It would be nice if the caller had a bit more control.</p>
<p dir="ltr">> +         nir_src *offset = nir_get_io_offset_src(intrin);<br>
> +         nir_const_value *const_offset = nir_src_as_const_value(*offset);<br>
> +<br>
> +         if (const_offset) {<br>
> +            intrin->const_index[0] += const_offset->u[0];<br>
> +            b->cursor = nir_before_instr(&intrin->instr);<br>
> +            nir_instr_rewrite_src(&intrin->instr, offset,<br>
> +                                  nir_src_for_ssa(nir_imm_int(b, 0)));<br>
> +         }</p>
<p dir="ltr">Else???  It seems that you don't want to run this pass if you think you'll ever hit an indirect.  I guess it's harmless to just do this for all direct things in our driver, but it doesn't sit well.</p>
<p dir="ltr">> +      }<br>
> +   }<br>
> +   return true;<br>
> +<br>
> +}<br>
> +<br>
> +static bool<br>
> +remap_vs_attrs(nir_block *block, void *closure)<br>
> +{<br>
> +   GLbitfield64 inputs_read = *((GLbitfield64 *) closure);<br>
> +<br>
> +   nir_foreach_instr(block, instr) {<br>
> +      if (instr->type != nir_instr_type_intrinsic)<br>
> +         continue;<br>
> +<br>
> +      nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);<br>
> +<br>
>        if (intrin->intrinsic == nir_intrinsic_load_input) {<br>
>           /* Attributes come in a contiguous block, ordered by their<br>
>            * gl_vert_attrib value.  That means we can compute the slot<br>
>            * number for an attribute by masking out the enabled attributes<br>
>            * before it and counting the bits.<br>
>            */<br>
> -         nir_const_value *const_offset = nir_src_as_const_value(intrin->src[0]);<br>
> -<br>
> -         /* We set EmitNoIndirect for VS inputs, so there are no indirects. */<br>
> -         assert(const_offset);<br>
> -<br>
> -         int attr = intrin->const_index[0] + const_offset->u[0];<br>
> -         int slot = _mesa_bitcount_64(state->inputs_read &<br>
> -                                      BITFIELD64_MASK(attr));<br>
> +         int attr = intrin->const_index[0];<br>
> +         int slot = _mesa_bitcount_64(inputs_read & BITFIELD64_MASK(attr));<br>
><br>
> -         /* The NIR -> FS pass will just add the base and offset together, so<br>
> -          * there's no reason to keep them separate.  Just put it all in<br>
> -          * const_index[0] and set the offset src[0] to load_const(0).<br>
> -          */<br>
>           intrin->const_index[0] = 4 * slot;<br>
> -<br>
> -         state->b.cursor = nir_before_instr(&intrin->instr);<br>
> -         nir_instr_rewrite_src(&intrin->instr, &intrin->src[0],<br>
> -                               nir_src_for_ssa(nir_imm_int(&state->b, 0)));<br>
>        }<br>
>     }<br>
>     return true;<br>
> @@ -97,17 +119,17 @@ brw_nir_lower_inputs(nir_shader *nir,<br>
>            * key->inputs_read since the two are identical aside from Gen4-5<br>
>            * edge flag differences.<br>
>            */<br>
> -         struct remap_vs_attrs_state remap_state = {<br>
> -            .inputs_read = nir->info.inputs_read,<br>
> -         };<br>
> +         GLbitfield64 inputs_read = nir->info.inputs_read;<br>
><br>
>           /* This pass needs actual constants */<br>
>           nir_opt_constant_folding(nir);<br>
><br>
>           nir_foreach_overload(nir, overload) {<br>
>              if (overload->impl) {<br>
> -               nir_builder_init(&remap_state.b, overload->impl);<br>
> -               nir_foreach_block(overload->impl, remap_vs_attrs, &remap_state);<br>
> +               nir_builder b;<br>
> +               nir_builder_init(&b, overload->impl);<br>
> +               nir_foreach_block(overload->impl, add_const_offset_to_base, &b);</p>
<p dir="ltr">What really bothers me is that this call is in remap_vs_attrs but it stomps on store_output intrinsics.  That seems bad.</p>
<p dir="ltr">Overall, I think this is a fine approach but I wish it were more fine-grained.  Unfortunately, I don't have any hot ideas on how to make it better off-hand.</p>
<p dir="ltr">--Jason</p>
<p dir="ltr">> +               nir_foreach_block(overload->impl, remap_vs_attrs, &inputs_read);<br>
>              }<br>
>           }<br>
>        }<br>
> --<br>
> 2.6.3<br>
><br>
</p>