pan/mdg: Fuse f2f16 into load_interpolated_input
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Fri, 22 May 2020 20:23:06 +0000 (16:23 -0400)
committerAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Mon, 1 Jun 2020 16:37:03 +0000 (12:37 -0400)
To become a ld_vary intrinsic.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5283>

src/panfrost/Makefile.sources
src/panfrost/midgard/compiler.h
src/panfrost/midgard/meson.build
src/panfrost/midgard/midgard_compile.c
src/panfrost/midgard/nir_fuse_io_16.c [new file with mode: 0644]

index 945c8f4e04282a7d660e100a170d40a9084d256e..568729887dee5584867f1aff2851ba9d79530d88 100644 (file)
@@ -65,6 +65,7 @@ midgard_FILES := \
         midgard/mir_promote_uniforms.c \
         midgard/mir_squeeze.c \
         midgard/nir_undef_to_zero.c \
+        midgard/nir_fuse_io_16.c \
 
 shared_FILES := \
         shared/pan_minmax_cache.c \
index 3cb65b0a015c0f6c4dc04d0965c7c0e1908fc1fe..e8cb79ba163d6a7667c4d2ebdcae68b27fe1064f 100644 (file)
@@ -652,6 +652,7 @@ void emit_binary_bundle(
 
 bool
 nir_undef_to_zero(nir_shader *shader);
+bool nir_fuse_io_16(nir_shader *shader);
 
 void midgard_nir_lod_errata(nir_shader *shader);
 
index d47d73fd2731c6548db9fa41844d690d7ecf8936..43ae2d876355cee9259f23ede7c168ae0f97c8f8 100644 (file)
@@ -39,6 +39,7 @@ libpanfrost_midgard_files = files(
   'midgard_opt_perspective.c',
   'midgard_errata_lod.c',
   'nir_undef_to_zero.c',
+  'nir_fuse_io_16.c',
   'disassemble.c',
 )
 
index bc0c7b6cd4414f69b37ec569ef8ecf638f328edb..1841e0e0be250d70a629cf39f646dbc21f65a676 100644 (file)
@@ -352,7 +352,7 @@ midgard_nir_lower_zs_store(nir_shader *nir)
 /* Flushes undefined values to zero */
 
 static void
-optimise_nir(nir_shader *nir, unsigned quirks)
+optimise_nir(nir_shader *nir, unsigned quirks, bool is_blend)
 {
         bool progress;
         unsigned lower_flrp =
@@ -385,6 +385,9 @@ optimise_nir(nir_shader *nir, unsigned quirks)
 
         NIR_PASS(progress, nir, midgard_nir_lower_algebraic_early);
 
+        if (!is_blend)
+                NIR_PASS(progress, nir, nir_fuse_io_16);
+
         do {
                 progress = false;
 
@@ -2593,7 +2596,7 @@ midgard_compile_shader_nir(nir_shader *nir, panfrost_program *program, bool is_b
 
         /* Optimisation passes */
 
-        optimise_nir(nir, ctx->quirks);
+        optimise_nir(nir, ctx->quirks, is_blend);
 
         if (midgard_debug & MIDGARD_DBG_SHADERS) {
                 nir_print_shader(nir, stdout);
diff --git a/src/panfrost/midgard/nir_fuse_io_16.c b/src/panfrost/midgard/nir_fuse_io_16.c
new file mode 100644 (file)
index 0000000..ddeb449
--- /dev/null
@@ -0,0 +1,94 @@
+/*
+ * Copyright (C) 2020 Collabora, Ltd.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ *
+ * Authors (Collabora):
+ *   Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
+ */
+
+/* Fuses f2f16 modifiers into loads */
+
+#include "compiler/nir/nir.h"
+#include "compiler/nir/nir_builder.h"
+#include "panfrost/util/pan_ir.h"
+
+bool nir_fuse_io_16(nir_shader *shader);
+
+static bool
+nir_src_is_f2fmp(nir_src *use)
+{
+   nir_instr *parent = use->parent_instr;
+
+   if (parent->type != nir_instr_type_alu)
+      return false;
+
+   nir_alu_instr *alu = nir_instr_as_alu(parent);
+   return (alu->op == nir_op_f2fmp);
+}
+
+bool
+nir_fuse_io_16(nir_shader *shader)
+{
+   bool progress = false;
+
+   nir_foreach_function(function, shader) {
+      if (!function->impl) continue;
+
+      nir_builder b;
+      nir_builder_init(&b, function->impl);
+
+      nir_foreach_block(block, function->impl) {
+         nir_foreach_instr_safe(instr, block) {
+            if (instr->type != nir_instr_type_intrinsic) continue;
+
+            nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
+
+            if (intr->intrinsic != nir_intrinsic_load_interpolated_input)
+                    continue;
+
+            if (nir_dest_bit_size(intr->dest) != 32)
+                    continue;
+
+            if (!intr->dest.is_ssa)
+               continue;
+
+            if (!list_is_empty(&intr->dest.ssa.if_uses))
+               return false;
+
+            bool valid = true;
+
+            nir_foreach_use(src, &intr->dest.ssa)
+               valid &= nir_src_is_f2fmp(src);
+
+            if (!valid)
+               continue;
+
+            intr->dest.ssa.bit_size = 16;
+            progress |= true;
+         }
+      }
+
+      nir_metadata_preserve(function->impl, nir_metadata_block_index | nir_metadata_dominance);
+
+   }
+
+   return progress;
+}