X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fstate_tracker%2Fst_nir_lower_builtin.c;h=4227ee5529a954dc1db0d1bfd0162fb608098004;hb=5f1a16d06d8b2cf6942b1e4b250842ec0be2c8a4;hp=8221502b811850fad099bdb85cb6cd2cd6a86aa2;hpb=d80c342d898275cbd6266c37e70dc422590d7d8c;p=mesa.git diff --git a/src/mesa/state_tracker/st_nir_lower_builtin.c b/src/mesa/state_tracker/st_nir_lower_builtin.c index 8221502b811..4227ee5529a 100644 --- a/src/mesa/state_tracker/st_nir_lower_builtin.c +++ b/src/mesa/state_tracker/st_nir_lower_builtin.c @@ -58,6 +58,7 @@ #include "compiler/nir/nir.h" #include "compiler/nir/nir_builder.h" +#include "compiler/nir/nir_deref.h" #include "st_nir.h" #include "compiler/glsl/ir.h" #include "uniforms.h" @@ -70,45 +71,42 @@ typedef struct { } lower_builtin_state; static const struct gl_builtin_uniform_element * -get_element(const struct gl_builtin_uniform_desc *desc, nir_deref_var *deref) +get_element(const struct gl_builtin_uniform_desc *desc, nir_deref_path *path) { - nir_deref *tail = &deref->deref; + int idx = 1; + + assert(path->path[0]->deref_type == nir_deref_type_var); if ((desc->num_elements == 1) && (desc->elements[0].field == NULL)) return NULL; /* we handle arrays in get_variable(): */ - if (tail->child->deref_type == nir_deref_type_array) - tail = tail->child; + if (path->path[idx]->deref_type == nir_deref_type_array) + idx++; /* don't need to deal w/ non-struct or array of non-struct: */ - if (!tail->child) + if (!path->path[idx]) return NULL; - if (tail->child->deref_type != nir_deref_type_struct) + if (path->path[idx]->deref_type != nir_deref_type_struct) return NULL; - nir_deref_struct *deref_struct = nir_deref_as_struct(tail->child); - - assert(deref_struct->index < desc->num_elements); + assert(path->path[idx]->strct.index < desc->num_elements); - return &desc->elements[deref_struct->index]; + return &desc->elements[path->path[idx]->strct.index ]; } static nir_variable * -get_variable(lower_builtin_state *state, nir_deref_var *deref, +get_variable(lower_builtin_state *state, nir_deref_path *path, const struct gl_builtin_uniform_element *element) { nir_shader *shader = state->shader; gl_state_index16 tokens[STATE_LENGTH]; + int idx = 1; memcpy(tokens, element->tokens, sizeof(tokens)); - if (deref->deref.child->deref_type == nir_deref_type_array) { - nir_deref_array *darr = nir_deref_as_array(deref->deref.child); - - assert(darr->deref_array_type == nir_deref_array_type_direct); - + if (path->path[idx]->deref_type == nir_deref_type_array) { /* we need to fixup the array index slot: */ switch (tokens[0]) { case STATE_MODELVIEW_MATRIX: @@ -121,7 +119,7 @@ get_variable(lower_builtin_state *state, nir_deref_var *deref, case STATE_TEXGEN: case STATE_TEXENV_COLOR: case STATE_CLIPPLANE: - tokens[1] = darr->base_offset; + tokens[1] = nir_src_as_uint(path->path[idx]->arr.index); break; } } @@ -140,7 +138,7 @@ get_variable(lower_builtin_state *state, nir_deref_var *deref, nir_variable_create(shader, nir_var_uniform, glsl_vec4_type(), name); var->num_state_slots = 1; - var->state_slots = ralloc_array(var, nir_state_slot, 1); + var->state_slots = rzalloc_array(var, nir_state_slot, 1); memcpy(var->state_slots[0].tokens, tokens, sizeof(var->state_slots[0].tokens)); @@ -153,6 +151,7 @@ static bool lower_builtin_block(lower_builtin_state *state, nir_block *block) { nir_builder *b = &state->builder; + bool progress = false; nir_foreach_instr_safe(instr, block) { if (instr->type != nir_instr_type_intrinsic) @@ -160,10 +159,11 @@ lower_builtin_block(lower_builtin_state *state, nir_block *block) nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr); - if (intrin->intrinsic != nir_intrinsic_load_var) + if (intrin->intrinsic != nir_intrinsic_load_deref) continue; - nir_variable *var = intrin->variables[0]->var; + nir_variable *var = + nir_deref_instr_get_variable(nir_src_as_deref(intrin->src[0])); if (var->data.mode != nir_var_uniform) continue; @@ -178,12 +178,16 @@ lower_builtin_block(lower_builtin_state *state, nir_block *block) if (!desc) continue; - const struct gl_builtin_uniform_element *element = - get_element(desc, intrin->variables[0]); + nir_deref_path path; + nir_deref_path_init(&path, nir_src_as_deref(intrin->src[0]), NULL); + + const struct gl_builtin_uniform_element *element = get_element(desc, &path); /* matrix elements (array_deref) do not need special handling: */ - if (!element) + if (!element) { + nir_deref_path_finish(&path); continue; + } /* remove existing var from uniform list: */ exec_node_remove(&var->node); @@ -192,20 +196,20 @@ lower_builtin_block(lower_builtin_state *state, nir_block *block) */ exec_node_self_link(&var->node); - nir_variable *new_var = - get_variable(state, intrin->variables[0], element); + nir_variable *new_var = get_variable(state, &path, element); + nir_deref_path_finish(&path); b->cursor = nir_before_instr(instr); nir_ssa_def *def = nir_load_var(b, new_var); /* swizzle the result: */ - unsigned swiz[4]; + unsigned swiz[NIR_MAX_VEC_COMPONENTS] = {0}; for (unsigned i = 0; i < 4; i++) { swiz[i] = GET_SWZ(element->swizzle, i); assert(swiz[i] <= SWIZZLE_W); } - def = nir_swizzle(b, def, swiz, intrin->num_components, true); + def = nir_swizzle(b, def, swiz, intrin->num_components); /* and rewrite uses of original instruction: */ assert(intrin->dest.is_ssa); @@ -217,9 +221,11 @@ lower_builtin_block(lower_builtin_state *state, nir_block *block) * var since we don't want it to get uniform space allocated. */ nir_instr_remove(&intrin->instr); + + progress = true; } - return true; + return progress; } static void @@ -228,10 +234,14 @@ lower_builtin_impl(lower_builtin_state *state, nir_function_impl *impl) nir_builder_init(&state->builder, impl); state->mem_ctx = ralloc_parent(impl); + bool progress = false; nir_foreach_block(block, impl) { - lower_builtin_block(state, block); + progress |= lower_builtin_block(state, block); } + if (progress) + nir_remove_dead_derefs_impl(impl); + nir_metadata_preserve(impl, nir_metadata_block_index | nir_metadata_dominance); } @@ -239,7 +249,6 @@ lower_builtin_impl(lower_builtin_state *state, nir_function_impl *impl) void st_nir_lower_builtin(nir_shader *shader) { - nir_assert_lowered_derefs(shader, nir_lower_load_store_derefs); lower_builtin_state state; state.shader = shader; nir_foreach_function(function, shader) {