Home
last modified time | relevance | path

Searched refs:JUMP_IF_TRUE_OR_POP (Results 1 – 25 of 87) sorted by relevance

1234

/dports/devel/py-xdis/xdis-5.0.13/doc/
H A Dopcode-history.md34 `JUMP_IF_FALSE_OR_POP` and `JUMP_IF_TRUE_OR_POP`. Later in 3.0 `JUMP_IF_FALSE` and
42 * JUMP_IF_TRUE_OR_POP
93 * JUMP_IF_TRUE_OR_POP
104 * JUMP_IF_TRUE_OR_POP
/dports/databases/py-sqlite3/Python-3.8.12/Lib/test/
H A Dtest__opcode.py36 JUMP_IF_TRUE_OR_POP = dis.opmap['JUMP_IF_TRUE_OR_POP']
37 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0), 0)
38 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=True), 0)
39 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=False), -1)
/dports/databases/py-gdbm/Python-3.8.12/Lib/test/
H A Dtest__opcode.py36 JUMP_IF_TRUE_OR_POP = dis.opmap['JUMP_IF_TRUE_OR_POP']
37 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0), 0)
38 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=True), 0)
39 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=False), -1)
/dports/lang/python310/Python-3.10.1/Lib/test/
H A Dtest__opcode.py36 JUMP_IF_TRUE_OR_POP = dis.opmap['JUMP_IF_TRUE_OR_POP']
37 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0), 0)
38 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=True), 0)
39 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=False), -1)
/dports/lang/python-tools/Python-3.8.12/Lib/test/
H A Dtest__opcode.py36 JUMP_IF_TRUE_OR_POP = dis.opmap['JUMP_IF_TRUE_OR_POP']
37 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0), 0)
38 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=True), 0)
39 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=False), -1)
/dports/lang/python39/Python-3.9.9/Lib/test/
H A Dtest__opcode.py36 JUMP_IF_TRUE_OR_POP = dis.opmap['JUMP_IF_TRUE_OR_POP']
37 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0), 0)
38 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=True), 0)
39 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=False), -1)
/dports/lang/python38/Python-3.8.12/Lib/test/
H A Dtest__opcode.py36 JUMP_IF_TRUE_OR_POP = dis.opmap['JUMP_IF_TRUE_OR_POP']
37 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0), 0)
38 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=True), 0)
39 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=False), -1)
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/test/
H A Dtest__opcode.py36 JUMP_IF_TRUE_OR_POP = dis.opmap['JUMP_IF_TRUE_OR_POP']
37 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0), 0)
38 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=True), 0)
39 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=False), -1)
/dports/lang/python311/Python-3.11.0a3/Lib/test/
H A Dtest__opcode.py37 JUMP_IF_TRUE_OR_POP = dis.opmap['JUMP_IF_TRUE_OR_POP']
38 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0), 0)
39 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=True), 0)
40 self.assertEqual(stack_effect(JUMP_IF_TRUE_OR_POP, 0, jump=False), -1)
/dports/databases/py-sqlite3/Python-3.8.12/Python/
H A Dpeephole.c15 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
18 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
19 #define JUMPS_ON_TRUE(op) (op==POP_JUMP_IF_TRUE || op==JUMP_IF_TRUE_OR_POP)
194 case JUMP_IF_TRUE_OR_POP: in markblocks()
368 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
390 j = opcode == JUMP_IF_TRUE_OR_POP ? in PyCode_Optimize()
500 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
/dports/databases/py-gdbm/Python-3.8.12/Python/
H A Dpeephole.c15 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
18 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
19 #define JUMPS_ON_TRUE(op) (op==POP_JUMP_IF_TRUE || op==JUMP_IF_TRUE_OR_POP)
194 case JUMP_IF_TRUE_OR_POP: in markblocks()
368 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
390 j = opcode == JUMP_IF_TRUE_OR_POP ? in PyCode_Optimize()
500 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
/dports/lang/python-tools/Python-3.8.12/Python/
H A Dpeephole.c15 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
18 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
19 #define JUMPS_ON_TRUE(op) (op==POP_JUMP_IF_TRUE || op==JUMP_IF_TRUE_OR_POP)
194 case JUMP_IF_TRUE_OR_POP: in markblocks()
368 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
390 j = opcode == JUMP_IF_TRUE_OR_POP ? in PyCode_Optimize()
500 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
/dports/lang/python37/Python-3.7.12/Python/
H A Dpeephole.c15 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
18 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
19 #define JUMPS_ON_TRUE(op) (op==POP_JUMP_IF_TRUE || op==JUMP_IF_TRUE_OR_POP)
194 case JUMP_IF_TRUE_OR_POP: in markblocks()
359 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
381 j = opcode == JUMP_IF_TRUE_OR_POP ? in PyCode_Optimize()
485 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
/dports/lang/python38/Python-3.8.12/Python/
H A Dpeephole.c15 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
18 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
19 #define JUMPS_ON_TRUE(op) (op==POP_JUMP_IF_TRUE || op==JUMP_IF_TRUE_OR_POP)
194 case JUMP_IF_TRUE_OR_POP: in markblocks()
368 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
390 j = opcode == JUMP_IF_TRUE_OR_POP ? in PyCode_Optimize()
500 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
/dports/lang/python39/Python-3.9.9/Python/
H A Dpeephole.c15 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
18 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP || op==JUMP_IF_NOT_EXC_MATCH)
19 #define JUMPS_ON_TRUE(op) (op==POP_JUMP_IF_TRUE || op==JUMP_IF_TRUE_OR_POP)
194 case JUMP_IF_TRUE_OR_POP: in markblocks()
368 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
390 j = opcode == JUMP_IF_TRUE_OR_POP ? in PyCode_Optimize()
496 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Python/
H A Dpeephole.c15 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
18 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
19 #define JUMPS_ON_TRUE(op) (op==POP_JUMP_IF_TRUE || op==JUMP_IF_TRUE_OR_POP)
194 case JUMP_IF_TRUE_OR_POP: in markblocks()
368 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
390 j = opcode == JUMP_IF_TRUE_OR_POP ? in PyCode_Optimize()
500 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
/dports/lang/python-legacy/Python-2.7.18/Python/
H A Dpeephole.c17 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
20 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
21 #define JUMPS_ON_TRUE(op) (op==POP_JUMP_IF_TRUE || op==JUMP_IF_TRUE_OR_POP)
261 case JUMP_IF_TRUE_OR_POP: in markblocks()
520 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
628 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
/dports/lang/python27/Python-2.7.18/Python/
H A Dpeephole.c17 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
20 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
21 #define JUMPS_ON_TRUE(op) (op==POP_JUMP_IF_TRUE || op==JUMP_IF_TRUE_OR_POP)
261 case JUMP_IF_TRUE_OR_POP: in markblocks()
520 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
628 case JUMP_IF_TRUE_OR_POP: in PyCode_Optimize()
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dpeephole.c17 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
20 || op==JUMP_IF_FALSE_OR_POP || op==JUMP_IF_TRUE_OR_POP)
21 #define JUMPS_ON_TRUE(op) (op==POP_JUMP_IF_TRUE || op==JUMP_IF_TRUE_OR_POP)
272 case JUMP_IF_TRUE_OR_POP:
529 case JUMP_IF_TRUE_OR_POP:
641 case JUMP_IF_TRUE_OR_POP:
/dports/lang/python39/Python-3.9.9/Include/
H A Dopcode.h92 #define JUMP_IF_TRUE_OR_POP 112 macro
/dports/devel/py-xdis/xdis-5.0.13/maynard-tool/
H A Dse33.c147 case JUMP_IF_TRUE_OR_POP: /* -1 if jump not taken */ in opcode_stack_effect()
H A Dse32.c146 case JUMP_IF_TRUE_OR_POP: /* -1 if jump not taken */ in opcode_stack_effect()
H A Dopcode31.h100 #define JUMP_IF_TRUE_OR_POP 112 /* "" */ macro
H A Dopcode32.h100 #define JUMP_IF_TRUE_OR_POP 112 /* "" */ macro
H A Dopcode33.h100 #define JUMP_IF_TRUE_OR_POP 112 /* "" */ macro

1234