diff options
author | Iago Toral Quiroga <[email protected]> | 2016-05-30 13:36:30 +0200 |
---|---|---|
committer | Samuel Iglesias Gonsálvez <[email protected]> | 2017-01-03 11:26:51 +0100 |
commit | 29dd5cf9d64ac998cb313db8a908272a6154ec46 (patch) | |
tree | bd91351ebd47f3808d47a5b99951b144f2a910fc | |
parent | 486fd5422c09bbd9b951b3b7124f1a904ecff709 (diff) |
i965/vec4: dump the instruction execution size
Reviewed-by: Francisco Jerez <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/drivers/dri/i965/brw_vec4.cpp index 65438f702d7..7bdfc4edcab 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp @@ -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) { |