From: Matt Turner Date: Sun, 20 Nov 2016 04:04:34 +0000 (-0800) Subject: i965/vec4: Use UW-typed operands when dest is UW. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59003f3447c95793e7e66e0e34b362d3ce9958eb;p=mesa.git i965/vec4: Use UW-typed operands when dest is UW. Using a UD-typed operand makes the execution size D, and if the size of the execution type is greater than the size of the destination type, the destination must be appropriately strided. We actually just want UW-types all around. Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp b/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp index f095cc2d0f2..f68baabf473 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp @@ -841,13 +841,15 @@ generate_tcs_input_urb_offsets(struct brw_codegen *p, struct brw_reg addr = brw_address_reg(0); /* bottom half: m0.0 = g[1.0 + vertex.0]UD */ - brw_ADD(p, addr, get_element_ud(vertex, 0), brw_imm_uw(0x8)); - brw_SHL(p, addr, addr, brw_imm_ud(2)); + brw_ADD(p, addr, retype(get_element_ud(vertex, 0), BRW_REGISTER_TYPE_UW), + brw_imm_uw(0x8)); + brw_SHL(p, addr, addr, brw_imm_uw(2)); brw_MOV(p, get_element_ud(dst, 0), deref_1ud(brw_indirect(0, 0), 0)); /* top half: m0.1 = g[1.0 + vertex.4]UD */ - brw_ADD(p, addr, get_element_ud(vertex, 4), brw_imm_uw(0x8)); - brw_SHL(p, addr, addr, brw_imm_ud(2)); + brw_ADD(p, addr, retype(get_element_ud(vertex, 4), BRW_REGISTER_TYPE_UW), + brw_imm_uw(0x8)); + brw_SHL(p, addr, addr, brw_imm_uw(2)); brw_MOV(p, get_element_ud(dst, 1), deref_1ud(brw_indirect(0, 0), 0)); }