intel/brw: Remove MRF type

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27691>
This commit is contained in:
Caio Oliveira
2024-02-21 21:21:20 -08:00
committed by Marge Bot
parent 5c93a0e125
commit 8f3c52c1da
24 changed files with 17 additions and 531 deletions
-23
View File
@@ -222,29 +222,6 @@ TEST_P(validation_test, invalid_exec_size_encoding)
}
}
TEST_P(validation_test, invalid_file_encoding)
{
/* Register file on Gfx12 is only one bit */
if (devinfo.ver >= 12)
return;
brw_MOV(p, g0, g0);
brw_inst_set_dst_file_type(&devinfo, last_inst, BRW_MESSAGE_REGISTER_FILE, BRW_REGISTER_TYPE_F);
if (devinfo.ver > 6) {
EXPECT_FALSE(validate(p));
} else {
EXPECT_TRUE(validate(p));
}
clear_instructions(p);
gfx6_math(p, g0, BRW_MATH_FUNCTION_SIN, g0, null);
brw_inst_set_src0_file_type(&devinfo, last_inst, BRW_MESSAGE_REGISTER_FILE, BRW_REGISTER_TYPE_F);
EXPECT_FALSE(validate(p));
}
TEST_P(validation_test, invalid_type_encoding)
{
enum brw_reg_file files[2] = {