about summary refs log tree commit diff stats
path: root/miasm2/jitter/jitcore_llvm.py
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2017-01-05 17:14:50 +0100
committerAjax <commial@gmail.com>2017-01-05 17:14:50 +0100
commit776c25a65eec254b057ea7eddf39431c4e5d1916 (patch)
tree7192c863354352be60f092ad3f357c2b9044f4db /miasm2/jitter/jitcore_llvm.py
parenta96b8db7df51a05081f6b8597f3c07f534494a78 (diff)
downloadmiasm-776c25a65eec254b057ea7eddf39431c4e5d1916.tar.gz
miasm-776c25a65eec254b057ea7eddf39431c4e5d1916.zip
LLVM: handle max_exec_per_call option
Diffstat (limited to 'miasm2/jitter/jitcore_llvm.py')
-rw-r--r--miasm2/jitter/jitcore_llvm.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/miasm2/jitter/jitcore_llvm.py b/miasm2/jitter/jitcore_llvm.py
index 66e835ef..8f58f1da 100644
--- a/miasm2/jitter/jitcore_llvm.py
+++ b/miasm2/jitter/jitcore_llvm.py
@@ -129,12 +129,3 @@ class JitCore_LLVM(jitcore.JitCore):
                                           self.log_regs,
                                           block_raw)).hexdigest()
         return block_hash
-
-    def jit_call(self, label, cpu, _vmmngr, breakpoints):
-        """Call the function label with cpu and vmmngr states
-        @label: function's label
-        @cpu: JitCpu instance
-        @breakpoints: Dict instance of used breakpoints
-        """
-        return self.exec_wrapper(label, cpu,
-                                 self.lbl2jitbloc.data, breakpoints)