From: Kenneth Graunke Date: Sat, 10 Aug 2013 01:36:54 +0000 (-0700) Subject: i965/fs: Use the COPY set in the calculation for liveout. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f06826cece7ad6348c93760e473e5a35ad872431;p=mesa.git i965/fs: Use the COPY set in the calculation for liveout. According to page 360 of the textbook, the proper formula for liveout is: CPout(n) = COPY(i) union (CPin(i) - KILL(i)) Previously, we omitted COPY. Signed-off-by: Kenneth Graunke Reviewed-by: Paul Berry --- diff --git a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp index 0078c871c5d..9ffb64deb85 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp @@ -188,7 +188,8 @@ fs_copy_prop_dataflow::run() for (int i = 0; i < bitset_words; i++) { const BITSET_WORD old_liveout = bd[b].liveout[i]; - bd[b].liveout[i] |= bd[b].livein[i] & ~bd[b].kill[i]; + bd[b].liveout[i] |= + bd[b].copy[i] | (bd[b].livein[i] & ~bd[b].kill[i]); if (old_liveout != bd[b].liveout[i]) progress = true;