mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
pan/midgard: Pretty-print units
Since we are seeing some use of MIR post-scheduling, let's get this printed right. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
parent
73f54f286a
commit
ba8ec19a64
1 changed files with 24 additions and 1 deletions
|
|
@ -61,6 +61,29 @@ mir_print_mask(unsigned mask)
|
|||
}
|
||||
}
|
||||
|
||||
static const char *
|
||||
mir_get_unit(unsigned unit)
|
||||
{
|
||||
switch (unit) {
|
||||
case ALU_ENAB_VEC_MUL:
|
||||
return "vmul";
|
||||
case ALU_ENAB_SCAL_ADD:
|
||||
return "sadd";
|
||||
case ALU_ENAB_VEC_ADD:
|
||||
return "vadd";
|
||||
case ALU_ENAB_SCAL_MUL:
|
||||
return "smul";
|
||||
case ALU_ENAB_VEC_LUT:
|
||||
return "lut";
|
||||
case ALU_ENAB_BR_COMPACT:
|
||||
return "br";
|
||||
case ALU_ENAB_BRANCH:
|
||||
return "brx";
|
||||
default:
|
||||
return "???";
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
mir_print_instruction(midgard_instruction *ins)
|
||||
{
|
||||
|
|
@ -72,7 +95,7 @@ mir_print_instruction(midgard_instruction *ins)
|
|||
const char *name = alu_opcode_props[op].name;
|
||||
|
||||
if (ins->unit)
|
||||
printf("%d.", ins->unit);
|
||||
printf("%s.", mir_get_unit(ins->unit));
|
||||
|
||||
printf("%s", name ? name : "??");
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue