From 9d5cd03ea814f0e4a92e6a63c0766cd70a26e372 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Mon, 4 Aug 2025 13:56:49 -0700 Subject: [PATCH] brw: Drop interlock and memory fence logical opcodes from is_send() The logical send lowering already resolves sources when constructing the send payload, so prior to that lowering, we don't need to apply any special restrictions here. Reviewed-by: Caio Oliveira Part-of: --- src/intel/compiler/brw_inst.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/intel/compiler/brw_inst.cpp b/src/intel/compiler/brw_inst.cpp index 4dcc83c29ab..d88a0913bb7 100644 --- a/src/intel/compiler/brw_inst.cpp +++ b/src/intel/compiler/brw_inst.cpp @@ -173,8 +173,6 @@ brw_inst::is_send() const switch (opcode) { case SHADER_OPCODE_SEND: case SHADER_OPCODE_SEND_GATHER: - case SHADER_OPCODE_INTERLOCK: - case SHADER_OPCODE_MEMORY_FENCE: case SHADER_OPCODE_BARRIER: return true; case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD: