i965: Use sendc for all render target writes on Gen6+.
authorPaul Berry <stereotype441@gmail.com>
Thu, 19 Jul 2012 14:58:30 +0000 (07:58 -0700)
committerPaul Berry <stereotype441@gmail.com>
Thu, 26 Jul 2012 17:49:38 +0000 (10:49 -0700)
commit148c8e639da7ee10fc9e002e3c6d60e17d218b21
tree3a778ee2904dfc41617a44c66ff55974945c7480
parent8f37ea414fca66d03f6f4460d6b7730411abb2a2
i965: Use sendc for all render target writes on Gen6+.

The sendc instruction causes the fragment shader thread to wait for
any dependent threads (i.e. threads rendering to overlapping pixels)
to complete before sending the message.  We need to use sendc on the
first render target write in order to guarantee that fragment shader
outputs are written to the render target in the correct order.

Previously, we only used the "sendc" instruction when writing to
binding table index 0.  This did the right thing for fragment shaders,
because our fragment shader back-ends always issue their first render
target write to binding table index 0.  However, it did the wrong
thing for blorp, which performs its render target writes to binding
table index 1.

A more robust solution is to use sendc for all render target writes.
This should not produce any performance penalty, since after the first
sendc, all of the dependent threads will have completed.

For more information about sendc, see the Ivy Bridge PRM, Vol4 Part3
p218 (sendc - Conditional Send Message), and p54 (TDR Registers).

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/brw_eu_emit.c