summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_vec4.cpp
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2016-04-13 15:56:07 -0700
committerKenneth Graunke <kenneth@whitecape.org>2016-04-20 15:05:13 -0700
commit9967561158acd94edff0fa93ceaf4bc527e271ed (patch)
treed42d8cb2fcbfee57a1aa17f56558906bd2b7ec7f /src/mesa/drivers/dri/i965/brw_vec4.cpp
parent50018522d2f2e1deb91710d63e0985c0b3dc8818 (diff)
downloadexternal_mesa3d-9967561158acd94edff0fa93ceaf4bc527e271ed.zip
external_mesa3d-9967561158acd94edff0fa93ceaf4bc527e271ed.tar.gz
external_mesa3d-9967561158acd94edff0fa93ceaf4bc527e271ed.tar.bz2
i965: Rework opt_vector_float() control flow.
This reworks opt_vector_float() so that there's only one place that flushes out any accumulated state and emits a VF. v2: Don't break the sequence for non-representable numbers - just skip recording their values. Only break it for non-MOVs or register changes. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Iago Toral Quiroga <itoral@igalia.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4.cpp61
1 files changed, 34 insertions, 27 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/drivers/dri/i965/brw_vec4.cpp
index 6433fc5..033ecce 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp
@@ -385,48 +385,55 @@ vec4_visitor::opt_vector_float()
unsigned writemask = 0;
foreach_block_and_inst_safe(block, vec4_instruction, inst, cfg) {
+ int vf = -1;
+
+ /* Look for unconditional MOVs from an immediate with a partial
+ * writemask. See if the immediate can be represented as a VF.
+ */
+ if (inst->opcode == BRW_OPCODE_MOV &&
+ inst->src[0].file == IMM &&
+ inst->predicate == BRW_PREDICATE_NONE &&
+ inst->dst.writemask != WRITEMASK_XYZW) {
+ vf = brw_float_to_vf(inst->src[0].f);
+ } else {
+ last_reg = -1;
+ }
+
+ /* If this wasn't a MOV, or the destination register doesn't match,
+ * then this breaks our sequence. Combine anything we've accumulated.
+ */
if (last_reg != inst->dst.nr ||
last_reg_offset != inst->dst.reg_offset ||
last_reg_file != inst->dst.file) {
progress |= vectorize_mov(block, inst, imm, imm_inst, inst_count,
writemask);
inst_count = 0;
+ last_reg = -1;
writemask = 0;
- last_reg = inst->dst.nr;
- last_reg_offset = inst->dst.reg_offset;
- last_reg_file = inst->dst.file;
for (int i = 0; i < 4; i++) {
imm[i] = 0;
}
}
- if (inst->opcode != BRW_OPCODE_MOV ||
- inst->dst.writemask == WRITEMASK_XYZW ||
- inst->src[0].file != IMM ||
- inst->predicate != BRW_PREDICATE_NONE) {
- progress |= vectorize_mov(block, inst, imm, imm_inst, inst_count,
- writemask);
- inst_count = 0;
- last_reg = -1;
- continue;
- }
+ /* Record this instruction's value (if it was representable). */
+ if (vf != -1) {
+ if ((inst->dst.writemask & WRITEMASK_X) != 0)
+ imm[0] = vf;
+ if ((inst->dst.writemask & WRITEMASK_Y) != 0)
+ imm[1] = vf;
+ if ((inst->dst.writemask & WRITEMASK_Z) != 0)
+ imm[2] = vf;
+ if ((inst->dst.writemask & WRITEMASK_W) != 0)
+ imm[3] = vf;
- int vf = brw_float_to_vf(inst->src[0].f);
- if (vf == -1)
- continue;
+ writemask |= inst->dst.writemask;
+ imm_inst[inst_count++] = inst;
- if ((inst->dst.writemask & WRITEMASK_X) != 0)
- imm[0] = vf;
- if ((inst->dst.writemask & WRITEMASK_Y) != 0)
- imm[1] = vf;
- if ((inst->dst.writemask & WRITEMASK_Z) != 0)
- imm[2] = vf;
- if ((inst->dst.writemask & WRITEMASK_W) != 0)
- imm[3] = vf;
-
- writemask |= inst->dst.writemask;
- imm_inst[inst_count++] = inst;
+ last_reg = inst->dst.nr;
+ last_reg_offset = inst->dst.reg_offset;
+ last_reg_file = inst->dst.file;
+ }
}
if (progress)