mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
r600: for memory instructions dump index gpr for read indirects also.
This just makes sure we can see the index gpr in the asm dumps. Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
ac8fb9800a
commit
043f16eba1
1 changed files with 2 additions and 1 deletions
|
|
@ -2145,7 +2145,8 @@ void r600_bytecode_disasm(struct r600_bytecode *bc)
|
|||
o += print_swizzle(7);
|
||||
}
|
||||
|
||||
if (cf->output.type == V_SQ_CF_ALLOC_EXPORT_WORD0_SQ_EXPORT_WRITE_IND)
|
||||
if (cf->output.type == V_SQ_CF_ALLOC_EXPORT_WORD0_SQ_EXPORT_WRITE_IND ||
|
||||
cf->output.type == V_SQ_CF_ALLOC_EXPORT_WORD0_SQ_EXPORT_READ_IND)
|
||||
o += fprintf(stderr, " R%d", cf->output.index_gpr);
|
||||
|
||||
o += print_indent(o, 67);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue