i965/skl: Use an exec size of 8 to initialise the message header
authorNeil Roberts <neil@linux.intel.com>
Fri, 10 Apr 2015 16:20:21 +0000 (17:20 +0100)
committerNeil Roberts <neil@linux.intel.com>
Tue, 14 Apr 2015 18:20:28 +0000 (19:20 +0100)
commit07c571a39fa12c3db1c638302de7aed67844609b
treef2082475e4e904fba0ee8fd57627d5fa43d27b06
parent05a1d84491eabf56564488ba0b0b0b8e91fd4309
i965/skl: Use an exec size of 8 to initialise the message header

Commit e93566a15c61c33faa changed the message header code needed to
make Skylake use SIMD4x2 so that it uses a register with width 4
instead of 8 as the source register in the send message. However it
also changed the width for the dest in the MOV instruction which is
used to initialise the header register with the values from g0. The
width of the destination is used to determine the exec size in
brw_set_dest so this would end up making the MOV have an exec size of
4. I think this would end up leaving the top half of the register
uninitialised. The top half of the header has meaningful values so
this probably isn't a good idea.

This patch just casts the dest register for the MOV instruction back
to a vec8 to fix it. It doesn't cause any changes to a Piglit run.

Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
src/mesa/drivers/dri/i965/brw_fs_generator.cpp
src/mesa/drivers/dri/i965/brw_vec4_generator.cpp