summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir/nir_opt_algebraic.py
Commit message (Expand)AuthorAgeFilesLines
* nir/opt_algebraic: Use a more elementary mechanism for lowering ldexpJason Ekstrand2016-01-271-62/+2
* Merge remote-tracking branch 'mattst88/nir-lower-pack-unpack' into vulkanJason Ekstrand2016-01-251-0/+64
|\
| * nir: Add lowering support for unpacking opcodes.Matt Turner2016-01-251-0/+28
| * nir: Add lowering support for packing opcodes.Matt Turner2016-01-251-0/+20
| * nir: Add opcodes to extract bytes or words.Matt Turner2016-01-251-0/+16
* | nir/spirv/glsl450: Use fabs not iabs in ldexp.Kenneth Graunke2016-01-201-1/+1
* | nir: Lower ldexp to arithmetic.Kenneth Graunke2016-01-191-0/+63
* | Merge remote-tracking branch 'mesa-public/master' into vulkanJason Ekstrand2016-01-141-1/+15
|\|
| * nir: Lower bitfield_extract.Matt Turner2016-01-141-0/+10
| * nir: Handle <bits>=32 case in bitfield_insert lowering.Matt Turner2016-01-141-1/+5
* | nir: Add more modulus and remainder opcodesJason Ekstrand2016-01-131-0/+1
* | Merge ../mesa into vulkanKristian Høgsberg Kristensen2016-01-081-2/+3
|\|
| * nir/algebraic: Add more loweringJason Ekstrand2016-01-071-0/+6
| * nir: Add a lower_fdiv option, turn fdiv into fmul/frcp.Kenneth Graunke2016-01-051-0/+1
* | nir/algebraic: Add more loweringJason Ekstrand2016-01-061-0/+6
* | Merge remote-tracking branch 'mesa-public/master' into vulkanJason Ekstrand2015-12-291-0/+4
|\|
| * nir: Teach nir_opt_algebraic about adding and subtracting the same thingKristian Høgsberg Kristensen2015-12-291-0/+4
* | Merge remote-tracking branch 'mesa-public/master' into vulkanJason Ekstrand2015-12-101-2/+4
|\|
| * nir: Optimize useless comparisons against true/false.Matt Turner2015-12-081-2/+4
* | Merge remote-tracking branch 'mesa-public/master' into vulkanJason Ekstrand2015-11-031-0/+6
|\|
| * nir: Add opcodes for saturated vector math.Eric Anholt2015-10-231-0/+6
* | Merge branch 'master' of ../mesa into vulkanKristian Høgsberg Kristensen2015-10-011-0/+5
|\|
| * nir: Add fdph and fdph_replicated opcodesJason Ekstrand2015-09-221-0/+1
| * nir: add lowering for ffractRob Clark2015-09-161-0/+1
| * nir: Add a fdot instruction that replicates the result to a vec4Jason Ekstrand2015-09-151-0/+3
* | nir: Add a lower_fdiv option and use it in i965Jason Ekstrand2015-09-041-0/+1
|/
* nir: Simplify feq(fneg(a), a)) -> feq(a, 0.0)Thomas Helland2015-08-181-0/+1
* nir: Simplify fne(fneg(a), a) -> fne(a, 0.0)Thomas Helland2015-08-181-0/+1
* nir: Add algebraic opt for no-op iand.Eric Anholt2015-08-041-0/+1
* nir: Recognize max(min(a, 1.0), 0.0) as fsat(a).Kenneth Graunke2015-06-251-0/+1
* nir: Remove sRGB colorspace conversion round-trip.Matt Turner2015-05-221-0/+2
* nir: Delete all traces of nir_op_flogIan Romanick2015-05-081-6/+0
* nir: Delete all traces of nir_op_fexpIan Romanick2015-05-081-7/+0
* nir: Allow feq/fne/ieq/ine to be optimized with inot.Matt Turner2015-05-071-0/+4
* nir: Recognize (a < c || b < c) as min(a, b) < c.Matt Turner2015-05-071-0/+2
* nir: Recognize trivial min/max.Matt Turner2015-05-071-0/+6
* nir: Recognize i2b(b2i(x)) as x.Matt Turner2015-05-071-0/+1
* nir: Recognize imul(b2i(a), b2i(b)) as a logical AND.Matt Turner2015-05-071-0/+1
* nir: Transform pow(x, 4) into (x*x)*(x*x).Matt Turner2015-04-241-0/+1
* nir: Fix typo in "ushr by 0" algebraic replacementIan Romanick2015-04-141-1/+1
* nir: split out lower_sub from lower_negateRob Clark2015-04-111-2/+2
* nir: add option to lower slt/sge/seq/sneRob Clark2015-04-051-0/+4
* nir: Remove useless ftrunc inside f2i/f2u.Matt Turner2015-04-011-0/+4
* nir: Recognize (a < b || a < c) as a < max(b, c).Matt Turner2015-04-011-0/+2
* nir: Add addition/multiplication identities of exp/log.Matt Turner2015-04-011-0/+6
* nir: Add identities for the log function.Matt Turner2015-04-011-0/+8
* nir: Add identities for the exponential function.Matt Turner2015-04-011-0/+6
* nir: Recognize another open coded lrp.Matt Turner2015-04-011-0/+1
* nir: Recognize open coded lrp.Matt Turner2015-04-011-0/+1
* nir: Move the compare-with-zero optimizations to the late sectionJason Ekstrand2015-04-011-4/+4