Home
last modified time | relevance | path

Searched refs:get_instructions (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_peepholer.py89 load_consts = [instr for instr in dis.get_instructions(code)
169 for instr in dis.get_instructions(code):
218 for instr in dis.get_instructions(code):
225 for instr in dis.get_instructions(code):
242 returns = [instr for instr in dis.get_instructions(f)
252 returns = [instr for instr in dis.get_instructions(f)
269 returns = [instr for instr in dis.get_instructions(f)
280 returns = [instr for instr in dis.get_instructions(f)
283 returns = [instr for instr in dis.get_instructions(f)
309 for instr in dis.get_instructions(code):
Dbytecode_helper.py19 for instr in dis.get_instructions(x):
33 for instr in dis.get_instructions(x):
Dtest_dis.py1026 actual = dis.get_instructions(simple)
1030 actual = dis.get_instructions(simple, first_line=None)
1034 actual = dis.get_instructions(outer, first_line=expected_outer_line)
1040 actual = dis.get_instructions(f, first_line=expected_f_line)
1046 actual = dis.get_instructions(inner, first_line=expected_inner_line)
1050 actual = dis.get_instructions(jumpy, first_line=expected_jumpy_line)
1069 via_generator = list(dis.get_instructions(obj))
Dtest_dtrace.py137 return dis.get_instructions(c)
Dtest_compile.py641 list(dis.get_instructions(unused_code_at_end))[-1].opname)
Dtest_ast.py1077 for instr in dis.get_instructions(co):
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/python/llvm/tests/
Dtest_disassembler.py28 instructions = list(disassembler.get_instructions(sequence))
/external/llvm/bindings/python/llvm/tests/
Dtest_disassembler.py28 instructions = list(disassembler.get_instructions(sequence))
/external/llvm/bindings/python/llvm/
Ddisassembler.py109 def get_instructions(self, source, pc=0): member in Disassembler
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/python/llvm/
Ddisassembler.py109 def get_instructions(self, source, pc=0): member in Disassembler
/external/python/cpython3/Lib/
Ddis.py251 def get_instructions(x, *, first_line=None): function
/external/python/cpython3/Doc/library/
Ddis.rst61 notably :func:`get_instructions`, as iterating over a :class:`Bytecode`
217 .. function:: get_instructions(x, *, first_line=None)
262 The :func:`get_instructions` function and :class:`Bytecode` class provide
/external/python/cpython3/Doc/whatsnew/
D3.4.rst723 A new method, :func:`~dis.get_instructions`, provides an iterator that emits
730 >>> for instr in dis.get_instructions(lambda x: x + 1):
/external/python/cpython3/Misc/
DHISTORY3443 - Issue #19378: the "line_offset" parameter in the new "dis.get_instructions"
4999 - Issue #11816: multiple improvements to the dis module: get_instructions