diff options
author | Dave Airlie <[email protected]> | 2016-03-31 16:13:35 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-06-26 16:23:21 +1000 |
commit | 043f16eba1ed1c4614570e8a6a312767e203e1a1 (patch) | |
tree | 23ce63370dce053e0071938194d988c9df0fd68b /src/gallium/drivers/r600/r600_asm.c | |
parent | ac8fb9800a8b20ffa6c3eea1c7b7212d2cc79b40 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 9761fe0b8df..e0de645c2e3 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -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); |