From: Francisco Jerez Date: Sat, 27 Apr 2019 00:11:42 +0000 (-0700) Subject: intel/fs: Teach fs_inst::is_send_from_grf() about some missing send-like instructions. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a42581fa8f28f282c9faaeb948c3bb192b4a979e;p=mesa.git intel/fs: Teach fs_inst::is_send_from_grf() about some missing send-like instructions. Reviewed-by: Kenneth Graunke Reviewed-by: Caio Marcelo de Oliveira Filho Reviewed-by: Jordan Justen --- diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp index 2ce571b474a..cad7d196d6c 100644 --- a/src/intel/compiler/brw_fs.cpp +++ b/src/intel/compiler/brw_fs.cpp @@ -227,6 +227,9 @@ fs_inst::is_send_from_grf() const case SHADER_OPCODE_URB_WRITE_SIMD8_MASKED_PER_SLOT: case SHADER_OPCODE_URB_READ_SIMD8: case SHADER_OPCODE_URB_READ_SIMD8_PER_SLOT: + case SHADER_OPCODE_INTERLOCK: + case SHADER_OPCODE_MEMORY_FENCE: + case SHADER_OPCODE_BARRIER: return true; case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD: return src[1].file == VGRF;