nir: Recognize and reduce duplicated fsats.
authorEric Anholt <eric@anholt.net>
Fri, 30 Jan 2015 22:10:58 +0000 (14:10 -0800)
committerEric Anholt <eric@anholt.net>
Wed, 18 Feb 2015 22:47:51 +0000 (14:47 -0800)
No effect on vc4 shader-db.

v2: Rebase to master (no TGSI->NIR present)

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> (v1)
src/glsl/nir/nir_opt_algebraic.py

index c7cb651fbb40ae66d59602e865ec05368f1cf156..504c9f69054a37ee4a3524c7961fc3d12d914684 100644 (file)
@@ -87,6 +87,8 @@ optimizations = [
    (('bcsel', ('flt', a, b), b, a), ('fmax', a, b)),
    (('fmin', ('fmax', a, 0.0), 1.0), ('fsat', a), '!options->lower_fsat'),
    (('fsat', a), ('fmin', ('fmax', a, 0.0), 1.0), 'options->lower_fsat'),
+   (('fsat', ('fsat', a)), ('fsat', a)),
+   (('fmin', ('fmax', ('fmin', ('fmax', a, 0.0), 1.0), 0.0), 1.0), ('fmin', ('fmax', a, 0.0), 1.0)),
    # Comparison with the same args.  Note that these are not done for
    # the float versions because NaN always returns false on float
    # inequalities.