nir: Fix typo in "ushr by 0" algebraic replacement
[mesa.git] / src / glsl / nir / nir_opt_algebraic.py
2015-04-14 Ian Romanicknir: Fix typo in "ushr by 0" algebraic replacement
2015-04-11 Rob Clarknir: split out lower_sub from lower_negate
2015-04-05 Rob Clarknir: add option to lower slt/sge/seq/sne
2015-04-01 Matt Turnernir: Remove useless ftrunc inside f2i/f2u.
2015-04-01 Matt Turnernir: Recognize (a < b || a < c) as a < max(b, c).
2015-04-01 Matt Turnernir: Add addition/multiplication identities of exp...
2015-04-01 Matt Turnernir: Add identities for the log function.
2015-04-01 Matt Turnernir: Add identities for the exponential function.
2015-04-01 Matt Turnernir: Recognize another open coded lrp.
2015-04-01 Matt Turnernir: Recognize open coded lrp.
2015-04-01 Jason Ekstrandnir: Move the compare-with-zero optimizations to the...
2015-04-01 Jason Ekstrandnir/algebraic: Add a seperate section for "late" optimi...
2015-04-01 Jason Ekstrandnir/algebraic: Remove a duplicate optimization
2015-04-01 Eric Anholtnir: Recognize a pattern of bool frobbing from TGSI...
2015-04-01 Eric Anholtnir: Recognize a pattern for doing b2f without the...
2015-03-28 Kenneth Graunkenir: Lower subtraction to add with negation when !lower...
2015-03-27 Eric Anholtnir: Add optional lowering of flrp.
2015-03-24 Matt Turnernir: Recognize sat(add(b2f(a), b2f(b))) as a logical OR.
2015-03-24 Matt Turnernir: Recognize mul(b2f(a), b2f(b)) as a logical AND.
2015-03-11 Thomas Hellandnir: Optimize a + neg(a)
2015-03-11 Thomas Hellandnir: Optimize (a*b)+(a*c) -> a*(b+c)
2015-02-21 Eric Anholtnir: Generalize the optimization of subs of subs from 0.
2015-02-21 Eric Anholtnir: Collapse repeated bcsels on the same argument.
2015-02-21 Eric Anholtnir: When faced with a csel on !condition, just flip...
2015-02-21 Eric Anholtnir: Add a couple of simplifications of csel operations.
2015-02-18 Eric Anholtnir: Recognize and reduce duplicated fsats.
2015-02-18 Eric Anholtnir: Add a flag for lowering fsat.
2015-02-18 Eric Anholtnir: Add a flag for lowering ffma.
2015-02-18 Eric Anholtnir: Add a flag for lowering fneg/ineg.
2015-02-18 Eric Anholtnir: Add a flag for lowering fsqrt(x) to frcp(frsqrt...
2015-02-18 Eric Anholtnir: Add lowering of POW instructions if the lower...
2015-02-18 Eric Anholtnir: Conditionalize the POW reconstruction on shader...
2015-02-11 Matt Turnernir: Recognize open-coded fmin/fmax.
2015-02-11 Eric Anholtnir: Add algebraic opt for int comparisons with identic...
2015-02-06 Eric Anholtnir: Fix broken fsat recognizer.
2015-01-30 Jason Ekstrandnir/opt_algebraic: Add some constant bcsel reductions
2015-01-30 Jason Ekstrandnir/opt_algebraic: Add some boolean simplifications
2015-01-30 Jason Ekstrandnir/algebraic: Support specifying variable as constant...
2015-01-29 Eric Anholtnir: Add variants of some of the comparison simplificat...
2015-01-23 Kenneth Graunkenir: Add algebraic optimizations for division and recip...
2015-01-23 Kenneth Graunkenir: Add algebraic optimizations for exponential/logari...
2015-01-23 Kenneth Graunkenir: Add algebraic optimizations for simplifying compar...
2015-01-23 Kenneth Graunkenir: Add algebraic optimizations for pointless shifts.
2015-01-23 Kenneth Graunkenir: Add a bunch of algebraic optimizations on logic...
2015-01-15 Jason Ekstrandnir: Add an algebraic optimization pass