Mesa (master): pan/midgard: Remove mir_rewrite_index_*_tag

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Sep 3 11:57:45 UTC 2019


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

Author: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
Date:   Fri Aug 30 17:32:30 2019 -0700

pan/midgard: Remove mir_rewrite_index_*_tag

These helpers are unused, as flagged by cppcheck.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
Reviewed-by: Tomeu Vizoso <tomeu.vizoso at collabora.com>

---

 src/panfrost/midgard/compiler.h |  2 --
 src/panfrost/midgard/mir.c      | 27 ---------------------------
 2 files changed, 29 deletions(-)

diff --git a/src/panfrost/midgard/compiler.h b/src/panfrost/midgard/compiler.h
index b202a92aeea..8612bab7686 100644
--- a/src/panfrost/midgard/compiler.h
+++ b/src/panfrost/midgard/compiler.h
@@ -496,10 +496,8 @@ void mir_set_swizzle(midgard_instruction *ins, unsigned idx, unsigned new);
 void mir_rewrite_index(compiler_context *ctx, unsigned old, unsigned new);
 void mir_rewrite_index_src(compiler_context *ctx, unsigned old, unsigned new);
 void mir_rewrite_index_dst(compiler_context *ctx, unsigned old, unsigned new);
-void mir_rewrite_index_dst_tag(compiler_context *ctx, unsigned old, unsigned new, unsigned tag);
 void mir_rewrite_index_dst_single(midgard_instruction *ins, unsigned old, unsigned new);
 void mir_rewrite_index_src_single(midgard_instruction *ins, unsigned old, unsigned new);
-void mir_rewrite_index_src_tag(compiler_context *ctx, unsigned old, unsigned new, unsigned tag);
 void mir_rewrite_index_src_swizzle(compiler_context *ctx, unsigned old, unsigned new, unsigned swizzle);
 bool mir_single_use(compiler_context *ctx, unsigned value);
 bool mir_special_index(compiler_context *ctx, unsigned idx);
diff --git a/src/panfrost/midgard/mir.c b/src/panfrost/midgard/mir.c
index 104e7661507..8874937aa5d 100644
--- a/src/panfrost/midgard/mir.c
+++ b/src/panfrost/midgard/mir.c
@@ -174,19 +174,6 @@ mir_rewrite_index_src_swizzle(compiler_context *ctx, unsigned old, unsigned new,
 }
 
 void
-mir_rewrite_index_src_tag(compiler_context *ctx, unsigned old, unsigned new, unsigned tag)
-{
-        mir_foreach_instr_global(ctx, ins) {
-                if (ins->type != tag)
-                        continue;
-
-                mir_rewrite_index_src_single(ins, old, new);
-        }
-}
-
-
-
-void
 mir_rewrite_index_dst(compiler_context *ctx, unsigned old, unsigned new)
 {
         mir_foreach_instr_global(ctx, ins) {
@@ -195,20 +182,6 @@ mir_rewrite_index_dst(compiler_context *ctx, unsigned old, unsigned new)
 }
 
 void
-mir_rewrite_index_dst_tag(compiler_context *ctx, unsigned old, unsigned new, unsigned tag)
-{
-        mir_foreach_instr_global(ctx, ins) {
-                if (ins->type != tag)
-                        continue;
-
-                if (ins->dest == old)
-                        ins->dest = new;
-        }
-}
-
-
-
-void
 mir_rewrite_index(compiler_context *ctx, unsigned old, unsigned new)
 {
         mir_rewrite_index_src(ctx, old, new);




More information about the mesa-commit mailing list