mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 16:50:13 +01:00
pan/bi: Model +BLEND clobbering of r48
Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11123>
This commit is contained in:
parent
4663afd8ab
commit
071165e082
1 changed files with 2 additions and 2 deletions
|
|
@ -220,8 +220,8 @@ bi_mark_interference(bi_block *block, struct lcra_state *l, uint16_t *live, uint
|
|||
}
|
||||
|
||||
if (!is_blend && ins->op == BI_OPCODE_BLEND) {
|
||||
/* Blend shaders might clobber r0-r15. */
|
||||
uint64_t clobber = BITFIELD64_MASK(16);
|
||||
/* Blend shaders might clobber r0-r15, r48. */
|
||||
uint64_t clobber = BITFIELD64_MASK(16) | BITFIELD64_BIT(48);
|
||||
|
||||
for (unsigned i = 0; i < node_count; ++i) {
|
||||
if (live[i])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue