Module: Mesa Branch: master Commit: 6a0dda63dd10d2f71260442c8a44e042bddf5a2f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6a0dda63dd10d2f71260442c8a44e042bddf5a2f
Author: Caio Marcelo de Oliveira Filho <[email protected]> Date: Fri Jan 24 10:55:28 2020 -0800 intel/compiler: Add names for SHADER_OPCODE_[IU]SUB_SAT Fixes: 58907568ec5 ("intel/fs: Add SHADER_OPCODE_[IU]SUB_SAT pseudo-ops") Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3558> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3558> --- src/intel/compiler/brw_shader.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/intel/compiler/brw_shader.cpp b/src/intel/compiler/brw_shader.cpp index 71f3e79a454..1906c1fff1b 100644 --- a/src/intel/compiler/brw_shader.cpp +++ b/src/intel/compiler/brw_shader.cpp @@ -493,6 +493,10 @@ brw_instruction_name(const struct gen_device_info *devinfo, enum opcode op) return "barrier"; case SHADER_OPCODE_MULH: return "mulh"; + case SHADER_OPCODE_ISUB_SAT: + return "isub_sat"; + case SHADER_OPCODE_USUB_SAT: + return "usub_sat"; case SHADER_OPCODE_MOV_INDIRECT: return "mov_indirect"; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
