summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2015-01-28 18:37:32 -0800
committerMatt Turner <mattst88@gmail.com>2015-02-03 12:25:14 -0800
commite87928a494a7cf0985a9d1cd78bda8729d17c614 (patch)
tree41570e0360460c38a13ac5f6de5d066cdee8d1eb /src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
parentcfa21656420c52a8c99e146314675f691e277c42 (diff)
downloadexternal_mesa3d-e87928a494a7cf0985a9d1cd78bda8729d17c614.zip
external_mesa3d-e87928a494a7cf0985a9d1cd78bda8729d17c614.tar.gz
external_mesa3d-e87928a494a7cf0985a9d1cd78bda8729d17c614.tar.bz2
i965/fs: Add support for constant propagating into sources with modifiers.
All but 16 of the programs helped were ARB fp programs. total instructions in shared programs: 5949286 -> 5945470 (-0.06%) instructions in affected programs: 275162 -> 271346 (-1.39%) helped: 1197 GAINED: 1 Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
index 5dd7255..68a266c 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
@@ -448,16 +448,22 @@ fs_visitor::try_constant_propagate(fs_inst *inst, acp_entry *entry)
(entry->dst.reg_offset + entry->regs_written) * 32)
continue;
- /* Don't bother with cases that should have been taken care of by the
- * GLSL compiler's constant folding pass.
- */
- if (inst->src[i].negate || inst->src[i].abs)
- continue;
-
fs_reg val = entry->src;
val.effective_width = inst->src[i].effective_width;
val.type = inst->src[i].type;
+ if (inst->src[i].abs) {
+ if (!brw_abs_immediate(val.type, &val.fixed_hw_reg)) {
+ continue;
+ }
+ }
+
+ if (inst->src[i].negate) {
+ if (!brw_negate_immediate(val.type, &val.fixed_hw_reg)) {
+ continue;
+ }
+ }
+
switch (inst->opcode) {
case BRW_OPCODE_MOV:
case SHADER_OPCODE_LOAD_PAYLOAD: