From: Jason Ekstrand Date: Thu, 29 Jan 2015 00:55:03 +0000 (-0800) Subject: nir/opt_algebraic: Add some boolean simplifications X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f19cd5a56f65fd8d188c2f58b3775a0a5cf2b8a;p=mesa.git nir/opt_algebraic: Add some boolean simplifications total instructions in shared programs: 5998321 -> 5998287 (-0.00%) instructions in affected programs: 4520 -> 4486 (-0.75%) helped: 8 Reviewed-by: Kenneth Graunke --- diff --git a/src/glsl/nir/nir_opt_algebraic.py b/src/glsl/nir/nir_opt_algebraic.py index 210c40dd158..cf305156c5c 100644 --- a/src/glsl/nir/nir_opt_algebraic.py +++ b/src/glsl/nir/nir_opt_algebraic.py @@ -77,10 +77,6 @@ optimizations = [ (('inot', ('fge', a, b)), ('flt', a, b)), (('inot', ('ilt', a, b)), ('ige', a, b)), (('inot', ('ige', a, b)), ('ilt', a, b)), - (('ine', ('flt', a, b), 0), ('flt', a, b)), - (('ine', ('fge', a, b), 0), ('fge', a, b)), - (('ine', ('ilt', a, b), 0), ('ilt', a, b)), - (('ine', ('ige', a, b), 0), ('ige', a, b)), (('flt', ('fadd', a, b), 0.0), ('flt', a, ('fneg', b))), (('fge', ('fadd', a, b), 0.0), ('fge', a, ('fneg', b))), (('feq', ('fadd', a, b), 0.0), ('feq', a, ('fneg', b))), @@ -121,6 +117,11 @@ optimizations = [ (('frcp', ('frcp', a)), a), (('frcp', ('fsqrt', a)), ('frsq', a)), (('frcp', ('frsq', a)), ('fsqrt', a)), + # Boolean simplifications + (('ine', 'a@bool', 0), 'a'), + (('ieq', 'a@bool', 0), ('inot', 'a')), + (('bcsel', 'a@bool', True, False), 'a'), + (('bcsel', 'a@bool', False, True), ('inot', 'a')), # This one may not be exact (('feq', ('fadd', a, b), 0.0), ('feq', a, ('fneg', b))),