summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
Commit message (Expand)AuthorAgeFilesLines
* i965: Replace cfg instances with calls to calculate_cfg().Matt Turner2014-07-211-9/+11
* i965: Don't copy propagate abs into Broadwell logic instructions.Kenneth Graunke2014-07-151-6/+3
* exec_list: Make various places use the new length() method.Connor Abbott2014-07-151-3/+1
* i965: Make a brw_conditional_mod enum.Matt Turner2014-07-051-1/+1
* i965: Use immediate storage in brw_reg for visitor regs.Matt Turner2014-07-051-2/+2
* i965: Use typed foreach_in_list_safe instead of foreach_list_safe.Matt Turner2014-07-011-5/+2
* i965: Use typed foreach_in_list instead of foreach_list.Matt Turner2014-07-011-7/+3
* i965: Add and use foreach_inst_in_block macros.Matt Turner2014-07-011-7/+2
* i965/fs: Constant propagate into 2-src math instructions on Gen8.Matt Turner2014-06-251-2/+9
* i965/fs: Make try_constant_propagate() static.Matt Turner2014-06-251-2/+2
* i965: Make can_do_source_mods() a member of the instruction classes.Matt Turner2014-06-251-1/+1
* i965/fs: Copy propagate from load_payload.Matt Turner2014-06-171-0/+22
* i965/fs: skip copy-propate for logical instructions with negated src entriesAbdiel Janulgue2014-06-091-0/+17
* i965/fs: Refactor check for potential copy propagated instructions.Abdiel Janulgue2014-06-091-10/+17
* i965/fs: Loop from 0 to inst->sources, not 0 to 3.Matt Turner2014-06-011-2/+2
* i965/cfg: Embed exec_node in bblock_link.Matt Turner2014-05-151-4/+3
* i965/fs: Name temporary ralloc contexts something other than mem_ctx.Matt Turner2014-04-051-7/+7
* i965: Move compiler debugging output to stderr.Eric Anholt2014-02-221-12/+12
* i965/fs: Remove fs_reg::smear.Francisco Jerez2014-02-121-3/+1
* i965/fs: Add support for specifying register horizontal strides.Francisco Jerez2014-02-121-3/+33
* i965/fs: Add support for sub-register byte offsets to the FS back-end IR.Francisco Jerez2014-02-121-2/+5
* i965: Allow commuting the operands of ADDC for const propagation.Matt Turner2013-12-041-1/+1
* i965: Allow constant propagation into ASR and BFI1.Matt Turner2013-12-041-0/+2
* i965/cfg: Clean up cfg_t constructors.Matt Turner2013-12-041-1/+1
* i965: s/Muchnik/Muchnick/.Matt Turner2013-10-251-1/+1
* i965/fs: Convert gen7 to using GRFs for texture messages.Eric Anholt2013-10-101-0/+3
* i965/fs: Create a helper function for invalidating live intervals.Kenneth Graunke2013-10-101-1/+1
* i965: Generate code for ir_binop_carry and ir_binop_borrow.Matt Turner2013-10-071-0/+2
* i965: Allow immediates to be folded into logical and shift instructions.Matt Turner2013-09-091-0/+11
* i965/fs: Add code to print out global copy propagation sets.Kenneth Graunke2013-08-211-0/+30
* i965/fs: Re-enable global copy propagation.Kenneth Graunke2013-08-191-2/+0
* i965/fs: Fix computation of livein.Kenneth Graunke2013-08-191-7/+6
* i965/fs: Fully recompute liveout at each step.Kenneth Graunke2013-08-191-1/+1
* i965/fs: Skip the initial block when updating livein/liveout.Kenneth Graunke2013-08-191-0/+6
* i965/fs: Drop unnecessary and incorrect liveout initialization.Kenneth Graunke2013-08-191-1/+0
* i965/fs: Properly initialize the livein/liveout sets.Kenneth Graunke2013-08-191-0/+21
* i965/fs: Use the COPY set in the calculation for liveout.Kenneth Graunke2013-08-191-1/+2
* i965/fs: Simplify liveout calculation.Kenneth Graunke2013-08-191-6/+5
* i965/fs: Create the COPY() set for use in copy propagation dataflow.Kenneth Graunke2013-08-191-0/+15
* i965/fs: Rename setup_kills() to setup_initial_values().Kenneth Graunke2013-08-191-5/+6
* i965/fs: Separate the updating of liveout/livein.Kenneth Graunke2013-08-191-3/+8
* i965/fs: Rename "cont" to "progress" in dataflow algorithm.Kenneth Graunke2013-08-191-5/+5
* i965/fs: Switch to a do-while loop in copy propagation dataflow.Kenneth Graunke2013-08-191-3/+3
* i965/fs: Skip global copy propagation step.Kenneth Graunke2013-08-191-0/+2
* i965: Don't copy propagate bitcasts with source modifiers.Matt Turner2013-08-161-0/+3
* i965/fs: Add a helper function for checking for partial register updates.Eric Anholt2013-04-121-3/+1
* mesa: Add a macro to bitset for determining bitset size.Eric Anholt2013-04-121-1/+1
* i965/fs: Allow constant propagation into MACH.Eric Anholt2013-04-011-2/+4
* i965/fs: Improve performance of copy propagation dataflow using bitsets.Eric Anholt2013-03-281-33/+34
* i965/fs: Fix copy propagation with smearing.Eric Anholt2013-02-191-1/+2