~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/gallium/drivers/lima/lima_program.c

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
   NIR_PASS_V(s, nir_copy_prop);
153
153
   NIR_PASS_V(s, nir_opt_dce);
154
154
   NIR_PASS_V(s, lima_nir_split_loads);
155
 
   NIR_PASS_V(s, nir_lower_locals_to_regs);
156
 
   NIR_PASS_V(s, nir_convert_from_ssa, true);
 
155
   NIR_PASS_V(s, nir_convert_from_ssa, true, false);
157
156
   NIR_PASS_V(s, nir_opt_dce);
158
157
   NIR_PASS_V(s, nir_remove_dead_variables, nir_var_function_temp, NULL);
159
158
   nir_sweep(s);
227
226
   NIR_PASS_V(s, nir_lower_fragcoord_wtrans);
228
227
   NIR_PASS_V(s, nir_lower_io,
229
228
              nir_var_shader_in | nir_var_shader_out, type_size, 0);
230
 
   NIR_PASS_V(s, nir_lower_regs_to_ssa);
231
229
   NIR_PASS_V(s, nir_lower_tex, tex_options);
232
230
   NIR_PASS_V(s, lima_nir_lower_txp);
233
231
 
272
270
   NIR_PASS_V(s, nir_copy_prop);
273
271
   NIR_PASS_V(s, nir_opt_dce);
274
272
 
275
 
   NIR_PASS_V(s, nir_lower_locals_to_regs);
276
 
   NIR_PASS_V(s, nir_convert_from_ssa, true);
 
273
   NIR_PASS_V(s, nir_convert_from_ssa, true, false);
277
274
   NIR_PASS_V(s, nir_remove_dead_variables, nir_var_function_temp, NULL);
278
275
 
279
276
   NIR_PASS_V(s, nir_move_vec_src_uses_to_dest);