diff options
| author | Ajax <commial@gmail.com> | 2017-01-05 17:29:39 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2017-01-05 17:29:39 +0100 |
| commit | 143ecd6768224acd109f5680e52175fcf9b0e945 (patch) | |
| tree | be0290a1301bd1cc4416aa4b040dec8e109d0d97 /miasm2/jitter/jitcore_python.py | |
| parent | 18c9b48fb2a667f0d4d5709e108a7cbd827a49cd (diff) | |
| download | focaccia-miasm-143ecd6768224acd109f5680e52175fcf9b0e945.tar.gz focaccia-miasm-143ecd6768224acd109f5680e52175fcf9b0e945.zip | |
Remove useless jit_call wrapper
Diffstat (limited to 'miasm2/jitter/jitcore_python.py')
| -rw-r--r-- | miasm2/jitter/jitcore_python.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/miasm2/jitter/jitcore_python.py b/miasm2/jitter/jitcore_python.py index 98ee25a8..27666ab4 100644 --- a/miasm2/jitter/jitcore_python.py +++ b/miasm2/jitter/jitcore_python.py @@ -126,8 +126,9 @@ class JitCore_Python(jitcore.JitCore): # Associate myfunc with current label self.lbl2jitbloc[label.offset] = myfunc - def jit_call(self, label, cpu, _breakpoints): - """Call the function label with cpu and vmmngr states + def exec_wrapper(self, label, cpu, _lbl2jitbloc, _breakpoints, + _max_exec_per_call): + """Call the function @label with @cpu @label: function's label @cpu: JitCpu instance """ |