ir3: print (sat) modifier of instructions

Signed-off-by: Job Noorman <jnoorman@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28341>
This commit is contained in:
Job Noorman 2024-08-15 08:46:35 +02:00 committed by Marge Bot
parent cd171964a6
commit 849005a471

View file

@ -96,6 +96,8 @@ print_instr_name(struct log_stream *stream, struct ir3_instruction *instr,
mesa_log_stream_printf(stream, "(nop%d)", instr->nop);
if (instr->flags & IR3_INSTR_UL)
mesa_log_stream_printf(stream, "(ul)");
if (instr->flags & IR3_INSTR_SAT)
mesa_log_stream_printf(stream, "(sat)");
} else {
mesa_log_stream_printf(stream, " ");
}