intel/brw: Rename fs_visitor to brw_shader

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32536>
This commit is contained in:
Caio Oliveira
2024-12-07 10:25:45 -08:00
committed by Marge Bot
parent 352a63122f
commit cf3bb77224
58 changed files with 400 additions and 412 deletions
+2 -2
View File
@@ -15,7 +15,7 @@
* (less than 1000 nodes) that this algorithm is significantly faster than
* others like Lengauer-Tarjan.
*/
brw_idom_tree::brw_idom_tree(const fs_visitor *s) :
brw_idom_tree::brw_idom_tree(const brw_shader *s) :
num_parents(s->cfg->num_blocks),
parents(new bblock_t *[num_parents]())
{
@@ -77,7 +77,7 @@ brw_idom_tree::dump(FILE *file) const
fprintf(file, "}\n");
}
brw_register_pressure::brw_register_pressure(const fs_visitor *v)
brw_register_pressure::brw_register_pressure(const brw_shader *v)
{
const brw_live_variables &live = v->live_analysis.require();
const unsigned num_instructions = v->cfg->num_blocks ?