about summary refs log tree commit diff stats
path: root/miasm2/analysis/depgraph.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-03-15 15:35:31 +0100
committerGitHub <noreply@github.com>2018-03-15 15:35:31 +0100
commit50a0b480a729507c8e49af39588592fbfb5476b1 (patch)
tree5d5248ceb9358a1f497f4830e821e50afb340dba /miasm2/analysis/depgraph.py
parentedabfcda0fa8c0dd8ab3017853b375b1ee24b754 (diff)
parent1b534d9ad543473f12ddcb631e0cddb0cbd54ff4 (diff)
downloadmiasm-50a0b480a729507c8e49af39588592fbfb5476b1.tar.gz
miasm-50a0b480a729507c8e49af39588592fbfb5476b1.zip
Merge pull request #699 from serpilliere/symb_mem_hash
Symbexec: use hashtable for mem symbols
Diffstat (limited to '')
-rw-r--r--miasm2/analysis/depgraph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/analysis/depgraph.py b/miasm2/analysis/depgraph.py
index bd4bfa7e..f7949c88 100644
--- a/miasm2/analysis/depgraph.py
+++ b/miasm2/analysis/depgraph.py
@@ -299,7 +299,7 @@ class DependencyResult(DependencyState):
         # Eval the block
         temp_label = AsmLabel("Temp")
         symb_exec = SymbolicExecutionEngine(self._ira, ctx_init)
-        symb_exec.emulbloc(IRBlock(temp_label, assignblks), step=step)
+        symb_exec.eval_updt_irblock(IRBlock(temp_label, assignblks), step=step)
 
         # Return only inputs values (others could be wrongs)
         return {element: symb_exec.symbols[element]
@@ -368,7 +368,7 @@ class DependencyResultImplicit(DependencyResult):
             irb = self.irblock_slice(self._ira.blocks[label], line_nb)
 
             # Emul the block and get back destination
-            dst = symb_exec.emulbloc(irb, step=step)
+            dst = symb_exec.eval_updt_irblock(irb, step=step)
 
             # Add constraint
             if hist_nb < history_size: