mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 23:00:11 +01:00
i965: Fix disassembly of data port writes on Ivybridge.
msg_type moved by a bit, so the message type was being disassembled incorrectly. In particular, render target writes were showing up as "OWORD block write". NOTE: This is a candidate for stable release branches. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
a608be5d33
commit
dcdfd1905c
1 changed files with 12 additions and 1 deletions
|
|
@ -1029,7 +1029,18 @@ int brw_disasm (FILE *file, struct brw_instruction *inst, int gen)
|
|||
break;
|
||||
|
||||
case BRW_SFID_DATAPORT_WRITE:
|
||||
if (gen >= 6) {
|
||||
if (gen >= 7) {
|
||||
format (file, " (");
|
||||
|
||||
err |= control (file, "DP rc message type",
|
||||
dp_rc_msg_type_gen6,
|
||||
inst->bits3.gen7_dp.msg_type, &space);
|
||||
|
||||
format (file, ", %d, %d, %d)",
|
||||
inst->bits3.gen7_dp.binding_table_index,
|
||||
inst->bits3.gen7_dp.msg_control,
|
||||
inst->bits3.gen7_dp.msg_type);
|
||||
} else if (gen == 6) {
|
||||
format (file, " (");
|
||||
|
||||
err |= control (file, "DP rc message type",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue