intel/brw: Use brw prefix instead of namespace for analysis implementations

Also drop the 'fs' prefix when applicable.

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33048>
This commit is contained in:
Caio Oliveira
2024-12-06 21:20:58 -08:00
committed by Marge Bot
parent 2b92eb0b2c
commit 1ade9a05d8
24 changed files with 326 additions and 334 deletions
@@ -103,7 +103,7 @@ brw_opt_dead_code_eliminate(fs_visitor &s)
bool progress = false;
const fs_live_variables &live_vars = s.live_analysis.require();
const brw_live_variables &live_vars = s.live_analysis.require();
int num_vars = live_vars.num_vars;
BITSET_WORD *live = rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars));
BITSET_WORD *flag_live = rzalloc_array(NULL, BITSET_WORD, 1);