intel/brw: Remove 'fs' prefix from passes filenames

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-29 10:01:36 -08:00
committed by Marge Bot
parent e772a4f3fd
commit 25384dccc0
26 changed files with 25 additions and 25 deletions

View File

@@ -45,36 +45,17 @@ libintel_compiler_brw_files = files(
'brw_eu_inst.h',
'brw_eu.h',
'brw_eu_validate.c',
'brw_fs_bank_conflicts.cpp',
'brw_fs_builder.h',
'brw_fs_cmod_propagation.cpp',
'brw_fs_combine_constants.cpp',
'brw_fs_copy_propagation.cpp',
'brw_fs.cpp',
'brw_fs_cse.cpp',
'brw_fs_dead_code_eliminate.cpp',
'brw_fs_generator.cpp',
'brw_fs.h',
'brw_fs_live_variables.cpp',
'brw_fs_live_variables.h',
'brw_fs_lower.cpp',
'brw_fs_lower_dpas.cpp',
'brw_fs_lower_integer_multiplication.cpp',
'brw_fs_lower_pack.cpp',
'brw_fs_lower_regioning.cpp',
'brw_fs_lower_simd_width.cpp',
'brw_fs_nir.cpp',
'brw_fs_opt.cpp',
'brw_fs_opt_algebraic.cpp',
'brw_fs_opt_virtual_grfs.cpp',
'brw_fs_reg_allocate.cpp',
'brw_fs_register_coalesce.cpp',
'brw_fs_saturate_propagation.cpp',
'brw_fs_scoreboard.cpp',
'brw_fs_thread_payload.cpp',
'brw_fs_validate.cpp',
'brw_fs_visitor.cpp',
'brw_fs_workaround.cpp',
'brw_ir.h',
'brw_ir_allocator.h',
'brw_ir_analysis.h',
@@ -82,7 +63,14 @@ libintel_compiler_brw_files = files(
'brw_ir_performance.h',
'brw_ir_performance.cpp',
'brw_isa_info.h',
'brw_lower.cpp',
'brw_lower_dpas.cpp',
'brw_lower_integer_multiplication.cpp',
'brw_lower_logical_sends.cpp',
'brw_lower_pack.cpp',
'brw_lower_regioning.cpp',
'brw_lower_scoreboard.cpp',
'brw_lower_simd_width.cpp',
'brw_lower_subgroup_ops.cpp',
'brw_nir.h',
'brw_nir.c',
@@ -99,7 +87,18 @@ libintel_compiler_brw_files = files(
'brw_nir_rt.h',
'brw_nir_rt.c',
'brw_nir_rt_builder.h',
'brw_opt.cpp',
'brw_opt_algebraic.cpp',
'brw_opt_bank_conflicts.cpp',
'brw_opt_cmod_propagation.cpp',
'brw_opt_combine_constants.cpp',
'brw_opt_copy_propagation.cpp',
'brw_opt_cse.cpp',
'brw_opt_dead_code_eliminate.cpp',
'brw_opt_register_coalesce.cpp',
'brw_opt_saturate_propagation.cpp',
'brw_opt_txf_combiner.cpp',
'brw_opt_virtual_grfs.cpp',
'brw_packed_float.c',
'brw_print.cpp',
'brw_prim.h',
@@ -113,6 +112,7 @@ libintel_compiler_brw_files = files(
'brw_shader.cpp',
'brw_simd_selection.cpp',
'brw_vue_map.c',
'brw_workaround.cpp',
)
brw_device_sha1_gen_src = custom_target('brw_device_sha1_gen.c',
@@ -199,12 +199,12 @@ if with_tests
files(
'test_eu_compact.cpp',
'test_eu_validate.cpp',
'test_fs_cmod_propagation.cpp',
'test_fs_combine_constants.cpp',
'test_fs_copy_propagation.cpp',
'test_fs_cse.cpp',
'test_fs_saturate_propagation.cpp',
'test_fs_scoreboard.cpp',
'test_lower_scoreboard.cpp',
'test_opt_cmod_propagation.cpp',
'test_opt_combine_constants.cpp',
'test_opt_copy_propagation.cpp',
'test_opt_cse.cpp',
'test_opt_saturate_propagation.cpp',
'test_simd_selection.cpp',
'test_vf_float_conversions.cpp',
),