mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-15 13:10:31 +01:00
i965/vec4: dump the instruction execution size
Reviewed-by: Francisco Jerez <currojerez@riseup.net> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
486fd5422c
commit
29dd5cf9d6
1 changed files with 2 additions and 1 deletions
|
|
@ -1437,7 +1437,8 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
|
|||
pred_ctrl_align16[inst->predicate]);
|
||||
}
|
||||
|
||||
fprintf(file, "%s", brw_instruction_name(devinfo, inst->opcode));
|
||||
fprintf(file, "%s(%d)", brw_instruction_name(devinfo, inst->opcode),
|
||||
inst->exec_size);
|
||||
if (inst->saturate)
|
||||
fprintf(file, ".sat");
|
||||
if (inst->conditional_mod) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue