Lines Matching refs:progress

115    bool progress;
127 progress = false;
130 NIR_PASS(progress, s, nir_lower_alu_to_scalar, NULL, NULL);
131 NIR_PASS(progress, s, nir_lower_phis_to_scalar, false);
132 NIR_PASS(progress, s, nir_copy_prop);
133 NIR_PASS(progress, s, nir_opt_remove_phis);
134 NIR_PASS(progress, s, nir_opt_dce);
135 NIR_PASS(progress, s, nir_opt_dead_cf);
136 NIR_PASS(progress, s, nir_opt_cse);
137 NIR_PASS(progress, s, nir_opt_peephole_select, 8, true, true);
138 NIR_PASS(progress, s, nir_opt_algebraic);
139 NIR_PASS(progress, s, lima_nir_lower_ftrunc);
140 NIR_PASS(progress, s, nir_opt_constant_folding);
141 NIR_PASS(progress, s, nir_opt_undef);
142 NIR_PASS(progress, s, nir_lower_undef_to_zero);
143 NIR_PASS(progress, s, nir_opt_loop_unroll);
144 NIR_PASS(progress, s, nir_lower_undef_to_zero);
145 } while (progress);
149 NIR_PASS(progress, s, lima_nir_lower_ftrunc);
225 bool progress;
235 progress = false;
236 NIR_PASS(progress, s, nir_opt_vectorize, NULL, NULL);
237 } while (progress);
240 progress = false;
243 NIR_PASS(progress, s, nir_lower_alu_to_scalar, lima_alu_to_scalar_filter_cb, NULL);
244 NIR_PASS(progress, s, nir_copy_prop);
245 NIR_PASS(progress, s, nir_opt_remove_phis);
246 NIR_PASS(progress, s, nir_opt_dce);
247 NIR_PASS(progress, s, nir_opt_dead_cf);
248 NIR_PASS(progress, s, nir_opt_cse);
249 NIR_PASS(progress, s, nir_opt_peephole_select, 8, true, true);
250 NIR_PASS(progress, s, nir_opt_algebraic);
251 NIR_PASS(progress, s, nir_opt_constant_folding);
252 NIR_PASS(progress, s, nir_opt_undef);
253 NIR_PASS(progress, s, nir_opt_loop_unroll);
254 NIR_PASS(progress, s, lima_nir_split_load_input);
255 } while (progress);
263 progress = false;
264 NIR_PASS(progress, s, nir_opt_algebraic);
265 } while (progress);