brw: print descriptor & extended descriptors

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Rohan Garg <rohan.garg@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35252>
This commit is contained in:
Lionel Landwerlin
2025-05-29 13:49:27 +03:00
committed by Marge Bot
parent 8ea124f877
commit 098249ba66
+6
View File
@@ -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);