mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 02:50:16 +01:00
i965: Fix disasm of a SEND's mlen and rlen on Ironlake.
This commit is contained in:
parent
3f906621da
commit
a3cc7585ea
1 changed files with 11 additions and 4 deletions
|
|
@ -917,10 +917,17 @@ int brw_disasm (FILE *file, struct brw_instruction *inst, int gen)
|
|||
}
|
||||
if (space)
|
||||
string (file, " ");
|
||||
format (file, "mlen %d",
|
||||
inst->bits3.generic.msg_length);
|
||||
format (file, " rlen %d",
|
||||
inst->bits3.generic.response_length);
|
||||
if (gen == 5) {
|
||||
format (file, "mlen %d",
|
||||
inst->bits3.generic_gen5.msg_length);
|
||||
format (file, " rlen %d",
|
||||
inst->bits3.generic_gen5.response_length);
|
||||
} else {
|
||||
format (file, "mlen %d",
|
||||
inst->bits3.generic.msg_length);
|
||||
format (file, " rlen %d",
|
||||
inst->bits3.generic.response_length);
|
||||
}
|
||||
}
|
||||
pad (file, 64);
|
||||
if (inst->header.opcode != BRW_OPCODE_NOP) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue