pan/bi: Futureproof COMBINE lowering against non-u32
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4883>
This commit is contained in:
@@ -198,6 +198,7 @@ bi_lower_combine(bi_context *ctx, bi_block *block)
|
||||
if (ins->type != BI_COMBINE) continue;
|
||||
|
||||
unsigned R = bi_make_temp_reg(ctx);
|
||||
unsigned sz = nir_alu_type_get_type_size(ins->dest_type);
|
||||
|
||||
bi_foreach_src(ins, s) {
|
||||
/* We're done early for vec2/3 */
|
||||
@@ -215,11 +216,13 @@ bi_lower_combine(bi_context *ctx, bi_block *block)
|
||||
bi_insert_combine_mov(ctx, ins, s, R);
|
||||
}
|
||||
#endif
|
||||
if (ins->dest_type == nir_type_uint32)
|
||||
if (sz == 32)
|
||||
bi_combine_mov32(ctx, ins, s, R);
|
||||
else {
|
||||
else if (sz == 16) {
|
||||
bi_combine_sel16(ctx, ins, s, R);
|
||||
s++;
|
||||
} else {
|
||||
unreachable("Unknown COMBINE size");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user