aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/vc4/vc4_qir.c
Commit message (Expand)AuthorAgeFilesLines
* vc4: Track the last block we emitted at the top level.Eric Anholt2017-02-241-0/+1
* vc4: Avoid emitting small immediates for UBO indirect load address guards.Eric Anholt2017-02-101-0/+1
* vc4: Add support for coalescing ALU ops into tex_[srtb] MOVs.Eric Anholt2016-11-291-0/+11
* vc4: Split optimizing VPM writes from VPM reads.Eric Anholt2016-11-291-0/+1
* vc4: Restructure texture insts as ALU ops with tex_[strb] as the dst.Eric Anholt2016-11-291-7/+65
* vc4: Refactor qir_get_op_nsrc(enum qop) to qir_get_nsrc(struct qinst *).Eric Anholt2016-11-291-7/+5
* vc4: Replace the qinst src[] with a fixed-size array.Eric Anholt2016-11-291-2/+0
* vc4: Remove qir_inst4().Eric Anholt2016-11-291-20/+0
* vc4: Add a thread switch QIR instruction.Eric Anholt2016-11-121-0/+2
* vc4: Print a reg pressure estimate in our reg allocation failure dump.Eric Anholt2016-11-091-0/+5
* vc4: Add support for MUL output rotation.Eric Anholt2016-08-251-0/+3
* vc4: Add support for the 2-bit LOAD_IMM variants.Eric Anholt2016-08-251-0/+2
* vc4: Add a QIR value for the QPU element register.Eric Anholt2016-08-251-0/+1
* vc4: Emit resets of the uniform stream at the starts of blocks.Eric Anholt2016-07-131-0/+1
* vc4: Move the QPU instructions to schedule into each block.Eric Anholt2016-07-131-0/+1
* vc4: Define a QIR branch instructionEric Anholt2016-07-121-9/+29
* vc4: Print live variable start/ends during QIR dumping.Eric Anholt2016-07-121-0/+45
* vc4: Implement live intervals using a CFG.Eric Anholt2016-07-121-0/+47
* vc4: Create a basic block structure and move the instructions into it.Eric Anholt2016-07-121-12/+67
* vc4: Regularize instruction emit macrosEric Anholt2016-07-041-2/+26
* vc4: Optimize out redundant SF updates.Eric Anholt2016-07-041-1/+1
* vc4: Move SF removal to a separate peephole pass.Eric Anholt2016-07-041-0/+1
* vc4: Mark texturing setup instructions as having side effects.Eric Anholt2016-07-041-5/+5
* vc4: Add support for loading immediate values in QIR.Eric Anholt2016-05-061-0/+6
* vc4: Add a small QIR validate pass.Eric Anholt2016-05-061-0/+1
* vc4: Fix the src count on exp2/log2.Eric Anholt2016-05-061-2/+2
* vc4: Reuse QPU disasm's cond flags in QIR.Eric Anholt2016-05-061-14/+5
* vc4: Remove the CSE pass.Eric Anholt2016-05-021-1/+0
* vc4: Move FRAG_X/Y/REV_FLAG to a QFILE like VPM or TLB color writes.Eric Anholt2016-04-081-3/+3
* vc4: Allow TLB Z/color/stencil writes from any ALU operation in QIR.Eric Anholt2016-04-081-8/+34
* vc4: Add a helper function for the construction of qregs.Eric Anholt2016-04-081-5/+3
* vc4: Drop the multi_instruction distinction for QIR instructions.Eric Anholt2016-04-081-13/+5
* vc4: Move discard handling to the condition flag.Eric Anholt2016-03-161-1/+0
* vc4: Don't make a temporary for setting flags.Eric Anholt2016-03-161-1/+2
* vc4: Add a safety check for setting flags.Eric Anholt2016-03-161-0/+3
* vc4: Coalesce instructions using VPM reads into the VPM read.Varad Gautam2016-03-151-1/+1
* vc4: Don't treat conditional MOVs as raw MOV.Eric Anholt2016-02-151-0/+1
* vc4: Replace the SSA-style SEL operators with conditional MOVs.Eric Anholt2016-01-061-31/+15
* vc4: Don't try the SF coalescing unless it's on a def.Eric Anholt2016-01-061-3/+3
* vc4: Fix handling of src packs on in qir_follow_movs().Eric Anholt2015-12-111-2/+8
* vc4: Add support for multisample framebuffer operations.Eric Anholt2015-12-081-0/+1
* vc4: Add support for storing sample mask.Eric Anholt2015-12-041-0/+2
* vc4: Add support for nir_op_uge, using the carry bit on QPU_A_SUB.Eric Anholt2015-11-171-0/+8
* vc4: Rewrite the pack instructions as a MOV with a dst pack flagEric Anholt2015-10-261-6/+4
* vc4: Switch the unpack ops to being unpack flags on a mov.Eric Anholt2015-10-261-41/+4
* vc4: Fix up the test for whether the unpack can be from r4.Eric Anholt2015-10-261-0/+24
* vc4: Don't try to follow MOVs across a pack.Eric Anholt2015-10-261-1/+2
* vc4: If a QIR source has an unpack set, print it.Eric Anholt2015-10-261-0/+1
* vc4: Fix the test for skipping raw MOVs.Eric Anholt2015-10-241-0/+8
* vc4: Add QIR/QPU support for the 8-bit vector instructions.Eric Anholt2015-10-231-0/+10