mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
pan/mdg: Fix mask usage when filling before a spill
Check the bytemask against 0xFFFF rather than 0xF so that the fill is skipped for a .xyzw write rather than a .x write. Set the mask on the store to 0xF when doing a read so that all components are written back. Fixes:31d26ebf1b("pan/mdg: Fill from TLS before spilling non-SSA nodes") Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16382> (cherry picked from commitc750ab8a38)
This commit is contained in:
parent
cf289ff969
commit
7feaf6c548
2 changed files with 8 additions and 3 deletions
|
|
@ -679,7 +679,7 @@
|
|||
"description": "pan/mdg: Fix mask usage when filling before a spill",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "31d26ebf1b9d0f819c894aec10c29a44052a995a"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -946,10 +946,15 @@ mir_spill_register(
|
|||
} else {
|
||||
unsigned dest = spill_index++;
|
||||
|
||||
if (write_count > 1 && mir_bytemask(ins) != 0xF) {
|
||||
unsigned bytemask = mir_bytemask(ins);
|
||||
unsigned write_mask = mir_from_bytemask(mir_round_bytemask_up(
|
||||
bytemask, 32), 32);
|
||||
|
||||
if (write_count > 1 && bytemask != 0xFFFF) {
|
||||
midgard_instruction read =
|
||||
v_load_store_scratch(dest, spill_slot, false, 0xF);
|
||||
mir_insert_instruction_before_scheduled(ctx, block, ins, read);
|
||||
write_mask = 0xF;
|
||||
}
|
||||
|
||||
ins->dest = dest;
|
||||
|
|
@ -977,7 +982,7 @@ mir_spill_register(
|
|||
dest = spill_index++;
|
||||
|
||||
midgard_instruction st =
|
||||
v_load_store_scratch(dest, spill_slot, true, ins->mask);
|
||||
v_load_store_scratch(dest, spill_slot, true, write_mask);
|
||||
mir_insert_instruction_after_scheduled(ctx, block, ins, st);
|
||||
|
||||
if (move) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue