<div dir="ltr"><div>I sent them out yesterday (sorry you weren't on the CC) and lionel reviewed them.  They were pushed as:</div><div><br></div><div>commit 759ab66db036dd911cb589429eb4dbb3eb4fdc4c<br>Author: Jason Ekstrand <<a href="mailto:jason.ekstrand@intel.com">jason.ekstrand@intel.com</a>><br>Date:   Mon Oct 16 08:50:44 2017 -0700<br><br>    anv/apply_pipeline_layout: Use nir_tex_instr_remove_src<br>    <br>    Reviewed-by: Lionel Landwerlin <<a href="mailto:lionel.g.landwerlin@intel.com">lionel.g.landwerlin@intel.com</a>><br><br>commit 41c75b5354e5d4382786ff853f6f5143a0fe4c6d<br>Author: Jason Ekstrand <<a href="mailto:jason.ekstrand@intel.com">jason.ekstrand@intel.com</a>><br>Date:   Mon Oct 16 08:50:23 2017 -0700<br><br>    nir: Add a helper for adding texture instruction sources<br>    <br>    Reviewed-by: Lionel Landwerlin <<a href="mailto:lionel.g.landwerlin@intel.com">lionel.g.landwerlin@intel.com</a>><br><br></div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Oct 16, 2017 at 3:49 AM, Samuel Iglesias Gonsálvez <span dir="ltr"><<a href="mailto:siglesias@igalia.com" target="_blank">siglesias@igalia.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail-HOEnZb"><div class="gmail-h5">On Wed, 2017-10-11 at 09:12 +0100, Lionel Landwerlin wrote:<br>
> On 11/10/17 09:00, Samuel Iglesias Gonsálvez wrote:<br>
> > On Tuesday, October 10, 2017 4:40:47 PM CEST Lionel Landwerlin<br>
> > wrote:<br>
> > > On 10/10/17 14:35, Samuel Iglesias Gonsálvez wrote:<br>
> > > > Signed-off-by: Samuel Iglesias Gonsálvez <<a href="mailto:siglesias@igalia.com">siglesias@igalia.com</a>><br>
> > > > ---<br>
> > > ><br>
> > > >   src/compiler/nir/nir_lower_<wbr>tex.c | 68<br>
> > > >   ++++++++++++++++++++++++++++++<wbr>++++++++++ 1 file changed, 68<br>
> > > >   insertions(+)<br>
> > > ><br>
> > > > diff --git a/src/compiler/nir/nir_lower_<wbr>tex.c<br>
> > > > b/src/compiler/nir/nir_lower_<wbr>tex.c index<br>
> > > > 65681decb1c..d3380710405 100644<br>
> > > > --- a/src/compiler/nir/nir_lower_<wbr>tex.c<br>
> > > > +++ b/src/compiler/nir/nir_lower_<wbr>tex.c<br>
> > > > @@ -717,6 +717,52 @@ linearize_srgb_result(nir_<wbr>builder *b,<br>
> > > > nir_tex_instr<br>
> > > > *tex)><br>
> > > >                                     result->parent_instr);<br>
> > > ><br>
> > > >   }<br>
> > > ><br>
> > > > +static void<br>
> > > > +set_default_lod(nir_builder *b, nir_tex_instr *tex)<br>
> > > > +{<br>
> > > > +   b->cursor = nir_before_instr(&tex->instr);<br>
> > > > +<br>
> > > > +   /* We are going to emit the same texture but adding a<br>
> > > > default LOD.<br>
> > > > +    */<br>
> > > > +   int num_srcs = tex->num_srcs + 1;<br>
> > > > +   nir_tex_instr *new = nir_tex_instr_create(b-><wbr>shader,<br>
> > > > num_srcs);<br>
> > > > +<br>
> > > > +   new->op = tex->op;<br>
> > > > +   new->sampler_dim = tex->sampler_dim;<br>
> > > > +   new->texture_index = tex->texture_index;<br>
> > > > +   new->dest_type = tex->dest_type;<br>
> > > > +   new->is_array = tex->is_array;<br>
> > > > +   new->is_shadow = tex->is_shadow;<br>
> > > > +   new->is_new_style_shadow = tex->is_new_style_shadow;<br>
> > > > +   new->sampler_index = tex->sampler_index;<br>
> > > > +   new->texture = nir_deref_var_clone(tex-><wbr>texture, new);<br>
> > > > +   new->sampler = nir_deref_var_clone(tex-><wbr>sampler, new);<br>
> > > > +   new->coord_components = tex->coord_components;<br>
> > ><br>
> > > There are a couple of fields you're not copying : component &<br>
> > > texture_array_size<br>
> > > Not 100% sure whether they need to be.<br>
> > ><br>
> ><br>
> > I added them locally.<br>
> ><br>
> > > > +<br>
> > > > +   nir_ssa_dest_init(&new->instr, &new->dest, 4, 32, NULL);<br>
> > > > +<br>
> > > > +   int src_num = 0;<br>
> > > > +   for (int i = 0; i < tex->num_srcs; i++) {<br>
> > > > +      nir_src_copy(&new->src[src_<wbr>num].src, &tex->src[i].src,<br>
> > > > new);<br>
> > > > +      new->src[src_num].src_type = tex->src[i].src_type;<br>
> > > > +      src_num++;<br>
> > > > +   }<br>
> > > > +<br>
> > > > +   new->src[src_num].src = nir_src_for_ssa(nir_imm_int(b, 0));<br>
> > > > +   new->src[src_num].src_type = nir_tex_src_lod;<br>
> > ><br>
> > > I think you could get rid of the src_num variable and just use<br>
> > > (new->num_srcs - 1) to set the default lod src.<br>
> > ><br>
> ><br>
> > Done.<br>
> ><br>
> > Does it get your R-b?<br>
> ><br>
> > Thanks,<br>
> ><br>
> > Sam<br>
><br>
> Thanks!<br>
> Although I think Eric has a point avoid about memcpy(), since I used<br>
> roughly the same code in the ycbcr anv pass, I'll try to come up with<br>
> a helper.<br>
> Patches 1-3 are :<br>
><br>
> Reviewed-by: Lionel Landwerlin <<a href="mailto:lionel.g.landwerlin@intel.com">lionel.g.landwerlin@intel.com</a><wbr>><br>
><br>
<br>
</div></div>I forgot to reply before. I will wait for your helper then.<br>
Please add me in Cc so I am aware when you submit it for review :)<br>
<br>
Thanks,<br>
<br>
Sam<br>
<div class="gmail-HOEnZb"><div class="gmail-h5"><br>
> > > > +   src_num++;<br>
> > > > +<br>
> > > > +   assert(src_num == num_srcs);<br>
> > > > +<br>
> > > > +   nir_ssa_dest_init(&new->instr, &new->dest,<br>
> > > > +                     tex->dest.ssa.num_components, 32, NULL);<br>
> > > > +   nir_builder_instr_insert(b, &new->instr);<br>
> > > > +<br>
> > > > +   nir_ssa_def_rewrite_uses(&tex-<wbr>>dest.ssa,<br>
> > > > nir_src_for_ssa(&new->dest.<wbr>ssa)); +<br>
> > > > +   nir_instr_remove(&tex->instr);<br>
> > > > +}<br>
> > > > +<br>
> > > ><br>
> > > >   static bool<br>
> > > >   nir_lower_tex_block(nir_block *block, nir_builder *b,<br>
> > > ><br>
> > > >                       const nir_lower_tex_options *options)<br>
> > > ><br>
> > > > @@ -813,6 +859,28 @@ nir_lower_tex_block(nir_block *block,<br>
> > > > nir_builder *b,<br>
> > > ><br>
> > > >            progress = true;<br>
> > > >            continue;<br>
> > > ><br>
> > > >         }<br>
> > > ><br>
> > > > +<br>
> > > > +      /* TXF, TXS and TXL require a LOD but not everything we<br>
> > > > implement<br>
> > > > using those +       * three opcodes provides one.  Provide a<br>
> > > > default LOD<br>
> > > > of 0. +       */<br>
> > > > +      if (tex->op == nir_texop_txf || tex->op == nir_texop_txs<br>
> > > > ||<br>
> > > > +          tex->op == nir_texop_txl || tex->op ==<br>
> > > > nir_texop_query_levels<br>
> > > > ||<br>
> > > > +          (tex->op == nir_texop_tex && b->shader->stage !=<br>
> > > > MESA_SHADER_FRAGMENT)) { +         int i;<br>
> > > > +         bool has_lod = false;<br>
> > > > +         for (i = 0; i < tex->num_srcs; i++) {<br>
> > > > +            if (tex->src[i].src_type == nir_tex_src_lod) {<br>
> > > > +               has_lod = true;<br>
> > > > +               break;<br>
> > > > +            }<br>
> > > > +         }<br>
> > > > +<br>
> > > > +         if (!has_lod) {<br>
> > > > +            set_default_lod(b, tex);<br>
> > > > +            progress = true;<br>
> > > > +            continue;<br>
> > > > +         }<br>
> > > > +      }<br>
> > > ><br>
> > > >      }<br>
> > > ><br>
> > > >      return progress;<br>
> ><br>
> ><br>
> > ______________________________<wbr>_________________<br>
> > mesa-dev mailing list<br>
> > <a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
> > <a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/mesa-dev</a><br>
><br>
> </div></div><br>______________________________<wbr>_________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/mesa-dev</a><br>
<br></blockquote></div><br></div></div></div></div>