From: Timothy Arceri Date: Mon, 16 Jul 2018 05:19:29 +0000 (+1000) Subject: nir: add a couple of ior opts to nir_opt_algebraic X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e105b0ca306eb826c7b5cbc8a965e9f774d0d5b7;p=mesa.git nir: add a couple of ior opts to nir_opt_algebraic One of these was seen in a Deus Ex shader. Reviewed-by: Jason Ekstrand --- diff --git a/src/compiler/nir/nir_opt_algebraic.py b/src/compiler/nir/nir_opt_algebraic.py index 5e07d662b07..f49b43f3213 100644 --- a/src/compiler/nir/nir_opt_algebraic.py +++ b/src/compiler/nir/nir_opt_algebraic.py @@ -285,6 +285,9 @@ optimizations = [ (('iand', ('uge(is_used_once)', a, b), ('uge', a, c)), ('uge', a, ('umax', b, c))), (('iand', ('uge(is_used_once)', a, c), ('uge', b, c)), ('uge', ('umin', a, b), c)), + (('ior', 'a@bool', ('ieq', a, False)), True), + (('ior', 'a@bool', ('inot', a)), True), + (('iand', ('ieq', 'a@32', 0), ('ieq', 'b@32', 0)), ('ieq', ('ior', 'a@32', 'b@32'), 0)), # These patterns can result when (a < b || a < c) => (a < min(b, c))