nir/builder: Add a helper for creating undefs
Reviewed-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
@@ -74,6 +74,20 @@ nir_builder_cf_insert(nir_builder *build, nir_cf_node *cf)
|
||||
nir_cf_node_insert(build->cursor, cf);
|
||||
}
|
||||
|
||||
static inline nir_ssa_def *
|
||||
nir_ssa_undef(nir_builder *build, unsigned num_components, unsigned bit_size)
|
||||
{
|
||||
nir_ssa_undef_instr *undef =
|
||||
nir_ssa_undef_instr_create(build->shader, num_components);
|
||||
undef->def.bit_size = bit_size;
|
||||
if (!undef)
|
||||
return NULL;
|
||||
|
||||
nir_instr_insert(nir_before_cf_list(&build->impl->body), &undef->instr);
|
||||
|
||||
return &undef->def;
|
||||
}
|
||||
|
||||
static inline nir_ssa_def *
|
||||
nir_build_imm(nir_builder *build, unsigned num_components, nir_const_value value)
|
||||
{
|
||||
|
Reference in New Issue
Block a user