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:
Alyssa Rosenzweig
2020-05-01 14:53:58 -04:00
parent c48839086d
commit 0561fe3a06
+5 -2
View File
@@ -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");
}
}