diff options
author | Matt Turner <[email protected]> | 2015-03-17 19:17:15 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2015-03-18 21:03:09 -0700 |
commit | bb22aa08e4b08c9688c5d5c6558ac01663d0163a (patch) | |
tree | a7c0050732b0a9c8e9c6d77bd1731b8bbeb6e93b /src/mesa | |
parent | e1f3ddef8c9928d9b8e845b811dc08983c541f99 (diff) |
i965/fs: Ignore type in cmod prop if scan_inst is CMP.
total instructions in shared programs: 6263270 -> 6203091 (-0.96%)
instructions in affected programs: 2606529 -> 2546350 (-2.31%)
helped: 14301
GAINED: 5
LOST: 3
Revewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_cmod_propagation.cpp | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_cmod_propagation.cpp b/src/mesa/drivers/dri/i965/brw_fs_cmod_propagation.cpp index 1935f06df0b..798fef3035b 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_cmod_propagation.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_cmod_propagation.cpp @@ -94,21 +94,22 @@ opt_cmod_propagation_local(bblock_t *block) scan_inst->dst.reg_offset != inst->src[0].reg_offset) break; - /* This must be done before the dst.type check because the result - * type of the AND will always be D, but the result of the CMP - * could be anything. The assumption is that the AND is just - * figuring out what the result of the previous comparison was - * instead of doing a new comparison with a different type. - */ - if (inst->opcode == BRW_OPCODE_AND) { - if (scan_inst->opcode == BRW_OPCODE_CMP) { - inst->remove(block); - progress = true; - } - + /* CMP's result is the same regardless of dest type. */ + if (inst->conditional_mod == BRW_CONDITIONAL_NZ && + scan_inst->opcode == BRW_OPCODE_CMP && + (inst->dst.type == BRW_REGISTER_TYPE_D || + inst->dst.type == BRW_REGISTER_TYPE_UD)) { + inst->remove(block); + progress = true; break; } + /* If the AND wasn't handled by the previous case, it isn't safe + * to remove it. + */ + if (inst->opcode == BRW_OPCODE_AND) + break; + /* Comparisons operate differently for ints and floats */ if (scan_inst->dst.type != inst->dst.type) break; |