about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2020-12-24 13:53:54 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2020-12-24 13:54:21 +0100
commitf86ee775b786c6b2c28097cafde8a7cbd6e0b16a (patch)
tree32995496d705495c0a84f4f0508a2ef81f59b45d
parented4649a957bc5c1490481953ffadcd0c7f3296d7 (diff)
downloadmiasm-f86ee775b786c6b2c28097cafde8a7cbd6e0b16a.tar.gz
miasm-f86ee775b786c6b2c28097cafde8a7cbd6e0b16a.zip
Remove unused code
-rw-r--r--miasm/analysis/simplifier.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/miasm/analysis/simplifier.py b/miasm/analysis/simplifier.py
index 43623476..51567e64 100644
--- a/miasm/analysis/simplifier.py
+++ b/miasm/analysis/simplifier.py
@@ -216,15 +216,6 @@ class IRCFGSimplifierSSA(IRCFGSimplifierCommon):
         return modified
 
     @fix_point
-    def do_propagate_int(self, ssa, head):
-        """
-        Constant propagation in the @ssa graph
-        @head: Location instance of the graph head
-        """
-        modified = self.propag_int.propagate(ssa, head)
-        return modified
-
-    @fix_point
     def do_del_unused_edges(self, ssa, head):
         """
         Del unused edges of the ssa graph
@@ -233,15 +224,6 @@ class IRCFGSimplifierSSA(IRCFGSimplifierCommon):
         modified = del_unused_edges(ssa.graph, set([head]))
         return modified
 
-    @fix_point
-    def do_propagate_mem(self, ssa, head):
-        """
-        Propagation of expression based on ExprInt/ExprId in the @ssa graph
-        @head: Location instance of the graph head
-        """
-        modified = self.propag_mem.propagate(ssa, head)
-        return modified
-
     def do_propagate_expressions(self, ssa, head):
         """
         Expressions propagation through ExprId in the @ssa graph