nir: Make nir_copy_deref follow the "clone" pattern
We rename it to nir_deref_clone, re-order the sources to match the other clone functions, and expose nir_deref_var_clone. This past part, in particular, lets us get rid of quite a few lines since we no longer have to call nir_copy_deref and wrap it in deref_as_var. Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
@@ -1178,8 +1178,7 @@ nir_visitor::visit(ir_assignment *ir)
|
||||
nir_intrinsic_instr_create(this->shader, nir_intrinsic_store_var);
|
||||
store->num_components = ir->lhs->type->vector_elements;
|
||||
nir_intrinsic_set_write_mask(store, ir->write_mask);
|
||||
nir_deref *store_deref = nir_copy_deref(store, &lhs_deref->deref);
|
||||
store->variables[0] = nir_deref_as_var(store_deref);
|
||||
store->variables[0] = nir_deref_var_clone(lhs_deref, store);
|
||||
store->src[0] = nir_src_for_ssa(src);
|
||||
|
||||
if (ir->condition) {
|
||||
|
Reference in New Issue
Block a user