mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 02:20:11 +01:00
i965/disasm: Show jump count for if/iff/halt.
These instructions don't have pop count. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
fb2fddefce
commit
4fcefac753
1 changed files with 1 additions and 1 deletions
|
|
@ -1259,7 +1259,7 @@ brw_disassemble_inst(FILE *file, struct brw_context *brw, brw_inst *inst,
|
|||
opcode == BRW_OPCODE_IFF ||
|
||||
opcode == BRW_OPCODE_HALT)) {
|
||||
pad(file, 16);
|
||||
format(file, "Jump: %d", brw_inst_gen4_pop_count(brw, inst));
|
||||
format(file, "Jump: %d", brw_inst_gen4_jump_count(brw, inst));
|
||||
} else if (brw->gen < 6 && opcode == BRW_OPCODE_ENDIF) {
|
||||
pad(file, 16);
|
||||
format(file, "Pop: %d", brw_inst_gen4_pop_count(brw, inst));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue