From 098249ba664faf5cf4cedbf4f3311e1bcfb0e054 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Thu, 29 May 2025 13:49:27 +0300 Subject: [PATCH] brw: print descriptor & extended descriptors Signed-off-by: Lionel Landwerlin Reviewed-by: Rohan Garg Reviewed-by: Kenneth Graunke Part-of: --- src/intel/compiler/brw_print.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/intel/compiler/brw_print.cpp b/src/intel/compiler/brw_print.cpp index bf1110964cc..9cc534fc4ac 100644 --- a/src/intel/compiler/brw_print.cpp +++ b/src/intel/compiler/brw_print.cpp @@ -660,6 +660,12 @@ brw_print_instruction(const brw_shader &s, const brw_inst *inst, FILE *file, con if (inst->has_no_mask_send_params) fprintf(file, "NoMaskParams "); + if (is_send && inst->desc) + fprintf(file, "Desc 0x%08x ", inst->desc); + + if (is_send && inst->ex_desc) + fprintf(file, "ExDesc 0x%08x ", inst->ex_desc); + if (inst->sched.regdist || inst->sched.mode) { fprintf(file, "{ "); brw_print_swsb(file, s.devinfo, inst->sched);