forked from MatthieuDartiailh/bytecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstr.py
More file actions
328 lines (258 loc) · 8.98 KB
/
instr.py
File metadata and controls
328 lines (258 loc) · 8.98 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
import enum
import dis
import opcode as _opcode
import sys
from marshal import dumps as _dumps
import bytecode as _bytecode
@enum.unique
class Compare(enum.IntEnum):
LT = 0
LE = 1
EQ = 2
NE = 3
GT = 4
GE = 5
IN = 6
NOT_IN = 7
IS = 8
IS_NOT = 9
EXC_MATCH = 10
UNSET = object()
def const_key(obj):
try:
return _dumps(obj)
except ValueError:
# For other types, we use the object identifier as an unique identifier
# to ensure that they are seen as unequal.
return (type(obj), id(obj))
def _check_lineno(lineno):
if not isinstance(lineno, int):
raise TypeError("lineno must be an int")
if lineno < 1:
raise ValueError("invalid lineno")
class SetLineno:
__slots__ = ("_lineno",)
def __init__(self, lineno):
_check_lineno(lineno)
self._lineno = lineno
@property
def lineno(self):
return self._lineno
def __eq__(self, other):
if not isinstance(other, SetLineno):
return False
return self._lineno == other._lineno
class Label:
__slots__ = ()
class _Variable:
__slots__ = ("name",)
def __init__(self, name):
self.name = name
def __eq__(self, other):
if type(self) != type(other):
return False
return self.name == other.name
def __str__(self):
return self.name
def __repr__(self):
return "<%s %r>" % (self.__class__.__name__, self.name)
class CellVar(_Variable):
__slots__ = ()
class FreeVar(_Variable):
__slots__ = ()
def _check_arg_int(name, arg):
if not isinstance(arg, int):
raise TypeError(
"operation %s argument must be an int, "
"got %s" % (name, type(arg).__name__)
)
if not (0 <= arg <= 2147483647):
raise ValueError(
"operation %s argument must be in " "the range 0..2,147,483,647" % name
)
if sys.version_info < (3, 8):
_stack_effects = {
# NOTE: the entries are all 2-tuples. Entry[0/False] is non-taken jumps.
# Entry[1/True] is for taken jumps.
# opcodes not in dis.stack_effect
_opcode.opmap["EXTENDED_ARG"]: (0, 0),
_opcode.opmap["NOP"]: (0, 0),
# Jump taken/not-taken are different:
_opcode.opmap["JUMP_IF_TRUE_OR_POP"]: (-1, 0),
_opcode.opmap["JUMP_IF_FALSE_OR_POP"]: (-1, 0),
_opcode.opmap["FOR_ITER"]: (1, -1),
_opcode.opmap["SETUP_WITH"]: (1, 6),
_opcode.opmap["SETUP_ASYNC_WITH"]: (0, 5),
_opcode.opmap["SETUP_EXCEPT"]: (0, 6), # as of 3.7, below for <=3.6
_opcode.opmap["SETUP_FINALLY"]: (0, 6), # as of 3.7, below for <=3.6
}
# More stack effect values that are unique to the version of Python.
if sys.version_info < (3, 7):
_stack_effects.update(
{
_opcode.opmap["SETUP_WITH"]: (7, 7),
_opcode.opmap["SETUP_EXCEPT"]: (6, 9),
_opcode.opmap["SETUP_FINALLY"]: (6, 9),
}
)
class Instr:
"""Abstract instruction."""
__slots__ = ("_name", "_opcode", "_arg", "_lineno")
def __init__(self, name, arg=UNSET, *, lineno=None):
self._set(name, arg, lineno)
def _check_arg(self, name, opcode, arg):
if opcode >= _opcode.HAVE_ARGUMENT:
if arg is UNSET:
raise ValueError("operation %s requires an argument" % name)
else:
if arg is not UNSET:
raise ValueError("operation %s has no argument" % name)
if self._has_jump(opcode):
if not isinstance(arg, (Label, _bytecode.BasicBlock)):
raise TypeError(
"operation %s argument type must be "
"Label or BasicBlock, got %s" % (name, type(arg).__name__)
)
elif opcode in _opcode.hasfree:
if not isinstance(arg, (CellVar, FreeVar)):
raise TypeError(
"operation %s argument must be CellVar "
"or FreeVar, got %s" % (name, type(arg).__name__)
)
elif opcode in _opcode.haslocal or opcode in _opcode.hasname:
if not isinstance(arg, str):
raise TypeError(
"operation %s argument must be a str, "
"got %s" % (name, type(arg).__name__)
)
elif opcode in _opcode.hasconst:
if isinstance(arg, Label):
raise ValueError(
"label argument cannot be used " "in %s operation" % name
)
if isinstance(arg, _bytecode.BasicBlock):
raise ValueError(
"block argument cannot be used " "in %s operation" % name
)
elif opcode in _opcode.hascompare:
if not isinstance(arg, Compare):
raise TypeError(
"operation %s argument type must be "
"Compare, got %s" % (name, type(arg).__name__)
)
elif opcode >= _opcode.HAVE_ARGUMENT:
_check_arg_int(name, arg)
def _set(self, name, arg, lineno):
if not isinstance(name, str):
raise TypeError("operation name must be a str")
try:
opcode = _opcode.opmap[name]
except KeyError:
raise ValueError("invalid operation name")
# check lineno
if lineno is not None:
_check_lineno(lineno)
self._check_arg(name, opcode, arg)
opcode = _opcode.opmap[name]
self._name = name
self._opcode = opcode
self._arg = arg
self._lineno = lineno
def set(self, name, arg=UNSET):
"""Modify the instruction in-place.
Replace name and arg attributes. Don't modify lineno.
"""
self._set(name, arg, self._lineno)
def require_arg(self):
"""Does the instruction require an argument?"""
return self._opcode >= _opcode.HAVE_ARGUMENT
@property
def name(self):
return self._name
@name.setter
def name(self, name):
self._set(name, self._arg, self._lineno)
@property
def opcode(self):
return self._opcode
@opcode.setter
def opcode(self, op):
if not isinstance(op, int):
raise TypeError("operator code must be an int")
if 0 <= op <= 255:
name = _opcode.opname[op]
valid = name != "<%r>" % op
else:
valid = False
if not valid:
raise ValueError("invalid operator code")
self._set(name, self._arg, self._lineno)
@property
def arg(self):
return self._arg
@arg.setter
def arg(self, arg):
self._set(self._name, arg, self._lineno)
@property
def lineno(self):
return self._lineno
@lineno.setter
def lineno(self, lineno):
self._set(self._name, self._arg, lineno)
def stack_effect(self, jump=None):
if self._opcode < _opcode.HAVE_ARGUMENT:
arg = None
elif not isinstance(self._arg, int) or self._opcode in _opcode.hasconst:
# Argument is either a non-integer or an integer constant,
# not oparg.
arg = 0
else:
arg = self._arg
if sys.version_info < (3, 8):
effect = _stack_effects.get(self._opcode, None)
if effect is not None:
return max(effect) if jump is None else effect[jump]
return dis.stack_effect(self._opcode, arg)
else:
return dis.stack_effect(self._opcode, arg, jump=jump)
def copy(self):
return self.__class__(self._name, self._arg, lineno=self._lineno)
def __repr__(self):
if self._arg is not UNSET:
return "<%s arg=%r lineno=%s>" % (self._name, self._arg, self._lineno)
else:
return "<%s lineno=%s>" % (self._name, self._lineno)
def _cmp_key(self, labels=None):
arg = self._arg
if self._opcode in _opcode.hasconst:
arg = const_key(arg)
elif isinstance(arg, Label) and labels is not None:
arg = labels[arg]
return (self._lineno, self._name, arg)
def __eq__(self, other):
if type(self) != type(other):
return False
return self._cmp_key() == other._cmp_key()
@staticmethod
def _has_jump(opcode):
return opcode in _opcode.hasjrel or opcode in _opcode.hasjabs
def has_jump(self):
return self._has_jump(self._opcode)
def is_cond_jump(self):
"""Is a conditional jump?"""
# Ex: POP_JUMP_IF_TRUE, JUMP_IF_FALSE_OR_POP
return "JUMP_IF_" in self._name
def is_uncond_jump(self):
"""Is an unconditional jump?"""
return self.name in {"JUMP_FORWARD", "JUMP_ABSOLUTE"}
def is_final(self):
if self._name in {
"RETURN_VALUE",
"RAISE_VARARGS",
"BREAK_LOOP",
"CONTINUE_LOOP",
}:
return True
if self.is_uncond_jump():
return True
return False