mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 07:20:10 +01:00
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:
parent
db30011663
commit
54cde77163
1 changed files with 4 additions and 0 deletions
|
|
@ -82,6 +82,10 @@ print_instr_name(struct log_stream *stream, struct ir3_instruction *instr,
|
|||
mesa_log_stream_printf(stream, "(ul)");
|
||||
if (instr->flags & IR3_INSTR_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 {
|
||||
mesa_log_stream_printf(stream, " ");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue