Introduce .editorconfig
[mesa.git] / src / gallium / drivers / vc4 / vc4_opt_algebraic.c
2016-07-12 Eric Anholtvc4: Add a "qir_for_each_inst_inorder" macro and use...
2016-01-21 Kristian Høgsberg... Merge remote-tracking branch 'jekstrand/wip/i965-unifor...
2016-01-09 Kristian Høgsberg... Merge ../mesa into vulkan
2016-01-06 Eric Anholtvc4: Replace the SSA-style SEL operators with condition...
2015-12-11 Kristian Høgsberg... Merge ../mesa into vulkan
2015-12-11 Eric Anholtvc4: Add quick algebraic optimization for clamping...
2015-12-11 Eric Anholtvc4: When doing algebraic optimization into a MOV,...
2015-12-11 Eric Anholtvc4: Add missing progress note in opt_algebraic.
2015-11-23 Jason EkstrandMerge remote-tracking branch 'mesa-public/master' into...
2015-11-18 Eric Anholtvc4: Add support for nir_op_uge, using the carry bit...
2015-11-03 Jason EkstrandMerge remote-tracking branch 'mesa-public/master' into...
2015-10-26 Eric Anholtvc4: Switch the unpack ops to being unpack flags on...
2015-08-26 Jason EkstrandMerge remote-tracking branch 'mesa-public/master' into...
2015-08-21 Eric Anholtvc4: Add algebraic opt for rcp(1.0).
2015-08-21 Eric Anholtvc4: Pack the unorm-packing bits into a src MUL instruc...
2015-08-21 Eric Anholtvc4: Drop an unused algebraic op.
2015-08-21 Eric Anholtvc4: Allow QIR registers to be non-SSA.
2015-06-26 Connor AbbottMerge branch 'wip/nir-vtn' into vulkan
2015-06-24 Jason EkstrandMerge remote-tracking branch 'mesa-public/master' into...
2015-05-30 Eric Anholtvc4: Convert from simple_list.h to list.h
2015-03-30 Eric Anholtvc4: Drop integer multiplies with 0 to moves of 0.
2015-02-20 Eric Anholtvc4: Keep an array of pointers to instructions defining...
2015-02-13 Eric Anholtvc4: Make SF be a flag on the QIR instructions.
2015-02-02 Eric Anholtvc4: Kill a bunch of color write calculation when color...
2014-12-18 Eric Anholtvc4: Add support for turning constant uniforms into...
2014-12-18 Eric Anholtvc4: Move follow_movs() to common QIR code.
2014-10-10 Eric Anholtvc4: Optimize the other case of SEL_X_Y wih a 0 ->...
2014-10-09 Eric Anholtvc4: Optimize out adds of 0.
2014-10-09 Eric Anholtvc4: Optimize fmul(x, 0) and fmul(x, 1).
2014-10-09 Eric Anholtvc4: Factor out the turn-it-into-a-mov in opt_algebraic.
2014-10-09 Eric Anholtvc4: Optimize SF(ITOF(x)) -> SF(x).
2014-10-09 Eric Anholtvc4: Add some optimization of FADD(FSUB(0, x)).
2014-09-29 Eric Anholtvc4: Optimize out silly SUBs of 0.
2014-09-29 Eric Anholtvc4: Dump constant uniform values in VC4_DEBUG=qir.
2014-09-29 Eric Anholtvc4: Turn a SEL_X_Y(x, 0) into SEL_X_0(x).
2014-09-05 Eric Anholtvc4: Merge qcompile and tgsi_to_qir
2014-09-04 Eric Anholtvc4: Expose compares at a lower level in QIR.
2014-08-22 Eric Anholtvc4: Include stdio/stdlib in headers so I don't have...
2014-08-09 Eric Anholtvc4: Add an initial pass of algebraic optimization.