Searched refs:ADDOP_JABS (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | compile.c | 1097 #define ADDOP_JABS(C, OP, O) { \ macro 1483 ADDOP_JABS(c, POP_JUMP_IF_FALSE, next); in compiler_ifexp() 1603 ADDOP_JABS(c, POP_JUMP_IF_FALSE, next); in compiler_if() 1634 ADDOP_JABS(c, JUMP_ABSOLUTE, start); in compiler_for() 1677 ADDOP_JABS(c, POP_JUMP_IF_FALSE, anchor); in compiler_while() 1680 ADDOP_JABS(c, JUMP_ABSOLUTE, loop); in compiler_while() 1710 ADDOP_JABS(c, JUMP_ABSOLUTE, c->u->u_fblock[i].fb_block); in compiler_continue() 1722 ADDOP_JABS(c, CONTINUE_LOOP, c->u->u_fblock[i].fb_block); in compiler_continue() 1859 ADDOP_JABS(c, POP_JUMP_IF_FALSE, except); in compiler_try_except() 2063 ADDOP_JABS(c, POP_JUMP_IF_TRUE, end); in compiler_assert() [all …]
|
/external/python/cpython3/Python/ |
D | compile.c | 1490 #define ADDOP_JABS(C, OP, O) { \ macro 2586 ADDOP_JABS(c, POP_JUMP_IF_FALSE, cleanup); in compiler_jump_if() 2591 ADDOP_JABS(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next); in compiler_jump_if() 2614 ADDOP_JABS(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next); in compiler_jump_if() 2768 ADDOP_JABS(c, JUMP_ABSOLUTE, start); in compiler_for() 2813 ADDOP_JABS(c, JUMP_ABSOLUTE, start); in compiler_async_for() 2877 ADDOP_JABS(c, JUMP_ABSOLUTE, loop); in compiler_while() 2936 ADDOP_JABS(c, JUMP_ABSOLUTE, loop->fb_exit); in compiler_break() 2950 ADDOP_JABS(c, JUMP_ABSOLUTE, loop->fb_block); in compiler_continue() 3089 ADDOP_JABS(c, JUMP_IF_NOT_EXC_MATCH, except); in compiler_try_except() [all …]
|