[Mesa-dev] [PATCH v2 4/5] nir: rework nir_link_opt_varyings()
Timothy Arceri
tarceri at itsqueeze.com
Wed Dec 19 10:03:35 UTC 2018
This just cleans things up a little and make things more safe for
derefs.
---
src/compiler/nir/nir_linking_helpers.c | 28 +++++++++++---------------
1 file changed, 12 insertions(+), 16 deletions(-)
diff --git a/src/compiler/nir/nir_linking_helpers.c b/src/compiler/nir/nir_linking_helpers.c
index f3125a9880..2a3e6f407c 100644
--- a/src/compiler/nir/nir_linking_helpers.c
+++ b/src/compiler/nir/nir_linking_helpers.c
@@ -700,14 +700,8 @@ nir_link_xfb_varyings(nir_shader *producer, nir_shader *consumer)
}
static bool
-can_replace_varying(nir_intrinsic_instr *store_intr)
+can_replace_varying(nir_variable *out_var)
{
- nir_deref_instr *out_deref = nir_src_as_deref(store_intr->src[0]);
- if (out_deref->mode != nir_var_shader_out)
- return false;
-
- nir_variable *out_var = nir_deref_instr_get_variable(out_deref);
-
/* Skip types that require more complex handling.
* TODO: add support for these types.
*/
@@ -720,7 +714,7 @@ can_replace_varying(nir_intrinsic_instr *store_intr)
/* Limit this pass to scalars for now to keep things simple. Most varyings
* should have been lowered to scalars at this point anyway.
*/
- if (store_intr->num_components != 1)
+ if (!glsl_type_is_scalar(out_var->type))
return false;
if (out_var->data.location < VARYING_SLOT_VAR0 ||
@@ -731,12 +725,8 @@ can_replace_varying(nir_intrinsic_instr *store_intr)
}
static bool
-try_replace_constant_input(nir_shader *shader,
- nir_intrinsic_instr *store_intr)
+replace_constant_input(nir_shader *shader, nir_intrinsic_instr *store_intr)
{
- if (!can_replace_varying(store_intr))
- return false;
-
nir_function_impl *impl = nir_shader_get_entrypoint(shader);
nir_builder b;
@@ -810,11 +800,17 @@ nir_link_opt_varyings(nir_shader *producer, nir_shader *consumer)
if (intr->intrinsic != nir_intrinsic_store_deref)
continue;
- if (intr->src[1].ssa->parent_instr->type != nir_instr_type_load_const) {
+ nir_deref_instr *out_deref = nir_src_as_deref(intr->src[0]);
+ if (out_deref->mode != nir_var_shader_out)
+ continue;
+
+ nir_variable *out_var = nir_deref_instr_get_variable(out_deref);
+ if (!can_replace_varying(out_var))
continue;
- }
- progress |= try_replace_constant_input(consumer, intr);
+ if (intr->src[1].ssa->parent_instr->type == nir_instr_type_load_const) {
+ progress |= replace_constant_input(consumer, intr);
+ }
}
return progress;
--
2.19.2
More information about the mesa-dev
mailing list