pan/midgard: Remove mir_rewrite_index_*_tag
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Sat, 31 Aug 2019 00:32:30 +0000 (17:32 -0700)
committerTomeu Vizoso <tomeu.vizoso@collabora.com>
Tue, 3 Sep 2019 11:55:29 +0000 (13:55 +0200)
These helpers are unused, as flagged by cppcheck.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
src/panfrost/midgard/compiler.h
src/panfrost/midgard/mir.c

index b202a92aeea7c1f2e1363e96048b22097413974e..8612bab7686e21b42f6fe992deec11f0cce6bc88 100644 (file)
@@ -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);
index 104e766150775487b83f6b514594e52df6af0fcf..8874937aa5d8f32670c4886198ec082f0448c08b 100644 (file)
@@ -173,19 +173,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)
 {
@@ -194,20 +181,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)
 {