aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler
diff options
context:
space:
mode:
authorRhys Perry <[email protected]>2020-05-26 18:08:17 +0100
committerMarge Bot <[email protected]>2020-05-26 18:54:17 +0000
commit8e2009c4481434f1b97713d8a0ec193fdccb65a6 (patch)
treefff0764315015b9b0d54ac0227c75d62a2c7f002 /src/compiler
parente369b8931c675a6e86715c682723b085e45e0ee5 (diff)
nir: fix lowering to scratch with boolean access
Signed-off-by: Rhys Perry <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> Fixes: 18ed82b084c79bf63666f2da22e5d675fb01aa26 ('nir: Add a pass for selectively lowering variables to scratch space') Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5214>
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/nir/nir_lower_scratch.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/compiler/nir/nir_lower_scratch.c b/src/compiler/nir/nir_lower_scratch.c
index aacc2ddca08..0301afd3dcb 100644
--- a/src/compiler/nir/nir_lower_scratch.c
+++ b/src/compiler/nir/nir_lower_scratch.c
@@ -57,24 +57,25 @@ lower_load_store(nir_builder *b,
load->num_components = intrin->num_components;
load->src[0] = nir_src_for_ssa(offset);
nir_intrinsic_set_align(load, align, 0);
+ unsigned bit_size = intrin->dest.ssa.bit_size;
nir_ssa_dest_init(&load->instr, &load->dest,
intrin->dest.ssa.num_components,
- intrin->dest.ssa.bit_size, NULL);
+ bit_size == 1 ? 32 : bit_size, NULL);
nir_builder_instr_insert(b, &load->instr);
nir_ssa_def *value = &load->dest.ssa;
- if (glsl_type_is_boolean(deref->type))
- value = nir_b2i32(b, value);
+ if (bit_size == 1)
+ value = nir_b2b1(b, value);
nir_ssa_def_rewrite_uses(&intrin->dest.ssa,
- nir_src_for_ssa(&load->dest.ssa));
+ nir_src_for_ssa(value));
} else {
assert(intrin->intrinsic == nir_intrinsic_store_deref);
assert(intrin->src[1].is_ssa);
nir_ssa_def *value = intrin->src[1].ssa;
- if (glsl_type_is_boolean(deref->type))
- value = nir_i2b(b, value);
+ if (value->bit_size == 1)
+ value = nir_b2b32(b, value);
nir_intrinsic_instr *store =
nir_intrinsic_instr_create(b->shader, nir_intrinsic_store_scratch);