[Mesa-dev] [PATCH 50/57] i965/vec4: Compare full register offsets in opt_register_coalesce nop move check.
Francisco Jerez
currojerez at riseup.net
Thu Sep 8 01:49:17 UTC 2016
In preparation for adding support for sub-GRF offsets to the VEC4 IR.
---
src/mesa/drivers/dri/i965/brw_vec4.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/drivers/dri/i965/brw_vec4.cpp
index f97de18..d9dbc4c 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp
@@ -1098,7 +1098,7 @@ vec4_visitor::opt_register_coalesce()
/* Remove no-op MOVs */
if (inst->dst.file == inst->src[0].file &&
inst->dst.nr == inst->src[0].nr &&
- inst->dst.offset / REG_SIZE == inst->src[0].offset / REG_SIZE) {
+ inst->dst.offset == inst->src[0].offset) {
bool is_nop_mov = true;
for (unsigned c = 0; c < 4; c++) {
--
2.9.0
More information about the mesa-dev
mailing list