summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-11-26 13:49:31 -0800
committerMatt Turner <mattst88@gmail.com>2013-12-04 20:05:42 -0800
commit8786f381eca2c818e381af74feda8d4a22c0e411 (patch)
treed6a743ccf200477c3e565badbe69f53aee2f4738 /src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
parentba84800275bd949d30125da7a1632ac62e84d8a0 (diff)
downloadexternal_mesa3d-8786f381eca2c818e381af74feda8d4a22c0e411.zip
external_mesa3d-8786f381eca2c818e381af74feda8d4a22c0e411.tar.gz
external_mesa3d-8786f381eca2c818e381af74feda8d4a22c0e411.tar.bz2
i965: Allow constant propagation into ASR and BFI1.
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp b/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
index 06f0e99..c9c7390 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
@@ -95,6 +95,8 @@ try_constant_propagation(vec4_instruction *inst, int arg, src_reg *values[4])
inst->src[arg] = value;
return true;
+ case BRW_OPCODE_BFI1:
+ case BRW_OPCODE_ASR:
case BRW_OPCODE_SHL:
case BRW_OPCODE_SHR:
case BRW_OPCODE_ADDC: