1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
class ByteCode:
''' print a ByteCode
(workaround for gcc bug 58150)
'''
__slots__ = ('_value')
name = 'ByteCode'
enabled = True
def __init__(self, value):
self._value = value
def to_string(self):
val = int(self._value)
try:
return 'ByteCode::' + self.types[val]
except IndexError:
return 'ByteCode(%x)' % val
types = [
'NOP', 'POS', 'INT', 'PARAM', 'FUNC', 'STR', 'CONSTSTR', 'ARG',
'VARIABLE', 'EOL', 'RETINFO',
'LOR', 'LAND', 'LE', 'LT', 'GE', 'GT', 'EQ', 'NE',
'XOR', 'OR', 'AND', 'ADD', 'SUB', 'MUL', 'DIV', 'MOD',
'NEG', 'LNOT', 'NOT', 'R_SHIFT', 'L_SHIFT',
'FUNC_REF',
]
for i, n in enumerate(ByteCode.types):
setattr(ByteCode, n, i)
del i, n
class script_data(object):
''' print a script_data
'''
__slots__ = ('_value')
name = 'script_data'
enabled = True
def __init__(self, value):
self._value = value
def children(self):
v = self._value
t = v['type']
yield 'type', ByteCode(t).to_string() # why does this not work?
v = v['u']
t = int(t)
if t == ByteCode.PARAM:
yield 'reg', v['reg']
elif t == ByteCode.RETINFO:
yield 'script', v['script']
elif t in (ByteCode.STR, ByteCode.CONSTSTR):
yield 'str', v['str']
else:
yield 'numi', v['numi']
def to_string(self):
return None
|