diff options
author | Jason Ekstrand <[email protected]> | 2018-11-28 12:26:52 -0600 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2019-01-08 00:38:30 +0000 |
commit | e94a027af8953ba22f4daa3009ab71479b35c78f (patch) | |
tree | 03a9b69081808ff3bd79f9bfcb257ac7023719ad /src/compiler/nir/nir.c | |
parent | fc9c4f89b85c0116c0dc22a3eaf25f5df88ad657 (diff) |
nir: Add a ptr_as_array deref type
These correspond directly to SPIR-V's OpPtrAccessChain. As such, they
treat whatever their parent gives them as if it's the first element in
some array and dereferences that array. If the parent is, itself, an
array deref, then the two indices can just be added together to get the
final array deref. However, it can also be used in cases where what you
have is a dereference to some random vec2 value somewhere. In this
case, we require a cast before the ptr_as_array and use the ptr_stride
field in the cast to provide a stride for the ptr_as_array derefs.
Reviewed-by: Alejandro PiƱeiro <[email protected]>
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.c')
-rw-r--r-- | src/compiler/nir/nir.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/compiler/nir/nir.c b/src/compiler/nir/nir.c index b0b031cde61..07bb96dc3b0 100644 --- a/src/compiler/nir/nir.c +++ b/src/compiler/nir/nir.c @@ -460,7 +460,8 @@ nir_deref_instr_create(nir_shader *shader, nir_deref_type deref_type) if (deref_type != nir_deref_type_var) src_init(&instr->parent); - if (deref_type == nir_deref_type_array) + if (deref_type == nir_deref_type_array || + deref_type == nir_deref_type_ptr_as_array) src_init(&instr->arr.index); dest_init(&instr->dest); @@ -1067,7 +1068,8 @@ visit_deref_instr_src(nir_deref_instr *instr, return false; } - if (instr->deref_type == nir_deref_type_array) { + if (instr->deref_type == nir_deref_type_array || + instr->deref_type == nir_deref_type_ptr_as_array) { if (!visit_src(&instr->arr.index, cb, state)) return false; } |