diff options
author | Jason Ekstrand <jason.ekstrand@intel.com> | 2014-12-15 17:37:07 -0800 |
---|---|---|
committer | Jason Ekstrand <jason.ekstrand@intel.com> | 2014-12-17 21:08:13 -0800 |
commit | 4019ecd117683073afcfd5df7ac6fffe30b25eed (patch) | |
tree | 0640b6f34ae9549b3988183e290f961c8be63231 | |
parent | 5d6ef51ef6399307543958ecb5ea126554275561 (diff) |
nir/lower_system_values: Handle SSA destinations
-rw-r--r-- | src/glsl/nir/nir_lower_system_values.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/glsl/nir/nir_lower_system_values.c b/src/glsl/nir/nir_lower_system_values.c index 7bb02a77bd..d1b4d26e2a 100644 --- a/src/glsl/nir/nir_lower_system_values.c +++ b/src/glsl/nir/nir_lower_system_values.c @@ -69,7 +69,20 @@ convert_instr(nir_intrinsic_instr *instr) } nir_intrinsic_instr *new_instr = nir_intrinsic_instr_create(mem_ctx, op); - new_instr->dest = nir_dest_copy(instr->dest, mem_ctx); + + if (instr->dest.is_ssa) { + new_instr->dest.is_ssa = true; + nir_ssa_def_init(&new_instr->instr, &new_instr->dest.ssa, + instr->dest.ssa.num_components, NULL); + nir_src new_dest_src = { + .is_ssa = true, + .ssa = &new_instr->dest.ssa, + }; + nir_ssa_def_rewrite_uses(&instr->dest.ssa, new_dest_src, mem_ctx); + } else { + new_instr->dest = nir_dest_copy(instr->dest, mem_ctx); + } + nir_instr_insert_before(&instr->instr, &new_instr->instr); nir_instr_remove(&instr->instr); } |