vc4: Add shader-db dumping of NIR instruction count.
[mesa.git] / src / gallium / drivers / vc4 / vc4_qpu_emit.c
2015-02-13 Eric Anholtvc4: Make SF be a flag on the QIR instructions.
2015-01-10 Eric Anholtvc4: Avoid the save/restore of r3 for raddr conflicts...
2015-01-10 Eric Anholtvc4: Redo VPM reads as a read file.
2015-01-10 Eric Anholtvc4: Restructure color packing as a series of channel...
2014-12-18 Eric Anholtvc4: Redefine VPM writes as a (destination) QIR registe...
2014-12-18 Eric Anholtvc4: Add support for turning constant uniforms into...
2014-12-15 Eric Anholtvc4: Add support for 16-bit signed/unsigned norm/scaled...
2014-12-15 Eric Anholtvc4: Add support for 8-bit unnormalized vertex attrs.
2014-12-15 Eric Anholtvc4: Fix use of r3 as a temp in 8-bit unpacking.
2014-12-15 Eric Anholtvc4: Rename UNPACK_8* to UNPACK_8*_F.
2014-12-12 Eric Anholtvc4: Fix a memory leak in setting up QPU instructions...
2014-12-09 Eric Anholtvc4: Reserve rb31 instead of r3 for raddr conflict...
2014-12-09 Eric Anholtvc4: Drop dependency on r3 for color packing.
2014-12-01 Eric Anholtvc4: Introduce scheduling of QPU instructions.
2014-12-01 Eric Anholtvc4: Drop the explicit scoreboard wait.
2014-12-01 Eric Anholtvc4: Also deal with VPM reads at thread end.
2014-10-29 Eric Anholtvc4: Add support for ARL and indirect register access...
2014-10-24 Eric Anholtvc4: Add debug output to match shaderdb info to program...
2014-10-13 Eric Anholtvc4: Write the VPM read setup multiple times to queue...
2014-10-02 Eric Anholtvc4: Add support for the FACE semantic.
2014-09-23 Eric Anholtvc4: When possible, resolve raddr conflicts by swapping...
2014-09-23 Eric Anholtvc4: Fix overzealous raddr conflict resolution.
2014-09-23 Eric Anholtvc4: Add support for 8-bit unorm/snorm vertex inputs.
2014-09-23 Eric Anholtvc4: Add disasm for A-file unpack operations.
2014-09-23 Eric Anholtvc4: Switch to using Mesa's register allocator.
2014-09-19 Eric Anholtvc4: Use the same method as for FRAG_Z to handle fragco...
2014-09-19 Eric Anholtvc4: Add support for stencil operations.
2014-09-17 Eric Anholtvc4: Make sure thread end doesn't have a uniform read.
2014-09-16 Eric Anholtvc4: Move register allocation to a separate file.
2014-09-16 Eric Anholtvc4: Restructure depth input/output in fragment shaders.
2014-09-10 Eric Anholtvc4: Expose r4 to register allocation.
2014-09-10 Eric Anholtvc4: Drop pointless raddr conflict handling on SF.
2014-09-05 Eric Anholtvc4: Merge qcompile and tgsi_to_qir
2014-09-04 Eric Anholtvc4: Switch to using native integers.
2014-09-04 Eric Anholtvc4: Expose compares at a lower level in QIR.
2014-09-04 Eric Anholtvc4: Stop being so clever in CMP handling.
2014-08-25 Eric Anholtvc4: Stop doing qpu_inst(add, NOP) or qpu_inst(NOP...
2014-08-25 Eric Anholtvc4: Merge qpu_a_NOP() and qpu_m_NOP to a single qpu_NO...
2014-08-25 Eric Anholtvc4: Fix LT/GE set-0-or-1 compares.
2014-08-22 Eric Anholtvc4: Add support for fragment discards.
2014-08-22 Eric Anholtvc4: Make some helpers for setting condition codes...
2014-08-22 Eric Anholtvc4: Emit the scoreboard wait just when it's needed.
2014-08-22 Eric Anholtvc4: Include stdio/stdlib in headers so I don't have...
2014-08-15 Eric Anholtvc4: Add support for blending.
2014-08-11 Eric Anholtvc4: Add support for gl_FragCoord.
2014-08-11 Eric Anholtvc4: Add support for depth clears and tests within...
2014-08-11 Eric Anholtvc4: Add support for texturing (under simulation)
2014-08-09 Eric Anholtvc4: Fix register aliasing for packing of scaled coordi...
2014-08-09 Eric Anholtvc4: Add support for the TGSI TRUNC opcode.
2014-08-09 Eric Anholtvc4: Add support for multiple attributes
2014-08-09 Eric Anholtvc4: Add more useful debug for the undefined-source...
2014-08-09 Eric Anholtvc4: Add support for CMP.
2014-08-09 Eric Anholtvc4: Make scheduling of NOPs a separate step from QIR...
2014-08-09 Eric Anholtvc4: Add WIP support for varyings.
2014-08-09 Eric Anholtvc4: Use r3 instead of r5 for temps, since r5 only...
2014-08-09 Eric Anholtvc4: Add VC4_DEBUG env option
2014-08-09 Eric Anholtvc4: Add support for SNE/SEQ/SGE/SLT.
2014-08-09 Eric Anholtvc4: Add initial support for math opcodes
2014-08-09 Eric Anholtvc4: Switch to actually generating vertex and fragment...