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 <jason.ekstrand@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Jason Ekstrand 2014-09-19 21:03:25 -07:00
parent 8b0e4b387a
commit 6d770ce93a

View file

@ -3545,7 +3545,9 @@ fs_visitor::run()
} while (progress);
if (lower_load_payload()) {
split_virtual_grfs();
register_coalesce();
compute_to_mrf();
dead_code_eliminate();
}