nir: Report progress from lower_vec_to_movs().

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
This commit is contained in:
Jason Ekstrand 2015-09-09 17:50:09 -07:00 committed by Kenneth Graunke
parent 967a5ddb88
commit 9f5e7ae9d8
2 changed files with 22 additions and 7 deletions

View file

@ -1826,7 +1826,7 @@ void nir_lower_vars_to_ssa(nir_shader *shader);
void nir_remove_dead_variables(nir_shader *shader);
void nir_move_vec_src_uses_to_dest(nir_shader *shader);
void nir_lower_vec_to_movs(nir_shader *shader);
bool nir_lower_vec_to_movs(nir_shader *shader);
void nir_lower_alu_to_scalar(nir_shader *shader);
void nir_lower_load_const_to_scalar(nir_shader *shader);

View file

@ -32,6 +32,11 @@
* moves with partial writes.
*/
struct vec_to_movs_state {
nir_function_impl *impl;
bool progress;
};
static bool
src_matches_dest_reg(nir_dest *dest, nir_src *src)
{
@ -185,9 +190,10 @@ try_coalesce(nir_alu_instr *vec, unsigned start_idx, nir_shader *shader)
}
static bool
lower_vec_to_movs_block(nir_block *block, void *void_impl)
lower_vec_to_movs_block(nir_block *block, void *void_state)
{
nir_function_impl *impl = void_impl;
struct vec_to_movs_state *state = void_state;
nir_function_impl *impl = state->impl;
nir_shader *shader = impl->overload->function->shader;
nir_foreach_instr_safe(block, instr) {
@ -246,22 +252,31 @@ lower_vec_to_movs_block(nir_block *block, void *void_impl)
nir_instr_remove(&vec->instr);
ralloc_free(vec);
state->progress = true;
}
return true;
}
static void
static bool
nir_lower_vec_to_movs_impl(nir_function_impl *impl)
{
nir_foreach_block(impl, lower_vec_to_movs_block, impl);
struct vec_to_movs_state state = { impl, false };
nir_foreach_block(impl, lower_vec_to_movs_block, &state);
return state.progress;
}
void
bool
nir_lower_vec_to_movs(nir_shader *shader)
{
bool progress = false;
nir_foreach_overload(shader, overload) {
if (overload->impl)
nir_lower_vec_to_movs_impl(overload->impl);
progress = nir_lower_vec_to_movs_impl(overload->impl) || progress;
}
return progress;
}