Mesa (master): nir/lower_double_ops: fixup for new nir_foreach_block()

Jason Ekstrand jekstrand at kemper.freedesktop.org
Thu May 5 23:20:45 UTC 2016


Module: Mesa
Branch: master
Commit: 31fc4a2528055f63646cac494bd30f0eb07c8210
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=31fc4a2528055f63646cac494bd30f0eb07c8210

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Thu Apr 28 10:34:52 2016 -0700

nir/lower_double_ops: fixup for new nir_foreach_block()

Signed-off-by: Jason Ekstrand <jason at jlekstrand.net>
Reviewed-by: Connor Abbott <cwabbott0 at gmail.com>
Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 src/compiler/nir/nir_lower_double_ops.c | 32 +++++++++-----------------------
 1 file changed, 9 insertions(+), 23 deletions(-)

diff --git a/src/compiler/nir/nir_lower_double_ops.c b/src/compiler/nir/nir_lower_double_ops.c
index ae3a596..fdd0f44 100644
--- a/src/compiler/nir/nir_lower_double_ops.c
+++ b/src/compiler/nir/nir_lower_double_ops.c
@@ -562,32 +562,18 @@ lower_doubles_instr(nir_alu_instr *instr, nir_lower_doubles_options options)
    nir_instr_remove(&instr->instr);
 }
 
-static bool
-lower_doubles_block(nir_block *block, void *ctx)
-{
-   nir_lower_doubles_options options = *((nir_lower_doubles_options *) ctx);
-
-   nir_foreach_instr_safe(instr, block) {
-      if (instr->type != nir_instr_type_alu)
-         continue;
-
-      lower_doubles_instr(nir_instr_as_alu(instr), options);
-   }
-
-   return true;
-}
-
-static void
-lower_doubles_impl(nir_function_impl *impl, nir_lower_doubles_options options)
-{
-   nir_foreach_block_call(impl, lower_doubles_block, &options);
-}
-
 void
 nir_lower_doubles(nir_shader *shader, nir_lower_doubles_options options)
 {
    nir_foreach_function(function, shader) {
-      if (function->impl)
-         lower_doubles_impl(function->impl, options);
+      if (!function->impl)
+         continue;
+
+      nir_foreach_block(block, function->impl) {
+         nir_foreach_instr_safe(instr, block) {
+            if (instr->type == nir_instr_type_alu)
+               lower_doubles_instr(nir_instr_as_alu(instr), options);
+         }
+      }
    }
 }




More information about the mesa-commit mailing list