forked from kyclark/tiny_python_projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexecuting.py
More file actions
1120 lines (940 loc) · 37.6 KB
/
Copy pathexecuting.py
File metadata and controls
1120 lines (940 loc) · 37.6 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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
MIT License
Copyright (c) 2021 Alex Hall
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
import __future__
import ast
import dis
import functools
import inspect
import io
import linecache
import re
import sys
import types
from collections import defaultdict, namedtuple
from copy import deepcopy
from itertools import islice
from operator import attrgetter
from threading import RLock
function_node_types = (ast.FunctionDef,)
PY3 = sys.version_info[0] == 3
if PY3:
# noinspection PyUnresolvedReferences
from functools import lru_cache
# noinspection PyUnresolvedReferences
from tokenize import detect_encoding
from itertools import zip_longest
# noinspection PyUnresolvedReferences,PyCompatibility
from pathlib import Path
cache = lru_cache(maxsize=None)
text_type = str
else:
from lib2to3.pgen2.tokenize import detect_encoding, cookie_re as encoding_pattern
from itertools import izip_longest as zip_longest
class Path(object):
pass
def cache(func):
d = {}
@functools.wraps(func)
def wrapper(*args):
if args in d:
return d[args]
result = d[args] = func(*args)
return result
return wrapper
# noinspection PyUnresolvedReferences
text_type = unicode
try:
# noinspection PyUnresolvedReferences
_get_instructions = dis.get_instructions
except AttributeError:
class Instruction(namedtuple('Instruction', 'offset argval opname starts_line')):
lineno = None
from dis import HAVE_ARGUMENT, EXTENDED_ARG, hasconst, opname, findlinestarts, hasname
# Based on dis.disassemble from 2.7
# Left as similar as possible for easy diff
def _get_instructions(co):
code = co.co_code
linestarts = dict(findlinestarts(co))
n = len(code)
i = 0
extended_arg = 0
while i < n:
offset = i
c = code[i]
op = ord(c)
lineno = linestarts.get(i)
argval = None
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 * 65536
if op in hasconst:
argval = co.co_consts[oparg]
elif op in hasname:
argval = co.co_names[oparg]
elif opname[op] == 'LOAD_FAST':
argval = co.co_varnames[oparg]
yield Instruction(offset, argval, opname[op], lineno)
try:
function_node_types += (ast.AsyncFunctionDef,)
except AttributeError:
pass
def assert_(condition, message=""):
"""
Like an assert statement, but unaffected by -O
:param condition: value that is expected to be truthy
:type message: Any
"""
if not condition:
raise AssertionError(str(message))
def get_instructions(co):
lineno = co.co_firstlineno
for inst in _get_instructions(co):
lineno = inst.starts_line or lineno
assert_(lineno)
inst.lineno = lineno
yield inst
TESTING = 0
class NotOneValueFound(Exception):
pass
def only(it):
if hasattr(it, '__len__'):
if len(it) != 1:
raise NotOneValueFound('Expected one value, found %s' % len(it))
# noinspection PyTypeChecker
return list(it)[0]
lst = tuple(islice(it, 2))
if len(lst) == 0:
raise NotOneValueFound('Expected one value, found 0')
if len(lst) > 1:
raise NotOneValueFound('Expected one value, found several')
return lst[0]
class Source(object):
"""
The source code of a single file and associated metadata.
The main method of interest is the classmethod `executing(frame)`.
If you want an instance of this class, don't construct it.
Ideally use the classmethod `for_frame(frame)`.
If you don't have a frame, use `for_filename(filename [, module_globals])`.
These methods cache instances by filename, so at most one instance exists per filename.
Attributes:
- filename
- text
- lines
- tree: AST parsed from text, or None if text is not valid Python
All nodes in the tree have an extra `parent` attribute
Other methods of interest:
- statements_at_line
- asttokens
- code_qualname
"""
def __init__(self, filename, lines):
"""
Don't call this constructor, see the class docstring.
"""
self.filename = filename
text = ''.join(lines)
if not isinstance(text, text_type):
encoding = self.detect_encoding(text)
# noinspection PyUnresolvedReferences
text = text.decode(encoding)
lines = [line.decode(encoding) for line in lines]
self.text = text
self.lines = [line.rstrip('\r\n') for line in lines]
if PY3:
ast_text = text
else:
# In python 2 it's a syntax error to parse unicode
# with an encoding declaration, so we remove it but
# leave empty lines in its place to keep line numbers the same
ast_text = ''.join([
'\n' if i < 2 and encoding_pattern.match(line)
else line
for i, line in enumerate(lines)
])
self._nodes_by_line = defaultdict(list)
self.tree = None
self._qualnames = {}
try:
self.tree = ast.parse(ast_text, filename=filename)
except SyntaxError:
pass
else:
for node in ast.walk(self.tree):
for child in ast.iter_child_nodes(node):
child.parent = node
for lineno in node_linenos(node):
self._nodes_by_line[lineno].append(node)
visitor = QualnameVisitor()
visitor.visit(self.tree)
self._qualnames = visitor.qualnames
@classmethod
def for_frame(cls, frame, use_cache=True):
"""
Returns the `Source` object corresponding to the file the frame is executing in.
"""
return cls.for_filename(frame.f_code.co_filename, frame.f_globals or {}, use_cache)
@classmethod
def for_filename(
cls,
filename,
module_globals=None,
use_cache=True, # noqa no longer used
):
if isinstance(filename, Path):
filename = str(filename)
def get_lines():
return linecache.getlines(filename, module_globals)
# Save the current linecache entry, then ensure the cache is up to date.
entry = linecache.cache.get(filename)
linecache.checkcache(filename)
lines = get_lines()
if entry is not None and not lines:
# There was an entry, checkcache removed it, and nothing replaced it.
# This means the file wasn't simply changed (because the `lines` wouldn't be empty)
# but rather the file was found not to exist, probably because `filename` was fake.
# Restore the original entry so that we still have something.
linecache.cache[filename] = entry
lines = get_lines()
lines = tuple(lines)
return cls._for_filename_and_lines(filename, lines)
@classmethod
def _for_filename_and_lines(cls, filename, lines):
source_cache = cls._class_local('__source_cache_with_lines', {})
try:
return source_cache[(filename, lines)]
except KeyError:
pass
result = source_cache[(filename, lines)] = cls(filename, lines)
return result
@classmethod
def lazycache(cls, frame):
if hasattr(linecache, 'lazycache'):
linecache.lazycache(frame.f_code.co_filename, frame.f_globals)
@classmethod
def executing(cls, frame_or_tb):
"""
Returns an `Executing` object representing the operation
currently executing in the given frame or traceback object.
"""
if isinstance(frame_or_tb, types.TracebackType):
# https://docs.python.org/3/reference/datamodel.html#traceback-objects
# "tb_lineno gives the line number where the exception occurred;
# tb_lasti indicates the precise instruction.
# The line number and last instruction in the traceback may differ
# from the line number of its frame object
# if the exception occurred in a try statement with no matching except clause
# or with a finally clause."
tb = frame_or_tb
frame = tb.tb_frame
lineno = tb.tb_lineno
lasti = tb.tb_lasti
else:
frame = frame_or_tb
lineno = frame.f_lineno
lasti = frame.f_lasti
code = frame.f_code
key = (code, id(code), lasti)
executing_cache = cls._class_local('__executing_cache', {})
args = executing_cache.get(key)
if not args:
node = stmts = decorator = None
source = cls.for_frame(frame)
tree = source.tree
if tree:
try:
stmts = source.statements_at_line(lineno)
if stmts:
if is_ipython_cell_code(code):
decorator, node = find_node_ipython(frame, lasti, stmts)
else:
node_finder = NodeFinder(frame, stmts, tree, lasti)
node = node_finder.result
decorator = node_finder.decorator
except Exception:
if TESTING:
raise
if node:
new_stmts = {statement_containing_node(node)}
assert_(new_stmts <= stmts)
stmts = new_stmts
executing_cache[key] = args = source, node, stmts, decorator
return Executing(frame, *args)
@classmethod
def _class_local(cls, name, default):
"""
Returns an attribute directly associated with this class
(as opposed to subclasses), setting default if necessary
"""
# classes have a mappingproxy preventing us from using setdefault
result = cls.__dict__.get(name, default)
setattr(cls, name, result)
return result
@cache
def statements_at_line(self, lineno):
"""
Returns the statement nodes overlapping the given line.
Returns at most one statement unless semicolons are present.
If the `text` attribute is not valid python, meaning
`tree` is None, returns an empty set.
Otherwise, `Source.for_frame(frame).statements_at_line(frame.f_lineno)`
should return at least one statement.
"""
return {
statement_containing_node(node)
for node in
self._nodes_by_line[lineno]
}
@cache
def asttokens(self):
"""
Returns an ASTTokens object for getting the source of specific AST nodes.
See http://asttokens.readthedocs.io/en/latest/api-index.html
"""
from asttokens import ASTTokens # must be installed separately
return ASTTokens(
self.text,
tree=self.tree,
filename=self.filename,
)
@staticmethod
def decode_source(source):
if isinstance(source, bytes):
encoding = Source.detect_encoding(source)
source = source.decode(encoding)
return source
@staticmethod
def detect_encoding(source):
return detect_encoding(io.BytesIO(source).readline)[0]
def code_qualname(self, code):
"""
Imitates the __qualname__ attribute of functions for code objects.
Given:
- A function `func`
- A frame `frame` for an execution of `func`, meaning:
`frame.f_code is func.__code__`
`Source.for_frame(frame).code_qualname(frame.f_code)`
will be equal to `func.__qualname__`*. Works for Python 2 as well,
where of course no `__qualname__` attribute exists.
Falls back to `code.co_name` if there is no appropriate qualname.
Based on https://github.com/wbolster/qualname
(* unless `func` is a lambda
nested inside another lambda on the same line, in which case
the outer lambda's qualname will be returned for the codes
of both lambdas)
"""
assert_(code.co_filename == self.filename)
return self._qualnames.get((code.co_name, code.co_firstlineno), code.co_name)
class Executing(object):
"""
Information about the operation a frame is currently executing.
Generally you will just want `node`, which is the AST node being executed,
or None if it's unknown.
If a decorator is currently being called, then:
- `node` is a function or class definition
- `decorator` is the expression in `node.decorator_list` being called
- `statements == {node}`
"""
def __init__(self, frame, source, node, stmts, decorator):
self.frame = frame
self.source = source
self.node = node
self.statements = stmts
self.decorator = decorator
def code_qualname(self):
return self.source.code_qualname(self.frame.f_code)
def text(self):
return self.source.asttokens().get_text(self.node)
def text_range(self):
return self.source.asttokens().get_text_range(self.node)
class QualnameVisitor(ast.NodeVisitor):
def __init__(self):
super(QualnameVisitor, self).__init__()
self.stack = []
self.qualnames = {}
def add_qualname(self, node, name=None):
name = name or node.name
self.stack.append(name)
if getattr(node, 'decorator_list', ()):
lineno = node.decorator_list[0].lineno
else:
lineno = node.lineno
self.qualnames.setdefault((name, lineno), ".".join(self.stack))
def visit_FunctionDef(self, node, name=None):
self.add_qualname(node, name)
self.stack.append('<locals>')
if isinstance(node, ast.Lambda):
children = [node.body]
else:
children = node.body
for child in children:
self.visit(child)
self.stack.pop()
self.stack.pop()
# Find lambdas in the function definition outside the body,
# e.g. decorators or default arguments
# Based on iter_child_nodes
for field, child in ast.iter_fields(node):
if field == 'body':
continue
if isinstance(child, ast.AST):
self.visit(child)
elif isinstance(child, list):
for grandchild in child:
if isinstance(grandchild, ast.AST):
self.visit(grandchild)
visit_AsyncFunctionDef = visit_FunctionDef
def visit_Lambda(self, node):
# noinspection PyTypeChecker
self.visit_FunctionDef(node, '<lambda>')
def visit_ClassDef(self, node):
self.add_qualname(node)
self.generic_visit(node)
self.stack.pop()
future_flags = sum(
getattr(__future__, fname).compiler_flag
for fname in __future__.all_feature_names
)
def compile_similar_to(source, matching_code):
return compile(
source,
matching_code.co_filename,
'exec',
flags=future_flags & matching_code.co_flags,
dont_inherit=True,
)
sentinel = 'io8urthglkjdghvljusketgIYRFYUVGHFRTBGVHKGF78678957647698'
class NodeFinder(object):
def __init__(self, frame, stmts, tree, lasti):
assert_(stmts)
self.frame = frame
self.tree = tree
self.code = code = frame.f_code
self.is_pytest = any(
'pytest' in name.lower()
for group in [code.co_names, code.co_varnames]
for name in group
)
if self.is_pytest:
self.ignore_linenos = frozenset(assert_linenos(tree))
else:
self.ignore_linenos = frozenset()
self.decorator = None
self.instruction = instruction = self.get_actual_current_instruction(lasti)
op_name = instruction.opname
extra_filter = lambda e: True
ctx = type(None)
if op_name.startswith('CALL_'):
typ = ast.Call
elif op_name.startswith(('BINARY_SUBSCR', 'SLICE+')):
typ = ast.Subscript
ctx = ast.Load
elif op_name.startswith('BINARY_'):
typ = ast.BinOp
op_type = dict(
BINARY_POWER=ast.Pow,
BINARY_MULTIPLY=ast.Mult,
BINARY_MATRIX_MULTIPLY=getattr(ast, "MatMult", ()),
BINARY_FLOOR_DIVIDE=ast.FloorDiv,
BINARY_TRUE_DIVIDE=ast.Div,
BINARY_MODULO=ast.Mod,
BINARY_ADD=ast.Add,
BINARY_SUBTRACT=ast.Sub,
BINARY_LSHIFT=ast.LShift,
BINARY_RSHIFT=ast.RShift,
BINARY_AND=ast.BitAnd,
BINARY_XOR=ast.BitXor,
BINARY_OR=ast.BitOr,
)[op_name]
extra_filter = lambda e: isinstance(e.op, op_type)
elif op_name.startswith('UNARY_'):
typ = ast.UnaryOp
op_type = dict(
UNARY_POSITIVE=ast.UAdd,
UNARY_NEGATIVE=ast.USub,
UNARY_NOT=ast.Not,
UNARY_INVERT=ast.Invert,
)[op_name]
extra_filter = lambda e: isinstance(e.op, op_type)
elif op_name in ('LOAD_ATTR', 'LOAD_METHOD', 'LOOKUP_METHOD'):
typ = ast.Attribute
ctx = ast.Load
extra_filter = lambda e: attr_names_match(e.attr, instruction.argval)
elif op_name in ('LOAD_NAME', 'LOAD_GLOBAL', 'LOAD_FAST', 'LOAD_DEREF', 'LOAD_CLASSDEREF'):
typ = ast.Name
ctx = ast.Load
if PY3 or instruction.argval:
extra_filter = lambda e: e.id == instruction.argval
elif op_name in ('COMPARE_OP', 'IS_OP', 'CONTAINS_OP'):
typ = ast.Compare
extra_filter = lambda e: len(e.ops) == 1
elif op_name.startswith(('STORE_SLICE', 'STORE_SUBSCR')):
ctx = ast.Store
typ = ast.Subscript
elif op_name.startswith('STORE_ATTR'):
ctx = ast.Store
typ = ast.Attribute
extra_filter = lambda e: attr_names_match(e.attr, instruction.argval)
else:
raise RuntimeError(op_name)
with lock:
exprs = {
node
for stmt in stmts
for node in ast.walk(stmt)
if isinstance(node, typ)
if isinstance(getattr(node, "ctx", None), ctx)
if extra_filter(node)
if statement_containing_node(node) == stmt
}
if ctx == ast.Store:
# No special bytecode tricks here.
# We can handle multiple assigned attributes with different names,
# but only one assigned subscript.
self.result = only(exprs)
return
matching = list(self.matching_nodes(exprs))
if not matching and typ == ast.Call:
self.find_decorator(stmts)
else:
self.result = only(matching)
def find_decorator(self, stmts):
stmt = only(stmts)
assert_(isinstance(stmt, (ast.ClassDef, function_node_types)))
decorators = stmt.decorator_list
assert_(decorators)
line_instructions = [
inst
for inst in self.clean_instructions(self.code)
if inst.lineno == self.frame.f_lineno
]
last_decorator_instruction_index = [
i
for i, inst in enumerate(line_instructions)
if inst.opname == "CALL_FUNCTION"
][-1]
assert_(
line_instructions[last_decorator_instruction_index + 1].opname.startswith(
"STORE_"
)
)
decorator_instructions = line_instructions[
last_decorator_instruction_index
- len(decorators)
+ 1 : last_decorator_instruction_index
+ 1
]
assert_({inst.opname for inst in decorator_instructions} == {"CALL_FUNCTION"})
decorator_index = decorator_instructions.index(self.instruction)
decorator = decorators[::-1][decorator_index]
self.decorator = decorator
self.result = stmt
def clean_instructions(self, code):
return [
inst
for inst in get_instructions(code)
if inst.opname not in ("EXTENDED_ARG", "NOP")
if inst.lineno not in self.ignore_linenos
]
def get_original_clean_instructions(self):
result = self.clean_instructions(self.code)
# pypy sometimes (when is not clear)
# inserts JUMP_IF_NOT_DEBUG instructions in bytecode
# If they're not present in our compiled instructions,
# ignore them in the original bytecode
if not any(
inst.opname == "JUMP_IF_NOT_DEBUG"
for inst in self.compile_instructions()
):
result = [
inst for inst in result
if inst.opname != "JUMP_IF_NOT_DEBUG"
]
return result
def matching_nodes(self, exprs):
original_instructions = self.get_original_clean_instructions()
original_index = only(
i
for i, inst in enumerate(original_instructions)
if inst == self.instruction
)
for expr_index, expr in enumerate(exprs):
setter = get_setter(expr)
# noinspection PyArgumentList
replacement = ast.BinOp(
left=expr,
op=ast.Pow(),
right=ast.Str(s=sentinel),
)
ast.fix_missing_locations(replacement)
setter(replacement)
try:
instructions = self.compile_instructions()
finally:
setter(expr)
if sys.version_info >= (3, 10):
try:
handle_jumps(instructions, original_instructions)
except Exception:
# Give other candidates a chance
if TESTING or expr_index < len(exprs) - 1:
continue
raise
indices = [
i
for i, instruction in enumerate(instructions)
if instruction.argval == sentinel
]
# There can be several indices when the bytecode is duplicated,
# as happens in a finally block in 3.9+
# First we remove the opcodes caused by our modifications
for index_num, sentinel_index in enumerate(indices):
# Adjustment for removing sentinel instructions below
# in past iterations
sentinel_index -= index_num * 2
assert_(instructions.pop(sentinel_index).opname == 'LOAD_CONST')
assert_(instructions.pop(sentinel_index).opname == 'BINARY_POWER')
# Then we see if any of the instruction indices match
for index_num, sentinel_index in enumerate(indices):
sentinel_index -= index_num * 2
new_index = sentinel_index - 1
if new_index != original_index:
continue
original_inst = original_instructions[original_index]
new_inst = instructions[new_index]
# In Python 3.9+, changing 'not x in y' to 'not sentinel_transformation(x in y)'
# changes a CONTAINS_OP(invert=1) to CONTAINS_OP(invert=0),<sentinel stuff>,UNARY_NOT
if (
original_inst.opname == new_inst.opname in ('CONTAINS_OP', 'IS_OP')
and original_inst.arg != new_inst.arg
and (
original_instructions[original_index + 1].opname
!= instructions[new_index + 1].opname == 'UNARY_NOT'
)):
# Remove the difference for the upcoming assert
instructions.pop(new_index + 1)
# Check that the modified instructions don't have anything unexpected
# 3.10 is a bit too weird to assert this in all cases but things still work
if sys.version_info < (3, 10):
for inst1, inst2 in zip_longest(
original_instructions, instructions
):
assert_(inst1 and inst2 and opnames_match(inst1, inst2))
yield expr
def compile_instructions(self):
module_code = compile_similar_to(self.tree, self.code)
code = only(self.find_codes(module_code))
return self.clean_instructions(code)
def find_codes(self, root_code):
checks = [
attrgetter('co_firstlineno'),
attrgetter('co_freevars'),
attrgetter('co_cellvars'),
lambda c: is_ipython_cell_code_name(c.co_name) or c.co_name,
]
if not self.is_pytest:
checks += [
attrgetter('co_names'),
attrgetter('co_varnames'),
]
def matches(c):
return all(
f(c) == f(self.code)
for f in checks
)
code_options = []
if matches(root_code):
code_options.append(root_code)
def finder(code):
for const in code.co_consts:
if not inspect.iscode(const):
continue
if matches(const):
code_options.append(const)
finder(const)
finder(root_code)
return code_options
def get_actual_current_instruction(self, lasti):
"""
Get the instruction corresponding to the current
frame offset, skipping EXTENDED_ARG instructions
"""
# Don't use get_original_clean_instructions
# because we need the actual instructions including
# EXTENDED_ARG
instructions = list(get_instructions(self.code))
index = only(
i
for i, inst in enumerate(instructions)
if inst.offset == lasti
)
while True:
instruction = instructions[index]
if instruction.opname != "EXTENDED_ARG":
return instruction
index += 1
def non_sentinel_instructions(instructions, start):
"""
Yields (index, instruction) pairs excluding the basic
instructions introduced by the sentinel transformation
"""
skip_power = False
for i, inst in islice(enumerate(instructions), start, None):
if inst.argval == sentinel:
assert_(inst.opname == "LOAD_CONST")
skip_power = True
continue
elif skip_power:
assert_(inst.opname == "BINARY_POWER")
skip_power = False
continue
yield i, inst
def walk_both_instructions(original_instructions, original_start, instructions, start):
"""
Yields matching indices and instructions from the new and original instructions,
leaving out changes made by the sentinel transformation.
"""
original_iter = islice(enumerate(original_instructions), original_start, None)
new_iter = non_sentinel_instructions(instructions, start)
inverted_comparison = False
while True:
try:
original_i, original_inst = next(original_iter)
new_i, new_inst = next(new_iter)
except StopIteration:
return
if (
inverted_comparison
and original_inst.opname != new_inst.opname == "UNARY_NOT"
):
new_i, new_inst = next(new_iter)
inverted_comparison = (
original_inst.opname == new_inst.opname in ("CONTAINS_OP", "IS_OP")
and original_inst.arg != new_inst.arg
)
yield original_i, original_inst, new_i, new_inst
def handle_jumps(instructions, original_instructions):
"""
Transforms instructions in place until it looks more like original_instructions.
This is only needed in 3.10+ where optimisations lead to more drastic changes
after the sentinel transformation.
Replaces JUMP instructions that aren't also present in original_instructions
with the sections that they jump to until a raise or return.
In some other cases duplication found in `original_instructions`
is replicated in `instructions`.
"""
while True:
for original_i, original_inst, new_i, new_inst in walk_both_instructions(
original_instructions, 0, instructions, 0
):
if opnames_match(original_inst, new_inst):
continue
if "JUMP" in new_inst.opname and "JUMP" not in original_inst.opname:
# Find where the new instruction is jumping to, ignoring
# instructions which have been copied in previous iterations
start = only(
i
for i, inst in enumerate(instructions)
if inst.offset == new_inst.argval
and not getattr(inst, "_copied", False)
)
# Replace the jump instruction with the jumped to section of instructions
# That section may also be deleted if it's not similarly duplicated
# in original_instructions
instructions[new_i : new_i + 1] = handle_jump(
original_instructions, original_i, instructions, start
)
else:
# Extract a section of original_instructions from original_i to return/raise
orig_section = []
for section_inst in original_instructions[original_i:]:
orig_section.append(section_inst)
if section_inst.opname in ("RETURN_VALUE", "RAISE_VARARGS"):
break
else:
# No return/raise - this is just a mismatch we can't handle
raise AssertionError
instructions[new_i:new_i] = only(find_new_matching(orig_section, instructions))
# instructions has been modified, the for loop can't sensibly continue
# Restart it from the beginning, checking for other issues
break
else: # No mismatched jumps found, we're done
return
def find_new_matching(orig_section, instructions):
"""
Yields sections of `instructions` which match `orig_section`.
The yielded sections include sentinel instructions, but these
are ignored when checking for matches.
"""
for start in range(len(instructions) - len(orig_section)):
indices, dup_section = zip(
*islice(
non_sentinel_instructions(instructions, start),
len(orig_section),
)
)
if len(dup_section) < len(orig_section):
return
if sections_match(orig_section, dup_section):
yield instructions[start:indices[-1] + 1]
def handle_jump(original_instructions, original_start, instructions, start):
"""
Returns the section of instructions starting at `start` and ending
with a RETURN_VALUE or RAISE_VARARGS instruction.
There should be a matching section in original_instructions starting at original_start.
If that section doesn't appear elsewhere in original_instructions,
then also delete the returned section of instructions.
"""
for original_j, original_inst, new_j, new_inst in walk_both_instructions(
original_instructions, original_start, instructions, start
):
assert_(opnames_match(original_inst, new_inst))
if original_inst.opname in ("RETURN_VALUE", "RAISE_VARARGS"):
inlined = deepcopy(instructions[start : new_j + 1])
for inl in inlined:
inl._copied = True
orig_section = original_instructions[original_start : original_j + 1]
if not check_duplicates(
original_start, orig_section, original_instructions
):
instructions[start : new_j + 1] = []
return inlined
def check_duplicates(original_i, orig_section, original_instructions):
"""
Returns True if a section of original_instructions starting somewhere other
than original_i and matching orig_section is found, i.e. orig_section is duplicated.
"""
for dup_start in range(len(original_instructions)):
if dup_start == original_i:
continue
dup_section = original_instructions[dup_start : dup_start + len(orig_section)]
if len(dup_section) < len(orig_section):
return False
if sections_match(orig_section, dup_section):
return True
def sections_match(orig_section, dup_section):
"""
Returns True if the given lists of instructions have matching linenos and opnames.
"""
return all(
(
orig_inst.lineno == dup_inst.lineno
# POP_BLOCKs have been found to have differing linenos in innocent cases
or "POP_BLOCK" == orig_inst.opname == dup_inst.opname
)
and opnames_match(orig_inst, dup_inst)
for orig_inst, dup_inst in zip(orig_section, dup_section)