<div dir="ltr"><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Jun 18, 2019 at 2:38 AM Boris Brezillon <<a href="mailto:boris.brezillon@collabora.com">boris.brezillon@collabora.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">The V3D driver has an open-coded solution for this, and we need the<br>
same thing for Panfrost, so let's add a generic way to lower TXS(LOD)<br>
into max(TXS(0) >> LOD, 1).<br>
<br>
Signed-off-by: Boris Brezillon <<a href="mailto:boris.brezillon@collabora.com" target="_blank">boris.brezillon@collabora.com</a>><br>
---<br>
Changes in v2:<br>
* Use == 0 instead of !<br>
* Rework the minification logic as suggested by Jason<br>
* Assign cursor pos at the beginning of the function<br>
* Patch the LOD just after retrieving the old value<br>
---<br>
 src/compiler/nir/nir.h           |  6 +++++<br>
 src/compiler/nir/nir_lower_tex.c | 46 ++++++++++++++++++++++++++++++++<br>
 2 files changed, 52 insertions(+)<br>
<br>
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h<br>
index 4270df565111..8972b4af7480 100644<br>
--- a/src/compiler/nir/nir.h<br>
+++ b/src/compiler/nir/nir.h<br>
@@ -3426,6 +3426,12 @@ typedef struct nir_lower_tex_options {<br>
     */<br>
    bool lower_txd_clamp_if_sampler_index_not_lt_16;<br>
<br>
+   /**<br>
+    * If true, lower nir_texop_txs with a non-0-lod into nir_texop_txs with<br>
+    * 0-lod followed by a nir_ishr.<br>
+    */<br>
+   bool lower_txs_lod;<br>
+<br>
    /**<br>
     * If true, apply a .bagr swizzle on tg4 results to handle Broadcom's<br>
     * mixed-up tg4 locations.<br>
diff --git a/src/compiler/nir/nir_lower_tex.c b/src/compiler/nir/nir_lower_tex.c<br>
index 53719017a87f..6f82ca5f06db 100644<br>
--- a/src/compiler/nir/nir_lower_tex.c<br>
+++ b/src/compiler/nir/nir_lower_tex.c<br>
@@ -978,6 +978,47 @@ lower_tg4_offsets(nir_builder *b, nir_tex_instr *tex)<br>
    return true;<br>
 }<br>
<br>
+static bool<br>
+nir_lower_txs_lod(nir_builder *b, nir_tex_instr *tex)<br>
+{<br>
+   int lod_idx = nir_tex_instr_src_index(tex, nir_tex_src_lod);<br>
+   if (lod_idx < 0 ||<br>
+       (nir_src_is_const(tex->src[lod_idx].src) &&<br>
+        nir_src_as_int(tex->src[lod_idx].src) == 0))<br>
+      return false;<br>
+<br>
+   unsigned dest_size = nir_tex_instr_dest_size(tex);<br>
+<br>
+   b->cursor = nir_before_instr(&tex->instr);<br>
+   nir_ssa_def *lod = nir_ssa_for_src(b, tex->src[lod_idx].src, 1);<br>
+<br>
+   /* Replace the non-0-LOD in the initial TXS operation by a 0-LOD. */<br>
+   nir_instr_rewrite_src(&tex->instr, &tex->src[lod_idx].src,<br>
+                         nir_src_for_ssa(nir_imm_int(b, 0)));<br>
+<br>
+   /* TXS(LOD) = max(TXS(0) >> LOD, 1) */<br>
+   b->cursor = nir_after_instr(&tex->instr);<br>
+   nir_ssa_def *minified = nir_imax(b, nir_ushr(b, &tex->dest.ssa, lod),<br>
+                                    nir_imm_int(b, 1));<br>
+<br>
+   /* Make sure the component encoding the array size (if any) is not<br>
+    * minified.<br>
+    */<br>
+   if (tex->is_array) {<br>
+      nir_ssa_def *comp[3];<br></blockquote><div><br></div><div>Mind throwing in a quick assert?</div><div><br></div><div>assert(dest_size <= ARRAY_SIZE(comp));</div><div><br></div><div>With that added,</div><div><br></div><div>Reviewed-by: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
+<br>
+      for (unsigned i = 0; i < dest_size - 1; i++)<br>
+         comp[i] = nir_channel(b, minified, i);<br>
+<br>
+      comp[dest_size - 1] = nir_channel(b, &tex->dest.ssa, dest_size - 1);<br>
+      minified = nir_vec(b, comp, dest_size);<br>
+   }<br>
+<br>
+   nir_ssa_def_rewrite_uses_after(&tex->dest.ssa, nir_src_for_ssa(minified),<br>
+                                  minified->parent_instr);<br>
+   return true;<br>
+}<br>
+<br>
 static bool<br>
 nir_lower_tex_block(nir_block *block, nir_builder *b,<br>
                     const nir_lower_tex_options *options)<br>
@@ -1132,6 +1173,11 @@ nir_lower_tex_block(nir_block *block, nir_builder *b,<br>
          continue;<br>
       }<br>
<br>
+      if (options->lower_txs_lod && tex->op == nir_texop_txs) {<br>
+         progress |= nir_lower_txs_lod(b, tex);<br>
+         continue;<br>
+      }<br>
+<br>
       /* has to happen after all the other lowerings as the original tg4 gets<br>
        * replaced by 4 tg4 instructions.<br>
        */<br>
-- <br>
2.20.1<br>
<br>
</blockquote></div></div>