diff options
author | Kenneth Graunke <[email protected]> | 2016-04-08 13:52:30 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2016-04-09 21:10:32 -0700 |
commit | ce84a92df54c738d2c248716f0f673247d50e1a7 (patch) | |
tree | 169a52685650d28b1ba26104ea83ab7fbf0bbb47 /src | |
parent | 20c8f365081801b3370b705d18a01f13c181abe9 (diff) |
i965/disasm: Decode per-slot offsets.
We just never bothered to decode this.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ben Widawsky <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_disasm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c index 08486578718..88bd7a499a7 100644 --- a/src/mesa/drivers/dri/i965/brw_disasm.c +++ b/src/mesa/drivers/dri/i965/brw_disasm.c @@ -1517,6 +1517,11 @@ brw_disassemble_inst(FILE *file, const struct brw_device_info *devinfo, : gen5_urb_opcode, opcode, &space); + if (devinfo->gen >= 7 && + brw_inst_urb_per_slot_offset(devinfo, inst)) { + string(file, " per-slot"); + } + if (opcode == GEN8_URB_OPCODE_SIMD8_WRITE || opcode == GEN8_URB_OPCODE_SIMD8_READ) { if (brw_inst_urb_channel_mask_present(devinfo, inst)) |