From: Francisco Jerez Date: Fri, 2 Sep 2016 04:22:03 +0000 (-0700) Subject: i965/fs: Simplify copy propagation LOAD_PAYLOAD ACP setup. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1c67e272475f576c8ab4b2be367f4c3c664cb23c;p=mesa.git i965/fs: Simplify copy propagation LOAD_PAYLOAD ACP setup. By keeping track of 'offset' in byte units. Reviewed-by: Iago Toral Quiroga --- 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 bd534bf65bf..0da5f13014f 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp @@ -818,8 +818,7 @@ fs_visitor::opt_copy_propagate_local(void *copy_prop_ctx, bblock_t *block, type_sz(inst->src[i].type); if (inst->src[i].file == VGRF) { acp_entry *entry = ralloc(copy_prop_ctx, acp_entry); - entry->dst = inst->dst; - entry->dst.offset += offset * REG_SIZE; + entry->dst = byte_offset(inst->dst, offset); entry->src = inst->src[i]; entry->size_written = size_written; entry->size_read = inst->size_read(i); @@ -830,7 +829,7 @@ fs_visitor::opt_copy_propagate_local(void *copy_prop_ctx, bblock_t *block, ralloc_free(entry); } } - offset += DIV_ROUND_UP(size_written, REG_SIZE); + offset += size_written; } } }