Lines Matching defs:progress
2130 bool progress;
2137 progress = false;
2139 NIR_PASS(progress, s, nir_lower_vars_to_ssa);
2140 NIR_PASS(progress, s, nir_lower_alu_to_scalar, NULL, NULL);
2141 NIR_PASS(progress, s, nir_lower_phis_to_scalar, false);
2142 NIR_PASS(progress, s, nir_copy_prop);
2143 NIR_PASS(progress, s, nir_opt_remove_phis);
2144 NIR_PASS(progress, s, nir_opt_dce);
2145 NIR_PASS(progress, s, nir_opt_dead_cf);
2146 NIR_PASS(progress, s, nir_opt_cse);
2147 NIR_PASS(progress, s, nir_opt_peephole_select, 8, true, true);
2148 NIR_PASS(progress, s, nir_opt_algebraic);
2149 NIR_PASS(progress, s, nir_opt_constant_folding);
2169 NIR_PASS(progress, s, nir_lower_alu_to_scalar, NULL, NULL);
2170 NIR_PASS(progress, s, nir_lower_pack);
2171 progress = true;
2181 NIR_PASS(progress, s, nir_opt_constant_folding);
2182 progress = true;
2191 NIR_PASS(progress, s, nir_opt_undef);
2192 NIR_PASS(progress, s, nir_lower_undef_to_zero);
2199 progress |= local_progress;
2201 } while (progress);
2206 NIR_PASS(progress, s, nir_opt_sink, sink_opts);