about summary refs log tree commit diff stats
path: root/miasm2/jitter
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/jitter')
-rw-r--r--miasm2/jitter/jitcore_python.py2
-rw-r--r--miasm2/jitter/jitload.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/jitter/jitcore_python.py b/miasm2/jitter/jitcore_python.py
index a74ef7e6..799848ab 100644
--- a/miasm2/jitter/jitcore_python.py
+++ b/miasm2/jitter/jitcore_python.py
@@ -101,7 +101,7 @@ class JitCore_Python(jitcore.JitCore):
                             return instr.offset
 
                     # Eval current instruction (in IR)
-                    exec_engine.eval_ir(assignblk)
+                    exec_engine.eval_updt_assignblk(assignblk)
                     # Check for exceptions which do not update PC
                     exec_engine.update_cpu_from_engine()
                     if (vmmngr.get_exception() & csts.EXCEPT_DO_NOT_UPDATE_PC != 0 or
diff --git a/miasm2/jitter/jitload.py b/miasm2/jitter/jitload.py
index 7a3acb2c..a14334cb 100644
--- a/miasm2/jitter/jitload.py
+++ b/miasm2/jitter/jitload.py
@@ -471,7 +471,7 @@ class jitter(object):
         """Eval expression @expr in the context of the current instance. Side
         effects are passed on it"""
         self.symbexec.update_engine_from_cpu()
-        ret = self.symbexec.apply_expr(expr)
+        ret = self.symbexec.eval_updt_expr(expr)
         self.symbexec.update_cpu_from_engine()
 
         return ret