OSDN Git Service

i965/fs: Detect GRF sources in split_virtual_grfs send-from-GRF code.
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 28 Aug 2013 18:22:01 +0000 (11:22 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Fri, 30 Aug 2013 22:49:31 +0000 (15:49 -0700)
commita35b32025011eeac01f2e5a476dbf3ac132a61b3
treeaa5dd3157ef9295adae1ed2e0fbab05bd49e374f
parent4e3d1712a223f9f0b4ff4a34b9b5447a92877347
i965/fs: Detect GRF sources in split_virtual_grfs send-from-GRF code.

It is incorrect to assume that src[0] of a SEND-from-GRF opcode is the
GRF.  For example, FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD uses src[1] for
the GRF.

To be safe, loop over all the source registers and mark any GRFs.  We
probably won't ever have more than one, but it's simpler to just check
all three rather than attempting to bail early.

Not observed to fix anything yet, but likely to.  Parallels the bug fix
in the previous commit, which actually does fix known failures.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
Cc: mesa-stable@lists.freedesktop.org
src/mesa/drivers/dri/i965/brw_fs.cpp