You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Start to move deparser from python-deparse here. Start Python 3.2 tolerance
This commit is contained in:
@@ -74,9 +74,9 @@ def _load_module(filename):
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
raise ImportError("Unknown magic number %s in %s" %
|
raise ImportError("Unknown magic number %s in %s" %
|
||||||
(ord(magic[0])+256*ord(magic[1]), filename))
|
(ord(magic[0])+256*ord(magic[1]), filename))
|
||||||
if not (2.5 <= version <= 2.7) and not (version == 3.4):
|
if not (2.5 <= version <= 2.7) and not (3.2 <= version <= 3.4):
|
||||||
raise ImportError("This is a Python %s file! Only "
|
raise ImportError("This is a Python %s file! Only "
|
||||||
"Python 2.5 to 2.7 and 3.4 files are supported."
|
"Python 2.5 to 2.7 and 3.2 to 3.4 files are supported."
|
||||||
% version)
|
% version)
|
||||||
|
|
||||||
# print version
|
# print version
|
||||||
@@ -124,6 +124,9 @@ def uncompyle(version, co, out=None, showasm=0, showast=0):
|
|||||||
elif version == 2.5:
|
elif version == 2.5:
|
||||||
import uncompyle6.scanners.scanner25 as scan
|
import uncompyle6.scanners.scanner25 as scan
|
||||||
scanner = scan.Scanner25()
|
scanner = scan.Scanner25()
|
||||||
|
elif version == 3.2:
|
||||||
|
import uncompyle6.scanners.scanner32 as scan
|
||||||
|
scanner = scan.Scanner32()
|
||||||
elif version == 3.4:
|
elif version == 3.4:
|
||||||
import uncompyle6.scanners.scanner34 as scan
|
import uncompyle6.scanners.scanner34 as scan
|
||||||
scanner = scan.Scanner34()
|
scanner = scan.Scanner34()
|
||||||
|
1238
uncompyle6/deparser.py
Normal file
1238
uncompyle6/deparser.py
Normal file
File diff suppressed because it is too large
Load Diff
0
uncompyle6/disasm/__init__.py
Normal file
0
uncompyle6/disasm/__init__.py
Normal file
225
uncompyle6/disasm/dis_25.py
Normal file
225
uncompyle6/disasm/dis_25.py
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
"""Disassembler of Python byte code into mnemonics."""
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import types
|
||||||
|
|
||||||
|
from uncompyle6.opcodes.opcode_25 import *
|
||||||
|
from uncompyle6.opcodes.opcode_25 import __all__ as _opcodes_all
|
||||||
|
|
||||||
|
__all__ = ["dis", "disassemble", "distb", "disco"] + _opcodes_all
|
||||||
|
del _opcodes_all
|
||||||
|
|
||||||
|
def dis(x=None):
|
||||||
|
"""Disassemble classes, methods, functions, or code.
|
||||||
|
|
||||||
|
With no argument, disassemble the last traceback.
|
||||||
|
|
||||||
|
"""
|
||||||
|
print "WOOT WOOT"
|
||||||
|
if x is None:
|
||||||
|
distb()
|
||||||
|
return
|
||||||
|
if isinstance(x, types.InstanceType):
|
||||||
|
x = x.__class__
|
||||||
|
if hasattr(x, 'im_func'):
|
||||||
|
x = x.im_func
|
||||||
|
if hasattr(x, 'func_code'):
|
||||||
|
x = x.func_code
|
||||||
|
if hasattr(x, '__dict__'):
|
||||||
|
items = x.__dict__.items()
|
||||||
|
items.sort()
|
||||||
|
for name, x1 in items:
|
||||||
|
if type(x1) in (types.MethodType,
|
||||||
|
types.FunctionType,
|
||||||
|
types.CodeType,
|
||||||
|
types.ClassType):
|
||||||
|
print "Disassembly of %s:" % name
|
||||||
|
try:
|
||||||
|
dis(x1)
|
||||||
|
except TypeError, msg:
|
||||||
|
print "Sorry:", msg
|
||||||
|
print
|
||||||
|
elif hasattr(x, 'co_code'):
|
||||||
|
disassemble(x)
|
||||||
|
elif isinstance(x, str):
|
||||||
|
disassemble_string(x)
|
||||||
|
else:
|
||||||
|
raise TypeError(
|
||||||
|
"don't know how to disassemble %s objects" %
|
||||||
|
type(x).__name__)
|
||||||
|
|
||||||
|
def distb(tb=None):
|
||||||
|
"""Disassemble a traceback (default: last traceback)."""
|
||||||
|
if tb is None:
|
||||||
|
try:
|
||||||
|
tb = sys.last_traceback
|
||||||
|
except AttributeError:
|
||||||
|
raise RuntimeError("no last traceback to disassemble")
|
||||||
|
while tb.tb_next: tb = tb.tb_next
|
||||||
|
disassemble(tb.tb_frame.f_code, tb.tb_lasti)
|
||||||
|
|
||||||
|
def disassemble(co, lasti=-1):
|
||||||
|
"""Disassemble a code object."""
|
||||||
|
code = co.co_code
|
||||||
|
labels = findlabels(code)
|
||||||
|
linestarts = dict(findlinestarts(co))
|
||||||
|
n = len(code)
|
||||||
|
i = 0
|
||||||
|
extended_arg = 0
|
||||||
|
free = None
|
||||||
|
while i < n:
|
||||||
|
c = code[i]
|
||||||
|
op = ord(c)
|
||||||
|
if i in linestarts:
|
||||||
|
if i > 0:
|
||||||
|
print
|
||||||
|
print "%3d" % linestarts[i],
|
||||||
|
else:
|
||||||
|
print ' ',
|
||||||
|
|
||||||
|
if i == lasti: print '-->',
|
||||||
|
else: print ' ',
|
||||||
|
if i in labels: print '>>',
|
||||||
|
else: print ' ',
|
||||||
|
print repr(i).rjust(4),
|
||||||
|
print opname[op].ljust(20),
|
||||||
|
i = i+1
|
||||||
|
if op >= HAVE_ARGUMENT:
|
||||||
|
oparg = ord(code[i]) + ord(code[i+1])*256 + extended_arg
|
||||||
|
extended_arg = 0
|
||||||
|
i = i+2
|
||||||
|
if op == EXTENDED_ARG:
|
||||||
|
extended_arg = oparg*65536L
|
||||||
|
print repr(oparg).rjust(5),
|
||||||
|
if op in hasconst:
|
||||||
|
print '(' + repr(co.co_consts[oparg]) + ')',
|
||||||
|
elif op in hasname:
|
||||||
|
print '(' + co.co_names[oparg] + ')',
|
||||||
|
elif op in hasjrel:
|
||||||
|
print '(to ' + repr(i + oparg) + ')',
|
||||||
|
elif op in haslocal:
|
||||||
|
print '(' + co.co_varnames[oparg] + ')',
|
||||||
|
elif op in hascompare:
|
||||||
|
print '(' + cmp_op[oparg] + ')',
|
||||||
|
elif op in hasfree:
|
||||||
|
if free is None:
|
||||||
|
free = co.co_cellvars + co.co_freevars
|
||||||
|
print '(' + free[oparg] + ')',
|
||||||
|
print
|
||||||
|
|
||||||
|
def disassemble_string(code, lasti=-1, varnames=None, names=None,
|
||||||
|
constants=None):
|
||||||
|
labels = findlabels(code)
|
||||||
|
n = len(code)
|
||||||
|
i = 0
|
||||||
|
while i < n:
|
||||||
|
c = code[i]
|
||||||
|
op = ord(c)
|
||||||
|
if i == lasti: print '-->',
|
||||||
|
else: print ' ',
|
||||||
|
if i in labels: print '>>',
|
||||||
|
else: print ' ',
|
||||||
|
print repr(i).rjust(4),
|
||||||
|
print opname[op].ljust(15),
|
||||||
|
i = i+1
|
||||||
|
if op >= HAVE_ARGUMENT:
|
||||||
|
oparg = ord(code[i]) + ord(code[i+1])*256
|
||||||
|
i = i+2
|
||||||
|
print repr(oparg).rjust(5),
|
||||||
|
if op in hasconst:
|
||||||
|
if constants:
|
||||||
|
print '(' + repr(constants[oparg]) + ')',
|
||||||
|
else:
|
||||||
|
print '(%d)' % oparg,
|
||||||
|
elif op in hasname:
|
||||||
|
if names is not None:
|
||||||
|
print '(' + names[oparg] + ')',
|
||||||
|
else:
|
||||||
|
print '(%d)' % oparg,
|
||||||
|
elif op in hasjrel:
|
||||||
|
print '(to ' + repr(i + oparg) + ')',
|
||||||
|
elif op in haslocal:
|
||||||
|
if varnames:
|
||||||
|
print '(' + varnames[oparg] + ')',
|
||||||
|
else:
|
||||||
|
print '(%d)' % oparg,
|
||||||
|
elif op in hascompare:
|
||||||
|
print '(' + cmp_op[oparg] + ')',
|
||||||
|
print
|
||||||
|
|
||||||
|
disco = disassemble # XXX For backwards compatibility
|
||||||
|
|
||||||
|
def findlabels(code):
|
||||||
|
"""Detect all offsets in a byte code which are jump targets.
|
||||||
|
|
||||||
|
Return the list of offsets.
|
||||||
|
|
||||||
|
"""
|
||||||
|
labels = []
|
||||||
|
n = len(code)
|
||||||
|
i = 0
|
||||||
|
while i < n:
|
||||||
|
c = code[i]
|
||||||
|
op = ord(c)
|
||||||
|
i = i+1
|
||||||
|
if op >= HAVE_ARGUMENT:
|
||||||
|
oparg = ord(code[i]) + ord(code[i+1])*256
|
||||||
|
i = i+2
|
||||||
|
label = -1
|
||||||
|
if op in hasjrel:
|
||||||
|
label = i+oparg
|
||||||
|
elif op in hasjabs:
|
||||||
|
label = oparg
|
||||||
|
if label >= 0:
|
||||||
|
if label not in labels:
|
||||||
|
labels.append(label)
|
||||||
|
return labels
|
||||||
|
|
||||||
|
def findlinestarts(code):
|
||||||
|
"""Find the offsets in a byte code which are start of lines in the source.
|
||||||
|
|
||||||
|
Generate pairs (offset, lineno) as described in Python/compile.c.
|
||||||
|
|
||||||
|
"""
|
||||||
|
print "WOOT"
|
||||||
|
byte_increments = [ord(c) for c in code.co_lnotab[0::2]]
|
||||||
|
line_increments = [ord(c) for c in code.co_lnotab[1::2]]
|
||||||
|
|
||||||
|
lastlineno = None
|
||||||
|
lineno = code.co_firstlineno
|
||||||
|
addr = 0
|
||||||
|
for byte_incr, line_incr in zip(byte_increments, line_increments):
|
||||||
|
if byte_incr:
|
||||||
|
if lineno != lastlineno:
|
||||||
|
yield (addr, lineno)
|
||||||
|
lastlineno = lineno
|
||||||
|
addr += byte_incr
|
||||||
|
lineno += line_incr
|
||||||
|
if lineno != lastlineno:
|
||||||
|
yield (addr, lineno)
|
||||||
|
|
||||||
|
def _test():
|
||||||
|
"""Simple test program to disassemble a file."""
|
||||||
|
if sys.argv[1:]:
|
||||||
|
if sys.argv[2:]:
|
||||||
|
sys.stderr.write("usage: python dis.py [-|file]\n")
|
||||||
|
sys.exit(2)
|
||||||
|
fn = sys.argv[1]
|
||||||
|
if not fn or fn == "-":
|
||||||
|
fn = None
|
||||||
|
else:
|
||||||
|
fn = None
|
||||||
|
if fn is None:
|
||||||
|
f = sys.stdin
|
||||||
|
else:
|
||||||
|
f = open(fn)
|
||||||
|
source = f.read()
|
||||||
|
if fn is not None:
|
||||||
|
f.close()
|
||||||
|
else:
|
||||||
|
fn = "<stdin>"
|
||||||
|
code = compile(source, fn, "exec")
|
||||||
|
dis(code)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
_test()
|
180
uncompyle6/opcodes/opcode_32.py
Normal file
180
uncompyle6/opcodes/opcode_32.py
Normal file
@@ -0,0 +1,180 @@
|
|||||||
|
|
||||||
|
"""
|
||||||
|
opcode module - potentially shared between dis and other modules which
|
||||||
|
operate on bytecodes (e.g. peephole optimizers).
|
||||||
|
"""
|
||||||
|
|
||||||
|
__all__ = ["cmp_op", "hasconst", "hasname", "hasjrel", "hasjabs",
|
||||||
|
"haslocal", "hascompare", "hasfree", "opname", "opmap",
|
||||||
|
"HAVE_ARGUMENT", "EXTENDED_ARG"]
|
||||||
|
|
||||||
|
cmp_op = ('<', '<=', '==', '!=', '>', '>=', 'in', 'not in', 'is',
|
||||||
|
'is not', 'exception match', 'BAD')
|
||||||
|
|
||||||
|
hasconst = []
|
||||||
|
hasname = []
|
||||||
|
hasjrel = []
|
||||||
|
hasjabs = []
|
||||||
|
haslocal = []
|
||||||
|
hascompare = []
|
||||||
|
hasfree = []
|
||||||
|
|
||||||
|
opmap = {}
|
||||||
|
opname = [''] * 256
|
||||||
|
for op in range(256): opname[op] = '<%r>' % (op,)
|
||||||
|
del op
|
||||||
|
|
||||||
|
def def_op(name, op):
|
||||||
|
opname[op] = name
|
||||||
|
opmap[name] = op
|
||||||
|
|
||||||
|
def name_op(name, op):
|
||||||
|
def_op(name, op)
|
||||||
|
hasname.append(op)
|
||||||
|
|
||||||
|
def jrel_op(name, op):
|
||||||
|
def_op(name, op)
|
||||||
|
hasjrel.append(op)
|
||||||
|
|
||||||
|
def jabs_op(name, op):
|
||||||
|
def_op(name, op)
|
||||||
|
hasjabs.append(op)
|
||||||
|
|
||||||
|
# Instruction opcodes for compiled code
|
||||||
|
# Blank lines correspond to available opcodes
|
||||||
|
|
||||||
|
def_op('STOP_CODE', 0)
|
||||||
|
def_op('POP_TOP', 1)
|
||||||
|
def_op('ROT_TWO', 2)
|
||||||
|
def_op('ROT_THREE', 3)
|
||||||
|
def_op('DUP_TOP', 4)
|
||||||
|
def_op('DUP_TOP_TWO', 5)
|
||||||
|
|
||||||
|
def_op('NOP', 9)
|
||||||
|
def_op('UNARY_POSITIVE', 10)
|
||||||
|
def_op('UNARY_NEGATIVE', 11)
|
||||||
|
def_op('UNARY_NOT', 12)
|
||||||
|
|
||||||
|
def_op('UNARY_INVERT', 15)
|
||||||
|
|
||||||
|
def_op('BINARY_POWER', 19)
|
||||||
|
def_op('BINARY_MULTIPLY', 20)
|
||||||
|
|
||||||
|
def_op('BINARY_MODULO', 22)
|
||||||
|
def_op('BINARY_ADD', 23)
|
||||||
|
def_op('BINARY_SUBTRACT', 24)
|
||||||
|
def_op('BINARY_SUBSCR', 25)
|
||||||
|
def_op('BINARY_FLOOR_DIVIDE', 26)
|
||||||
|
def_op('BINARY_TRUE_DIVIDE', 27)
|
||||||
|
def_op('INPLACE_FLOOR_DIVIDE', 28)
|
||||||
|
def_op('INPLACE_TRUE_DIVIDE', 29)
|
||||||
|
|
||||||
|
def_op('STORE_MAP', 54)
|
||||||
|
def_op('INPLACE_ADD', 55)
|
||||||
|
def_op('INPLACE_SUBTRACT', 56)
|
||||||
|
def_op('INPLACE_MULTIPLY', 57)
|
||||||
|
|
||||||
|
def_op('INPLACE_MODULO', 59)
|
||||||
|
def_op('STORE_SUBSCR', 60)
|
||||||
|
def_op('DELETE_SUBSCR', 61)
|
||||||
|
def_op('BINARY_LSHIFT', 62)
|
||||||
|
def_op('BINARY_RSHIFT', 63)
|
||||||
|
def_op('BINARY_AND', 64)
|
||||||
|
def_op('BINARY_XOR', 65)
|
||||||
|
def_op('BINARY_OR', 66)
|
||||||
|
def_op('INPLACE_POWER', 67)
|
||||||
|
def_op('GET_ITER', 68)
|
||||||
|
def_op('STORE_LOCALS', 69)
|
||||||
|
|
||||||
|
def_op('PRINT_EXPR', 70)
|
||||||
|
def_op('LOAD_BUILD_CLASS', 71)
|
||||||
|
|
||||||
|
def_op('INPLACE_LSHIFT', 75)
|
||||||
|
def_op('INPLACE_RSHIFT', 76)
|
||||||
|
def_op('INPLACE_AND', 77)
|
||||||
|
def_op('INPLACE_XOR', 78)
|
||||||
|
def_op('INPLACE_OR', 79)
|
||||||
|
def_op('BREAK_LOOP', 80)
|
||||||
|
def_op('WITH_CLEANUP', 81)
|
||||||
|
|
||||||
|
def_op('RETURN_VALUE', 83)
|
||||||
|
def_op('IMPORT_STAR', 84)
|
||||||
|
|
||||||
|
def_op('YIELD_VALUE', 86)
|
||||||
|
def_op('POP_BLOCK', 87)
|
||||||
|
def_op('END_FINALLY', 88)
|
||||||
|
def_op('POP_EXCEPT', 89)
|
||||||
|
|
||||||
|
HAVE_ARGUMENT = 90 # Opcodes from here have an argument:
|
||||||
|
|
||||||
|
name_op('STORE_NAME', 90) # Index in name list
|
||||||
|
name_op('DELETE_NAME', 91) # ""
|
||||||
|
def_op('UNPACK_SEQUENCE', 92) # Number of tuple items
|
||||||
|
jrel_op('FOR_ITER', 93)
|
||||||
|
def_op('UNPACK_EX', 94)
|
||||||
|
name_op('STORE_ATTR', 95) # Index in name list
|
||||||
|
name_op('DELETE_ATTR', 96) # ""
|
||||||
|
name_op('STORE_GLOBAL', 97) # ""
|
||||||
|
name_op('DELETE_GLOBAL', 98) # ""
|
||||||
|
def_op('LOAD_CONST', 100) # Index in const list
|
||||||
|
hasconst.append(100)
|
||||||
|
name_op('LOAD_NAME', 101) # Index in name list
|
||||||
|
def_op('BUILD_TUPLE', 102) # Number of tuple items
|
||||||
|
def_op('BUILD_LIST', 103) # Number of list items
|
||||||
|
def_op('BUILD_SET', 104) # Number of set items
|
||||||
|
def_op('BUILD_MAP', 105) # Number of dict entries (upto 255)
|
||||||
|
name_op('LOAD_ATTR', 106) # Index in name list
|
||||||
|
def_op('COMPARE_OP', 107) # Comparison operator
|
||||||
|
hascompare.append(107)
|
||||||
|
name_op('IMPORT_NAME', 108) # Index in name list
|
||||||
|
name_op('IMPORT_FROM', 109) # Index in name list
|
||||||
|
|
||||||
|
jrel_op('JUMP_FORWARD', 110) # Number of bytes to skip
|
||||||
|
jabs_op('JUMP_IF_FALSE_OR_POP', 111) # Target byte offset from beginning of code
|
||||||
|
jabs_op('JUMP_IF_TRUE_OR_POP', 112) # ""
|
||||||
|
jabs_op('JUMP_ABSOLUTE', 113) # ""
|
||||||
|
jabs_op('POP_JUMP_IF_FALSE', 114) # ""
|
||||||
|
jabs_op('POP_JUMP_IF_TRUE', 115) # ""
|
||||||
|
|
||||||
|
name_op('LOAD_GLOBAL', 116) # Index in name list
|
||||||
|
|
||||||
|
jabs_op('CONTINUE_LOOP', 119) # Target address
|
||||||
|
jrel_op('SETUP_LOOP', 120) # Distance to target address
|
||||||
|
jrel_op('SETUP_EXCEPT', 121) # ""
|
||||||
|
jrel_op('SETUP_FINALLY', 122) # ""
|
||||||
|
|
||||||
|
def_op('LOAD_FAST', 124) # Local variable number
|
||||||
|
haslocal.append(124)
|
||||||
|
def_op('STORE_FAST', 125) # Local variable number
|
||||||
|
haslocal.append(125)
|
||||||
|
def_op('DELETE_FAST', 126) # Local variable number
|
||||||
|
haslocal.append(126)
|
||||||
|
|
||||||
|
def_op('RAISE_VARARGS', 130) # Number of raise arguments (1, 2, or 3)
|
||||||
|
def_op('CALL_FUNCTION', 131) # #args + (#kwargs << 8)
|
||||||
|
def_op('MAKE_FUNCTION', 132) # Number of args with default values
|
||||||
|
def_op('BUILD_SLICE', 133) # Number of items
|
||||||
|
def_op('MAKE_CLOSURE', 134)
|
||||||
|
def_op('LOAD_CLOSURE', 135)
|
||||||
|
hasfree.append(135)
|
||||||
|
def_op('LOAD_DEREF', 136)
|
||||||
|
hasfree.append(136)
|
||||||
|
def_op('STORE_DEREF', 137)
|
||||||
|
hasfree.append(137)
|
||||||
|
def_op('DELETE_DEREF', 138)
|
||||||
|
hasfree.append(138)
|
||||||
|
|
||||||
|
def_op('CALL_FUNCTION_VAR', 140) # #args + (#kwargs << 8)
|
||||||
|
def_op('CALL_FUNCTION_KW', 141) # #args + (#kwargs << 8)
|
||||||
|
def_op('CALL_FUNCTION_VAR_KW', 142) # #args + (#kwargs << 8)
|
||||||
|
|
||||||
|
jrel_op('SETUP_WITH', 143)
|
||||||
|
|
||||||
|
def_op('LIST_APPEND', 145)
|
||||||
|
def_op('SET_ADD', 146)
|
||||||
|
def_op('MAP_ADD', 147)
|
||||||
|
|
||||||
|
def_op('EXTENDED_ARG', 144)
|
||||||
|
EXTENDED_ARG = 144
|
||||||
|
|
||||||
|
del def_op, name_op, jrel_op, jabs_op
|
@@ -84,6 +84,8 @@ class Scanner(object):
|
|||||||
self.opc = opcode_26
|
self.opc = opcode_26
|
||||||
elif version == 2.5:
|
elif version == 2.5:
|
||||||
self.opc = opcode_25
|
self.opc = opcode_25
|
||||||
|
elif version == 3.2:
|
||||||
|
self.opc = opcode_32
|
||||||
elif version == 3.4:
|
elif version == 3.4:
|
||||||
self.opc = opcode_34
|
self.opc = opcode_34
|
||||||
|
|
||||||
|
485
uncompyle6/scanners/scanner32.py
Normal file
485
uncompyle6/scanners/scanner32.py
Normal file
@@ -0,0 +1,485 @@
|
|||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
|
'''
|
||||||
|
Copyright (c) 1999 John Aycock
|
||||||
|
Copyright (c) 2000-2002 by hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
|
Copyright (c) 2005 by Dan Pascu <dan@windowmaker.org>
|
||||||
|
|
||||||
|
See main module for license.
|
||||||
|
'''
|
||||||
|
|
||||||
|
import dis, marshal
|
||||||
|
from collections import namedtuple
|
||||||
|
|
||||||
|
from uncompyle6.scanner import Token
|
||||||
|
|
||||||
|
|
||||||
|
# Get all the opcodes into globals
|
||||||
|
globals().update(dis.opmap)
|
||||||
|
from uncompyle6.opcodes.opcode_27 import *
|
||||||
|
import uncompyle6.scanner as scan
|
||||||
|
|
||||||
|
|
||||||
|
class Scanner34(scan.Scanner):
|
||||||
|
def __init__(self):
|
||||||
|
self.Token = scan.Scanner.__init__(self, 3.2) # check
|
||||||
|
|
||||||
|
def run(self, bytecode):
|
||||||
|
code_object = marshal.loads(bytecode)
|
||||||
|
tokens = self.tokenize(code_object)
|
||||||
|
return tokens
|
||||||
|
|
||||||
|
def disassemble(self, co):
|
||||||
|
"""
|
||||||
|
Convert code object <co> into a sequence of tokens.
|
||||||
|
|
||||||
|
Based on dis.disassemble() function.
|
||||||
|
"""
|
||||||
|
# Container for tokens
|
||||||
|
tokens = []
|
||||||
|
customize = {}
|
||||||
|
self.code = code = co.co_code
|
||||||
|
codelen = len(code)
|
||||||
|
self.build_lines_data(co)
|
||||||
|
self.build_prev_op()
|
||||||
|
# Get jump targets
|
||||||
|
# Format: {target offset: [jump offsets]}
|
||||||
|
jump_targets = self.find_jump_targets()
|
||||||
|
# Initialize extended arg at 0. When extended arg op is encountered,
|
||||||
|
# variable preserved for next cycle and added as arg for next op
|
||||||
|
extended_arg = 0
|
||||||
|
free = None
|
||||||
|
for offset in self.op_range(0, codelen):
|
||||||
|
# Add jump target tokens
|
||||||
|
if offset in jump_targets:
|
||||||
|
jump_idx = 0
|
||||||
|
for jump_offset in jump_targets[offset]:
|
||||||
|
tokens.append(Token('COME_FROM', None, repr(jump_offset),
|
||||||
|
offset='{}_{}'.format(offset, jump_idx)))
|
||||||
|
jump_idx += 1
|
||||||
|
op = code[offset]
|
||||||
|
# Create token and fill all the fields we can
|
||||||
|
# w/o touching arguments
|
||||||
|
current_token = Token(dis.opname[op])
|
||||||
|
current_token.offset = offset
|
||||||
|
current_token.linestart = True if offset in self.linestarts else False
|
||||||
|
if op >= dis.HAVE_ARGUMENT:
|
||||||
|
# Calculate op's argument value based on its argument and
|
||||||
|
# preceding extended argument, if any
|
||||||
|
oparg = code[offset+1] + code[offset+2]*256 + extended_arg
|
||||||
|
extended_arg = 0
|
||||||
|
if op == dis.EXTENDED_ARG:
|
||||||
|
extended_arg = oparg*65536
|
||||||
|
|
||||||
|
# Fill token's attr/pattr fields
|
||||||
|
current_token.attr = oparg
|
||||||
|
if op in dis.hasconst:
|
||||||
|
current_token.pattr = repr(co.co_consts[oparg])
|
||||||
|
elif op in dis.hasname:
|
||||||
|
current_token.pattr = co.co_names[oparg]
|
||||||
|
elif op in dis.hasjrel:
|
||||||
|
current_token.pattr = repr(offset + 3 + oparg)
|
||||||
|
elif op in dis.haslocal:
|
||||||
|
current_token.pattr = co.co_varnames[oparg]
|
||||||
|
elif op in dis.hascompare:
|
||||||
|
current_token.pattr = dis.cmp_op[oparg]
|
||||||
|
elif op in dis.hasfree:
|
||||||
|
if free is None:
|
||||||
|
free = co.co_cellvars + co.co_freevars
|
||||||
|
current_token.pattr = free[oparg]
|
||||||
|
tokens.append(current_token)
|
||||||
|
return tokens, customize
|
||||||
|
|
||||||
|
def build_lines_data(self, code_obj):
|
||||||
|
"""
|
||||||
|
Generate various line-related helper data.
|
||||||
|
"""
|
||||||
|
# Offset: lineno pairs, only for offsets which start line.
|
||||||
|
# Locally we use list for more convenient iteration using indices
|
||||||
|
linestarts = list(dis.findlinestarts(code_obj))
|
||||||
|
self.linestarts = dict(linestarts)
|
||||||
|
# Plain set with offsets of first ops on line
|
||||||
|
self.linestart_offsets = {a for (a, _) in linestarts}
|
||||||
|
# 'List-map' which shows line number of current op and offset of
|
||||||
|
# first op on following line, given offset of op as index
|
||||||
|
self.lines = lines = []
|
||||||
|
LineTuple = namedtuple('LineTuple', ['l_no', 'next'])
|
||||||
|
# Iterate through available linestarts, and fill
|
||||||
|
# the data for all code offsets encountered until
|
||||||
|
# last linestart offset
|
||||||
|
_, prev_line_no = linestarts[0]
|
||||||
|
offset = 0
|
||||||
|
for start_offset, line_no in linestarts[1:]:
|
||||||
|
while offset < start_offset:
|
||||||
|
lines.append(LineTuple(prev_line_no, start_offset))
|
||||||
|
offset += 1
|
||||||
|
prev_line_no = line_no
|
||||||
|
# Fill remaining offsets with reference to last line number
|
||||||
|
# and code length as start offset of following non-existing line
|
||||||
|
codelen = len(self.code)
|
||||||
|
while offset < codelen:
|
||||||
|
lines.append(LineTuple(prev_line_no, codelen))
|
||||||
|
offset += 1
|
||||||
|
|
||||||
|
def build_prev_op(self):
|
||||||
|
"""
|
||||||
|
Compose 'list-map' which allows to jump to previous
|
||||||
|
op, given offset of current op as index.
|
||||||
|
"""
|
||||||
|
code = self.code
|
||||||
|
codelen = len(code)
|
||||||
|
self.prev_op = [0]
|
||||||
|
for offset in self.op_range(0, codelen):
|
||||||
|
op = code[offset]
|
||||||
|
for _ in range(self.op_size(op)):
|
||||||
|
self.prev_op.append(offset)
|
||||||
|
|
||||||
|
def op_size(self, op):
|
||||||
|
"""
|
||||||
|
Return size of operator with its arguments
|
||||||
|
for given opcode <op>.
|
||||||
|
"""
|
||||||
|
if op < dis.HAVE_ARGUMENT:
|
||||||
|
return 1
|
||||||
|
else:
|
||||||
|
return 3
|
||||||
|
|
||||||
|
def find_jump_targets(self):
|
||||||
|
"""
|
||||||
|
Detect all offsets in a byte code which are jump targets.
|
||||||
|
|
||||||
|
Return the list of offsets.
|
||||||
|
|
||||||
|
This procedure is modelled after dis.findlables(), but here
|
||||||
|
for each target the number of jumps is counted.
|
||||||
|
"""
|
||||||
|
code = self.code
|
||||||
|
codelen = len(code)
|
||||||
|
self.structs = [{'type': 'root',
|
||||||
|
'start': 0,
|
||||||
|
'end': codelen-1}]
|
||||||
|
|
||||||
|
# All loop entry points
|
||||||
|
# self.loops = []
|
||||||
|
# Map fixed jumps to their real destination
|
||||||
|
self.fixed_jumps = {}
|
||||||
|
self.ignore_if = set()
|
||||||
|
self.build_statement_indices()
|
||||||
|
# Containers filled by detect_structure()
|
||||||
|
self.not_continue = set()
|
||||||
|
self.return_end_ifs = set()
|
||||||
|
|
||||||
|
targets = {}
|
||||||
|
for offset in self.op_range(0, codelen):
|
||||||
|
op = code[offset]
|
||||||
|
|
||||||
|
# Determine structures and fix jumps for 2.3+
|
||||||
|
self.detect_structure(offset)
|
||||||
|
|
||||||
|
if op >= dis.HAVE_ARGUMENT:
|
||||||
|
label = self.fixed_jumps.get(offset)
|
||||||
|
oparg = code[offset+1] + code[offset+2] * 256
|
||||||
|
|
||||||
|
if label is None:
|
||||||
|
if op in dis.hasjrel and op != FOR_ITER:
|
||||||
|
label = offset + 3 + oparg
|
||||||
|
elif op in dis.hasjabs:
|
||||||
|
if op in (JUMP_IF_FALSE_OR_POP, JUMP_IF_TRUE_OR_POP):
|
||||||
|
if oparg > offset:
|
||||||
|
label = oparg
|
||||||
|
|
||||||
|
if label is not None and label != -1:
|
||||||
|
targets[label] = targets.get(label, []) + [offset]
|
||||||
|
elif op == END_FINALLY and offset in self.fixed_jumps:
|
||||||
|
label = self.fixed_jumps[offset]
|
||||||
|
targets[label] = targets.get(label, []) + [offset]
|
||||||
|
return targets
|
||||||
|
|
||||||
|
def build_statement_indices(self):
|
||||||
|
code = self.code
|
||||||
|
start = 0
|
||||||
|
end = codelen = len(code)
|
||||||
|
|
||||||
|
statement_opcodes = {
|
||||||
|
SETUP_LOOP, BREAK_LOOP, CONTINUE_LOOP,
|
||||||
|
SETUP_FINALLY, END_FINALLY, SETUP_EXCEPT, SETUP_WITH,
|
||||||
|
POP_BLOCK, STORE_FAST, DELETE_FAST, STORE_DEREF,
|
||||||
|
STORE_GLOBAL, DELETE_GLOBAL, STORE_NAME, DELETE_NAME,
|
||||||
|
STORE_ATTR, DELETE_ATTR, STORE_SUBSCR, DELETE_SUBSCR,
|
||||||
|
RETURN_VALUE, RAISE_VARARGS, POP_TOP, PRINT_EXPR,
|
||||||
|
JUMP_ABSOLUTE
|
||||||
|
}
|
||||||
|
|
||||||
|
statement_opcode_sequences = [(POP_JUMP_IF_FALSE, JUMP_FORWARD), (POP_JUMP_IF_FALSE, JUMP_ABSOLUTE),
|
||||||
|
(POP_JUMP_IF_TRUE, JUMP_FORWARD), (POP_JUMP_IF_TRUE, JUMP_ABSOLUTE)]
|
||||||
|
|
||||||
|
designator_ops = {
|
||||||
|
STORE_FAST, STORE_NAME, STORE_GLOBAL, STORE_DEREF, STORE_ATTR,
|
||||||
|
STORE_SUBSCR, UNPACK_SEQUENCE, JUMP_ABSOLUTE
|
||||||
|
}
|
||||||
|
|
||||||
|
# Compose preliminary list of indices with statements,
|
||||||
|
# using plain statement opcodes
|
||||||
|
prelim = self.all_instr(start, end, statement_opcodes)
|
||||||
|
|
||||||
|
# Initialize final container with statements with
|
||||||
|
# preliminnary data
|
||||||
|
stmts = self.stmts = set(prelim)
|
||||||
|
|
||||||
|
# Same for opcode sequences
|
||||||
|
pass_stmts = set()
|
||||||
|
for sequence in statement_opcode_sequences:
|
||||||
|
for i in self.op_range(start, end-(len(sequence)+1)):
|
||||||
|
match = True
|
||||||
|
for elem in sequence:
|
||||||
|
if elem != code[i]:
|
||||||
|
match = False
|
||||||
|
break
|
||||||
|
i += self.op_size(code[i])
|
||||||
|
|
||||||
|
if match is True:
|
||||||
|
i = self.prev_op[i]
|
||||||
|
stmts.add(i)
|
||||||
|
pass_stmts.add(i)
|
||||||
|
|
||||||
|
# Initialize statement list with the full data we've gathered so far
|
||||||
|
if pass_stmts:
|
||||||
|
stmt_offset_list = list(stmts)
|
||||||
|
stmt_offset_list.sort()
|
||||||
|
else:
|
||||||
|
stmt_offset_list = prelim
|
||||||
|
# 'List-map' which contains offset of start of
|
||||||
|
# next statement, when op offset is passed as index
|
||||||
|
self.next_stmt = slist = []
|
||||||
|
last_stmt_offset = -1
|
||||||
|
i = 0
|
||||||
|
# Go through all statement offsets
|
||||||
|
for stmt_offset in stmt_offset_list:
|
||||||
|
# Process absolute jumps, but do not remove 'pass' statements
|
||||||
|
# from the set
|
||||||
|
if code[stmt_offset] == JUMP_ABSOLUTE and stmt_offset not in pass_stmts:
|
||||||
|
# If absolute jump occurs in forward direction or it takes off from the
|
||||||
|
# same line as previous statement, this is not a statement
|
||||||
|
target = self.get_target(stmt_offset)
|
||||||
|
if target > stmt_offset or self.lines[last_stmt_offset].l_no == self.lines[stmt_offset].l_no:
|
||||||
|
stmts.remove(stmt_offset)
|
||||||
|
continue
|
||||||
|
# Rewing ops till we encounter non-JA one
|
||||||
|
j = self.prev_op[stmt_offset]
|
||||||
|
while code[j] == JUMP_ABSOLUTE:
|
||||||
|
j = self.prev_op[j]
|
||||||
|
# If we got here, then it's list comprehension which
|
||||||
|
# is not a statement too
|
||||||
|
if code[j] == LIST_APPEND:
|
||||||
|
stmts.remove(stmt_offset)
|
||||||
|
continue
|
||||||
|
# Exclude ROT_TWO + POP_TOP
|
||||||
|
elif code[stmt_offset] == POP_TOP and code[self.prev_op[stmt_offset]] == ROT_TWO:
|
||||||
|
stmts.remove(stmt_offset)
|
||||||
|
continue
|
||||||
|
# Exclude FOR_ITER + designators
|
||||||
|
elif code[stmt_offset] in designator_ops:
|
||||||
|
j = self.prev_op[stmt_offset]
|
||||||
|
while code[j] in designator_ops:
|
||||||
|
j = self.prev_op[j]
|
||||||
|
if code[j] == FOR_ITER:
|
||||||
|
stmts.remove(stmt_offset)
|
||||||
|
continue
|
||||||
|
# Add to list another list with offset of current statement,
|
||||||
|
# equal to length of previous statement
|
||||||
|
slist += [stmt_offset] * (stmt_offset-i)
|
||||||
|
last_stmt_offset = stmt_offset
|
||||||
|
i = stmt_offset
|
||||||
|
# Finish filling the list for last statement
|
||||||
|
slist += [codelen] * (codelen-len(slist))
|
||||||
|
|
||||||
|
def get_target(self, offset):
|
||||||
|
"""
|
||||||
|
Get target offset for op located at given <offset>.
|
||||||
|
"""
|
||||||
|
op = self.code[offset]
|
||||||
|
target = self.code[offset+1] + self.code[offset+2] * 256
|
||||||
|
if op in dis.hasjrel:
|
||||||
|
target += offset + 3
|
||||||
|
return target
|
||||||
|
|
||||||
|
def detect_structure(self, offset):
|
||||||
|
"""
|
||||||
|
Detect structures and their boundaries to fix optimizied jumps
|
||||||
|
in python2.3+
|
||||||
|
"""
|
||||||
|
code = self.code
|
||||||
|
op = code[offset]
|
||||||
|
# Detect parent structure
|
||||||
|
parent = self.structs[0]
|
||||||
|
start = parent['start']
|
||||||
|
end = parent['end']
|
||||||
|
|
||||||
|
# Pick inner-most parent for our offset
|
||||||
|
for struct in self.structs:
|
||||||
|
curent_start = struct['start']
|
||||||
|
curent_end = struct['end']
|
||||||
|
if (curent_start <= offset < curent_end) and (curent_start >= start and curent_end <= end):
|
||||||
|
start = curent_start
|
||||||
|
end = curent_end
|
||||||
|
parent = struct
|
||||||
|
|
||||||
|
if op in (POP_JUMP_IF_FALSE, POP_JUMP_IF_TRUE):
|
||||||
|
start = offset + self.op_size(op)
|
||||||
|
target = self.get_target(offset)
|
||||||
|
rtarget = self.restrict_to_parent(target, parent)
|
||||||
|
prev_op = self.prev_op
|
||||||
|
|
||||||
|
# Do not let jump to go out of parent struct bounds
|
||||||
|
if target != rtarget and parent['type'] == 'and/or':
|
||||||
|
self.fixed_jumps[offset] = rtarget
|
||||||
|
return
|
||||||
|
|
||||||
|
# Does this jump to right after another cond jump?
|
||||||
|
# If so, it's part of a larger conditional
|
||||||
|
if (code[prev_op[target]] in (JUMP_IF_FALSE_OR_POP, JUMP_IF_TRUE_OR_POP,
|
||||||
|
POP_JUMP_IF_FALSE, POP_JUMP_IF_TRUE)) and (target > offset):
|
||||||
|
self.fixed_jumps[offset] = prev_op[target]
|
||||||
|
self.structs.append({'type': 'and/or',
|
||||||
|
'start': start,
|
||||||
|
'end': prev_op[target]})
|
||||||
|
return
|
||||||
|
# Is it an and inside if block
|
||||||
|
if op == POP_JUMP_IF_FALSE:
|
||||||
|
# Search for other POP_JUMP_IF_FALSE targetting the same op,
|
||||||
|
# in current statement, starting from current offset, and filter
|
||||||
|
# everything inside inner 'or' jumps and midline ifs
|
||||||
|
match = self.rem_or(start, self.next_stmt[offset], POP_JUMP_IF_FALSE, target)
|
||||||
|
match = self.remove_mid_line_ifs(match)
|
||||||
|
# If we still have any offsets in set, start working on it
|
||||||
|
if match:
|
||||||
|
if (code[prev_op[rtarget]] in (JUMP_FORWARD, JUMP_ABSOLUTE) and prev_op[rtarget] not in self.stmts and
|
||||||
|
self.restrict_to_parent(self.get_target(prev_op[rtarget]), parent) == rtarget):
|
||||||
|
if (code[prev_op[prev_op[rtarget]]] == JUMP_ABSOLUTE and self.remove_mid_line_ifs([offset]) and
|
||||||
|
target == self.get_target(prev_op[prev_op[rtarget]]) and
|
||||||
|
(prev_op[prev_op[rtarget]] not in self.stmts or self.get_target(prev_op[prev_op[rtarget]]) > prev_op[prev_op[rtarget]]) and
|
||||||
|
1 == len(self.remove_mid_line_ifs(self.rem_or(start, prev_op[prev_op[rtarget]], (POP_JUMP_IF_FALSE, POP_JUMP_IF_TRUE), target)))):
|
||||||
|
pass
|
||||||
|
elif (code[prev_op[prev_op[rtarget]]] == RETURN_VALUE and self.remove_mid_line_ifs([offset]) and
|
||||||
|
1 == (len(set(self.remove_mid_line_ifs(self.rem_or(start, prev_op[prev_op[rtarget]],
|
||||||
|
(POP_JUMP_IF_FALSE, POP_JUMP_IF_TRUE), target))) |
|
||||||
|
set(self.remove_mid_line_ifs(self.rem_or(start, prev_op[prev_op[rtarget]],
|
||||||
|
(POP_JUMP_IF_FALSE, POP_JUMP_IF_TRUE, JUMP_ABSOLUTE),
|
||||||
|
prev_op[rtarget], True)))))):
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
fix = None
|
||||||
|
jump_ifs = self.all_instr(start, self.next_stmt[offset], POP_JUMP_IF_FALSE)
|
||||||
|
last_jump_good = True
|
||||||
|
for j in jump_ifs:
|
||||||
|
if target == self.get_target(j):
|
||||||
|
if self.lines[j].next == j + 3 and last_jump_good:
|
||||||
|
fix = j
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
last_jump_good = False
|
||||||
|
self.fixed_jumps[offset] = fix or match[-1]
|
||||||
|
return
|
||||||
|
else:
|
||||||
|
self.fixed_jumps[offset] = match[-1]
|
||||||
|
return
|
||||||
|
# op == POP_JUMP_IF_TRUE
|
||||||
|
else:
|
||||||
|
next = self.next_stmt[offset]
|
||||||
|
if prev_op[next] == offset:
|
||||||
|
pass
|
||||||
|
elif code[next] in (JUMP_FORWARD, JUMP_ABSOLUTE) and target == self.get_target(next):
|
||||||
|
if code[prev_op[next]] == POP_JUMP_IF_FALSE:
|
||||||
|
if code[next] == JUMP_FORWARD or target != rtarget or code[prev_op[prev_op[rtarget]]] not in (JUMP_ABSOLUTE, RETURN_VALUE):
|
||||||
|
self.fixed_jumps[offset] = prev_op[next]
|
||||||
|
return
|
||||||
|
elif (code[next] == JUMP_ABSOLUTE and code[target] in (JUMP_ABSOLUTE, JUMP_FORWARD) and
|
||||||
|
self.get_target(target) == self.get_target(next)):
|
||||||
|
self.fixed_jumps[offset] = prev_op[next]
|
||||||
|
return
|
||||||
|
|
||||||
|
# Don't add a struct for a while test, it's already taken care of
|
||||||
|
if offset in self.ignore_if:
|
||||||
|
return
|
||||||
|
|
||||||
|
if (code[prev_op[rtarget]] == JUMP_ABSOLUTE and prev_op[rtarget] in self.stmts and
|
||||||
|
prev_op[rtarget] != offset and prev_op[prev_op[rtarget]] != offset and
|
||||||
|
not (code[rtarget] == JUMP_ABSOLUTE and code[rtarget+3] == POP_BLOCK and code[prev_op[prev_op[rtarget]]] != JUMP_ABSOLUTE)):
|
||||||
|
rtarget = prev_op[rtarget]
|
||||||
|
|
||||||
|
# Does the if jump just beyond a jump op, then this is probably an if statement
|
||||||
|
if code[prev_op[rtarget]] in (JUMP_ABSOLUTE, JUMP_FORWARD):
|
||||||
|
if_end = self.get_target(prev_op[rtarget])
|
||||||
|
|
||||||
|
# Is this a loop not an if?
|
||||||
|
if (if_end < prev_op[rtarget]) and (code[prev_op[if_end]] == SETUP_LOOP):
|
||||||
|
if(if_end > start):
|
||||||
|
return
|
||||||
|
|
||||||
|
end = self.restrict_to_parent(if_end, parent)
|
||||||
|
|
||||||
|
self.structs.append({'type': 'if-then',
|
||||||
|
'start': start,
|
||||||
|
'end': prev_op[rtarget]})
|
||||||
|
self.not_continue.add(prev_op[rtarget])
|
||||||
|
|
||||||
|
if rtarget < end:
|
||||||
|
self.structs.append({'type': 'if-else',
|
||||||
|
'start': rtarget,
|
||||||
|
'end': end})
|
||||||
|
elif code[prev_op[rtarget]] == RETURN_VALUE:
|
||||||
|
self.structs.append({'type': 'if-then',
|
||||||
|
'start': start,
|
||||||
|
'end': rtarget})
|
||||||
|
self.return_end_ifs.add(prev_op[rtarget])
|
||||||
|
|
||||||
|
elif op in (JUMP_IF_FALSE_OR_POP, JUMP_IF_TRUE_OR_POP):
|
||||||
|
target = self.get_target(offset)
|
||||||
|
if target > offset:
|
||||||
|
unop_target = self.last_instr(offset, target, JUMP_FORWARD, target)
|
||||||
|
if unop_target and code[unop_target+3] != ROT_TWO:
|
||||||
|
self.fixed_jumps[offset] = unop_target
|
||||||
|
else:
|
||||||
|
self.fixed_jumps[offset] = self.restrict_to_parent(target, parent)
|
||||||
|
|
||||||
|
def restrict_to_parent(self, target, parent):
|
||||||
|
"""Restrict target to parent structure boundaries."""
|
||||||
|
if not (parent['start'] < target < parent['end']):
|
||||||
|
target = parent['end']
|
||||||
|
return target
|
||||||
|
|
||||||
|
def rem_or(self, start, end, instr, target=None, include_beyond_target=False):
|
||||||
|
"""
|
||||||
|
Find offsets of all requested <instr> between <start> and <end>,
|
||||||
|
optionally <target>ing specified offset, and return list found
|
||||||
|
<instr> offsets which are not within any POP_JUMP_IF_TRUE jumps.
|
||||||
|
"""
|
||||||
|
# Find all offsets of requested instructions
|
||||||
|
instr_offsets = self.all_instr(start, end, instr, target, include_beyond_target)
|
||||||
|
# Get all POP_JUMP_IF_TRUE (or) offsets
|
||||||
|
pjit_offsets = self.all_instr(start, end, POP_JUMP_IF_TRUE)
|
||||||
|
filtered = []
|
||||||
|
for pjit_offset in pjit_offsets:
|
||||||
|
pjit_tgt = self.get_target(pjit_offset) - 3
|
||||||
|
for instr_offset in instr_offsets:
|
||||||
|
if instr_offset <= pjit_offset or instr_offset >= pjit_tgt:
|
||||||
|
filtered.append(instr_offset)
|
||||||
|
instr_offsets = filtered
|
||||||
|
filtered = []
|
||||||
|
return instr_offsets
|
||||||
|
|
||||||
|
def remove_mid_line_ifs(self, ifs):
|
||||||
|
"""
|
||||||
|
Go through passed offsets, filtering ifs
|
||||||
|
located somewhere mid-line.
|
||||||
|
"""
|
||||||
|
filtered = []
|
||||||
|
for if_ in ifs:
|
||||||
|
# For each offset, if line number of current and next op
|
||||||
|
# is the same
|
||||||
|
if self.lines[if_].l_no == self.lines[if_+3].l_no:
|
||||||
|
# Check if last op on line is PJIT or PJIF, and if it is - skip it
|
||||||
|
if self.code[self.prev_op[self.lines[if_].next]] in (POP_JUMP_IF_TRUE, POP_JUMP_IF_FALSE):
|
||||||
|
continue
|
||||||
|
filtered.append(if_)
|
||||||
|
return filtered
|
@@ -166,15 +166,21 @@ def cmp_code_objects(version, code_obj1, code_obj2, name=''):
|
|||||||
if member in __IGNORE_CODE_MEMBERS__:
|
if member in __IGNORE_CODE_MEMBERS__:
|
||||||
pass
|
pass
|
||||||
elif member == 'co_code':
|
elif member == 'co_code':
|
||||||
if version == 2.7:
|
if version == 2.5:
|
||||||
import uncompyle6.scanners.scanner27 as scan
|
import uncompyle6.scanners.scanner25 as scan
|
||||||
scanner = scan.Scanner27()
|
scanner = scan.Scanner27()
|
||||||
elif version == 2.6:
|
elif version == 2.6:
|
||||||
import uncompyle6.scanners.scanner26 as scan
|
import uncompyle6.scanners.scanner26 as scan
|
||||||
scanner = scan.Scanner26()
|
scanner = scan.Scanner26()
|
||||||
elif version == 2.5:
|
elif version == 2.7:
|
||||||
import uncompyle65.scanners.scanner25 as scan
|
import uncompyle6.scanners.scanner27 as scan
|
||||||
scanner = scan.Scanner25()
|
scanner = scan.Scanner25()
|
||||||
|
elif version == 3.2:
|
||||||
|
import uncompyle6.scanners.scanner32 as scan
|
||||||
|
scanner = scan.Scanner34()
|
||||||
|
elif version == 3.4:
|
||||||
|
import uncompyle6.scanners.scanner34 as scan
|
||||||
|
scanner = scan.Scanner34()
|
||||||
scanner.setShowAsm( showasm=0 )
|
scanner.setShowAsm( showasm=0 )
|
||||||
global JUMP_OPs
|
global JUMP_OPs
|
||||||
JUMP_OPs = scan.JUMP_OPs + ['JUMP_BACK']
|
JUMP_OPs = scan.JUMP_OPs + ['JUMP_BACK']
|
||||||
|
Reference in New Issue
Block a user