Lines Matching defs:progress
189 bool progress;
192 progress = false;
196 NIR_PASS(progress, s, nir_copy_prop);
197 NIR_PASS(progress, s, nir_opt_algebraic);
198 NIR_PASS(progress, s, nir_opt_constant_folding);
199 NIR_PASS(progress, s, nir_opt_remove_phis);
200 NIR_PASS(progress, s, nir_opt_conditional_discard);
201 NIR_PASS(progress, s, nir_opt_dce);
202 NIR_PASS(progress, s, nir_opt_dead_cf);
203 NIR_PASS(progress, s, nir_opt_cse);
204 NIR_PASS(progress, s, nir_opt_find_array_copies);
205 NIR_PASS(progress, s, nir_opt_if, nir_opt_if_aggressive_last_continue | nir_opt_if_optimize_phi_true_false);
206 NIR_PASS(progress, s, nir_opt_peephole_select, ~0 /* flatten all IFs. */,
208 NIR_PASS(progress, s, nir_opt_algebraic);
209 NIR_PASS(progress, s, nir_opt_constant_folding);
210 NIR_PASS(progress, s, nir_opt_shrink_stores, true);
211 NIR_PASS(progress, s, nir_opt_shrink_vectors);
212 NIR_PASS(progress, s, nir_opt_trivial_continues);
213 NIR_PASS(progress, s, nir_opt_undef);
214 NIR_PASS(progress, s, nir_opt_loop_unroll);
216 } while (progress);
218 NIR_PASS(progress, s, nir_remove_dead_variables, nir_var_function_temp,