freedreno/ir3: move nir finalization to after cache miss
authorRob Clark <robdclark@chromium.org>
Tue, 23 Jun 2020 17:09:30 +0000 (10:09 -0700)
committerRob Clark <robdclark@chromium.org>
Fri, 26 Jun 2020 15:55:21 +0000 (08:55 -0700)
In cases where every variant is a shader-cache-hit, we never need the
post-finalize round of nir opt/lowering passes.  So defer this until
the first shader-cache-miss to avoid doing pointless work.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5372>

src/freedreno/ir3/ir3_shader.c
src/freedreno/ir3/ir3_shader.h

index 0950b62f92fc8e61c138a6e7500a42f7305143a3..0a6e268d7272c956bae9f171da1bf12bb7f8a131 100644 (file)
@@ -248,6 +248,17 @@ create_variant(struct ir3_shader *shader, const struct ir3_shader_key *key)
        if (ir3_disk_cache_retrieve(shader->compiler, v))
                return v;
 
+       if (!shader->nir_finalized) {
+               ir3_nir_post_finalize(shader->compiler, shader->nir);
+
+               if (ir3_shader_debug & IR3_DBG_DISASM) {
+                       printf("dump nir%d: type=%d", shader->id, shader->type);
+                       nir_print_shader(shader->nir, stdout);
+               }
+
+               shader->nir_finalized = true;
+       }
+
        if (!compile_variant(v))
                goto fail;
 
@@ -454,13 +465,6 @@ ir3_shader_from_nir(struct ir3_compiler *compiler, nir_shader *nir,
 
        ir3_disk_cache_init_shader_key(compiler, shader);
 
-       ir3_nir_post_finalize(compiler, nir);
-
-       if (ir3_shader_debug & IR3_DBG_DISASM) {
-               printf("dump nir%d: type=%d", shader->id, shader->type);
-               nir_print_shader(shader->nir, stdout);
-       }
-
        ir3_setup_used_key(shader);
 
        return shader;
index 45a4170e6833d4e9c6eea38a810fab5e56219c0a..3d5dac453d3d6bb56e858a41095e6469cec88e49 100644 (file)
@@ -690,6 +690,7 @@ struct ir3_shader {
 
        unsigned num_reserved_user_consts;
 
+       bool nir_finalized;
        struct nir_shader *nir;
        struct ir3_stream_output_info stream_output;