diff options
author | Kenneth Graunke <[email protected]> | 2014-02-05 01:35:50 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-02-07 19:38:12 -0800 |
commit | 8a7fe50067cf0f0d9af4610b6e10890235fe313d (patch) | |
tree | 6e738e4633e174d00e63d72c46d258ca5b1732af | |
parent | 5230655a2ee46ad2215d8d97de2e6a6907cc47e2 (diff) |
i965: Don't disassemble UIP field for Broadwell WHILE instructions.
The WHILE instruction doesn't have UIP. It only has JIP.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/gen8_disasm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/gen8_disasm.c b/src/mesa/drivers/dri/i965/gen8_disasm.c index b2ab4486e7d..37059083b3b 100644 --- a/src/mesa/drivers/dri/i965/gen8_disasm.c +++ b/src/mesa/drivers/dri/i965/gen8_disasm.c @@ -828,11 +828,10 @@ gen8_disassemble(FILE *file, struct gen8_instruction *inst, int gen) pad(file, 64); err |= src2_3src(file, inst); } else { - if (opcode == BRW_OPCODE_ENDIF) { + if (opcode == BRW_OPCODE_ENDIF || opcode == BRW_OPCODE_WHILE) { format(file, " %d", gen8_jip(inst)); } else if (opcode == BRW_OPCODE_IF || opcode == BRW_OPCODE_ELSE || - opcode == BRW_OPCODE_WHILE || opcode == BRW_OPCODE_BREAK || opcode == BRW_OPCODE_CONTINUE || opcode == BRW_OPCODE_HALT) { |