ir3: print eq and needs_helpers instruction flags

Signed-off-by: Job Noorman <jnoorman@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36410>
This commit is contained in:
Job Noorman 2025-10-06 09:16:27 +02:00 committed by Marge Bot
parent db30011663
commit 54cde77163

View file

@ -82,6 +82,10 @@ print_instr_name(struct log_stream *stream, struct ir3_instruction *instr,
mesa_log_stream_printf(stream, "(ul)"); mesa_log_stream_printf(stream, "(ul)");
if (instr->flags & IR3_INSTR_SAT) if (instr->flags & IR3_INSTR_SAT)
mesa_log_stream_printf(stream, "(sat)"); mesa_log_stream_printf(stream, "(sat)");
if (instr->flags & IR3_INSTR_EQ)
mesa_log_stream_printf(stream, "(eq)");
if (instr->flags & IR3_INSTR_NEEDS_HELPERS)
mesa_log_stream_printf(stream, "(needs_helpers)");
} else { } else {
mesa_log_stream_printf(stream, " "); mesa_log_stream_printf(stream, " ");
} }