intel/fs: remove unused opcode

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Rohan Garg <rohan.garg@intel.com>
Acked-by: Caio Oliveira <caio.oliveira@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17555>
This commit is contained in:
Lionel Landwerlin
2022-07-23 22:57:12 +03:00
committed by Marge Bot
parent aa65f83203
commit a81ca32f96
4 changed files with 0 additions and 5 deletions

View File

@@ -394,7 +394,6 @@ enum opcode {
VEC4_OPCODE_UNTYPED_SURFACE_WRITE,
SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL,
SHADER_OPCODE_OWORD_BLOCK_READ_LOGICAL,
SHADER_OPCODE_UNALIGNED_OWORD_BLOCK_READ_LOGICAL,
SHADER_OPCODE_OWORD_BLOCK_WRITE_LOGICAL,

View File

@@ -758,7 +758,6 @@ fs_inst::components_read(unsigned i) const
return 1;
}
case SHADER_OPCODE_OWORD_BLOCK_READ_LOGICAL:
case SHADER_OPCODE_UNALIGNED_OWORD_BLOCK_READ_LOGICAL:
assert(src[SURFACE_LOGICAL_SRC_IMM_ARG].file == IMM);
return 1;

View File

@@ -2660,7 +2660,6 @@ fs_visitor::lower_logical_sends()
lower_surface_logical_send(ibld, inst);
break;
case SHADER_OPCODE_OWORD_BLOCK_READ_LOGICAL:
case SHADER_OPCODE_UNALIGNED_OWORD_BLOCK_READ_LOGICAL:
case SHADER_OPCODE_OWORD_BLOCK_WRITE_LOGICAL:
lower_surface_block_logical_send(ibld, inst);

View File

@@ -303,8 +303,6 @@ brw_instruction_name(const struct brw_isa_info *isa, enum opcode op)
return "untyped_surface_write";
case SHADER_OPCODE_UNTYPED_SURFACE_WRITE_LOGICAL:
return "untyped_surface_write_logical";
case SHADER_OPCODE_OWORD_BLOCK_READ_LOGICAL:
return "oword_block_read_logical";
case SHADER_OPCODE_UNALIGNED_OWORD_BLOCK_READ_LOGICAL:
return "unaligned_oword_block_read_logical";
case SHADER_OPCODE_OWORD_BLOCK_WRITE_LOGICAL: