summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2014-09-19 21:03:25 -0700
committerJason Ekstrand <[email protected]>2014-09-30 10:29:15 -0700
commit6d770ce93aacf29940bacb6fe2ae78cf716751dc (patch)
treeb87b21ba4bffea1b9f2a9745f583c05312549ff5
parent8b0e4b387a2aeb28e32df5b680013338a841859b (diff)
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 <[email protected]> Reviewed-by: Matt Turner <[email protected]>
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp2
1 files changed, 2 insertions, 0 deletions
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();
}