From: Jason Ekstrand Date: Sat, 20 Sep 2014 04:03:25 +0000 (-0700) Subject: i965/fs: Add split_virtual_grfs and compute_to_mrf after lower_load_payload X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6d770ce93aacf29940bacb6fe2ae78cf716751dc;p=mesa.git i965/fs: Add split_virtual_grfs and compute_to_mrf after lower_load_payload If we are going to use LOAD_PAYLOAD operations to fill MRF registers, then we will need this. Signed-off-by: Jason Ekstrand Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index f4f7e40f63a..56659f3af51 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3545,7 +3545,9 @@ fs_visitor::run() } while (progress); if (lower_load_payload()) { + split_virtual_grfs(); register_coalesce(); + compute_to_mrf(); dead_code_eliminate(); }