pan/bi: Add bi_rewrite_index_src_single helper

Ported from Midgard.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7206>
This commit is contained in:
Alyssa Rosenzweig 2020-10-14 20:35:59 -04:00 committed by Marge Bot
parent 9e915fd5f7
commit 1db83fc75d

View file

@ -174,6 +174,15 @@ bi_install_registers(bi_context *ctx, struct lcra_state *l)
}
}
static void
bi_rewrite_index_src_single(bi_instruction *ins, unsigned old, unsigned new)
{
bi_foreach_src(ins, i) {
if (ins->src[i] == old)
ins->src[i] = new;
}
}
static bi_instruction
bi_spill(unsigned node, uint64_t offset, unsigned channels)
{