Lines Matching defs:progress
5589 bool progress;
5591 progress = false;
5593 NIR_PASS(progress, s, nir_lower_indirect_derefs, nir_var_function_temp, UINT32_MAX);
5594 NIR_PASS(progress, s, nir_lower_alu_to_scalar, NULL, NULL);
5595 NIR_PASS(progress, s, nir_copy_prop);
5596 NIR_PASS(progress, s, nir_opt_copy_prop_vars);
5597 NIR_PASS(progress, s, nir_lower_bit_size, lower_bit_size_callback, (void*)opts);
5598 NIR_PASS(progress, s, dxil_nir_lower_8bit_conv);
5600 NIR_PASS(progress, s, dxil_nir_lower_16bit_conv);
5601 NIR_PASS(progress, s, nir_opt_remove_phis);
5602 NIR_PASS(progress, s, nir_opt_dce);
5603 NIR_PASS(progress, s, nir_opt_if, nir_opt_if_aggressive_last_continue | nir_opt_if_optimize_phi_true_false);
5604 NIR_PASS(progress, s, nir_opt_dead_cf);
5605 NIR_PASS(progress, s, nir_opt_cse);
5606 NIR_PASS(progress, s, nir_opt_peephole_select, 8, true, true);
5607 NIR_PASS(progress, s, nir_opt_algebraic);
5608 NIR_PASS(progress, s, dxil_nir_lower_x2b);
5610 NIR_PASS(progress, s, nir_lower_int64);
5611 NIR_PASS(progress, s, nir_lower_alu);
5612 NIR_PASS(progress, s, nir_opt_constant_folding);
5613 NIR_PASS(progress, s, nir_opt_undef);
5614 NIR_PASS(progress, s, nir_lower_undef_to_zero);
5615 NIR_PASS(progress, s, nir_opt_deref);
5616 NIR_PASS(progress, s, dxil_nir_lower_upcast_phis, opts->lower_int16 ? 32 : 16);
5617 NIR_PASS(progress, s, nir_lower_64bit_phis);
5619 } while (progress);
5622 progress = false;
5623 NIR_PASS(progress, s, nir_opt_algebraic_late);
5624 } while (progress);