2003-02-27 17:27:52 -04:00
|
|
|
|
|
|
|
"""
|
|
|
|
opcode module - potentially shared between dis and other modules which
|
|
|
|
operate on bytecodes (e.g. peephole optimizers).
|
|
|
|
"""
|
|
|
|
|
2023-07-17 06:28:33 -03:00
|
|
|
|
2023-08-23 14:39:00 -03:00
|
|
|
__all__ = ["cmp_op", "stack_effect", "hascompare", "opname", "opmap",
|
|
|
|
"HAVE_ARGUMENT", "EXTENDED_ARG", "hasarg", "hasconst", "hasname",
|
|
|
|
"hasjump", "hasjrel", "hasjabs", "hasfree", "haslocal", "hasexc"]
|
2023-07-18 15:42:44 -03:00
|
|
|
|
|
|
|
import _opcode
|
2023-07-17 06:28:33 -03:00
|
|
|
from _opcode import stack_effect
|
|
|
|
|
2023-08-23 14:39:00 -03:00
|
|
|
from _opcode_metadata import (_specializations, _specialized_opmap, opmap,
|
|
|
|
HAVE_ARGUMENT, MIN_INSTRUMENTED_OPCODE)
|
|
|
|
EXTENDED_ARG = opmap['EXTENDED_ARG']
|
2023-06-19 19:47:04 -03:00
|
|
|
|
2023-08-23 14:39:00 -03:00
|
|
|
opname = ['<%r>' % (op,) for op in range(max(opmap.values()) + 1)]
|
|
|
|
for op, i in opmap.items():
|
|
|
|
opname[i] = op
|
2023-06-29 17:49:54 -03:00
|
|
|
|
2023-08-16 19:25:18 -03:00
|
|
|
cmp_op = ('<', '<=', '==', '!=', '>', '>=')
|
2022-02-28 08:56:29 -04:00
|
|
|
|
2023-08-23 14:39:00 -03:00
|
|
|
# These lists are documented as part of the dis module's API
|
|
|
|
hasarg = [op for op in opmap.values() if _opcode.has_arg(op)]
|
|
|
|
hasconst = [op for op in opmap.values() if _opcode.has_const(op)]
|
|
|
|
hasname = [op for op in opmap.values() if _opcode.has_name(op)]
|
|
|
|
hasjump = [op for op in opmap.values() if _opcode.has_jump(op)]
|
|
|
|
hasjrel = hasjump # for backward compatibility
|
|
|
|
hasjabs = []
|
|
|
|
hasfree = [op for op in opmap.values() if _opcode.has_free(op)]
|
|
|
|
haslocal = [op for op in opmap.values() if _opcode.has_local(op)]
|
|
|
|
hasexc = [op for op in opmap.values() if _opcode.has_exc(op)]
|
|
|
|
|
|
|
|
|
|
|
|
_intrinsic_1_descs = _opcode.get_intrinsic1_descs()
|
|
|
|
_intrinsic_2_descs = _opcode.get_intrinsic2_descs()
|
2024-05-21 21:46:39 -03:00
|
|
|
_common_constants = [AssertionError, NotImplementedError]
|
2023-08-23 14:39:00 -03:00
|
|
|
_nb_ops = _opcode.get_nb_ops()
|
|
|
|
|
|
|
|
hascompare = [opmap["COMPARE_OP"]]
|
2021-06-10 04:46:01 -03:00
|
|
|
|
2022-05-06 11:18:09 -03:00
|
|
|
_cache_format = {
|
|
|
|
"LOAD_GLOBAL": {
|
|
|
|
"counter": 1,
|
|
|
|
"index": 1,
|
2023-03-10 21:01:16 -04:00
|
|
|
"module_keys_version": 1,
|
2022-05-06 11:18:09 -03:00
|
|
|
"builtin_keys_version": 1,
|
|
|
|
},
|
|
|
|
"BINARY_OP": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
|
|
|
"UNPACK_SEQUENCE": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
|
|
|
"COMPARE_OP": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
2024-03-06 15:30:11 -04:00
|
|
|
"CONTAINS_OP": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
2022-05-06 11:18:09 -03:00
|
|
|
"BINARY_SUBSCR": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
2022-06-21 07:19:26 -03:00
|
|
|
"FOR_ITER": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
2023-04-25 14:45:51 -03:00
|
|
|
"LOAD_SUPER_ATTR": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
2022-05-06 11:18:09 -03:00
|
|
|
"LOAD_ATTR": {
|
|
|
|
"counter": 1,
|
|
|
|
"version": 2,
|
2022-06-14 07:36:22 -03:00
|
|
|
"keys_version": 2,
|
|
|
|
"descr": 4,
|
2022-05-06 11:18:09 -03:00
|
|
|
},
|
|
|
|
"STORE_ATTR": {
|
|
|
|
"counter": 1,
|
|
|
|
"version": 2,
|
|
|
|
"index": 1,
|
|
|
|
},
|
|
|
|
"CALL": {
|
|
|
|
"counter": 1,
|
|
|
|
"func_version": 2,
|
|
|
|
},
|
|
|
|
"STORE_SUBSCR": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
2023-02-13 07:24:55 -04:00
|
|
|
"SEND": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
2023-06-02 07:46:18 -03:00
|
|
|
"JUMP_BACKWARD": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
2023-06-29 17:49:54 -03:00
|
|
|
"TO_BOOL": {
|
|
|
|
"counter": 1,
|
|
|
|
"version": 2,
|
|
|
|
},
|
2023-09-11 15:20:24 -03:00
|
|
|
"POP_JUMP_IF_TRUE": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
|
|
|
"POP_JUMP_IF_FALSE": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
|
|
|
"POP_JUMP_IF_NONE": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
|
|
|
"POP_JUMP_IF_NOT_NONE": {
|
|
|
|
"counter": 1,
|
|
|
|
},
|
2022-05-06 11:18:09 -03:00
|
|
|
}
|
|
|
|
|
2023-07-27 10:15:25 -03:00
|
|
|
_inline_cache_entries = {
|
|
|
|
name : sum(value.values()) for (name, value) in _cache_format.items()
|
|
|
|
}
|