intel/brw: Remove 'fs' prefix from passes and related functions

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32813>
This commit is contained in:
Caio Oliveira
2024-12-06 11:37:57 -08:00
committed by Marge Bot
parent 25384dccc0
commit e1aebf8a0c
40 changed files with 228 additions and 231 deletions
+3 -3
View File
@@ -22,13 +22,13 @@ using namespace brw;
* elimination and coalescing.
*/
bool
brw_fs_opt_split_virtual_grfs(fs_visitor &s)
brw_opt_split_virtual_grfs(fs_visitor &s)
{
/* Compact the register file so we eliminate dead vgrfs. This
* only defines split points for live registers, so if we have
* too large dead registers they will hit assertions later.
*/
brw_fs_opt_compact_virtual_grfs(s);
brw_opt_compact_virtual_grfs(s);
unsigned num_vars = s.alloc.count;
@@ -221,7 +221,7 @@ cleanup:
* overhead.
*/
bool
brw_fs_opt_compact_virtual_grfs(fs_visitor &s)
brw_opt_compact_virtual_grfs(fs_visitor &s)
{
bool progress = false;
int *remap_table = new int[s.alloc.count];