i965/fs: Properly write-mask spills
authorJason Ekstrand <jason.ekstrand@intel.com>
Mon, 25 Jan 2016 20:42:01 +0000 (12:42 -0800)
committerJason Ekstrand <jason.ekstrand@intel.com>
Mon, 25 Jan 2016 23:23:10 +0000 (15:23 -0800)
commit9c0109a1f6e0c9c8dd81fc215f8c0c5976e05790
tree0a4eedaea6ec4f3b1fc7ec4558dd8ece6eb107ef
parent8e07f7942e129e838398e94be5cf986f78d94dc3
i965/fs: Properly write-mask spills

For unspills (scratch reads), we can just set WE_all all the time because
we always unspill into a new GRF.  For spills, we have two options: If the
instruction has a 32-bit-per-channel destination and "normal" regioning,
then we just do a regular write and it will interleave channels from
different control-flow paths properly.  If, on the other hand, the the
regioning is non-normal, then we have to unspill, run the instruction, and
spill afterwards.  In this second case, we need to do the spill with
we_ALL.
src/mesa/drivers/dri/i965/brw_fs.h
src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp