aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_vec4.cpp
Commit message (Expand)AuthorAgeFilesLines
* i965: Make vertex color clamp handling code VS specific.Kenneth Graunke2014-12-021-1/+0
* i965/vec4: Rewrite dead code elimination to use live in/out.Matt Turner2014-12-011-155/+0
* i965/vec4: Add VEC4_OPCODE_PACK_4_BYTES.Matt Turner2014-11-251-0/+12
* i965/vec4: Add vector float immediate infrastructure.Matt Turner2014-11-251-0/+19
* i965/vec4/gen8: Handle the MUL dest hazard exceptionBen Widawsky2014-11-211-2/+18
* i965/vec4: Extract depctrl hazardsBen Widawsky2014-11-211-22/+27
* i965: Silence unused parameter warning in brw_dump_irIan Romanick2014-10-241-1/+1
* i965/vec4: Optimize sqrt+inv into rsq.Matt Turner2014-09-301-0/+11
* i965/vec4: Call opt_algebraic after opt_cse.Matt Turner2014-09-301-1/+1
* i965/vec4: Don't iterate between blocks with inst->next/prev.Matt Turner2014-09-241-21/+9
* i965/vec4: Don't use instruction list after calculating the cfg.Matt Turner2014-09-241-7/+7
* i965: Remove now unneeded calls to calculate_cfg().Matt Turner2014-09-241-8/+2
* i965: Remove cfg-invalidating parameter from invalidate_live_intervals.Matt Turner2014-09-241-5/+5
* i965/vec4: Preserve CFG in spill_reg().Matt Turner2014-09-241-2/+4
* i965/vec4: Preserve the CFG in a few more places.Matt Turner2014-09-241-7/+16
* i965/gen6/gs: Fix binding table clash between TF surfaces and textures.Iago Toral Quiroga2014-09-191-1/+7
* i965/gen6/gs: Implement GS_OPCODE_URB_WRITE_ALLOCATE.Iago Toral Quiroga2014-09-191-0/+1
* i965/gen6/gs: Implement GS_OPCODE_FF_SYNC.Iago Toral Quiroga2014-09-191-0/+2
* i965/vec4: slightly improve insn dumping with no srcsChris Forbes2014-09-171-1/+4
* i965: Separate gl_InstanceID and gl_VertexID uploading.Kenneth Graunke2014-09-121-1/+1
* i965/fs: Brown bag fix.Matt Turner2014-09-051-1/+1
* i965/vec4: Add ability to reswizzle arbitrary swizzles.Matt Turner2014-09-051-56/+18
* i965/vec4: Reswizzle sources when necessary.Matt Turner2014-09-051-9/+23
* i965: Move curb_read_length/total_scratch to brw_stage_prog_data.Kenneth Graunke2014-09-031-1/+2
* i965/vec4: Don't segfault when debug-logging a null programJason Ekstrand2014-09-011-2/+2
* i965: Use basic-block aware insertion/removal functions.Matt Turner2014-08-221-5/+5
* i965/vec4: Allow reswizzling writemasks when swizzle is single-valued.Matt Turner2014-08-201-27/+33
* i965/vec4: Add a pass to reduce swizzles.Matt Turner2014-08-191-0/+98
* i965: Pass a cfg pointer to generate_{code,assembly}.Matt Turner2014-08-181-1/+3
* i965: Add and use foreach_block macro.Matt Turner2014-08-181-4/+2
* i965: fix compiler error in union initiliazerPekka Paalanen2014-08-141-1/+1
* i965: Store uniform constant values in a gl_constant_value instead of floatNeil Roberts2014-08-141-3/+3
* i965: Never use the Gen8 code generators.Kenneth Graunke2014-08-121-9/+3
* i965: Switch to the EU emit layer for code generation on Broadwell.Kenneth Graunke2014-08-121-1/+1
* i965: Port INTEL_DEBUG=optimizer to the vec4 backend.Kenneth Graunke2014-07-231-6/+36
* i965/vec4: Use foreach_inst_in_block a couple more places.Matt Turner2014-07-211-4/+1
* i965: Replace cfg instances with calls to calculate_cfg().Matt Turner2014-07-211-3/+3
* i965: Avoid crashing while dumping vec4 insn operandsChris Forbes2014-07-121-1/+4
* i965/vec4: Add basic common subexpression elimination.Kenneth Graunke2014-07-061-0/+1
* i965: Move is_zero/one/null/accumulator into backend_reg.Matt Turner2014-07-051-47/+0
* i965: Use immediate storage in brw_reg for visitor regs.Matt Turner2014-07-051-15/+10
* i965: Update a ton of comments about constant buffers.Eric Anholt2014-07-021-0/+3
* i965: Move dispatch_grf_start_reg and first_curbe_grf into stage_prog_data.Eric Anholt2014-07-021-2/+2
* i965: Use unreachable() instead of unconditional assert().Matt Turner2014-07-011-5/+2
* i965: Use typed foreach_in_list_safe instead of foreach_list_safe.Matt Turner2014-07-011-9/+3
* i965: Use typed foreach_in_list instead of foreach_list.Matt Turner2014-07-011-21/+7
* i965: Make can_do_source_mods() a member of the instruction classes.Matt Turner2014-06-251-4/+4
* i965/vec4: Fix dead code elimination for VGRFs of size > 1.Kenneth Graunke2014-06-151-1/+2
* i965: Make src_reg::equals() take a constant reference, not a pointer.Kenneth Graunke2014-06-101-11/+11
* i965: Give dump_instruction() a FILE* argument.Matt Turner2014-06-011-49/+55