From: Jason Ekstrand Date: Mon, 4 Mar 2019 23:02:39 +0000 (-0600) Subject: st/nir: Move 64-bit lowering later X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9ab1b1d0227499b7ff6a61fdebe75693212a67f5;p=mesa.git st/nir: Move 64-bit lowering later Now that we have a loop unrolling cost function and loop unrolling isn't going to kill us the moment we have a 64-bit op in a loop, we can go ahead and move 64-bit lowering later. This gives us the opportunity to do more optimizations and actually let the full optimizer run even on 64-bit ops rather than hoping one round of opt_algebraic will fix everything. This substantially reduces both fp64 shader compile times and the resulting code size. Reviewed-by: Matt Turner Reviewed-by: Jordan Justen Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/state_tracker/st_glsl_to_nir.cpp b/src/mesa/state_tracker/st_glsl_to_nir.cpp index 3d01b91f425..fa0cdf771e4 100644 --- a/src/mesa/state_tracker/st_glsl_to_nir.cpp +++ b/src/mesa/state_tracker/st_glsl_to_nir.cpp @@ -410,6 +410,8 @@ st_glsl_to_nir(struct st_context *st, struct gl_program *prog, NIR_PASS_V(nir, nir_lower_alu_to_scalar); } + st_nir_opts(nir, is_scalar); + if (lower_64bit) { bool lowered_64bit_ops = false; bool progress = false; @@ -429,9 +431,10 @@ st_glsl_to_nir(struct st_context *st, struct gl_program *prog, NIR_PASS(progress, nir, nir_opt_algebraic); lowered_64bit_ops |= progress; } while (progress); - } - st_nir_opts(nir, is_scalar); + if (progress) + st_nir_opts(nir, is_scalar); + } return nir; }