<div dir="ltr"><div>Looks good to me<br></div>Reviewed-by: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jul 6, 2016 at 5:12 PM, Eric Anholt <span dir="ltr"><<a href="mailto:eric@anholt.net" target="_blank">eric@anholt.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This was appearing in vc4 VS/CS in mupen64, due to vertex attrib lowering<br>
producing some constants that were getting compared.<br>
<br>
total instructions in shared programs: 112276 -> 112198 (-0.07%)<br>
instructions in affected programs:     2239 -> 2161 (-3.48%)<br>
total estimated cycles in shared programs: 283102 -> 283038 (-0.02%)<br>
estimated cycles in affected programs:     2365 -> 2301 (-2.71%)<br>
---<br>
 src/compiler/nir/nir_opt_algebraic.py | 1 +<br>
 1 file changed, 1 insertion(+)<br>
<br>
diff --git a/src/compiler/nir/nir_opt_algebraic.py b/src/compiler/nir/nir_opt_algebraic.py<br>
index fd228017c54e..7d04ef941b73 100644<br>
--- a/src/compiler/nir/nir_opt_algebraic.py<br>
+++ b/src/compiler/nir/nir_opt_algebraic.py<br>
@@ -197,6 +197,7 @@ optimizations = [<br>
    (('iand', a, 0), 0),<br>
    (('ior', a, a), a),<br>
    (('ior', a, 0), a),<br>
+   (('ior', a, True), True),<br>
    (('fxor', a, a), 0.0),<br>
    (('ixor', a, a), 0),<br>
    (('ixor', a, 0), a),<br>
<span class="HOEnZb"><font color="#888888">--<br>
2.8.1<br>
<br>
_______________________________________________<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/mailman/listinfo/mesa-dev</a><br>
</font></span></blockquote></div><br></div>