projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb2fdde
)
i965/disasm: Show jump count for if/iff/halt.
author
Matt Turner
<mattst88@gmail.com>
Tue, 26 Aug 2014 01:40:24 +0000
(18:40 -0700)
committer
Matt Turner
<mattst88@gmail.com>
Fri, 29 Aug 2014 02:06:27 +0000
(19:06 -0700)
These instructions don't have pop count.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_disasm.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/i965/brw_disasm.c
b/src/mesa/drivers/dri/i965/brw_disasm.c
index
4374278
..
5a56591
100644
(file)
--- a/
src/mesa/drivers/dri/i965/brw_disasm.c
+++ b/
src/mesa/drivers/dri/i965/brw_disasm.c
@@
-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_
po
p_count(brw, inst));
+ format(file, "Jump: %d", brw_inst_gen4_
jum
p_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));