mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
pan/decode: Fix SYNC_SET32 double dots
Signed-off-by: Mary Guillemard <mary.guillemard@collabora.com> Fixes:3778df8778("pan/decode: Untangle CS disassembling and interpretation") Reviewed-by: Christoph Pillmayer <christoph.pillmayer@arm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37396> (cherry picked from commit664a83e413)
This commit is contained in:
parent
0d94a27bb3
commit
de0e1a9eb5
2 changed files with 2 additions and 2 deletions
|
|
@ -3344,7 +3344,7 @@
|
||||||
"description": "pan/decode: Fix SYNC_SET32 double dots",
|
"description": "pan/decode: Fix SYNC_SET32 double dots",
|
||||||
"nominated": true,
|
"nominated": true,
|
||||||
"nomination_type": 2,
|
"nomination_type": 2,
|
||||||
"resolution": 0,
|
"resolution": 1,
|
||||||
"main_sha": null,
|
"main_sha": null,
|
||||||
"because_sha": "3778df877898e07931d1323b23a315966227f6b1",
|
"because_sha": "3778df877898e07931d1323b23a315966227f6b1",
|
||||||
"notes": null
|
"notes": null
|
||||||
|
|
|
||||||
|
|
@ -511,7 +511,7 @@ print_cs_instr(FILE *fp, const uint64_t *instr)
|
||||||
|
|
||||||
case MALI_CS_OPCODE_SYNC_SET32: {
|
case MALI_CS_OPCODE_SYNC_SET32: {
|
||||||
cs_unpack(instr, CS_SYNC_SET32, I);
|
cs_unpack(instr, CS_SYNC_SET32, I);
|
||||||
fprintf(fp, "SYNC_SET32.%s%s [d%u], r%u, #%x, #%u",
|
fprintf(fp, "SYNC_SET32%s%s [d%u], r%u, #%x, #%u",
|
||||||
I.error_propagate ? ".error_propagate" : "",
|
I.error_propagate ? ".error_propagate" : "",
|
||||||
I.scope == MALI_CS_SYNC_SCOPE_CSG ? ".csg" : ".system", I.address,
|
I.scope == MALI_CS_SYNC_SCOPE_CSG ? ".csg" : ".system", I.address,
|
||||||
I.data, I.wait_mask, I.signal_slot);
|
I.data, I.wait_mask, I.signal_slot);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue