Home
last modified time | relevance | path

Searched refs:compiler_push_fblock (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dcompile.c169 static int compiler_push_fblock(struct compiler *, enum fblocktype,
1626 if (!compiler_push_fblock(c, LOOP, start)) in compiler_for()
1673 if (!compiler_push_fblock(c, LOOP, loop)) in compiler_while()
1775 if (!compiler_push_fblock(c, FINALLY_TRY, body)) in compiler_try_finally()
1783 if (!compiler_push_fblock(c, FINALLY_END, end)) in compiler_try_finally()
1837 if (!compiler_push_fblock(c, EXCEPT, body)) in compiler_try_except()
2922 if (!compiler_push_fblock(c, FINALLY_TRY, block)) { in compiler_with()
2943 if (!compiler_push_fblock(c, FINALLY_END, finally)) in compiler_with()
3147 compiler_push_fblock(struct compiler *c, enum fblocktype t, basicblock *b) in compiler_push_fblock() function
/external/python/cpython3/Python/
Dcompile.c1733 compiler_push_fblock(struct compiler *c, enum fblocktype t, basicblock *b, in compiler_push_fblock() function
1798 if (!compiler_push_fblock(c, POP_VALUE, NULL, NULL, NULL)) { in compiler_unwind_fblock()
2871 if (!compiler_push_fblock(c, FOR_LOOP, start, end, NULL)) { in compiler_for()
2915 if (!compiler_push_fblock(c, FOR_LOOP, start, end, NULL)) { in compiler_async_for()
2960 if (!compiler_push_fblock(c, WHILE_LOOP, loop, end, NULL)) { in compiler_while()
3107 if (!compiler_push_fblock(c, FINALLY_TRY, body, end, s->v.Try.finalbody)) in compiler_try_finally()
3122 if (!compiler_push_fblock(c, FINALLY_END, end, NULL, NULL)) in compiler_try_finally()
3175 if (!compiler_push_fblock(c, TRY_EXCEPT, body, NULL, NULL)) in compiler_try_except()
3184 if (!compiler_push_fblock(c, EXCEPTION_HANDLER, NULL, NULL, NULL)) in compiler_try_except()
3228 … if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, handler->v.ExceptHandler.name)) in compiler_try_except()
[all …]