nir: add nir_instr_rewrite_deref

Allows modifying a texture instruction's texture and sampler derefs.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
Nicolai Hähnle
2017-06-09 15:13:08 +02:00
parent 540b1a8f0b
commit b27c2d402e
2 changed files with 15 additions and 0 deletions

View File

@@ -1509,6 +1509,19 @@ nir_instr_rewrite_dest(nir_instr *instr, nir_dest *dest, nir_dest new_dest)
src_add_all_uses(dest->reg.indirect, instr, NULL);
}
void
nir_instr_rewrite_deref(nir_instr *instr, nir_deref_var **deref,
nir_deref_var *new_deref)
{
if (*deref)
visit_deref_src(*deref, remove_use_cb, NULL);
*deref = new_deref;
if (*deref)
visit_deref_src(*deref, add_use_cb, instr);
}
/* note: does *not* take ownership of 'name' */
void
nir_ssa_def_init(nir_instr *instr, nir_ssa_def *def,