mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 14:08:05 +02:00
pan/mdg: Print writeout sources in mir_print_instruction
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5065>
This commit is contained in:
parent
d37e901e35
commit
deaef1df15
1 changed files with 10 additions and 0 deletions
|
|
@ -307,6 +307,16 @@ mir_print_instruction(midgard_instruction *ins)
|
|||
else
|
||||
printf("true");
|
||||
|
||||
if (ins->writeout) {
|
||||
printf(" (c: ");
|
||||
PRINT_SRC(ins, 0);
|
||||
printf(", z: ");
|
||||
PRINT_SRC(ins, 2);
|
||||
printf(", s: ");
|
||||
PRINT_SRC(ins, 3);
|
||||
printf(")");
|
||||
}
|
||||
|
||||
if (ins->branch.target_type != TARGET_DISCARD)
|
||||
printf(" %s -> block(%d)\n",
|
||||
ins->branch.target_type < 4 ?
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue