i965/fs: Disable CSE on instructions writing to HW_REG.
authorMatt Turner <mattst88@gmail.com>
Thu, 26 Sep 2013 20:38:11 +0000 (13:38 -0700)
committerMatt Turner <mattst88@gmail.com>
Mon, 7 Oct 2013 17:43:19 +0000 (10:43 -0700)
commit6ff8f0630833396fb7aff266657d4e1a04400719
treedae17d5c3df68cdbfdac8799fc528aba585a8fba
parent06e41a02a3564b00404dd3dd5d6f6b5897df36e9
i965/fs: Disable CSE on instructions writing to HW_REG.

CSE would otherwise combine the two mul(8) emitted by [iu]mulExtended:

mul(8)  acc0 x y
mach(8) null x y
mov(8)  lsb  acc0
...
mul(8)  acc0 x y
mach(8) msb  x y
Into:
mul(8)  temp x y
mov(8)  acc0 temp
mach(8) null x y
mov(8)  lsb  acc0
...
mov(8)  acc0 temp
mach(8) msb  x y

But mul(8) into the accumulator produces more than 32-bits of precision,
which is required and lost if multiplying into a general register and
moving to the accumulator.

Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/brw_fs_cse.cpp