<div dir="ltr"><div>I think this is conceptually correct but I haven't reviewed it for complete correctness yet or tested it.<br><br></div><div>That said, I think this is just a special case of the phi distribution pass that we talked about on IRC a bit today.  Maybe we should just go ahead and implement that?  For unary ALU operations, phi distribution is a clear win and mov is definitely unary.<br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Sep 2, 2016 at 4:28 PM, Connor Abbott <span dir="ltr"><<a href="mailto:cwabbott0@gmail.com" target="_blank">cwabbott0@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">In 144cbf8 ("nir: Make nir_opt_remove_phis see through moves."), Ken<br>
made nir_opt_remove_phis able to coalesce phi nodes whose sources are<br>
all moves with the same swizzle. However, he didn't add the logic<br>
necessary for handling the fact that the phi may now have multiple<br>
different sources, even though the sources point to the same thing. For<br>
example, if we had something like:<br>
<br>
if (...)<br>
   a1 = b.yx;<br>
else<br>
   a2 = b.yx;<br>
a = phi(a1, a2)<br>
... = a<br>
<br>
then we would rewrite it to<br>
<br>
if (...)<br>
   a1 = b.yx;<br>
else<br>
   a2 = b.yx;<br>
... = a1<br>
<br>
by picking a random phi source, which in this case is invalid because<br>
the source doesn't dominate the phi. Instead, we need to change it to:<br>
<br>
if (...)<br>
   a1 = b.yx;<br>
else<br>
   a2 = b.yx;<br>
a3 = b.yx;<br>
... = a3;<br>
---<br>
<br>
This is an alternative to Ken's patch to revert it, although it's<br>
totally untested (just compile tested).<br>
<br>
 src/compiler/nir/nir_opt_<wbr>remove_phis.c | 22 ++++++++++++++++++++--<br>
 1 file changed, 20 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/src/compiler/nir/nir_opt_<wbr>remove_phis.c b/src/compiler/nir/nir_opt_<wbr>remove_phis.c<br>
index ee92fbe..acaa6e1 100644<br>
--- a/src/compiler/nir/nir_opt_<wbr>remove_phis.c<br>
+++ b/src/compiler/nir/nir_opt_<wbr>remove_phis.c<br>
@@ -26,6 +26,7 @@<br>
  */<br>
<br>
 #include "nir.h"<br>
+#include "nir_builder.h"<br>
<br>
 static nir_alu_instr *<br>
 get_parent_mov(nir_ssa_def *ssa)<br>
@@ -63,7 +64,7 @@ matching_mov(nir_alu_instr *mov1, nir_ssa_def *ssa)<br>
  */<br>
<br>
 static bool<br>
-remove_phis_block(nir_block *block)<br>
+remove_phis_block(nir_block *block, nir_builder *b)<br>
 {<br>
    bool progress = false;<br>
<br>
@@ -113,6 +114,21 @@ remove_phis_block(nir_block *block)<br>
        */<br>
       assert(def != NULL);<br>
<br>
+      if (mov) {<br>
+         /* If the sources were all mov's from the same source with the same<br>
+          * swizzle, then we can't just pick a random move because it may not<br>
+          * dominate the phi node. Instead, we need to emit our own move after<br>
+          * the phi which uses the shared source, and rewrite uses of the phi<br>
+          * to use the move instead. This is ok, because while the mov's may<br>
+          * not all dominate the phi node, their shared source does.<br>
+          */<br>
+<br>
+         b->cursor = nir_after_phis(block);<br>
+         def = mov->op == nir_op_imov ?<br>
+            nir_imov_alu(b, mov->src[0], def->num_components) :<br>
+            nir_fmov_alu(b, mov->src[0], def->num_components);<br>
+      }<br>
+<br>
       assert(phi->dest.is_ssa);<br>
       nir_ssa_def_rewrite_uses(&phi-<wbr>>dest.ssa, nir_src_for_ssa(def));<br>
       nir_instr_remove(instr);<br>
@@ -127,9 +143,11 @@ static bool<br>
 remove_phis_impl(nir_function_<wbr>impl *impl)<br>
 {<br>
    bool progress = false;<br>
+   nir_builder bld;<br>
+   nir_builder_init(&bld, impl);<br>
<br>
    nir_foreach_block(block, impl) {<br>
-      progress |= remove_phis_block(block);<br>
+      progress |= remove_phis_block(block, &bld);<br>
    }<br>
<br>
    if (progress) {<br>
<span class="HOEnZb"><font color="#888888">--<br>
2.5.5<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>
</font></span></blockquote></div><br></div>